diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb368dd..7de0e77 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [v1.1.1] - 2025-09-16
+
+### Added
+
+- Automated FAO data download from FAOSTAT and FRA API
+- CLI as standalone and add-on module for TiMBA
+
## [v1.1.0] - 2025-09-03
### Added
diff --git a/CITATION.cff b/CITATION.cff
index 77a038f..c4f3b7f 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -19,14 +19,17 @@ abstract: |-
The Carbon Module (C-Module) tracks global carbon stocks and stock changes across pools in the forestry sector, based on
either forest sector projections or historical forest sector statistics. In its current version, the module quantifies
carbon stocks and stock changes in forest biomass (above- and below-ground), harvested wood products (HWP), forest soils,
- dead wood, and litter for 180 countries. The Carbon Module was developed as an add-on to the Timber markets Model for policy-Based
+ dead wood, and litter for 180 countries. The C-Module enables users to interactively explore simulated data through its dashboard.
+ The Carbon Module was developed as an add-on to the Timber markets Model for policy-Based
Analysis (TiMBA).
keywords:
- - research
+ - forestry
+ - climate change
- carbon accounting
- - Forest sector model
- - Forest sector
- - wood markets
+ - land use change
+ - climate change mitigation
+ - wood products
+ - forest sector modelling
license: AGPL-3.0-or-later
-version: 1.1.0
+version: 1.1.1
date-released: '03.09.2025'
diff --git a/COPYRIGHT b/COPYRIGHT
index d54c767..2683e16 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,4 +1,4 @@
-Copyright ©, 2025, Thuenen Institute, TI-FSM, Tomke Honkomp, tomke.honkomp@thuenen.de
+Copyright ©, 2025, Thuenen Institute, Tomke Honkomp, tomke.honkomp@thuenen.de
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
diff --git a/README.md b/README.md
index ac383c7..8d6fe81 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,8 @@
- [Cite the C-Module](#cite-the-c-module)
- [Install the C-Module](#install-the-c-module)
+ - [Installation via PyPI](#installation-via-pypi)
+ - [Installation via GitHub](#installation-via-github)
- [Double check installation](#doublecheck-installation)
- [Test suite and coverage](#test-suite-and-coverage-report)
- [Use the C-Module](#use-the-c-module)
@@ -48,7 +50,7 @@ or as a standalone module (see [Use the C-Module](#use-the-c-module)).
We are happy that you use the C-Module for your research. When publishing your work in articles, working paper, presentations
or elsewhere, please cite the module as:
-[Honkomp (2025) C-Module v1](CITATION.cff)
+[Honkomp (2025) C-Module v1.1.1](CITATION.cff)
## Install the C-Module
@@ -61,6 +63,14 @@ The following steps apply if the C-Module is used as a standalone module.
Before proceeding, please ensure that Python is installed on your system. It can be downloaded and installed
from [Python.org](https://www.python.org/downloads/release/python-389/).
+The C-Module can be installed in two ways via PyPI or GitHub.
+
+### Installation via PyPI
+To install the newest version of the C-Module via PyPI, use following command in your terminal or PowerShell:
+ >pip install Carbon-Module
+ >
+
+### Installation via GitHub
1. Clone the repository
Begin by cloning the repository to your local machine using the following command:
>git clone https://github.com/TI-Forest-Sector-Modelling/C-Module
@@ -163,8 +173,12 @@ mention is user input data that need to be imported from a selected folder. You
|--additional_information_carbon.pkl
|--additional_information_carbon.xlsx
`-- historical_data
- |-- 20250703_faostat_data.csv
- |-- 20250703_fra_data.csv
+ |-- Forestry_E_All_Data_NOFLAG.csv
+ |-- Forestry_E_All_Data_NOFLAG.pkl
+ |-- Forestry_E_All_Data_NOFLAG_processed.pkl
+ |-- FRA_Years_All_Data.csv
+ |-- FRA_Years_All_Data.pkl
+ |-- FRA_Years_All_Data_processed.pkl
`-- projection_data
|--default_Sc_forest.csv
|--default_Sc_results.csv
@@ -176,15 +190,18 @@ automatically. If the C-Module is run as an add-on to TiMBA, the application ret
while running.
Following data from external sources ([FAOSTAT](https://www.fao.org/faostat/en/#data/FO) and [FRA](https://fra-data.fao.org/assessments/fra/2020)) are used:
-- The input data `20250703_faostat_data.csv` is a renamed copy of the file `Forestry_E_All_Data_NOFLAG.csv` provided by the [FAOSTAT bulk data
-download](https://bulks-faostat.fao.org/production/Forestry_E_All_Data.zip).
-- The input data `20250703_fra_data.csv` is a renamed copy of the file `FRA_Years_YYYY_MM_DD.csv` provided by the [FRA bulk data
-download](https://fra-data.fao.org/api/file/bulk-download?assessmentName=fra&cycleName=2020&countryIso=WO).
-
-The original FAOSTAT and FRA files are manually saved as CSV UTF-8 files. The most recent copy of the FAOSTAT and FRA datasets
-was downloaded on 2025-07-03 and contains data up to 2023 for FAOSTAT and up to 2020 for FRA. For production and trade, the module
-includes data from 1961 onwards. For forest area and stock, data are available from 1990 onwards. FAOSTAT and FRA data will be
-updated regularly; however, users of the C-Module should verify whether more recent FAOSTAT or FRA data are available before use.
+- The input data `Forestry_E_All_Data_NOFLAG.csv` is retrieved from the [FAOSTAT bulk data
+download](https://bulks-faostat.fao.org/production/Forestry_E_All_Data.zip). This data is serialized (`Forestry_E_All_Data_NOFLAG.pkl`)
+and processed (`Forestry_E_All_Data_NOFLAG_processed.pkl`).
+- The input data `FRA_Years_All_Data.csv` is retrieved from the [FRA bulk data
+download](https://fra-data.fao.org/api/file/bulk-download?assessmentName=fra&cycleName=2020&countryIso=WO). This data is serialized (`FRA_Years_All_Data.pkl`)
+and processed (`FRA_Years_All_Data_processed.pkl`).
+
+The update of the FAOSTAT and FRA files can be controlled using the parameter `fao_data_update = True` under `default_parameters.py`. Otherwise, the
+FAOSTAT and FRA data is automatically updated every 2 months. The data is downloaded when running the C-Module
+the first time. A stable internet connection is needed to execute the data update. Current copy contains data up to 2023 for FAOSTAT and up to 2020 for FRA. For production and trade, the module
+includes data from 1961 onwards. For forest area and stock, data are available from 1990 onwards. Users of the C-Module should
+verify whether more recent FAOSTAT or FRA data are available before use.
The package will generate a results directory called `output` which is located inside the data folder. The final directory after one run will look something like this:
```bash
@@ -213,6 +230,7 @@ Basic module settings include:
| Setting | Description | Options | Default setting |
|:-----------------------------:|:--------------------------------------------------------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:-----------------:|
| `add_on_activated` | Flag to activate if the C-Module is used as an add-on to TiMBA | Bool | True |
+| `sc_num` | Number of scenarios processed by the C-Module. If None, all scenarios in the scenario folder are processed. | None or int | None |
| `start_year` | Year from which calculations of the C-Module are started. The value should be aligned with the provided input data | int | 2020 |
| `end_year` | Year until which calculations of the C-Module are running. The value should be aligned with the provided input data | int | 2050 |
| `read_in_pkl` | Flag to control which input files are used for projection data | Bool | True |
@@ -226,7 +244,7 @@ Basic module settings include:
| `hist_hwp_start_year` | Setting to control the year from which the historical HWP pool is calculated | "default": uses a uniform default reference year for all countries and products
or
"country-specific": uses country-specific reference year based on the data availability for each country | "default" |
| `hist_hwp_start_year_default` | Setting to control the reference year for the historical HWP pool.
Used in combination with `hist_hwp_start_year`="default" | int | 2020 (start year) |
| `show_carbon_dashboard` | Setting to control if the dashboard for explorative result exploration is launched | Bool | True |
-
+| `fao_data_update` | Setting to control if FAO data (FRA and FAOSTAT) is updated or not | Bool | False |
If the C-Module is used as an add-on to TiMBA, the start and end year parameters are automatically adjusted to match TiMBA's start and end years.
The C-Module is delivered with a set of default settings, which were tested and validated. The default settings can be changed when executing the
diff --git a/c_module/cli/cli.py b/c_module/cli/cli.py
index db9c5a1..cbab990 100644
--- a/c_module/cli/cli.py
+++ b/c_module/cli/cli.py
@@ -8,6 +8,9 @@
@click.option('-ADD_ON', '--add_on_activated', "add_on_activated",
default=user_input[ParamNames.add_on_activated.value], show_default=True, required=True, type=bool,
help="Flag to use the carbon module as a standalone module or as a TiMBA add-on.")
+@click.option('-SC', '--sc_num', "sc_num",
+ default=user_input[ParamNames.sc_num.value], show_default=True, required=True, type=int,
+ help="Flag to control the number of processed scenarios.")
@click.option('-SY', '--start_year', 'start_year', default=user_input[ParamNames.start_year.value],
show_default=True, required=True, type=int,
help="Start year of carbon calculations.")
@@ -38,11 +41,12 @@
@click.option('-SD', '--show_carbon_dashboard', 'show_carbon_dashboard',
default=user_input[ParamNames.show_carbon_dashboard.value], show_default=True, required=False, type=bool,
help="Flag to launch carbon dashboard.")
-def cli(add_on_activated, start_year, end_year, calc_c_forest_agb, calc_c_forest_bgb, calc_c_forest_soil,
+def cli(add_on_activated, sc_num, start_year, end_year, calc_c_forest_agb, calc_c_forest_bgb, calc_c_forest_soil,
calc_c_forest_dwl, calc_c_hwp, c_hwp_accounting_approach, read_in_pkl, show_carbon_dashboard):
user_input_cli = {
ParamNames.add_on_activated.value: add_on_activated,
+ ParamNames.sc_num.value: sc_num,
ParamNames.start_year.value: start_year,
ParamNames.end_year.value: end_year,
ParamNames.read_in_pkl.value: read_in_pkl,
diff --git a/c_module/data/input/historical_data/20250703_faostat_data.csv b/c_module/data/input/historical_data/20250703_faostat_data.csv
deleted file mode 100644
index 5df13ac..0000000
--- a/c_module/data/input/historical_data/20250703_faostat_data.csv
+++ /dev/null
@@ -1,85181 +0,0 @@
-Area Code;Area Code (M49);Area;Item Code;Item;Element Code;Element;Unit;Y1961;Y1962;Y1963;Y1964;Y1965;Y1966;Y1967;Y1968;Y1969;Y1970;Y1971;Y1972;Y1973;Y1974;Y1975;Y1976;Y1977;Y1978;Y1979;Y1980;Y1981;Y1982;Y1983;Y1984;Y1985;Y1986;Y1987;Y1988;Y1989;Y1990;Y1991;Y1992;Y1993;Y1994;Y1995;Y1996;Y1997;Y1998;Y1999;Y2000;Y2001;Y2002;Y2003;Y2004;Y2005;Y2006;Y2007;Y2008;Y2009;Y2010;Y2011;Y2012;Y2013;Y2014;Y2015;Y2016;Y2017;Y2018;Y2019;Y2020;Y2021;Y2022;Y2023
-2;'004;Afghanistan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201260;232494;223026;225233;139787;59303;94607
-2;'004;Afghanistan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3182;3986;3717;1222;1361;1091;641
-2;'004;Afghanistan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;301;321;435;466;597;559;445;769;11819;19375;19375;19135;21395;23300;23491;23795;24200;27350;25713;25713;25378;18170;735;3060;3199;1138;1138;1138;1085;1608;1211;1040;1183;1637;934;1091;1166;1128;8119;18155;28135;31996;43348;61460;59801;80632;93790;126717;131863;107146;101736;95618;84518;96206;102846;117786;131686;82436;48206;74853
-2;'004;Afghanistan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;126;174;174;226;303;416;300;300;1614;4836;8554;8554;2087;8874;5187;6237;7264;8066;6596;6617;3441;3823;4572;3122;3919;3639;1151;917;844;280
-2;'004;Afghanistan;1861;Roundwood;5516;Production;m3;1354291;1371568;1414937;1533399;1596956;1692609;1731357;1812205;1898151;1991198;2057077;2140438;2157978;2209075;2181910;2219638;2235423;2242368;2251238;2248483;2227954;2195253;2158493;2119140;2090854;2065850;2068363;2081061;2109668;2155216;2206747;2294676;2399089;2508164;2614462;2716335;2811711;2881995;2969992;3038715;3074150;3110626;3148176;3186832;3226629;3258194;3290522;3323634;3357549;3401290;3415317;3453939;3485812;3518409;3551747;3583797;3616559;3650051;3684292;3719300;3755045;3791602;3828991
-2;'004;Afghanistan;1861;Roundwood;5616;Import quantity;m3;;;;3300;3500;4200;5300;5300;6400;6600;6900;6900;6900;6900;6900;6900;;;;;;;;;;;;;;;;99;99;99;154;36;1771;1771;70;203;203;203;203;5725;5725;2401;902;112;128;39;100;559;118;13;20;464;146;1548;1658;1253;242;3;3
-2;'004;Afghanistan;1861;Roundwood;5622;Import value;1000 USD;;;;190;210;250;300;300;200;200;210;210;210;210;210;210;;;;;;;;;;;;;;;;10;10;10;9;4;126;126;1;6;6;6;6;349;349;153;62;69;89;63;59;86;64;24;11;166;33;157;115;241;78;62;62
-2;'004;Afghanistan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9854;2033;2033;2033;2033;2058;2059;2071;2071;10033;34107;100020;100020;10331;8845;2602;667;311;11511;11511;11276;2015;2610;7204;559;87;373;264;853;216;838
-2;'004;Afghanistan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;72;72;72;72;76;80;75;75;1601;4513;8124;8124;1733;6834;2825;2840;2676;3639;3639;3449;445;653;1479;113;17;67;126;249;17;82
-2;'004;Afghanistan;1862;Roundwood, coniferous;5516;Production;m3;562596;566779;595990;650229;679496;764792;789116;844471;903855;969269;1000333;1049342;1053104;1088933;1143184;1163302;1167038;1168321;1171082;1170156;1165097;1156486;1146958;1136652;1129766;1122964;1124518;1128328;1135810;1147375;1160535;1182614;1208839;1237062;1265253;1292816;1319130;1338516;1362016;1382634;1393265;1404208;1415474;1427071;1439011;1448481;1458180;1468114;1478289;1497712;1497857;1507207;1516770;1526549;1536551;1546167;1555996;1566044;1576317;1586820;1597544;1608512;1619729
-2;'004;Afghanistan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1073;1637;856;59;0;0
-2;'004;Afghanistan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;115;47;159;6;0;0
-2;'004;Afghanistan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;216;0
-2;'004;Afghanistan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;17;0
-2;'004;Afghanistan;1863;Roundwood, non-coniferous;5516;Production;m3;791695;804789;818947;883170;917460;927817;942241;967734;994296;1021929;1056744;1091096;1104874;1120142;1038726;1056336;1068385;1074047;1080156;1078327;1062857;1038767;1011535;982488;961088;942886;943845;952733;973858;1007841;1046212;1112062;1190250;1271102;1349209;1423519;1492581;1543479;1607976;1656081;1680885;1706418;1732702;1759761;1787618;1809713;1832342;1855520;1879260;1903578;1917460;1946732;1969042;1991860;2015196;2037630;2060563;2084007;2107975;2132480;2157501;2183090;2209262
-2;'004;Afghanistan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;475;21;397;183;3;3
-2;'004;Afghanistan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;42;68;82;72;62;62
-2;'004;Afghanistan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;87;373;264;853;0;838
-2;'004;Afghanistan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;17;67;126;223;0;82
-2;'004;Afghanistan;1864;Wood fuel;5516;Production;m3;575291;582568;589937;597399;604956;612609;620357;628205;636151;644198;671077;694438;696978;703075;713910;717638;723423;724368;730238;730483;716954;698253;676493;652140;635854;619850;628363;641061;662668;691216;711747;758676;816089;880164;947462;1019335;1093711;1144995;1209992;1278715;1314150;1350626;1388176;1426832;1466629;1498194;1530522;1563634;1597549;1641290;1655317;1693939;1725812;1758409;1791747;1823797;1856559;1890051;1924292;1959300;1995045;2031602;2068991
-2;'004;Afghanistan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;15;69;69;28;2;2;2;2;20;163;64;437;3;3;3;3;3
-2;'004;Afghanistan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;2;33;33;10;2;2;2;2;11;68;28;37;62;62;62;62;62
-2;'004;Afghanistan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;127;127;127;127;15;15;15;15;15;15;15;;;;;;;
-2;'004;Afghanistan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;8;8;8;8;11;11;11;11;11;11;11;;;;;;;
-2;'004;Afghanistan;1627;Wood fuel, coniferous;5516;Production;m3;172596;174779;176990;179229;181496;183792;186116;188471;190855;193269;201333;208342;209104;210933;214184;215302;217038;217321;219082;219156;215097;209486;202958;195652;190766;185964;188518;192328;198810;207375;213535;227614;244839;264062;284253;305816;328130;343516;363016;383634;394265;405208;416474;428071;440011;449481;459180;469114;479289;498712;498857;508207;517770;527549;537551;547167;556996;567044;577317;587820;598544;609512;620729
-2;'004;Afghanistan;1628;Wood fuel, non-coniferous;5516;Production;m3;402695;407789;412947;418170;423460;428817;434241;439734;445296;450929;469744;486096;487874;492142;499726;502336;506385;507047;511156;511327;501857;488767;473535;456488;445088;433886;439845;448733;463858;483841;498212;531062;571250;616102;663209;713519;765581;801479;846976;895081;919885;945418;971702;998761;1026618;1048713;1071342;1094520;1118260;1142578;1156460;1185732;1208042;1230860;1254196;1276630;1299563;1323007;1346975;1371480;1396501;1422090;1448262
-2;'004;Afghanistan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;437;3;3;3;3;3
-2;'004;Afghanistan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;37;62;62;62;62;62
-2;'004;Afghanistan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;15;69;69;28;2;2;2;2;20;163;;;;;;;
-2;'004;Afghanistan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;2;33;33;10;2;2;2;2;11;68;;;;;;;
-2;'004;Afghanistan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;127;127;127;127;15;15;15;15;15;15;15;;;;;;;
-2;'004;Afghanistan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;8;8;8;8;11;11;11;11;11;11;11;;;;;;;
-2;'004;Afghanistan;1865;Industrial roundwood;5516;Production;m3;779000;789000;825000;936000;992000;1080000;1111000;1184000;1262000;1347000;1386000;1446000;1461000;1506000;1468000;1502000;1512000;1518000;1521000;1518000;1511000;1497000;1482000;1467000;1455000;1446000;1440000;1440000;1447000;1464000;1495000;1536000;1583000;1628000;1667000;1697000;1718000;1737000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000;1760000
-2;'004;Afghanistan;1865;Industrial roundwood;5616;Import quantity;m3;;;;3300;3500;4200;5300;5300;6400;6600;6900;6900;6900;6900;6900;6900;;;;;;;;;;;;;;;;99;99;99;154;36;1771;1771;70;203;203;203;203;5725;5725;2386;887;43;59;11;98;557;116;11;0;301;82;1111;1655;1250;239;0;0
-2;'004;Afghanistan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;190;210;250;300;300;200;200;210;210;210;210;210;210;;;;;;;;;;;;;;;;10;10;10;9;4;126;126;1;6;6;6;6;349;349;151;60;36;56;53;57;84;62;22;0;98;5;120;53;179;16;0;0
-2;'004;Afghanistan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9854;2000;2000;2000;2000;2025;2026;2038;2038;10000;34074;99987;99987;10204;8718;2475;540;296;11496;11496;11261;2000;2595;7189;559;87;373;264;853;216;838
-2;'004;Afghanistan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;71;71;71;71;75;79;74;74;1600;4512;8123;8123;1725;6826;2817;2832;2665;3628;3628;3438;434;642;1468;113;17;67;126;249;17;82
-2;'004;Afghanistan;1866;Industrial roundwood, coniferous;5516;Production;m3;390000;392000;419000;471000;498000;581000;603000;656000;713000;776000;799000;841000;844000;878000;929000;948000;950000;951000;952000;951000;950000;947000;944000;941000;939000;937000;936000;936000;937000;940000;947000;955000;964000;973000;981000;987000;991000;995000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000;999000
-2;'004;Afghanistan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;154;36;1771;1771;70;203;203;203;203;5725;5725;2381;882;41;48;0;87;521;80;0;0;71;0;1073;1637;856;59;0;0
-2;'004;Afghanistan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;9;4;126;126;1;6;6;6;6;349;349;145;54;3;3;0;4;27;5;0;0;3;0;115;47;159;6;0;0
-2;'004;Afghanistan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9854;2000;2000;2000;2000;2000;2000;2000;2000;10000;34074;82654;82654;4591;8627;67;102;0;0;0;0;0;0;0;0;0;0;0;0;216;0
-2;'004;Afghanistan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;71;71;71;71;71;71;71;71;1600;4512;7100;7100;243;457;4;5;0;0;0;0;0;0;0;0;0;0;0;26;17;0
-2;'004;Afghanistan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;154;36;1771;1771;70;203;203;203;203;5725;5725;2381;882;41;48;0;87;521;80;0;0;71;0;1073;1637;856;59;0;0
-2;'004;Afghanistan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;9;4;126;126;1;6;6;6;6;349;349;145;54;3;3;0;4;27;5;0;0;3;0;115;47;159;6;0;0
-2;'004;Afghanistan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9854;2000;2000;2000;2000;2000;2000;2000;2000;10000;34074;82654;82654;4591;8627;67;102;0;0;0;0;0;0;0;0;0;0;0;0;216;0
-2;'004;Afghanistan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;71;71;71;71;71;71;71;71;1600;4512;7100;7100;243;457;4;5;0;0;0;0;0;0;0;0;0;0;0;26;17;0
-2;'004;Afghanistan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;389000;397000;406000;465000;494000;499000;508000;528000;549000;571000;587000;605000;617000;628000;539000;554000;562000;567000;569000;567000;561000;550000;538000;526000;516000;509000;504000;504000;510000;524000;548000;581000;619000;655000;686000;710000;727000;742000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000
-2;'004;Afghanistan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;11;11;11;36;36;11;0;230;82;38;18;394;180;0;0
-2;'004;Afghanistan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;33;53;53;53;57;57;22;0;95;5;5;6;20;10;0;0
-2;'004;Afghanistan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;25;26;38;38;0;0;17333;17333;5613;91;2408;438;296;11496;11496;11261;2000;2595;7189;559;87;373;264;853;0;838
-2;'004;Afghanistan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;8;3;3;0;0;1023;1023;1482;6369;2813;2827;2665;3628;3628;3438;434;642;1468;113;17;67;126;223;0;82
-2;'004;Afghanistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;2386;421;279;279;279;44;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;2001;367;205;205;205;15;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;2;2;2;27;27;2;0;230;82;38;18;394;180;0;0
-2;'004;Afghanistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;33;33;33;33;37;37;2;0;95;5;5;6;20;10;0;0
-2;'004;Afghanistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;25;26;38;38;0;0;17333;17333;5613;22;22;17;17;11217;11217;11217;2000;2595;7189;559;87;373;264;853;0;838
-2;'004;Afghanistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;8;3;3;0;0;1023;1023;1482;6317;812;2460;2460;3423;3423;3423;434;642;1468;113;17;67;126;223;0;82
-2;'004;Afghanistan;1868;Sawlogs and veneer logs;5516;Production;m3;325000;325000;350000;450000;495000;570000;590000;650000;715000;786000;810000;854000;854000;885000;833000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000;856000
-2;'004;Afghanistan;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;3300;3500;4200;5300;5300;6400;6600;6900;6900;6900;6900;6900;6900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;190;210;250;300;300;200;200;210;210;210;210;210;210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;300000;300000;325000;375000;400000;480000;500000;550000;605000;665000;685000;724000;724000;755000;803000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000;820000
-2;'004;Afghanistan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;25000;25000;25000;75000;95000;90000;90000;100000;110000;121000;125000;130000;130000;130000;30000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000
-2;'004;Afghanistan;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;3300;3500;4200;5300;5300;6400;6600;6900;6900;6900;6900;6900;6900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;190;210;250;300;300;200;200;210;210;210;210;210;210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1871;Other industrial roundwood;5516;Production;m3;454000;464000;475000;486000;497000;510000;521000;534000;547000;561000;576000;592000;607000;621000;635000;646000;656000;662000;665000;662000;655000;641000;626000;611000;599000;590000;584000;584000;591000;608000;639000;680000;727000;772000;811000;841000;862000;881000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000;904000
-2;'004;Afghanistan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;90000;92000;94000;96000;98000;101000;103000;106000;108000;111000;114000;117000;120000;123000;126000;128000;130000;131000;132000;131000;130000;127000;124000;121000;119000;117000;116000;116000;117000;120000;127000;135000;144000;153000;161000;167000;171000;175000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000
-2;'004;Afghanistan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;364000;372000;381000;390000;399000;409000;418000;428000;439000;450000;462000;475000;487000;498000;509000;518000;526000;531000;533000;531000;525000;514000;502000;490000;480000;473000;468000;468000;474000;488000;512000;545000;583000;619000;650000;674000;691000;706000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000;725000
-2;'004;Afghanistan;1630;Wood charcoal;5510;Production;t;26503;27061;27632;28214;28808;29415;30035;30668;31314;31974;33837;35469;35603;36051;36910;37255;37813;38095;38879;39387;38671;37675;36499;35116;34275;33377;34285;35397;37033;38994;40347;43611;47594;52072;56851;61923;67216;70999;75735;80811;83747;86790;89943;93211;96598;99572;102639;105799;109057;112415;115646;118969;122388;125905;129524;133132;136841;140653;144572;148599;152765;157048;161451
-2;'004;Afghanistan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;25;25;18;18;0;0;0;0;0;0;0;0;62;32;35;39;36;41;305;43;632;47;272;99;25;52
-2;'004;Afghanistan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;3;4;4;0;0;0;0;0;0;0;0;78;15;45;89;80;27;292;138;861;60;342;90;28;44
-2;'004;Afghanistan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;15;15;15;15;1;1;1;1;1;1;14;14;14
-2;'004;Afghanistan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;11;11;11;11;1;1;1;1;1;1;14;14;14
-2;'004;Afghanistan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;1359;2179;2179;2185;2185;2185;2319;179;3164;3318;3318;3318;336;411;92;103;103;3;80;84;84
-2;'004;Afghanistan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;138;86;86;128;128;128;327;216;1350;1406;1406;1406;275;268;45;89;89;13;10;10;10
-2;'004;Afghanistan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;60;60;60;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30
-2;'004;Afghanistan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;2;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-2;'004;Afghanistan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;103;103;37;37;37;171;171;171;325;325;325;325;325;2;2;2;1;80;84;84
-2;'004;Afghanistan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;7;7;7;206;206;206;262;262;262;262;262;2;2;2;4;9;9;9
-2;'004;Afghanistan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;41;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;1335;2076;2076;2148;2148;2148;2148;8;2993;2993;2993;2993;11;86;90;101;101;2;0;0;0
-2;'004;Afghanistan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;133;81;81;121;121;121;121;10;1144;1144;1144;1144;13;6;43;87;87;9;1;1;1
-2;'004;Afghanistan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;411;411;411;19;19;19;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30
-2;'004;Afghanistan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;9;9;1;1;1;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-2;'004;Afghanistan;1872;Sawnwood;5516;Production;m3;160000;160000;175000;225000;245000;285000;295000;325000;355000;395000;405000;360000;410000;410000;330000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;410000;410000;410000;410000;410000;230000;230000;230000;230000
-2;'004;Afghanistan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;171;166;2031;842;741;550;66;60909;115619;222834;229434;295450;323450;217050;364860;366906;435351;348154;306222;241002;303020;286891;294588;139344;92266;204856;100686;57846;80629
-2;'004;Afghanistan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;46;45;226;73;43;60;22;7387;11090;21440;25301;38216;52345;40818;58704;58634;79176;64523;56508;40374;34562;30150;37490;36198;21613;25639;14220;12140;10392
-2;'004;Afghanistan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;57;57;18;345;345;33;33;33;10;469;452;452;178;2111;1073;317;47;0;47;292;0;982;43;65;452;66;0;0;0;0
-2;'004;Afghanistan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;8;58;58;8;8;8;2;158;148;148;75;1740;1393;475;48;0;5;163;0;239;21;52;172;18;0;0;10;0
-2;'004;Afghanistan;1632;Sawnwood, coniferous;5516;Production;m3;150000;150000;165000;190000;200000;240000;250000;275000;300000;335000;345000;305000;360000;360000;310000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;200000;200000;200000;200000
-2;'004;Afghanistan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;35;1900;805;684;484;0;60700;115100;222400;229000;295100;323100;216700;364200;366900;433693;347417;306115;241000;302988;286159;294488;139209;92146;204852;100685;57601;80629
-2;'004;Afghanistan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;185;65;29;38;0;7302;10882;21308;25169;37928;52057;40530;58556;58624;78780;64306;56414;40290;34511;29791;37441;36030;21419;25611;14187;12122;10392
-2;'004;Afghanistan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;314;314;2;2;2;10;444;444;444;1;662;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;51;51;1;1;1;2;146;146;146;0;135;1;1;0;0;0;0;0;0;0;0;0;0;0;0;10;0
-2;'004;Afghanistan;1633;Sawnwood, non-coniferous;5516;Production;m3;10000;10000;10000;35000;45000;45000;45000;50000;55000;60000;60000;55000;50000;50000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-2;'004;Afghanistan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;131;131;131;37;57;66;66;209;519;434;434;350;350;350;660;6;1658;737;107;2;32;732;100;135;120;4;1;245;0
-2;'004;Afghanistan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;41;41;41;8;14;22;22;85;208;132;132;288;288;288;148;10;396;217;94;84;51;359;49;168;194;28;33;18;0
-2;'004;Afghanistan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;57;57;18;31;31;31;31;31;0;25;8;8;177;1449;1071;315;47;0;47;292;0;982;43;65;452;66;0;0;0;0
-2;'004;Afghanistan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;8;7;7;7;7;7;0;12;2;2;75;1605;1392;474;48;0;5;163;0;239;21;52;172;18;0;0;0;0
-2;'004;Afghanistan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;200
-2;'004;Afghanistan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;26;26;43;21;299;164;14;14;267;6;295;9;29;0;169;60;0;17;17;0
-2;'004;Afghanistan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;18;20;20;363;26;305;158;23;1;2976;71;515;84;75;0;389;40;4;5;5;0
-2;'004;Afghanistan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;100;59;10;10;0;0;16;16;115;115;115;15;3;3;3;3;3;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;31;58;9;9;0;0;12;12;190;190;190;54;8;0;0;1;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1873;Wood-based panels;5516;Production;m3;;;;200;300;500;1100;1200;1400;1300;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;52000;58000;58000;58000;52000;58000;58000;58000;58000;58000;58000;58000;58000;18400;503;986;1046;322;322;322;13;645;728;96;173;138;372;1823;913;913;2567;14894;25280;25280;11842;13574;26214;36143;58445;78005;102591;88438;138723;92337;67279;114420;115376;137925;170258;153479;72258;67411
-2;'004;Afghanistan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;11070;17410;17410;17410;19820;22220;22698;22998;23398;24198;24098;24098;24098;16058;117;414;239;135;135;135;8;188;229;49;57;42;62;279;247;247;177;5178;5301;5301;3704;5449;15020;18595;28931;41868;56713;46862;53145;40964;39755;43373;37480;37488;56162;37865;18474;37386
-2;'004;Afghanistan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;20;54;54;54;54;54;54;0;440;440;440;106;106;442;745;264;31;35;35;52;54;54;5;56;10;3;45;3;32
-2;'004;Afghanistan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;11;20;20;20;20;20;20;0;52;52;52;15;15;443;765;366;100;113;97;33;37;36;4;28;6;1;40;1;23
-2;'004;Afghanistan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;16000;18000;18000;18000;16000;18000;18000;18000;18000;18000;18000;18000;18000;18000;103;286;322;322;322;322;13;13;96;96;108;63;63;496;496;496;6;4519;5169;5169;2174;1583;4621;5902;17721;16030;45674;24348;25722;9898;3292;8976;7059;13397;14779;5988;101;20230
-2;'004;Afghanistan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;7950;12535;12535;12535;14221;15998;15998;15998;15998;15998;15998;15998;15998;15998;43;170;135;135;135;135;8;8;49;49;40;19;19;195;195;195;5;2030;1835;1835;1390;1739;4788;5402;8669;5760;23281;9219;10043;4083;1826;3367;3190;3974;3976;2018;113;3647
-2;'004;Afghanistan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;0;0;0;0;2;2;330;530;49;2;6;6;2;17;17;1;52;6;0;5;0;0
-2;'004;Afghanistan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;0;0;0;0;1;1;391;532;133;5;18;2;2;9;8;1;25;3;0;19;0;0
-2;'004;Afghanistan;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;200;300;500;1100;1200;1400;1300;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;36000;40000;40000;40000;36000;40000;40000;40000;40000;40000;40000;40000;40000;400;400;700;724;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;3120;4875;4875;4875;5599;6222;6700;7000;7400;8200;8100;8100;8100;60;74;244;104;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-2;'004;Afghanistan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;65;25;259;878;154;154;2555;6152;13604;13604;1299;2232;852;2187;1304;544;288;231;324;203;89;99;99;5798;25753;27260;10745;11106
-2;'004;Afghanistan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;6;26;54;15;15;162;1918;2231;2231;209;614;290;619;664;417;348;320;340;148;123;90;90;1308;4897;5154;2311;1697
-2;'004;Afghanistan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;0;44;44;44;44;44;2;148;148;12;12;12;33;33;33;0;0;0;0;0;0;0
-2;'004;Afghanistan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;0;5;5;5;5;5;1;182;182;89;89;89;25;25;25;0;0;0;0;0;0;0
-2;'004;Afghanistan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;31;31;0;3093;4128;4128;151;151;70;3;3;26;49;15;15;15;15;15;15;51;897;187;145;18
-2;'004;Afghanistan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;0;807;677;677;55;55;50;2;23;20;47;12;12;12;1;3;3;8;108;40;10;2
-2;'004;Afghanistan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;;;50;50;322;232;232;6;1130;2379;2379;8218;9608;20671;28051;39417;61405;56580;63844;112662;82221;63883;105330;108203;118679;128829;120044;61267;36057
-2;'004;Afghanistan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;;;17;17;25;35;35;10;423;558;558;2050;3041;9892;12572;19575;35671;33037;37311;42750;36721;37805;39913;34197;32198;47181;30653;16040;32040
-2;'004;Afghanistan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;396;396;396;60;60;110;67;67;17;17;17;17;4;4;4;4;4;3;40;3;32
-2;'004;Afghanistan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;47;47;47;9;9;51;51;51;6;6;6;6;3;3;3;3;3;1;21;1;23
-2;'004;Afghanistan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;182;182;6;836;674;674;464;953;277;204;286;220;239;326;2;332;259;6009;3244;129;534;635;75;80
-2;'004;Afghanistan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;18;18;10;352;313;313;185;527;187;60;111;108;121;136;2;72;116;3944;1972;73;295;554;56;58
-2;'004;Afghanistan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;0;46;662;662;3344;4245;13557;14110;10958;10133;19948;24618;16499;10300;7729;8597;4496;9597;47041;30463;1606;9149
-2;'004;Afghanistan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;0;29;113;113;900;1549;6118;5384;5499;5978;11616;16291;9841;6583;6926;5263;2940;2795;16565;10648;1060;6208
-2;'004;Afghanistan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;396;396;60;60;110;58;58;14;14;14;14;1;1;1;1;1;0;37;0;29
-2;'004;Afghanistan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;9;9;51;50;50;5;5;5;5;2;2;2;2;2;0;20;0;22
-2;'004;Afghanistan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;1043;1043;4410;4410;6837;13737;28173;51052;36393;38900;96161;71589;55895;90724;100463;108953;81254;88946;59586;26828
-2;'004;Afghanistan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;132;132;965;965;3587;7128;13965;29585;21300;20884;32907;30066;30763;30706;29285;29330;30321;19451;14924;25774
-2;'004;Afghanistan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;3;3;3;3;3;3;3;3;3;3;3;3;3
-2;'004;Afghanistan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-2;'004;Afghanistan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;683;610;368;596;596;353;353;488;488;783;1184;497;497;497;499;194;250;555;589;439;346;475;960;871;2307;2402;3666;2208;2431;5117;5379
-2;'004;Afghanistan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;46;58;73;303;303;235;235;325;325;410;487;250;250;250;134;90;138;274;170;413;236;243;309;277;415;499;651;246;1700;5290;4689
-2;'004;Afghanistan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;110;247;247;247;247;247;247;247;0;19;796;796;34;30;25;29;258;151;215;33;292;89;182;209;209;198;198;52;417;667
-2;'004;Afghanistan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;42;42;42;42;42;42;42;0;10;87;87;12;11;12;13;73;46;47;14;137;72;133;93;93;37;37;8;22;62
-2;'004;Afghanistan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;337;337;337;337;465;465;783;784;490;490;490;51;86;154;199;172;344;304;225;150;291;45;140;730;230;1250;3436;4216
-2;'004;Afghanistan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;234;234;234;234;322;322;410;412;249;249;249;46;66;114;141;115;307;208;173;117;116;140;224;358;137;1602;4876;4543
-2;'004;Afghanistan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;19;19;19;19;19;19;19;19;19;19;19;19;0;0;0;0;0;0;0
-2;'004;Afghanistan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0;0;0;0;0;0
-2;'004;Afghanistan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;337;564;482;756;490;490;783;784;490;490;490;51;86;147;195;168;398;358;226;158;167;32;127;622;242;1239;3425;4205
-2;'004;Afghanistan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;234;356;316;415;333;333;410;412;249;249;249;46;66;106;139;113;367;266;177;130;125;34;118;339;153;1604;4878;4545
-2;'004;Afghanistan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;19;19;35;35;35;35;35;35;35;35;35;35;16;16;16;16;16;16;16
-2;'004;Afghanistan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;10;10;10;17;17;17;17;17;17;17;17;17;17;7;7;7;7;7;7;7
-2;'004;Afghanistan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-2;'004;Afghanistan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-2;'004;Afghanistan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-2;'004;Afghanistan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;
-2;'004;Afghanistan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;314;314;314;442;442;783;783;489;489;489;50;85;146;194;167;339;299;220;145;154;20;115;610;230;1227;3413;4193
-2;'004;Afghanistan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;228;228;316;316;410;410;247;247;247;44;64;104;137;111;303;202;167;111;106;17;101;322;136;1587;4861;4528
-2;'004;Afghanistan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;19;19;19;19;19;19;19;19;19;19;19;19;0;0;0;0;0;0;0
-2;'004;Afghanistan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0;0;0;0;0;0
-2;'004;Afghanistan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;223;223
-2;'004;Afghanistan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;159;159
-2;'004;Afghanistan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;294;294;294;294;294;400;400;400;400;400;26;61;122;170;143;315;275;196;121;130;20;115;550;170;1167;2907;3687
-2;'004;Afghanistan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;218;218;218;218;218;205;205;205;205;205;21;41;81;114;88;280;179;144;88;83;17;101;296;110;1561;4497;4164
-2;'004;Afghanistan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-2;'004;Afghanistan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283
-2;'004;Afghanistan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;205
-2;'004;Afghanistan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-2;'004;Afghanistan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-2;'004;Afghanistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;148;148;383;383;89;89;89;24;24;24;24;24;24;24;24;24;24;;;;;;;
-2;'004;Afghanistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;98;98;205;205;42;42;42;23;23;23;23;23;23;23;23;23;23;;;;;;;
-2;'004;Afghanistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;19;19;19;19;19;19;19;19;19;19;19;19;;;;;;;
-2;'004;Afghanistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;10;;;;;;;
-2;'004;Afghanistan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;145;419;25;25;0;0;0;0;0;0;0;0;0;0;58;58;5;12;12;12;12;12;12;12;12;12
-2;'004;Afghanistan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;82;181;11;11;0;0;0;0;0;0;0;0;0;0;62;62;8;17;17;17;17;17;17;17;17;17
-2;'004;Afghanistan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16
-2;'004;Afghanistan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7
-2;'004;Afghanistan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;4;4;4;4;4;136;25;25;120;0;23;23;23
-2;'004;Afghanistan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;2;4;4;4;8;123;123;36;1;15;15;15
-2;'004;Afghanistan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;13;271;271;17;9;17;17;17
-2;'004;Afghanistan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;9;106;16;8;18;8;8;8
-2;'004;Afghanistan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;660;587;345;259;259;16;16;23;23;0;400;7;7;7;448;108;96;356;417;95;42;250;810;580;2262;2262;2936;1978;1181;1681;1163
-2;'004;Afghanistan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;40;52;67;69;69;1;1;3;3;0;75;1;1;1;88;24;24;133;55;106;28;70;192;161;275;275;293;109;98;414;146
-2;'004;Afghanistan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;110;247;247;247;247;247;247;247;0;0;777;777;15;11;6;10;239;132;196;14;273;70;163;209;209;198;198;52;417;667
-2;'004;Afghanistan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;42;42;42;42;42;42;42;0;0;77;77;2;1;2;3;63;36;37;4;127;62;123;93;93;37;37;8;22;62
-2;'004;Afghanistan;1876;Paper and paperboard;5610;Import quantity;t;;;;600;600;1000;1000;1500;1800;700;1700;1800;5300;5300;4500;3700;2900;1300;1300;1300;4700;2300;2300;2300;3300;1500;4600;5100;1600;1600;1600;1700;1544;1683;1637;1481;725;355;707;825;825;214;1357;886;886;722;4497;3825;2301;4205;3538;3953;1474;4704;13481;11032;12100;28639;104459;47801;27312;12531;14809
-2;'004;Afghanistan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;111;111;185;166;297;359;245;559;539;1755;1755;1515;1365;1080;793;797;802;3152;1615;1615;1280;2112;618;2646;2960;1003;1003;1003;1064;1331;881;863;774;810;353;349;513;513;136;1238;689;689;534;3316;3371;2621;5571;4078;5639;1847;5940;19368;13509;14589;27140;57705;49004;28443;12172;22245
-2;'004;Afghanistan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;18;18;18;72;403;112;112;22;161;198;198;74;83;322;1202;1305;1677;751;834;767;773;877;807;2502;1504;673;432;813;56
-2;'004;Afghanistan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;23;23;23;66;206;144;144;8;100;128;128;59;74;314;2079;4072;4260;2771;2872;2805;2811;2892;2849;3598;3500;976;596;770;89
-2;'004;Afghanistan;2042;Graphic papers;5610;Import quantity;t;;;;600;600;1000;1000;1500;1800;400;1200;1200;2800;2800;2500;2200;1900;600;600;600;2200;1100;1100;1100;900;600;1800;2000;600;600;600;700;522;83;37;281;125;108;494;469;469;50;868;254;254;74;2812;2345;902;1303;2639;3087;903;2806;1903;566;1243;12877;26314;13746;7527;4564;3406
-2;'004;Afghanistan;2042;Graphic papers;5622;Import value;1000 USD;;;;111;111;185;166;297;359;144;276;276;725;725;615;615;530;297;297;297;1360;755;755;680;650;400;1500;1700;500;500;500;464;530;81;63;176;82;68;194;178;178;28;682;193;193;59;1630;1768;811;1351;2320;4158;991;2494;1658;640;972;8289;16707;10014;6253;3594;2559
-2;'004;Afghanistan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;18;18;18;61;38;77;77;0;79;56;56;56;56;283;634;541;541;541;541;543;544;648;548;1917;907;109;274;753;27
-2;'004;Afghanistan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;23;23;23;57;35;122;122;0;49;43;43;43;43;248;711;2531;2531;2531;2531;2534;2535;2616;2549;2691;2587;88;246;591;25
-2;'004;Afghanistan;1671;Newsprint;5610;Import quantity;t;;;;300;300;500;500;600;700;;;0;1200;1200;1200;1200;1200;100;100;100;400;200;200;200;;;0;;;;;;17;17;17;264;90;90;438;438;438;27;38;38;38;6;6;827;102;8;4;192;3;3;253;26;1;8105;15311;44;648;80;80
-2;'004;Afghanistan;1671;Newsprint;5622;Import value;1000 USD;;;;36;36;60;60;72;84;;;0;215;215;215;215;215;22;22;22;100;80;80;80;;;0;;;;;;38;38;38;156;38;38;156;156;156;13;22;22;22;4;4;583;49;10;5;141;5;5;153;35;1;4083;6897;43;7;1;1
-2;'004;Afghanistan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;0;0;0;0;0;0;104;104;104;104;104;104;104;104;104;4;1373;363;0;0;0;0
-2;'004;Afghanistan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;0;0;0;0;0;0;69;69;69;69;69;69;69;69;69;2;144;40;0;0;0;0
-2;'004;Afghanistan;1674;Printing and writing papers;5610;Import quantity;t;;;;300;300;500;500;900;1100;400;1200;1200;1600;1600;1300;1000;700;500;500;500;1800;900;900;900;900;600;1800;2000;600;600;600;700;505;66;20;17;35;18;56;31;31;23;830;216;216;68;2806;1518;800;1295;2635;2895;900;2803;1650;540;1242;4772;11003;13702;6879;4484;3326
-2;'004;Afghanistan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;75;75;125;106;225;275;144;276;276;510;510;400;400;315;275;275;275;1260;675;675;600;650;400;1500;1700;500;500;500;464;492;43;25;20;44;30;38;22;22;15;660;171;171;55;1626;1185;762;1341;2315;4017;986;2489;1505;605;971;4206;9810;9971;6246;3593;2558
-2;'004;Afghanistan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;2;2;2;45;22;61;61;0;79;56;56;56;56;179;530;437;437;437;437;439;440;544;544;544;544;109;274;753;27
-2;'004;Afghanistan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;2;36;14;101;101;0;49;43;43;43;43;179;642;2462;2462;2462;2462;2465;2466;2547;2547;2547;2547;88;246;591;25
-2;'004;Afghanistan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;0;5;41;41;41;20;32;9;85;88;965;16;57;57;19;439;439;14;32;5;17;77
-2;'004;Afghanistan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;5;33;33;33;55;44;22;91;125;1881;30;62;44;42;382;382;13;83;20;87;20
-2;'004;Afghanistan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;107;107;107;107;107;107;107;0
-2;'004;Afghanistan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;85;85;85;85;85;85;85;0
-2;'004;Afghanistan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;53;3;3;21;576;144;144;26;859;243;648;1073;2410;1917;853;2513;1373;427;575;3453;8902;12695;6081;4124;2978
-2;'004;Afghanistan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;32;3;3;14;512;114;114;21;790;341;569;1120;2060;2066;917;2255;1256;416;449;2856;7914;9184;5246;3102;2252
-2;'004;Afghanistan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;20;59;59;0;44;22;22;22;22;169;169;76;76;76;76;76;76;76;76;76;76;2;167;646;26
-2;'004;Afghanistan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;12;99;99;0;25;17;17;17;17;169;169;1989;1989;1989;1989;1989;1989;1989;1989;1989;1989;2;161;506;24
-2;'004;Afghanistan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;3;2;249;31;31;1;1927;1243;143;137;137;13;31;233;220;94;228;880;2087;975;793;343;271
-2;'004;Afghanistan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;6;6;1;143;24;24;1;781;800;171;130;130;70;39;172;205;147;140;968;1883;704;980;404;286
-2;'004;Afghanistan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;0;35;34;34;34;34;10;361;361;361;361;361;361;361;361;361;361;361;0;0;0;1
-2;'004;Afghanistan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;2;0;24;26;26;26;26;10;473;473;473;473;473;473;473;473;473;473;473;1;0;0;1
-2;'004;Afghanistan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;300;500;600;2500;2500;2000;1500;1000;700;700;700;2500;1200;1200;1200;2400;900;2800;3100;1000;1000;1000;1000;1022;1600;1600;1200;600;247;213;356;356;164;489;632;632;648;1685;1480;1399;2902;899;866;571;1898;11578;10466;10857;15762;78145;34055;19785;7967;11403
-2;'004;Afghanistan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;101;283;263;1030;1030;900;750;550;496;500;505;1792;860;860;600;1462;218;1146;1260;503;503;503;600;801;800;800;598;728;285;155;335;335;108;556;496;496;475;1686;1603;1810;4220;1758;1481;856;3446;17710;12869;13617;18851;40998;38990;22190;8578;19686
-2;'004;Afghanistan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;365;35;35;22;82;142;142;18;27;39;568;764;1136;210;293;224;229;229;259;585;597;564;158;60;29
-2;'004;Afghanistan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;171;22;22;8;51;85;85;16;31;66;1368;1541;1729;240;341;271;276;276;300;907;913;888;350;179;64
-2;'004;Afghanistan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;112;112;40;132;107;107;389;534;499;662;1933;319;277;149;203;11073;7264;7264;9110;6645;4307;2767;1247;1808
-2;'004;Afghanistan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;65;65;22;177;117;117;233;703;831;1227;3003;487;656;423;306;17259;10088;10088;12592;6430;6787;4871;2293;2621
-2;'004;Afghanistan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;4;4;4;4;4;4;10;10;10;10;22;0;1;0;0
-2;'004;Afghanistan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;3;3;3;3;3;3;1;1;1;1;7;0;2;0;0
-2;'004;Afghanistan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;39;39;79;274;368;368;253;724;776;632;732;357;547;373;1354;498;3076;3377;2959;68057;28747;16398;6393;9347
-2;'004;Afghanistan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;22;22;21;213;230;230;223;642;348;346;713;607;739;326;2054;444;2437;3019;1815;29592;21899;16279;5493;16038
-2;'004;Afghanistan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;24;24;22;82;142;142;16;16;22;559;758;1130;204;287;218;218;218;238;564;564;564;85;59;28
-2;'004;Afghanistan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;13;13;8;51;85;85;11;11;29;1346;1535;1723;234;335;265;265;265;280;887;887;887;198;179;64
-2;'004;Afghanistan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;104;120;120;105;77;414;414;414;49;271;271;271;390;2276;1895;2045;58827;21031;10629;4394;3368
-2;'004;Afghanistan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;8;49;75;75;36;39;72;72;72;29;152;152;152;236;1074;1060;1091;23107;11069;5768;2866;2581
-2;'004;Afghanistan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;24;24;22;53;127;127;1;1;1;1;200;431;47;70;1;1;1;21;21;21;21;26;0;0
-2;'004;Afghanistan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;13;13;8;23;77;77;3;3;3;3;192;433;46;74;4;4;4;19;19;19;19;19;0;0
-2;'004;Afghanistan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;3;3;35;26;26;38;626;294;104;157;196;196;25;1008;33;710;510;438;470;4643;3313;1269;3844
-2;'004;Afghanistan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;2;2;3;62;16;16;101;562;211;123;234;421;421;14;1785;91;1184;1135;239;579;8232;6829;1944;9799
-2;'004;Afghanistan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;11;11;11;11;11;544;544;544;2;60;60;60;60;60;386;386;386;57;57;26
-2;'004;Afghanistan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;6;6;6;6;1104;1104;1104;2;73;73;73;73;73;680;680;680;177;177;62
-2;'004;Afghanistan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;51;85;147;147;35;19;66;112;96;47;15;12;10;10;25;970;468;8755;3072;2436;710;2015
-2;'004;Afghanistan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;10;91;92;92;39;37;61;147;317;67;76;70;27;27;89;820;460;5893;2594;3619;620;3595
-2;'004;Afghanistan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;4;4;4;4;10;14;14;155;155;155;155;155;155;155;155;155;155;0;0;0
-2;'004;Afghanistan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;2;2;2;2;20;239;239;186;186;186;186;186;186;186;186;186;186;0;0;0
-2;'004;Afghanistan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;75;75;75;2;2;2;65;65;65;65;65;65;65;2;8;5;1;20;20;120
-2;'004;Afghanistan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;47;47;47;4;4;4;90;90;90;90;90;90;90;4;25;13;4;63;63;63
-2;'004;Afghanistan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2
-2;'004;Afghanistan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2
-2;'004;Afghanistan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;300;500;600;2500;2500;2000;1500;1000;700;700;700;2500;1200;1200;1200;2400;900;2800;3100;1000;1000;1000;1000;1022;1600;1600;1200;600;247;3;205;205;45;83;157;157;6;427;205;105;237;223;42;49;341;7;126;216;3693;3443;1001;620;327;248
-2;'004;Afghanistan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;101;283;263;1030;1030;900;750;550;496;500;505;1792;860;860;600;1462;218;1146;1260;503;503;503;600;801;800;800;598;728;285;9;248;248;65;166;149;149;19;341;424;237;504;664;86;107;1086;7;344;510;4444;4976;10304;1040;792;1027
-2;'004;Afghanistan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;0;0;0;0;2;11;5;5;2;2;2;2;2;1;1;11;11;11;0;72;1;1
-2;'004;Afghanistan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;0;0;0;0;5;20;19;19;3;3;3;3;3;10;10;19;19;19;1;150;0;0
-2;'004;Afghanistan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8449;9249;11572;3779;2811;995;1968
-2;'004;Afghanistan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;63;71;47;221;147;254
-2;'004;Afghanistan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;148;151;24;10
-2;'004;Afghanistan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;3;67
-2;'004;Afghanistan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;89;89;89;1;2
-2;'004;Afghanistan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;66
-2;'004;Afghanistan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;59;62;23;8
-2;'004;Afghanistan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;1
-2;'004;Afghanistan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1497;1497;3767;138;258;138;282
-2;'004;Afghanistan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;4;18;14
-2;'004;Afghanistan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;144;474;512;16;75
-2;'004;Afghanistan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;6;2;18
-2;'004;Afghanistan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5082;5673;2589;922;612;319;381
-2;'004;Afghanistan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;0;0;8;32;1
-2;'004;Afghanistan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1646;1841;2467;1037;890;408;1147
-2;'004;Afghanistan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;34;48;23;50;45;127
-2;'004;Afghanistan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;16;2496;1060;388;90;73
-2;'004;Afghanistan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;4;146;47;27
-2;'004;Afghanistan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96605;120399;93668;89768;54540;10102;17786
-2;'004;Afghanistan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;4;7;24;223;100;107
-2;'004;Afghanistan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;842;163;1;22
-2;'004;Afghanistan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;
-2;'004;Afghanistan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;176;521;601;479;794
-2;'004;Afghanistan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;1
-2;'004;Afghanistan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10785;10785;10785;5482;2181;1294;2380
-2;'004;Afghanistan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;6;0;16
-2;'004;Afghanistan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23512;42083;38635;14427;13082;4141;4446
-2;'004;Afghanistan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;1;8;163;15;54
-2;'004;Afghanistan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62221;67444;44071;68496;38513;4187;10144
-2;'004;Afghanistan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;5;15;54;65;36
-3;'008;Albania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139663.03;186973;194080;201195;236593;264327;357003
-3;'008;Albania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62195.37;79802;83289;87009;92942;114387;105241
-3;'008;Albania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1500;1700;1700;1600;1700;1100;950;1000;1450;1450;1450;1450;2069;2800;2600;2800;2900;3100;3400;3500;2800;445;445;445;1783;1885;1972;1695;2111;2111;2111;2660;8455;6848;6821;2986;19508;13913;18159;19098;36725;21733;26178;29542;29674;33632;36626;36626;37198;36307;99056;88661;92103;93071;93045;93085;70981.18;109162;114304;119088;135124;148153;227621
-3;'008;Albania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;850;300;300;50;70;100;500;550;730;730;730;730;790;800;841;730;750;770;800;830;1100;710;710;710;710;710;821;1019;1234;1472;1478;1045;6774;6169;6169;603;6592;4217;7008;5867;36496;5263;7413;7413;7413;7413;7413;7413;7082;7117;9962;10305;10716;11589;12368;12412;6551.8;8668;7426;12251;6114;7420;13517
-3;'008;Albania;1861;Roundwood;5516;Production;m3;1535000;1337000;1520000;1764000;1894000;1710000;1471000;1892000;2375000;2429000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2330000;2278000;2258000;2288000;2076000;2556000;2556000;595000;409000;409000;409000;409000;355410;230000;447000;264600;304800;296200;296200;296200;296200;430000;430000;430000;430000;1180000;1180000;1180010;1180010;1180010;1180010;1230010;905349;917845;874458;1021914;814830;823640
-3;'008;Albania;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;12837;0;0;0;10000;400;590;590;590;590;590;590;590;1860;7006;6380;105000;120000;120000;120000;30472;23801;18464;39047;23377;20958;63793
-3;'008;Albania;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;1057;212;94;180;882;36;68;68;68;68;68;68;68;558;1079;743;3741;4686;4686;4686;1648.96;2325;1549;3807;2200;1949;3699
-3;'008;Albania;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;604;2980;1000;1000;1000;6828;17;379;379;25700;96600;56767;56767;56767;56767;56767;56767;56767;56767;15918;78900;78900;78900;78900;78900;26674;15356;14029;11804;14261;9327;17022
-3;'008;Albania;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;63;223;138;138;138;365;129;151;578;3342;1906;1194;1194;1194;1194;1194;1194;1194;1194;5064;3830;3830;3830;3830;3830;1676.93;1908;1805;1693;2215;1482;1719
-3;'008;Albania;1862;Roundwood, coniferous;5516;Production;m3;530000;472000;520000;569000;609000;585000;521000;652000;810000;832000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;797000;780000;769000;786000;695000;967000;967000;35000;35000;35000;35000;35000;13870;30000;92000;36300;38300;27300;27300;27300;27300;30667;30667;30667;30667;30667;30667;30670;30670;30670;30670;80670;58809;73304;48054;80395;75792;67492
-3;'008;Albania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18904;7038;8245;10714;9608;13385;30174
-3;'008;Albania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910.4;921;698;1147;847;1301;1835
-3;'008;Albania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22133;9050;9621;7328;5959;4183;1249
-3;'008;Albania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363.14;1300;1244;1044;859;736;86
-3;'008;Albania;1863;Roundwood, non-coniferous;5516;Production;m3;1005000;865000;1000000;1195000;1285000;1125000;950000;1240000;1565000;1597000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1533000;1498000;1489000;1502000;1381000;1589000;1589000;560000;374000;374000;374000;374000;341540;200000;355000;228300;266500;268900;268900;268900;268900;399333;399333;399333;399333;1149333;1149333;1149340;1149340;1149340;1149340;1149340;846540;844541;826404;941519;739038;756148
-3;'008;Albania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11568;16763;10219;28333;13769;7573;33619
-3;'008;Albania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738.56;1404;851;2660;1353;648;1864
-3;'008;Albania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4541;6306;4408;4476;8302;5144;15773
-3;'008;Albania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313.8;608;561;649;1356;746;1633
-3;'008;Albania;1864;Wood fuel;5516;Production;m3;1045000;881000;1052000;1347000;1442000;1183000;967000;1300000;1663000;1679000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1608000;1556000;1556000;1556000;538000;345500;345500;345500;345500;340330;174000;324000;186600;222200;221000;221000;221000;221000;350000;350000;350000;350000;1100000;1100000;1100000;1100000;1100000;1100000;1150000;770399;786240;761682;884972;703292;694995
-3;'008;Albania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5837;0;0;0;0;0;0;0;0;0;0;0;0;0;6;1380;100000;100000;100000;100000;21376;8008;3530;13598;1375;2497;45332
-3;'008;Albania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;40;40;4;0;0;0;0;0;0;0;0;0;0;2;58;3000;3000;3000;3000;1030.04;1134;332;1202;274;305;2055
-3;'008;Albania;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4868;0;0;0;700;67300;56300;56300;56300;56300;56300;56300;56300;56300;7452;75900;75900;75900;75900;75900;26674;15356;14029;11804;14261;9327;17022
-3;'008;Albania;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;146;0;146;1;79;1304;1054;1054;1054;1054;1054;1054;1054;1054;4448;3575;3575;3575;3575;3575;1676.93;1908;1805;1693;2215;1482;1719
-3;'008;Albania;1627;Wood fuel, coniferous;5516;Production;m3;260000;221000;262000;337000;362000;293000;242000;325000;418000;420000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;15000;11500;11500;11500;11500;6330;12000;24000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50000;399;1245;680;0;0;0
-3;'008;Albania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17963;5324;2577;872;0;1834;18623
-3;'008;Albania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;853.77;755;246;136;0;175;709
-3;'008;Albania;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22133;9050;9621;7328;5959;4183;1249
-3;'008;Albania;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363.14;1300;1244;1044;859;736;86
-3;'008;Albania;1628;Wood fuel, non-coniferous;5516;Production;m3;785000;660000;790000;1010000;1080000;890000;725000;975000;1245000;1259000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1156000;1156000;1156000;523000;334000;334000;334000;334000;334000;162000;300000;186600;222200;221000;221000;221000;221000;350000;350000;350000;350000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;770000;784995;761002;884972;703292;694995
-3;'008;Albania;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3413;2684;953;12726;1375;663;26709
-3;'008;Albania;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176.27;379;86;1066;274;130;1346
-3;'008;Albania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4541;6306;4408;4476;8302;5144;15773
-3;'008;Albania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313.8;608;561;649;1356;746;1633
-3;'008;Albania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5837;0;0;0;0;0;0;0;0;0;0;0;0;0;6;1380;100000;100000;100000;100000;;;;;;;
-3;'008;Albania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;40;40;4;0;0;0;0;0;0;0;0;0;0;2;58;3000;3000;3000;3000;;;;;;;
-3;'008;Albania;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4868;0;0;0;700;67300;56300;56300;56300;56300;56300;56300;56300;56300;7452;75900;75900;75900;75900;75900;;;;;;;
-3;'008;Albania;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;146;0;146;1;79;1304;1054;1054;1054;1054;1054;1054;1054;1054;4448;3575;3575;3575;3575;3575;;;;;;;
-3;'008;Albania;1865;Industrial roundwood;5516;Production;m3;490000;456000;468000;417000;452000;527000;504000;592000;712000;750000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;670000;650000;680000;520000;1000000;1000000;57000;63500;63500;63500;63500;15080;56000;123000;78000;82600;75200;75200;75200;75200;80000;80000;80000;80000;80000;80000;80010;80010;80010;80010;80010;134950;131605;112776;136942;111538;128645
-3;'008;Albania;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;7000;0;0;0;10000;400;590;590;590;590;590;590;590;1860;7000;5000;5000;20000;20000;20000;9096;15793;14934;25449;22002;18461;18461
-3;'008;Albania;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;841;172;54;176;882;36;68;68;68;68;68;68;68;558;1077;685;741;1686;1686;1686;618.92;1191;1217;2605;1926;1644;1644
-3;'008;Albania;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;604;2980;1000;1000;1000;1960;17;379;379;25000;29300;467;467;467;467;467;467;467;467;8466;3000;3000;3000;3000;3000;0;0;0;0;0;0;0
-3;'008;Albania;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;63;223;138;138;138;219;129;5;577;3263;602;140;140;140;140;140;140;140;140;616;255;255;255;255;255;0;0;0;0;0;0;0
-3;'008;Albania;1866;Industrial roundwood, coniferous;5516;Production;m3;270000;251000;258000;232000;247000;292000;279000;327000;392000;412000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;380000;369000;386000;295000;567000;567000;20000;23500;23500;23500;23500;7540;18000;68000;36300;38300;27300;27300;27300;27300;30667;30667;30667;30667;30667;30667;30670;30670;30670;30670;30670;58410;72059;47374;80395;75792;67492
-3;'008;Albania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1254;0;0;0;10000;400;370;370;370;370;370;370;370;370;2000;1000;1000;1000;1000;1000;941;1714;5668;9842;9608;11551;11551
-3;'008;Albania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;343;0;2;124;882;36;58;58;58;58;58;58;58;58;320;106;106;106;106;106;56.63;166;452;1011;847;1126;1126
-3;'008;Albania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;26;2402;900;900;900;616;17;379;379;500;0;34;34;34;34;34;34;34;34;8466;1000;1000;1000;1000;1000;0;0;0;0;0;0;0
-3;'008;Albania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;162;120;120;120;150;120;1;466;60;0;11;11;11;11;11;11;11;11;612;102;102;102;102;102;0;0;0;0;0;0;0
-3;'008;Albania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1254;0;0;0;10000;400;370;370;370;370;370;370;370;370;2000;1000;1000;1000;1000;1000;941;1714;5668;9842;9608;11551;11551
-3;'008;Albania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;343;0;2;124;882;36;58;58;58;58;58;58;58;58;320;106;106;106;106;106;56.63;166;452;1011;847;1126;1126
-3;'008;Albania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;26;2402;900;900;900;616;17;379;379;500;0;34;34;34;34;34;34;34;34;8466;1000;1000;1000;1000;1000;0;0;0;0;0;0;0
-3;'008;Albania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;162;120;120;120;150;120;1;466;60;0;11;11;11;11;11;11;11;11;612;102;102;102;102;102;0;0;0;0;0;0;0
-3;'008;Albania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;220000;205000;210000;185000;205000;235000;225000;265000;320000;338000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;290000;281000;294000;225000;433000;433000;37000;40000;40000;40000;40000;7540;38000;55000;41700;44300;47900;47900;47900;47900;49333;49333;49333;49333;49333;49333;49340;49340;49340;49340;49340;76540;59546;65402;56547;35746;61153
-3;'008;Albania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;5746;0;0;0;0;0;220;220;220;220;220;220;220;1490;5000;4000;4000;19000;19000;19000;8155;14079;9266;15607;12394;6910;6910
-3;'008;Albania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;498;172;52;52;0;0;10;10;10;10;10;10;10;500;757;579;635;1580;1580;1580;562.29;1025;765;1594;1079;518;518
-3;'008;Albania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;578;578;100;100;100;1344;0;0;0;24500;29300;433;433;433;433;433;433;433;433;0;2000;2000;2000;2000;2000;0;0;0;0;0;0;0
-3;'008;Albania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;61;18;18;18;69;9;4;111;3203;602;129;129;129;129;129;129;129;129;4;153;153;153;153;153;0;0;0;0;0;0;0
-3;'008;Albania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;160;160;160;160;160;160;160;90;30;244;21;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;8;8;8;0;0;4;4;4;4;4;4;4;50;16;83;5;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;5716;0;0;0;0;0;60;60;60;60;60;60;60;1400;4970;3756;3979;19000;19000;19000;8155;14079;9266;15607;12394;6910;6910
-3;'008;Albania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;473;164;44;44;0;0;6;6;6;6;6;6;6;450;741;496;630;1580;1580;1580;562.29;1025;765;1594;1079;518;518
-3;'008;Albania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;578;578;100;100;100;1344;0;0;0;24500;29300;433;433;433;433;433;433;433;433;0;2000;2000;2000;2000;2000;0;0;0;0;0;0;0
-3;'008;Albania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;61;18;18;18;69;9;4;111;3203;602;129;129;129;129;129;129;129;129;4;153;153;153;153;153;0;0;0;0;0;0;0
-3;'008;Albania;1868;Sawlogs and veneer logs;5516;Production;m3;490000;456000;468000;417000;452000;527000;504000;592000;712000;750000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;722000;670000;650000;680000;520000;1000000;1000000;57000;63500;63500;63500;63500;6330;39000;119000;64700;67500;62100;62100;62100;62100;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;124561;128061;104374;136942;111538;127413
-3;'008;Albania;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;270000;251000;258000;232000;247000;292000;279000;327000;392000;412000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;397000;380000;369000;386000;295000;567000;567000;20000;23500;23500;23500;23500;3165;15000;66000;23000;23200;22200;22200;22200;22200;5362;5362;5362;5362;5362;5362;5360;5360;5360;5360;5360;51251;70681;46994;80395;75792;67241
-3;'008;Albania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;220000;205000;210000;185000;205000;235000;225000;265000;320000;338000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;325000;290000;281000;294000;225000;433000;433000;37000;40000;40000;40000;40000;3165;24000;53000;41700;44300;39900;39900;39900;39900;9638;9638;9638;9638;9638;9638;9640;9640;9640;9640;9640;73310;57380;57380;56547;35746;60172
-3;'008;Albania;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6330;3000;4000;13300;15100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3165;1000;2000;13300;15100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3165;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420;14000;0;0;0;13100;13100;13100;13100;65000;65000;65000;65000;65000;65000;65010;65010;65010;65010;65010;10389;3544;8402;0;0;1232
-3;'008;Albania;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210;2000;0;0;0;5100;5100;5100;5100;25305;25305;25305;25305;25305;25305;25310;25310;25310;25310;25310;7159;1378;380;0;0;251
-3;'008;Albania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210;12000;0;0;0;8000;8000;8000;8000;39695;39695;39695;39695;39695;39695;39700;39700;39700;39700;39700;3230;2166;8022;0;0;981
-3;'008;Albania;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;9000;1400;11300;55100;55100;55100;55100;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;0;0;0;0
-3;'008;Albania;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;0;0;0;0;0;0;0;20;0;0;0;0;0;31;82;38;136;0;222;936
-3;'008;Albania;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;10;0;0;0;0;0;0;0;0;0;0;16;7;7;7;7;7;28.36;39;36;110;0;248;867
-3;'008;Albania;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3572;4250;6036;6036;44900;11000;55100;55100;55100;55100;4000;4000;2800;2700;2000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0
-3;'008;Albania;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1747;811;1065;541;6774;1284;1006;1006;1006;1006;1006;1006;675;710;509;259;259;259;259;259;0;0;0;0;0;0;0
-3;'008;Albania;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;0;0;0;3900;3900;3900;3900;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10876;27428;30807;26696;20387;24054
-3;'008;Albania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;17;28;0;0;0;0;0;0;0;0;0;0;64;0;0;0;0;0;4484;939;0;53;0;0;5775
-3;'008;Albania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;6;0;0;0;0;0;0;0;0;0;0;21;12;12;12;12;12;137.84;62;0;41;0;3;357
-3;'008;Albania;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975;975;2698;0;0;3900;3900;3900;3900;3900;3900;3900;3900;13400;39000;39000;39000;39000;39000;1470;1213;1457;1175;0;0;20
-3;'008;Albania;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;170;0;0;97;97;97;97;97;97;97;97;672;1783;1783;1783;1783;1783;119.67;192;186;164;0;0;2
-3;'008;Albania;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1700;1700;1700;1700;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;8706;24386;16554;22803;16132;18419
-3;'008;Albania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;1;17;0;0;0;0;0;0;0;0;0;0;64;0;0;0;0;0;0;939;0;53;0;0;5694
-3;'008;Albania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;4;0;0;0;0;0;0;0;0;0;0;21;12;12;12;12;12;0;62;0;41;0;3;353
-3;'008;Albania;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975;975;975;2601;0;0;1700;1700;1700;1700;1700;1700;1700;1700;11200;36800;36800;36800;36800;36800;1470;1213;1457;1175;0;0;0
-3;'008;Albania;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;166;0;0;51;51;51;51;51;51;51;51;626;1737;1737;1737;1737;1737;119.67;192;186;164;0;0;0
-3;'008;Albania;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;0;0;0;2200;2200;2200;2200;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;2170;3042;14253;3893;4255;5635
-3;'008;Albania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;32;312;16;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4484;0;0;0;0;0;81
-3;'008;Albania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;3;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;137.84;0;0;0;0;0;4
-3;'008;Albania;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;0;0;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;0;0;0;0;0;0;20
-3;'008;Albania;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;46;46;46;46;46;46;46;46;46;46;46;46;46;46;0;0;0;0;0;0;2
-3;'008;Albania;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-3;'008;Albania;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;4900;14900;14900;35000;42000;32000;40000;40000;40000;40000;40000
-3;'008;Albania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;46;46;91;112;810;506;506;506;506;506;2629
-3;'008;Albania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;16;16;25;30;33;21;21;21;21;21;701
-3;'008;Albania;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;709;5014;10383;5938;21442;22935;20157;18084;9596;17125;34244
-3;'008;Albania;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;103;756;1210;666;2562.2;4382;3767;3693;1907;4473;6297
-3;'008;Albania;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;4900;4900;4900;25000;32000;32000;40000;40000;40000;40000;40000
-3;'008;Albania;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;46;46;46;46;0;0;0;0;0;0;2621
-3;'008;Albania;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;16;16;16;16;0;0;0;0;0;0;688
-3;'008;Albania;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;709;0;709;709;18530;22935;20157;18084;9596;17125;32535
-3;'008;Albania;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;103;0;103;103;2325.2;4382;3767;3693;1907;4473;6081
-3;'008;Albania;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;0;0;0;0;0;0
-3;'008;Albania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;45;66;810;506;506;506;506;506;8
-3;'008;Albania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;14;33;21;21;21;21;21;13
-3;'008;Albania;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5014;9674;5229;2912;0;0;0;0;0;1709
-3;'008;Albania;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;1107;563;237;0;0;0;0;0;216
-3;'008;Albania;1872;Sawnwood;5516;Production;m3;166000;167000;156000;142000;149000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;382000;382000;382000;3800;4600;4600;4600;4600;28000;35000;90000;197000;97000;97000;97000;97000;97000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;58273;83716;79020;103886;87340;109188
-3;'008;Albania;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5859;15423;14800;14800;31;3380;15000;14652;14652;50000;8535;23890;23890;23890;23890;23890;23890;23890;23890;93908;76661;76660;70400;73100;73100;109441;44807;46334;47915;53911;54998;54998
-3;'008;Albania;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;861;5691;4635;4635;5;711;4630;1773;970;8416;1415;4242;4242;4242;4242;4242;4242;4242;4242;17773;13517;13517;13517;13517;13517;12439.52;13365;18066;20243;21547;21478;21478
-3;'008;Albania;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;744;2110;3720;4098;4098;414;8651;8900;8900;607;13499;9000;9050;9050;242700;7671;21409;21409;21409;21409;21409;21409;21409;21409;5862;6546;6550;1050;850;850;0;0;0;1248;0;0;0
-3;'008;Albania;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;111;309;524;762;762;139;6351;5799;5799;265;3535;2694;5535;3156;24784;1089;4304;4304;4304;4304;4304;4304;4304;4304;1227;1952;1952;1952;1952;1952;0;0;0;1659;0;0;0
-3;'008;Albania;1632;Sawnwood, coniferous;5516;Production;m3;85000;85000;80000;75000;77000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;86000;86000;86000;1300;1700;1700;1700;1700;9000;15000;47000;47000;47000;47000;47000;47000;47000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;22415;47256;34040;67415;31807;57575
-3;'008;Albania;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5859;9323;12000;12000;31;1276;12000;12000;12000;35300;7759;20478;20478;20478;20478;20478;20478;20478;20478;89908;72800;72800;68700;70700;70700;103589;33435;32765;35138;39316;31364;31364
-3;'008;Albania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;861;1375;2654;2654;5;93;2650;1110;518;6028;1125;2969;2969;2969;2969;2969;2969;2969;2969;16457;11897;11897;11897;11897;11897;10101.61;10884;14547;16742;18052;16599;16599
-3;'008;Albania;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;51;6200;6200;104;2013;6000;5900;5900;79500;7671;12252;12252;12252;12252;12252;12252;12252;12252;1000;546;550;550;550;550;0;0;0;0;0;0;0
-3;'008;Albania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;3818;3818;12;234;156;100;1242;13434;1089;1740;1740;1740;1740;1740;1740;1740;1740;97;34;34;34;34;34;0;0;0;0;0;0;0
-3;'008;Albania;1633;Sawnwood, non-coniferous;5516;Production;m3;81000;82000;76000;67000;72000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;296000;296000;296000;2500;2900;2900;2900;2900;19000;20000;43000;150000;50000;50000;50000;50000;50000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;35858;36460;44980;36471;55533;51613
-3;'008;Albania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;6100;2800;2800;0;2104;3000;2652;2652;14700;776;3412;3412;3412;3412;3412;3412;3412;3412;4000;3861;3860;1700;2400;2400;5852;11372;13569;12777;14595;23634;23634
-3;'008;Albania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4316;1981;1981;0;618;1980;663;452;2388;290;1273;1273;1273;1273;1273;1273;1273;1273;1316;1620;1620;1620;1620;1620;2337.91;2481;3519;3501;3495;4879;4879
-3;'008;Albania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;744;2110;3720;4098;4098;294;8600;2700;2700;503;11486;3000;3150;3150;163200;0;9157;9157;9157;9157;9157;9157;9157;9157;4862;6000;6000;500;300;300;0;0;0;1248;0;0;0
-3;'008;Albania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;111;309;524;762;762;125;6345;1981;1981;253;3301;2538;5435;1914;11350;0;2564;2564;2564;2564;2564;2564;2564;2564;1130;1918;1918;1918;1918;1918;0;0;0;1659;0;0;0
-3;'008;Albania;1634;Veneer sheets;5516;Production;m3;4600;2200;1000;400;400;1000;2500;2600;4800;4800;4800;4800;4800;4800;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;37000;37000;37000;37000;37000;37000;37000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;47;100;100;0;41;28;29;200;900;382;291;291;291;291;291;291;291;291;1285;1285;1290;1290;1290;1290;0;247;161;324;233;98;98
-3;'008;Albania;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;142;181;181;0;15;181;10;97;1319;330;277;277;277;277;277;277;277;277;1020;846;846;846;846;846;0;709;469;921;796;359;359
-3;'008;Albania;1634;Veneer sheets;5916;Export quantity;m3;3600;1100;1100;200;200;400;1400;1600;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;153;115;200;200;200;149;40;10;10;10;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1634;Veneer sheets;5922;Export value;1000 USD;850;300;300;50;70;100;350;400;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;167;68;120;120;120;66;120;0;0;6;45;0;0;0;0;0;0;0;0;45;50;50;50;50;50;0;0;0;0;0;0;0
-3;'008;Albania;1873;Wood-based panels;5516;Production;m3;6200;6600;8000;6900;6900;6900;6900;6900;6900;6900;6900;6900;6900;6900;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;6200;6200;6200;6200;6200;6200;6200;6200;6200;3000;0;0;0;0;0;0;0;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;0;0;0;0;0;0
-3;'008;Albania;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;303;2049;2000;1131;17613;11154;21901;28114;29311;51180;52112;89011;87876;98835;84975;79948;96948;97948;186870;176100;176100;176100;176100;176100;114110;52987;55581;83767;74546;72217;227775
-3;'008;Albania;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;176;292;265;283;7594;7094;6623;7917;16190;10034;11673;15037;15169;19127;22121;22121;22766;21437;39314;36193;36193;36193;36193;36193;25045.94;32528;38300;44393;66190;68816;82886
-3;'008;Albania;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;19;60;60;60;2957;401;308;1409;11880;150;0;0;0;0;0;0;0;0;0;1200;1200;1200;1200;1200;0;74;126;1390;994;437;4171
-3;'008;Albania;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;10;45;45;45;760;399;174;610;778;127;0;0;0;0;0;0;0;0;147;245;245;245;245;245;0;22;325;1356;854;535;1493
-3;'008;Albania;1640;Plywood and LVL;5516;Production;m3;6200;6600;8000;6900;6900;6900;6900;6900;6900;6900;6900;6900;6900;6900;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;6200;6200;6200;6200;6200;6200;6200;6200;6200;3000;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0
-3;'008;Albania;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;166;100;100;88;1550;960;1560;4504;800;535;748;748;748;748;748;748;748;748;2770;1000;1000;1000;1000;1000;1109;1576;1777;3164;2778;2051;2051
-3;'008;Albania;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;132;65;65;59;474;65;548;1364;259;220;303;303;303;303;303;303;303;303;1393;1012;1012;1012;1012;1012;572.29;1789;2161;4311;4056;3227;3227
-3;'008;Albania;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;19;60;60;60;32;40;30;0;54;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;10;45;45;45;20;45;0;0;20;0;0;0;0;0;0;0;0;0;20;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;95;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-3;'008;Albania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;32;159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-3;'008;Albania;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0
-3;'008;Albania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;943;9768;2000;1100;14878;17997;34427;23164;60063;58928;69887;56027;51000;68000;69000;77680;79000;79000;79000;79000;79000;70188;40204;35995;35696;41377;40651;128831
-3;'008;Albania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;183;5403;5539;2570;4137;3752;6841;7195;10559;10691;14649;17643;17643;18288;16959;18397;17728;17728;17728;17728;17728;14770.62;21155;17475;18017;24346;24818;33542
-3;'008;Albania;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2649;108;25;0;10417;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;17;994;994;428;1967
-3;'008;Albania;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;108;14;0;148;0;0;0;0;0;0;0;0;0;6;7;7;7;7;7;0;22;19;854;854;515;1017
-3;'008;Albania;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5014;5014;2618;9000;9000;9000;9000;9000;9000;9000;9000;320;0;0;0;0;0;1052;642;1041;1832;1949;1025;11775
-3;'008;Albania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;986;986;380;736;736;736;736;736;736;736;736;166;25;25;25;25;25;233.59;465;694;1208;1717;1013;4025
-3;'008;Albania;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14
-3;'008;Albania;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13
-3;'008;Albania;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;42;149;100;100;6295;8194;18241;3718;5500;13600;19200;19200;19200;19200;19200;19200;19200;19200;106100;96100;96100;96100;96100;96100;41761;10565;16768;43075;28442;28490;85118
-3;'008;Albania;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;12;68;41;41;1717;1490;3257;1430;11193;2593;3439;3439;3439;3439;3439;3439;3439;3439;19358;17428;17428;17428;17428;17428;9469.44;9119;17970;20857;36071;39758;42092
-3;'008;Albania;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;253;253;1226;1226;80;0;0;0;0;0;0;0;0;0;1200;1200;1200;1200;1200;0;0;109;396;0;9;2190
-3;'008;Albania;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;246;160;568;568;119;0;0;0;0;0;0;0;0;121;238;238;238;238;238;0;0;306;502;0;20;463
-3;'008;Albania;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;1627;2913;1300;1500;9600;11200;11200;11200;11200;11200;11200;11200;11200;2100;2100;2100;2100;2100;2100;22;4624;6107;7800;7448;7885;12350
-3;'008;Albania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;546;1037;698;9573;1787;2447;2447;2447;2447;2447;2447;2447;2447;1918;1785;1785;1785;1785;1785;16.23;3006;4169;5154;5579;6302;8559
-3;'008;Albania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;91;182;1167;1167;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;62;0;0;67
-3;'008;Albania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;167;140;543;543;119;0;0;0;0;0;0;0;0;35;0;0;0;0;0;0;0;0;48;0;0;44
-3;'008;Albania;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;403;468;468;100;3600;5600;5600;5600;5600;5600;5600;5600;5600;40000;42000;42000;42000;42000;42000;25765;3990;3927;27340;13995;13790;53236
-3;'008;Albania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;227;1090;452;777;612;693;693;693;693;693;693;693;693;10669;10831;10831;10831;10831;10831;7784.48;3306;3174;12861;16208;16927;24726
-3;'008;Albania;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;15;15;15;0;0;0;0;0;0;0;0;0;0;1200;1200;1200;1200;1200;0;0;1;80;0;9;2106
-3;'008;Albania;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;0;0;0;0;0;0;0;0;0;86;235;235;235;235;235;0;0;4;110;0;20;408
-3;'008;Albania;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;100;100;100;5196;6164;14860;1950;3900;400;2400;2400;2400;2400;2400;2400;2400;2400;64000;52000;52000;52000;52000;52000;15974;1951;6734;7935;6999;6815;19532
-3;'008;Albania;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;41;41;41;1003;717;1130;280;843;194;299;299;299;299;299;299;299;299;6771;4812;4812;4812;4812;4812;1668.73;2807;10627;2842;14284;16529;8807
-3;'008;Albania;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;152;56;44;44;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;108;254;0;0;17
-3;'008;Albania;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;65;6;11;11;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;0;0;302;344;0;0;11
-3;'008;Albania;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;42;49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-3;'008;Albania;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;12;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-3;'008;Albania;1879;Total fibre furnish;5510;Production;t;;;;;;7000;8400;8600;8600;8500;8500;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;15900;15900;15900;15900;15900;15900;15900;15900;15900;15900;15900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;8000;9000;13000;15000;2620;5251;4625;2555;3164;4721
-3;'008;Albania;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;4000;4000;4000;4649;4072;4396;4419;4419;4419;4419;4419;4419;4419;4419;4419;4419;4419;4773;451;512;468;4436;4528;23;34;23;1794;48;28;1399
-3;'008;Albania;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;872;1000;1000;1000;1272;1047;1475;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1641;439;449;472;437;472;19;64;46;967;106;69;1622
-3;'008;Albania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;62;78;102;89;89;89;89;89;89;89;89;89;89;89;1000;1010;3501;7163;8731;12061;14662;11243;9227;7906;7906;7906;7216
-3;'008;Albania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;5;4;0;0;0;0;0;0;0;0;0;0;0;122;142;455;675;1000;1588;2193;1551;1048;825;825;825;1060
-3;'008;Albania;1878;Pulp for paper;5510;Production;t;;;;;;7000;8400;8600;8600;8500;8500;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;8400;15900;15900;15900;15900;15900;15900;15900;15900;15900;15900;15900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;4000;4000;4000;4601;4008;4308;4331;4331;4331;4331;4331;4331;4331;4331;4331;4331;4331;4773;451;436;466;4436;4436;0;34;23;1794;48;28;1399
-3;'008;Albania;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;872;1000;1000;1000;1262;1028;1471;1046;1046;1046;1046;1046;1046;1046;1046;1046;1046;1046;1640;437;437;470;437;437;0;64;46;967;106;69;1618
-3;'008;Albania;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;14;14;1;1;1;1;1;1;1;1;1;1;1;0;10;10;10;10;10;0;0;0;0;0;0;0
-3;'008;Albania;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;0;0;0;0;0;0;0;0;0;0;0;7;26;26;26;26;26;0;0;0;0;0;0;0
-3;'008;Albania;1875;Wood pulp;5510;Production;t;;;;;;7000;8000;8200;8200;8100;8100;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;4000;4000;4000;4630;4031;4331;4354;4354;4354;4354;4354;4354;4354;4354;4354;4354;4354;4802;480;465;495;4465;4465;0;34;23;29;34;25;1397
-3;'008;Albania;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;872;1000;1000;1000;1279;1020;1463;1038;1038;1038;1038;1038;1038;1038;1038;1038;1038;1038;1566;356;356;389;356;356;0;64;46;61;71;61;1613
-3;'008;Albania;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;29;29;16;16;16;16;16;16;16;16;16;16;16;15;25;25;25;25;25;0;0;0;0;0;0;0
-3;'008;Albania;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;6;6;2;2;2;2;2;2;2;2;2;2;2;9;19;19;19;19;19;0;0;0;0;0;0;0
-3;'008;Albania;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;20;20;20;20;20;;;;;;;
-3;'008;Albania;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;40;40;40;40;40;;;;;;;
-3;'008;Albania;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;1;1;1;1;1;1;1;1;1;1;1;0;10;10;10;10;10;;;;;;;
-3;'008;Albania;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;0;0;0;0;7;12;12;12;12;12;;;;;;;
-3;'008;Albania;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-3;'008;Albania;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;;;;;;;
-3;'008;Albania;1656;Chemical wood pulp;5510;Production;t;;;;;;7000;8000;8200;8200;8100;8100;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;4000;4000;4000;4601;4002;4302;4324;4324;4324;4324;4324;4324;4324;4324;4324;4324;4324;4765;430;415;445;4415;4415;0;34;23;29;34;25;1397
-3;'008;Albania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;872;1000;1000;1000;1262;1003;1446;1018;1018;1018;1018;1018;1018;1018;1018;1018;1018;1018;1535;296;296;329;296;296;0;64;46;61;71;61;1613
-3;'008;Albania;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;0;0;0;0;0;0;0
-3;'008;Albania;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500;13500;13500;13500;13500;13500;13500;13500;13500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;0;0;30;4000;4000;0;0;0;0;0;0;55
-3;'008;Albania;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;33;0;0;0;0;0;0;0;0;70
-3;'008;Albania;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;601;2;302;302;302;302;302;302;302;302;302;302;302;302;583;393;393;393;393;393;0;0;0;0;0;0;1306
-3;'008;Albania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;262;3;446;3;3;3;3;3;3;3;3;3;3;3;395;267;267;267;267;267;0;0;0;0;0;0;1449
-3;'008;Albania;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;0;0;0;0;0;0;0
-3;'008;Albania;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;23;29;34;25;36
-3;'008;Albania;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;64;46;61;71;61;94
-3;'008;Albania;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-3;'008;Albania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;;;;;;;
-3;'008;Albania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;;
-3;'008;Albania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;15;0;0;0;0;;;;;;;
-3;'008;Albania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;14;14;14;14;14;;;;;;;
-3;'008;Albania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;
-3;'008;Albania;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;0;0;0;0;0;0;0
-3;'008;Albania;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;0;0;0;0;0;0;0
-3;'008;Albania;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;0;0;0;0;0;0
-3;'008;Albania;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0
-3;'008;Albania;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;1765;14;3;2
-3;'008;Albania;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;91;98;98;98;98;98;0;0;0;906;35;8;5
-3;'008;Albania;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;9;9;9;9;0;0;0;0;0;0;0
-3;'008;Albania;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0
-3;'008;Albania;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;530;530;530;530;530;0;0;0;0;0;0;0
-3;'008;Albania;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;8000;9000;13000;15000;2620;5251;4625;2555;3164;4721
-3;'008;Albania;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;48;64;88;88;88;88;88;88;88;88;88;88;88;88;0;0;76;2;0;92;23;0;0;0;0;0;0
-3;'008;Albania;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;19;4;22;22;22;22;22;22;22;22;22;22;22;1;2;12;2;0;35;19;0;0;0;0;0;4
-3;'008;Albania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;48;64;88;88;88;88;88;88;88;88;88;88;88;88;1000;1000;3491;7153;8721;12051;14662;11243;9227;7906;7906;7906;7216
-3;'008;Albania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;1;0;0;0;0;0;0;0;0;0;0;0;0;115;116;429;649;974;1562;2193;1551;1048;825;825;825;1060
-3;'008;Albania;1876;Paper and paperboard;5510;Production;t;;;;;;6500;8000;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;26000;26000;43500;43500;43500;43500;43500;43500;43500;43500;43500;1000;2800;2800;2800;2800;2800;2800;2800;0;0;0;0;0;0;0;0;0;0;0;3228;5123;9019;6584;11592;17829
-3;'008;Albania;1876;Paper and paperboard;5610;Import quantity;t;6100;7000;7000;6500;7000;4400;3800;3800;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;4300;4000;4000;4000;2500;2200;2400;1700;2300;2300;2300;1146;1658;680;680;4747;10323;11831;19284;18019;18019;18019;18019;18019;18019;18019;18019;18019;11267;11267;32100;29400;29500;29500;29500;29500;25278;50673;50065;46741;33975;35928;84321
-3;'008;Albania;1876;Paper and paperboard;5622;Import value;1000 USD;1500;1700;1700;1600;1700;1100;950;1000;1450;1450;1450;1450;2069;2800;2600;2800;2900;3100;3400;3500;2800;445;445;445;1783;1885;1972;1695;2111;2111;2111;1581;1574;719;719;1695;8839;719;8155;8833;8833;8833;8833;8833;8833;8833;8833;8833;8760;8708;37731;36331;36775;36775;36775;36775;31628.55;60049;55817;48585;44264;55210;115652
-3;'008;Albania;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;800;800;800;800;800;800;800;800;800;800;800;800;800;800;1000;200;200;200;200;200;200;200;200;200;200;1002;220;189;189;70;74;9;28;1094;1094;1094;1094;1094;1094;1094;1094;1094;1094;1094;2800;2852;2854;2854;2854;2854;0;754;484;2456;441;77;1847
-3;'008;Albania;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;150;150;130;130;130;130;190;200;241;130;150;170;200;230;500;110;110;110;110;110;110;110;110;110;110;654;122;67;67;35;73;21;41;810;810;810;810;810;810;810;810;810;810;810;2174;2037;2037;2037;2037;2037;0;613;295;2861;313;105;2946
-3;'008;Albania;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;12500;12500;12500;12500;12500;12500;12500;12500;12500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;1070;380;380;4400;7023;6479;9368;7117;7117;7117;7117;7117;7117;7117;7117;7117;7117;7117;18500;15200;15200;15200;15200;15200;9072;20996;18321;15555;9084;8669;26031
-3;'008;Albania;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781;920;397;397;1349;6345;397;4909;5501;5501;5501;5501;5501;5501;5501;5501;5501;5501;5501;19860;18542;18542;18542;18542;18542;14796.76;29561;25302;18764;15703;17091;39968
-3;'008;Albania;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;20;0;0;0;46;0;16;529;529;529;529;529;529;529;529;529;529;529;0;154;154;154;154;154;0;544;0;2053;326;0;1060
-3;'008;Albania;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;12;0;0;0;51;0;10;478;478;478;478;478;478;478;478;478;478;478;57;233;233;233;233;233;0;586;0;1769;265;0;1267
-3;'008;Albania;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;8000;8000;8000;8000;8000;8000;8000;8000;8000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;440;80;80;4400;4636;5023;7045;2761;2761;2761;2761;2761;2761;2761;2761;2761;2761;2761;3500;3200;3200;3200;3200;3200;1548;2008;1120;784;357;165;1662
-3;'008;Albania;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;134;25;25;1349;3715;25;3046;1563;1563;1563;1563;1563;1563;1563;1563;1563;1563;1563;2637;2348;2348;2348;2348;2348;904.92;1360;768;500;250;141;1359
-3;'008;Albania;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;33;33;33;33;33;33;33;33;33;33;33;4;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;630;300;300;0;2387;1456;2323;4356;4356;4356;4356;4356;4356;4356;4356;4356;4356;4356;15000;12000;12000;12000;12000;12000;7524;18988;17201;14771;8727;8504;24369
-3;'008;Albania;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;786;372;372;0;2630;372;1863;3938;3938;3938;3938;3938;3938;3938;3938;3938;3938;3938;17223;16194;16194;16194;16194;16194;13891.84;28201;24534;18264;15453;16950;38609
-3;'008;Albania;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;20;0;0;0;46;0;16;529;529;529;529;529;529;529;529;529;529;529;0;154;154;154;154;154;0;544;0;2053;326;0;1060
-3;'008;Albania;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;12;0;0;0;51;0;10;445;445;445;445;445;445;445;445;445;445;445;53;233;233;233;233;233;0;586;0;1769;265;0;1267
-3;'008;Albania;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1456;835;863;863;863;863;863;863;863;863;863;863;863;4000;3000;3000;3000;3000;3000;3290;4497;4425;3213;2843;3317;8505
-3;'008;Albania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;686;772;772;772;772;772;772;772;772;772;772;772;4023;6146;6146;6146;6146;6146;10366.16;13869;12300;8261;9451;10407;19741
-3;'008;Albania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;46;0;98;0;0;18
-3;'008;Albania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;28;28;28;28;28;0;94;0;86;0;0;16
-3;'008;Albania;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1259;2877;2877;2877;2877;2877;2877;2877;2877;2877;2877;2877;6000;5000;5000;5000;5000;5000;2710;10206;8563;7638;3793;3064;10189
-3;'008;Albania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;925;2537;2537;2537;2537;2537;2537;2537;2537;2537;2537;2537;7265;5352;5352;5352;5352;5352;2270.06;9856;7992;6427;3772;3789;11407
-3;'008;Albania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;33;33;33;33;33;33;33;33;33;33;33;0;154;154;154;154;154;0;498;0;1500;326;0;784
-3;'008;Albania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;30;30;30;30;30;30;30;30;30;30;30;13;173;173;173;173;173;0;492;0;1276;265;0;938
-3;'008;Albania;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;616;616;616;616;616;616;616;616;616;616;616;5000;4000;4000;4000;4000;4000;1524;4285;4213;3920;2091;2123;5675
-3;'008;Albania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;629;629;629;629;629;629;629;629;629;629;629;5935;4696;4696;4696;4696;4696;1255.62;4476;4242;3576;2230;2754;7461
-3;'008;Albania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;496;496;496;496;496;496;496;496;496;496;496;0;0;0;0;0;0;0;0;0;455;0;0;258
-3;'008;Albania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;415;415;415;415;415;415;415;415;415;415;415;13;32;32;32;32;32;0;0;0;407;0;0;313
-3;'008;Albania;1675;Other paper and paperboard;5510;Production;t;;;;;;6500;8000;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;19000;19000;31000;31000;31000;31000;31000;31000;31000;31000;31000;1000;2800;2800;2800;2800;2800;2800;2800;0;0;0;0;0;0;0;0;0;0;0;3228;5123;9019;6584;11592;17829
-3;'008;Albania;1675;Other paper and paperboard;5610;Import quantity;t;6100;7000;7000;6500;7000;4400;3800;3800;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;4300;4000;4000;4000;2500;2200;2400;1700;2300;2300;2300;433;588;300;300;347;3300;5352;9916;10902;10902;10902;10902;10902;10902;10902;10902;10902;4150;4150;13600;14200;14300;14300;14300;14300;16206;29677;31744;31186;24891;27259;58290
-3;'008;Albania;1675;Other paper and paperboard;5622;Import value;1000 USD;1500;1700;1700;1600;1700;1100;950;1000;1450;1450;1450;1450;2069;2800;2600;2800;2900;3100;3400;3500;2800;445;445;445;1783;1885;1972;1695;2111;2111;2111;800;654;322;322;346;2494;322;3246;3332;3332;3332;3332;3332;3332;3332;3332;3332;3259;3207;17871;17789;18233;18233;18233;18233;16831.79;30488;30515;29821;28561;38119;75684
-3;'008;Albania;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;800;800;800;800;800;800;800;800;800;800;800;800;800;800;1000;200;200;200;200;200;200;200;200;200;200;200;200;189;189;70;28;9;12;565;565;565;565;565;565;565;565;565;565;565;2800;2698;2700;2700;2700;2700;0;210;484;403;115;77;787
-3;'008;Albania;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;150;150;130;130;130;130;190;200;241;130;150;170;200;230;500;110;110;110;110;110;110;110;110;110;110;110;110;67;67;35;22;21;31;332;332;332;332;332;332;332;332;332;332;332;2117;1804;1804;1804;1804;1804;0;27;295;1092;48;105;1679
-3;'008;Albania;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;443;353;3002;2618;3250;4028
-3;'008;Albania;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;756;756;756;756;756;756;756;756;756;756;756;4000;4000;4000;4000;4000;4000;7669;8839;10287;11107;11079;10610;22534
-3;'008;Albania;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363;787;787;787;787;787;787;787;787;787;787;787;5442;5927;5927;5927;5927;5927;8684.97;10936;12006;12739;13350;17952;32007
-3;'008;Albania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85;85;85;85;85;0;0;0;0;0;0;0;210;122;194;115;25;1
-3;'008;Albania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;78;78;78;78;78;4;21;21;21;21;21;0;27;37;25;48;36;2
-3;'008;Albania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2800;2800;2800;2800;2800;2800;2800;0;0;0;0;0;0;0;0;0;0;0;2285;2939;3240;2675;6000;13397
-3;'008;Albania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2290;3294;3294;3294;3294;3294;3294;3294;3294;3294;3294;3294;9400;10000;10000;10000;10000;10000;8514;20789;21407;20061;13595;16640;35359
-3;'008;Albania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1337;1998;1998;1998;1998;1998;1998;1998;1998;1998;1998;1998;11282;11175;11175;11175;11175;11175;8113.01;19026;18365;16991;14207;20139;41533
-3;'008;Albania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;480;480;480;480;480;480;480;480;480;480;480;2300;2598;2600;2600;2600;2600;0;0;362;58;0;52;673
-3;'008;Albania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;185;185;185;185;185;185;185;185;185;185;185;951;999;999;999;999;999;0;0;258;27;0;69;737
-3;'008;Albania;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;815;815;815;815;815;815;815;815;815;815;815;1000;1000;1000;1000;1000;1000;65;2744;3596;3255;539;553;6073
-3;'008;Albania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;442;442;442;442;442;442;442;442;442;442;442;1327;1126;1126;1126;1126;1126;94.03;2002;2202;1914;520;767;4379
-3;'008;Albania;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;2;2;2;2;2;2;2;2;0;295;300;300;300;300;0;0;0;0;0;0;5
-3;'008;Albania;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1;1;1;1;1;0;200;200;200;200;200;0;0;0;0;0;0;7
-3;'008;Albania;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;800;800;800;800;800;800;800;0;0;0;0;0;0;0;0;0;0;0;2285;2939;3240;2675;6000;13397
-3;'008;Albania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;825;825;825;825;825;825;825;825;825;825;825;3000;3000;3000;3000;3000;3000;2197;5196;5356;4786;4680;7630;8086
-3;'008;Albania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;561;561;561;561;561;561;561;561;561;561;561;4771;5077;5077;5077;5077;5077;2446.57;5642;5280;4961;5577;9612;13074
-3;'008;Albania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;0;3;0;0;0;0;0;0;0;0;0;52;620
-3;'008;Albania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;0;5;5;5;5;5;0;0;0;0;0;69;631
-3;'008;Albania;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1631;1631;1631;1631;1631;1631;1631;1631;1631;1631;1631;5000;5000;5000;5000;5000;5000;5305;11519;10647;10436;7050;6700;19137
-3;'008;Albania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;984;984;984;984;984;984;984;984;984;984;984;4946;4304;4304;4304;4304;4304;4614.91;10126;9175;8641;6580;7348;22648
-3;'008;Albania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;48
-3;'008;Albania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;258;185;185;185;185;185;0;0;0;0;0;0;99
-3;'008;Albania;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-3;'008;Albania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;23;23;23;23;23;23;23;23;23;23;23;400;1000;1000;1000;1000;1000;947;1330;1808;1584;1326;1757;2063
-3;'008;Albania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;11;11;11;11;11;11;11;11;11;11;11;238;668;668;668;668;668;957.51;1256;1708;1475;1530;2412;1432
-3;'008;Albania;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;447;447;447;447;447;447;447;447;447;447;447;300;300;300;300;300;300;0;0;362;58;0;0;0
-3;'008;Albania;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;154;154;154;154;154;154;154;154;154;154;693;609;609;609;609;609;0;0;258;27;0;0;0
-3;'008;Albania;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;31000;31000;31000;31000;31000;31000;31000;31000;31000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;500;1831;2777;1291;2342;404
-3;'008;Albania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6100;7000;7000;6500;7000;4400;3800;3800;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;4300;4000;4000;4000;2500;2200;2400;1700;2300;2300;2300;433;588;300;300;347;3300;5352;6852;6852;6852;6852;6852;6852;6852;6852;6852;6852;100;100;200;200;300;300;300;300;23;49;50;18;217;9;397
-3;'008;Albania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1500;1700;1700;1600;1700;1100;950;1000;1450;1450;1450;1450;2069;2800;2600;2800;2900;3100;3400;3500;2800;445;445;445;1783;1885;1972;1695;2111;2111;2111;800;654;322;322;346;2494;322;546;547;547;547;547;547;547;547;547;547;474;422;1147;687;1131;1131;1131;1131;33.81;526;144;91;1004;28;2144
-3;'008;Albania;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;800;800;800;800;800;800;800;800;800;800;800;800;800;800;1000;200;200;200;200;200;200;200;200;200;200;200;200;189;189;70;28;9;0;0;0;0;0;0;0;0;0;0;0;0;500;100;100;100;100;100;0;0;0;151;0;0;113
-3;'008;Albania;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;150;150;130;130;130;130;190;200;241;130;150;170;200;230;500;110;110;110;110;110;110;110;110;110;110;110;110;67;67;35;22;21;21;69;69;69;69;69;69;69;69;69;69;69;1162;784;784;784;784;784;0;0;0;1040;0;0;940
-3;'008;Albania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24161.33;27443;28529;31358;38226;40308;37277
-3;'008;Albania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20153.82;26012;28663;37304;39872;51019;38694
-3;'008;Albania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1315.92;1937;1684;2222;1918;1847;4770
-3;'008;Albania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;40;125;0;260;184
-3;'008;Albania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476.51;759;584;670;677;458;2000
-3;'008;Albania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;22
-3;'008;Albania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;839.41;1178;1100;1552;1241;1389;2770
-3;'008;Albania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;40;124;0;260;162
-3;'008;Albania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569.75;1606;2004;1946;2319;2634;2391
-3;'008;Albania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803.24;616;4051;4588;4794;8890;1591
-3;'008;Albania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348.4;484;324;550;827;607;1340
-3;'008;Albania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2044;626;4964;0;2242;8153
-3;'008;Albania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2025.15;3017;4040;6526;6006;4987;3238
-3;'008;Albania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726.62;789;1242;2142;2444;1284;2308
-3;'008;Albania;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1383;2410
-3;'008;Albania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059;1442
-3;'008;Albania;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-3;'008;Albania;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84
-3;'008;Albania;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-3;'008;Albania;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-3;'008;Albania;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28
-3;'008;Albania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17639;19537;19615;18411;25793;28749;19006
-3;'008;Albania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15623;18868;19010;20099;29047;32304;8445
-3;'008;Albania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;51
-3;'008;Albania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;408
-3;'008;Albania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1263.09;862;862;1703;1363;1484;6481
-3;'008;Albania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000.97;3694;3694;5386;3587;6039;17605
-3;'008;Albania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44520.53;50368;51247;50749;63243;75866;92105
-3;'008;Albania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35489.75;45122;47200;37454;46956;55948;53030
-3;'008;Albania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135.65;207;207;306;337;444;104
-3;'008;Albania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1
-3;'008;Albania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147.15;1920;1920;1920;5150;5712;13990
-3;'008;Albania;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;49;38;196
-3;'008;Albania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6263.46;6772;6772;6772;8019;8555;8843
-3;'008;Albania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2618;3156;1409
-3;'008;Albania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28588.04;31919;32798;32201;35364;45053;37615
-3;'008;Albania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35285.88;45041;47119;37454;42969;51291;48457
-3;'008;Albania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8386.22;9550;9550;9550;14373;16102;31553
-3;'008;Albania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203.87;81;81;0;1320;1463;2967
-4;'012;Algeria;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1627264;1784975;1969195;1670821;1599917;1573249;1904470
-4;'012;Algeria;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21387;17556;25761;29104;42199;62487;78169
-4;'012;Algeria;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;25713;22913;19353;15560;18031;16784;19183;23233;37378;57735;54123;39394;76410;185243;119204;88130;169138;130182;187360;212314;321205;298726;391005;380203;315882;319895;294433;361879;434792;324251;558198;253473;335458;384490;426136;337648;362933;309750;350646;313192;324828;333489;499991;571527;573455;487030;755795;734540;873235;1052540;1153039;1266947;1223392;1478841;1136439;1259806;1198725;1221858;1482146;1243687;1229770;1239757;1508456
-4;'012;Algeria;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;5007;5007;5007;5000;5000;5000;5000;3429;3131;3322;2533;2510;1502;1502;1502;1502;1502;;;;;;;;;;;;;;;2405;729;320;366;427;387;91;0;264;65;6;3492;2741;3288;1565;4030;4677;13952;33637;44928;11877;13356;14390;12770;10535;18459;11912;16594;22243;34386;52201;64484
-4;'012;Algeria;1861;Roundwood;5516;Production;m3;2955764;3022843;3103463;3174661;3248473;3318938;3396094;3471980;3580637;3630106;3833993;3814655;3932757;4018630;4121547;4190220;4288665;4354836;4439520;4589272;4721412;4821660;4933173;5036849;5132806;5299523;5459030;5636499;5725653;5900620;6143128;6300453;6596578;6715009;6819825;6977969;7151169;7268915;7399087;7236136;7396295;7512790;7523973;7666503;7742132;7841881;7969540;8071039;8174209;8321080;8384777;8455290;8526630;8598808;8671832;8722372;8773392;8824897;8876893;8929385;8982380;9035851;9089801
-4;'012;Algeria;1861;Roundwood;5616;Import quantity;m3;51000;41000;48000;44000;33200;31300;27200;26900;49000;51300;43200;45000;41100;90100;51200;40100;76000;45100;67900;117800;109400;141000;284700;253000;213000;191400;210000;197500;131200;25790;74805;68297;48200;56700;48600;22900;20600;28900;43700;38800;29500;30423;16844;78525;78525;33655;23939;34715;3958;6103;4498;5393;2591;13855;10355;38154;36280;40427;43671;13961;12519;31920;112475
-4;'012;Algeria;1861;Roundwood;5622;Import value;1000 USD;1892;1642;1872;1750;1478;1303;1070;959;1904;1821;1822;2289;2109;8912;5970;4499;10951;6870;9627;19483;17974;21305;35182;33182;30182;47976;46343;44386;30321;5009;15725;16595;11567;15161;15615;7016;6353;7142;5622;5119;3133;3707;4289;6420;6420;3821;3469;7005;1708;2513;1488;2189;781;2064;2329;4374;7086;11844;12880;2671;5289;12223;21935
-4;'012;Algeria;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;75;517;517;517;241;944;384;317;317;290;290;290;0;47;21;0;0;0;0;0;2447
-4;'012;Algeria;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;43;43;43;41;85;48;44;44;26;26;26;0;12;11;0;0;0;6;0;1115
-4;'012;Algeria;1862;Roundwood, coniferous;5516;Production;m3;2016945;2063050;2116207;2164441;2214777;2263241;2315860;2368659;2440667;2476912;2615306;2602058;2683213;2743686;2812889;2860034;2926819;2971892;3029601;3132090;3222193;3290526;3366866;3436856;3502260;3615965;3725430;3846474;3907234;4026570;4191958;4299060;4502347;4582730;4653959;4761969;4880368;4960645;5049722;4909762;5015686;5095205;5111954;5205773;5264798;5341762;5409925;5479208;5549631;5694215;5744790;5792922;5841618;5890886;5940732;5975230;6010056;6045213;6080705;6116536;6152710;6189209;6226035
-4;'012;Algeria;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15407;563;16354;6460;5170;18021;24355
-4;'012;Algeria;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370;231;2744;1274;3407;8839;3638
-4;'012;Algeria;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2139
-4;'012;Algeria;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;0;916
-4;'012;Algeria;1863;Roundwood, non-coniferous;5516;Production;m3;938819;959793;987256;1010220;1033696;1055697;1080234;1103321;1139970;1153194;1218687;1212597;1249544;1274944;1308658;1330186;1361846;1382944;1409919;1457182;1499219;1531134;1566307;1599993;1630546;1683558;1733600;1790025;1818419;1874050;1951170;2001393;2094231;2132279;2165866;2216000;2270801;2308270;2349365;2326374;2380609;2417585;2412019;2460730;2477334;2500119;2559615;2591831;2624578;2626865;2639987;2662368;2685012;2707922;2731100;2747142;2763336;2779684;2796188;2812849;2829670;2846642;2863766
-4;'012;Algeria;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20873;39864;27317;7501;7349;13899;88120
-4;'012;Algeria;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5716;11613;10136;1397;1882;3384;18297
-4;'012;Algeria;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;308
-4;'012;Algeria;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;199
-4;'012;Algeria;1864;Wood fuel;5516;Production;m3;2831764;2897843;2965463;3034661;3105473;3177938;3252094;3327980;3405637;3485106;3681993;3659655;3769757;3846630;3946547;4011220;4104665;4164836;4243520;4389272;4515412;4609660;4714173;4810849;4900806;5061523;5216030;5387499;5470653;5639620;5810128;5949453;6150578;6324009;6429825;6549969;6713169;6824915;6948087;7074136;7188295;7304790;7423673;7545003;7668832;7767081;7866940;7968439;8071609;8176480;8246177;8316690;8388030;8460208;8533232;8583772;8634792;8686297;8738293;8790785;8843780;8897251;8951201
-4;'012;Algeria;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;571
-4;'012;Algeria;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;3;3;3;3;3;3;3;;;;;;;88
-4;'012;Algeria;1627;Wood fuel, coniferous;5516;Production;m3;1932945;1978050;2024207;2071441;2119777;2169241;2219860;2271659;2324667;2378912;2513306;2498058;2573213;2625686;2693889;2738034;2801819;2842892;2896601;2996090;3082193;3146526;3217866;3283856;3345260;3454965;3560430;3677474;3734234;3849570;3965958;4061060;4198347;4316730;4388959;4470969;4582368;4658645;4742722;4828762;4906686;4986205;5067354;5150173;5234698;5301762;5369925;5439208;5509631;5581215;5628790;5676922;5725618;5774886;5824732;5859230;5894056;5929213;5964705;6000536;6036710;6073209;6110035
-4;'012;Algeria;1628;Wood fuel, non-coniferous;5516;Production;m3;898819;919793;941256;963220;985696;1008697;1032234;1056321;1080970;1106194;1168687;1161597;1196544;1220944;1252658;1273186;1302846;1321944;1346919;1393182;1433219;1463134;1496307;1526993;1555546;1606558;1655600;1710025;1736419;1790050;1844170;1888393;1952231;2007279;2040866;2079000;2130801;2166270;2205365;2245374;2281609;2318585;2356319;2394830;2434134;2465319;2497015;2529231;2561978;2595265;2617387;2639768;2662412;2685322;2708500;2724542;2740736;2757084;2773588;2790249;2807070;2824042;2841166
-4;'012;Algeria;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571
-4;'012;Algeria;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88
-4;'012;Algeria;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;
-4;'012;Algeria;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;3;3;3;3;3;3;3;;;;;;;
-4;'012;Algeria;1865;Industrial roundwood;5516;Production;m3;124000;125000;138000;140000;143000;141000;144000;144000;175000;145000;152000;155000;163000;172000;175000;179000;184000;190000;196000;200000;206000;212000;219000;226000;232000;238000;243000;249000;255000;261000;333000;351000;446000;391000;390000;428000;438000;444000;451000;162000;208000;208000;100300;121500;73300;74800;102600;102600;102600;144600;138600;138600;138600;138600;138600;138600;138600;138600;138600;138600;138600;138600;138600
-4;'012;Algeria;1865;Industrial roundwood;5616;Import quantity;m3;51000;41000;48000;44000;33200;31300;27200;26900;49000;51300;43200;45000;41100;90100;51200;40100;76000;45100;67900;117800;109400;141000;284700;253000;213000;191400;210000;197500;131200;25790;74805;68297;48200;56700;48600;22900;20600;28900;43700;38800;29500;30423;16844;78523;78523;33653;23937;34713;3956;6101;4496;5391;2589;13853;10353;38152;36280;40427;43671;13961;12519;31920;111904
-4;'012;Algeria;1865;Industrial roundwood;5622;Import value;1000 USD;1892;1642;1872;1750;1478;1303;1070;959;1904;1821;1822;2289;2109;8912;5970;4499;10951;6870;9627;19483;17974;21305;35182;33182;30182;47976;46343;44386;30321;5009;15725;16595;11567;15161;15615;7016;6353;7142;5622;5119;3133;3707;4289;6304;6304;3705;3353;6889;1592;2510;1485;2186;778;2061;2326;4371;7086;11844;12880;2671;5289;12223;21847
-4;'012;Algeria;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;75;517;517;517;241;944;384;317;317;290;290;290;0;47;21;0;0;0;0;0;2447
-4;'012;Algeria;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;43;43;43;41;85;48;44;44;26;26;26;0;12;11;0;0;0;6;0;1115
-4;'012;Algeria;1866;Industrial roundwood, coniferous;5516;Production;m3;84000;85000;92000;93000;95000;94000;96000;97000;116000;98000;102000;104000;110000;118000;119000;122000;125000;129000;133000;136000;140000;144000;149000;153000;157000;161000;165000;169000;173000;177000;226000;238000;304000;266000;265000;291000;298000;302000;307000;81000;109000;109000;44600;55600;30100;40000;40000;40000;40000;113000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000
-4;'012;Algeria;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11912;11912;24520;20100;11000;6300;6600;4300;4300;10400;4300;10000;7423;1661;20957;20957;16994;6768;12812;1346;130;826;457;513;573;194;1810;15407;563;16354;6460;5170;18021;24355
-4;'012;Algeria;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3464;3464;6595;4517;2383;1658;2114;1255;1255;380;966;1167;839;101;1278;1278;1037;413;781;82;20;135;59;190;57;109;376;1370;231;2744;1274;3407;8839;3638
-4;'012;Algeria;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;75;75;75;75;75;75;75;8;8;8;8;8;0;5;0;0;0;0;0;0;2139
-4;'012;Algeria;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;6;0;916
-4;'012;Algeria;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11912;11912;24520;20100;11000;6300;6600;4300;4300;10400;4300;10000;7423;1661;20957;20957;16994;6768;12812;1346;130;826;457;513;573;194;1810;15407;563;16354;6460;5170;18021;24355
-4;'012;Algeria;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3464;3464;6595;4517;2383;1658;2114;1255;1255;380;966;1167;839;101;1278;1278;1037;413;781;82;20;135;59;190;57;109;376;1370;231;2744;1274;3407;8839;3638
-4;'012;Algeria;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;75;75;75;75;75;75;75;8;8;8;8;8;0;5;0;0;0;0;0;0;2139
-4;'012;Algeria;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;6;0;916
-4;'012;Algeria;1867;Industrial roundwood, non-coniferous;5516;Production;m3;40000;40000;46000;47000;48000;47000;48000;47000;59000;47000;50000;51000;53000;54000;56000;57000;59000;61000;63000;64000;66000;68000;70000;73000;75000;77000;78000;80000;82000;84000;107000;113000;142000;125000;125000;137000;140000;142000;144000;81000;99000;99000;55700;65900;43200;34800;62600;62600;62600;31600;22600;22600;22600;22600;22600;22600;22600;22600;22600;22600;22600;22600;22600
-4;'012;Algeria;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13878;62893;43777;28100;45700;42300;16300;16300;24600;33300;34500;19500;23000;15183;57566;57566;16659;17169;21901;2610;5971;3670;4934;2076;13280;10159;36342;20873;39864;27317;7501;7349;13899;87549
-4;'012;Algeria;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1545;12261;10000;7050;12778;13957;4902;5098;5887;5242;4153;1966;2868;4188;5026;5026;2668;2940;6108;1510;2490;1350;2127;588;2004;2217;3995;5716;11613;10136;1397;1882;3384;18209
-4;'012;Algeria;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;442;442;442;166;869;309;309;309;282;282;282;0;42;21;0;0;0;0;0;308
-4;'012;Algeria;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;39;39;39;37;81;44;44;44;26;26;26;0;12;11;0;0;0;0;0;199
-4;'012;Algeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9798;16239;13000;32500;25800;11600;16000;16000;18300;17500;17500;20000;9199;12519;12519;12519;12519;12519;1049;1889;125;1660;211;356;516;0;497;0;1;0;0;0;383
-4;'012;Algeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;5794;4581;10765;10544;4180;5040;5040;3290;3100;1657;2382;3136;2053;2053;2053;2053;2053;739;562;105;427;133;260;354;0;236;0;1;1;0;0;65
-4;'012;Algeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;151;151;151;151;151;151;151;151;151;151;0;0;0;0;0;0;0;0;0
-4;'012;Algeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;0;0;0;0;0;0;0;0;0
-4;'012;Algeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13878;53095;27538;15100;13200;16500;4700;300;8600;15000;17000;2000;3000;5984;45047;45047;4140;4650;9382;1561;4082;3545;3274;1865;12924;9643;36342;20376;39864;27316;7501;7349;13899;87166
-4;'012;Algeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1545;9558;4206;2469;2013;3413;722;58;847;1952;1053;309;486;1052;2973;2973;615;887;4055;771;1928;1245;1700;455;1744;1863;3995;5480;11613;10135;1396;1882;3384;18144
-4;'012;Algeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;291;291;291;15;718;158;158;158;131;131;131;0;42;21;0;0;0;0;0;308
-4;'012;Algeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;17;17;17;15;59;22;22;22;4;4;4;0;12;11;0;0;0;0;0;199
-4;'012;Algeria;1868;Sawlogs and veneer logs;5516;Production;m3;18000;18000;28000;28000;28000;23000;23000;19000;47000;13000;15000;15000;18000;23000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;39000;46000;90000;64000;40000;60000;68000;68000;68000;0;0;0;0;0;0;0;0;0;0;29000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000
-4;'012;Algeria;1868;Sawlogs and veneer logs;5616;Import quantity;m3;34000;27000;33000;38000;26200;28300;25900;21900;41200;34300;35600;38200;35600;85400;46600;35800;61300;30400;67900;117800;109400;141000;284700;253000;213000;191400;210000;197500;131200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1420;1230;1430;1640;1384;1228;1039;848;1733;1456;1498;1847;1633;8371;5125;3879;8152;4071;9627;19483;17974;21305;35182;33182;30182;47976;46343;44386;30321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;13000;13000;18000;18000;18000;15000;15000;13000;30000;9000;10000;10000;13000;18000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;27000;32000;63000;45000;28000;42000;48000;48000;48000;0;0;0;0;0;0;0;0;0;0;24000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-4;'012;Algeria;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;4000;1000;1000;3000;2000;2000;2000;4900;3300;3000;6200;16100;6100;6100;6100;6100;400;400;42900;71700;68800;92100;151700;120000;80000;41000;48000;25300;3300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;120;30;30;90;60;60;60;136;96;87;224;769;256;256;256;256;71;71;5877;9860;9420;9755;16000;14000;11000;6092;8452;2643;294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;5000;5000;10000;10000;10000;8000;8000;6000;17000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;12000;14000;27000;19000;12000;18000;20000;20000;20000;0;0;0;0;0;0;0;0;0;0;5000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-4;'012;Algeria;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;30000;26000;32000;35000;24200;26300;23900;17000;37900;31300;29400;22100;29500;79300;40500;29700;60900;30000;25000;46100;40600;48900;133000;133000;133000;150400;162000;172200;127900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1300;1200;1400;1550;1324;1168;979;712;1637;1369;1274;1078;1377;8115;4869;3623;8081;4000;3750;9623;8554;11550;19182;19182;19182;41884;37891;41743;30027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;85000;26000;26000;26000;26000;28900;23200;23200;51000;51000;51000;64000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000
-4;'012;Algeria;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;59000;0;0;0;0;0;0;0;0;0;0;49000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000
-4;'012;Algeria;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;26000;26000;26000;26000;26000;28900;23200;23200;51000;51000;51000;15000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-4;'012;Algeria;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;52000;97000;62000;79000;91000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;36000;67000;43000;55000;63000;59000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;16000;30000;19000;24000;28000;26000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1871;Other industrial roundwood;5516;Production;m3;106000;107000;110000;112000;115000;118000;121000;125000;128000;132000;137000;140000;145000;149000;155000;159000;164000;170000;176000;180000;186000;192000;199000;206000;212000;218000;223000;229000;235000;241000;247000;253000;259000;265000;271000;277000;285000;291000;298000;136000;182000;182000;74300;92600;50100;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600;51600
-4;'012;Algeria;1871;Other industrial roundwood;5616;Import quantity;m3;17000;14000;15000;6000;7000;3000;1300;5000;7800;17000;7600;6800;5500;4700;4600;4300;14700;14700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1871;Other industrial roundwood;5622;Import value;1000 USD;472;412;442;110;94;75;31;111;171;365;324;442;476;541;845;620;2799;2799;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;71000;72000;74000;75000;77000;79000;81000;84000;86000;89000;92000;94000;97000;100000;104000;107000;110000;114000;118000;121000;125000;129000;134000;138000;142000;146000;150000;154000;158000;162000;166000;170000;174000;178000;182000;186000;191000;195000;200000;81000;109000;109000;44600;55600;30100;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-4;'012;Algeria;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;35000;35000;36000;37000;38000;39000;40000;41000;42000;43000;45000;46000;48000;49000;51000;52000;54000;56000;58000;59000;61000;63000;65000;68000;70000;72000;73000;75000;77000;79000;81000;83000;85000;87000;89000;91000;94000;96000;98000;55000;73000;73000;29700;37000;20000;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600;11600
-4;'012;Algeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;17000;14000;15000;6000;7000;3000;1300;5000;7800;17000;7600;6800;5500;4700;4600;4300;14700;14700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;472;412;442;110;94;75;31;111;171;365;324;442;476;541;845;620;2799;2799;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1630;Wood charcoal;5510;Production;t;149088;153395;157825;162181;166867;173987;178944;184042;189285;190578;204250;199447;209006;216004;217728;227019;234515;239398;245828;257819;269266;278256;288359;298095;307639;323325;338928;356536;366526;384668;402575;417903;439460;458727;471786;485467;503636;517334;532131;547352;561009;575007;589354;604059;619132;631300;643707;656358;669258;682411;691680;701074;710596;720247;730029;737530;745109;752766;760501;768316;775918;783596;791350
-4;'012;Algeria;1630;Wood charcoal;5610;Import quantity;t;2100;2100;2100;2300;2300;2300;2300;2300;2300;4100;4300;5500;2800;2800;4200;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;7;7;121;383;163;100;111;193;283;261;103;24;8;1187;842;590;351;130
-4;'012;Algeria;1630;Wood charcoal;5622;Import value;1000 USD;117;117;117;173;173;173;173;173;173;269;213;325;175;175;669;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;23;23;23;8;8;87;230;179;61;128;397;442;383;76;20;4;3001;1949;1817;1553;156
-4;'012;Algeria;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;140;140;140;140;140;140;140;140;140;140;140;0;0;0;0;36
-4;'012;Algeria;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;58;58;58;58;58;58;58;58;58;58;58;0;0;2;2;11
-4;'012;Algeria;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5500;5500;5500;8;1058;1058;11;1793;2019;1526;2723;2719;8;43;10;73;80;61;79;638;638;22;22;39
-4;'012;Algeria;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;335;335;335;63;52;52;48;270;181;136;298;292;9;60;107;81;182;91;63;201;201;24;24;19
-4;'012;Algeria;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;30;30;30;2;156;157;175;175;175;175;175;175;175;175
-4;'012;Algeria;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;2;2;2;30;17;27;18;18;18;18;18;18;18;18
-4;'012;Algeria;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5500;5500;5500;5;763;763;6;1690;2015;1518;2714;2714;7;7;2;2;29;8;32;633;633;18;18;36
-4;'012;Algeria;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;335;335;335;58;40;40;39;136;169;132;284;284;6;6;8;8;170;27;50;199;199;23;23;17
-4;'012;Algeria;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;155;155;155;155;155;155;155;155;155
-4;'012;Algeria;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7
-4;'012;Algeria;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2036;200;0;0;0;0;0;0;0;0;0;3;295;295;5;103;4;8;9;5;1;36;8;71;51;53;47;5;5;4;4;3
-4;'012;Algeria;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;8;0;0;0;0;0;0;0;0;0;5;12;12;9;134;12;4;14;8;3;54;99;73;12;64;13;2;2;1;1;2
-4;'012;Algeria;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;30;30;30;2;1;2;20;20;20;20;20;20;20;20
-4;'012;Algeria;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;2;2;2;30;10;20;11;11;11;11;11;11;11;11
-4;'012;Algeria;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;94;426;426;530
-4;'012;Algeria;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;27;131;131;160
-4;'012;Algeria;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104
-4;'012;Algeria;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29
-4;'012;Algeria;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;94;426;426;426
-4;'012;Algeria;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;27;131;131;131
-4;'012;Algeria;1872;Sawnwood;5516;Production;m3;58000;58000;16500;16500;16500;25000;25000;23000;23700;22800;22800;22800;17800;17800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;20000;24400;25400;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800
-4;'012;Algeria;1872;Sawnwood;5616;Import quantity;m3;160000;165000;95000;122000;150500;147600;177600;198700;277300;485900;454300;254000;232700;606700;442100;312800;648200;313000;461800;450300;857000;854100;1284200;1123500;818500;827000;451100;661900;1043300;803000;1302500;263936;626500;714800;667900;490000;652600;667000;777200;777000;962700;935300;1116432;1201000;1170500;1124489;1314272;1298582;1519782;1686916;1586990;2171090;2241670;2424649;2185039;1824800;1863633;1948796;1228629;1039664;894953;805316;1175340
-4;'012;Algeria;1872;Sawnwood;5622;Import value;1000 USD;8030;8310;4690;6180;8632;7789;9739;10727;16061;30173;29153;18093;21324;110274;62924;41722;93535;47050;74857;73719;190232;175381;217368;191102;139902;125627;87948;133279;211030;157293;387483;75877;150442;137443;203401;134555;163231;152778;157676;141663;167085;165960;243161;255035;256154;262316;375931;364250;370107;464556;454300;589743;643953;736284;553304;480760;473806;467411;275164;222086;260893;224255;310029
-4;'012;Algeria;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;448;561;561;140;140;163;67;56;210;292;225;1069;133;33;0;0;463;1;5;0;4102
-4;'012;Algeria;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;52;132;132;40;40;39;7;5;189;45;39;301;50;3;0;0;242;1;3;0;4427
-4;'012;Algeria;1632;Sawnwood, coniferous;5516;Production;m3;45000;45000;11250;11250;11250;16500;16500;16500;16850;16400;16400;16400;11400;11400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;6000;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400
-4;'012;Algeria;1632;Sawnwood, coniferous;5616;Import quantity;m3;139000;151000;81000;111000;127500;121450;153100;165950;242500;445150;442550;209200;191850;522200;389200;272100;629850;272000;431300;434300;841700;841550;1274750;1103750;803750;797000;447500;600500;1013600;800000;1299500;218929;570000;665600;558800;347000;470600;485000;551700;587000;662700;735300;977300;1006000;975500;1100700;1308300;1267000;1488200;1655016;1552092;2074457;2188268;2370246;2147000;1760000;1816000;1900000;1165362;989884;845527;755621;1113336
-4;'012;Algeria;1632;Sawnwood, coniferous;5622;Import value;1000 USD;6915;7555;3995;5540;7008;6074;8048;8253;13437;26987;28315;14041;17307;92726;54892;35548;90221;39600;68818;69967;186355;172598;214874;185901;135901;120609;86859;116266;200266;156266;386456;62524;135047;119692;158906;87562;105263;94810;97973;100663;100089;117209;187103;195560;196679;255507;368871;350257;356114;451577;437218;548696;615958;706215;536056;452983;453477;440873;252551;201653;237776;204701;277509
-4;'012;Algeria;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;286;286;70;70;93;54;54;208;208;222;1066;133;30;0;0;235;0;0;0;3261
-4;'012;Algeria;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;48;48;8;8;7;3;0;187;0;37;301;50;3;0;0;61;0;0;0;3123
-4;'012;Algeria;1633;Sawnwood, non-coniferous;5516;Production;m3;13000;13000;5250;5250;5250;8500;8500;6500;6850;6400;6400;6400;6400;6400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;14000;15000;16000;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400
-4;'012;Algeria;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;21000;14000;14000;11000;23000;26150;24500;32750;34800;40750;11750;44800;40850;84500;52900;40700;18350;41000;30500;16000;15300;12550;9450;19750;14750;30000;3600;61400;29700;3000;3000;45007;56500;49200;109100;143000;182000;182000;225500;190000;300000;200000;139132;195000;195000;23789;5972;31582;31582;31900;34898;96633;53402;54403;38039;64800;47633;48796;63267;49780;49426;49695;62004
-4;'012;Algeria;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1115;755;695;640;1624;1715;1691;2474;2624;3186;838;4052;4017;17548;8032;6174;3314;7450;6039;3752;3877;2783;2494;5201;4001;5018;1089;17013;10764;1027;1027;13353;15395;17751;44495;46993;57968;57968;59703;41000;66996;48751;56058;59475;59475;6809;7060;13993;13993;12979;17082;41047;27995;30069;17248;27777;20329;26538;22613;20433;23117;19554;32520
-4;'012;Algeria;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;448;275;275;70;70;70;13;2;2;84;3;3;0;3;0;0;228;1;5;0;841
-4;'012;Algeria;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;52;84;84;32;32;32;4;5;2;45;2;0;0;0;0;0;181;1;3;0;1304
-4;'012;Algeria;1634;Veneer sheets;5516;Production;m3;;;;;;;;;2400;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2000;2000;2000;2000;2000;2000;2000;2000;7000
-4;'012;Algeria;1634;Veneer sheets;5616;Import quantity;m3;5000;3000;3000;1300;1100;700;700;2000;3500;3500;2400;1400;14300;8600;3500;7700;2300;8000;6000;6000;1100;2500;2500;2500;2500;1500;400;500;600;700;700;1301;1100;491;5700;9900;400;200;300;100;1000;1000;410;1501;1501;202;257;141;1344;755;343;327;429;453;732;230;485;385;38;192;444;404;508
-4;'012;Algeria;1634;Veneer sheets;5622;Import value;1000 USD;1250;750;700;325;300;301;208;419;889;959;692;688;4260;4808;2616;4404;2000;7000;7789;7789;1200;2524;2524;2524;2524;4907;121;150;155;160;160;1545;1047;683;5428;8944;200;156;338;112;275;443;495;1169;1169;280;384;387;1193;824;670;352;468;395;930;378;832;920;112;353;801;664;2396
-4;'012;Algeria;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;0;0;0;0;0;0;0;0;0;0;0;154;154;154;154;154;154;154;154;154;154;154;0;0;0;0;14;0;0;0;2744
-4;'012;Algeria;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640;0;0;0;0;0;0;0;0;0;0;0;121;121;121;121;121;121;0;0;0;0;0;0;0;0;0;3;0;0;0;1790
-4;'012;Algeria;1873;Wood-based panels;5516;Production;m3;;;;;;;2300;3500;33700;47200;47200;47200;47200;47200;47200;47200;47200;47200;94000;76000;72000;74000;83000;93000;86000;84000;78000;74000;73000;70000;62000;64000;60500;47100;45300;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900
-4;'012;Algeria;1873;Wood-based panels;5616;Import quantity;m3;20100;9300;8300;12100;12300;10548;16054;8216;12016;20227;53727;25127;28200;60460;39750;30300;81800;30000;87800;87800;78000;41000;90900;90900;90900;42800;25700;40500;71700;61300;61300;46933;77172;101465;51700;41000;95000;72000;83500;95700;95900;131800;384050;97915;121477;108819;90897;75477;160495;229420;237729;260931;279075;293981;222019;467428;284231;422585;766916;611303;803574;454009;582519
-4;'012;Algeria;1873;Wood-based panels;5622;Import value;1000 USD;3970;1640;1520;2170;2218;1932;2705;2221;4282;5973;6871;3282;6040;17953;9368;6275;21670;6620;20774;21274;29866;17936;45097;45097;45097;13453;9501;14684;23700;22410;22410;17921;43155;49622;26667;18129;40558;25404;29336;35085;36318;46718;59228;31389;32267;36426;36819;56668;104532;100827;109892;124571;129666;170035;128765;215308;109389;178695;221280;183704;245824;168172;182030
-4;'012;Algeria;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;34;618;618;356;356;356;74;74;0;0;237;0;0;1121;1524
-4;'012;Algeria;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;223;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;760;358;125;154;31;31;31;32;0;0;175;0;4;519;2536
-4;'012;Algeria;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;19000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000
-4;'012;Algeria;1640;Plywood and LVL;5616;Import quantity;m3;14000;5000;5000;7000;7400;6500;8800;6000;7500;10700;32100;11000;14300;41600;22900;10000;42800;10000;31000;31000;43200;28000;87900;87900;87900;41200;25000;39000;70000;60000;60000;46176;75700;97300;46500;28000;70600;51000;71600;84700;84700;118600;307718;34135;34135;23063;19800;37903;81418;125693;139339;200548;175938;175016;116985;336188;131274;190952;125514;99111;102301;110417;165393
-4;'012;Algeria;1640;Plywood and LVL;5622;Import value;1000 USD;3360;1200;1200;1680;1777;1508;2040;1680;3200;4068;5306;2149;4670;15213;7052;3432;16594;3900;13981;13981;22148;13915;44600;44600;44600;12305;8625;13300;22300;22000;22000;17686;42400;48457;25349;15927;37029;22453;26849;33488;33488;43327;45360;12118;12118;14177;12300;37918;69223;53635;59610;87281;67070;96118;69459;139265;43066;80661;48701;36896;30627;42365;56885
-4;'012;Algeria;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;14;598;598;282;282;282;0;0;0;0;0;0;0;0;1281
-4;'012;Algeria;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;223;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;745;343;110;123;0;0;0;1;0;0;0;0;4;0;2220
-4;'012;Algeria;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;2300;3500;14700;24200;24200;24200;24200;24200;24200;24200;24200;24200;71000;53000;49000;51000;60000;70000;63000;61000;55000;51000;50000;47000;39000;41000;37500;24100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3100;2300;2300;2800;3600;3100;4200;1900;4200;7000;19100;13600;13800;13500;14900;15000;34200;15000;51800;51800;28800;7000;3000;3000;3000;1600;700;1500;1700;1300;1300;349;700;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;250;190;200;230;280;334;454;511;1052;1715;1375;976;1330;1523;1923;1846;4292;1900;5793;5793;4918;1221;497;497;497;1148;876;1384;1400;410;410;124;421;606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22300;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900;22900
-4;'012;Algeria;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;1200;3400;3000;7000;3600;7000;7000;51805;49072;72634;61821;61545;25953;55090;59826;51144;1607;5356;28872;15605;14691;71777;71777;319021;214135;323148;173194;193411
-4;'012;Algeria;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;402;692;642;1327;700;2137;2137;10574;15543;16421;17014;18493;10938;20599;22559;19058;1173;3326;14094;6856;7369;22867;22867;64112;49005;75258;53109;49938
-4;'012;Algeria;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;1;1;1;1;1;0;0;237;0;0;0;8
-4;'012;Algeria;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;3;3;3;3;3;0;0;175;0;0;0;3
-4;'012;Algeria;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;627;627;4173;4173;326;199;509;1362;200;145;908;435;315;3908;80;226;165;3301;336;1771
-4;'012;Algeria;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;872;872;216;109;261;823;178;110;540;730;168;1538;51;62;61;1415;153;626
-4;'012;Algeria;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;73;73;0;0;0;0;0;0;0
-4;'012;Algeria;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;0;0;0;0;0;0;0
-4;'012;Algeria;1874;Fibreboard;5616;Import quantity;m3;3000;2000;1000;2300;1300;948;3054;316;316;2527;2527;527;100;5360;1950;5300;4800;5000;5000;5000;6000;6000;;;;;;;;;;408;772;3365;4900;11800;21000;18000;4900;7400;4200;6200;24527;14081;14081;19762;5379;11295;23788;43392;45884;58576;97636;89185;88994;116234;77272;159776;322155;297892;374824;170062;221944
-4;'012;Algeria;1874;Fibreboard;5622;Import value;1000 USD;360;250;120;260;161;90;211;30;30;190;190;157;40;1217;393;997;784;820;1000;1500;2800;2800;;;;;;;;;;111;334;559;1035;1800;2837;2309;1160;897;693;1254;3294;3625;3625;4363;5154;7596;14601;24372;30401;35939;59160;59283;51720;68506;41918;75116;108405;97742;138524;72545;74581
-4;'012;Algeria;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121;235
-4;'012;Algeria;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;313
-4;'012;Algeria;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3600;2400;2400;1200;1500;800;3200;3508;4736;4736;3078;711;3447;723;6126;4951;13626;10854;10593;12055;12176;8781;22491;33372;11832;22185;13038;20107
-4;'012;Algeria;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;827;1045;1045;639;356;244;868;1213;2198;2198;1769;1389;2327;680;4183;3279;6613;6287;5912;6521;7244;5459;13830;19195;5105;12880;7852;13528
-4;'012;Algeria;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-4;'012;Algeria;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-4;'012;Algeria;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1900;4100;1100;600;1600;400;0;4143;5448;5448;13763;3755;5284;21727;36346;38912;41563;67130;74688;74734;100573;68211;134813;282106;277872;348954;155828;199409
-4;'012;Algeria;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;543;1131;603;365;319;109;0;830;932;932;1975;3110;3443;12108;19567;25561;27565;44146;51377;43913;59239;36238;59281;86577;88522;123173;64001;59446
-4;'012;Algeria;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121;231
-4;'012;Algeria;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;313
-4;'012;Algeria;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;300;300;1600;6300;14500;14500;3100;4300;3000;3000;16876;3897;3897;2921;913;2564;1338;920;2021;3387;19652;3904;2205;3485;280;2472;6677;8188;3685;1196;2428
-4;'012;Algeria;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;128;128;196;430;661;661;156;222;340;386;1251;495;495;619;655;1826;1813;622;1561;1761;8727;1994;1286;2023;221;2005;2633;4115;2471;692;1607
-4;'012;Algeria;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;3000;2000;1000;2300;1300;948;3054;316;316;2527;2527;527;100;5360;1950;5300;4800;5000;5000;5000;6000;6000;;;;;;;;;;375;472;3065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;360;250;120;260;161;90;211;30;30;190;190;157;40;1217;393;997;784;820;1000;1500;2800;2800;;;;;;;;;;100;206;431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1879;Total fibre furnish;5510;Production;t;23000;10000;11800;13000;14100;12100;13600;13800;14900;28000;28000;30000;24000;24000;24000;24000;24000;24000;40000;40000;50000;38000;35000;42000;56000;56000;56000;58000;61000;25000;25000;25000;25000;25000;25000;61000;51000;51000;51000;42000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;42000;52000;54000;54000;56000;79000;79000;79000;79000;79000;97000;97000
-4;'012;Algeria;1879;Total fibre furnish;5610;Import quantity;t;;;;;;400;400;2300;2300;2300;2300;2300;13800;20000;19400;33700;38000;34900;34100;54700;40900;58300;91300;72300;79000;64500;45200;60000;78300;79300;66700;49721;54900;57900;39300;66100;31900;30082;22929;12925;8600;18691;13670;19585;17510;5155;18560;20717;34005;41538;46444;49553;47049;53036;66976;69815;86911;75873;145490;148169;183104;128759;217062
-4;'012;Algeria;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;56;58;340;340;340;340;340;3334;5062;4143;10195;10622;10731;15360;29764;22565;25304;32519;30898;33037;23487;22286;34307;44479;53079;29190;26349;30129;31997;25441;41516;20191;11979;11160;7329;4965;7910;7931;7728;7659;2377;12564;16454;24095;40062;43893;36823;35561;42311;51468;46391;64430;61296;93842;83981;148925;136446;164988
-4;'012;Algeria;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662;1662;300;330;1830;1800;700;0;2172;642;125;8222;8448;12756;7386;6563;2928;10525;28188;28860;33290;47910;52024;51843;53683;76413;44568;79840;79683;71261;91279;112772
-4;'012;Algeria;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;506;51;84;414;387;91;0;264;65;6;559;587;1134;1068;1121;649;2362;4852;15774;5168;6950;8634;7073;7991;12789;8694;10506;9164;18197;21737;18986
-4;'012;Algeria;1878;Pulp for paper;5510;Production;t;23000;10000;11800;13000;14100;12100;13600;13800;14900;16000;16000;18000;12000;12000;12000;12000;12000;12000;24000;24000;31000;10000;7000;7000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-4;'012;Algeria;1878;Pulp for paper;5610;Import quantity;t;;;;;;400;400;2300;2300;2300;2300;2300;13800;13800;13800;30900;30900;33000;32900;49600;36100;44900;74100;64000;70700;56200;36900;51700;70000;71000;58400;49416;54500;57400;38800;63200;29000;30000;22700;12900;8600;17000;13620;17340;17340;4363;16308;18540;32508;40329;44460;48297;46542;52641;66926;69786;86874;75836;145038;148087;183036;127442;216548
-4;'012;Algeria;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;56;58;340;340;340;340;340;3334;3334;3334;9749;9749;10500;15222;28620;21481;23444;30266;29819;31958;22408;21207;33228;43400;52000;28111;26286;30037;31930;25388;41325;20000;11954;11047;7316;4965;6874;7926;7647;7647;2086;11893;14994;23518;39343;43198;36456;35287;42129;51444;46361;64395;61261;93598;83966;148844;136058;164921
-4;'012;Algeria;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;0;30;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;24;24;24;24;1402
-4;'012;Algeria;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;0;27;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;16;16;16;16;1834
-4;'012;Algeria;1875;Wood pulp;5610;Import quantity;t;;;;;;400;400;2300;2300;2300;2300;2300;13800;13800;13800;30900;30900;33000;32900;49600;36100;44900;74100;64000;70700;56200;36900;51700;70000;71000;58400;55260;57100;57200;38600;63000;29000;30000;22700;12900;8600;17000;13620;16923;16923;3804;15796;18555;31534;39351;44392;48297;46707;52785;66851;69713;86801;75839;145041;148090;183039;127466;216571
-4;'012;Algeria;1875;Wood pulp;5622;Import value;1000 USD;;;;;;56;58;340;340;340;340;340;3334;3334;3334;9749;9749;10500;15222;28620;21481;23444;30266;29819;31958;22408;21207;33228;43400;52000;28111;28189;31268;31605;25063;41000;20000;11954;11047;7316;4965;6874;7926;7313;7313;1740;11590;14981;22818;38638;43131;36449;35395;42232;51384;46317;64351;61261;93598;83966;148844;136074;164929
-4;'012;Algeria;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;24;24;24;24;1402
-4;'012;Algeria;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;16;16;16;16;1834
-4;'012;Algeria;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;144
-4;'012;Algeria;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;116
-4;'012;Algeria;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-4;'012;Algeria;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-4;'012;Algeria;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3974;1100;0;0;0;0;0;0;0;0;0;6;2;2;6;6;6;1;1;1;404;4;2;13;64;;;;;;;
-4;'012;Algeria;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370;831;0;0;0;0;0;0;0;0;0;5;1;1;9;9;9;12;12;12;227;9;6;30;79;;;;;;;
-4;'012;Algeria;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;2662;2662;237;237;237;1649;217;638;638;11;1;9;0;;;;;;;
-4;'012;Algeria;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;1052;1052;135;135;135;997;157;517;517;8;1;3;0;;;;;;;
-4;'012;Algeria;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2300;2300;2300;2300;2300;13800;13800;13800;30900;30900;33000;32900;49600;36100;44900;74100;64000;70700;56200;36900;51700;70000;71000;58400;44706;53300;57200;38600;63000;29000;30000;22700;12900;8600;17000;13240;14256;14256;3559;15504;18263;29835;39088;43749;47251;46523;52613;66804;69624;86776;75814;145016;148065;183014;127441;216402
-4;'012;Algeria;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;340;340;340;340;340;3334;3334;3334;9749;9749;10500;15222;28620;21481;23444;30266;29819;31958;22408;21207;33228;43400;52000;28111;24161;29088;31605;25063;41000;20000;11954;11047;7316;4965;6874;7707;6258;6258;1594;11401;14792;21764;38429;42594;35697;35254;42101;51331;46218;64331;61241;93578;83946;148824;136054;164793
-4;'012;Algeria;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;24;24;24;24;1402
-4;'012;Algeria;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;16;16;16;16;1834
-4;'012;Algeria;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;19500;46900;34400;42200;71900;25100;36900;32600;12400;17000;20000;25000;25300;12455;20000;25600;7000;12000;3000;6600;2000;0;0;0;0;97;97;97;97;97;4373;8389;9181;5877;2640;3331;2773;3336;295;295;531;531;531;822;1041
-4;'012;Algeria;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;8960;27083;19732;21860;28917;10040;14760;12046;5971;9220;12000;16000;10587;5994;10134;9042;2500;4100;1000;1864;765;0;0;0;0;34;34;34;34;34;3192;8718;8650;4224;1890;2528;2037;2163;180;180;435;435;435;731;863
-4;'012;Algeria;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;9400;9400;9400;22500;22500;24000;10400;1500;1500;1500;1500;37400;33400;23200;24400;34500;47000;42000;26200;28934;33200;31000;31000;49000;26000;23400;20700;12900;8600;17000;10259;9327;9327;1761;8819;15151;22994;28383;32276;39590;41732;47461;62146;62114;85439;74477;144415;147444;182191;126338;214778
-4;'012;Algeria;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;2314;2314;2314;7334;7334;7900;5433;899;899;899;899;19074;17034;10100;15149;23900;30000;34000;15240;16349;18816;22000;22000;35000;19000;10090;10282;7316;4965;6874;5582;3936;3936;912;6136;10864;16574;27385;31459;29921;31641;37826;47650;41201;63353;60263;92996;83245;147712;134660;162994
-4;'012;Algeria;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;439;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;24;24;24;24;1402
-4;'012;Algeria;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;264;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;16;16;16;16;1834
-4;'012;Algeria;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042;1042;70;90;292;281;583
-4;'012;Algeria;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798;798;147;266;677;663;936
-4;'012;Algeria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;2300;2300;2300;2300;2300;4400;4400;4400;8400;8400;9000;3000;1200;200;1200;700;1000;;;;;;;;;;0;0;0;0;0;0;0;0;0;6;6;6;6;323;323;323;323;323;323;323;323;150;0;;;;;;;
-4;'012;Algeria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;340;340;340;340;340;1020;1020;1020;2415;2415;2600;829;638;850;685;450;500;;;;;;;;;;0;0;0;0;0;0;0;0;0;6;6;6;6;237;237;237;237;237;237;237;237;112;0;;;;;;;
-4;'012;Algeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;500;400;400;100;200;3000;4000;6900;3317;100;600;600;2000;0;0;0;0;0;0;2975;4826;4826;1695;6265;2692;2145;1993;1969;1461;1828;1498;1735;4174;;;;;;;
-4;'012;Algeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;205;164;262;87;108;1400;2000;2284;1818;138;563;563;1900;0;0;0;0;0;0;2119;2282;2282;642;4994;3657;1761;2089;2248;1315;1486;1510;1532;2854;;;;;;;
-4;'012;Algeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-4;'012;Algeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-4;'012;Algeria;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6580;2700;0;0;0;0;0;0;0;0;0;0;3;3;2;49;49;49;45;4;4;169;169;25;25;25;25;25;25;25;25;25
-4;'012;Algeria;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2658;1349;0;0;0;0;0;0;0;0;0;0;2;2;2;45;45;45;40;8;8;124;124;20;20;20;20;20;20;20;20;20
-4;'012;Algeria;1668;Pulp from fibres other than wood;5510;Production;t;23000;10000;11800;13000;14100;12100;13600;13800;14900;16000;16000;18000;12000;12000;12000;12000;12000;12000;24000;24000;31000;10000;7000;7000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-4;'012;Algeria;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;100;200;200;200;0;0;0;0;0;0;0;420;420;561;561;34;1023;1023;72;4;4;25;100;98;98;22;22;22;22;1;2
-4;'012;Algeria;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;118;325;325;325;0;0;0;0;0;0;0;336;336;348;348;58;745;745;75;15;16;21;80;64;64;20;20;20;20;4;12
-4;'012;Algeria;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-4;'012;Algeria;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-4;'012;Algeria;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;20;6;20;20;20;20;20;20;20;20;20;2;4;1;16;16;8;197
-4;'012;Algeria;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;15;6;14;14;14;14;14;14;14;14;14;1;4;3;26;26;9;292
-4;'012;Algeria;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;128
-4;'012;Algeria;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;78;78;78;78;78;78;78;166
-4;'012;Algeria;1669;Recovered paper;5510;Production;t;;;;;;;;;;12000;12000;12000;12000;12000;12000;12000;12000;12000;16000;16000;19000;28000;28000;35000;35000;35000;35000;37000;40000;4000;4000;4000;4000;4000;4000;40000;30000;30000;30000;37000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;40000;50000;52000;52000;54000;77000;77000;77000;77000;77000;95000;95000
-4;'012;Algeria;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;6200;5600;2800;7100;1900;1200;5100;4800;13400;17200;8300;8300;8300;8300;8300;8300;8300;8300;305;400;500;500;2900;2900;82;229;25;0;1691;50;2245;170;792;2252;2177;1497;1209;1984;1256;507;395;50;29;37;37;452;82;68;1317;514
-4;'012;Algeria;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;1728;809;446;873;231;138;1144;1084;1860;2253;1079;1079;1079;1079;1079;1079;1079;1079;63;92;67;53;191;191;25;113;13;0;1036;5;81;12;291;671;1460;577;719;695;367;274;182;24;30;35;35;244;15;81;388;67
-4;'012;Algeria;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1218;1218;300;300;1800;1800;700;0;2172;642;125;8222;8448;12756;7386;6563;2928;10525;28188;28860;33290;47910;52000;51819;53659;76389;44544;79816;79659;71237;91255;111370
-4;'012;Algeria;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;236;51;57;387;387;91;0;264;65;6;559;587;1134;1068;1121;649;2362;4852;15774;5168;6950;8618;7057;7975;12773;8678;10490;9148;18181;21721;17152
-4;'012;Algeria;1876;Paper and paperboard;5510;Production;t;39700;25500;26500;31300;26100;23300;33900;31500;32000;36000;32000;33000;33000;30000;30000;30000;30000;30000;117000;134400;156600;156600;165100;182100;181100;195100;187100;189100;198100;169000;152500;150500;165100;155800;128100;90300;97000;94000;60800;56500;61900;48700;44900;48200;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;46500;53500;53500;63500;63500
-4;'012;Algeria;1876;Paper and paperboard;5610;Import quantity;t;47300;47300;47300;21600;22800;22800;22800;36800;51800;67900;58800;56100;74200;65200;54700;37200;55300;85000;82900;85600;94200;88600;77600;97400;87100;157600;178600;188200;175000;117000;136700;130351;133900;135400;135400;115400;117200;172099;214401;182300;187200;180300;267398;398965;398965;235741;365935;286281;405361;469483;482175;528641;503925;551972;639316;708765;676424;613521;1092270;1019831;708315;800890;981974
-4;'012;Algeria;1876;Paper and paperboard;5622;Import value;1000 USD;10454;10454;10454;4962;5230;5230;5230;8394;13729;18200;15032;14377;39168;38059;33514;21035;30360;51911;58953;60285;59368;56276;58315;77400;65140;104445;128234;135073;125107;86300;103230;112456;97761;149584;149584;127488;132400;112291;146514;123549;112717;108416;184801;269587;269587;181737;326299;289449;371175;443227;542421;513110;412368;527065;399145;512303;543050;501601;875640;748669;566020;696260;826431
-4;'012;Algeria;1876;Paper and paperboard;5910;Export quantity;t;18700;18700;18700;17800;17800;17200;17200;15600;13300;13900;10100;8300;4300;4300;4300;4300;4300;;;;;;;;;;;;;;;61;0;200;221;21;0;0;0;0;0;0;2889;2400;2400;211;2534;4184;12292;26849;26878;7821;7740;5955;5984;2812;5502;2381;5647;13472;17063;21080;27903
-4;'012;Algeria;1876;Paper and paperboard;5922;Export value;1000 USD;5007;5007;5007;5000;5000;5000;5000;3429;3131;3322;2533;2510;1502;1502;1502;1502;1502;;;;;;;;;;;;;;;140;0;269;282;13;0;0;0;0;0;0;2877;1858;1858;293;2707;3705;10573;28240;28658;6346;6144;5245;5453;2343;5505;3064;5572;12982;16078;29847;35435
-4;'012;Algeria;2042;Graphic papers;5510;Production;t;25000;20300;20200;25000;19800;17000;22800;20500;21000;23000;20000;21000;20000;18000;18000;18000;18000;18000;30000;26000;32000;32000;29000;32000;30000;40000;40000;40000;40000;39000;37000;37000;33000;36000;35000;29000;34000;24000;28000;22000;28000;25000;17000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-4;'012;Algeria;2042;Graphic papers;5610;Import quantity;t;21800;21800;21800;7000;8200;8200;8200;13400;15700;25200;18600;20100;22900;13200;16100;13100;15200;16000;12500;15200;18000;13100;22000;41400;42100;23500;38200;50800;72000;56000;68100;44506;56400;43600;43600;53400;60200;69100;89300;77900;86900;81500;110657;166266;166266;114030;197606;137378;222324;247946;243891;293101;233567;265668;227332;234207;274335;196178;355079;296230;185755;312159;231402
-4;'012;Algeria;2042;Graphic papers;5622;Import value;1000 USD;3937;3937;3937;1602;1870;1870;1870;2700;4945;7886;5334;5457;8739;7252;10243;7102;8780;9111;7338;8670;9750;7314;22667;41500;39640;22585;35506;42345;59400;43300;47769;44726;40489;40462;40462;54688;64500;44341;62293;53430;48863;40113;70102;115723;115723;87204;171494;122844;192938;225304;271937;283005;207458;231344;171108;176321;222543;170524;312942;238035;158132;232642;237858
-4;'012;Algeria;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;21;0;;;;;;2762;2285;2285;116;131;2079;5502;20799;20799;5464;5579;5464;5464;312;432;503;1174;154;508;823;429
-4;'012;Algeria;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;13;0;;;;;;2777;1737;1737;86;127;1408;5359;25172;25172;4652;4769;4650;4650;151;581;836;1317;242;540;772;443
-4;'012;Algeria;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;11000;14000;11000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-4;'012;Algeria;1671;Newsprint;5610;Import quantity;t;21800;21800;21800;2100;2100;2100;2100;4200;3700;6200;6800;8800;8300;6700;8900;9700;9200;10000;9300;12000;17000;12100;5700;11400;15600;4500;4400;17000;27000;30000;29900;24028;29600;22600;22600;12400;8200;23000;31300;22000;28700;28600;40985;55415;55415;36083;77333;64499;89603;89419;78307;82010;71551;89321;65401;53126;44596;34570;73900;46092;17008;18939;43780
-4;'012;Algeria;1671;Newsprint;5622;Import value;1000 USD;3937;3937;3937;502;502;502;502;700;555;932;1014;1322;1739;2829;3640;3977;3789;4120;4068;5400;8300;5419;2267;4500;6240;3511;2361;9200;14600;16300;17178;20728;17521;15212;15212;6688;4500;12483;18294;11031;14748;9424;18286;28262;28262;18830;51315;43195;63870;56234;58787;56214;47917;62032;35309;26825;23465;20656;48203;23365;9267;18492;33045
-4;'012;Algeria;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;1978;3648;19286;19286;5454;5454;5454;5454;250;114;114;63;63;77;77;77
-4;'012;Algeria;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;1309;3766;24805;24805;4643;4643;4643;4643;49;18;18;85;85;72;72;72
-4;'012;Algeria;1674;Printing and writing papers;5510;Production;t;25000;20300;20200;25000;19800;17000;22800;20500;21000;23000;20000;21000;20000;18000;18000;18000;18000;18000;30000;26000;32000;32000;29000;32000;30000;40000;40000;40000;40000;39000;37000;37000;33000;36000;35000;29000;34000;24000;14000;11000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-4;'012;Algeria;1674;Printing and writing papers;5610;Import quantity;t;;;;4900;6100;6100;6100;9200;12000;19000;11800;11300;14600;6500;7200;3400;6000;6000;3200;3200;1000;1000;16300;30000;26500;19000;33800;33800;45000;26000;38200;20478;26800;21000;21000;41000;52000;46100;58000;55900;58200;52900;69672;110851;110851;77947;120273;72879;132721;158527;165584;211091;162016;176347;161931;181081;229739;161608;281179;250138;168747;293220;187622
-4;'012;Algeria;1674;Printing and writing papers;5622;Import value;1000 USD;;;;1100;1368;1368;1368;2000;4390;6954;4320;4135;7000;4423;6603;3125;4991;4991;3270;3270;1450;1895;20400;37000;33400;19074;33145;33145;44800;27000;30591;23998;22968;25250;25250;48000;60000;31858;43999;42399;34115;30689;51816;87461;87461;68374;120179;79649;129068;169070;213150;226791;159541;169312;135799;149496;199078;149868;264739;214670;148865;214150;204813
-4;'012;Algeria;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;21;0;;;;;;2762;2248;2248;79;94;101;1854;1513;1513;10;125;10;10;62;318;389;1111;91;431;746;352
-4;'012;Algeria;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;13;0;;;;;;2777;1720;1720;69;110;99;1593;367;367;9;126;7;7;102;563;818;1232;157;468;700;371
-4;'012;Algeria;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-4;'012;Algeria;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1600;3554;5575;5575;3537;7324;1266;5020;8205;4374;4825;4102;5436;5076;5658;3943;3943;4908;2567;4737;1783;4996
-4;'012;Algeria;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2494;962;2297;4399;4399;3969;6706;1269;4562;9079;5038;5264;4798;5945;4530;4214;3664;3664;3698;1489;3387;2026;4620
-4;'012;Algeria;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;23;2;2;2;15;0;0;312
-4;'012;Algeria;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;38;6;6;6;23;0;0;273
-4;'012;Algeria;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;14000;11000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-4;'012;Algeria;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27380;34447;33200;22500;18500;39766;70039;70039;38252;58304;40737;76301;89208;103374;144735;100506;107395;90827;111523;157780;107857;187490;172734;125988;245215;128107
-4;'012;Algeria;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20600;28451;27416;14628;12734;29976;55261;55261;36956;62868;49722;78948;103816;148761;161362;101321;104657;82936;98283;145787;102550;187663;150843;117440;153265;127491
-4;'012;Algeria;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2756;2191;2191;65;80;87;1840;1504;1504;0;0;0;0;4;170;124;787;16;1;603;12
-4;'012;Algeria;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2770;1678;1678;58;99;88;1582;361;361;0;0;0;0;5;323;190;682;15;0;358;21
-4;'012;Algeria;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18720;23553;22700;32800;32800;26352;35237;35237;36158;54645;30876;51400;61114;57836;61531;57408;63516;66028;63900;68016;49808;88781;74837;38022;46222;54519
-4;'012;Algeria;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11258;15548;14983;16993;16993;19543;27801;27801;27449;50605;28658;45558;56175;59351;60165;53422;58710;48333;46999;49627;43654;73378;62338;28038;58859;72702
-4;'012;Algeria;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;48;48;5;5;5;5;0;0;1;116;1;1;35;146;263;322;60;430;143;28
-4;'012;Algeria;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;36;36;5;5;5;5;0;0;3;120;1;1;59;234;622;544;119;468;342;77
-4;'012;Algeria;1675;Other paper and paperboard;5510;Production;t;14700;5200;6300;6300;6300;6300;11100;11000;11000;13000;12000;12000;13000;12000;12000;12000;12000;12000;87000;108400;124600;124600;136100;150100;151100;155100;147100;149100;158100;130000;115500;113500;132100;119800;93100;61300;63000;70000;32800;34500;33900;23700;27900;32200;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;30500;37500;37500;47500;47500
-4;'012;Algeria;1675;Other paper and paperboard;5610;Import quantity;t;25500;25500;25500;14600;14600;14600;14600;23400;36100;42700;40200;36000;51300;52000;38600;24100;40100;69000;70400;70400;76200;75500;55600;56000;45000;134100;140400;137400;103000;61000;68600;85845;77500;91800;91800;62000;57000;102999;125101;104400;100300;98800;156741;232699;232699;121711;168329;148903;183037;221537;238284;235540;270358;286304;411984;474558;402089;417343;737191;723601;522560;488731;750572
-4;'012;Algeria;1675;Other paper and paperboard;5622;Import value;1000 USD;6517;6517;6517;3360;3360;3360;3360;5694;8784;10314;9698;8920;30429;30807;23271;13933;21580;42800;51615;51615;49618;48962;35648;35900;25500;81860;92728;92728;65707;43000;55461;67730;57272;109122;109122;72800;67900;67950;84221;70119;63854;68303;114699;153864;153864;94533;154805;166605;178237;217923;270484;230105;204910;295721;228037;335982;320507;331077;562698;510634;407888;463618;588573
-4;'012;Algeria;1675;Other paper and paperboard;5910;Export quantity;t;18700;18700;18700;17800;17800;17200;17200;15600;13300;13900;10100;8300;4300;4300;4300;4300;4300;;;;;;;;;;;;;;;61;0;200;200;0;0;0;0;0;0;0;127;115;115;95;2403;2105;6790;6050;6079;2357;2161;491;520;2500;5070;1878;4473;13318;16555;20257;27474
-4;'012;Algeria;1675;Other paper and paperboard;5922;Export value;1000 USD;5007;5007;5007;5000;5000;5000;5000;3429;3131;3322;2533;2510;1502;1502;1502;1502;1502;;;;;;;;;;;;;;;140;0;269;269;0;0;0;0;0;0;0;100;121;121;207;2580;2297;5214;3068;3486;1694;1375;595;803;2192;4924;2228;4255;12740;15538;29075;34992
-4;'012;Algeria;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;1400;1600;1600;2100;2100;2100;2100;2100;2100;2100;2000;3000;3000;3000;3000;4000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;10000;10000;20000;20000
-4;'012;Algeria;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;1000;1000;4000;500;700;900;1500;2357;1718;1718;1395;952;2051;1721;2886;4268;6512;7334;7550;7666;2928;2949;516;1508;382;927;164;3145
-4;'012;Algeria;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;488;800;900;3600;437;1025;989;1471;1694;1889;1889;1904;1411;4690;2048;3329;5057;8567;9779;9902;9289;4174;4292;888;3283;746;1176;417;4644
-4;'012;Algeria;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;83;83;59;829;706;208;37;88;271;2;44;118;755;3437;1465;3483;13288;16251;19215;26846
-4;'012;Algeria;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;92;92;160;1911;1607;1206;171;562;374;3;118;356;860;3529;1700;3395;12309;15169;27735;34388
-4;'012;Algeria;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;26800;28500;27900;17700;21900;26200;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500
-4;'012;Algeria;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76999;113301;92400;93000;85700;139005;204414;204414;105726;155735;135141;165481;201229;217143;220794;249706;260164;396853;458625;395207;415074;732286;717196;512920;486490;740103
-4;'012;Algeria;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44350;70002;55284;51191;47761;91787;126737;126737;65628;136603;142679;152422;184596;234333;212710;180461;251715;211962;301173;296136;320781;536184;481841;356349;450151;534157
-4;'012;Algeria;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;14;14;18;1556;1381;6219;6001;5985;2080;2153;441;380;1723;1611;407;989;20;280;1018;604
-4;'012;Algeria;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;8;8;26;648;669;3133;2869;2907;1303;1355;460;428;1313;1376;415;857;105;254;1225;489
-4;'012;Algeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;11100;11000;11000;13000;12000;12000;13000;12000;12000;12000;12000;12000;47000;59000;70000;68000;76000;82000;78000;78000;78000;78000;78000;50000;51000;51000;57000;48000;31200;20300;21000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;22100;34100;41100;38600;34000;46900;48000;34900;21400;30400;46000;46800;46800;62300;54900;35700;35700;25000;74500;94500;94500;71000;38000;41600;61845;52000;70000;70000;43000;46000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;5304;8184;9864;9264;8160;26733;27430;19358;10975;15198;24400;26659;26659;39139;33949;21399;21399;13000;37046;57188;57188;39707;26000;36461;49730;39600;86634;86634;53000;56000;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21250;31268;25500;29500;33000;60119;55284;55284;20853;21143;21049;64674;63778;58422;58825;59545;66592;207177;214443;232404;245647;521889;484341;357007;304074;561081
-4;'012;Algeria;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7207;11376;8984;9423;11434;27013;34276;34276;9588;12147;12901;31468;34587;38853;34284;38068;41922;95520;96669;124962;136909;272952;220538;189758;199286;313836
-4;'012;Algeria;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1545;1371;5923;5923;5923;1956;1956;0;0;0;0;0;603;0;0;0;0
-4;'012;Algeria;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;588;610;2746;2746;2746;1164;1164;0;0;0;0;0;514;0;0;0;0
-4;'012;Algeria;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;1500;6000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-4;'012;Algeria;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17583;25873;21100;26200;26200;19034;84072;84072;40617;74972;54617;48768;74547;78753;98861;133107;127407;138100;172801;91747;112903;149351;169255;85569;126335;123585
-4;'012;Algeria;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12596;19882;15702;21529;21529;25903;52124;52124;27520;72732;68910;73715;91036;102454;112429;82442;142226;72029;148335;113725;130280;202817;210373;103106;179994;156915
-4;'012;Algeria;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;12;12;9;8;14;14;15;28;28;28;28;177;177;51;104;10;0;197;0
-4;'012;Algeria;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;7;7;59;58;76;76;109;43;43;43;43;137;137;58;99;98;0;447;1
-4;'012;Algeria;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;25300;22500;20900;10700;14900;19200;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500;17500
-4;'012;Algeria;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32833;48312;39400;33100;26200;49243;59140;59140;43759;57732;57427;50453;59208;76701;59892;52992;62672;48621;68327;65248;51903;52459;49102;54438;46028;39299
-4;'012;Algeria;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22798;35984;28418;18829;14508;34438;36667;36667;28244;50435;59375;45988;56389;90200;63185;56410;64589;42233;54077;53668;50367;54179;42512;51861;60491;50051
-4;'012;Algeria;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1;1;1;1;1;281;63;7;7;7;81;20;1214;1102;24;256;8;233;774;557
-4;'012;Algeria;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1;1;1;1;1;311;47;8;8;8;87;55;846;909;27;234;5;225;749;459
-4;'012;Algeria;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5333;7848;6400;4200;300;10609;5918;5918;497;1888;2048;1586;3696;3267;3216;4062;3493;2955;3054;5808;4621;8587;14498;15906;10053;16138
-4;'012;Algeria;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1749;2760;2180;1410;290;4433;3670;3670;276;1289;1493;1251;2584;2826;2812;3541;2978;2180;2092;3781;3225;6236;8418;11624;10380;13355
-4;'012;Algeria;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;40;89;162;332;332;332;332;332;26;2;47;47;47
-4;'012;Algeria;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;44;88;140;330;330;330;330;330;10;2;29;29;29
-4;'012;Algeria;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;40000;48000;53000;55000;58000;66000;71000;75000;67000;69000;78000;78000;61500;59500;72100;68800;57900;39000;39000;39000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-4;'012;Algeria;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;1300;2000;1600;1600;2000;4400;4000;3700;2700;9700;23000;23600;23600;13900;20600;19900;20300;20000;59600;45900;42900;32000;23000;27000;24000;25500;21200;21200;18000;10000;22000;11300;11300;6400;11600;15379;26567;26567;14590;11642;11711;15835;17422;16873;8234;13318;18590;7465;13005;3933;1753;3397;6023;8713;2077;7324
-4;'012;Algeria;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;390;600;450;434;760;3696;3377;3913;2958;6382;18400;24956;24956;10479;15013;14249;14501;12500;44814;35540;35540;26000;17000;19000;18000;17672;22000;22000;19000;11000;20000;13782;13810;11674;19071;21218;25238;25238;27001;16791;19236;23767;29998;31094;8828;14670;34104;6786;30635;20079;9408;23231;28047;50363;13050;49772
-4;'012;Algeria;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;200;200;0;0;0;0;0;0;0;5;18;18;18;18;18;363;12;6;6;6;6;22;22;22;6;1;10;24;24;24
-4;'012;Algeria;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;0;269;269;0;0;0;0;0;0;0;12;21;21;21;21;21;875;28;17;17;17;17;19;19;19;113;3;326;115;115;115
-4;'012;Algeria;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234846;205915;135719;75766;68994;87374;102821
-4;'012;Algeria;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;941;1853;2163;1869;2086;3481
-4;'012;Algeria;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2926;2803;2070;588;424;1311;725
-4;'012;Algeria;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;597;596;596;596;596;596;596
-4;'012;Algeria;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1429;1371;733;296;313;924;464
-4;'012;Algeria;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;596;596;596;596;596;596
-4;'012;Algeria;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1497;1432;1337;292;111;387;261
-4;'012;Algeria;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-4;'012;Algeria;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;1782;4025;3018;1048;569;334
-4;'012;Algeria;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;263;1117;1088;1105;1225;2412
-4;'012;Algeria;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4039;3741;4950;4319;7272;1897;1110
-4;'012;Algeria;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;7;0;10;9;5
-4;'012;Algeria;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31436;84805;44314;19790;26180;19093;26933
-4;'012;Algeria;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;14;110;0;52;164
-4;'012;Algeria;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;6
-4;'012;Algeria;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;43
-4;'012;Algeria;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173388;100557;69548;35850;26212;57292;64343
-4;'012;Algeria;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;46;106;364;106;147;174
-4;'012;Algeria;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15572;1738;1697;1092;513;2770;641
-4;'012;Algeria;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-4;'012;Algeria;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6667;10489;9115;11109;7345;4442;8735
-4;'012;Algeria;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;13;5;52;57;130
-4;'012;Algeria;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193693;357202;351330;351368;301153;246118;293193
-4;'012;Algeria;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;4703;7314;4698;5944;8200;10204
-4;'012;Algeria;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858;9995;6461;5781;5697;10392;4808
-4;'012;Algeria;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;53;0
-4;'012;Algeria;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30348;95642;89473;90843;88506;79864;92690
-4;'012;Algeria;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;13;11;33;5;115;337
-4;'012;Algeria;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11363;5613;8478;6763;6339;3883;6474
-4;'012;Algeria;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;1172;1890;1188;886;2768;5058
-4;'012;Algeria;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126149;156897;192668;214450;170630;113978;145361
-4;'012;Algeria;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1805;2986;4481;2383;3182;3840;3592
-4;'012;Algeria;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23975;89055;54250;33531;29981;38001;43860
-4;'012;Algeria;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;488;888;1050;1827;1424;1217
-5;'016;American Samoa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5140;8896;6041;8495;9274;9641;8555
-5;'016;American Samoa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;453;156;76;77;77;209
-5;'016;American Samoa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;373;416;302;302;301;263;263;263;263;263;263;263;263;263;263;263;263;1675;2125;1193;1427;1286;1032;1713;912;3214;2373;2869;4472;4538;4056
-5;'016;American Samoa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;13;12;13;10;17;3;0;35;62
-5;'016;American Samoa;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;3;18;283;380;0;0;0;428;521
-5;'016;American Samoa;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;2;14;13;0;0;0;133;292
-5;'016;American Samoa;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;48;0;0;21;0;0;0;0
-5;'016;American Samoa;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;0;0;3;0;0;0;0
-5;'016;American Samoa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;428;520
-5;'016;American Samoa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;133;282
-5;'016;American Samoa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;21;0;0;0;0
-5;'016;American Samoa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0
-5;'016;American Samoa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;380;0;0;0;0;1
-5;'016;American Samoa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;13;0;0;0;0;10
-5;'016;American Samoa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-5;'016;American Samoa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-5;'016;American Samoa;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;3;18;283;380;0;0;0;428;521
-5;'016;American Samoa;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;2;14;13;0;0;0;133;292
-5;'016;American Samoa;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;48;0;0;21;0;0;0;0
-5;'016;American Samoa;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;0;0;3;0;0;0;0
-5;'016;American Samoa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;18;3;0;0;0;0;428;520
-5;'016;American Samoa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;2;2;0;0;0;0;133;282
-5;'016;American Samoa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;0;0;0;0
-5;'016;American Samoa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0
-5;'016;American Samoa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;18;3;0;0;0;0;428;520
-5;'016;American Samoa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;2;2;0;0;0;0;133;282
-5;'016;American Samoa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;0;0;0;0
-5;'016;American Samoa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0
-5;'016;American Samoa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;280;380;0;0;0;0;1
-5;'016;American Samoa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;13;0;0;0;0;10
-5;'016;American Samoa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;48;0;0;0;0;0;0;0
-5;'016;American Samoa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;0;0;0;0;0;0;0
-5;'016;American Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;280;380;0;0;0;0;0
-5;'016;American Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;13;0;0;0;0;0
-5;'016;American Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;48;0;0;0;0;0;0;0
-5;'016;American Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;0;0;0;0;0;0;0
-5;'016;American Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1
-5;'016;American Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10
-5;'016;American Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;0;0;0;500;500;500
-5;'016;American Samoa;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;119;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;6135;6462;2495;4038;8023;3536;5091;961;7071;5340;5872;8592;6391;6588
-5;'016;American Samoa;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;37;172;172;172;172;172;172;172;172;172;172;172;172;172;172;172;172;1421;1585;777;1026;814;758;1251;417;2477;1667;2089;3831;3324;2874
-5;'016;American Samoa;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14;23;11;24;0;1;0;0
-5;'016;American Samoa;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;11;6;6;3;0;0;0
-5;'016;American Samoa;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;0;0;0;0;0
-5;'016;American Samoa;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;119;639;639;639;639;639;639;639;639;639;639;639;639;639;639;639;639;6132;6459;2492;4035;8020;3287;5011;929;7070;5340;5872;8278;6390;6576
-5;'016;American Samoa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;37;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;1421;1582;719;1022;775;745;1224;370;2477;1667;2089;3815;3324;2868
-5;'016;American Samoa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14;17;10;24;0;0;0;0
-5;'016;American Samoa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;7;6;6;0;0;0;0
-5;'016;American Samoa;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;0;0;500;500;500
-5;'016;American Samoa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;249;80;32;1;0;0;314;1;12
-5;'016;American Samoa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;3;58;4;39;13;27;47;0;0;0;16;0;6
-5;'016;American Samoa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;1;0;0;1;0;0
-5;'016;American Samoa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;3;0;0;0
-5;'016;American Samoa;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;0;0;14;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;0;0;0;0;3;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;120;369;62;62;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;287;541;508;809;828;0;832;1300;1038
-5;'016;American Samoa;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;36;142;28;28;27;27;27;27;27;27;27;27;27;27;27;27;27;195;481;357;342;410;215;401;422;665;647;721;641;1081;834
-5;'016;American Samoa;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;2;16;9;0;0;0;0
-5;'016;American Samoa;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;4;8;0;0;0;0
-5;'016;American Samoa;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-5;'016;American Samoa;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;38;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;287;541;508;809;828;0;786;1254;764
-5;'016;American Samoa;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;17;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;195;481;357;342;410;215;401;422;665;647;721;635;1075;728
-5;'016;American Samoa;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;2;16;9;0;0;0;0
-5;'016;American Samoa;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;4;8;0;0;0;0
-5;'016;American Samoa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;46;1
-5;'016;American Samoa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;0
-5;'016;American Samoa;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;82;317;10;10;;;;;;;;;;;;;;;;;;;;;;;;;;;273
-5;'016;American Samoa;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;19;115;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;106
-5;'016;American Samoa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192
-5;'016;American Samoa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76
-5;'016;American Samoa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81
-5;'016;American Samoa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30
-5;'016;American Samoa;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;10;10;10;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;47;307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;15;114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19
-5;'016;American Samoa;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6
-5;'016;American Samoa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;278;387
-5;'016;American Samoa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15;45
-5;'016;American Samoa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19
-5;'016;American Samoa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6
-5;'016;American Samoa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;278;387
-5;'016;American Samoa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15;45
-5;'016;American Samoa;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;535;144;144;144;144;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;0;0;40
-5;'016;American Samoa;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;296;97;97;97;97;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;0;0;50
-5;'016;American Samoa;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;21;55
-5;'016;American Samoa;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;20;17
-5;'016;American Samoa;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;136;136;136;136;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;0;0;40
-5;'016;American Samoa;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;91;91;91;91;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;0;0;44
-5;'016;American Samoa;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;21;55
-5;'016;American Samoa;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;20;17
-5;'016;American Samoa;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;0;0;0
-5;'016;American Samoa;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;0;0;0
-5;'016;American Samoa;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;55
-5;'016;American Samoa;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;17
-5;'016;American Samoa;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;40
-5;'016;American Samoa;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32;32;32;32;;;;;;;;;;;;;;;;;;;;;;;;;;44
-5;'016;American Samoa;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40
-5;'016;American Samoa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44
-5;'016;American Samoa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;298;8;8;8;8;;;;;;;;;;;;;;;;;;;;;;;;;;0
-5;'016;American Samoa;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;6;6;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;6
-5;'016;American Samoa;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-5;'016;American Samoa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6
-5;'016;American Samoa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-5;'016;American Samoa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-5;'016;American Samoa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-5;'016;American Samoa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-5;'016;American Samoa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;526;613;585;1195;935;586
-5;'016;American Samoa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;420;96;30;27;23;137
-5;'016;American Samoa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;23;23;23;38;38
-5;'016;American Samoa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;0;0;0;0
-5;'016;American Samoa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20
-5;'016;American Samoa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;0;0;0;0
-5;'016;American Samoa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;3;18;18
-5;'016;American Samoa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-5;'016;American Samoa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-5;'016;American Samoa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;0;0;0;0
-5;'016;American Samoa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;1;1;5;5;3
-5;'016;American Samoa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;6;6;3;6;2
-5;'016;American Samoa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;285;352;471;782;449;232
-5;'016;American Samoa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;2;25
-5;'016;American Samoa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22
-5;'016;American Samoa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-5;'016;American Samoa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;208;237;88;363;422;312
-5;'016;American Samoa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;418;58;17;17;4;110
-5;'016;American Samoa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;0;2;22;21;1
-5;'016;American Samoa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;7;7;11;0
-5;'016;American Samoa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3711;5156;3055;5041;3607;4168;3913
-5;'016;American Samoa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;23;43;43;50;19;10
-5;'016;American Samoa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;3;3;3;3;3
-5;'016;American Samoa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-5;'016;American Samoa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;3;11;5;15;15
-5;'016;American Samoa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;0;0
-5;'016;American Samoa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;20;207;162;70;41;33
-5;'016;American Samoa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;23;28;28;0;0
-5;'016;American Samoa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3625;4996;2754;4666;3316;3961;3688
-5;'016;American Samoa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;12;10;1;7;0
-5;'016;American Samoa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;136;88;199;213;148;174
-5;'016;American Samoa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;15;8;5;21;12;10
-6;'020;Andorra;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31369;17870;26359;23524;23524;29476;29479
-6;'020;Andorra;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;484;1466;2583;2583;10036;10036
-6;'020;Andorra;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;249;6157;6003;6413;6383;6383;6383;4370;4370;4370;4370;4370;4370;4370;4370;4370;4370;4370;4370;4370;4370;4387;4510;4631;2605;2383;2629;3412;12099;12222;12222;18052;18052
-6;'020;Andorra;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;1674;80;80;80;80;80;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;72;36;56;80;1323;2151;2151;9604;9604
-6;'020;Andorra;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046;2219;4093;3006;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2696;2880;2456;3764;3740;3512;3428;3428;3954;3954
-6;'020;Andorra;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;249;334;203;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;168;132;316;356;313;296;296;382;382
-6;'020;Andorra;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;569;424;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;520;213;381;747;2571;1788;1788;2330;2330
-6;'020;Andorra;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;20;17;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;51;12;19;38;114;74;74;151;151
-6;'020;Andorra;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1319;650;106;24;24;134;134
-6;'020;Andorra;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;57;37;2;2;10;10
-6;'020;Andorra;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;747;2571;1788;1788;2330;2330
-6;'020;Andorra;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;38;114;74;74;151;151
-6;'020;Andorra;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445;3090;3406;3404;3404;3820;3820
-6;'020;Andorra;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;299;276;294;294;372;372
-6;'020;Andorra;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-6;'020;Andorra;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-6;'020;Andorra;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662;1983;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;3092;3431;3409;3418;3418;3927;3927
-6;'020;Andorra;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;121;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;262;320;275;291;291;377;377
-6;'020;Andorra;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;297;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;;;;;;;
-6;'020;Andorra;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-6;'020;Andorra;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656;349;7;24;24;107;107
-6;'020;Andorra;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;24;1;2;2;5;5
-6;'020;Andorra;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2436;3082;3402;3394;3394;3820;3820
-6;'020;Andorra;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;296;274;289;289;372;372
-6;'020;Andorra;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662;1983;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;2440;;;;;;;
-6;'020;Andorra;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;121;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;;;;;;;
-6;'020;Andorra;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;297;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;;;;;;;
-6;'020;Andorra;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-6;'020;Andorra;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046;2219;1431;1023;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;440;16;672;309;103;10;10;27;27
-6;'020;Andorra;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;249;145;82;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;38;2;54;36;38;5;5;5;5
-6;'020;Andorra;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;163;127;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;480;173;381;747;2571;1788;1788;2330;2330
-6;'020;Andorra;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;50;11;19;38;114;74;74;151;151
-6;'020;Andorra;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046;2219;1431;854;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;440;10;663;301;99;0;0;27;27
-6;'020;Andorra;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;249;145;66;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;38;1;41;33;36;0;0;5;5
-6;'020;Andorra;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;103;103;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;480;173;381;747;2571;1788;1788;2330;2330
-6;'020;Andorra;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;6;6;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;50;11;19;38;114;74;74;151;151
-6;'020;Andorra;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046;2219;1431;854;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;440;10;663;301;99;0;0;27;27
-6;'020;Andorra;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;249;145;66;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;38;1;41;33;36;0;0;5;5
-6;'020;Andorra;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;103;103;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;480;173;381;747;2571;1788;1788;2330;2330
-6;'020;Andorra;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;6;6;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;50;11;19;38;114;74;74;151;151
-6;'020;Andorra;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;0;6;9;8;4;10;10;0;0
-6;'020;Andorra;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;1;13;3;2;5;5;0;0
-6;'020;Andorra;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;60;24;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;5;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;0;4;0;0;0;0
-6;'020;Andorra;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;0;2;0;0;0;0
-6;'020;Andorra;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;0;6;3;8;0;10;10;0;0
-6;'020;Andorra;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;1;2;3;0;5;5;0;0
-6;'020;Andorra;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;60;24;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;5;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;36;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;303;355;355;437;437
-6;'020;Andorra;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;18;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;258;261;261;412;412
-6;'020;Andorra;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;190;190;190;190
-6;'020;Andorra;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;115;115;115;115
-6;'020;Andorra;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;456;264;264;667;667
-6;'020;Andorra;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;39;24;24;74;74
-6;'020;Andorra;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;1564;1564
-6;'020;Andorra;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3
-6;'020;Andorra;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;0;0;0;6;6
-6;'020;Andorra;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;4;4
-6;'020;Andorra;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;31;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;456;264;264;661;661
-6;'020;Andorra;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;39;24;24;70;70
-6;'020;Andorra;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;1564;1564
-6;'020;Andorra;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3
-6;'020;Andorra;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;517;907;907;907;907;907;965;1074;1074;1166;1166
-6;'020;Andorra;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;140;261;261;261;261;261;264;287;287;495;495
-6;'020;Andorra;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;872
-6;'020;Andorra;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-6;'020;Andorra;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;517;907;907;907;907;907;963;1073;1073;1143;1143
-6;'020;Andorra;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;140;261;261;261;261;261;262;284;284;488;488
-6;'020;Andorra;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18
-6;'020;Andorra;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-6;'020;Andorra;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;23;23
-6;'020;Andorra;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;7;7
-6;'020;Andorra;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854;854
-6;'020;Andorra;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-6;'020;Andorra;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12977;10717;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;10025;2243;2092;3641;6235;9734;2908;2908;3393;3393
-6;'020;Andorra;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3418;2687;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;2648;689;586;615;1299;1065;753;753;2083;2083
-6;'020;Andorra;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096;144;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;195;0;7;19;30;37;80;80;12;12
-6;'020;Andorra;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;14;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;0;4;5;22;10;14;14;4;4
-6;'020;Andorra;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11835;9819;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;9193;1766;1712;3196;5603;9012;1630;1630;1418;1418
-6;'020;Andorra;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664;2154;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;2084;439;355;327;806;729;280;280;721;721
-6;'020;Andorra;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096;107;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;0;3;19;0;37;1;1;10;10
-6;'020;Andorra;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;8;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;1;5;0;10;1;1;3;3
-6;'020;Andorra;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;898;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;832;477;380;445;632;722;1278;1278;1975;1975
-6;'020;Andorra;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;754;533;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;564;250;231;288;493;336;473;473;1362;1362
-6;'020;Andorra;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;0;4;0;30;0;79;79;2;2
-6;'020;Andorra;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;3;0;22;0;13;13;1;1
-6;'020;Andorra;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;0;102;1;2;1;1;1;1;1
-6;'020;Andorra;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;19;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;29;5;7;9;10;10;10;10
-6;'020;Andorra;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2794;1918;1818;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1702;1597;1457;1620;1476;1587;1064;1064;1768;1768
-6;'020;Andorra;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1276;800;872;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;842;832;720;777;834;566;567;567;1652;1652
-6;'020;Andorra;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;26;25;39;25;25;0;0;27;27
-6;'020;Andorra;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;8;7;19;7;7;0;0;11;11
-6;'020;Andorra;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;263;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;385;280;140;303;159;51;101;101;101;101
-6;'020;Andorra;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;187;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;222;110;167;224;57;116;116;116;116
-6;'020;Andorra;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;14;0;0;0;0;0;0
-6;'020;Andorra;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;12;0;0;0;0;0;0
-6;'020;Andorra;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;1391;1182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;805;482;541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;1182;742;872;872;1128;1128
-6;'020;Andorra;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;394;429;429;790;790
-6;'020;Andorra;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;0;0;8;8
-6;'020;Andorra;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;8;8
-6;'020;Andorra;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;264;251;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;794;91;91;539;539
-6;'020;Andorra;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;131;99;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;115;22;22;746;746
-6;'020;Andorra;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19
-6;'020;Andorra;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-6;'020;Andorra;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;221
-6;'020;Andorra;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;497
-6;'020;Andorra;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-6;'020;Andorra;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-6;'020;Andorra;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;171
-6;'020;Andorra;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;172
-6;'020;Andorra;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19
-6;'020;Andorra;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-6;'020;Andorra;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382;200;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;794;91;91;147;147
-6;'020;Andorra;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;113;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;115;22;22;77;77
-6;'020;Andorra;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;64;116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;18;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;478;457;457;485;485
-6;'020;Andorra;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;323;322;322;325;325
-6;'020;Andorra;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;160;160;160;7162;7162
-6;'020;Andorra;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;66;66;66;1136;1136
-6;'020;Andorra;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;452;453;453;461;461
-6;'020;Andorra;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;307;310;310;307;307
-6;'020;Andorra;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;451;451;459;459
-6;'020;Andorra;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;306;306;303;303
-6;'020;Andorra;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;10;10
-6;'020;Andorra;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;6;6
-6;'020;Andorra;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;449;449;449;449
-6;'020;Andorra;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297
-6;'020;Andorra;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;449;449;449;449
-6;'020;Andorra;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297
-6;'020;Andorra;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;2;2;2;2
-6;'020;Andorra;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;4;4;4;4
-6;'020;Andorra;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;4;4;24;24
-6;'020;Andorra;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;12;12;18;18
-6;'020;Andorra;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;160;160;160;7162;7162
-6;'020;Andorra;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;66;66;66;1136;1136
-6;'020;Andorra;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1267;1992;2491;2491;2491;2491;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;715;3446;1039;1039;1450;1450
-6;'020;Andorra;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075;2263;2642;2642;2642;2642;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;9262;9702;9702;12619;12619
-6;'020;Andorra;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956;49;45;45;45;45;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;32;40;40;208;208
-6;'020;Andorra;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093;41;33;33;33;33;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1094;1881;1881;8178;8178
-6;'020;Andorra;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;1315;1784;1784;1784;1784;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;2949;487;487;594;594
-6;'020;Andorra;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;1592;2017;2017;2017;2017;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;2556;888;888;1390;1390
-6;'020;Andorra;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;37;28;28;28;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;1;1;15;15
-6;'020;Andorra;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753;32;21;21;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;37;1;1;10;10
-6;'020;Andorra;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;1;1;0;0
-6;'020;Andorra;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;3;3;1;1
-6;'020;Andorra;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-6;'020;Andorra;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;1295;1776;1776;1776;1776;;;;;;;;;;;;;;;;;;;;;;2941;486;486;594;594
-6;'020;Andorra;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;1578;2013;2013;2013;2013;;;;;;;;;;;;;;;;;;;;;;2552;885;885;1389;1389
-6;'020;Andorra;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;37;28;28;28;28;;;;;;;;;;;;;;;;;;;;;;10;1;1;15;15
-6;'020;Andorra;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753;32;21;21;21;21;;;;;;;;;;;;;;;;;;;;;;37;1;1;10;10
-6;'020;Andorra;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;35;35;53;53
-6;'020;Andorra;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;43;43;93;93
-6;'020;Andorra;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2774;385;385;293;293
-6;'020;Andorra;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2199;592;592;616;616
-6;'020;Andorra;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;2;2
-6;'020;Andorra;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;1;1;4;4
-6;'020;Andorra;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;66;66;248;248
-6;'020;Andorra;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;250;250;680;680
-6;'020;Andorra;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;13;13
-6;'020;Andorra;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;6;6
-6;'020;Andorra;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321;677;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;497;552;552;856;856
-6;'020;Andorra;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;671;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;6706;8814;8814;11229;11229
-6;'020;Andorra;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;12;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;22;39;39;193;193
-6;'020;Andorra;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;9;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1057;1880;1880;8168;8168
-6;'020;Andorra;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;80;80;158;158
-6;'020;Andorra;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;161;161;390;390
-6;'020;Andorra;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;226;226;267;267
-6;'020;Andorra;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;734;734;1048;1048
-6;'020;Andorra;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-6;'020;Andorra;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-6;'020;Andorra;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;144;144;111;111
-6;'020;Andorra;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;321;321;305;305
-6;'020;Andorra;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-6;'020;Andorra;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;69;69;115;115
-6;'020;Andorra;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;344;344;552;552
-6;'020;Andorra;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-6;'020;Andorra;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-6;'020;Andorra;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;13;13;40;40
-6;'020;Andorra;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;69;69;190;190
-6;'020;Andorra;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-6;'020;Andorra;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-6;'020;Andorra;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-6;'020;Andorra;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;707;257;246;246;431;431
-6;'020;Andorra;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;625;5946;7919;7919;9791;9791
-6;'020;Andorra;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;22;39;39;193;193
-6;'020;Andorra;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1057;1880;1880;8168;8168
-6;'020;Andorra;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28740;14458;14260;11302;11302;11424;11427
-6;'020;Andorra;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;404;143;432;432;432;432
-6;'020;Andorra;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;125
-6;'020;Andorra;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;188
-6;'020;Andorra;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;125
-6;'020;Andorra;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28740;14458;14260;11302;11302;11302;11302
-6;'020;Andorra;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;404;143;432;432;432;432
-7;'024;Angola;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245265;253563;252969;167541;225602.35;351975;314507
-7;'024;Angola;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59650;58197;59256;34091;101071;85144;99199
-7;'024;Angola;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;696;838;663;681;1078;966;1124;1208;945;1947;1381;1296;1876;2191;2191;2191;2191;2301;2848;2598;2325;2365;2365;2106;4996;5506;24737;16985;7549;7957;9694;14862;4125;5257;5263;3132;5961;4769;5125;2314;2974;1900;8159;16668;16668;13548;38453;60031;57511;56694;92198;88323;114784;130765;79075;47635;54658;72867;112619;79057;127768.35;167398;119052
-7;'024;Angola;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2582;3039;3039;3323;3743;4636;4793;9678;11449;11382;10485;11202;15888;14377;;;;;;;;;;;0;64;28;0;0;0;0;649;644;863;863;94;2314;1101;1794;2862;1071;779;1176;2885;2885;3041;2882;7104;8471;7365;7078;13110;8048;13121;21042;40115;55713;49463;44190;16413;49913;32578;49087
-7;'024;Angola;1861;Roundwood;5516;Production;m3;1748164;1846735;1936256;2036754;2084258;2126798;2216402;2507103;2768932;2806923;3019916;2711088;2629679;2625370;2761759;2800107;2792390;2773923;2770780;2758657;2748423;2672804;2714010;2833972;2900688;2943531;2965227;3005194;3092878;3185007;3281874;3380879;3671559;3748763;3779166;3839807;3934819;4046239;4166998;4259117;4336501;4416171;4498202;4582673;4669664;4751966;4836600;4923638;5024258;5136338;5234538;5335293;5441681;5554785;5704689;5803131;5926932;6023161;6121886;6223180;6327197;6433911;6543398
-7;'024;Angola;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;0;0;0;0;0;80;211;331;325;474;474;696;3419;3419;2074;2462;2462;2948;3336;4170;2569;2292;2497;1857;424;673;332;390;1698;217;298;95
-7;'024;Angola;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;0;0;0;0;34;35;32;60;158;158;158;254;254;339;519;519;733;1113;744;620;471;575;244;102;493;98;112;141;53;154;65
-7;'024;Angola;1861;Roundwood;5916;Export quantity;m3;88800;94100;94100;103800;103400;107400;108900;171000;180200;151800;133100;148100;219400;126300;;;;;;;;;;;;;;;;;;1900;1900;1700;1700;200;2024;722;3626;6039;1300;715;824;12270;12270;4468;2736;6439;5765;1833;2897;13839;4170;15000;45589;107897;94633;98643;64264;6063;83000;32912;31036
-7;'024;Angola;1861;Roundwood;5922;Export value;1000 USD;2075;2556;2556;2878;2840;3236;3418;5837;6928;5898;5071;5305;8534;8532;;;;;;;;;;;;;;;;;;550;550;670;670;61;1149;395;1335;2437;646;352;698;2356;2356;2400;2289;2582;2084;1999;2326;6633;3184;6705;15206;28859;43372;40072;23545;2234;28018;10392;11065
-7;'024;Angola;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;301;372;1267;84;293;75
-7;'024;Angola;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;91;104;59;29;146;59
-7;'024;Angola;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;76;0;40;0;58;36
-7;'024;Angola;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;19;0;9;0;40;23
-7;'024;Angola;1863;Roundwood, non-coniferous;5516;Production;m3;1748164;1846735;1936256;2036754;2084258;2126798;2216402;2507103;2768932;2806923;3019916;2711088;2629679;2625370;2761759;2800107;2792390;2773923;2770780;2758657;2748423;2672804;2714010;2833972;2900688;2943531;2965227;3005194;3092878;3185007;3281874;3380879;3671559;3748763;3779166;3839807;3934819;4046239;4166998;4259117;4336501;4416171;4498202;4582673;4669664;4751966;4836600;4923638;5024258;5136338;5234538;5335293;5441681;5554785;5704689;5803131;5926932;6023161;6121886;6223180;6327197;6433911;6543398
-7;'024;Angola;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;31;18;431;133;5;20
-7;'024;Angola;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;8;82;24;8;6
-7;'024;Angola;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94478;98567;64264;6023;83000;32854;31000
-7;'024;Angola;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43277;40053;23545;2225;28018;10352;11042
-7;'024;Angola;1864;Wood fuel;5516;Production;m3;1117164;1149735;1183256;1217754;1253258;1289798;1327402;1366103;1405932;1446923;1461916;1476088;1475679;1521370;1706759;1792107;1829390;1855923;1896780;1928657;1962673;1995304;2028010;2061972;2097688;2143531;2167227;2203194;2268878;2342007;2412874;2483879;2744559;2790763;2810266;2839907;2902919;2982339;3071098;3163217;3240601;3320271;3402302;3486773;3573764;3656066;3740700;3827738;3917258;4009338;4100538;4194293;4290681;4389785;4491689;4583131;4676932;4773161;4871886;4973180;5077197;5183911;5293398
-7;'024;Angola;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;141;9;9;9;30;6;6;0;5;2;2;2;2;2;2;;;;;;;
-7;'024;Angola;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;2;2;2;1;6;6;0;15;3;3;8;8;8;8;;;;;;;
-7;'024;Angola;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1628;Wood fuel, non-coniferous;5516;Production;m3;1117164;1149735;1183256;1217754;1253258;1289798;1327402;1366103;1405932;1446923;1461916;1476088;1475679;1521370;1706759;1792107;1829390;1855923;1896780;1928657;1962673;1995304;2028010;2061972;2097688;2143531;2167227;2203194;2268878;2342007;2412874;2483879;2744559;2790763;2810266;2839907;2902919;2982339;3071098;3163217;3240601;3320271;3402302;3486773;3573764;3656066;3740700;3827738;3917258;4009338;4100538;4194293;4290681;4389785;4491689;4583131;4676932;4773161;4871886;4973180;5077197;5183911;5293398
-7;'024;Angola;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;141;9;9;9;30;6;6;0;5;2;2;2;2;2;2;;;;;;;
-7;'024;Angola;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;2;2;2;1;6;6;0;15;3;3;8;8;8;8;;;;;;;
-7;'024;Angola;1865;Industrial roundwood;5516;Production;m3;631000;697000;753000;819000;831000;837000;889000;1141000;1363000;1360000;1558000;1235000;1154000;1104000;1055000;1008000;963000;918000;874000;830000;785750;677500;686000;772000;803000;800000;798000;802000;824000;843000;869000;897000;927000;958000;968900;999900;1031900;1063900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1107000;1127000;1134000;1141000;1151000;1165000;1213000;1220000;1250000;1250000;1250000;1250000;1250000;1250000;1250000
-7;'024;Angola;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;0;0;0;0;0;80;211;190;184;333;333;687;3410;3410;2044;2456;2456;2948;3331;4168;2567;2290;2495;1855;422;673;332;390;1698;217;298;95
-7;'024;Angola;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;0;0;0;0;34;35;29;57;155;155;156;252;252;338;513;513;733;1098;741;617;463;567;236;94;493;98;112;141;53;154;65
-7;'024;Angola;1865;Industrial roundwood;5916;Export quantity;m3;88800;94100;94100;103800;103400;107400;108900;171000;180200;151800;133100;148100;219400;126300;;;;;;;;;;;;;;;;;;1900;1900;1700;1700;200;2024;722;3626;6039;1300;715;824;12270;12270;4468;2736;6439;5765;1833;2897;13839;4170;15000;45589;107897;94633;98643;64264;6063;83000;32912;31036
-7;'024;Angola;1865;Industrial roundwood;5922;Export value;1000 USD;2075;2556;2556;2878;2840;3236;3418;5837;6928;5898;5071;5305;8534;8532;;;;;;;;;;;;;;;;;;550;550;670;670;61;1149;395;1335;2437;646;352;698;2356;2356;2400;2289;2582;2084;1999;2326;6633;3184;6705;15206;28859;43372;40072;23545;2234;28018;10392;11065
-7;'024;Angola;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;0;0;11;27;74;11;200;200;71;191;191;943;934;934;1535;2902;1545;2133;1701;2182;1440;38;651;301;372;1267;84;293;75
-7;'024;Angola;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;3;2;8;1;130;130;4;12;12;58;57;57;178;555;163;283;178;218;163;18;481;91;104;59;29;146;59
-7;'024;Angola;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;572;572;572;4182;4182;0;5;0;0;0;0;0;155;76;0;40;0;58;36
-7;'024;Angola;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;222;222;0;1;3;0;7;0;0;95;19;0;9;0;40;23
-7;'024;Angola;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;0;0;11;27;74;11;200;200;71;191;191;943;934;934;1535;2902;1545;2133;1701;2182;1440;38;651;301;372;1267;84;293;75
-7;'024;Angola;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;3;2;8;1;130;130;4;12;12;58;57;57;178;555;163;283;178;218;163;18;481;91;104;59;29;146;59
-7;'024;Angola;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;572;572;572;4182;4182;0;5;0;0;0;0;0;155;76;0;40;0;58;36
-7;'024;Angola;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;222;222;0;1;3;0;7;0;0;95;19;0;9;0;40;23
-7;'024;Angola;1867;Industrial roundwood, non-coniferous;5516;Production;m3;631000;697000;753000;819000;831000;837000;889000;1141000;1363000;1360000;1558000;1235000;1154000;1104000;1055000;1008000;963000;918000;874000;830000;785750;677500;686000;772000;803000;800000;798000;802000;824000;843000;869000;897000;927000;958000;968900;999900;1031900;1063900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1095900;1107000;1127000;1134000;1141000;1151000;1165000;1213000;1220000;1250000;1250000;1250000;1250000;1250000;1250000;1250000
-7;'024;Angola;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;69;184;116;173;133;133;616;3219;3219;1101;1522;1522;1413;429;2623;434;589;313;415;384;22;31;18;431;133;5;20
-7;'024;Angola;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;31;33;21;56;25;25;152;240;240;280;456;456;555;543;578;334;285;349;73;76;12;7;8;82;24;8;6
-7;'024;Angola;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;1700;1700;200;2024;722;3626;6039;1300;715;824;11698;11698;3896;2164;2257;1583;1833;2892;13839;4170;15000;45589;107897;94478;98567;64264;6023;83000;32854;31000
-7;'024;Angola;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;550;670;670;61;1149;395;1335;2437;646;352;698;2326;2326;2370;2259;2360;1862;1999;2325;6630;3184;6698;15206;28859;43277;40053;23545;2225;28018;10352;11042
-7;'024;Angola;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;45;47;33;33;33;33;33;281;281;261;1310;1310;1310;83;83;83;83;168;120;383;20;1;0;378;119;0;20
-7;'024;Angola;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;18;5;10;10;10;10;10;46;46;77;290;290;290;146;146;146;146;298;38;73;12;0;0;52;21;0;6
-7;'024;Angola;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;1700;1700;200;950;717;2909;3741;500;698;444;2000;2000;2898;1654;1493;826;1148;2018;11055;3249;15000;45589;107897;94478;98567;64264;6023;83000;32684;31000
-7;'024;Angola;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;550;670;670;61;574;395;1064;1256;177;342;453;1754;1754;1872;1400;1585;915;1200;2117;5810;2551;6698;15206;28859;43277;40053;23545;2225;28018;10275;11042
-7;'024;Angola;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;24;137;83;140;100;100;583;2938;2938;840;212;212;103;346;2540;351;506;145;295;1;2;30;18;53;14;5;0
-7;'024;Angola;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;28;11;46;15;15;142;194;194;203;166;166;265;397;432;188;139;51;35;3;0;7;8;30;3;8;0
-7;'024;Angola;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074;5;717;2298;800;17;380;9698;9698;998;510;764;757;685;874;2784;921;0;0;0;0;0;0;0;0;170;0
-7;'024;Angola;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;575;0;271;1181;469;10;245;572;572;498;859;775;947;799;208;820;633;0;0;0;0;0;0;0;0;77;0
-7;'024;Angola;1868;Sawlogs and veneer logs;5516;Production;m3;220000;230000;240000;270000;280000;295000;320000;560000;740000;720000;910000;580000;520000;460000;400000;340000;280000;220000;160000;100000;39750;38500;31000;116000;130000;108000;86000;70000;70000;66000;66000;66000;66000;66000;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;57000;77000;84000;91000;101000;115000;163000;170000;200000;200000;200000;200000;200000;200000;200000
-7;'024;Angola;1868;Sawlogs and veneer logs;5916;Export quantity;m3;88800;94100;94100;103800;103400;107400;108900;171000;180200;151800;133100;148100;219400;126300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2075;2556;2556;2878;2840;3236;3418;5837;6928;5898;5071;5305;8534;8532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;220000;230000;240000;270000;280000;295000;320000;560000;740000;720000;910000;580000;520000;460000;400000;340000;280000;220000;160000;100000;39750;38500;31000;116000;130000;108000;86000;70000;70000;66000;66000;66000;66000;66000;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;45900;57000;77000;84000;91000;101000;115000;163000;170000;200000;200000;200000;200000;200000;200000;200000
-7;'024;Angola;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;88800;94100;94100;103800;103400;107400;108900;171000;180200;151800;133100;148100;219400;126300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2075;2556;2556;2878;2840;3236;3418;5837;6928;5898;5071;5305;8534;8532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;50000;90000;120000;115000;100000;120000;125000;160000;170000;170000;170000;140000;140000;140000;140000;140000;140000;140000;140000;140000;16000;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;50000;90000;120000;115000;100000;120000;125000;160000;170000;170000;170000;140000;140000;140000;140000;140000;140000;140000;140000;140000;16000;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1871;Other industrial roundwood;5516;Production;m3;411000;417000;423000;429000;436000;442000;449000;456000;463000;470000;478000;485000;494000;504000;515000;528000;543000;558000;574000;590000;606000;623000;639000;656000;673000;692000;712000;732000;754000;777000;803000;831000;861000;892000;923000;954000;986000;1018000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000
-7;'024;Angola;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;411000;417000;423000;429000;436000;442000;449000;456000;463000;470000;478000;485000;494000;504000;515000;528000;543000;558000;574000;590000;606000;623000;639000;656000;673000;692000;712000;732000;754000;777000;803000;831000;861000;892000;923000;954000;986000;1018000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000;1050000
-7;'024;Angola;1630;Wood charcoal;5510;Production;t;36487;38334;40276;42316;44459;46711;49077;51562;54174;56918;58312;59736;60232;63596;76012;82129;85032;87259;90518;93286;96146;99052;102006;105151;108477;112421;114791;118124;123768;130139;136369;142705;164834;169477;171891;174747;180574;188117;196434;205061;212770;220768;229067;237678;246612;255347;264400;273757;283454;293494;303601;314056;324871;336058;347630;358427;369560;381038;392873;405075;417563;430436;443705
-7;'024;Angola;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;30;30;30;0;2;4;21;21;21;21;1;1;1;14;91;71;87;56;101;33;75;100;15;69;107;17;23;118;61;66;195
-7;'024;Angola;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;7;7;0;2;4;13;13;13;13;5;5;5;15;54;44;44;50;73;47;52;113;56;70;64;51;34;96;82;82;468
-7;'024;Angola;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;19;19;19;19;161;161;182;656;105;0;1387
-7;'024;Angola;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;9;9;9;9;42;42;59;153;19;3;546
-7;'024;Angola;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;92;157;157;157;157;2247;2247;76;12;30;120;95;45;61;129;58;113;39;39;56;3;26;30;27;6
-7;'024;Angola;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;9;9;9;89;89;6;9;24;82;113;38;81;274;74;213;55;11;20;2;19;20;32;5
-7;'024;Angola;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;41;47;0;0;0;0;10;75;75;75;75;75;75;75;3;21;1;13;13;13;12;3;3;3;17;17;2;0;4;27;6
-7;'024;Angola;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;0;0;0;0;0;4;4;4;4;4;4;4;0;15;1;9;9;9;186;11;11;11;5;5;1;0;1;32;4
-7;'024;Angola;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;82;82;82;82;82;82;2172;2172;1;9;9;119;82;32;48;117;55;110;36;22;39;1;26;26;0;0
-7;'024;Angola;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;5;5;5;85;85;2;9;9;81;104;29;72;88;63;202;44;6;15;1;19;19;0;1
-7;'024;Angola;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;23
-7;'024;Angola;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;26
-7;'024;Angola;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-7;'024;Angola;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-7;'024;Angola;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0
-7;'024;Angola;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1
-7;'024;Angola;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;23
-7;'024;Angola;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;25
-7;'024;Angola;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-7;'024;Angola;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-7;'024;Angola;1872;Sawnwood;5516;Production;m3;70000;75000;80000;90000;95000;100000;112000;207000;301000;284000;382000;219000;238000;210000;160000;100000;60000;40000;20000;10000;10000;8000;6000;2000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;25000;25400;20400;50400;60300;46000;46000;46000
-7;'024;Angola;1872;Sawnwood;5616;Import quantity;m3;1000;1000;1000;1000;800;1000;600;1700;150;150;1100;400;100;100;100;100;100;100;100;100;100;100;100;100;1220;867;2885;522;960;628;5000;3187;1053;946;1006;3000;6203;2898;7954;1005;1005;67;7018;3337;3337;1493;5411;7871;13531;13626;4523;6546;7007;4843;2350;1523;1581;668;488;321;343;502;2944
-7;'024;Angola;1872;Sawnwood;5622;Import value;1000 USD;58;58;58;58;47;50;28;109;8;8;54;21;8;8;8;8;8;8;8;8;8;8;8;8;181;244;1249;130;331;432;1253;1207;277;260;280;541;838;817;672;50;50;27;285;762;762;569;2043;2705;5590;2722;2278;4014;4868;3392;1213;712;369;219;125;261;309;424;221
-7;'024;Angola;1872;Sawnwood;5916;Export quantity;m3;13700;20200;20200;19500;21400;34400;20400;15100;13000;16900;22500;26300;36600;36600;;;;;;;;;;;0;212;114;0;0;0;0;0;0;114;114;100;175;277;1092;62;62;62;62;70;70;485;68;313;125;19;60;3647;1501;2435;5988;21685;20129;14591;35372;54946;36616;37036;64231
-7;'024;Angola;1872;Sawnwood;5922;Export value;1000 USD;507;483;483;445;619;1034;780;753;867;1020;940;1266;1953;1953;;;;;;;;;;;0;64;28;0;0;0;0;0;0;50;50;33;48;129;26;20;20;20;20;20;20;163;114;394;100;8;117;1094;1091;2113;3418;9599;11004;7878;19863;13171;20977;21105;36531
-7;'024;Angola;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;300;1000;1000;1000
-7;'024;Angola;1632;Sawnwood, coniferous;5616;Import quantity;m3;1000;1000;1000;1000;800;1000;600;1700;150;150;1100;400;100;100;100;100;100;100;100;100;100;100;100;100;1220;867;2885;522;960;628;5000;2866;886;506;506;2000;5281;2407;2839;985;985;63;3686;1955;1955;1385;3757;6188;10996;4913;2501;2570;1685;1128;341;330;212;295;310;300;105;234;2944
-7;'024;Angola;1632;Sawnwood, coniferous;5622;Import value;1000 USD;58;58;58;58;47;50;28;109;8;8;54;21;8;8;8;8;8;8;8;8;8;8;8;8;181;244;1249;130;331;432;1253;1070;221;130;130;272;511;561;396;45;45;24;106;340;340;329;806;1204;3331;1296;700;793;474;555;224;208;22;78;66;65;82;130;221
-7;'024;Angola;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;0;212;114;0;0;0;0;0;0;0;0;0;95;46;46;46;46;46;46;46;46;46;46;107;107;0;0;107;53;80;324;0;500;363;388;54;116;36;231
-7;'024;Angola;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;0;64;28;0;0;0;0;0;0;0;0;0;27;13;13;13;13;13;13;13;13;13;13;62;62;0;1;6;71;91;59;0;67;29;169;23;313;15;51
-7;'024;Angola;1633;Sawnwood, non-coniferous;5516;Production;m3;70000;75000;80000;90000;95000;100000;112000;207000;301000;284000;382000;219000;238000;210000;160000;100000;60000;40000;20000;10000;10000;8000;6000;2000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;25000;25000;20000;50000;60000;45000;45000;45000
-7;'024;Angola;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321;167;440;500;1000;922;491;5115;20;20;4;3332;1382;1382;108;1654;1683;2535;8713;2022;3976;5322;3715;2009;1193;1369;373;178;21;238;268;0
-7;'024;Angola;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;56;130;150;269;327;256;276;5;5;3;179;422;422;240;1237;1501;2259;1426;1578;3221;4394;2837;989;504;347;141;59;196;227;294;0
-7;'024;Angola;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;13700;20200;20200;19500;21400;34400;20400;15100;13000;16900;22500;26300;36600;36600;;;;;;;;;;;;;;;;;;;;114;114;100;80;231;1046;16;16;16;16;24;24;439;22;206;18;19;60;3540;1448;2355;5664;21685;19629;14228;34984;54892;36500;37000;64000
-7;'024;Angola;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;507;483;483;445;619;1034;780;753;867;1020;940;1266;1953;1953;;;;;;;;;;;;;;;;;;;;50;50;33;21;116;13;7;7;7;7;7;7;150;101;332;38;8;116;1088;1020;2022;3359;9599;10937;7849;19694;13148;20664;21090;36480
-7;'024;Angola;1634;Veneer sheets;5516;Production;m3;;;;;500;600;1000;600;700;300;1300;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2000;1500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000
-7;'024;Angola;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;0;0;0;0;26;102;213;32;32;32;104;375;375;524;1128;263;371;1760;1438;1191;1072;1137;524;219;322;295;41;156;193;37;15
-7;'024;Angola;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376;0;0;0;0;25;53;138;16;16;16;376;292;292;259;948;398;591;989;949;1206;1068;1464;500;196;402;574;125;228;363;314;26
-7;'024;Angola;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;110;181;181;0;462;259;155;122;122;67;97;280;280;46;77;77;77;0;0;0;0;0;65;759;2435;27;0;0;10;0;2
-7;'024;Angola;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;94;143;143;0;454;270;130;118;118;120;171;221;221;187;188;188;188;0;0;0;0;0;129;120;315;12;8;0;5;2;2
-7;'024;Angola;1873;Wood-based panels;5516;Production;m3;;;;;2900;3200;3200;3800;6200;6500;5700;17900;27000;27000;27000;27000;10000;5000;3000;26000;25000;30000;41000;45000;50000;40000;20000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-7;'024;Angola;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;326;1335;2290;1727;691;1000;1700;9068;927;1228;1200;1800;1036;2447;9657;1289;4045;708;3834;4920;4920;3928;6678;27552;21134;60805;76902;84185;93233;74201;23038;7041;12826;15303;16061;8777;20698.3;29133;30572
-7;'024;Angola;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;167;614;1058;746;342;647;1156;3826;503;1350;1338;1017;678;872;609;421;582;268;1358;1377;1377;2710;11368;26511;23211;20691;38263;38976;40776;52993;16554;5485;8752;10106;9494;6156;11048.68;17031;15235
-7;'024;Angola;1873;Wood-based panels;5916;Export quantity;m3;;;;;500;700;1100;1400;1400;1700;1000;700;500;500;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;90;92;92;92;92;92;92;97;97;31;49;49;24;24;49;34;25;24;38;600;34;21;0;0;284
-7;'024;Angola;1873;Wood-based panels;5922;Export value;1000 USD;;;;;125;136;248;184;173;247;234;194;154;154;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;17;18;18;18;18;18;18;21;21;28;48;25;24;24;25;50;25;24;18;497;4;48;112;157;63
-7;'024;Angola;1640;Plywood and LVL;5516;Production;m3;;;;;2900;3200;3200;3800;6200;6500;5700;17900;27000;27000;27000;27000;10000;5000;3000;26000;25000;30000;41000;45000;50000;40000;20000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-7;'024;Angola;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;326;1335;2290;1727;691;1000;1700;1400;600;100;100;300;624;1176;1125;644;644;26;1254;2609;2609;3248;3942;23949;16470;57015;62780;77460;85145;62813;14838;4098;7215;8676;9900;4095;10292;11816;0
-7;'024;Angola;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;167;614;1058;746;342;647;1156;991;376;30;30;301;449;573;357;268;268;32;702;926;926;2321;8543;22565;18256;15899;24955;30047;31076;40897;9480;1991;3289;4159;4774;2051;3821;6701;0
-7;'024;Angola;1640;Plywood and LVL;5916;Export quantity;m3;;;;;500;700;1100;1400;1400;1700;1000;700;500;500;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;2;2;2;7;7;7;25;25;0;0;25;10;1;0;38;600;26;21;0;0;0
-7;'024;Angola;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;125;136;248;184;173;247;234;194;154;154;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;4;4;4;24;1;0;0;1;26;1;0;18;497;3;47;112;157;0
-7;'024;Angola;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;51;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1100;209;311;1900;18;2782;2;47;1134;1134;229;410;663;707;917;4540;1465;1438;1432;2253;171;1212;1212;2065;1235;1044.63;2520;4450
-7;'024;Angola;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;220;93;157;67;3;109;1;47;172;172;242;584;904;787;1359;3669;1587;1354;1534;1197;554;1178;1178;1391;794;1720.09;2040;1832
-7;'024;Angola;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;90;90;90;90;90;90;24;24;24;24;24;24;24;24;24;0;0;8;0;0;0;0
-7;'024;Angola;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;24;24;24;24;24;24;24;24;24;0;0;1;1;0;0;0
-7;'024;Angola;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;4;87;87;87;14;193;134;441;119;112;139;314;554;255;70;110;25;71;100;615.02;721;1922
-7;'024;Angola;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;32;28;28;28;13;96;64;380;219;118;182;182;416;191;68;52;24;49;108;141;153;270
-7;'024;Angola;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668;127;1128;1100;400;203;960;6632;609;601;676;2446;1090;1090;437;2133;2806;3516;2754;9470;5121;6336;9402;5692;2702;4289;5390;4025;3347;8746.65;14076;24200
-7;'024;Angola;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590;76;1320;1308;496;136;142;185;147;202;203;581;251;251;134;2145;2978;3788;3214;9521;7160;8164;10146;5686;2872;4233;4745;3280;3203;5366.59;8137;13133
-7;'024;Angola;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284
-7;'024;Angola;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63
-7;'024;Angola;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;51;5595;360;400;426;410;333;333;182;138;350;345;161;4402;735;549;1463;84;130;211;96;54;1;884.81;621;1358
-7;'024;Angola;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;33;129;111;191;178;178;154;154;70;78;229;453;175;3534;765;570;1950;140;174;202;176;31;21;929.93;390;1012
-7;'024;Angola;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;7;1;1;1;598;17;17;246;1211;1080;1573;1780;4124;3620;5076;6826;4500;2182;2976;3505;3442;3262;7186.99;11136;19472
-7;'024;Angola;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;66;3;3;43;1301;1021;1653;2179;4542;5194;6605;7721;5039;2510;3038;3188;2800;3084;4188.66;7560;10887
-7;'024;Angola;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-7;'024;Angola;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-7;'024;Angola;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;100;1100;1100;400;100;890;1030;248;200;249;1438;740;740;9;784;1376;1598;813;944;766;711;1113;1108;390;1102;1789;529;84;674.84;2319;3370
-7;'024;Angola;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2506;56;1308;1308;496;36;100;56;36;11;25;337;94;94;21;766;1728;1682;860;1445;1201;989;475;507;188;993;1381;449;98;248;187;1234
-7;'024;Angola;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276
-7;'024;Angola;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50
-7;'024;Angola;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;27;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;20;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1879;Total fibre furnish;5510;Production;t;;14600;21000;25500;24900;27000;26000;30000;36400;38500;34900;37100;43000;37000;37000;37000;37000;37000;37000;37000;37000;37000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;30;521;21;32;319;55;69;635;635;340;1203;736;2973;1513;3638;4240;8070;8983;805;3328;9353;12910;11389;18630;17821.81;13450;25111
-7;'024;Angola;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;19;7;18;65;24;56;84;84;264;1188;645;2253;867;2238;2959;6228;6239;5261;2173;5427;9839;12166;15967;22320.03;18513;23434
-7;'024;Angola;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;;0;0;0;255;255;433;433;433;433;433;443;443;443;443;971;971;971;971;971;971;716;716;838;1089;1089;706;1179;2521;1407;1407
-7;'024;Angola;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;;0;0;0;128;128;211;211;211;211;211;212;212;212;212;756;756;756;756;756;756;628;628;647;712;712;628;651;674;806;806
-7;'024;Angola;1878;Pulp for paper;5510;Production;t;;14600;21000;25500;24900;27000;26000;30000;36400;38500;34900;37100;43000;37000;37000;37000;37000;37000;37000;37000;37000;37000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;8;8;19;19;19;25;39;39;339;1192;725;2883;1423;3548;4201;8068;8964;799;3322;8113;11670;11385;18600;17742.81;12246;23104
-7;'024;Angola;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23;7;7;18;18;18;15;18;18;264;1124;581;2239;853;2224;2939;6222;6224;5256;2168;5200;9612;12163;15955;22300.03;18096;22890
-7;'024;Angola;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;;0;0;0;255;255;433;433;433;433;433;433;433;433;433;961;961;961;961;961;961;706;706;706;706;706;706;706;706;706;706
-7;'024;Angola;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;;0;0;0;128;128;211;211;211;211;211;211;211;211;211;755;755;755;755;755;755;627;627;627;627;627;627;627;627;627;627
-7;'024;Angola;1875;Wood pulp;5510;Production;t;;14600;21000;24500;23900;26000;25000;29000;35100;36600;33200;35400;41000;35000;35000;35000;35000;35000;35000;35000;35000;35000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;1;1;12;12;12;18;37;37;337;1190;723;2881;1408;3491;3841;8068;8964;798;3306;8097;11631;11388;18602;17742.81;12250;23069
-7;'024;Angola;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23;3;3;14;14;14;11;16;16;164;1024;481;2139;832;2190;2872;6219;6221;5237;2097;5129;9551;12163;15949;22303.03;18094;22870
-7;'024;Angola;1875;Wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;;0;0;0;255;255;433;433;433;433;433;433;433;433;433;961;961;961;961;961;961;706;706;706;706;706;706;706;706;706;706
-7;'024;Angola;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;;0;0;0;128;128;211;211;211;211;211;211;211;211;211;755;755;755;755;755;755;627;627;627;627;627;627;627;627;627;627
-7;'024;Angola;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;368;1;1;0;1;1
-7;'024;Angola;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;459;10;10;1;1;1
-7;'024;Angola;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;25;4;0;0;;;;;;;
-7;'024;Angola;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;39;12;3;0;;;;;;;
-7;'024;Angola;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;4;4;4;4;4;4;4;4;4;44;46;0;;;;;;;
-7;'024;Angola;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;2;2;2;2;2;2;2;2;67;49;0;;;;;;;
-7;'024;Angola;1656;Chemical wood pulp;5510;Production;t;;14600;21000;24500;23900;26000;25000;29000;35100;36600;33200;35400;41000;35000;35000;35000;35000;35000;35000;35000;35000;35000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;1;1;12;12;12;11;33;33;333;1186;719;2877;1404;3485;3835;8038;8915;751;3305;8073;11262;11384;18598;17742.81;12245;23029
-7;'024;Angola;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23;3;3;14;14;14;6;14;14;162;1022;479;2137;830;2178;2860;6178;6142;5185;2097;5102;9092;12153;15939;22299.03;18093;22835
-7;'024;Angola;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;;0;0;0;255;255;433;433;433;433;433;433;433;433;433;961;961;961;961;961;961;706;706;706;706;706;706;706;706;706;706
-7;'024;Angola;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;;0;0;0;128;128;211;211;211;211;211;211;211;211;211;755;755;755;755;755;755;627;627;627;627;627;627;627;627;627;627
-7;'024;Angola;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;4000;3600;1600;1200;1200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;50;50;50;511;402
-7;'024;Angola;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;46;46;46;420;255
-7;'024;Angola;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;14600;21000;24500;23900;26000;25000;25000;31500;35000;32000;34200;39000;33000;33000;33000;33000;33000;33000;33000;33000;33000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;30;1;1;12;12;12;11;33;33;295;1148;681;2839;1380;3461;3811;8012;8887;546;3303;8071;11260;11334;18548;17692.81;11734;22627
-7;'024;Angola;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;23;3;3;14;14;14;6;14;14;143;1003;460;2118;803;2151;2833;6144;6117;5011;2090;5095;9085;12107;15893;22253.03;17673;22580
-7;'024;Angola;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;178;178;178;178;178;178;178;178;178;706;706;706;706;706;706;706;706;706;706;706;706;706;706;706;706
-7;'024;Angola;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;83;83;83;83;83;83;83;83;83;627;627;627;627;627;627;627;627;627;627;627;627;627;627;627;627
-7;'024;Angola;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;38;38;24;24;24;24;26;203;0;;;;;;;
-7;'024;Angola;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;19;19;19;19;27;27;27;27;18;167;0;;;;;;;
-7;'024;Angola;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;255;255;255;255;255;255;255;255;255;255;255;255;255;255;255;255;0;0;0;;;;;;;
-7;'024;Angola;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;0;0;0;;;;;;;
-7;'024;Angola;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;3;0;4;39
-7;'024;Angola;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;0;34
-7;'024;Angola;1668;Pulp from fibres other than wood;5510;Production;t;;;;1000;1000;1000;1000;1000;1300;1900;1700;1700;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-7;'024;Angola;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;7;7;7;7;7;2;2;2;2;2;2;15;57;360;1;1;2;17;17;40;0;1;0;0;74
-7;'024;Angola;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;4;4;4;4;2;2;100;100;100;100;21;34;67;3;3;19;71;71;61;0;6;0;2;54
-7;'024;Angola;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-7;'024;Angola;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-7;'024;Angola;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;8;16;34;33;33;33;33;33;4;0;1;204;450
-7;'024;Angola;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;51;115;210;217;217;217;217;217;17;0;13;24;382
-7;'024;Angola;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;513;13;13;300;36;44;596;596;1;11;11;90;90;90;39;2;19;6;6;1240;1240;4;30;79;1204;2007
-7;'024;Angola;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;0;0;47;6;41;66;66;0;64;64;14;14;14;20;6;15;5;5;227;227;3;12;20;417;544
-7;'024;Angola;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;132;383;383;0;473;1815;701;701
-7;'024;Angola;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;20;85;85;1;24;47;179;179
-7;'024;Angola;1876;Paper and paperboard;5510;Production;t;1300;3000;2400;3400;2700;3800;4800;4800;5800;8900;10200;10900;14600;13000;13000;13000;13000;13000;13000;13000;13000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1876;Paper and paperboard;5610;Import quantity;t;1700;2100;1600;1600;3300;3000;3500;3500;2500;5900;2600;2500;2890;3900;3900;3900;3900;3800;4800;4300;3800;3800;3800;3300;7100;7100;36800;22100;7100;7100;6800;10100;4500;4800;4827;1300;4023;2481;4943;2076;2342;2309;7491;18625;18625;11522;18929;25370;23167;21277;32348;32937;45255;40926;36561;36156;37710;46592;57848;42582;67118.5;97617;64376
-7;'024;Angola;1876;Paper and paperboard;5622;Import value;1000 USD;638;780;605;623;1031;916;1096;1099;937;1939;1327;1275;1868;2183;2183;2183;2183;2293;2840;2590;2317;2357;2357;2098;4648;4648;22430;16109;6876;6878;7265;9445;3336;3638;3638;1574;4360;2964;3649;1727;2081;1385;5910;13803;13803;9384;22322;29183;25005;30147;47564;40305;60837;65698;54817;38625;38923;51743;90544;56189;93556.64;130760;79156
-7;'024;Angola;1876;Paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;900;1000;1800;1800;;;;;;;;;;;;;0;;;;;;;0;0;0;1033;219;84;82;82;82;82;82;82;82;82;3830;2868;3453;2904;4262;3183;3152;1109;981;264;264;731;115;20;48;31
-7;'024;Angola;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;253;352;479;479;;;;;;;;;;;;;;;;;;;;0;0;0;521;165;61;44;44;44;44;44;44;44;44;3142;5281;4563;3841;4589;2983;3616;1627;857;250;250;83;156;108;113;49
-7;'024;Angola;2042;Graphic papers;5510;Production;t;;;;;;;900;900;1400;1500;2200;2600;3500;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;2042;Graphic papers;5610;Import quantity;t;300;;;;1400;1100;1200;1200;200;100;100;100;90;1100;1100;1100;1100;1000;2000;1500;1000;1000;1000;500;500;500;200;600;100;100;100;3400;2500;1700;1727;700;1623;937;2996;791;619;139;2681;7295;7295;5267;11248;12403;12843;13966;22286;22755;28298;25820;18695;17278;19629;22419;22956;8659;20511.75;36139;20152
-7;'024;Angola;2042;Graphic papers;5622;Import value;1000 USD;54;;;;285;209;217;220;58;40;44;42;28;343;343;343;343;453;1000;750;477;517;517;258;256;256;110;200;60;62;65;2245;1995;1611;1611;1189;2443;1565;1877;618;490;155;2055;5471;5471;4081;10887;13321;14018;16669;33264;29190;38063;36667;23681;17670;20162;27871;32334;13070;32191.76;47284;28746
-7;'024;Angola;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;0;;;;;;;0;0;0;33;152;6;4;4;4;4;4;4;4;4;2519;2461;2175;1626;4026;2947;2776;733;744;27;27;285;105;17;38;22
-7;'024;Angola;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;0;0;0;34;134;20;3;3;3;3;3;3;3;3;2374;4390;2252;1530;4260;2654;2621;632;631;24;24;51;103;19;104;37
-7;'024;Angola;1671;Newsprint;5610;Import quantity;t;300;;;;1400;1100;1200;1200;200;100;100;100;90;1100;1100;1100;1100;1000;2000;1500;1000;1000;1000;500;500;500;200;600;100;100;100;1300;400;400;400;400;70;28;2180;3;3;3;148;1011;1011;682;4684;56;2169;1539;1963;2691;3986;5000;1500;1289;1277;1301;1270;607;797;1149;0
-7;'024;Angola;1671;Newsprint;5622;Import value;1000 USD;54;;;;285;209;217;220;58;40;44;42;28;343;343;343;343;453;1000;750;477;517;517;258;256;256;110;200;60;62;65;505;346;346;346;346;66;38;724;8;8;8;64;515;515;374;2673;108;1707;2854;4396;6856;7781;10486;2730;686;567;1573;1443;642;723;1761;0
-7;'024;Angola;1671;Newsprint;5910;Export quantity;t;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;57;0;0;0;0;0;0;0;0;0;0;4;2;1;1
-7;'024;Angola;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;2;2;3;2;2
-7;'024;Angola;1674;Printing and writing papers;5510;Production;t;;;;;;;900;900;1400;1500;2200;2600;3500;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;1300;1327;300;1553;909;816;788;616;136;2533;6284;6284;4585;6564;12347;10674;12427;20323;20064;24312;20820;17195;15989;18352;21118;21686;8052;19714.75;34990;20152
-7;'024;Angola;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1740;1649;1265;1265;843;2377;1527;1153;610;482;147;1991;4956;4956;3707;8214;13213;12311;13815;28868;22334;30282;26181;20951;16984;19595;26298;30891;12428;31468.76;45523;28746
-7;'024;Angola;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;33;152;6;4;4;4;4;4;4;4;4;2519;2404;2175;1626;4026;2947;2776;733;744;27;27;285;101;15;37;21
-7;'024;Angola;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;34;134;20;3;3;3;3;3;3;3;3;2374;4347;2252;1530;4260;2654;2621;632;631;24;24;49;101;16;102;35
-7;'024;Angola;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;308;16;16;12;452;1000;1000;778;1498;720;1567;518;501;940;1711;1027;7539;796;899;2435;2541;1471;4033.93;8082;1365
-7;'024;Angola;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;486;36;36;16;354;788;788;450;1627;1196;2108;960;1222;1757;4678;3009;6770;1656;1636;5612;5430;2935;9617.98;12530;2800
-7;'024;Angola;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720;720;720;720;720;720;720;720;720;3;3;272;23;1;3;0
-7;'024;Angola;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610;610;610;610;610;610;610;610;610;3;3;26;24;1;1;0
-7;'024;Angola;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;210;541;300;78;1871;3717;3717;2926;3016;8981;6722;10686;18047;15517;19490;15369;7413;12541;13266;16185;14403;4688;14809.61;24517;16132
-7;'024;Angola;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;232;344;236;73;1424;2932;2932;2399;3383;7869;6928;10895;25170;16264;21093;17079;10642;11840;13668;16833;18825;6664;20182.13;30027;20247
-7;'024;Angola;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;886;886;886;2046;2046;2046;3;3;3;3;11;61;1;21;21
-7;'024;Angola;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885;885;885;885;1993;1993;1993;4;4;4;4;19;69;1;35;35
-7;'024;Angola;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;298;231;300;46;210;1567;1567;881;2050;2646;2385;1223;1775;3607;3111;4424;2243;2652;4187;2498;4742;1893;871.21;2391;2655
-7;'024;Angola;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;435;230;210;58;213;1236;1236;858;3204;4148;3275;1960;2476;4313;4511;6093;3539;3488;4291;3853;6636;2829;1668.65;2966;5699
-7;'024;Angola;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;6;4;4;4;4;4;4;4;4;913;798;569;20;1260;181;10;10;21;21;21;2;17;13;13;0
-7;'024;Angola;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;20;3;3;3;3;3;3;3;3;879;2852;757;35;1657;51;18;18;17;17;17;4;8;14;66;0
-7;'024;Angola;1675;Other paper and paperboard;5510;Production;t;1300;3000;2400;3400;2700;3800;3900;3900;4400;7400;8000;8300;11100;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1675;Other paper and paperboard;5610;Import quantity;t;1400;2100;1600;1600;1900;1900;2300;2300;2300;5800;2500;2400;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;6600;6600;36600;21500;7000;7000;6700;6700;2000;3100;3100;600;2400;1544;1947;1285;1723;2170;4810;11330;11330;6255;7681;12967;10324;7311;10062;10182;16957;15106;17866;18878;18081;24173;34892;33923;46606.75;61478;44224
-7;'024;Angola;1675;Other paper and paperboard;5622;Import value;1000 USD;584;780;605;623;746;707;879;879;879;1899;1283;1233;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;4392;4392;22320;15909;6816;6816;7200;7200;1341;2027;2027;385;1917;1399;1772;1109;1591;1230;3855;8332;8332;5303;11435;15862;10987;13478;14300;11115;22774;29031;31136;20955;18761;23872;58210;43119;61364.88;83476;50410
-7;'024;Angola;1675;Other paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;900;1000;1800;1800;;;;;;;;;;;;;;;;;;;;0;0;0;1000;67;78;78;78;78;78;78;78;78;78;1311;407;1278;1278;236;236;376;376;237;237;237;446;10;3;10;9
-7;'024;Angola;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;253;352;479;479;;;;;;;;;;;;;;;;;;;;0;0;0;487;31;41;41;41;41;41;41;41;41;41;768;891;2311;2311;329;329;995;995;226;226;226;32;53;89;9;12
-7;'024;Angola;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;16;400;290;1045;1391;1391;1864;2661;4333;2000;2176;1590;1276;4987;3725;10156;7031;6838;6159;13864;8638;9787.66;11342;6360
-7;'024;Angola;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;8;422;228;1022;1529;1529;1903;3471;6217;2756;3782;2431;2014;7390;5774;21505;7261;7758;7775;28326;12848;14839.82;21627;9568
-7;'024;Angola;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;11;5;2;1;1
-7;'024;Angola;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;25;50;2;5;5
-7;'024;Angola;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1461;1115;1123;1856;3456;8000;8000;3965;3655;6895;6834;3023;5339;7333;9922;6566;7339;8141;10946;17111;20174;24786;36423.08;49677;37550
-7;'024;Angola;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;927;958;960;1978;4960;4960;2557;5015;6553;5143;5632;6543;6183;8683;8329;8651;6346;10358;14712;28078;28920;45104.66;60182;39290
-7;'024;Angola;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;1108;393;1263;1263;221;221;221;221;221;221;221;435;1;1;9;7
-7;'024;Angola;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;619;814;2185;2185;203;203;203;203;203;203;203;7;1;87;4;3
-7;'024;Angola;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;92;100;15;309;844;844;596;1932;2717;3571;1235;809;2610;3798;3353;2594;4042;5998;13818;10115;11594;19659.36;29764;26941
-7;'024;Angola;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;45;76;10;133;523;523;331;1022;1382;1767;793;591;2155;2594;2433;2862;1732;3198;8912;8873;7458;20602.35;28519;15902
-7;'024;Angola;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083;347;548;548;99;99;99;99;99;99;99;0;1;1;7;7
-7;'024;Angola;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582;764;1159;1159;67;67;67;67;67;67;67;0;1;87;3;3
-7;'024;Angola;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;33;33;8;100;2173;2173;301;932;1432;1174;919;515;3072;1256;1234;2475;1248;2284;1444;6538;12190;14282.33;13063;6359
-7;'024;Angola;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;33;33;8;243;1347;1347;494;2759;1672;1468;2532;1541;2213;1846;2639;2471;1882;4076;3380;14935;20361;21039.41;24030;15037
-7;'024;Angola;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1101;969;969;1812;3026;4973;4973;3066;736;2687;2061;849;3987;1524;4852;1921;1833;2818;1506;1040;3400;897;2400.39;6325;1981
-7;'024;Angola;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;831;831;924;1585;3084;3084;1728;1089;3161;1878;2227;4238;1217;4189;2938;1515;2697;1969;1562;4059;956;3385.9;7055;4295
-7;'024;Angola;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;25;46;715;715;122;122;122;122;122;122;122;435;0;0;2;0
-7;'024;Angola;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;37;50;1026;1026;136;136;136;136;136;136;136;7;0;0;1;0
-7;'024;Angola;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;10;10;2;55;59;28;20;28;127;16;58;437;33;1158;809;121;105;81;525;2269
-7;'024;Angola;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;17;6;6;4;145;338;30;80;173;598;54;319;1803;35;1115;858;211;145;77;578;4056
-7;'024;Angola;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1400;2100;1600;1600;1900;1900;2300;2300;2300;5800;2500;2400;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;6600;6600;36600;21500;7000;7000;6700;6700;2000;3100;3100;600;2400;1544;310;154;200;24;309;1939;1939;426;1365;1739;1490;2112;3133;1573;2048;4815;371;3706;297;903;854;499;396;459;314
-7;'024;Angola;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;584;780;605;623;746;707;879;879;879;1899;1283;1233;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;1840;4392;4392;22320;15909;6816;6816;7200;7200;1341;2027;2027;385;1917;1399;598;174;211;42;855;1843;1843;843;2949;3092;3088;4064;5326;2918;6701;14928;980;7348;645;1385;1806;1351;1420.4;1667;1552
-7;'024;Angola;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;67;67;67;67;67;67;67;67;67;67;203;14;15;15;15;15;155;155;10;10;10;0;4;0;0;1
-7;'024;Angola;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;31;31;31;31;31;31;31;31;31;31;149;77;126;126;126;126;792;792;10;10;10;0;2;0;0;4
-7;'024;Angola;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84315;83026;75454;47371;45071;75597;59454
-7;'024;Angola;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;712;6710;11917;15952;49841;50361;50028
-7;'024;Angola;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;134;265;133;51;71;510
-7;'024;Angola;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;95;95;95;1;1;10
-7;'024;Angola;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;24;17;1;0;0;223
-7;'024;Angola;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-7;'024;Angola;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;110;248;132;51;71;287
-7;'024;Angola;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;94;94;94;0;0;9
-7;'024;Angola;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2238;1547;1509;1611;2176;2065;2293
-7;'024;Angola;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;4;42;36;7;16;27
-7;'024;Angola;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201;961;983;706;552;950;1753
-7;'024;Angola;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;24;30;48;13;8
-7;'024;Angola;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5844;7740;8261;4427;5959;4535;4535
-7;'024;Angola;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;23;374;705;306;190;11
-7;'024;Angola;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17
-7;'024;Angola;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19
-7;'024;Angola;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-7;'024;Angola;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-7;'024;Angola;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73368;70594;61460;36396;34048;65138;46126
-7;'024;Angola;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;341;251;279;260;329;160
-7;'024;Angola;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;1106;3157;941;1150;473
-7;'024;Angola;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-7;'024;Angola;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1155;1569;1870;941;1344;1688;3764
-7;'024;Angola;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;6233;11131;14807;49219;49812;49812
-7;'024;Angola;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106292;97670;64896;41113;52763;108980;136001
-7;'024;Angola;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3225;2024;3149;1726;1317;2205;84
-7;'024;Angola;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;898;4743;1430;559;441;1201;139
-7;'024;Angola;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-7;'024;Angola;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24882;19628;19493;12173;25170;27703;39447
-7;'024;Angola;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;24;2;6;2;3
-7;'024;Angola;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11993;6961;3477;1644;734;1171;8429
-7;'024;Angola;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2486;1621;2939;1570;1257;2170;2
-7;'024;Angola;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45335;38449;22291;14716;15048;22471;27812
-7;'024;Angola;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;116;11;110;12;16;26
-7;'024;Angola;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23184;27889;18205;12021;11370;56434;60174
-7;'024;Angola;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727;281;175;44;42;17;53
-258;'660;Anguilla;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4059;17326;9280;7916;11429;12079;11549
-258;'660;Anguilla;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;623;298;758;567;74;391
-258;'660;Anguilla;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2199;2183;1636;1953;5308;5334;7565;8069;7593
-258;'660;Anguilla;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;4;4;23;14;313
-258;'660;Anguilla;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;465;1532;1467;6813;3308;4033;3603;854
-258;'660;Anguilla;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;138;503;234;502;505;435;687;445
-258;'660;Anguilla;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1027;6739;3148;4033;2428;834
-258;'660;Anguilla;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;464;426;435;347;432
-258;'660;Anguilla;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-258;'660;Anguilla;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-258;'660;Anguilla;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1532;440;74;160;0;1175;20
-258;'660;Anguilla;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;188;38;79;0;340;13
-258;'660;Anguilla;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-258;'660;Anguilla;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-258;'660;Anguilla;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;465;1532;1467;6813;3308;4033;3603;854
-258;'660;Anguilla;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;138;503;234;502;505;435;687;445
-258;'660;Anguilla;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;168;0;1027;6739;3148;4033;2428;834
-258;'660;Anguilla;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;20;0;46;464;426;435;347;432
-258;'660;Anguilla;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;168;0;1027;6739;3148;4033;2428;834
-258;'660;Anguilla;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;20;0;46;464;426;435;347;432
-258;'660;Anguilla;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;297;1532;440;74;160;0;1175;20
-258;'660;Anguilla;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;118;503;188;38;79;0;340;13
-258;'660;Anguilla;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;27;0;0;2
-258;'660;Anguilla;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;17;0;0;3
-258;'660;Anguilla;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;297;1532;440;59;133;0;1175;18
-258;'660;Anguilla;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;118;503;188;23;62;0;340;10
-258;'660;Anguilla;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;18
-258;'660;Anguilla;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;38
-258;'660;Anguilla;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98
-258;'660;Anguilla;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-258;'660;Anguilla;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98
-258;'660;Anguilla;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-258;'660;Anguilla;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9
-258;'660;Anguilla;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;22;22;22;22
-258;'660;Anguilla;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9
-258;'660;Anguilla;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;22;22;22;22
-258;'660;Anguilla;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9544;11293;1120;4371;9601;5597;6249;9225;7057
-258;'660;Anguilla;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;1563;427;616;916;1015;1447;1330;1356
-258;'660;Anguilla;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;12;0;0
-258;'660;Anguilla;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;8;0;0
-258;'660;Anguilla;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621;7156;0;2078;8191;5266;5733;9141;6744
-258;'660;Anguilla;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;716;0;171;781;729;1047;1225;963
-258;'660;Anguilla;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;0;0
-258;'660;Anguilla;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8;0;0
-258;'660;Anguilla;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;4137;1120;2293;1410;331;516;84;313
-258;'660;Anguilla;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;847;427;445;135;286;400;105;393
-258;'660;Anguilla;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0;0;0
-258;'660;Anguilla;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-258;'660;Anguilla;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;1;123;20;0;0;0
-258;'660;Anguilla;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;4;125;32;0;4;0
-258;'660;Anguilla;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1254;1026;1259;2029;5853;6695;8605;7826;4557
-258;'660;Anguilla;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;482;706;1099;3137;3388;5417;5651;5010
-258;'660;Anguilla;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;6
-258;'660;Anguilla;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;9
-258;'660;Anguilla;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-258;'660;Anguilla;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1254;1026;1259;2029;4595;6440;7974;7297;4308
-258;'660;Anguilla;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;482;706;1099;2624;3262;5106;5348;4927
-258;'660;Anguilla;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;6
-258;'660;Anguilla;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;9
-258;'660;Anguilla;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;28;43;216;152
-258;'660;Anguilla;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;10;17;118;43
-258;'660;Anguilla;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446;227;588;313;97
-258;'660;Anguilla;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;116;294;185;40
-258;'660;Anguilla;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446;227;588;313;97
-258;'660;Anguilla;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;116;294;185;40
-258;'660;Anguilla;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405;785;785;785;785
-258;'660;Anguilla;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;51;51;51;51
-258;'660;Anguilla;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272
-258;'660;Anguilla;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45
-258;'660;Anguilla;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405;785;785;785;785
-258;'660;Anguilla;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;51;51;51;51
-258;'660;Anguilla;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272
-258;'660;Anguilla;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45
-258;'660;Anguilla;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;84;60;122;383
-258;'660;Anguilla;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;321;193;311;667
-258;'660;Anguilla;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;457
-258;'660;Anguilla;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;14;14;259
-258;'660;Anguilla;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;18;20;60;33
-258;'660;Anguilla;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;25;24;93;65
-258;'660;Anguilla;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;12;12;12;12
-258;'660;Anguilla;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;11;11;11;11
-258;'660;Anguilla;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;8;48;21
-258;'660;Anguilla;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;14;13;82;54
-258;'660;Anguilla;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;15
-258;'660;Anguilla;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;20
-258;'660;Anguilla;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-258;'660;Anguilla;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;8;14;6
-258;'660;Anguilla;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;14;13;39;34
-258;'660;Anguilla;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;66;40;62;350
-258;'660;Anguilla;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;296;169;218;602
-258;'660;Anguilla;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;457
-258;'660;Anguilla;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;14;14;259
-258;'660;Anguilla;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;28;10;35;28
-258;'660;Anguilla;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;115;35;110;129
-258;'660;Anguilla;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;38;30;27;322
-258;'660;Anguilla;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;181;134;108;473
-258;'660;Anguilla;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454
-258;'660;Anguilla;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245
-258;'660;Anguilla;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8
-258;'660;Anguilla;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-258;'660;Anguilla;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454
-258;'660;Anguilla;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245
-258;'660;Anguilla;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;36;26;16;0
-258;'660;Anguilla;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;175;119;96;1
-258;'660;Anguilla;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;2;314
-258;'660;Anguilla;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;15;9;469
-258;'660;Anguilla;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-258;'660;Anguilla;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-258;'660;Anguilla;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;3
-258;'660;Anguilla;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;14;14;14
-258;'660;Anguilla;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1929;14765;2945;1243;3091;2790;2784
-258;'660;Anguilla;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;406;74;539;515;41;69
-258;'660;Anguilla;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;278;69;66;31;82;149
-258;'660;Anguilla;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;5;5;5
-258;'660;Anguilla;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;182;30;58;14;78;94
-258;'660;Anguilla;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1
-258;'660;Anguilla;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;96;39;8;17;4;55
-258;'660;Anguilla;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-258;'660;Anguilla;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;16;10;11;49;38;6
-258;'660;Anguilla;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2;2;23
-258;'660;Anguilla;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;223;135;63;33;26;1
-258;'660;Anguilla;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-258;'660;Anguilla;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;5387;602;235;170;458;201
-258;'660;Anguilla;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;34;34;34;34;34;0
-258;'660;Anguilla;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;8009;1508;320;2568;1853;1947
-258;'660;Anguilla;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;368;34;499;474;0;39
-258;'660;Anguilla;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;537;537;537;209;209;399
-258;'660;Anguilla;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;315;84;11;31;124;81
-258;'660;Anguilla;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;2
-258;'660;Anguilla;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;608;1027;1339;773;1220;1172
-258;'660;Anguilla;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;217;220;215;29;19;9
-258;'660;Anguilla;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;24;13
-258;'660;Anguilla;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;34;53;45;38;4;13
-258;'660;Anguilla;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-258;'660;Anguilla;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;46;74;169;178;249;251
-258;'660;Anguilla;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0
-258;'660;Anguilla;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;377;673;1014;458;765;814
-258;'660;Anguilla;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;214;214;214;28;13;9
-258;'660;Anguilla;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;151;227;108;96;178;81
-258;'660;Anguilla;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;6;1;1;6;0
-8;'028;Antigua and Barbuda;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27694;38269;39298;26648;35378;49179;46335
-8;'028;Antigua and Barbuda;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;640;258;177;139;501;431
-8;'028;Antigua and Barbuda;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7589;7631;2403;3720;3893;4607;4604;4604;4604;4268;4268;4268;4268;4268;4268;4268;4268;4268;4268;4268;6616;9882;8014;14739;8132;10675.68;11642;9821;7239;9589;13167;9015;12985;14538;12158
-8;'028;Antigua and Barbuda;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;43;157;157;157;157;33;33;33;33;33;33;33;33;33;33;33;33;337;1305;1070;30;18;75;94;92;485;48;30;34;185;86
-8;'028;Antigua and Barbuda;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;176;354;202;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;713;92;438;8.1;692;305;6565;4194;2062;1554;1075;1888;2926
-8;'028;Antigua and Barbuda;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;18;30;17;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;161;231;204;367;95;176;107;1836;1165;556;664;389;1147;1244
-8;'028;Antigua and Barbuda;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;34;0;0;0;0;3
-8;'028;Antigua and Barbuda;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;17;0;0;0;0;18
-8;'028;Antigua and Barbuda;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6205;3952;1157;915;644;704;1193
-8;'028;Antigua and Barbuda;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1818;1096;293;293;219;285;446
-8;'028;Antigua and Barbuda;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;242;905;639;431;1184;1733
-8;'028;Antigua and Barbuda;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;69;263;371;170;862;798
-8;'028;Antigua and Barbuda;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;34;0;0;0;0;3
-8;'028;Antigua and Barbuda;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;0;0;0;0;18
-8;'028;Antigua and Barbuda;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;21;0;0
-8;'028;Antigua and Barbuda;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;0;0
-8;'028;Antigua and Barbuda;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;21;0;0
-8;'028;Antigua and Barbuda;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;0;0
-8;'028;Antigua and Barbuda;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;176;354;202;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;713;92;438;8.1;692;305;6565;4194;2060;1554;1054;1888;2926
-8;'028;Antigua and Barbuda;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;18;30;17;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;161;231;204;367;95;176;107;1836;1165;554;662;385;1147;1244
-8;'028;Antigua and Barbuda;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;34;0;0;0;0;3
-8;'028;Antigua and Barbuda;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;17;0;0;0;0;18
-8;'028;Antigua and Barbuda;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;176;63;153;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;2;2;0.1;129;34;6205;3952;1157;915;644;704;1193
-8;'028;Antigua and Barbuda;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;18;4;12;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;155;9;156;30;34;19;14;1818;1096;293;293;219;285;446
-8;'028;Antigua and Barbuda;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;176;63;153;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;308;2;2;0.1;129;34;6205;3952;1157;915;644;704;1193
-8;'028;Antigua and Barbuda;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;18;4;12;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;155;9;156;30;34;19;14;1818;1096;293;293;219;285;446
-8;'028;Antigua and Barbuda;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;49;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;405;90;436;8;563;271;360;242;903;639;410;1184;1733
-8;'028;Antigua and Barbuda;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;222;48;337;61;157;93;18;69;261;369;166;862;798
-8;'028;Antigua and Barbuda;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;34;0;0;0;0;3
-8;'028;Antigua and Barbuda;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;17;0;0;0;0;18
-8;'028;Antigua and Barbuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;21;429;5;49;84;3;66;6;11;47;310;50
-8;'028;Antigua and Barbuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;42;328;16;14;39;2;45;3;7;10;179;32
-8;'028;Antigua and Barbuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;34;0;0;0;0;3
-8;'028;Antigua and Barbuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;17;0;0;0;0;18
-8;'028;Antigua and Barbuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;49;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;7;3;514;187;357;176;897;628;363;874;1683
-8;'028;Antigua and Barbuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;9;45;143;54;16;24;258;362;156;683;766
-8;'028;Antigua and Barbuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;4;5;5;7;6;4;8;7
-8;'028;Antigua and Barbuda;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;14;12;16;16;21;19;17;20;23
-8;'028;Antigua and Barbuda;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17
-8;'028;Antigua and Barbuda;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;18;90;116;28;88;148;148;105;65;120;101;139
-8;'028;Antigua and Barbuda;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;18;53;62;19;39;85;85;70;44;51;49;100
-8;'028;Antigua and Barbuda;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;73;77;17;77;126;126;83;43;98;78;116
-8;'028;Antigua and Barbuda;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;39;41;10;31;67;67;52;26;33;42;93
-8;'028;Antigua and Barbuda;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;0;17;39;11;11;22;22;22;22;22;23;23
-8;'028;Antigua and Barbuda;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;14;21;9;8;18;18;18;18;18;7;7
-8;'028;Antigua and Barbuda;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-8;'028;Antigua and Barbuda;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-8;'028;Antigua and Barbuda;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-8;'028;Antigua and Barbuda;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-8;'028;Antigua and Barbuda;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;10900;9500;12466;9664;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;10778;7355;20629;26161;40878;15394;23321;26576;21178;2572;7845;23428;12051;22189;22078;15638
-8;'028;Antigua and Barbuda;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7589;7589;1722;2094;2157;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;3044;5529;6887;5379;12033;5030;6956;7693;5934;1164;2458;7806;4526;7656;7756;5945
-8;'028;Antigua and Barbuda;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;1;0;1;3;3;59;19;99;400;0;0;0;111;0
-8;'028;Antigua and Barbuda;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;112;89;8;4;0;18;12;50;410;2;0;0;153;0
-8;'028;Antigua and Barbuda;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;3700;8900;11613;9459;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;10337;7010;19029;24901;40376;15211;22911;26009;19956;1582;4845;21826;11488;21857;20113;14764
-8;'028;Antigua and Barbuda;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2425;2425;1544;1952;2066;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;2906;4904;6260;5004;11578;4701;6444;7221;5135;609;1573;6691;4094;7376;6878;5496
-8;'028;Antigua and Barbuda;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40;0;0;0;0;0;45;0;29;3;0;0;0;1;0
-8;'028;Antigua and Barbuda;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;35;89;0;0;0;11;0;5;1;0;0;0;17;0
-8;'028;Antigua and Barbuda;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;600;853;205;441;441;441;441;441;441;441;441;441;441;441;441;441;441;441;345;1600;1260;502;183;410;567;1222;990;3000;1602;563;332;1965;874
-8;'028;Antigua and Barbuda;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5164;5164;178;142;91;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;625;627;375;455;329;512;472;799;555;885;1115;432;280;878;449
-8;'028;Antigua and Barbuda;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;3;3;14;19;70;397;0;0;0;110;0
-8;'028;Antigua and Barbuda;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;77;0;8;4;0;7;12;45;409;2;0;0;136;0
-8;'028;Antigua and Barbuda;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;12;1;1;4;116;12;2;16;16;411;78;75;170;22;440
-8;'028;Antigua and Barbuda;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;12;24;51;204;24;29;16;28;16;345;132;136;257;116;690
-8;'028;Antigua and Barbuda;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;1
-8;'028;Antigua and Barbuda;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30;0;0;3;0;0;0;0;0;0;1;33
-8;'028;Antigua and Barbuda;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;4047;3270;3691;3674;3674;3674;3674;3674;3674;3674;3674;3674;3674;3674;3674;3674;3674;364;4223;3770;4021;4172;5356.13;6211;6771;7916;9236;7876;6844;9130;9719;8638
-8;'028;Antigua and Barbuda;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663;1110;1200;1052;1049;1049;1049;1049;1049;1049;1049;1049;1049;1049;1049;1049;1049;1049;256;2054;1783;1947;2227;3125.68;3406;3417;3782;5180;4048;3242;4313;4986;3578
-8;'028;Antigua and Barbuda;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;0;2605;2021;0;0;87;98;77;7;0;0;0;0;0
-8;'028;Antigua and Barbuda;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;218;1209;1025;11;0;17;38;5;21;9;0;0;0;1
-8;'028;Antigua and Barbuda;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;4012;3177;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;3599;357;4220;3763;4015;4135;5343;6185;6756;7726;9046;7859;6408;9040;8981;8081
-8;'028;Antigua and Barbuda;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663;1099;1172;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;248;2052;1775;1943;2184;3115;3374;3401;3665;5063;4029;3183;4096;4770;3488
-8;'028;Antigua and Barbuda;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;0;2605;2021;0;0;87;98;77;7;0;0;0;0;0
-8;'028;Antigua and Barbuda;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;218;1209;1025;11;0;17;38;5;21;9;0;0;0;1
-8;'028;Antigua and Barbuda;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;75;75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;75;75;75;75;75;75;75;75;75;75;7;3;2;1;19;0.13;6;1;185;185;4;128;11;28;8
-8;'028;Antigua and Barbuda;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;8;2;6;1;31;0.68;19;2;111;111;6;45;175;55;8
-8;'028;Antigua and Barbuda;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;2;2;66;1
-8;'028;Antigua and Barbuda;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;2;2;27;4
-8;'028;Antigua and Barbuda;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;18;13;13;14;5;5;13;306;77;644;548
-8;'028;Antigua and Barbuda;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;3;12;10;9;14;6;6;13;12;40;134;78
-8;'028;Antigua and Barbuda;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160
-8;'028;Antigua and Barbuda;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-8;'028;Antigua and Barbuda;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;3;8;9;0;0;10;1;76;6;24
-8;'028;Antigua and Barbuda;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;2;2;5;8;1;1;3;3;40;101;4
-8;'028;Antigua and Barbuda;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;10;5;5;5;5;3;305;1;638;364
-8;'028;Antigua and Barbuda;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;8;4;6;5;5;10;9;0;33;70
-8;'028;Antigua and Barbuda;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-8;'028;Antigua and Barbuda;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-8;'028;Antigua and Barbuda;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;318;318;318;318;318;318;318;318;318
-8;'028;Antigua and Barbuda;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;30;30;30;30;30;30;30
-8;'028;Antigua and Barbuda;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-8;'028;Antigua and Barbuda;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-8;'028;Antigua and Barbuda;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;318;318;318;318;318;318;318;318;318
-8;'028;Antigua and Barbuda;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;30;30;30;30;30;30;30
-8;'028;Antigua and Barbuda;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;459;494;494;494;494;118;118;118;118;118;118;118;118;118;118;118;490;318;348.5;139;200;157;110;107;122;122;243;156;92;124;195
-8;'028;Antigua and Barbuda;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;515;469;469;469;469;133;133;133;133;133;133;133;133;133;133;133;792;755;569;333;422;395;318;284;340;340;534;384;302;458;572
-8;'028;Antigua and Barbuda;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;53;160;160;160;160;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;88;44;44;44;44;44;44;0;1;0;0
-8;'028;Antigua and Barbuda;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;27;131;131;131;131;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;15;7;7;7;7;7;7;0;4;1;4
-8;'028;Antigua and Barbuda;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;201;389;389;389;389;13;13;13;13;13;13;13;13;13;13;13;368;229;276.5;77;114;77;29;17;46;46;113;89;30;33;87
-8;'028;Antigua and Barbuda;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;182;344;344;344;344;8;8;8;8;8;8;8;8;8;8;8;569;488;381;146;179;181;89;59;127;127;259;175;92;125;198
-8;'028;Antigua and Barbuda;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;149;149;149;149;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;124;124;124;124;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3
-8;'028;Antigua and Barbuda;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;34;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;287;106;144;56;103;0;0;0;0;0;1;0;1;0;1
-8;'028;Antigua and Barbuda;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;26;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;350;207;179;60;116;0;0;0;0;0;1;0;1;0;0
-8;'028;Antigua and Barbuda;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;167;376;376;376;376;;;;;;;;;;;;81;123;132.5;21;11;77;29;17;46;46;112;89;29;33;86
-8;'028;Antigua and Barbuda;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;156;336;336;336;336;;;;;;;;;;;;219;281;202;86;63;181;89;59;127;127;258;175;91;125;198
-8;'028;Antigua and Barbuda;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;149;149;149;;;;;;;;;;;;;;;;;;;;;;;;;;0
-8;'028;Antigua and Barbuda;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;124;124;124;;;;;;;;;;;;;;;;;;;;;;;;;;3
-8;'028;Antigua and Barbuda;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;47;0;2;11;4;3;6;6;8;19;9;15;5
-8;'028;Antigua and Barbuda;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;15;14;0;7;42;14;9;28;28;39;23;26;28;18
-8;'028;Antigua and Barbuda;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;8;0.5;1;5;59;14;4;4;4;70;47;4;7;38
-8;'028;Antigua and Barbuda;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;23;7;8;38;122;41;16;22;22;115;85;11;40;41
-8;'028;Antigua and Barbuda;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-8;'028;Antigua and Barbuda;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-8;'028;Antigua and Barbuda;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;108;85;20;4;7;11;10;36;36;34;23;16;11;43
-8;'028;Antigua and Barbuda;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;243;181;78;18;17;34;34;77;77;104;67;54;57;139
-8;'028;Antigua and Barbuda;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;258;105;105;105;105;105;105;105;105;105;105;105;105;105;105;105;122;89;72;62;86;80;81;90;76;76;130;67;62;91;108
-8;'028;Antigua and Barbuda;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;333;125;125;125;125;125;125;125;125;125;125;125;125;125;125;125;223;267;188;187;243;214;229;225;213;213;275;209;210;333;374
-8;'028;Antigua and Barbuda;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;25;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;88;44;44;44;44;44;44;0;1;0;0
-8;'028;Antigua and Barbuda;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;10;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;15;7;7;7;7;7;7;0;4;1;1
-8;'028;Antigua and Barbuda;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;8;1;1;16;18;3;3;28;3;7;5;12
-8;'028;Antigua and Barbuda;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;3;1;25;1;1;14;16;11;11;34;8;9;34;30
-8;'028;Antigua and Barbuda;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;69;47;45;83;72;59;63;69;69;90;52;49;76;86
-8;'028;Antigua and Barbuda;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;222;142;124;215;193;188;176;178;178;209;125;138;234;286
-8;'028;Antigua and Barbuda;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;88;44;44;44;44;44;44;0;1;0;0
-8;'028;Antigua and Barbuda;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;15;7;7;7;7;7;7;0;4;1;1
-8;'028;Antigua and Barbuda;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;10;5;7;10;14;10;17;17;17;11;9;12;14
-8;'028;Antigua and Barbuda;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;18;19;10;14;20;28;20;27;27;73;20;13;22;26
-8;'028;Antigua and Barbuda;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;8;16;58;33;10;11;5;5;4;7;4;14;18
-8;'028;Antigua and Barbuda;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;40;23;46;135;83;46;47;21;21;24;20;12;61;78
-8;'028;Antigua and Barbuda;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;51;29;24;18;26;32;41;47;47;67;31;36;46;54
-8;'028;Antigua and Barbuda;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;164;100;68;66;73;97;104;130;130;109;81;113;147;182
-8;'028;Antigua and Barbuda;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;88;44;44;44;44;44;44;0;1;0;0
-8;'028;Antigua and Barbuda;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;15;7;7;7;7;7;7;0;4;1;1
-8;'028;Antigua and Barbuda;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;0;0;2;3;0;4;0
-8;'028;Antigua and Barbuda;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;5;0;0;3;4;0;4;0
-8;'028;Antigua and Barbuda;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;105;105;105;105;105;105;105;45;19;24;9;2;7;6;9;4;4;12;12;6;10;10
-8;'028;Antigua and Barbuda;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;125;125;125;125;125;125;125;125;47;42;45;38;27;20;27;33;24;24;32;76;63;65;58
-8;'028;Antigua and Barbuda;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-8;'028;Antigua and Barbuda;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10975;15413;14812;8386;12196;21239;19944
-8;'028;Antigua and Barbuda;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;138;150;129;87;169;159
-8;'028;Antigua and Barbuda;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582;2607;1847;1379;1801;2419;1674
-8;'028;Antigua and Barbuda;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;71;39;39;39;28;41
-8;'028;Antigua and Barbuda;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316;2237;1328;824;1371;1462;1227
-8;'028;Antigua and Barbuda;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28
-8;'028;Antigua and Barbuda;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;370;519;555;430;957;447
-8;'028;Antigua and Barbuda;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;43;11;11;11;0;13
-8;'028;Antigua and Barbuda;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;83;84;17;10;53;29
-8;'028;Antigua and Barbuda;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;14;31;25;6;13;6
-8;'028;Antigua and Barbuda;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;166;242;54;63;129;101
-8;'028;Antigua and Barbuda;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;2;2;0;4;10
-8;'028;Antigua and Barbuda;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2466;2839;3109;2235;3174;4875;3964
-8;'028;Antigua and Barbuda;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;0;0;0
-8;'028;Antigua and Barbuda;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6521;9621;9388;4664;7104;13699;14035
-8;'028;Antigua and Barbuda;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;43;77;62;42;124;97
-8;'028;Antigua and Barbuda;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;97;142;37;44;64;141
-8;'028;Antigua and Barbuda;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5
-8;'028;Antigua and Barbuda;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9480;13267;11319;9247;10197;13402;14233
-8;'028;Antigua and Barbuda;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;17;60;18;18;147;186
-8;'028;Antigua and Barbuda;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;2;1;9
-8;'028;Antigua and Barbuda;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-8;'028;Antigua and Barbuda;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;225;242;109;131;172;163
-8;'028;Antigua and Barbuda;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0
-8;'028;Antigua and Barbuda;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5017;5338;5299;5040;4882;5623;6829
-8;'028;Antigua and Barbuda;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;0;0;8;1;0
-8;'028;Antigua and Barbuda;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1221;1479;1503;980;1359;1640;1748
-8;'028;Antigua and Barbuda;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;2;0;2;2;10
-8;'028;Antigua and Barbuda;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3005;6224;4275;3118;3823;5966;5484
-8;'028;Antigua and Barbuda;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;16;55;18;8;144;176
-9;'032;Argentina;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1082765;1164413;997382;930345;1073361;1366152;1230657
-9;'032;Argentina;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476008;518384;521185;489130;699891;637474;488558
-9;'032;Argentina;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;96504;66294;59895;78321;103306;106097;92468;135341;164329;164936;159702;129532;157271;321581;311957;153710;185623;200667;295174;412884;338893;214427;174817;133449;91846;155392;177178;122071;95390;81256;106592;377830;448199;477706;672305;696331;824500;931839;784238;810256;620990;277164;388948;593559;626825;709617;841966;988293;690987;985498;1164505;1062340;1013921;957686;1017967;858343;859728;898078;781206;729878;831080;1068288;952342
-9;'032;Argentina;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;222;154;275;344;229;223;248;973;1854;1873;1751;4474;15359;28472;5280;8426;13634;14441;19742;16486;12456;11092;20400;23795;41300;36835;34966;113853;118272;176895;150494;109825;86171;112675;272752;264028;284118;254432;224651;292503;234311;282664;366143;565738;488813;552211;545156;556950;525237;628897;593180;467353;466777.86;434563.06;356703;316332;370706;417735;415096;384264;581042;463810;365183
-9;'032;Argentina;1861;Roundwood;5516;Production;m3;11341000;10534000;9708000;10660000;10955000;5619703;5472740;6179778;6220815;6223854;6745893;6811932;6548971;7041010;6997051;7601091;7487132;7147173;8334213;8057675;7071554;7771928;9413290;9528592;9366264;8703242;9364637;10139585;10765390;10230020;10407976;11710824;10332318;10774685;11584529;11494697;11514314;12304750;9856602;10703792;9543261;11545389;13018128;15003911;14337344;14027118;13658208;13119301;14089211;15009546;14624000;16496000;18261000;15033332;16221000;16979000;17884109;16976659;17642496;17195507;19089000;19298000;19298000
-9;'032;Argentina;1861;Roundwood;5616;Import quantity;m3;199600;174600;171000;208600;294300;279200;231200;181100;174600;165200;142500;69900;20000;12100;17400;4400;3100;10700;9500;16100;6300;3700;6500;9000;2600;3300;3500;6300;1000;5220;2136;2744;2219;5300;5300;4500;8200;1700;5000;4000;2000;0;0;7475;7475;1748;1748;1748;1748;317;2046;1475;0;19;192;1328;92;99;42;0;63;858;36813
-9;'032;Argentina;1861;Roundwood;5622;Import value;1000 USD;5558;4609;4514;6050;9759;9997;8530;6950;7887;8423;7034;3667;1415;1903;3477;982;495;1379;1828;3793;2531;1162;1364;1889;525;877;1320;1238;395;567;803;1381;767;755;673;619;1547;348;703;800;132;0;0;200;200;105;105;105;105;62;594;300;6;8;110;472;32;51;20;0;35;485;7087
-9;'032;Argentina;1861;Roundwood;5916;Export quantity;m3;14400;16300;17800;18500;6300;6300;5200;400;1200;900;500;200;100;400;400;400;700;1900;2900;2300;2300;1800;2700;2900;2900;4435;8518;397940;546000;545228;330060;556208;196000;639800;1119000;604400;491100;453000;228000;123000;25000;36230;54462;12604;47062;36943;124448;80392;19943;49300;23409;14226;14383;22396;12582;4049;2773;2805;486817;681008;473214;443145;435976
-9;'032;Argentina;1861;Roundwood;5922;Export value;1000 USD;90;40;37;77;29;23;19;12;34;28;19;12;20;54;54;54;43;176;346;410;302;234;440;625;625;1149;1354;28486;41110;40538;23937;39512;8352;27429;51050;24833;21752;20752;9840;5355;914;816;1588;2058;2071;1618;7106;3693;1737;3960;3601;2934;2532;3510;3475;1135;1702;1491;39359;51108;69127;66208;63763
-9;'032;Argentina;1862;Roundwood, coniferous;5516;Production;m3;223000;220000;217000;280000;287000;323703;327740;514778;514815;587854;672893;622932;575971;683010;668051;735091;620132;644173;1225213;851000;767000;1335000;2326000;2186000;2114000;2302000;2502000;2523724;2723724;2523724;2523724;2616078;2568000;2731000;4057000;3500800;3684800;3220000;3385000;4157000;3893328;5193328;6467661;5862898;5997000;5922000;5744000;4961872;5821058;6100024;5874000;7489000;8163000;6412086;6778000;7150000;8499528;7375240;8247505;7529194;9194000;9164000;9164000
-9;'032;Argentina;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;17278
-9;'032;Argentina;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3391
-9;'032;Argentina;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;463;481087;666886;455790;422397;422397
-9;'032;Argentina;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;56;37484;48120;64321;59553;59553
-9;'032;Argentina;1863;Roundwood, non-coniferous;5516;Production;m3;11118000;10314000;9491000;10380000;10668000;5296000;5145000;5665000;5706000;5636000;6073000;6189000;5973000;6358000;6329000;6866000;6867000;6503000;7109000;7206675;6304554;6436928;7087290;7342592;7252264;6401242;6862637;7615861;8041666;7706296;7884252;9094746;7764318;8043685;7527529;7993897;7829514;9084750;6471602;6546792;5649933;6352061;6550467;9141013;8340344;8105118;7914208;8157429;8268153;8909522;8750000;9007000;10098000;8621246;9443000;9829000;9384581;9601419;9394991;9666313;9895000;10134000;10134000
-9;'032;Argentina;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;99;42;0;63;858;19535
-9;'032;Argentina;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;51;20;0;35;485;3696
-9;'032;Argentina;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2649;2342;5730;14122;17424;20748;13579
-9;'032;Argentina;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1639;1435;1875;2988;4806;6655;4210
-9;'032;Argentina;1864;Wood fuel;5516;Production;m3;9321000;8405000;7862000;8348000;8522000;2984703;3025740;3067778;3108815;3151854;3193893;3236932;3280971;3324010;3369051;3413091;3458132;3503173;3547213;4094905;3296613;3114533;3652614;4166284;4108064;3035235;3096327;3849551;3447439;3097050;3240051;3908746;3498502;4448173;3571250;3874679;3977727;5176119;3585913;2993381;3295933;2798112;3589467;5594013;4380125;4383078;4293650;4362429;4267153;4374522;4556000;3978000;4595000;4092800;4451000;4297000;4072039;4078796;3345238;3389542;4013000;4131000;4131000
-9;'032;Argentina;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2
-9;'032;Argentina;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;161;289;106;82;34;69;69;120;60;90;36;36;112;112
-9;'032;Argentina;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;56;25;16;8;10;10;125;10;9;14;14;48;48
-9;'032;Argentina;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;2703;2740;2778;2815;2854;2893;2932;2971;3010;3051;3091;3132;3173;3213;0;0;0;0;0;0;0;0;0;0;0;0;0;6000;81000;81000;37800;37800;1000;2000;17000;24000;24000;23000;24000;14000;23000;15000;15000;24000;21000;41000;17000;29000;36000;35000;50000;6748;13505;5077;10766;316000;406000;406000
-9;'032;Argentina;1628;Wood fuel, non-coniferous;5516;Production;m3;9321000;8405000;7862000;8348000;8522000;2982000;3023000;3065000;3106000;3149000;3191000;3234000;3278000;3321000;3366000;3410000;3455000;3500000;3544000;4094905;3296613;3114533;3652614;4166284;4108064;3035235;3096327;3849551;3447439;3097050;3240051;3908746;3492502;4367173;3490250;3836879;3939927;5175119;3583913;2976381;3271933;2774112;3566467;5570013;4366125;4360078;4278650;4347429;4243153;4353522;4515000;3961000;4566000;4056800;4416000;4247000;4065291;4065291;3340161;3378776;3697000;3725000;3725000
-9;'032;Argentina;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-9;'032;Argentina;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2
-9;'032;Argentina;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;60;90;36;36;112;112
-9;'032;Argentina;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;10;9;14;14;48;48
-9;'032;Argentina;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;161;289;106;82;34;69;69;;;;;;;
-9;'032;Argentina;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;56;25;16;8;10;10;;;;;;;
-9;'032;Argentina;1865;Industrial roundwood;5516;Production;m3;2020000;2129000;1846000;2312000;2433000;2635000;2447000;3112000;3112000;3072000;3552000;3575000;3268000;3717000;3628000;4188000;4029000;3644000;4787000;3962770;3774941;4657395;5760676;5362308;5258200;5668007;6268310;6290034;7317951;7132970;7167925;7802078;6833816;6326512;8013279;7620018;7536587;7128631;6270689;7710411;6247328;8747277;9428661;9409898;9957219;9644040;9364558;8756872;9822058;10635024;10068000;12518000;13666000;10940532;11770000;12682000;13812070;12897863;14297258;13805965;15076000;15167000;15167000
-9;'032;Argentina;1865;Industrial roundwood;5616;Import quantity;m3;199600;174600;171000;208600;294300;279200;231200;181100;174600;165200;142500;69900;20000;12100;17400;4400;3100;10700;9500;16100;6300;3700;6500;9000;2600;3300;3500;6300;1000;5220;2136;2719;2219;5300;5300;4500;8200;1700;5000;4000;2000;0;0;7475;7475;1748;1748;1748;1748;317;2046;1475;0;19;192;1328;92;99;42;0;63;858;36813
-9;'032;Argentina;1865;Industrial roundwood;5622;Import value;1000 USD;5558;4609;4514;6050;9759;9997;8530;6950;7887;8423;7034;3667;1415;1903;3477;982;495;1379;1828;3793;2531;1162;1364;1889;525;877;1320;1238;395;567;803;1380;767;755;673;619;1547;348;703;800;132;0;0;200;200;105;105;105;105;62;594;300;6;8;110;472;32;51;20;0;35;485;7085
-9;'032;Argentina;1865;Industrial roundwood;5916;Export quantity;m3;14400;16300;17800;18500;6300;6300;5200;400;1200;900;500;200;100;400;400;400;700;1900;2900;2300;2300;1800;2700;2900;2900;4435;8518;397940;546000;545228;330060;556029;196000;639700;1119000;604400;491100;453000;228000;123000;25000;36230;54462;12604;47062;36943;124448;80392;19943;49139;23120;14120;14301;22362;12513;3980;2653;2745;486727;680972;473178;443033;435864
-9;'032;Argentina;1865;Industrial roundwood;5922;Export value;1000 USD;90;40;37;77;29;23;19;12;34;28;19;12;20;54;54;54;43;176;346;410;302;234;440;625;625;1149;1354;28486;41110;40538;23937;39493;8352;27399;51050;24833;21752;20752;9840;5355;914;816;1588;2058;2071;1618;7106;3693;1737;3935;3545;2909;2516;3502;3465;1125;1577;1481;39350;51094;69113;66160;63715
-9;'032;Argentina;1866;Industrial roundwood, coniferous;5516;Production;m3;223000;220000;217000;280000;287000;321000;325000;512000;512000;585000;670000;620000;573000;680000;665000;732000;617000;641000;1222000;851000;767000;1335000;2326000;2186000;2114000;2302000;2502000;2523724;2723724;2523724;2523724;2616078;2562000;2650000;3976000;3463000;3647000;3219000;3383000;4140000;3869328;5169328;6444661;5838898;5983000;5899000;5729000;4946872;5797058;6079024;5833000;7472000;8134000;6376086;6743000;7100000;8492780;7361735;8242428;7518428;8878000;8758000;8758000
-9;'032;Argentina;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;897;160;1100;1000;4300;4300;5800;100;0;0;0;0;0;1325;1325;248;248;248;248;248;248;248;0;0;100;986;0;0;0;0;0;0;17278
-9;'032;Argentina;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;259;28;274;96;550;550;645;16;0;0;0;0;0;81;81;15;15;15;15;15;0;0;6;0;18;173;0;0;0;0;0;0;3391
-9;'032;Argentina;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;60;29;0;33700;39000;400;100;0;0;0;0;230;326;3136;3136;3943;3943;3943;3943;3139;120;120;1299;0;0;0;124;463;481087;666886;455790;422397;422397
-9;'032;Argentina;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;5;2;0;1858;1966;21;5;0;0;0;0;16;29;200;200;209;209;209;209;244;70;14;136;0;0;0;63;56;37484;48120;64321;59553;59553
-9;'032;Argentina;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;897;160;1100;1000;4300;4300;5800;100;0;0;0;0;0;1325;1325;248;248;248;248;248;248;248;0;0;100;986;0;0;0;0;0;0;17278
-9;'032;Argentina;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;259;28;274;96;550;550;645;16;0;0;0;0;0;81;81;15;15;15;15;15;0;0;6;0;18;173;0;0;0;0;0;0;3391
-9;'032;Argentina;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;60;29;0;33700;39000;400;100;0;0;0;0;230;326;3136;3136;3943;3943;3943;3943;3139;120;120;1299;0;0;0;124;463;481087;666886;455790;422397;422397
-9;'032;Argentina;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;5;2;0;1858;1966;21;5;0;0;0;0;16;29;200;200;209;209;209;209;244;70;14;136;0;0;0;63;56;37484;48120;64321;59553;59553
-9;'032;Argentina;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1797000;1909000;1629000;2032000;2146000;2314000;2122000;2600000;2600000;2487000;2882000;2955000;2695000;3037000;2963000;3456000;3412000;3003000;3565000;3111770;3007941;3322395;3434676;3176308;3144200;3366007;3766310;3766310;4594227;4609246;4644201;5186000;4271816;3676512;4037279;4157018;3889587;3909631;2887689;3570411;2378000;3577949;2984000;3571000;3974219;3745040;3635558;3810000;4025000;4556000;4235000;5046000;5532000;4564446;5027000;5582000;5319290;5536128;6054830;6287537;6198000;6409000;6409000
-9;'032;Argentina;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4448;1239;2559;1119;4300;1000;200;2400;1600;5000;4000;2000;0;0;6150;6150;1500;1500;1500;1500;69;1798;1227;0;19;92;342;92;99;42;0;63;858;19535
-9;'032;Argentina;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;544;1352;493;659;123;69;902;332;703;800;132;0;0;119;119;90;90;90;90;47;594;300;0;8;92;299;32;51;20;0;35;485;3694
-9;'032;Argentina;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545000;330000;556000;196000;606000;1080000;604000;491000;453000;228000;123000;25000;36000;54136;9468;43926;33000;120505;76449;16000;46000;23000;14000;13002;22362;12513;3980;2529;2282;5640;14086;17388;20636;13467
-9;'032;Argentina;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40500;23932;39491;8352;25541;49084;24812;21747;20752;9840;5355;914;800;1559;1858;1871;1409;6897;3484;1528;3691;3475;2895;2380;3502;3465;1125;1514;1425;1866;2974;4792;6607;4162
-9;'032;Argentina;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304;1119;500;100;100;2200;600;2000;3000;0;0;0;6150;6150;1500;1500;1500;1500;69;798;227;0;0;0;0;75;0;0;0;0;0;1
-9;'032;Argentina;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;493;335;85;62;871;287;614;739;0;0;0;119;119;90;90;90;90;47;297;150;0;0;0;0;7;0;0;0;0;0;1
-9;'032;Argentina;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;59;71;1185;1228;1267;3423;13202;12265;4256
-9;'032;Argentina;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;33;955;1085;985;1822;3930;4129;2372
-9;'032;Argentina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4448;1239;1255;0;3800;900;100;200;1000;3000;1000;2000;0;0;0;0;0;0;0;0;0;1000;1000;0;19;92;342;17;99;42;0;63;858;19534
-9;'032;Argentina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;544;782;0;324;38;7;31;45;89;61;132;0;0;0;0;0;0;0;0;0;297;150;0;8;92;299;25;51;20;0;35;485;3693
-9;'032;Argentina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545000;330000;556000;196000;606000;1080000;604000;491000;453000;228000;117000;25000;36000;54136;9468;43926;33000;120505;76449;16000;46000;23000;14000;13002;22362;12454;3909;1344;1054;4373;10663;4186;8371;9211
-9;'032;Argentina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40500;23932;39491;8352;25541;49084;24812;21747;20752;9840;5135;914;800;1559;1858;1871;1409;6897;3484;1528;3691;3475;2895;2380;3502;3434;1092;559;340;881;1152;862;2478;1790
-9;'032;Argentina;1868;Sawlogs and veneer logs;5516;Production;m3;960000;989000;680000;1149000;1155000;1301000;1107000;1209000;1209000;967000;1295000;1283000;1023000;975000;988000;1085000;1293000;1019000;1518000;1617000;1893000;2275000;2365000;1935000;1818000;1818000;2318000;2339724;3039724;3039724;3074679;3446000;2393000;2465000;3403767;3508018;3762587;3225631;3165689;3796411;2874000;3574000;3159000;3131898;3455000;3486000;2920000;1889000;4289058;4403024;4059000;6482000;7247000;5568100;6118000;7150000;7899454;7654454;8098884;8032679;9439000;9458000;9458000
-9;'032;Argentina;1868;Sawlogs and veneer logs;5616;Import quantity;m3;199600;174600;171000;208600;294300;279200;231200;181100;174600;165200;142500;69900;20000;12100;17400;4400;3100;10700;9500;16100;6300;3700;6500;9000;2600;3300;3500;6300;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;5558;4609;4514;6050;9759;9997;8530;6950;7887;8423;7034;3667;1415;1903;3477;982;495;1379;1828;3793;2531;1162;1364;1889;525;877;1320;1238;395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;3435;7518;396940;545000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;539;744;27876;40500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;105000;98000;77000;148000;123000;165000;145000;154000;154000;123000;148000;157000;83000;80000;50000;50000;50000;50000;424000;261000;370000;589000;664000;393000;322000;322000;522000;543724;743724;743724;743724;827000;593000;711000;1443000;1346000;1624000;1166000;1636000;2002000;1649000;1949000;2297000;1925898;2112000;2110000;1605000;915000;2224058;2345024;2092000;3463000;4189000;3062600;3193000;3797000;5258295;4134896;4433805;4205541;5378000;5373000;5373000
-9;'032;Argentina;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;855000;891000;603000;1001000;1032000;1136000;962000;1055000;1055000;844000;1147000;1126000;940000;895000;938000;1035000;1243000;969000;1094000;1356000;1523000;1686000;1701000;1542000;1496000;1496000;1796000;1796000;2296000;2296000;2330955;2619000;1800000;1754000;1960767;2162018;2138587;2059631;1529689;1794411;1225000;1625000;862000;1206000;1343000;1376000;1315000;974000;2065000;2058000;1967000;3019000;3058000;2505500;2925000;3353000;2641159;3519558;3665079;3827138;4061000;4085000;4085000
-9;'032;Argentina;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;199600;174600;171000;208600;294300;279200;231200;181100;174600;165200;142500;69900;20000;12100;17400;4400;3100;10700;9500;16100;6300;3700;6500;9000;2600;3300;3500;6300;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5558;4609;4514;6050;9759;9997;8530;6950;7887;8423;7034;3667;1415;1903;3477;982;495;1379;1828;3793;2531;1162;1364;1889;525;877;1320;1238;395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;3435;7518;396940;545000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;539;744;27876;40500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3784000;2944000;3794000;3274328;5074277;6139661;5987000;5970000;5659040;5854558;6428000;5250000;5874000;5650000;5744000;5852000;5039912;5320000;5206000;5645181;5023848;5768538;5512308;5142000;5205000;5205000
-9;'032;Argentina;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2051000;1716000;2135000;2218328;3218328;4145661;3904000;3863000;3746000;3887000;3959000;3564000;3724000;3739000;4007000;3943000;3308876;3543000;3298000;3232914;3211510;3803396;3309485;3497000;3383000;3383000
-9;'032;Argentina;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1733000;1228000;1659000;1056000;1855949;1994000;2083000;2107000;1913040;1967558;2469000;1686000;2150000;1911000;1737000;1909000;1731036;1777000;1908000;2412267;1812338;1965142;2202823;1645000;1822000;1822000
-9;'032;Argentina;1870;Pulpwood and particles (1961-1997);5516;Production;m3;388000;422000;468000;548000;604000;676000;552000;1198000;1198000;1542000;1732000;1545000;1692000;1986000;2051000;2272000;1890000;1967000;2426000;1842000;1520000;1951000;3083000;3043000;3168000;3584000;3584000;3584000;3684000;3484000;3484000;3761078;3941000;3458512;4000512;3685000;3577000;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;118000;122000;140000;132000;164000;156000;180000;358000;358000;462000;522000;463000;490000;600000;615000;682000;567000;591000;798000;590000;397000;746000;1662000;1793000;1792000;1980000;1980000;1980000;1980000;1780000;1780000;1789078;1969000;1935000;2477000;2114000;2022000;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;270000;300000;328000;416000;440000;520000;372000;840000;840000;1080000;1210000;1082000;1202000;1386000;1436000;1590000;1323000;1376000;1628000;1252000;1123000;1205000;1421000;1250000;1376000;1604000;1604000;1604000;1704000;1704000;1704000;1972000;1972000;1523512;1523512;1571000;1555000;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1871;Other industrial roundwood;5516;Production;m3;672000;718000;698000;615000;674000;658000;788000;705000;705000;563000;525000;747000;553000;756000;589000;831000;846000;658000;843000;503770;361941;431395;312676;384308;272200;266007;366310;366310;594227;609246;609246;595000;499816;403000;609000;427000;197000;119000;161000;120000;99000;99000;130000;291000;532219;499000;590000;439872;283000;358000;359000;292000;567000;332520;332000;326000;267435;219561;429836;260978;495000;504000;504000
-9;'032;Argentina;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1871;Other industrial roundwood;5916;Export quantity;m3;14400;16300;17800;18500;6300;6300;5200;400;1200;900;500;200;100;400;400;400;700;1900;2900;2300;2300;1800;2700;2900;2900;1000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1871;Other industrial roundwood;5922;Export value;1000 USD;90;40;37;77;29;23;19;12;34;28;19;12;20;54;54;54;43;176;346;410;302;234;440;625;625;610;610;610;610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;56000;3000;1000;2000;31000;3000;2000;2000;2000;9000;8000;43000;237000;72872;9000;10000;2000;2000;2000;4610;7000;5000;1571;15329;5227;3402;3000;2000;2000
-9;'032;Argentina;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;672000;718000;698000;615000;674000;658000;788000;705000;705000;563000;525000;747000;553000;756000;589000;831000;846000;658000;843000;503770;361941;431395;312676;384308;272200;266007;366310;366310;594227;609246;609246;595000;499816;399000;553000;424000;196000;117000;130000;117000;97000;97000;128000;282000;524219;456000;353000;367000;274000;348000;357000;290000;565000;327910;325000;321000;265864;204232;424609;257576;492000;502000;502000
-9;'032;Argentina;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;14400;16300;17800;18500;6300;6300;5200;400;1200;900;500;200;100;400;400;400;700;1900;2900;2300;2300;1800;2700;2900;2900;1000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;90;40;37;77;29;23;19;12;34;28;19;12;20;54;54;54;43;176;346;410;302;234;440;625;625;610;610;610;610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1630;Wood charcoal;5510;Production;t;450000;464000;352000;412000;417000;470000;461000;503000;447000;522000;543000;368000;307000;536000;296000;307000;325000;499000;330000;368000;283000;233000;325000;289000;274000;222000;229000;334000;300000;294000;294000;236000;321000;289000;150000;294000;134000;144000;320000;258000;300000;245000;318000;526000;347000;352000;344000;366000;384000;380000;406000;361000;439000;386300;420000;399000;397321;397321;423772;394327;460039;486000;486000
-9;'032;Argentina;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;100;0;200;200;200;100;300;100;300;0;0;0;0;0;0;0;0;0;1;11;11;8;15;18;29;30;5;3;48;504;11
-9;'032;Argentina;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;40;0;46;50;54;26;58;21;83;0;0;0;0;0;0;0;0;0;2;19;19;5;9;27;50;41;9;7;135;288;29
-9;'032;Argentina;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22178;21400;18900;32900;55300;53500;53000;37000;44000;55000;70792;99742;120789;128612;151616;90396;168000;194000;172000;139260;88000;79712;71773;64000;61000;52000;55000;54936;59645;94000;57000;60269
-9;'032;Argentina;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5741;6061;9617;8638;14051;13225;12250;8212;9416;12040;10648;13096;18576;21411;28870;21477;45092;53087;44781;46646;30503;26223;23451;20005;19057;15417;16217;16201;15340;20912;11407;12468
-9;'032;Argentina;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;779000;351000;596000;1467000;1355000;1714000;2574000;2259000;2055000;2055000;3318000;3780000;4226000;4173000;4940000;5157000;4890000;5284000;4591176;6091343;6198545;6319561;6012121;6792000;6792000
-9;'032;Argentina;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;25200;39150;18200;37925;26598;32004;57218;78218;168500;38140;23109;26191;882;1107;1028;1149;1148;1328;15370;2507;812;9893;746;620
-9;'032;Argentina;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;1017;1375;640;1233;2037;2490;2990;3604;8544;2558;3265;4708;2714;3361;3589;3023;3830;3766;3389;2905;2492;3531;3402;3311
-9;'032;Argentina;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192000;182000;191000;191000;0;0;0;0;10212;18000;50000;52000;60470;52327;95223;24485;31774;22029;16107;6859;6207;5822;3841;1863;7082;32225
-9;'032;Argentina;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8095;7714;8179;8179;0;0;0;0;800;591;1651;2020;2153;1961;4032;392;455;316;663;182;106;119;51;16;53;242
-9;'032;Argentina;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178000;614000;186000;224000;996000;996000;1584000;1735000;1642000;1478000;1478000;2135000;2047000;2493000;2440000;1589000;1806000;1539000;1933000;1240176;2302580;1658659;1655327;1562920;2487000;2487000
-9;'032;Argentina;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;39000;18000;37801;26380;31786;57000;78000;168000;38000;23000;26000;748;1000;879;1000;1000;1000;15240;2329;722;9818;673;572
-9;'032;Argentina;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848;1245;482;1074;1371;1824;2324;2938;6954;2149;2871;4056;2255;3025;3148;2582;3175;3090;2997;2436;2200;3267;3150;3148
-9;'032;Argentina;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94900;94900;159600;324800;264600;192000;182000;191000;191000;0;0;0;0;0;0;0;0;470;327;63883;11;23;29;117;6;50;71;20;0;285;285
-9;'032;Argentina;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3939;3939;6471;14063;11379;8095;7714;8179;8179;0;0;0;0;0;0;0;0;18;52;3440;6;5;18;69;69;49;64;17;0;10;10
-9;'032;Argentina;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152000;165000;165000;372000;471000;359000;130000;839000;617000;577000;577000;1183000;1733000;1733000;1733000;3351000;3351000;3351000;3351000;3351000;3788763;4539886;4664234;4449201;4305000;4305000
-9;'032;Argentina;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;400;0;0;0;100;100;100;200;150;200;124;218;218;218;218;500;140;109;191;134;107;149;149;148;328;130;178;90;75;73;48
-9;'032;Argentina;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;17;0;0;0;80;86;86;169;130;158;159;666;666;666;666;1590;409;394;652;459;336;441;441;655;676;392;469;292;264;252;163
-9;'032;Argentina;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;500;0;0;0;0;0;0;0;0;0;0;0;10212;18000;50000;52000;60000;52000;31340;24474;31751;22000;15990;6853;6157;5751;3821;1863;6797;31940
-9;'032;Argentina;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;17;0;0;0;0;0;0;0;0;0;0;0;800;591;1651;2020;2135;1909;592;386;450;298;594;113;57;55;34;16;43;232
-9;'032;Argentina;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-9;'032;Argentina;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;43000;27000;22000;15000;11967;90108;84442;82051;166347;62000;62000
-9;'032;Argentina;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;137;230;180;120;40;50;0;0;270;270
-9;'032;Argentina;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;441;532;487;515;49;37;0;0;376;376
-9;'032;Argentina;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7950;9077;5840;6117;3440;5159;7637;7000;7522;10000;4909;7987
-9;'032;Argentina;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179;1339;978;850;383;620;980;883;714;897;408;621
-9;'032;Argentina;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;11000;6000;6000;3000;5159;83300;84442;82051;166347;62000;62000
-9;'032;Argentina;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7950;9077;5840;6117;3440;5159;7637;7000;7522;10000;4893;7971
-9;'032;Argentina;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179;1339;978;850;383;620;980;883;714;897;404;617
-9;'032;Argentina;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;32000;21000;16000;12000;6808;6808;0;0;0;0;0
-9;'032;Argentina;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;137;230;180;120;40;50;0;0;270;270
-9;'032;Argentina;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;441;532;487;515;49;37;0;0;376;376
-9;'032;Argentina;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16
-9;'032;Argentina;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-9;'032;Argentina;1872;Sawnwood;5516;Production;m3;780700;877000;726000;917000;934000;1042000;868000;863000;923000;736000;760000;594000;388000;335000;480000;631000;859000;640000;908000;846000;980000;1096000;1121000;934000;901000;978000;1139000;950000;950000;950000;950000;1472000;998000;1080000;1329000;1711000;1170000;1377000;1600000;1408000;1442000;1639000;1790000;1562000;1739000;2103000;1516000;955000;2151000;2159000;2151000;3339000;3614000;2762600;3131000;3130000;4020000;4020000;4020000;3719740;3827339;3854000;3854000
-9;'032;Argentina;1872;Sawnwood;5616;Import quantity;m3;880800;536100;489200;647700;799100;764900;650800;848400;848800;757700;776700;523900;464100;915600;967550;191600;394300;381900;625500;643200;402300;241100;306400;339900;193800;303200;282652;188967;136441;46262;46222;192867;189200;196900;156500;136500;183400;222600;201400;196000;150000;24203;85600;86248;104000;113734;101000;58157;43000;35936;40694;27536;20408;39302;12173;14373;10521;9514;4983;5887;11676;6324;4911
-9;'032;Argentina;1872;Sawnwood;5622;Import value;1000 USD;42780;27442;24290;33478;43889;42456;36864;52545;67109;59508;62132;42973;48996;126219;127317;24836;43235;44829;103028;139409;90217;51714;48850;51479;27054;43834;54830;43551;32469;10422;10422;39816;41912;44863;42458;32690;43593;51404;41335;47756;35080;4511;14814;24440;19190;27587;26276;25832;12612;15819;18859;19099;15673;10329;8677;8419;6915;5868;3505;3821;6940;5167;4140
-9;'032;Argentina;1872;Sawnwood;5916;Export quantity;m3;3400;3000;1600;7000;1900;1900;1900;2800;4200;4200;4200;300;600;400;100;100;200;1100;800;1100;3200;2700;2700;7200;4000;4000;1420;6499;11882;40799;40799;1587;2900;7100;32800;50200;48800;37000;38800;44000;85000;285000;363980;233788;404000;384312;236900;302000;210000;216295;182035;96827;154242;187216;108620;116304;144649;169680;377406;336060;378000;330478;365524
-9;'032;Argentina;1872;Sawnwood;5922;Export value;1000 USD;80;70;61;210;37;37;37;166;248;248;248;19;39;47;10;16;23;185;112;198;471;383;383;907;429;429;243;967;1262;7490;7490;532;1037;1728;7884;13992;15418;9868;12954;11861;17260;44000;55693;77862;74062;81362;76864;64952;41084;50247;37626;28551;38917;40661;27633;28236;33113;42666;67792;74489;115837;82748;72642
-9;'032;Argentina;1632;Sawnwood, coniferous;5516;Production;m3;125350;170500;40500;73000;29500;73500;53000;73500;64500;71500;88500;129500;115500;75500;48000;59000;63000;33500;257000;157000;199000;278000;305000;186000;164000;134000;156000;130000;130000;130000;130000;309000;360000;254000;625000;594000;525000;744000;780000;686000;700000;795000;870000;948000;1079000;1078000;822000;470000;1115000;761000;1094000;1835000;2142000;1536500;1629000;1630000;2700000;2700000;2700000;1859870;1951943;2081000;2081000
-9;'032;Argentina;1632;Sawnwood, coniferous;5616;Import quantity;m3;807100;476300;454800;588100;725300;703600;601000;779600;736700;645700;649150;409000;404550;404550;404550;141100;316100;318600;484100;451050;303450;166100;235200;257100;154300;233200;221000;132000;80000;16240;16200;56767;38800;37900;17500;12500;18300;33400;46600;31000;19000;203;2710;5449;10000;9000;8000;6360;5000;2936;4905;2874;2670;2556;2792;4894;1431;1784;332;459;1766;245;103
-9;'032;Argentina;1632;Sawnwood, coniferous;5622;Import value;1000 USD;38563;24005;22537;29759;39125;37633;33022;48113;58192;50412;51765;33027;42043;42043;42043;15496;29698;33225;73297;84186;56921;26660;27556;27980;16595;23554;35274;25909;16000;2700;2700;10308;8658;9774;5131;4560;5668;8539;8514;5554;3226;55;699;1523;1790;1801;1580;1730;1009;954;1558;945;956;901;1071;1296;472;600;126;119;1271;139;19
-9;'032;Argentina;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887;800;5700;26600;34300;35800;26500;29000;38000;80000;272000;342000;219090;394000;367000;219900;281000;202000;210000;178644;89353;147505;183000;105475;108739;143370;167074;372066;326000;369000;320478;358481
-9;'032;Argentina;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;193;1292;6495;10053;11886;6486;8344;8935;14812;40873;50809;69338;69044;71741;68521;56078;37270;46057;34599;22837;34714;39162;25696;24050;31818;40533;64681;71620;113292;79128;70385
-9;'032;Argentina;1633;Sawnwood, non-coniferous;5516;Production;m3;655350;706500;685500;844000;904500;968500;815000;789500;858500;664500;671500;464500;272500;259500;432000;572000;796000;606500;651000;689000;781000;818000;816000;748000;737000;844000;983000;820000;820000;820000;820000;1163000;638000;826000;704000;1117000;645000;633000;820000;722000;742000;844000;920000;614000;660000;1025000;694000;485000;1036000;1398000;1057000;1504000;1472000;1226100;1502000;1500000;1320000;1320000;1320000;1859870;1875396;1773000;1773000
-9;'032;Argentina;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;73700;59800;34400;59600;73800;61300;49800;68800;112100;112000;127550;114900;59550;511050;563000;50500;78200;63300;141400;192150;98850;75000;71200;82800;39500;70000;61652;56967;56441;30022;30022;136100;150400;159000;139000;124000;165100;189200;154800;165000;131000;24000;82890;80799;94000;104734;93000;51797;38000;33000;35789;24662;17738;36746;9381;9479;9090;7730;4651;5428;9910;6079;4808
-9;'032;Argentina;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;4217;3437;1753;3719;4764;4823;3842;4432;8917;9096;10367;9946;6953;84176;85274;9340;13537;11604;29731;55223;33296;25054;21294;23499;10459;20280;19556;17642;16469;7722;7722;29508;33254;35089;37327;28130;37925;42865;32821;42202;31854;4456;14115;22917;17400;25786;24696;24102;11603;14865;17301;18154;14717;9428;7606;7123;6443;5268;3379;3702;5669;5028;4121
-9;'032;Argentina;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;3400;3000;1600;7000;1900;1900;1900;2800;4200;4200;4200;300;600;400;100;100;200;1100;800;1100;3200;2700;2700;7200;4000;4000;1420;6499;11882;40799;40799;700;2100;1400;6200;15900;13000;10500;9800;6000;5000;13000;21980;14698;10000;17312;17000;21000;8000;6295;3391;7474;6737;4216;3145;7565;1279;2606;5340;10060;9000;10000;7043
-9;'032;Argentina;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;80;70;61;210;37;37;37;166;248;248;248;19;39;47;10;16;23;185;112;198;471;383;383;907;429;429;243;967;1262;7490;7490;233;844;436;1389;3939;3532;3382;4610;2926;2448;3127;4884;8524;5018;9621;8343;8874;3814;4190;3027;5714;4203;1499;1937;4186;1295;2133;3111;2869;2545;3620;2257
-9;'032;Argentina;1634;Veneer sheets;5516;Production;m3;;;;;3000;3000;3000;2000;2000;4100;4500;5200;6400;9900;10200;9000;2300;1600;7000;16000;18000;22000;28000;28000;20000;24000;34000;27000;26000;26000;26000;2850;3630;1400;1300;1300;13000;2000;2000;0;2000;2000;2000;2000;2000;1600;1300;600;700;6000;6000;6000;4000;4000;4000;4000;4000;4000;4000;17679;18239;14000;14000
-9;'032;Argentina;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;1300;1000;1800;6700;6200;3200;3000;8700;3600;4500;3100;8400;13400;10600;6000;9600;6800;2200;4500;5600;4300;2041;893;893;11182;8700;10000;6800;9100;11800;11200;9100;5000;4000;2000;4105;5781;5000;5485;5000;5266;2000;3700;3743;3249;2793;2799;2086;1643;1369;1347;1034;1099;1091;1192;882
-9;'032;Argentina;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;122;130;229;797;769;768;805;3013;1021;874;916;3752;6933;4355;2838;3931;2498;841;1829;3000;1940;1158;770;770;7547;6742;8351;7053;10194;12624;11635;7888;6426;4727;1455;3576;5513;5587;7855;9877;11664;4310;8671;10199;9156;8042;8461;6512;4945;4319;4462;3235;3065;3311;4130;3662
-9;'032;Argentina;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;300;500;1000;1200;2500;2100;2200;3000;3000;4000;5606;3585;3800;2717;4000;3000;2000;2000;4140;2628;1162;2157;779;251;368;445;888;278;724;2078;9299
-9;'032;Argentina;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;1622;489;1031;1223;2343;2355;3261;2326;2770;1838;2254;2064;2339;1517;1750;2161;1245;1741;2001;1743;1645;1632;872;304;401;426;713;442;275;782;2218
-9;'032;Argentina;1873;Wood-based panels;5516;Production;m3;74300;69200;70900;91700;110800;135502;136612;160271;175108;189219;225654;273386;289020;324967;320544;334000;278000;300000;360000;411000;353000;342000;384000;355000;299000;360000;366000;300000;265000;246000;261000;342000;685000;499000;430000;618000;678000;752000;688000;782000;690000;690000;1110000;1513000;1320000;1331000;1260000;1443000;1184000;1284000;1263000;1191000;1205000;1082000;1058000;1158000;1040873;1062516;945413;1014065;1076767;1233000;1233000
-9;'032;Argentina;1873;Wood-based panels;5616;Import quantity;m3;;;;;;8400;3200;4800;7100;6400;6500;3600;2400;2400;5000;5300;3600;3800;9700;32200;15500;2900;2700;2800;2000;2000;2148;1552;559;858;858;39530;73468;89796;60400;58900;57000;77700;93400;65000;44000;8000;15365;42600;38000;50000;104943;117698;63050;127454;164854;134921;93374;88145;132969;152042;162565;146591;96897;109672;126976;151544;109172
-9;'032;Argentina;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;385;155;270;414;328;394;208;159;159;221;320;514;723;4350;8973;4110;774;796;771;397;486;451;459;253;193;193;12534;22900;29540;22005;21810;23769;31392;33447;25544;17436;1972;3146;10391;11749;17891;38882;49274;25574;55669;74032;63071;46959;49969;64052;59543;60386;57610;35626;34812;48292;67058;53226
-9;'032;Argentina;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;2738;14216;14700;19200;8200;15500;18300;24400;12000;22600;22400;33800;24600;23200;21400;31000;22000;32400;36700;29600;29600;21598;22602;20764;102400;208900;199200;154800;152400;229000;150000;360000;772510;687108;640000;618978;449024;443228;420901;436990;393852;241677;249408;224960;109646;85512;98011;80079;139874;127454;218580;121327;89481
-9;'032;Argentina;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;171;940;1000;2433;932;1538;2169;2737;1648;4229;3993;4898;3335;3166;2964;4488;3200;5200;6200;7367;7367;5508;6182;5484;25416;48961;53725;41772;34366;42876;28251;49005;86925;155806;124295;137996;130450;127486;100439;121938;119566;78035;82045;72118.06;44671;35784;41816;28768;41578;43112;74409;63222;39815
-9;'032;Argentina;1640;Plywood and LVL;5516;Production;m3;48900;43000;28600;43800;53500;58200;52700;48100;47700;48000;55800;56000;61000;70000;61000;58000;50000;47000;53000;53000;50000;47000;48000;45000;42000;54000;57000;50000;41000;37000;48000;68000;59000;50000;38000;54000;63000;62000;62000;48000;52000;52000;77000;84000;87000;91000;85000;82000;66000;69000;69000;68000;79000;78000;69000;69000;79000;79264;69000;145060;151136;154000;154000
-9;'032;Argentina;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;700;1200;500;;;;2600;2600;700;700;4600;7200;4000;700;900;1000;200;500;600;500;300;600;600;20146;32100;46000;38500;38700;43200;46000;36500;33000;26000;1000;132;7225;11000;22000;44000;50000;23000;64387;94722;57393;38495;32376;50450;51912;53384;32741;20908;15169;15583;26671;19277
-9;'032;Argentina;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;18;31;12;;;;62;62;157;275;3578;6181;2662;400;490;496;122;286;233;290;186;124;124;7089;11855;17587;15695;16688;19410;20432;15542;12989;10254;428;49;2676;4248;7706;17352;18649;8924;25321;36620;25653;17742;17644;28562;22665;21980;16357;10634;6726;10076;17805;13610
-9;'032;Argentina;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;792;400;100;1400;2600;3700;4000;3600;4000;1000;14000;4574;15911;12000;6000;11000;7000;5000;5488;2085;2000;2756;2317;2588;1468;981;2031;1467;55;2174;1656;1376
-9;'032;Argentina;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461;138;44;762;1430;1979;1932;1566;1515;345;3448;1524;5052;4000;2640;5187;4092;3571;3054;1016;1476;1841;1325;1079;758;381;740;666;463;1456;1349;1678
-9;'032;Argentina;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-9;'032;Argentina;1646;Particle board and OSB (1961-1994);5516;Production;m3;10000;12700;25400;35200;43300;55400;63800;90900;105400;117000;135000;166000;172000;200000;209000;225000;176000;185000;248000;268000;217000;215000;241000;230000;189000;217000;206000;163000;139000;142000;133000;178000;376000;199000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13013;36400;36000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3317;8856;9120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;200;200;600;600;600;400;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;3128;3000;7400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;28;26;85;85;85;100;200;200;200;200;200;200;200;200;200;200;680;722;1568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288000;383000;445000;442000;382000;485000;403000;403000;455000;536000;602000;585000;555000;564000;512000;568000;552000;506000;472000;426000;410000;544000;402721;422293;355423;346954;467741;447000;447000
-9;'032;Argentina;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15900;7700;4300;11000;25400;12000;7000;4000;9126;12521;14000;15000;17953;18903;8250;10668;10962;12382;15321;6064;19726;25975;20000;13590;5292;7268;5204;8065;2606
-9;'032;Argentina;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238;1802;1404;3180;6871;3817;1669;552;1236;3022;2349;2889;4492;6729;2730;3990;4379;4746;5607;2897;5811;5663;4140;3363;1041;1571;1650;3012;1407
-9;'032;Argentina;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57900;120600;102400;77400;63000;144000;79000;109000;209112;224087;198000;178792;109024;103028;135701;119495;99757;39673;6686;29982;14000;9998;11000;17000;34302;19379;92386;35079;30600
-9;'032;Argentina;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12636;26158;25044;18157;11931;21031;11781;9577;22170;30832;34367;37141;29599;29334;31229;35509;31294;13516;1429;9175;4808;3236;3151;4177;7913;3679;21110;8921;7227
-9;'032;Argentina;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-9;'032;Argentina;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21990;13795;14650;16399;18930;21076;17173;21341;21522;24000;39000;40400;41393;50112;73638;77192;68958
-9;'032;Argentina;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5219;3687;3962;5172;6044;6890;6086;7437;6242;6366;11143;13341;11160;11592;22364;25348;26864
-9;'032;Argentina;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;9;9
-9;'032;Argentina;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;6;6
-9;'032;Argentina;1874;Fibreboard;5516;Production;m3;15400;13500;16900;12700;14000;21902;20112;21271;22008;24219;34854;51386;56020;54967;50544;51000;52000;68000;59000;90000;86000;80000;95000;80000;68000;89000;103000;87000;85000;67000;80000;96000;250000;250000;104000;181000;170000;248000;244000;249000;235000;235000;578000;893000;631000;655000;620000;797000;606000;647000;642000;617000;654000;578000;579000;545000;559152;560959;520990;522051;457890;632000;632000
-9;'032;Argentina;1874;Fibreboard;5616;Import quantity;m3;;;;;;8400;3200;4800;6400;5200;6000;3600;2400;2400;2400;2700;2900;3100;5100;25000;11500;2200;1800;1800;1800;1500;1548;1052;259;258;258;6371;4968;7796;6000;12500;9500;20700;31500;20000;11000;3000;6107;22854;13000;13000;21000;35000;17150;36000;40240;44070;22385;28364;41271;50155;50181;59860;29304;37123;32551;39616;18331
-9;'032;Argentina;1874;Fibreboard;5622;Import value;1000 USD;;;;;;385;155;270;396;297;382;208;159;159;159;258;357;448;772;2792;1448;374;306;275;275;200;218;169;67;69;69;2128;2189;2833;2072;3320;2955;7780;11034;8738;5513;992;1861;4693;5152;7296;11819;20209;9958;21186;26989;25782;17524;21991;23437;24849;23123;24549;12791;14923;14202;20893;11345
-9;'032;Argentina;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;2738;14216;14700;19200;8200;15300;18100;23800;11400;22000;22000;32600;23400;22000;20200;29800;20800;31200;35500;28400;28400;17678;19202;13264;43100;85700;93100;73400;85800;81000;70000;237000;558824;447110;430000;434186;329000;333200;280200;312007;292010;200004;239966;192661;93058;74046;86030;61048;104105;108020;124020;84583;57496
-9;'032;Argentina;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;171;940;1000;2433;932;1510;2143;2652;1563;4144;3893;4698;3135;2966;2764;4288;3000;5000;6000;7167;7167;4367;5322;3872;12018;21373;26702;21683;20869;20330;16125;35980;63231;119922;85928;98215;95664;94060;65639;83375;87256;63043;78775;61618.06;38784;31790;38284;23851;32999;38970;51843;52946;30904
-9;'032;Argentina;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;67000;14000;73000;61000;65000;59000;59000;58000;72000;75000;69000;10000;77000;64000;69000;69000;68000;66000;58000;56000;61000;47005;43820;39249;40771;37297;65000;65000
-9;'032;Argentina;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;3700;2600;5400;7900;7000;7000;2000;2000;5730;10000;12000;13000;17000;11000;19000;26000;22000;17859;18533;20000;7000;5000;6840;3656;4358;3535;951;713
-9;'032;Argentina;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112;1560;1496;3538;4952;4879;4009;697;697;2597;4352;6961;7541;12653;6954;13239;20239;16741;15216;16513;15135;4557;2250;2890;1409;1429;1524;564;419
-9;'032;Argentina;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35400;34800;36100;38400;38100;35000;36000;70000;70000;74606;65000;55000;29000;26000;27000;30000;24000;14000;13879;14479;9000;11000;10000;7000;6010;11000;4000;721;721
-9;'032;Argentina;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10671;11272;12934;11876;10799;9882;9577;14774;14774;17662;17474;16364;13960;8839;8343;10519;9007;5660;5878;5669;3366;3602;3615;2407;2134;3500;1466;420;420
-9;'032;Argentina;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;114000;156000;175000;183000;184000;176000;176000;520000;821000;556000;586000;610000;720000;542000;578000;573000;549000;588000;520000;523000;484000;512147;517139;481741;481280;420593;567000;567000
-9;'032;Argentina;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;8000;6300;11300;20000;9000;3000;1000;4107;17124;3000;1000;8000;16000;6000;16000;14000;22000;4396;9663;20000;43000;45000;52930;25604;32551;29000;38000;17557
-9;'032;Argentina;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;1550;1342;3309;5144;2770;1054;295;1164;2096;800;335;4278;7147;2966;7668;6685;9024;2259;5411;8038;20176;20713;21633;11367;13396;12657;20212;10873
-9;'032;Argentina;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;50900;57000;35000;47700;46000;34000;157000;478824;350000;346000;356000;230000;307000;253000;282000;268000;186000;226084;178181;84000;63000;76000;54000;98075;97000;120000;83000;55913
-9;'032;Argentina;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1347;10101;13768;9807;10070;10448;6548;20466;47717;100771;66318;79797;62693;85143;57218;72854;78230;57380;72895;55949;35337;28112;34627;21367;30854;35459;50366;52368;30326
-9;'032;Argentina;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;23000;21000;15000;23000;20000;16000;22000;31000;23000;16000;14000;21000;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1650;Other fibreboard;5616;Import quantity;m3;;;;;;8400;3200;4800;6400;5200;6000;3600;2400;2400;2400;2400;2400;2400;4300;24000;10800;1600;1600;1600;1600;1300;1348;852;59;58;58;2519;1000;400;400;800;600;4000;3600;4000;1000;0;0;0;0;0;0;2000;150;1000;240;70;130;168;1271;155;181;90;44;214;16;665;61
-9;'032;Argentina;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;385;155;270;396;297;382;208;159;159;159;159;159;159;421;2453;1192;219;219;219;219;144;162;113;11;13;13;849;732;140;120;210;117;933;938;1089;450;0;0;0;0;0;0;409;38;279;65;17;49;67;264;116;160;26;15;98;21;117;53
-9;'032;Argentina;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;300;0;0;0;0;0;0;0;0;10000;10000;22504;19000;23186;70000;200;200;7;10;4;3;1;58;46;30;48;20;20;20;862;862
-9;'032;Argentina;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;87;0;0;0;0;0;0;0;0;740;740;1489;2136;2054;19011;78;78;2;19;3;2;0.06;81;76;42;77;11;11;11;158;158
-9;'032;Argentina;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;15400;13500;16900;12700;14000;21902;20112;21271;22008;24219;34854;51386;56020;54967;50544;51000;52000;68000;59000;67000;65000;65000;72000;60000;52000;67000;72000;64000;69000;53000;59000;96000;250000;250000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;300;500;700;800;1000;700;600;200;200;200;200;200;200;200;200;200;3852;3968;7396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;99;198;289;351;339;256;155;87;56;56;56;56;56;56;56;56;1279;1457;2693;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;2738;14216;14700;19200;8200;15300;18100;23800;11400;22000;22000;32600;23400;22000;20200;29800;20800;31200;35500;28400;28400;17065;18902;13264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;171;940;1000;2433;932;1510;2143;2652;1563;4144;3893;4698;3135;2966;2764;4288;3000;5000;6000;7167;7167;4241;5235;3872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1879;Total fibre furnish;5510;Production;t;101000;95000;110000;111000;122000;149000;113000;145000;160000;592000;630000;676000;674000;737000;699000;719000;691000;626000;743000;628800;560000;663000;921000;968000;910000;1089000;1138000;1159000;1089000;1094000;1026000;1011700;1035000;1206000;1308000;1265000;1419000;1247000;1218000;1715000;1712000;1756000;1821000;1919000;1928000;1868000;1884000;1949000;1831000;1934000;1757000;1371000;1437000;1609000;1398000;1310000;1772000;1799000;1646000;1573102;1695000;1919000;1825755
-9;'032;Argentina;1879;Total fibre furnish;5610;Import quantity;t;34000;25000;20000;25000;30000;16700;8700;153700;152000;166400;153000;128000;159500;158300;151500;110000;80600;97700;134500;110500;130900;145400;65100;54700;34800;82600;72000;54900;23100;50300;50300;103738;106347;107500;115700;151800;170900;142350;133400;118500;118200;147407;125358;178350;155698;129620;168610;183938;156356;157197;167038;166008;153380;191921;209911;200069;240760;235920;322206;351606;286716;285902;311569
-9;'032;Argentina;1879;Total fibre furnish;5622;Import value;1000 USD;3365;2475;1980;2475;2970;1653;955;22611;23319;30174;28768;23614;37421;65026;62863;45817;32493;35932;67393;62594;71356;69168;27123;22091;12741;24116;25360;24583;12515;15304;15304;44090;47792;48974;86772;79683;87244;74609;68065;73472;60007;59685;59028;88798;76368;62111;86473;98679;78654;104195;121012;111796;99542;116180;122706;106567;141253;162430;174029;149725;175533;214752;216784
-9;'032;Argentina;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;38300;45100;81900;66000;66000;73400;52000;114000;114000;101461;151360;152400;162700;192700;207200;206000;201700;241000;247000;259000;255488;295517;223000;214382;203382;180382;251382;229151;204000.42;164383;197513;185505;169003;175251;214372;196241;193852;184199;197206;150468;123509
-9;'032;Argentina;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;11599;11599;31940;26000;26000;44700;35000;80000;80000;44356;45176;56897;120902;83468;94114;92919;95595;155415;103200;102567;115137;157010;103565;118657;130324;130064;129438;180265;167495;116195;135440;137858;128289;112282;128058;150798;122216;97771;141431;127778;103568
-9;'032;Argentina;1878;Pulp for paper;5510;Production;t;101000;95000;110000;111000;122000;149000;113000;145000;160000;202000;240000;283000;281000;318000;301000;320000;333000;336000;436000;348800;293000;375000;567000;645000;666000;741000;736000;738000;735000;722000;657000;703700;727000;745000;823000;753000;913000;724000;665000;788000;785000;829000;894000;992000;937000;925000;941000;999000;931000;947000;770000;845000;882000;925000;867000;815000;812000;852000;790000;733000;698000;651000;763000
-9;'032;Argentina;1878;Pulp for paper;5610;Import quantity;t;34000;25000;20000;25000;30000;16700;8700;153700;152000;166400;153000;128000;159500;134600;95900;90500;73100;96900;124800;106900;123900;141900;62000;54500;34700;51300;48000;34900;17100;19000;19000;70172;88347;93800;92100;136100;165900;141050;132700;102500;100200;109407;109299;150340;120698;90620;103610;96938;124356;108197;126038;146008;123758;151383;167911;166069;225760;196800;236253;277461;251645;256976;291323
-9;'032;Argentina;1878;Pulp for paper;5622;Import value;1000 USD;3365;2475;1980;2475;2970;1653;955;22611;23319;30174;28768;23614;37421;58522;47344;39415;29737;35766;65355;61596;70020;68519;26461;22058;12730;20714;20714;21323;11123;11902;11902;38975;45235;47254;80408;77520;86581;74463;68016;70436;57584;54662;56660;83090;69664;55364;71456;77244;72202;89117;107092;106715;92045;105783;112217;98664;137637;153330;155004;134447;166154;206154;211923
-9;'032;Argentina;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;38300;45100;81900;66000;66000;73400;52000;114000;114000;100956;151060;151000;158400;189800;198700;198000;197800;240000;245000;258000;254205;290482;212000;212000;201000;178000;249000;229011;204000.42;164005;196537;184877;168003;175003;214002;196002;193672;184019;197026;150197;123238
-9;'032;Argentina;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;11599;11599;31940;26000;26000;44700;35000;80000;80000;44313;45145;56409;119626;82864;92009;90189;94621;155100;102932;102433;115026;156424;102286;118262;129929;129669;129043;180258;167495;116138;135291;137761;128175;112244;128003;150745;122190;97745;141405;127692;103482
-9;'032;Argentina;1875;Wood pulp;5510;Production;t;51000;60000;72000;71000;86000;91000;79000;108000;123000;166000;206000;244000;243000;272000;259000;275000;265000;287000;387000;308800;252000;333000;496000;559000;575000;622000;615000;617000;614000;605000;579000;591700;678000;697000;657000;625000;789000;616000;564000;681000;678000;722000;782000;874000;755000;794000;684000;860000;715000;711000;637000;710000;749000;778000;731000;696000;688000;723000;660000;620000;609000;567000;676000
-9;'032;Argentina;1875;Wood pulp;5610;Import quantity;t;41100;29500;25400;36900;43900;34800;18800;167700;167800;178600;171500;148900;182100;157700;113200;102400;86600;109100;122700;117400;129400;149400;70400;61500;41100;62200;58900;37600;17800;20700;20700;70166;88047;94900;91500;135300;164700;139950;131500;101530;99230;108437;108739;151010;120698;90620;101710;89138;121356;106197;125038;145104;122692;150518;167036;165605;224792;196220;236231;277595;251693;256998;291312
-9;'032;Argentina;1875;Wood pulp;5622;Import value;1000 USD;4695;3318;2955;4724;5812;4940;3001;25366;26704;32963;33151;28458;43680;71047;57713;45974;37055;41963;65291;69032;73955;73771;31527;26281;16516;26971;26999;22508;11408;12687;12687;38963;44912;47532;79736;76313;84942;73204;66528;69271;56435;53354;55356;82779;68944;54513;69330;69359;69456;86804;104801;104960;90008;104122;111414;97977;136719;152410;154889;134511;166002;206112;211901
-9;'032;Argentina;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;38300;45100;81900;66000;66000;73400;52000;114000;114000;100970;151060;152500;158400;189800;198700;198000;197800;240000;245000;258000;254205;290482;212000;212000;201000;178000;249000;229002;204000;164178;196531;184877;168000;175000;214000;196000;193670;184000;197000;150124;123165
-9;'032;Argentina;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;11599;11599;31940;26000;26000;44700;35000;80000;80000;44326;45145;57109;119626;82864;92009;90189;94621;155100;102932;102433;115026;156424;102286;118262;129929;129669;129043;180231;167493;116357;135282;137761;128169;112239;128001;150743;122188;97709;141392;127664;103454
-9;'032;Argentina;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147000;144000;158000;76000;77000;80000;167000
-9;'032;Argentina;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1111;1310;934;3365;14000;10404;11030
-9;'032;Argentina;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;870;544;1844;9043;7924;8957
-9;'032;Argentina;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-9;'032;Argentina;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-9;'032;Argentina;1654;Mechanical wood pulp (1961-2016);5510;Production;t;17000;19000;27000;22000;23000;20000;21000;22000;23000;28000;32000;41000;34000;34000;25000;31000;34000;27000;33000;22000;19000;25000;30000;25000;21000;23000;18000;18000;18000;6000;3000;700;59000;63000;68000;12000;273000;116000;116000;0;0;0;0;0;0;0;0;0;0;13000;13000;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;34000;25000;20000;25000;30000;16700;8700;7500;8300;9200;7700;3600;1500;500;3700;900;2100;1300;3700;3000;2700;5000;13000;23800;12800;16300;13000;10000;3000;3900;3900;6553;2700;2500;3100;6000;3500;1700;1100;1000;1000;1000;1353;705;150;150;150;6;6;1000;1000;1000;710;683;855;560;;;;;;;
-9;'032;Argentina;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;3365;2475;1980;2475;2970;1653;955;726;715;768;671;330;134;148;1308;235;457;273;940;724;747;1283;3537;5763;2900;3374;3374;3000;900;879;879;1501;518;417;1029;1934;1539;1037;484;416;662;559;295;289;200;200;55;9;9;327;429;393;595;591;498;327;;;;;;;
-9;'032;Argentina;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646;87;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;3000;10000;16000;16000;25000;25000;22000;26000;30000;39000;44000;62000;59000;66000;73000;57000;54000;39000;56000;118000;126000;122000;153000;151000;158000;170000;170000;171000;172000;180000;185000;181000;62000;119000;121000;108000;67000;59000;38000;172000;169000;169000;190000;251000;188000;212000;183000;180000;192000;192000;127000;117000;141000;226000;141000;118000;;;;;;;
-9;'032;Argentina;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;400;100;100;300;500;500;200;400;400;400;400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;447;447;100;100;100;200;300;300;0;0;35407;20463;39141;19548;8470;0;0;0;197;38;8;18;0;56;13;;;;;;;
-9;'032;Argentina;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;40;15;9;36;89;89;69;155;155;155;155;641;641;641;641;641;641;641;641;641;641;641;641;641;151;151;55;55;55;64;124;124;0;0;17682;10258;19624;9674;4223;0;0;0;156;20;15;35;0;69;23;;;;;;;
-9;'032;Argentina;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;100;500;400;500;0;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;55;238;213;191;0;98;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1656;Chemical wood pulp;5510;Production;t;31000;31000;29000;33000;38000;41000;33000;57000;67000;95000;125000;136000;145000;167000;155000;181000;171000;216000;293000;163800;104000;183000;310000;380000;396000;429000;427000;428000;424000;419000;391000;410000;557000;515000;468000;505000;449000;441000;410000;509000;509000;553000;592000;623000;567000;582000;501000;680000;523000;506000;497000;593000;608000;552000;590000;578000;541000;579000;502000;544000;532000;487000;509000
-9;'032;Argentina;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;145800;143600;156600;144800;123100;157300;133800;91700;89000;70400;95100;111000;102000;119700;135400;47500;29000;20400;33300;33300;23200;12400;13400;13400;63014;84900;90700;88300;129000;161000;137850;130000;100500;98200;72000;86073;109440;100000;81000;101360;88932;120350;104000;123000;144000;121910;149782;166000;165000;223649;194880;235168;273890;237343;246314;280123
-9;'032;Argentina;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;21845;22589;29297;27987;23033;37102;58254;45811;38872;28975;35232;60054;59789;68505;66468;22159;15285;9065;16384;16384;17367;9267;10067;10067;37161;44243;46366;78652;74205;83339;71941;65818;68822;55723;35063;44440;61944;58400;49707;69010;69085;68414;84827;102930;104444;89291;103409;110608;97554;135948;151467;154162;132240;156561;197718;202478
-9;'032;Argentina;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;38300;45100;81900;66000;66000;73400;52000;114000;114000;99611;150700;150600;157900;189400;198200;198000;197500;240000;245000;258000;254205;290482;212000;212000;201000;178000;249000;229002;204000;164003;196531;184877;168000;175000;214000;196000;193670;184000;197000;150124;123165
-9;'032;Argentina;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;11599;11599;31940;26000;26000;44700;35000;80000;80000;43639;45030;56267;119388;82651;91818;90189;94523;155100;102932;102433;115026;156424;102286;118262;129929;129669;129043;180231;167493;116133;135282;137761;128169;112239;128001;150743;122188;97709;141392;127664;103454
-9;'032;Argentina;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;30000;42000;49000;50000;57000;60000;65000;88000;106000;142000;80000;51000;90000;123000;152000;148000;162000;153000;153000;152000;134000;121000;90000;122000;113000;84000;91000;79000;76000;78000;78000;92000;92000;95000;98000;94000;100000;126000;27000;25000;0;95000;98000;96000;96000;83000;79000;0;0;0;0;0;0;0
-9;'032;Argentina;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;71300;68100;77900;66900;58900;69100;50500;31100;33000;9700;14500;24500;24000;22700;28300;2100;200;100;300;300;300;200;200;200;1222;600;600;200;200;400;700;600;300;0;0;0;0;0;0;570;1000;350;1000;1000;1000;1159;1361;2000;1000;2000;1570;1392;1268;1765;1640;1441
-9;'032;Argentina;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;10160;10293;13927;12351;9901;15523;20148;13759;12636;3321;4543;10657;12236;10412;11061;902;75;27;144;144;144;100;100;100;629;268;238;201;116;173;337;285;165;0;0;0;0;0;0;383;758;238;630;617;747;955;1114;1459;811;1072;1423;1117;898;1974;1652;1271
-9;'032;Argentina;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;600;500;500;900;2000;7000;4000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;124;124
-9;'032;Argentina;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;173;174;258;341;666;2299;1083;1197;702;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;113;113
-9;'032;Argentina;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;40000;48000;52000;55000;68000;67000;80000;50000;68600;95800;53000;35000;61000;159000;200000;222000;230000;238000;239000;243000;259000;241000;289000;393000;364000;353000;381000;370000;347000;332000;398000;393000;437000;467000;477000;418000;460000;375000;653000;476000;476000;198000;307000;496000;440000;497000;499000;541000;579000;470000;457000;442000;402000;419000
-9;'032;Argentina;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;56100;51400;54100;54000;46800;70400;69200;53800;49600;57300;79400;85100;75000;95300;104400;44600;28500;19900;32800;32800;22700;12000;13000;13000;61217;83700;89200;87500;128600;158000;137000;129100;100000;98000;71000;85723;109405;100000;81000;100500;86932;119000;102000;121000;142000;119719;147763;163000;163000;221000;192750;233240;272104;235000;244000;278311
-9;'032;Argentina;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;8985;8625;11057;11549;9828;17721;32928;28618;22980;24095;30180;48593;45814;57154;54091;20951;15083;8867;16173;16173;17156;9100;9900;9900;36042;43417;45211;77920;73982;81996;71502;65364;68535;55554;34690;44274;61889;58400;49707;68114;67029;67284;82999;100829;102211;86624;101115;107877;96004;133970;149213;152141;130495;153682;194644;200252
-9;'032;Argentina;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;38300;45100;81900;66000;66000;73400;52000;114000;114000;97173;145900;150000;151800;180500;194000;189600;193500;228000;240000;252000;250159;288839;211000;211000;200000;177000;249000;229000;204000;164000;196531;184877;168000;175000;214000;196000;193670;184000;197000;150000;123041
-9;'032;Argentina;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;11599;11599;31940;26000;26000;44700;35000;80000;80000;42432;43211;56045;115092;78895;90301;87345;93440;149143;101415;101315;113724;155835;101884;118036;129703;128579;129043;180228;167493;116127;135282;137761;128169;112239;128001;150743;122188;97709;141392;127551;103341
-9;'032;Argentina;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32000;87000;90000;85000;90000
-9;'032;Argentina;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649;560;536;518;578;674;371
-9;'032;Argentina;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906;831;904;847;905;1422;955
-9;'032;Argentina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;2000;3000;6000;2000;2400;3200;1800;;;;;;1000;1000;1000;;;;;;0;1000;1000;0;0;0;0;0;0;0;19000;30000;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;7100;12000;10600;9900;6000;4600;1600;300;500;100;100;100;1000;100;600;200;100;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;991;1679;1727;1184;989;886;434;186;217;54;35;79;603;66;240;55;33;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-9;'032;Argentina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;25000;35000;35000;40000;40000;25000;30000;31000;39000;52000;29000;18000;32000;28000;28000;26000;36000;35000;35000;29000;26000;29000;31000;42000;38000;30000;32000;0;18000;0;33000;24000;24000;30000;29000;25000;22000;0;0;22000;30000;204000;188000;16000;16000;10000;0;;;;;;;
-9;'032;Argentina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;11300;12100;14000;14000;11400;13200;12500;6500;5900;3300;1100;1300;2000;1600;2100;600;200;400;200;200;200;200;200;200;575;600;900;600;200;2600;150;300;200;200;1000;350;35;0;0;290;1000;1000;1000;1000;1000;1032;658;1000;1000;;;;;;;
-9;'032;Argentina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1709;1992;2586;2903;2315;2972;4744;3248;3039;1505;474;725;1136;873;1076;251;94;171;67;67;67;67;67;67;490;558;917;531;107;1170;102;169;122;169;373;166;55;0;0;513;1298;892;1198;1484;1486;1712;1180;1272;739;;;;;;;
-9;'032;Argentina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2324;4200;100;5600;8000;2200;1400;0;9000;2000;6000;4046;1643;1000;1000;1000;1000;0;2;0;3;0;0;0;0;;;;;;;
-9;'032;Argentina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153;1646;48;4038;3415;851;545;0;4760;815;1118;1302;589;402;226;226;1090;0;3;0;6;0;0;0;0;;;;;;;
-9;'032;Argentina;1667;Dissolving wood pulp;5510;Production;t;;;;;;5000;3000;3000;3000;4000;5000;5000;5000;5000;6000;6000;6000;5000;5000;5000;3000;3000;3000;3000;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1667;Dissolving wood pulp;5610;Import quantity;t;7100;4500;5400;11900;13900;18100;10100;14000;15800;12700;18700;21700;22800;23200;17400;12100;13700;12300;6600;11000;5600;7600;8500;7300;6500;11200;11200;3000;1000;2000;2000;152;0;1600;0;200;0;100;100;30;30;30;850;1724;1000;1000;200;200;1000;1000;1000;96;54;53;125;32;32;30;129;340;350;280;159
-9;'032;Argentina;1667;Dissolving wood pulp;5622;Import value;1000 USD;1330;843;975;2249;2842;3287;2046;2755;3385;2889;4457;5006;6355;12576;10439;6712;7468;6303;3656;7878;4062;5379;5190;4592;3910;6572;6600;1500;600;1100;1100;150;0;694;0;119;0;102;102;33;50;50;363;922;670;383;265;265;1033;1494;1422;108;87;122;239;73;65;73;183;427;398;470;466
-9;'032;Argentina;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;1500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;175;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;224;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1668;Pulp from fibres other than wood;5510;Production;t;50000;35000;38000;40000;36000;63000;37000;40000;40000;40000;39000;44000;43000;51000;48000;51000;74000;54000;54000;45000;44000;45000;74000;89000;91000;119000;121000;121000;121000;117000;78000;112000;49000;48000;166000;128000;124000;108000;101000;107000;107000;107000;112000;118000;182000;131000;257000;139000;216000;236000;133000;135000;133000;147000;136000;119000;124000;129000;130000;113000;89000;84000;87000
-9;'032;Argentina;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;500;200;800;200;100;100;200;200;100;8700;500;100;100;100;300;100;300;300;300;300;300;300;158;300;500;600;1000;1200;1200;1300;1000;1000;1000;1410;1054;1000;1000;2100;8000;4000;3000;2000;1000;1120;918;1000;496;1000;610;151;206;302;258;170
-9;'032;Argentina;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;100;74;162;96;51;70;153;150;106;3720;442;127;127;124;369;124;315;315;315;315;315;315;162;323;416;672;1326;1639;1361;1590;1198;1199;1358;1667;1233;1390;1234;2391;8150;3779;3807;3713;1863;2124;1783;1042;760;983;993;298;363;550;512;488
-9;'032;Argentina;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0.42;2;6;0;3;3;2;2;2;19;26;73;73
-9;'032;Argentina;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;2;5;9;0;6;5;2;2;2;36;13;28;28
-9;'032;Argentina;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;40000;40000;0;0;0;0;0;0;0;1000;400;247;249;258;241;268;250;213;90;979;72;1;84;90;138
-9;'032;Argentina;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51196;44659;44659;0;0;0;0;0;0;0;353;152;203;214;284;320;311;238;212;108;1304;64;4;102;84;168
-9;'032;Argentina;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;0.2;0.3;0;0;0;43;43;43;10;10
-9;'032;Argentina;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86;2;3;0;0;0;23;23;23;5;5
-9;'032;Argentina;1669;Recovered paper;5510;Production;t;;;;;;;;;;390000;390000;393000;393000;419000;398000;399000;358000;290000;307000;280000;267000;288000;354000;323000;244000;348000;402000;421000;354000;372000;369000;308000;308000;461000;485000;512000;506000;523000;553000;927000;927000;927000;927000;927000;991000;943000;943000;950000;900000;987000;987000;526000;555000;684000;531000;495000;960000;947000;856000;840102;997000;1268000;1062755
-9;'032;Argentina;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;23700;55600;19500;7500;800;9700;3600;7000;3500;3100;200;100;31300;24000;20000;6000;31300;31300;33566;18000;13700;23600;15700;5000;1300;700;16000;18000;38000;16059;28010;35000;39000;65000;87000;32000;49000;41000;20000;29622;40538;42000;34000;15000;39120;85953;74145;35071;28926;20246
-9;'032;Argentina;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;6504;15519;6402;2756;166;2038;998;1336;649;662;33;11;3402;4646;3260;1392;3402;3402;5115;2557;1720;6364;2163;663;146;49;3036;2423;5023;2368;5708;6704;6747;15017;21435;6452;15078;13920;5081;7497;10397;10489;7903;3616;9100;19025;15278;9379;8598;4861
-9;'032;Argentina;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;300;1400;4300;2900;8500;8000;3900;1000;2000;1000;1283;5035;11000;2382;2382;2382;2382;140;0;378;976;628;1000;248;370;239;180;180;180;271;271
-9;'032;Argentina;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;31;488;1276;604;2105;2730;974;315;268;134;111;586;1279;395;395;395;395;7;0;57;149;97;114;38;55;53;26;26;26;86;86
-9;'032;Argentina;1876;Paper and paperboard;5510;Production;t;373000;365000;341300;407600;523400;526000;472300;527800;581900;643500;716900;747800;772000;781000;650000;529000;539000;645000;789000;713000;669000;730000;899000;942000;864000;998000;1027000;974000;917000;891000;965000;977000;850000;961000;1025000;991000;1133000;978000;1012000;1082000;1150000;1072000;1212000;1345000;1770000;1544000;1531000;1733000;1469000;1284000;1237000;1186000;1215000;1222440;1274000;1648000;1739000;1709000;1678000;1618000;1745381;1874000;1928000
-9;'032;Argentina;1876;Paper and paperboard;5610;Import quantity;t;242100;160000;151600;181900;236500;260200;226100;266200;326900;302900;249100;219500;219200;245100;177600;124300;181300;189200;170400;247000;208200;94700;97200;50500;42700;85400;99900;57000;51000;55000;92000;372637;497500;476400;499500;535400;751900;801700;713800;720000;629000;278846;481655;671816;678282;727000;848300;844480;641000;866000;907000;802446;778303;686455;771001;688000;683200;639400;548280;539415;551895;656037;493630
-9;'032;Argentina;1876;Paper and paperboard;5622;Import value;1000 USD;43471;30925;28136;34069;43846;48319;43918;50088;62085;63385;56120;53295;62157;114893;104627;74022;100544;110585;111167;183304;162262;83392;87563;50129;46378;77678;85617;48800;48000;52900;78000;272250;328029;344529;513298;551166;655589;711041;587895;610528;502100;208851;306788;461258;510571;590695;676484;793577;565989;796120;933463;855793;839576;768271;811869;673768;642319;662801;561593;535525;592803;772076;663093
-9;'032;Argentina;1876;Paper and paperboard;5910;Export quantity;t;200;200;600;300;300;300;500;3400;8700;5800;4700;11400;55100;50300;11500;25000;26200;26100;31500;15200;9400;7200;12200;19700;13400;9900;7900;54100;63000;99000;71000;17990;15900;6400;41900;53900;63100;56100;39650;55240;73000;116122;129073;175944;185475;208000;155000;152000;174000;165000;141572;134396;102526;79875;66479;76250;114654;141905;89768;77708;134540;66290;35559
-9;'032;Argentina;1876;Paper and paperboard;5922;Export value;1000 USD;52;44;177;57;163;163;192;795;1572;1597;1313;3503;14300;25938;4284;6818;11399;11343;17636;11649;7690;5577;4643;7498;5342;4769;4169;34500;34700;41500;31700;14064;13799;6375;51360;63437;72162;66421;52709;57075;61697;73790;91450;152362;161070;181391;176594;181851;196187;223812;214284;203957;178244;153898;130589;118488;149397;176283;126212;101214;158115;111199;69841
-9;'032;Argentina;2042;Graphic papers;5510;Production;t;86500;88700;91500;91700;105800;113900;93800;108600;110700;125900;133900;125300;153500;137000;94000;132000;158000;180000;330000;249000;249000;250000;342000;384000;358000;410000;411000;390000;400000;378000;374000;403000;338000;375000;422000;394000;399000;426000;368000;388000;425000;347000;519000;567000;596000;577000;607000;613000;605000;402000;491000;473000;441000;473000;513000;480000;472000;331000;348000;253000;238381;258000;280000
-9;'032;Argentina;2042;Graphic papers;5610;Import quantity;t;231600;145400;145700;174800;229700;243400;209200;256600;314200;278500;226400;191500;193700;218400;155000;113200;171600;174700;144100;212000;170900;68400;53600;31100;22500;64600;79100;37000;30000;31000;68000;202329;289600;279500;161800;125900;209600;436400;384100;399000;315000;96000;192310;286763;298858;351000;401400;447292;373000;456000;472000;431000;363459;309067;361001;296000;270000;237130;223453;205982;166859;241751;195812
-9;'032;Argentina;2042;Graphic papers;5622;Import value;1000 USD;38852;24925;24920;30265;39395;41398;35732;44297;54769;49835;44054;39193;43960;91919;78966;60971;86233;90102;83215;140237;119148;50169;38141;25615;17308;37743;45682;22000;20000;22900;48000;147062;189380;185839;151613;130483;148236;379325;309249;338814;274767;77942;128543;200093;226388;297073;345426;445171;344634;439194;510187;492685;431166;380797;402600;306747;253868;260329;240458;223800;194792;278410;287357
-9;'032;Argentina;2042;Graphic papers;5910;Export quantity;t;100;100;400;200;0;;200;2800;8100;4300;4300;6500;12000;13200;1500;7000;21600;21900;26900;11200;4800;4000;11400;18700;12500;9000;7000;35100;47000;85000;57000;10757;8900;3000;2400;30500;36700;29600;13900;11200;15000;58000;73187;106061;112764;126000;100000;90000;84000;83000;62572;64088;49202;33692;22089;32486;53000;62585;41950;38375;45251;14685;3286
-9;'032;Argentina;2042;Graphic papers;5922;Export value;1000 USD;19;10;74;27;0;;29;599;1356;1036;1121;1669;4682;9118;921;2934;8790;9027;14595;8599;3911;3016;4125;6724;4273;3700;3100;10500;13700;21500;11700;7643;7039;2630;3455;26099;26831;22028;12014;11063;11055;32529;45172;80132;85289;96049;100147;94921;76651;79527;67777;63768;45164;31648;20948;27944;43565;56578;36393;24245;35310;14577;3988
-9;'032;Argentina;1671;Newsprint;5510;Production;t;9300;12500;22100;8200;4400;2600;3200;4000;1800;3200;2600;3400;5500;;;3000;16000;38000;94000;97000;110000;94000;168000;202000;201000;230000;230000;218000;221000;208000;198000;206000;129000;142000;176000;166000;138000;154000;151000;153000;168000;171000;174000;170000;181000;185000;185000;162000;152000;168000;153000;141000;115000;131000;147000;116000;115000;101000;75000;43000;33381;42000;49000
-9;'032;Argentina;1671;Newsprint;5610;Import quantity;t;213700;135200;136900;165200;220100;237000;205600;244900;299500;274300;220100;181600;187400;202500;148800;110000;160000;161100;117300;174000;136500;49300;28000;17600;12500;47500;62000;24000;20000;15000;52000;97076;154100;117100;105300;64400;138400;104000;98000;108000;66000;9000;46243;65163;67000;71000;74100;84701;52000;85000;79000;69000;41009;14479;52000;31000;34000;21640;20071;13981;10815;8033;9874
-9;'032;Argentina;1671;Newsprint;5622;Import value;1000 USD;34223;21983;22283;27354;36345;39489;34655;40105;49746;47870;41772;34744;42208;81107;73990;54491;74427;76291;59552;98724;83637;30843;16019;10902;8347;24061;32000;12000;12000;9900;35000;48222;75429;58973;81758;50437;76023;64474;55868;64898;45453;4128;19615;34294;40659;47568;47406;61605;31936;49757;56200;48877;28778;10671;32173;16748;18269;13161;11478;6525;6112;6563;8766
-9;'032;Argentina;1671;Newsprint;5910;Export quantity;t;100;100;400;200;0;;200;200;400;100;200;200;300;;;200;600;100;100;200;200;800;9200;14700;10200;6000;4000;25000;32000;55000;27000;1365;300;100;0;0;200;200;0;0;1000;12000;8593;1286;1000;1000;1000;1000;2000;3000;425;85;162;83;83;484;1000;1102;201;617;617;26;26
-9;'032;Argentina;1671;Newsprint;5922;Export value;1000 USD;19;10;74;27;0;;29;25;55;21;29;29;56;;;58;228;63;63;132;132;455;2531;4448;3000;2000;1400;8800;12000;19800;10000;652;151;84;0;0;123;131;0;0;454;3755;3261;687;299;682;682;682;939;2068;335;71;122;62;62;251;503;930;166;356;356;26;26
-9;'032;Argentina;1674;Printing and writing papers;5510;Production;t;77200;76200;69400;83500;101400;111300;90600;104600;108900;122700;131300;121900;148000;137000;94000;129000;142000;142000;236000;152000;139000;156000;174000;182000;157000;180000;181000;172000;179000;170000;176000;197000;209000;233000;246000;228000;261000;272000;217000;235000;257000;176000;345000;397000;415000;392000;422000;451000;453000;234000;338000;332000;326000;342000;366000;364000;357000;230000;273000;210000;205000;216000;231000
-9;'032;Argentina;1674;Printing and writing papers;5610;Import quantity;t;17900;10200;8800;9600;9600;6400;3600;11700;14700;4200;6300;9900;6300;15900;6200;3200;11600;13600;26800;38000;34400;19100;25600;13500;10000;17100;17100;13000;10000;16000;16000;105253;135500;162400;56500;61500;71200;332400;286100;291000;249000;87000;146067;221600;231858;280000;327300;362591;321000;371000;393000;362000;322450;294588;309001;265000;236000;215490;203382;192001;156044;233718;185938
-9;'032;Argentina;1674;Printing and writing papers;5622;Import value;1000 USD;4629;2942;2637;2911;3050;1909;1077;4192;5023;1965;2282;4449;1752;10812;4976;6480;11806;13811;23663;41513;35511;19326;22122;14713;8961;13682;13682;10000;8000;13000;13000;98840;113951;126866;69855;80046;72213;314851;253381;273916;229314;73814;108928;165799;185729;249505;298020;383566;312698;389437;453987;443808;402388;370126;370427;289999;235599;247168;228980;217275;188680;271847;278591
-9;'032;Argentina;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;2600;7700;4200;4100;6300;11700;13200;1500;6800;21000;21800;26800;11000;4600;3200;2200;4000;2300;3000;3000;10100;15000;30000;30000;9392;8600;2900;2400;30500;36500;29400;13900;11200;14000;46000;64594;104775;111764;125000;99000;89000;82000;80000;62147;64003;49040;33609;22006;32002;52000;61483;41749;37758;44634;14659;3260
-9;'032;Argentina;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;574;1301;1015;1092;1640;4626;9118;921;2876;8562;8964;14532;8467;3779;2561;1594;2276;1273;1700;1700;1700;1700;1700;1700;6991;6888;2546;3455;26099;26708;21897;12014;11063;10601;28774;41911;79445;84990;95367;99465;94239;75712;77459;67442;63697;45042;31586;20886;27693;43062;55648;36227;23889;34954;14551;3962
-9;'032;Argentina;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-9;'032;Argentina;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200;20600;19000;14000;10000;20364;34174;34174;35000;33100;44851;33000;39000;36000;34000;22770;19483;25000;14000;9000;12670;6166;4613;3122;3523;1312
-9;'032;Argentina;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22524;15799;13378;10849;6299;11084;19385;19385;24899;24353;39939;27756;31680;32603;29539;21042;18554;20964;11354;7048;9902;4892;3102;2138;2659;2111
-9;'032;Argentina;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;1800;200;1000;3000;348;2504;2504;4000;5000;3000;1000;1000;147;3;1;0;6;2;1000;200;887;887;887;69;69
-9;'032;Argentina;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3833;1070;121;515;1806;244;2166;2166;2693;4294;2619;1491;525;178;10;2;0;31;13;320;125;558;558;558;126;126
-9;'032;Argentina;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243000;188000;204000;232000;151000;318000;376000;393000;372000;411000;437000;442000;232000;338000;332000;326000;342000;366000;364000;341000;219000;266000;210000;205000;216000;231000
-9;'032;Argentina;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43100;48200;40000;39000;11000;24028;32507;54867;41000;48200;53029;47000;51000;68000;58000;46411;40380;50001;41000;40000;32330;34273;35265;29141;29261;38742
-9;'032;Argentina;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46247;45585;42360;40954;13541;22665;25647;43290;44548;53686;68200;58588;70524;102722;107066;92079;79864;87474;69394;49504;58107;52946;58272;55794;65310;72178
-9;'032;Argentina;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22300;9900;9000;11000;39000;57005;93738;102494;111000;85000;78000;76000;74000;57000;60000;45929;31462;21000;31000;49000;56000;32812;28821;40097;9883;1761
-9;'032;Argentina;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16645;8602;8938;8698;24770;37655;71796;78510;86528;87740;80350;69272;72291;59884;56851;42486;29743;19689;26735;40015;48948;30572;18234;30467;9058;1798
-9;'032;Argentina;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;29000;31000;25000;25000;27000;21000;22000;20000;11000;14000;11000;2000;0;0;0;0;0;0;16000;11000;7000;0;0;0;0
-9;'032;Argentina;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261100;217300;232000;196000;66000;101675;154919;142817;204000;246000;264711;241000;281000;289000;270000;253269;234725;234000;210000;187000;170490;162943;152123;123781;200934;145884
-9;'032;Argentina;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246080;191997;218178;177511;53974;75179;120767;123054;180058;219981;275427;226354;287233;318662;307203;289267;271708;261989;209251;179047;179159;171142;155901;130748;203878;204302
-9;'032;Argentina;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;2200;2000;2000;4000;7241;8533;6766;10000;9000;8000;5000;5000;5000;4000;3110;2147;1000;1000;2000;5283;8050;8050;3650;4707;1430
-9;'032;Argentina;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419;2342;2004;1388;2198;4012;5483;4314;6146;7431;11270;4949;4643;7380;6836;2554;1843;1166;945;2727;6575;5097;5097;3929;5367;2038
-9;'032;Argentina;1675;Other paper and paperboard;5510;Production;t;286500;276300;249800;315900;417600;412100;378500;419200;471200;517600;583000;622500;618500;644000;556000;397000;381000;465000;459000;464000;420000;480000;557000;558000;506000;588000;616000;584000;517000;513000;591000;574000;512000;586000;603000;597000;734000;552000;644000;694000;725000;725000;693000;778000;1174000;967000;924000;1120000;864000;882000;746000;713000;774000;749440;761000;1168000;1267000;1378000;1330000;1365000;1507000;1616000;1648000
-9;'032;Argentina;1675;Other paper and paperboard;5610;Import quantity;t;10500;14600;5900;7100;6800;16800;16900;9600;12700;24400;22700;28000;25500;26700;22600;11100;9700;14500;26300;35000;37300;26300;43600;19400;20200;20800;20800;20000;21000;24000;24000;170308;207900;196900;337700;409500;542300;365300;329700;321000;314000;182846;289345;385053;379424;376000;446900;397188;268000;410000;435000;371446;414844;377388;410000;392000;413200;402270;324827;333433;385036;414286;297818
-9;'032;Argentina;1675;Other paper and paperboard;5622;Import value;1000 USD;4619;6000;3216;3804;4451;6921;8186;5791;7316;13550;12066;14102;18197;22974;25661;13051;14311;20483;27952;43067;43114;33223;49422;24514;29070;39935;39935;26800;28000;30000;30000;125188;138649;158690;361685;420683;507353;331716;278646;271714;227333;130909;178245;261165;284183;293622;331058;348406;221355;356926;423276;363108;408410;387474;409269;367021;388451;402472;321135;311725;398011;493666;375736
-9;'032;Argentina;1675;Other paper and paperboard;5910;Export quantity;t;100;100;200;100;300;300;300;600;600;1500;400;4900;43100;37100;10000;18000;4600;4200;4600;4000;4600;3200;800;1000;900;900;900;19000;16000;14000;14000;7233;7000;3400;39500;23400;26400;26500;25750;44040;58000;58122;55886;69883;72711;82000;55000;62000;90000;82000;79000;70308;53324;46183;44390;43764;61654;79320;47818;39333;89289;51605;32273
-9;'032;Argentina;1675;Other paper and paperboard;5922;Export value;1000 USD;33;34;103;30;163;163;163;196;216;561;192;1834;9618;16820;3363;3884;2609;2316;3041;3050;3779;2561;518;774;1069;1069;1069;24000;21000;20000;20000;6421;6760;3745;47905;37338;45331;44393;40695;46012;50642;41261;46278;72230;75781;85342;76447;86930;119536;144285;146507;140189;133080;122250;109641;90544;105832;119705;89819;76969;122805;96622;65853
-9;'032;Argentina;1676;Household and sanitary papers;5510;Production;t;;;;;;;;24600;31300;33100;38600;40400;79000;46000;42000;38000;38000;39000;46000;39000;45000;46000;46000;53000;58000;55000;45000;43000;38000;38000;50000;67000;42000;79000;66000;86000;114000;90000;118000;122000;132000;132000;87000;136000;164000;76000;170000;258000;176000;200000;219000;226000;177000;195000;214000;204000;350000;353000;381000;373000;382000;395000;418000
-9;'032;Argentina;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16200;10800;14000;28200;23300;2000;2000;300;942;355;1186;2000;3700;5843;1000;4000;2000;1446;3243;6881;8000;13000;19000;5380;6001;5269;4141;9381;8198
-9;'032;Argentina;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16994;13195;15108;24994;18160;2624;2669;467;587;711;1329;2208;4622;9329;1706;5954;3220;2607;5510;11906;15190;18395;25151;8202;9394;7514;7597;16807;15787
-9;'032;Argentina;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;1900;1100;600;0;2000;2000;4000;5378;6148;2111;1000;2000;6000;5000;5000;5000;4000;4314;3026;6000;9000;8000;11000;99;7151;11783;12811;3032
-9;'032;Argentina;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2571;1964;1028;601;0;2580;2191;2735;4486;5439;2039;1355;3472;8061;5795;6959;8743;6469;6635;4954;8619;12430;10210;14757;131;7997;13673;17321;4587
-9;'032;Argentina;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437000;497000;545000;538000;538000;571000;604000;960000;831000;705000;827000;661000;641000;500000;460000;512000;526440;519000;930000;869000;970000;895000;937000;1069000;1164000;1174000
-9;'032;Argentina;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312300;281100;292000;288000;168546;278418;357638;344939;347000;436500;380370;258000;396000;423000;362000;404125;363940;395000;375000;389000;392350;314398;323465;376390;400582;285320
-9;'032;Argentina;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261638;214453;218770;181681;103894;162120;208754;223887;233617;310914;319432;201435;332644;401286;339215;381508;355008;372776;333096;346973;379977;297072;287012;372886;457966;340804
-9;'032;Argentina;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;22250;39040;52000;49122;50228;58001;65741;76000;52000;54000;84000;75000;73000;65308;48359;42777;38119;34081;53220;68000;47706;32169;77254;38502;28969
-9;'032;Argentina;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32970;30634;34150;37408;29974;40305;52716;58177;65851;66720;71557;106681;131043;131333;127623;119767;113062;96681;73532;91139;100594;89395;68679;105699;74822;56570
-9;'032;Argentina;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;147600;160200;173200;186000;178400;182000;360000;438000;275000;270000;327000;379000;377000;352000;407000;464000;462000;394000;505000;534000;506000;436000;434000;498000;425000;409000;408000;500000;463000;607000;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;200;200;1500;5000;9900;2600;13200;5400;5400;800;17100;16000;17000;19000;19000;134000;165000;174500;296500;363100;489000;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;294;415;1775;5721;6938;2151;7490;3188;3188;800;34107;20800;21000;22000;22000;91387;101213;105631;284615;316136;386128;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27700;12000;13300;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21172;9569;11041;;;;;;;;;;;;;;;;;;;;;;;;;;
-9;'032;Argentina;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;329000;437000;353000;353000;380000;418000;770000;595000;394000;564000;453000;507000;407000;241000;311000;277000;334000;727000;690000;780000;732000;774000;886000;906000;882000
-9;'032;Argentina;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149600;127600;147000;137000;75000;122667;218642;170092;172000;249800;234999;147000;223000;231000;194000;238397;204679;205000;200000;261000;247490;196883;206086;211697;253992;159621
-9;'032;Argentina;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74218;56173;70585;58587;27496;50100;91853;82719;79000;132143;147284;81193;142091;168118;133408;174588;149031;142862;126485;170366;182694;138187;128435;162230;239263;139883
-9;'032;Argentina;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;10600;29000;40000;27000;27295;28222;16700;27000;20000;16000;31000;22000;13000;12000;6968;5968;5000;5000;20000;27000;2141;3124;35310;11147;11147
-9;'032;Argentina;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2687;3881;11357;13396;8597;9051;11119;8484;10900;8632;8708;12930;12827;8581;7116;4366;3981;3265;2359;11141;15295;1184;1607;23239;8614;8614
-9;'032;Argentina;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114000;114000;82000;133000;133000;94000;102000;100000;118000;118000;107000;119000;73000;50000;135000;97000;104529;112000;158000;137000;132000;118000;128000;142000;184000;213000
-9;'032;Argentina;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104800;99100;99000;93000;64000;120632;83969;119821;121000;136000;92017;61000;112000;134000;118000;116108;108398;136000;119000;68000;85000;60705;51508;92677;73910;73572
-9;'032;Argentina;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134565;114594;109947;88380;54807;85988;80933;105192;111926;131951;117800;73341;125683;164249;145485;146504;144781;166249;144885;112201;130804;96481;91249;133878;128850;131353
-9;'032;Argentina;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;10400;8000;7000;15000;9431;13832;33094;40000;23000;31000;46000;45000;50000;46000;36666;32346;27000;21000;22000;21000;22931;20575;22759;20374;15864
-9;'032;Argentina;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27408;24776;19710;19364;16775;22287;31538;39634;45960;48154;53797;86835;110062;111662;111233;110132;104291;87082;65018;70971;66696;73892;60984;66496;59962;45971
-9;'032;Argentina;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;50000;11000;49000;49000;63000;74000;58000;106000;97000;121000;59000;58000;40000;72000;94000;136702;63000;38000;36000;51000;38000;28000;34000;42000;42000
-9;'032;Argentina;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53200;48700;41000;56000;28000;32378;41753;41752;48000;46800;50684;48000;54000;51000;45000;44585;47733;50000;51000;55000;56180;53042;60795;65673;60981;49677
-9;'032;Argentina;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49523;40308;35294;33584;20782;24527;31005;31013;39491;44462;52292;45404;60409;63924;56356;56430;58458;60408;58631;61329;64152;59971;64377;72560;81652;67137
-9;'032;Argentina;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;1200;2000;5000;7000;9072;9200;9200;9000;9000;7000;7000;7000;9000;7000;4570;4389;6000;8000;11000;19000;21209;7045;18914;6871;1848
-9;'032;Argentina;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2764;1951;3057;4648;4564;7572;8000;8000;8991;9934;9052;6916;7600;10340;8993;5055;4617;6158;6011;8880;18144;13415;5184;15706;6161;1900
-9;'032;Argentina;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;4000;15000;3000;3000;34000;10000;32000;12000;96000;35000;30000;3000;3000;12000;10000;8209;10000;7000;6000;7000;7000;7000;7000;32000;37000
-9;'032;Argentina;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5700;5000;2000;1546;2741;13274;13274;6000;3900;2670;2000;7000;7000;5000;5035;3130;4000;5000;5000;3680;3768;5076;6343;11699;2450
-9;'032;Argentina;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3332;3378;2944;1130;809;1505;4963;4963;3200;2358;2056;1497;4461;4995;3966;3986;2738;3257;3095;3077;2327;2433;2951;4218;8201;2431
-9;'032;Argentina;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;50;40;0;122;4430;6747;6747;0;0;0;0;1000;1000;308;155;74;119;81;220;1000;1425;1425;271;110;110
-9;'032;Argentina;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;26;26;0;38;1395;2059;2059;0;0;0;0;554;750;281;214;173;176;144;147;459;904;904;258;85;85
-9;'032;Argentina;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;247000;279700;311300;358400;403700;357500;238000;76000;84000;73000;99000;34000;48000;23000;27000;47000;43000;54000;28000;37000;35000;43000;41000;43000;82000;61000;99000;37000;48000;13000;25000;29000;27000;55000;55000;35000;38000;50000;60000;49000;35000;27000;41000;27000;27000;85000;28000;28000;34000;48000;55000;54000;55000;56000;57000;56000
-9;'032;Argentina;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;16800;16900;9600;12700;24400;22700;28000;25500;26700;22600;11100;9500;14300;24800;30000;27400;23700;30400;14000;14800;20000;3700;4000;4000;5000;5000;36308;42900;22400;25000;35600;39300;24800;25300;27000;24000;14000;9985;27060;33299;27000;6700;10975;9000;10000;10000;8000;7476;6567;7000;4000;5200;4540;4428;4699;4505;4323;4300
-9;'032;Argentina;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;6921;8186;5791;7316;13550;12066;14102;18197;22974;25661;13051;14017;20068;26177;37346;36176;31072;41932;21326;25882;39135;5828;6000;7000;8000;8000;33801;37436;53059;60076;91352;106117;45084;46033;50320;42983;26548;15538;51700;58967;57797;15522;19645;18214;18328;18770;21286;21392;20560;21303;15530;16327;14293;14669;17199;17528;18893;19145
-9;'032;Argentina;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;900;19000;16000;14000;14000;7233;7000;3400;9500;9500;12000;3900;3500;3000;4000;5000;280;5734;4859;5000;1000;2000;1000;2000;1000;1000;651;380;271;683;434;320;13;13;252;292;272
-9;'032;Argentina;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;24000;21000;20000;20000;6421;6760;3745;24162;25805;33262;10822;10061;9282;11043;8552;1487;14075;15565;18136;6255;7312;7060;6283;6431;6097;6678;4234;4341;4582;4483;4354;293;293;3433;4479;4696
-9;'032;Argentina;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72041;99235;55532;53660;67333;73202;53933
-9;'032;Argentina;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32269;32441;38407;46658;66166;88386;59668
-9;'032;Argentina;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1798;1143;416;352;580;1163;889
-9;'032;Argentina;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22374;23007;29135;34873;59573;70315;51254
-9;'032;Argentina;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;26;34;31;36;162;152
-9;'032;Argentina;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22372;22980;29022;34793;59509;70190;51186
-9;'032;Argentina;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1714;1117;382;321;544;1001;737
-9;'032;Argentina;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;27;113;80;64;125;68
-9;'032;Argentina;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17302;20901;14468;17791;22801;21740;20345
-9;'032;Argentina;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1338;397;255;64;20;142;366
-9;'032;Argentina;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3441;3464;1617;1500;2529;3427;2002
-9;'032;Argentina;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;163;94;239;118;90;58
-9;'032;Argentina;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2877;9376;5333;3909;8111;9134;4986
-9;'032;Argentina;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125;71;340;683;85;9547;533
-9;'032;Argentina;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26095;26095
-9;'032;Argentina;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71
-9;'032;Argentina;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46
-9;'032;Argentina;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30
-9;'032;Argentina;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58
-9;'032;Argentina;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42124;45903;23540;18087;18302;13067;10687
-9;'032;Argentina;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6366;4769;3717;4193;4257;6806;6077
-9;'032;Argentina;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;23;107;20;37;7878;2894
-9;'032;Argentina;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;163;261;145;145;109;214
-9;'032;Argentina;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4347;18425;10051;12001;14973;16793;12130
-9;'032;Argentina;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629;3871;4605;6461;1968;1377;1166
-9;'032;Argentina;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150996;167100;160644;146807;174948;224662;224382
-9;'032;Argentina;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73033;68208;67682;58208;52683;85278;63707
-9;'032;Argentina;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1331;815;800;854;966;1653;1374
-9;'032;Argentina;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;183;183;183;183;183;183
-9;'032;Argentina;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59862;67796;64518;53674;69653;93022;102315
-9;'032;Argentina;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16413;15611;15979;13712;7900;17813;17604
-9;'032;Argentina;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13960;14802;14064;12834;10809;23858;28607
-9;'032;Argentina;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747;5169;5454;2302;1316;3175;3712
-9;'032;Argentina;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41560;49417;52552;50756;65216;70250;58971
-9;'032;Argentina;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30749;28346;29425;28024;28363;41783;27606
-9;'032;Argentina;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34283;34270;28710;28689;28304;35879;33115
-9;'032;Argentina;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18973;18899;16641;13987;14921;22324;14602
-1;'051;Armenia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133639.18;161475;180821;156306;173286;242767;261946
-1;'051;Armenia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4598.47;5371;4640;9979;5005;13885;20004
-1;'051;Armenia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;44;39;38;1848;1314;1314;7788;11034;11791;12246;16925;18190;29014;54601;59142;66903;64267;75724;84016;85956;97939;64554;65144;79478.17;99921;104575;88635;101825;140486;141617
-1;'051;Armenia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;11;11;49;146;146;641;627;1000;1293;1132;878;598;601;495;318;556;356;273;3770;454;1398;977;1621.27;948;533;459;860;3568;7227
-1;'051;Armenia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62200;62200;62200;62200;62200;57400;49000;54000;66000;65000;42700;68000;46000;1370000;1502000;1751000;2075000;2076000;1547100;1547100;1547900;1548200;1548100;1548200;1546781;1546070;726131;725211;725211
-1;'051;Armenia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4000;2000;1000;1200;1000;2500;1220;1266;3482;2;256;745;1053;499;104;937;1324;1085;1163;1575;1747;861;534
-1;'051;Armenia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;637;206;37;91;114;633;206;201;665;1;51;152;185;332;24;203;344.89;301;340;510;466;271;237
-1;'051;Armenia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;13;0;0;0;1000;1000;4000;700;1500;1500;2622;0;700;15;98;0;0;0;0;0;0;0;0;0;8;8;8
-1;'051;Armenia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;16;16;0;62;91;291;69;222;298;378;0;90;15;9;0;0;0;0;0;0;0;0;0;3;3;3
-1;'051;Armenia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1306;1024;1163;1548;1720;860;520
-1;'051;Armenia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341.99;290;340;503;463;270;211
-1;'051;Armenia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62200;62200;62200;62200;62200;57400;49000;54000;66000;65000;42700;68000;46000;1370000;1502000;1751000;2075000;2076000;1547100;1547100;1547900;1548200;1548100;1548200;1546781;1546070;726131;725211;725211
-1;'051;Armenia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;61;0;27;27;1;14
-1;'051;Armenia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9;11;0;7;3;1;26
-1;'051;Armenia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8
-1;'051;Armenia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3
-1;'051;Armenia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62200;62200;62200;62200;62200;57400;42000;46000;56000;59000;38700;63000;40000;1368000;1500000;1750000;2074000;2074000;1546000;1546000;1546000;1546000;1546000;1546000;1546000;1546000;725101;725101;725101
-1;'051;Armenia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;147;0;0;0;0;0;0;5;0;1;0;41;109;1;1;2
-1;'051;Armenia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0;0;0;0;0;0;2;0;0.35;0;2;31;1;1;3
-1;'051;Armenia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8
-1;'051;Armenia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3
-1;'051;Armenia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;82;0;0;1
-1;'051;Armenia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;24;0;0;2
-1;'051;Armenia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62200;62200;62200;62200;62200;57400;42000;46000;56000;59000;38700;63000;40000;1368000;1500000;1750000;2074000;2074000;1546000;1546000;1546000;1546000;1546000;1546000;1546000;1546000;725101;725101;725101
-1;'051;Armenia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;27;1;1;1
-1;'051;Armenia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.35;0;0;7;1;1;1
-1;'051;Armenia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8
-1;'051;Armenia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3
-1;'051;Armenia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;147;0;0;0;0;0;0;5;0;;;;;;;
-1;'051;Armenia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0;0;0;0;0;0;2;0;;;;;;;
-1;'051;Armenia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7000;8000;10000;6000;4000;5000;6000;2000;2000;1000;1000;2000;1100;1100;1900;2200;2100;2200;781;70;1030;110;110
-1;'051;Armenia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4000;2000;1000;1200;1000;2500;1220;1119;3482;2;256;745;1053;499;99;937;1323;1085;1122;1466;1746;860;532
-1;'051;Armenia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;637;206;37;91;114;633;206;191;665;1;51;152;185;332;22;203;344.54;301;338;479;465;270;234
-1;'051;Armenia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;13;0;0;0;1000;1000;4000;700;1500;1500;2622;0;700;15;98;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;16;16;0;62;91;291;69;222;298;378;0;90;15;9;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2000;2000;1000;600;800;2200;1030;1119;3482;2;256;398;25;499;96;826;1306;1024;1122;1466;1720;860;519
-1;'051;Armenia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;253;191;31;69;80;591;145;191;665;1;51;76;6;332;21;170;341.99;290;338;479;463;270;209
-1;'051;Armenia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2000;2000;1000;600;800;2200;1030;1119;3482;2;256;398;25;499;96;826;1306;1024;1122;1466;1720;860;519
-1;'051;Armenia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;253;191;31;69;80;591;145;191;665;1;51;76;6;332;21;170;341.99;290;338;479;463;270;209
-1;'051;Armenia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7000;8000;10000;6000;4000;5000;6000;2000;2000;1000;1000;2000;1100;1100;1900;2200;2100;2200;781;70;1030;110;110
-1;'051;Armenia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2000;0;0;600;200;300;190;0;0;0;0;347;1028;0;3;111;17;61;0;0;26;0;13
-1;'051;Armenia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;384;15;6;22;34;42;61;0;0;0;0;76;179;0;1;33;2.55;11;0;0;2;0;25
-1;'051;Armenia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;13;0;0;0;1000;1000;4000;700;1500;1500;2622;0;700;15;98;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;16;16;0;62;91;291;69;222;298;378;0;90;15;9;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;339;1028;0;3;109;0;0;0;0;0;0;10
-1;'051;Armenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;179;0;1;32;0;0;0;0;0;0;20
-1;'051;Armenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;0;100;0;0;0;41;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;83;0;34;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2000;0;0;600;200;300;190;0;0;0;0;8;0;0;0;2;17;61;0;0;26;0;3
-1;'051;Armenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;384;15;6;22;34;42;61;0;0;0;0;16;0;0;0;1;2.55;11;0;0;2;0;5
-1;'051;Armenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;13;0;0;0;1000;1000;4000;700;1300;1500;2522;0;700;15;57;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;16;16;0;62;91;291;69;139;298;344;0;90;15;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7000;8000;10000;6000;4000;5000;6000;2000;2000;1000;1000;1000;550;600;950;0;0;0;0;0;0;0;0
-1;'051;Armenia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7000;8000;10000;6000;4000;5000;6000;2000;2000;1000;1000;1000;550;600;950;0;0;0;0;0;0;0;0
-1;'051;Armenia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;550;500;950;2200;2100;2200;781;70;1030;110;110
-1;'051;Armenia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;550;500;950;2200;2100;2200;781;70;1030;110;110
-1;'051;Armenia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;0;0;0;0;2;5;0;0;2;11;4;15;58;32;34;36;60;154;73;1515;1433;814;596;1712
-1;'051;Armenia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;1;3;0;0;2;5;9;21;56;35;45;50;83;140.52;35;636;459;443;623;762
-1;'051;Armenia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;37;14;0;0;12;71;299;16;14;36;99;48
-1;'051;Armenia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;12;6;0;0;4;21.28;185;5;11;15;170;5044
-1;'051;Armenia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;40;83;119;2000;852;233;2050;45;41;43;64;119;137;122;148;257;171;246;144
-1;'051;Armenia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;4;38;44;18;50;12;369;128;116;118;105;156;160.78;112;157;241;258;248;394
-1;'051;Armenia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;7
-1;'051;Armenia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;12;62
-1;'051;Armenia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;20;17;56;0;277;233;1865;39;33;38;60;117;137;119;121;115;150;226;120
-1;'051;Armenia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;19;0;15;12;354;98;89;72;86;141;160.73;98;92;117;156;171;179
-1;'051;Armenia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;7
-1;'051;Armenia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;12;58
-1;'051;Armenia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;20;66;63;2000;575;0;185;6;8;5;4;2;0;3;27;142;21;20;24
-1;'051;Armenia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;34;25;18;35;0;15;30;27;46;19;15;0.05;14;65;124;102;77;215
-1;'051;Armenia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4
-1;'051;Armenia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7
-1;'051;Armenia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;113
-1;'051;Armenia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-1;'051;Armenia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-1;'051;Armenia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-1;'051;Armenia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;23;119;18;16;17
-1;'051;Armenia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;65;124;102;76;102
-1;'051;Armenia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-1;'051;Armenia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-1;'051;Armenia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;5;3;1;7;457;91;1754;1248;1243;233
-1;'051;Armenia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;27;46;20;15;95.57;62;57;120;182;123;78
-1;'051;Armenia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;0
-1;'051;Armenia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.02;0;0;0;0;1;0
-1;'051;Armenia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;2;11;18;3;10;24;40
-1;'051;Armenia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;1;0;0.95;2;7;3;6;22;26
-1;'051;Armenia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;5;3;1;5;446;73;1751;1238;1219;193
-1;'051;Armenia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;27;46;19;15;94.62;60;50;117;176;101;52
-1;'051;Armenia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;0
-1;'051;Armenia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.02;0;0;0;0;1;0
-1;'051;Armenia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;3000;2000;2000;2300;900;200;1000;1000;1000;1000;200;500;2000;3800;5000;1000;292;100;25950;0;0
-1;'051;Armenia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;0;269;43;43;8640;15000;27000;29000;27700;30100;49815;53532;46569;38031;44757;39623;39812;22895;24653;22569;20862;71109;41513;50645;55633;50053;59002;88250
-1;'051;Armenia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;47;34;34;1070;1328;2530;1363;2368;2923;5923;10706;13248;10216;9937;10252;11201;6596;10425;5329;3678;4020.96;4872;5991;5928;7035;10720;9949
-1;'051;Armenia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;31;0;0;168;111;111;2880;2000;16000;19000;8000;4400;1698;88;0;262;6025;1000;454;149;413;3161;5053;5764;2193;852;522;494;5733;1437
-1;'051;Armenia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;19;83;83;354;442;671;818;968;588;218;115;0;58;380;279;249;257;384;714;890;1177.89;637;285;220;261;1524;448
-1;'051;Armenia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;0;7;7;7;4320;14000;24000;18000;17300;24100;47318;48992;46569;36317;37581;38444;39357;22536;24489;20551;19600;68831;40188;47182;55114;49799;57702;87524
-1;'051;Armenia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;2;17;17;535;1255;2218;1039;1496;2484;5536;9759;13248;9442;9447;9752;10946;6340;10210;5012;3481;3671.57;4512;5553;5617;6979;10435;9680
-1;'051;Armenia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;31;0;0;14;14;14;1440;0;0;1000;1500;1200;258;41;0;0;41;0;0;0;1;0;0;145;243;0;0;0;337;19
-1;'051;Armenia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;6;6;6;177;0;12;38;163;134;32;6;0;0;7;0;0;0;3;0;0;20.24;39;0;0;0;128;40
-1;'051;Armenia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;3000;2000;2000;2300;900;200;1000;1000;1000;1000;200;500;2000;3800;5000;1000;292;100;25950;0;0
-1;'051;Armenia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;36;36;4320;1000;3000;11000;10400;6000;2497;4540;0;1714;7176;1179;455;359;164;2018;1262;2278;1325;3463;519;254;1300;726
-1;'051;Armenia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;17;17;535;73;312;324;872;439;387;947;0;774;490;500;255;256;215;317;197;349.39;360;438;311;56;285;269
-1;'051;Armenia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;97;97;1440;2000;16000;18000;6500;3200;1440;47;0;262;5984;1000;454;149;412;3161;5053;5619;1950;852;522;494;5396;1418
-1;'051;Armenia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;77;77;177;442;659;780;805;454;186;109;0;58;373;279;249;257;381;714;890;1157.65;598;285;220;261;1396;408
-1;'051;Armenia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;100;0
-1;'051;Armenia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;52;8;13;6;11;832;28;37;43;176;18;81;62;1499;2019;279;192;3113;1446;1280
-1;'051;Armenia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;92;40;12;10;16;6;62;60;62;71;160;221;143;140;134;190.91;247;135;136;312;303;410
-1;'051;Armenia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;66;0;112;0;100;100;33;55;66;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;39;91;173;158;76;40;25;33;19;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1720;1000;3000;3000;2000;1730;5880;10290;6300;0;0;0;0;0;0;0;0;0;0;0;0;1660;270;0
-1;'051;Armenia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;45;45;62;354;432;432;8837;8213;10356;20600;36900;39900;64069;58087;189257;72235;80499;94278;94259;94010;63321;59277;77349;85931;112050;118560;106032;160299;174995;104435
-1;'051;Armenia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;20;20;25;143;71;71;2067;1939;1932;2764;4204;5507;12087;18027;39108;26532;27874;33828;36289;38302;42246;22667;23301;27445.72;35686;41712;31977;46185;54507;48779
-1;'051;Armenia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;22;22;22;22;22;22;0;0;0;0;40;4;0;0;48;103;8;14;4;13;20;66;375;13;23;11;61;87;64
-1;'051;Armenia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;10;10;0;0;0;2;0;0;0;1;0;0;0;22;39;4;10;1;3;3;39;380.12;77;15;8;102;98;111
-1;'051;Armenia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1720;1000;3000;3000;2000;1730;5880;10290;6300;0;0;0;0;0;0;0;0;0;0;0;0;1660;270;0
-1;'051;Armenia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;26;26;26;296;183;183;770;1000;1000;2000;2100;4200;3569;5164;6849;2980;4694;5141;5196;8149;2827;3481;3456;5600;6161;7681;9308;10358;14701;10171
-1;'051;Armenia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;13;13;119;3;3;228;151;308;354;517;1216;1208;2324;3294;1340;2248;2913;3006;4864;2592;1435;1176;2134.04;2258;2851;3066;5668;8891;6444
-1;'051;Armenia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;22;22;22;22;22;22;0;0;0;0;0;4;0;0;0;0;3;8;4;9;9;39;34;0;10;10;4;32;46
-1;'051;Armenia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;10;10;0;0;0;0;0;0;0;0;0;0;0;0;0;2;6;1;1;1;15;17.32;1;8;8;10;19;69
-1;'051;Armenia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-1;'051;Armenia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119
-1;'051;Armenia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160
-1;'051;Armenia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;34;72;72;6468;7000;9000;15000;26400;24700;41156;44164;135431;39340;43576;49553;50466;51969;36004;33648;44057;49409;64706;67950;57763;77669;73228;59889
-1;'051;Armenia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;16;16;1485;1514;1389;2006;3013;3212;6950;12717;20212;13960;13963;16770;18100;19806;20071;10212;11517;12333.25;16079;18152;12919;21018;22668;22099
-1;'051;Armenia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;0;0;0;26;0;0;6;0;4;11;5;1;0;0;1;23;1;1
-1;'051;Armenia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;1;0;0;0;12;0;0;4;0;1;0;2;0.92;0;0;0;33;1;0
-1;'051;Armenia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;35;120;143;97;109;197;192;185;257;286;439;811;981;1703;1614;2027;3003
-1;'051;Armenia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;7;47;50;54;49;96;85;123;76;101;116.5;208;232;380;592;620;922
-1;'051;Armenia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;0
-1;'051;Armenia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;0
-1;'051;Armenia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;19;19;19;24;177;177;1599;213;356;3600;8400;11000;19344;8724;46857;29772;32132;39475;38400;33700;24305;21891;29550;30483;40372;41948;37258;70658;85039;31372
-1;'051;Armenia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;7;7;19;52;52;354;274;232;404;674;1079;3929;2979;15555;11182;11609;14096;15087;13547;19460;10944;10507;12861.93;17141;20477;15612;18907;22328;19314
-1;'051;Armenia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;22;103;5;0;0;0;0;22;340;13;13;0;34;19;17
-1;'051;Armenia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;39;2;0;0;1;2;22;361.88;76;7;0;59;65;42
-1;'051;Armenia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;36;36;533;135;253;2100;3200;4500;4770;1763;3150;2709;3590;3829;2800;0;3513;3108;4416;5131;5539;5875;4905;4564;7177;8003
-1;'051;Armenia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;17;17;118;191;157;268;479;768;1931;1059;2304;1628;2437;2599;2148;0;3385;2397;3261;3257.5;3288;5377;3086;3256;6007;5905
-1;'051;Armenia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;72;0;0;0;0;0;0
-1;'051;Armenia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;184.34;0;0;0;0;0;1
-1;'051;Armenia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;533;0;0;0;2100;2300;4239;0;0;21413;23807;31331;30800;33700;19719;17022;24184;21329;30534;33298;30115;12703;19809;8799
-1;'051;Armenia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;118;7;5;53;122;159;559;0;0;7996;7756;10207;11954;13547;15131;8189;6951;8761.06;12910;14376;11842;5961;6415;4830
-1;'051;Armenia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;22;103;5;0;0;0;0;22;268;7;5;0;1;13;6
-1;'051;Armenia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10;39;2;0;0;0;2;22;177.34;60;4;0;1;59;12
-1;'051;Armenia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;19;19;19;8;20;20;533;78;103;1500;3100;4200;10335;6961;43707;5650;4735;4315;4800;0;1073;1761;950;4023;4299;2775;2238;53391;58053;14570
-1;'051;Armenia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;7;7;1;1;1;118;76;70;83;73;152;1439;1920;13251;1558;1416;1290;985;0;944;358;295;843.37;943;724;684;9690;9906;8579
-1;'051;Armenia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;8;0;33;6;11
-1;'051;Armenia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0.2;16;3;0;58;6;29
-1;'051;Armenia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;28000;123;0;23;93;61;80;252;30;54;172;663;770;403;117;27;33;65;137;130;135;238;660
-1;'051;Armenia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;20;10;38;20;93;37;92;195;54;64;209;667;613;346;96;27;19.84;43;70;43;54;61;180
-1;'051;Armenia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;34;4;0;0;0;0;0;25;226;159;1051;0;768;556;556
-1;'051;Armenia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;14;2;0;0;0;0;0;17;24.92;26;157;0;174;130;130
-1;'051;Armenia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;24;0;23;93;61;80;239;30;54;137;663;751;403;116;9;7;22;35;43;15;19;38
-1;'051;Armenia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;6;0;20;93;37;92;190;54;64;180;667;611;346;95;19;13.59;36;64;39;42;33;82
-1;'051;Armenia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;34;4;0;0;0;0;0;25;0;0;0;0;0;0;0
-1;'051;Armenia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;2;0;0;0;0;0;17;0;0;0;0;0;1;1
-1;'051;Armenia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;30;0;23;90;55;80;239;22;47;127;649;751;403;111;1;2;3;6;33;8;11;31
-1;'051;Armenia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;8;0;20;87;26;92;190;25;47;147;627;611;346;79;3;3.25;3;11;21;18;18;63
-1;'051;Armenia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;34;4;0;0;0;0;0;25;0;0;0;0;0;0;0
-1;'051;Armenia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;1;0;0;0;0;0;17;0;0;0;0;0;1;1
-1;'051;Armenia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;23;0;1;1
-1;'051;Armenia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;3;0;1;1
-1;'051;Armenia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;0;0;0;1;0;0;19;0;0;0;1;;;;;;;
-1;'051;Armenia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;33;0;0;0;4;0;0;30;0;0;0;2;;;;;;;
-1;'051;Armenia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;24;0;23;69;55;80;239;21;47;127;630;751;403;111;0;2;3;5;10;8;10;30
-1;'051;Armenia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;6;0;20;54;26;92;190;21;47;147;597;611;346;79;1;3.25;3;9;18;18;17;62
-1;'051;Armenia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;34;4;0;0;0;0;0;25;0;0;0;0;0;0;0
-1;'051;Armenia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;1;0;0;0;0;0;17;0;0;0;0;0;1;1
-1;'051;Armenia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;0;0;23;0;0;0;0;0;0;18;0;235;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;19;0;0;0;0;0;0;22;0;178;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;54;80;238;21;0;109;566;516;377;111;0;0;0;0;0;0;0;20
-1;'051;Armenia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;90;187;20;0;125;547;432;324;79;0;0;0;0;0;0;0;45
-1;'051;Armenia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;25;0;0;0;0;0;0;0
-1;'051;Armenia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;17;0;0;0;0;0;0;0
-1;'051;Armenia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;5;10;8;10;10
-1;'051;Armenia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25;3;9;18;18;17;17
-1;'051;Armenia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1
-1;'051;Armenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;69;0;0;0;0;47;0;64;0;0;0;0;;;;;;;
-1;'051;Armenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;53;0;0;0;0;47;0;50;0;0;0;1;;;;;;;
-1;'051;Armenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;0;0;0;1;0;1;0;0;0;0;0;26;0;0;;;;;;;
-1;'051;Armenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;1;1;3;2;3;1;0;0;0;1;22;0;0;;;;;;;
-1;'051;Armenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-1;'051;Armenia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;0;0;0;3;6;0;0;8;7;10;14;0;0;5;8;5;19;29;10;7;8;7
-1;'051;Armenia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;6;11;0;0;29;17;33;40;0;0;16;16;10.34;33;53;18;24;15;19
-1;'051;Armenia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;10;0;18;0;1;0;0;0;0;0;0;0;0;0;0;26
-1;'051;Armenia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;35;0;22;0;6;0;0;0;0;0;0;0;0;0;0;28
-1;'051;Armenia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;0;99;0;0;0;0;0;13;0;0;35;0;19;0;1;18;26;43;102;87;120;219;622
-1;'051;Armenia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;0;4;38;0;0;0;0;5;0;0;29;0;2;0;1;8;6.24;7;6;4;12;28;98
-1;'051;Armenia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;226;159;1051;0;768;556;556
-1;'051;Armenia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;24.92;26;157;0;174;129;129
-1;'051;Armenia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200;1100;2000;2000;2000;3618;19999;26357;5900;7000;10000;11000;11500;7400;9800;9200;9000;10300;12500;12658;11700;25120;29200;27580
-1;'051;Armenia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;1;11;1869;2301;2586;3572;7000;9000;10000;12250;9992;15856;21346;4438;18314;17065;28503;22584;26214;29352;27622;29399;35702;47471;44719;40688;38237;49107;51579
-1;'051;Armenia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;1;12;1657;1208;1208;4447;7103;7019;8004;10228;9536;10280;25518;6273;29321;26286;30923;35297;39861;44238;36123;37547;47058.98;58549;55412;49097;46788;73554;80698
-1;'051;Armenia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;24;24;240;0;0;0;26;10;17;40;172;16;25;51;1;2497;55;101;22;12;17;21;131;257;485;346
-1;'051;Armenia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;20;20;248;30;65;26;18;18;57;75;476;134;109;64;2;3506;67;681;27;17.04;23;70;220;305;1630;1429
-1;'051;Armenia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3000;4000;4000;0;0;0;0;0;0;0;0;130;0;0
-1;'051;Armenia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7;1;11;1299;1917;1917;1972;5000;6000;6000;9904;7232;7741;13354;1468;10083;9165;12453;10106;10559;10392;10643;8311;8828;11199;9864;8640;9817;10204;11979
-1;'051;Armenia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;1;12;1104;871;871;2057;4855;4326;4479;7117;5959;6574;16041;1555;13515;11658;12325;12996;13125;12465;10548;8141;9389.42;10535;10268;8097;7739;12902;14646
-1;'051;Armenia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;20;0;0;0;0;0;2;8;6;0;0;6;0;0;55;22;0;2;8;0;0;0;21;226
-1;'051;Armenia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;10;1;0;0;0;0;1;7;6;0;0;6;0;0;65;22;0;1.45;8;0;3;1;71;686
-1;'051;Armenia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;0;0
-1;'051;Armenia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660;702;702;1400;1000;2000;2000;1866;1511;1613;1484;1397;1665;1002;1343;957;1062;691;566;521;546;1000;370;333;362;315;334
-1;'051;Armenia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;271;271;1225;1012;1433;1265;1231;1186;1270;1395;1414;1643;965;803;803;853;550;349;362;376.57;428;381;195;233;237;189
-1;'051;Armenia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3000;4000;4000;0;0;0;0;0;0;0;0;60;0;0
-1;'051;Armenia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7;1;11;639;1215;1215;572;4000;4000;4000;8038;5721;6128;11870;71;8418;8163;11110;9149;9497;9701;10077;7790;8282;10199;9494;8307;9455;9889;11645
-1;'051;Armenia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;1;12;788;600;600;832;3843;2893;3214;5886;4773;5304;14646;141;11872;10693;11522;12193;12272;11915;10199;7779;9012.85;10107;9887;7902;7506;12665;14457
-1;'051;Armenia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;20;0;0;0;0;0;0;8;6;0;0;6;0;0;55;22;0;2;8;0;0;0;21;226
-1;'051;Armenia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;10;0;0;0;0;0;0;7;6;0;0;6;0;0;65;22;0;1.45;8;0;3;1;71;686
-1;'051;Armenia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;0;0
-1;'051;Armenia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;1215;372;0;0;0;200;214;1202;1234;0;766;710;1285;843;1053;1035;242;274;206;199;99;195;180;261;188
-1;'051;Armenia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;585;399;307;324;180;254;902;1127;0;1003;854;997;1121;1275;1133;273;290;195.44;145;95;187;172;310;278
-1;'051;Armenia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3000;4000;4000;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;3000;2000;3000;6814;4316;4223;5234;0;5420;6619;7426;6938;7221;7343;7749;5975;5804;7000;7648;7118;7955;7760;9169
-1;'051;Armenia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;2120;1345;1978;4673;3379;3637;6109;1;7357;8577;8124;9015;9200;8878;7582;5819;6353.86;6902;7769;6584;5649;9331;10380
-1;'051;Armenia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;20;0;0;0;0;0;0;0;0;0;0;0;0;0;55;22;0;2;5;0;0;0;0;2
-1;'051;Armenia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;10;0;0;0;0;0;0;0;0;0;0;0;0;0;65;22;0;1.44;5;0;2;1;1;8
-1;'051;Armenia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1000;2000;1000;1024;1191;703;5402;71;2232;834;2399;1368;1223;1323;2086;1541;2272;3000;1747;994;1320;1868;2288
-1;'051;Armenia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;1324;1241;912;1033;1140;765;7410;140;3512;1262;2401;2057;1797;1904;2344;1670;2463.55;3060;2023;1131;1685;3024;3799
-1;'051;Armenia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8;6;0;0;6;0;0;0;0;0;0;3;0;0;0;21;224
-1;'051;Armenia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;7;6;0;0;6;0;0;0;0;0;0.01;3;0;1;0;70;678
-1;'051;Armenia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200;1100;2000;2000;2000;3618;19999;26357;5900;7000;7000;7000;7500;7400;9800;9200;9000;10300;12500;12658;11700;24990;29200;27580
-1;'051;Armenia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;570;384;669;1600;2000;3000;4000;2346;2760;8115;7992;2970;8231;7900;16050;12478;15655;18960;16979;21088;26874;36272;34855;32048;28420;38903;39600
-1;'051;Armenia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;553;337;337;2390;2248;2693;3525;3111;3577;3706;9477;4718;15806;14628;18598;22301;26736;31773;25575;29406;37669.56;48014;45144;41000;39049;60652;66052
-1;'051;Armenia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;220;0;0;0;26;10;15;32;166;16;25;45;1;2497;0;79;22;10;9;21;131;257;464;120
-1;'051;Armenia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;238;29;65;26;18;18;56;68;470;134;109;58;2;3506;2;659;27;15.6;15;70;217;304;1559;743
-1;'051;Armenia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;1300;1700;2700;3800;4226;3200;7000;6200;6300
-1;'051;Armenia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;400;538;661;761;1049;817;1263;843;1275;1035;1785;1641;1449;1739;2000;2665;2450;3063;4000;4880
-1;'051;Armenia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;55;92;113;209;355;582;730;1655;1077;1512;1166;1436;1133;2147;1763;1454;1755.17;2337;3104;2360;3073;5064;5773
-1;'051;Armenia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;0;0;1;3;0;1;0;0;0;0;2;0;0;1;0;0;7
-1;'051;Armenia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;0;0;1;4;0;1;0;0;0;0;0.81;0;0;2;0;0;14
-1;'051;Armenia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200;1100;2000;2000;2000;3618;19999;26357;5900;6000;6000;6000;6500;4400;6300;6200;4700;5600;5100;3302;5200;17970;22990;21270
-1;'051;Armenia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;2000;3000;3000;1537;1843;3730;6801;1862;6696;6125;12944;10275;13533;15887;13458;17223;21890;31272;28776;27184;23465;31808;30859
-1;'051;Armenia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;1667;1760;1668;1161;1798;524;6913;2980;9878;9645;12216;14182;18615;21820;15860;18820;23593.07;34146;27464;28225;25967;40445;41437
-1;'051;Armenia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;0;0;0;20;10;2;24;20;3;3;45;0;2496;0;0;22;5;7;15;103;234;402;33
-1;'051;Armenia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;22;49;26;18;18;6;17;77;7;9;58;1;3497;0;0;27;8.96;7;31;90;199;963;62
-1;'051;Armenia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;1000;0;0;1801;11537;13185;900;4000;0;0;0;0;0;0;0;0;0;0;0;5400;3870;3310
-1;'051;Armenia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;1000;1000;1000;75;1;17;5061;18;1641;1596;3961;3548;3876;3876;3432;4324;4784;8000;11736;7093;7648;10749;5833
-1;'051;Armenia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;411;609;434;37;1;21;4277;26;1775;1775;2289;2698;2680;2680;2114;2564;2929.75;4751;6568;3481;5415;9506;4100
-1;'051;Armenia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3;2;0;0;111;267;1
-1;'051;Armenia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;23;3;0;0;0;0;0;0;0;0;0;0;0;0;1;3.56;1;0;0;97;349;1
-1;'051;Armenia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200;800;1000;2000;2000;1817;8462;13172;4000;1000;6000;6000;6500;4400;6300;6200;4700;5600;5100;3302;5200;10;80;60
-1;'051;Armenia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;1000;0;1;15;104;1284;1685;1906;2118;4821;5840;9388;9390;8624;12117;15814;22000;15890;19087;14931;19397;23644
-1;'051;Armenia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;342;388;133;1;18;500;1930;2626;3715;4206;5315;10294;15572;15576;12125;15393;19154.55;28022;19516;23618;19365;27994;35015
-1;'051;Armenia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;0;24;20;0;0;37;0;0;0;0;19;2;2;9;61;120;0;4
-1;'051;Armenia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;0;0;6;0;0;0;17;77;0;0;48;1;0;0;0;24;5.32;3;16;45;93;4;16
-1;'051;Armenia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;1000;0;0;0;0;0;0;0;0;0;0;0;12560;19040;17900
-1;'051;Armenia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;1000;1000;2000;1261;1329;3609;299;159;3028;2248;3763;440;0;2352;1343;631;1079;1000;877;811;650;1168;1087
-1;'051;Armenia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;895;731;1058;1052;1435;3;564;328;4242;3420;4358;688;0;3201;1569;755;1348.34;1188;1175;982;968;2395;2050
-1;'051;Armenia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;10;10;2;0;0;3;3;8;0;2496;0;0;2;0;3;5;42;3;135;28
-1;'051;Armenia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;17;26;17;14;18;6;0;0;7;9;10;0;3497;0;0;2;0.08;3;11;44;8;609;45
-1;'051;Armenia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-1;'051;Armenia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;0;0;0;200;498;0;157;0;121;163;399;447;269;269;59;151;213;272;273;193;236;494;295
-1;'051;Armenia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;19;32;43;71;344;0;142;0;146;244;254;502;363;363;52;108;160.43;185;205;144;219;550;272
-1;'051;Armenia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0
-1;'051;Armenia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;1;1;1;0
-1;'051;Armenia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2000;2500;1700;2600;2000;3600;5130;3300;20;10;10
-1;'051;Armenia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;384;669;400;0;0;1000;409;379;3724;430;59;718;512;2263;928;1087;1288;1880;2416;3245;3000;3414;2414;1892;3095;3861
-1;'051;Armenia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;337;337;1209;526;841;1744;1741;1424;2600;1834;83;4851;3471;5216;6683;6988;7806;7952;9132;12321.33;11531;14576;10415;10009;15143;18842
-1;'051;Armenia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;6;0;7;8;146;12;19;0;0;1;0;79;0;3;2;6;27;23;62;80
-1;'051;Armenia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;7;16;0;0;0;46;51;393;126;96;0;0;9;2;659;0;5.83;8;39;125;105;596;667
-1;'051;Armenia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29913.53;33288;40748;35088;35251;45621;64959
-1;'051;Armenia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2148.23;3349;3211;8788;3414;6582;10900
-1;'051;Armenia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615.32;1012;1020;1427;2046;1253;1403
-1;'051;Armenia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38.03;81;4;14;0;41;12
-1;'051;Armenia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366.27;499;696;972;1571;936;1014
-1;'051;Armenia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249.05;513;324;455;475;317;389
-1;'051;Armenia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38.03;81;4;14;0;41;12
-1;'051;Armenia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380.04;781;727;862;510;842;994
-1;'051;Armenia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210.4;369;282;148;195;17;39
-1;'051;Armenia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370.95;558;569;503;575;670;962
-1;'051;Armenia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63.19;75;108;21;42;121;190
-1;'051;Armenia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6568.72;7087;8953;6515;8221;13305;13348
-1;'051;Armenia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340.86;505;241;137;428;1719;2192
-1;'051;Armenia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;0
-1;'051;Armenia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3
-1;'051;Armenia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1
-1;'051;Armenia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-1;'051;Armenia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;0
-1;'051;Armenia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;705
-1;'051;Armenia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;964;666
-1;'051;Armenia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20803.31;23510;28053;24692;22206;28508;38275
-1;'051;Armenia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1470.14;2274;2455;8425;2679;4645;8233
-1;'051;Armenia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266.16;58;87;167;433;492;1017
-1;'051;Armenia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-1;'051;Armenia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909.04;282;1339;922;1260;551;8960
-1;'051;Armenia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24.61;45;121;43;70;39;234
-1;'051;Armenia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24247.48;28266;35498;32583;36210;56660;55370
-1;'051;Armenia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828.97;1074;896;732;731;3735;1877
-1;'051;Armenia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161.17;207;114;141;318;239;270
-1;'051;Armenia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-1;'051;Armenia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2941.12;2790;4911;3555;3375;8710;5344
-1;'051;Armenia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11.68;9;11;66;14;1828;27
-1;'051;Armenia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7949.37;8989;10225;10146;9948;13630;14241
-1;'051;Armenia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33.13;29;14;7;13;467;291
-1;'051;Armenia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648.21;4805;6096;6543;8597;11486;16493
-1;'051;Armenia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;586.99;788;641;492;510;710;946
-1;'051;Armenia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9547.62;11475;14152;12198;13972;22595;19022
-1;'051;Armenia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197.18;248;230;167;194;730;613
-22;'533;Aruba;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41313.64;48647.64;49647;41416;51734.9;62005;58213
-22;'533;Aruba;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;854;822;949;608;940;846
-22;'533;Aruba;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;32;5080;6796;7327;7321;7321;7321;7321;7321;7321;7321;7321;7321;7321;12019;7321;7321;7321;10487;15394.35;15516.09;12348;13228.67;11353.64;11788;13346;10222.64;12406.64;14451;12589;14848.9;17002;13437
-22;'533;Aruba;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;220;220;220;220;148;900;1059;56;119.2;93.08;44;28;101;71;52;414;65;427;333
-22;'533;Aruba;1861;Roundwood;5516;Production;m3;1571;1547;1524;1501;1479;1457;1435;1414;1392;1372;1358;1371;1357;1342;1329;1309;1262;1243;1198;1180;1164;1183;1182;1208;1233;1259;1266;1213;1208;1194;1200;1184;1151;1110;1117;1119;1105;1169;1196;1282;1331;1382;1435;1491;1548;1586;1625;1665;1705;1748;1808;1872;1872;2005;2075;2153;2233;2317;2403;2494;2588;2685;2787
-22;'533;Aruba;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1445;622;843;724;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;1022;2459;2667.5;3433.17;159.16;245;1237;436;231;200;489;996;566;267;1003;467
-22;'533;Aruba;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;32;61;62;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;1372;1430.35;2026.09;91;49;168;179;83;97;118;272;168;103;456;212
-22;'533;Aruba;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;1;1
-22;'533;Aruba;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3.2;0.08;0;0;0;0;0;0;0;4;4
-22;'533;Aruba;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;298;754;547;163;629;65
-22;'533;Aruba;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;48;191;163;56;253;17
-22;'533;Aruba;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1
-22;'533;Aruba;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;4
-22;'533;Aruba;1863;Roundwood, non-coniferous;5516;Production;m3;1571;1547;1524;1501;1479;1457;1435;1414;1392;1372;1358;1371;1357;1342;1329;1309;1262;1243;1198;1180;1164;1183;1182;1208;1233;1259;1266;1213;1208;1194;1200;1184;1151;1110;1117;1119;1105;1169;1196;1282;1331;1382;1435;1491;1548;1586;1625;1665;1705;1748;1808;1872;1872;2005;2075;2153;2233;2317;2403;2494;2588;2685;2787
-22;'533;Aruba;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;191;242;19;104;374;402
-22;'533;Aruba;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;70;81;5;47;203;195
-22;'533;Aruba;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-22;'533;Aruba;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-22;'533;Aruba;1864;Wood fuel;5516;Production;m3;1571;1547;1524;1501;1479;1457;1435;1414;1392;1372;1358;1371;1357;1342;1329;1309;1262;1243;1198;1180;1164;1183;1182;1208;1233;1259;1266;1213;1208;1194;1200;1184;1151;1110;1117;1119;1105;1169;1196;1282;1331;1382;1435;1491;1548;1586;1625;1665;1705;1748;1808;1872;1872;2005;2075;2153;2233;2317;2403;2494;2588;2685;2787
-22;'533;Aruba;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;0;0.5;0.17;0.16;1;1;3;3;;;;;;;29
-22;'533;Aruba;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;13;6;1;4;2;7;5;;;;;;;23
-22;'533;Aruba;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-22;'533;Aruba;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-22;'533;Aruba;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-22;'533;Aruba;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-22;'533;Aruba;1628;Wood fuel, non-coniferous;5516;Production;m3;1571;1547;1524;1501;1479;1457;1435;1414;1392;1372;1358;1371;1357;1342;1329;1309;1262;1243;1198;1180;1164;1183;1182;1208;1233;1259;1266;1213;1208;1194;1200;1184;1151;1110;1117;1119;1105;1169;1196;1282;1331;1382;1435;1491;1548;1586;1625;1665;1705;1748;1808;1872;1872;2005;2075;2153;2233;2317;2403;2494;2588;2685;2787
-22;'533;Aruba;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29
-22;'533;Aruba;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-22;'533;Aruba;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;0;0.5;0.17;0.16;1;1;3;3;;;;;;;
-22;'533;Aruba;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;13;6;1;4;2;7;5;;;;;;;
-22;'533;Aruba;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1445;622;843;685;963;963;963;963;963;963;963;963;963;963;963;963;963;963;963;2459;2667;3433;159;244;1236;433;228;200;489;996;566;267;1003;438
-22;'533;Aruba;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;32;61;58;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;1372;1417.35;2020.09;90;45;166;172;78;97;118;272;168;103;456;189
-22;'533;Aruba;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3.2;0.08;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;229;552;345;834;834;834;834;834;834;834;834;834;834;834;834;834;834;834;349;3;1;94;184;1046;227;56;3;298;754;547;163;629;65
-22;'533;Aruba;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;35;27;90;90;90;90;90;90;90;90;90;90;90;90;90;90;90;44;0.35;0.09;70;19;84;65;22;1;48;191;163;56;253;17
-22;'533;Aruba;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;0.08;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;229;552;345;834;834;834;834;834;834;834;834;834;834;834;834;834;834;834;349;3;1;94;184;1046;227;56;3;298;754;547;163;629;65
-22;'533;Aruba;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;35;27;90;90;90;90;90;90;90;90;90;90;90;90;90;90;90;44;0.35;0.09;70;19;84;65;22;1;48;191;163;56;253;17
-22;'533;Aruba;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;0.08;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658;393;291;340;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;2110;2664;3432;65;60;190;206;172;197;191;242;19;104;374;373
-22;'533;Aruba;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;26;31;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1328;1417;2020;20;26;82;107;56;96;70;81;5;47;203;172
-22;'533;Aruba;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;2110;2664;3432;65;60;190;206;81;195;70;59;0;26;0;272
-22;'533;Aruba;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1328;1417;2020;20;26;82;107;39;93;36;28;0;6;0;126
-22;'533;Aruba;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658;393;291;291;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;0;0;0;0;0;0;0;91;2;121;183;19;78;374;101
-22;'533;Aruba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;26;26;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0;0;0;0;0;17;3;34;53;5;41;203;46
-22;'533;Aruba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1630;Wood charcoal;5510;Production;t;115;113;112;111;110;108;107;106;105;104;103;104;104;103;103;101;98;97;94;92;93;96;97;100;103;106;107;103;103;102;103;89;95;98;99;101;99;106;110;117;123;128;134;140;147;152;156;161;166;171;179;186;186;202;210;219;229;239;249;260;272;284;296
-22;'533;Aruba;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;9;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;242;225;223;253;241;265;268;298;265;265;29;373;269;143;270
-22;'533;Aruba;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;153;174;160;150;161;161;155;181;161;161;57;228;141;85;139
-22;'533;Aruba;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;300;300;205;102;98;153;144.4;155;43;232;155;155;52;55;58;54;69
-22;'533;Aruba;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;134;82;92;121;66;39;17;55;39;39;8;12;12;10;67
-22;'533;Aruba;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;103;41;5;37;1.4;9;2;2;9;9;0;3;6;2;17
-22;'533;Aruba;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;88;40;7;35;2;6;3;4;6;6;1;5;5;3;60
-22;'533;Aruba;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;263;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;102;61;93;116;143;146;41;230;146;146;52;52;52;52;52
-22;'533;Aruba;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;46;42;85;86;64;33;14;51;33;33;7;7;7;7;7
-22;'533;Aruba;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;24;29;17;17;6;7;29;85;138
-22;'533;Aruba;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;14;24;22;22;4;4;16;59;77
-22;'533;Aruba;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;150;913;913
-22;'533;Aruba;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;213;213
-22;'533;Aruba;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;24;29;17;17;6;7;29;22;20
-22;'533;Aruba;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;14;24;22;22;4;4;16;17;13
-22;'533;Aruba;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;150;913;913
-22;'533;Aruba;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;213;213
-22;'533;Aruba;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;118
-22;'533;Aruba;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;64
-22;'533;Aruba;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11410;16877;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;15615;5721;18563;20825;11236;11065;15844;12556;13348;81;5060;14767;9298;11612;10789;9421
-22;'533;Aruba;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2194;3769;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3889;3159;7789;8904;2948;4366;4117;4714;4847;113;1413;5627;4400;5490;5424;4503
-22;'533;Aruba;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;1053;27;27;0;0;0;5;0;1;0;0;0;0;0
-22;'533;Aruba;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;626;1016;0;0;16;1;5;0;0;0;2;0;0;0
-22;'533;Aruba;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11027;16427;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;15314;2531;12557;13710;10946;10494;15536;11604;12954;3;4811;14216;8706;11180;10682;8836
-22;'533;Aruba;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027;3569;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;3728;768;3751;3921;2703;3950;3883;3996;4576;1;1210;5260;4047;5151;5080;3921
-22;'533;Aruba;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;450;301;301;301;301;301;301;301;301;301;301;301;301;301;301;301;3190;6006;7115;290;571;308;952;394;78;249;551;592;432;107;585
-22;'533;Aruba;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;200;161;161;161;161;161;161;161;161;161;161;161;161;161;161;161;2391;4038;4983;245;416;234;718;271;112;203;367;353;339;344;582
-22;'533;Aruba;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;1053;27;27;0;0;0;5;0;1;0;0;0;0;0
-22;'533;Aruba;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;626;1016;0;0;16;1;5;0;0;0;2;0;0;0
-22;'533;Aruba;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;18;7;10;39;2;28;47;19;14;1;70;15;2;13;2
-22;'533;Aruba;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;39;44;60;166;30;92;51;23;16;2;69;42;7;19;6
-22;'533;Aruba;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4715;5181;6322;6301;6301;6301;6301;6301;6301;6301;6301;6301;6301;6301;6301;6301;6301;2585;4097;2073.31;13164.6;9802.4;6180.27;6945.27;11594;15620.27;15768.27;13098;13025;11278.14;14795;12111
-22;'533;Aruba;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;1825;2320;2314;2314;2314;2314;2314;2314;2314;2314;2314;2314;2314;2314;2314;2314;1657;1952;1428;5152;4777.03;2825;2955;4597;6416;7286;5449;5520;6582;8179;5713
-22;'533;Aruba;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;3;152;152;1;30;2;2;9;0;1;0;1
-22;'533;Aruba;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;135;0;11;71;0;1;20;4;2;3;2;2;2;2
-22;'533;Aruba;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-22;'533;Aruba;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4351;4680;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;6003;2423;3866;1689;12981;9392;5902;6510;11294;15342;15490;12292;12450;10276;13708;11294
-22;'533;Aruba;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1502;1737;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;2204;1511;1793;1184;5028;4472;2364;2621;4346;5955;6825;4926;5174;6108;7247;4634
-22;'533;Aruba;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;3;152;152;1;30;2;2;9;0;1;0;1
-22;'533;Aruba;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;135;0;11;71;0;1;20;4;2;3;2;2;2;2
-22;'533;Aruba;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;463;283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;67;104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283;283;283;283;283;283;283;283;283;283;283;283;283;97;229;138;172;200;13;119;114;13;13;519;319;729.14;723;230
-22;'533;Aruba;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;104;104;104;104;104;104;104;104;104;104;104;104;104;69;156;86;114;189;32;115;59;32;32;291;180;223;561;226
-22;'533;Aruba;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392
-22;'533;Aruba;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226
-22;'533;Aruba;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;38;36;15;15;15;15;15;15;15;15;15;15;15;15;15;15;65;2;246.31;11.6;210.4;265.27;316.27;186;265.27;265.27;287;256;273;364;195
-22;'533;Aruba;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;21;12;6;6;6;6;6;6;6;6;6;6;6;6;6;6;77;3;158;10;116.03;429;219;192;429;429;232;166;251;371;627
-22;'533;Aruba;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;33;53;26;33;33;54;56;56;85;82
-22;'533;Aruba;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;73;32;16;73;73;34;34;34;91;79
-22;'533;Aruba;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;2;246;6;156;232;263;141;232;232;224;186;200;262;94
-22;'533;Aruba;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;155;9;83;353;184;143;353;353;163;110;189;260;500
-22;'533;Aruba;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;38;0;0.31;5.6;1.4;0.27;0.27;19;0.27;0.27;9;14;17;17;19
-22;'533;Aruba;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;52;0;3;1;0.03;3;3;33;3;3;35;22;28;20;48
-22;'533;Aruba;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;32;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;10;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1127;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;1166;44.06;44.38;45;46;44.12;44.12;51;44;44.12;44.12;45;45;45;47;45
-22;'533;Aruba;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;123;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;15;17;19;14;13.64;13.64;40;13;13.64;13.64;19;16;16;16;20
-22;'533;Aruba;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2652;100;1730;1174
-22;'533;Aruba;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;365;17;170;81
-22;'533;Aruba;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44
-22;'533;Aruba;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-22;'533;Aruba;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44
-22;'533;Aruba;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-22;'533;Aruba;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44
-22;'533;Aruba;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-22;'533;Aruba;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42
-22;'533;Aruba;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12
-22;'533;Aruba;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-22;'533;Aruba;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-22;'533;Aruba;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;1122;0.06;0.38;1;2;0.12;0.12;7;0;0.12;0.12;1;1;1;3;1
-22;'533;Aruba;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;2;4;6;1;0.64;0.64;27;0;0.64;0.64;6;3;3;3;7
-22;'533;Aruba;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2652;100;1730;1174
-22;'533;Aruba;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;365;17;170;81
-22;'533;Aruba;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1127;938;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;3679;1016;1016;1016;2688;2459;1507;2290;2255;2303;2571;2236;1827;1825;1757;1322;1143;1167;1128
-22;'533;Aruba;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;985;832;832;832;832;832;832;832;832;832;832;832;5530;832;832;832;3958;3906;2827;3706;3766;3916;3663;3523;3345;3352;2946;2199;2481.9;2754;2700
-22;'533;Aruba;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;134;134;134;2284.45;272.19;445;662;512;444.3;820;0;224.3;204.3;4.3;2.3;2;42;37
-22;'533;Aruba;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;214;214;214;139;139;43;42;45;77;42;3;97;69;34;30;31;38;33
-22;'533;Aruba;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;929;680;824;824;824;824;824;824;824;824;824;824;824;3487;824;824;824;2599;2365;1416;2114;2017;2115;2414;2022;1639;1637;1517;1088;901;938;957
-22;'533;Aruba;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;758;562;599;599;599;599;599;599;599;599;599;599;599;5297;599;599;599;3453;3343;2262;3061;2975;3147;3003;2675;2576;2583;2240;1498;1604.04;1851;1829
-22;'533;Aruba;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;2282;30.19;384;601;482;243.3;240;0;23.3;3.3;4.3;2.3;2;42;37
-22;'533;Aruba;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;82;113;28;37;43;52;14;2;72;44;34;30;31;38;33
-22;'533;Aruba;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;233;573;573;573;573;573;573;573;573;573;573;573;3236;573;573;573;1563;1351;605;959;966;1038;1283;932;562;560;524;361;264;189;216
-22;'533;Aruba;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;122;356;356;356;356;356;356;356;356;356;356;356;5054;356;356;356;1520;1440;586;916;927;1057;995;851;486;493;488;332;255;229;262
-22;'533;Aruba;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;30;0.19;360;600;480;240;240;0;20;0;0;0;0;37;37
-22;'533;Aruba;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;1;2;12;36;17;8;8;1;28;0;0;0;0;27;27
-22;'533;Aruba;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392;447;251;251;251;251;251;251;251;251;251;251;251;251;251;251;251;1036;1014;811;1155;1051;1077;1131;1090;1077;1077;993;727;637;749;741
-22;'533;Aruba;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;440;243;243;243;243;243;243;243;243;243;243;243;243;243;243;243;1933;1903;1676;2145;2048;2090;2008;1824;2090;2090;1752;1166;1349.04;1622;1567
-22;'533;Aruba;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2252;30;24;1;2;3.3;0;0;3.3;3.3;4.3;2.3;2;5;0
-22;'533;Aruba;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;111;16;1;26;44;6;1;44;44;34;30;31;11;6
-22;'533;Aruba;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;251;251;251;251;251;251;251;251;251;251;546;590;554;620;645;701;764;693;701;701;745;597;484;587;572
-22;'533;Aruba;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;243;243;243;243;243;243;243;243;243;243;943;1053;1073;1209;1158;1340;1184;1044;1340;1340;1118;831;816.04;1140;981
-22;'533;Aruba;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;1;1;2;0;0;0;0
-22;'533;Aruba;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;14;4;0;14;14;4;0;1;1;1
-22;'533;Aruba;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;320;125;392;289;310;241;322;310;310;92;28;83;47;61
-22;'533;Aruba;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;610;255;564;545;512;448;523;512;512;254;113;264;136;254
-22;'533;Aruba;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;2;2;2;2;2;0;0
-22;'533;Aruba;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;2;0;29;29;29;29;29;1;1
-22;'533;Aruba;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;104;132;143;117;66;126;75;66;66;156;102;70;115;108
-22;'533;Aruba;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;240;348;372;345;238;376;257;238;238;380;222;269;346;332
-22;'533;Aruba;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2252;30;24;1;1;0.3;0;0;0.3;0.3;0.3;0.3;0;5;0
-22;'533;Aruba;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;111;16;1;2;1;0;1;1;1;1;1;1;9;4
-22;'533;Aruba;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;258;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;89;94;91;176;238;188;157;214;188;188;240;234;242;229;171
-22;'533;Aruba;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;423;233;233;233;233;233;233;233;233;233;233;233;233;233;233;233;505;563;565;645;791;769;660;848;769;769;706;701;877.86;903;871
-22;'533;Aruba;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;2.45;242;61;61;30;201;580;0;201;201;0;0;0;0;0
-22;'533;Aruba;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;57;26;15;5;2;25;28;1;25;25;0;0;0;0;0
-22;'533;Aruba;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;37;34;30;19;51;39;52;51;51;33;142;103;108;46
-22;'533;Aruba;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;157;178;128;84;193;161;171;193;193;153;339;273;283;212
-22;'533;Aruba;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;0.45;1;1;1;0;5;0;0;5;5;0;0;0;0;0
-22;'533;Aruba;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;2;5;12;2;0;16;0;1;16;16;0;0;0;0;0
-22;'533;Aruba;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;54;56;143;217;134;114;158;134;134;203;83;131;117;122
-22;'533;Aruba;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;350;347;487;632;535;423;629;535;535;461;311;507.86;555;612
-22;'533;Aruba;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;241;60;60;30;196;580;0;196;196;0;0;0;0;0
-22;'533;Aruba;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;21;3;3;2;9;28;0;9;9;0;0;0;0;0
-22;'533;Aruba;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;3;2;4;4;3;8;4;4;17;6;1;2;4
-22;'533;Aruba;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;19;54;34;69;79;39;65;79;79;65;31;13;7;16
-22;'533;Aruba;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-22;'533;Aruba;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;8;12;5;3;15;9;52;15;15;73;38;82;28;28
-22;'533;Aruba;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;24;37;24;31;92;63;198;92;92;165;125;249;164;138
-22;'533;Aruba;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;44;41;136;210;115;102;98;115;115;113;39;48;87;82
-22;'533;Aruba;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;307;256;429;532;364;321;366;364;364;231;155;245.86;384;447
-22;'533;Aruba;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;241;60;60;30;196;580;0;196;196;0;0;0;0;0
-22;'533;Aruba;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;21;3;3;2;9;28;0;9;9;0;0;0;0;0
-22;'533;Aruba;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-22;'533;Aruba;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-22;'533;Aruba;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;192;192;192;192;192;192;192;192;192;4;3;1;3;2;3;4;4;3;3;4;9;8;4;3
-22;'533;Aruba;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;233;233;233;233;233;233;233;233;233;233;14;56;40;30;75;41;76;48;41;41;92;51;97;65;47
-22;'533;Aruba;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-22;'533;Aruba;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-22;'533;Aruba;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16223;20009;18103;14195;15886;19472;20317
-22;'533;Aruba;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;373;277;299;206;281;213
-22;'533;Aruba;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;147;594;405;360;146;239
-22;'533;Aruba;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;49;49;49;49;0
-22;'533;Aruba;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;87;548;340;337;43;92
-22;'533;Aruba;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0
-22;'533;Aruba;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;60;46;65;23;103;147
-22;'533;Aruba;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;0
-22;'533;Aruba;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;41;85;18;85;204;286
-22;'533;Aruba;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;149;165;113;130;150;177
-22;'533;Aruba;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;867;733;450;626;755;946
-22;'533;Aruba;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;1;13;5
-22;'533;Aruba;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;1886;2892;2221;3708;2684;2924
-22;'533;Aruba;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;18;2;1;1
-22;'533;Aruba;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12498;15693;12019;9596;10174;14452;15153
-22;'533;Aruba;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;172;63;106;24;63;28
-22;'533;Aruba;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;1375;1780;1505;933;1231;769
-22;'533;Aruba;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;0;5;2
-22;'533;Aruba;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14868;16232;17093;14632;21000;25531;24459
-22;'533;Aruba;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;410;493;236;337;232;300
-22;'533;Aruba;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;3;8;4;13;13
-22;'533;Aruba;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-22;'533;Aruba;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;590;577;494;373;580;595
-22;'533;Aruba;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;1;0
-22;'533;Aruba;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7140;7329;7299;6194;7216;9330;9893
-22;'533;Aruba;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;6
-22;'533;Aruba;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3558;3955;4436;3798;5957;7006;6184
-22;'533;Aruba;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;8;13;19;11;23;42
-22;'533;Aruba;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3726;4357;4778;4138;7450;8602;7774
-22;'533;Aruba;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;401;480;217;319;208;252
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1514;1299;2154;1092;1683;1245;1373
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;41;96;0;1;31;116
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;131;286;286;286;286;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;256;422;315;468;400;918;506;953;446;411
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;72;0;0;0;105
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;391;239;709;349;374;362;170;352;304
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;179;86;218;154;127;98;154;174;143
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;349;342;362;139;352;292
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;154;122;97;149;173;132
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;32;0;31;0;12
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;5;1;5;1;11
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;104;38
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;59;28
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;26
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;17
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;11
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;391;239;709;349;374;362;170;248;266
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;179;86;218;154;126;97;153;115;115
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;199;706;349;342;362;139;248;266
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;76;215;154;122;97;149;115;115
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;199;706;349;342;362;139;248;266
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;76;215;154;122;97;149;115;115
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;82;40;3;0;32;0;31;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;10;3;0;4;0;4;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;80;40;3;0;32;0;31;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;10;3;0;4;0;4;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;18;3;6;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;3;2;4;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;2;0;6
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;3;0;7
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;2;0;6
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;3;0;7
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;88;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;232;103;214;747;105;411;270;16;30;14
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;37;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;75;132;114;56;133;131;177;20;8
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;53;5;192;45;0;39;6;17;14
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;31;13;37;18;10;14;7;14;8
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;41;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;50;209;555;60;411;231;10;13;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;14;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;44;119;77;38;123;117;170;6;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;6;3;3;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;15;4;12;0;0;0;0;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;186;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;176;179;248;145;88;164;91;106;150
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;66;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;105;45;76;142;118;94;72;110;93
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;137;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;93;127;130;199;96;86;157;83;64;75
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;55;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;94;34;65;131;116;83;62;74;31
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;49;49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;2;7;8;36;70
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;2;11;10;28;61
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;25;14;61;43
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;23;29;47;32
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;25;14;36;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;23;29;41;26
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;25;14;36;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;23;29;41;26
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;25;14;36;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;23;29;41;26
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;13;13;13
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;27;22;22
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;23;1;23;5
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;21;2;19;4
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;25
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;127;127;127;127;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;379;79;974;35;38
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;78;78;78;78;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;500;153;516;87;126
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;0;96
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;105
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;63;63;63;63;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;60;38;37;32;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;39;39;39;39;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;181;101;100;78;103
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;48;48;48;48;;;;;;;;;;;;;;;;;;;;;;45;23;22;17;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;30;30;30;30;;;;;;;;;;;;;;;;;;;;;;172;92;91;69;103
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;21;17;5;12
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;88;80;39;85
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;5;12;6
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;10;29;17
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;319;41;937;3;20
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;319;52;416;9;23
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;10;21;3;18
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;32;54;6;11
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;31;916;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;19;361;2;8
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-187;'654;Ascension, Saint Helena and Tristan da Cunha;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;25;903;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;3;325;0;3
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;1;1;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;5;13;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;13;35;1;4
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;0;0;0;0;1
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;1;1;1;1;4
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;786;590;946;374;429;513;511
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;38;24;0;1;31;8
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;80;268;13;1;170;34
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;1;0;0;8;6
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;98;156;100;91;29;56
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523;377;453;255;315;294;335
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;38;24;0;1;29;5
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;17;68;6;22;12;80
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;309;290;212;301;286;451
-187;'654;Ascension, Saint Helena and Tristan da Cunha;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;0;0;0;0;3
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;4;0;1;3;5
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;94;175;112;88;219;340
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;36;60;42;111;14;50
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;169;51;58;101;50;56
-187;'654;Ascension, Saint Helena and Tristan da Cunha;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;0;0;0;0;3
-10;'036;Australia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5655691;6232637;5687718;5644763;7242804.1;8162389;6095412
-10;'036;Australia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2794339;2900041;2720849;2178633;2126739.73;2136006;1767949
-10;'036;Australia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;128839;101517;117161;123271;138329;127697;136611;177568;182900;204442;237274;212058;303695;465585;485133;424088;540885;524798;621407;753883;813391;866255;602778;752897;824881;796351;860794;1248263;1459203;1441164;1217229;1212937;1343360;1560899;1820627;1853451;1498010;1408616;1575685;1769372;1247632;1413663;1537905;1850678;1976590;1966044;2151195;2368083;1798651;2445671;2623546;2472369;2237440;2313993;1996689;1990159;2025689;2211446;1955987;1852747;2538871.1;3082177;2177566
-10;'036;Australia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;10297;9974;10123;11964;12946;11073;17223;13249;14373;16931;26674;45727;97080;129385;99039;90846;117551;127755;147707;217428;257931;235686;187601;217927;202146;212170;315417;356011;396453;419201;487739;472273;538877;659186;742345;740706;826650;664523;715615;806028;780912;981432;1055408;1346179;1385080;1487804;1723445;1928801;1493512;1964976;2038598;1827027;1944015;2154976;2057748;2241035;2625517;2735634;2571504;2046677;1959849.73;1975046;1625183
-10;'036;Australia;1861;Roundwood;5516;Production;m3;14138000;13336000;13728000;14306000;14213000;14114000;14002888;14104000;13946777;13882000;14501111;14054000;14005666;14391000;15992000;15652000;16669000;16849000;16476000;18431000;18748000;16772000;16087000;17776000;19222489;19713081;19560770;19953433;19882064;20758312;20390530;20674352;21910357;23252496;24302499;24357892;26748000;28050000;27667000;31181000;31087000;29712000;31604000;31933000;31933000;31777000;32264000;33269000;30316000;30414000;31394000;28242000;27324000;30012000;31386248;34127611;37274909;37175389;36703120;33353689;30969000;29898000;28905000
-10;'036;Australia;1861;Roundwood;5616;Import quantity;m3;186700;107600;151800;130500;164400;97300;126600;165800;159400;130500;120500;97600;102800;103500;43000;47100;22500;22000;17500;600;400;1300;1400;700;600;1100;1000;900;5700;2725;1449;10583;4494;3600;2100;1800;1600;4100;1700;3100;1200;2200;2200;2200;1200;1700;1700;733;3200;2231;1025;1648;1335;6883;7778;6313;3743;1678;8466;7164;6982.43;5488;3060
-10;'036;Australia;1861;Roundwood;5622;Import value;1000 USD;3959;2349;3284;2977;3779;2401;3243;4805;4382;4112;3544;3137;4517;7151;2471;2801;2136;2268;1894;172;75;212;287;179;103;206;270;307;1529;347;218;839;654;557;827;886;450;1031;453;617;336;781;821;1137;946;741;741;524;1223;907;658;975;1078;2905;3943;3390;3639;1584;4640;3536;3104.1;4672;2621
-10;'036;Australia;1861;Roundwood;5916;Export quantity;m3;31200;23400;14800;21400;16800;12100;37500;29500;9900;12400;17600;12500;6700;6900;11500;5200;2200;4300;7300;8300;3400;5500;8400;7000;4800;6300;27300;32500;5400;15498;149034;183318;241751;417900;296900;345900;694800;489100;972000;1127000;998000;1280000;1275000;1048283;748582;1064658;1064679;942855;1144822;1564408;2016410;1395691;2017184;2648641;3324304;4362919;5230504;4958526;4971895;4940541;2181955;1431449;715197
-10;'036;Australia;1861;Roundwood;5922;Export value;1000 USD;785;610;381;502;446;414;747;779;308;544;562;350;558;884;823;766;148;347;682;842;1120;1855;2646;1770;1064;1233;1323;2887;3274;2798;8535;10995;14965;29729;21665;26728;36451;21992;33143;37306;35914;65319;72787;91168;47960;72355;72397;80431;87628;183303;218401;140850;204695;294623;294817;411769;623979;640402;589267;529941;252921;152061;73651
-10;'036;Australia;1862;Roundwood, coniferous;5516;Production;m3;1652000;1673000;1789000;1933000;1981000;2156000;2357888;2417000;2530777;2664000;2744111;2845000;2901666;3338000;3150000;3157000;3253000;3547000;3710000;4289000;4760000;4904000;4842000;5289000;6299886;6722462;6779504;6477096;7123903;7735847;7408451;8035411;8809746;9966888;9187888;10265087;10397000;11056000;11000000;12514000;12736000;13387000;13945000;14552000;14552000;14408000;14572000;15040000;13342000;14445000;15009000;13977000;13579000;14397000;14953677;16370353;17715709;17604590;17180815;17615126;16789000;14948000;14136000
-10;'036;Australia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3131;181;4311;5600;4140;4386;2457
-10;'036;Australia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569;156;1714;2301;1291;2505;1295
-10;'036;Australia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4432495;4172694;4318311;4257665;1844696;1110828;543449
-10;'036;Australia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522264;524416;502227;446960;206172;104629;51577
-10;'036;Australia;1863;Roundwood, non-coniferous;5516;Production;m3;12486000;11663000;11939000;12373000;12232000;11958000;11645000;11687000;11416000;11218000;11757000;11209000;11104000;11053000;12842000;12495000;13416000;13302000;12766000;14142000;13988000;11868000;11245000;12487000;12922603;12990619;12781266;13476337;12758161;13022465;12982079;12638941;13100611;13285608;15114611;14092805;16351000;16994000;16667000;18667000;18351000;16325000;17659000;17381000;17381000;17369000;17692000;18229000;16974000;15969000;16385000;14265000;13745000;15615000;16432571;17757258;19559200;19570799;19522305;15738563;14180000;14950000;14769000
-10;'036;Australia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;1497;4155;1564;2842.43;1102;603
-10;'036;Australia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070;1428;2926;1235;1813.1;2167;1326
-10;'036;Australia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798009;785832;653584;682876;337259;320621;171748
-10;'036;Australia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101715;115986;87040;82981;46749;47432;22074
-10;'036;Australia;1864;Wood fuel;5516;Production;m3;3400000;3275000;3155000;3030000;2915000;2500000;2674888;2678000;2681777;2686000;2689111;2692000;2694666;2800000;2800000;2780000;2780000;2780000;2780000;2780000;2820000;1900000;2300000;2700000;2393489;2594081;2814770;3051433;3298064;3545312;3786530;4020352;4251357;4490496;4742499;5017892;6957000;6892000;6829000;6774000;6695000;5520000;5890000;5601000;5601000;5042000;5181000;5059000;4828000;4853000;4862000;4745000;4745000;4745000;4096284;4044592;4131815;4090897;4103646;3872585;3872000;3915000;3945000
-10;'036;Australia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;2003;400;100;100;100;100;100;100;200;200;200;200;200;200;200;200;200;950;550;209;495;305;547;802;163;331;470;645;1327.43;1093;953
-10;'036;Australia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;69;53;23;38;32;32;32;32;39;41;41;41;41;41;41;41;41;190;114;76;270;171;337;453;166;290;459;764;1313.1;1070;1045
-10;'036;Australia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;100;200;100;200;100;0;0;0;0;0;0;0;76;97;273;822;1210;214;1173;8450;6976;25516;92711;162640;23142;39814;61044;51090;254;261
-10;'036;Australia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;14;28;27;174;82;0;0;0;0;0;0;0;20;62;85;411;493;156;132;1288;1542;2863;7842;12381;2018;3833;4772;3336;1815;840
-10;'036;Australia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;174888;178000;181777;186000;189111;192000;194666;300000;300000;280000;280000;280000;280000;280000;320000;380000;400000;600000;531886;576462;625504;678096;732903;787847;841451;893411;944746;997888;1053888;1115087;41000;41000;40000;40000;39000;32000;34000;33000;33000;29000;30000;30000;28000;27000;28000;29000;29000;29000;24614;24304;24828;24582;39116;23270;23000;24000;24000
-10;'036;Australia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;97;198;138;303;724;669
-10;'036;Australia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;81;189;160;359;614;716
-10;'036;Australia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22694;39314;60747;50957;25;189
-10;'036;Australia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1660;3545;4386;3023;21;108
-10;'036;Australia;1628;Wood fuel, non-coniferous;5516;Production;m3;3400000;3275000;3155000;3030000;2915000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;2500000;1520000;1900000;2100000;1861603;2017619;2189266;2373337;2565161;2757465;2945079;3126941;3306611;3492608;3688611;3902805;6916000;6851000;6789000;6734000;6656000;5488000;5856000;5568000;5568000;5013000;5151000;5029000;4800000;4826000;4834000;4716000;4716000;4716000;4071670;4020288;4106987;4066315;4064530;3849315;3849000;3891000;3921000
-10;'036;Australia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;234;272;507;1024.43;369;284
-10;'036;Australia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;209;270;604;954.1;456;329
-10;'036;Australia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162640;448;500;297;133;229;72
-10;'036;Australia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12381;358;288;386;313;1794;732
-10;'036;Australia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;2003;400;100;100;100;100;100;100;200;200;200;200;200;200;200;200;200;950;550;209;495;305;547;802;;;;;;;
-10;'036;Australia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;69;53;23;38;32;32;32;32;39;41;41;41;41;41;41;41;41;190;114;76;270;171;337;453;;;;;;;
-10;'036;Australia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;100;200;100;200;100;0;0;0;0;0;0;0;76;97;273;822;1210;214;1173;8450;6976;25516;92711;;;;;;;
-10;'036;Australia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;14;28;27;174;82;0;0;0;0;0;0;0;20;62;85;411;493;156;132;1288;1542;2863;7842;;;;;;;
-10;'036;Australia;1865;Industrial roundwood;5516;Production;m3;10738000;10061000;10573000;11276000;11298000;11614000;11328000;11426000;11265000;11196000;11812000;11362000;11311000;11591000;13192000;12872000;13889000;14069000;13696000;15651000;15928000;14872000;13787000;15076000;16829000;17119000;16746000;16902000;16584000;17213000;16604000;16654000;17659000;18762000;19560000;19340000;19791000;21158000;20838000;24407000;24392000;24192000;25714000;26332000;26332000;26735000;27083000;28210000;25488000;25561000;26532000;23497000;22579000;25267000;27289964;30083019;33143094;33084492;32599474;29481104;27097000;25983000;24960000
-10;'036;Australia;1865;Industrial roundwood;5616;Import quantity;m3;186700;107600;151800;130500;164400;97300;126600;165800;159400;130500;120500;97600;102800;103500;43000;47100;22500;22000;17500;600;400;1300;1400;700;600;1100;1000;900;5700;2725;1449;9162;2491;3200;2000;1700;1500;4000;1600;3000;1000;2000;2000;2000;1000;1500;1500;533;3000;1281;475;1439;840;6578;7231;5511;3580;1347;7996;6519;5655;4395;2107
-10;'036;Australia;1865;Industrial roundwood;5622;Import value;1000 USD;3959;2349;3284;2977;3779;2401;3243;4805;4382;4112;3544;3137;4517;7151;2471;2801;2136;2268;1894;172;75;212;287;179;103;206;270;307;1529;347;218;766;585;504;804;848;418;999;421;585;297;740;780;1096;905;700;700;483;1182;717;544;899;808;2734;3606;2937;3473;1294;4181;2772;1791;3602;1576
-10;'036;Australia;1865;Industrial roundwood;5916;Export quantity;m3;31200;23400;14800;21400;16800;12100;37500;29500;9900;12400;17600;12500;6700;6900;11500;5200;2200;4300;7300;8300;3400;5500;8400;7000;4800;6300;27300;32500;5400;15498;149034;183267;241700;417800;296700;345800;694600;489000;972000;1127000;998000;1280000;1275000;1048283;748582;1064582;1064582;942582;1144000;1563198;2016196;1394518;2008734;2641665;3298788;4270208;5067864;4935384;4932081;4879497;2130865;1431195;714936
-10;'036;Australia;1865;Industrial roundwood;5922;Export value;1000 USD;785;610;381;502;446;414;747;779;308;544;562;350;558;884;823;766;148;347;682;842;1120;1855;2646;1770;1064;1233;1323;2887;3274;2798;8535;10986;14956;29715;21637;26701;36277;21910;33143;37306;35914;65319;72787;91168;47960;72335;72335;80346;87217;182810;218245;140718;203407;293081;291954;403927;611598;638384;585434;525169;249585;150246;72811
-10;'036;Australia;1866;Industrial roundwood, coniferous;5516;Production;m3;1652000;1673000;1789000;1933000;1981000;2156000;2183000;2239000;2349000;2478000;2555000;2653000;2707000;3038000;2850000;2877000;2973000;3267000;3430000;4009000;4440000;4524000;4442000;4689000;5768000;6146000;6154000;5799000;6391000;6948000;6567000;7142000;7865000;8969000;8134000;9150000;10356000;11015000;10960000;12474000;12697000;13355000;13911000;14519000;14519000;14379000;14542000;15010000;13314000;14418000;14981000;13948000;13550000;14368000;14929063;16346049;17690881;17580008;17141699;17591856;16766000;14924000;14112000
-10;'036;Australia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1626;1083;7675;986;200;300;300;0;1000;600;1000;0;0;0;0;0;0;0;0;0;0;0;681;47;6167;5579;4145;3089;84;4113;5462;3837;3662;1788
-10;'036;Australia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;158;605;266;31;86;42;0;40;31;65;0;0;0;0;0;0;0;0;0;50;4;129;19;2196;2411;1750;1518;75;1525;2141;932;1891;579
-10;'036;Australia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8023;134639;156922;238400;414700;282300;339800;594600;367000;837000;952000;801000;1014000;1107000;854000;655000;879000;879000;724000;971000;1309898;1785548;1238683;1747401;2437513;2981797;3900000;4432495;4150000;4278997;4196918;1793739;1110803;543260
-10;'036;Australia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;811;6354;7274;13738;27329;16101;23680;32462;18890;29716;34333;26157;39976;44187;62501;33075;49950;49950;53945;64357;152124;184437;111756;174019;249293;245836;351715;522264;522756;498682;442574;203149;104608;51469
-10;'036;Australia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1626;1083;7675;986;200;300;300;0;1000;600;1000;0;0;0;0;0;0;0;0;0;0;0;681;47;6167;5579;4145;3089;84;4113;5462;3837;3662;1788
-10;'036;Australia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;158;605;266;31;86;42;0;40;31;65;0;0;0;0;0;0;0;0;0;50;4;129;19;2196;2411;1750;1518;75;1525;2141;932;1891;579
-10;'036;Australia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8023;134639;156922;238400;414700;282300;339800;594600;367000;837000;952000;801000;1014000;1107000;854000;655000;879000;879000;724000;971000;1309898;1785548;1238683;1747401;2437513;2981797;3900000;4432495;4150000;4278997;4196918;1793739;1110803;543260
-10;'036;Australia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;811;6354;7274;13738;27329;16101;23680;32462;18890;29716;34333;26157;39976;44187;62501;33075;49950;49950;53945;64357;152124;184437;111756;174019;249293;245836;351715;522264;522756;498682;442574;203149;104608;51469
-10;'036;Australia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;9086000;8388000;8784000;9343000;9317000;9458000;9145000;9187000;8916000;8718000;9257000;8709000;8604000;8553000;10342000;9995000;10916000;10802000;10266000;11642000;11488000;10348000;9345000;10387000;11061000;10973000;10592000;11103000;10193000;10265000;10037000;9512000;9794000;9793000;11426000;10190000;9435000;10143000;9878000;11933000;11695000;10837000;11803000;11813000;11813000;12356000;12541000;13200000;12174000;11143000;11551000;9549000;9029000;10899000;12360901;13736970;15452213;15504484;15457775;11889248;10331000;11059000;10848000
-10;'036;Australia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1099;366;1487;1505;3000;1700;1400;1500;3000;1000;2000;1000;2000;2000;2000;1000;1500;1500;533;3000;1281;475;758;793;411;1652;1366;491;1263;3883;1057;1818;733;319
-10;'036;Australia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;60;161;319;473;718;806;418;959;390;520;297;740;780;1096;905;700;700;483;1182;667;540;770;789;538;1195;1187;1955;1219;2656;631;859;1711;997
-10;'036;Australia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7475;14395;26345;3300;3100;14400;6000;100000;122000;135000;175000;197000;266000;168000;194283;93582;185582;185582;218582;173000;253300;230648;155835;261333;204152;316991;370208;635369;785384;653084;682579;337126;320392;171676
-10;'036;Australia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987;2181;3712;1218;2386;5536;3021;3815;3020;3427;2973;9757;25343;28600;28667;14885;22385;22385;26401;22860;30686;33808;28962;29388;43788;46118;52212;89334;115628;86752;82595;46436;45638;21342
-10;'036;Australia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;144;377;232;100;700;400;700;0;0;0;0;1000;1000;1000;500;500;500;149;1000;281;246;259;359;243;44;251;310;1112;3731;906;1548;142;30
-10;'036;Australia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;30;51;49;28;257;177;261;0;0;0;0;462;480;480;450;450;450;285;528;231;262;239;331;247;106;240;240;1075;2545;600;653;1364;601
-10;'036;Australia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;17000;33000;15283;3582;3582;3582;3582;7000;300;498;329;942;2125;3559;3958;12523;63534;77927;87604;848;148;125
-10;'036;Australia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6827;7000;9000;3667;1385;1385;1385;1385;463;117;53;263;289;417;1763;1413;4700;21762;24254;18829;291;49;62
-10;'036;Australia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;222;1110;1273;2900;1000;1000;800;3000;1000;2000;1000;1000;1000;1000;500;1000;1000;384;2000;1000;229;499;434;168;1608;1115;181;151;152;151;270;591;289
-10;'036;Australia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;30;110;270;445;461;629;157;959;390;520;297;278;300;616;455;250;250;198;654;436;278;531;458;291;1089;947;1715;144;111;31;206;347;396
-10;'036;Australia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7475;14395;26345;3300;3100;14400;6000;100000;122000;135000;175000;183000;249000;135000;179000;90000;182000;182000;215000;166000;253000;230150;155506;260391;202027;313432;366250;622846;721850;575157;594975;336278;320244;171551
-10;'036;Australia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987;2181;3712;1218;2386;5536;3021;3815;3020;3427;2973;2930;18343;19600;25000;13500;21000;21000;25016;22397;30569;33755;28699;29099;43371;44355;50799;84634;93866;62498;63766;46145;45589;21280
-10;'036;Australia;1868;Sawlogs and veneer logs;5516;Production;m3;8769000;8222000;8607000;9091000;8936000;9218000;9149000;9200000;8746000;8579000;9060000;8694000;8663000;8565000;7546000;7833000;8003000;8068000;7686000;8508000;8900000;8478000;6983000;7281000;8241000;8144000;8163000;8232000;8201000;8516000;7892000;8149000;8819000;9789000;9589000;9675000;9906000;10423000;10402000;11442000;11123000;11892000;12209000;12655000;12655000;12798000;12530000;12654000;11360000;12155000;11353000;10568000;10291000;11251000;11764521;12310290;13282191;13523102;12863943;12569080;12066000;10660000;9849000
-10;'036;Australia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;186700;107600;151800;130500;164400;63500;82800;122000;115600;127800;92900;95900;101900;102000;40000;46400;20500;16700;10400;300;200;1000;1000;300;500;1100;1000;900;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3959;2349;3284;2977;3779;1879;2577;4139;3716;4047;3019;3074;4474;7069;2282;2761;2032;2010;1494;103;64;181;227;78;85;206;270;307;1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;29400;19400;13100;18500;13600;8000;1200;2800;700;2100;1300;500;2500;2700;3600;3500;400;400;400;600;200;400;500;1800;1200;1400;26000;26000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;735;496;336;413;364;286;85;269;49;210;128;25;278;539;490;468;67;67;122;181;52;100;95;194;205;143;1027;1027;492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1543000;1536000;1592000;1685000;1675000;1766000;1703000;1681000;1613000;1720000;1736000;1838000;1914000;2075000;1833000;1902000;2017000;2216000;2324000;2713000;2900000;2834000;2496000;2796000;3403000;3433000;3441000;3557000;3614000;3951000;3645000;4154000;4569000;5305000;4510000;5105000;5891000;6540000;6357000;7341000;7458000;8244000;8557000;9074000;9074000;9384000;9477000;9502000;8552000;9525000;8988000;8282000;8302000;9281000;9708613;10155178;10858276;10840456;10352215;10654361;10012000;8667000;8083000
-10;'036;Australia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;5100;7600;9700;6700;3400;7600;13600;13100;2300;1800;2800;4800;4800;2000;2000;4500;1700;2000;100;100;100;100;500;200;300;200;300;500;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;150;152;264;169;90;248;449;587;105;101;88;102;102;135;135;173;97;244;15;28;28;24;109;63;38;42;58;171;546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;200;100;300;300;300;300;300;500;300;200;100;100;100;100;100;100;300;400;1500;400;900;10400;10400;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;15;1;4;4;4;4;4;58;57;42;20;20;20;20;20;20;68;62;118;51;86;365;365;276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;7226000;6686000;7015000;7406000;7261000;7452000;7446000;7519000;7133000;6859000;7324000;6856000;6749000;6490000;5713000;5931000;5986000;5852000;5362000;5795000;6000000;5644000;4487000;4485000;4838000;4711000;4722000;4675000;4587000;4565000;4247000;3995000;4250000;4484000;5079000;4570000;4015000;3883000;4045000;4101000;3665000;3648000;3652000;3581000;3581000;3414000;3053000;3152000;2808000;2630000;2365000;2286000;1989000;1970000;2055908;2155112;2423915;2682646;2511728;1914719;2054000;1993000;1766000
-10;'036;Australia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;181600;100000;142100;123800;161000;55900;69200;108900;113300;126000;90100;91100;97100;100000;38000;41900;18800;14700;10300;200;100;900;500;100;200;900;700;400;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;3809;2197;3020;2808;3689;1631;2128;3552;3611;3946;2931;2972;4372;6934;2147;2588;1935;1766;1479;75;36;157;118;15;47;164;212;136;983;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;29400;19400;13100;18500;13600;7800;1100;2500;400;1800;1000;200;2000;2400;3400;3400;300;300;300;500;100;100;100;300;800;500;15600;15600;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;735;496;336;413;364;271;84;265;45;206;124;21;220;482;448;448;47;47;102;161;32;32;33;76;154;57;662;662;216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10192000;9840000;12310000;12597000;11759000;13017000;13197000;13197000;13314000;13815000;14908000;13571000;12855000;14628000;12302000;11648000;13452000;14996255;17283479;19361744;18981673;19108936;16159062;14208000;14642000;14466000
-10;'036;Australia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4061000;4134000;4655000;4711000;4696000;4977000;5102000;5102000;4580000;4593000;5080000;4370000;4499000;5632000;5283000;4830000;4718000;4900251;5857858;6517047;6347258;6340916;6402741;6177000;5799000;5611000
-10;'036;Australia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6131000;5706000;7655000;7886000;7063000;8040000;8095000;8095000;8734000;9222000;9828000;9201000;8356000;8996000;7019000;6818000;8734000;10096004;11425621;12844697;12634415;12768020;9756321;8031000;8843000;8855000
-10;'036;Australia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1143000;1064000;1237000;1389000;1506000;1550000;1467000;1533000;1831000;1977000;2139000;2034000;1959000;2268000;4976000;4341000;5353000;5319000;5314000;6390000;6411000;5774000;6149000;6790000;7419000;7859000;7859000;8094000;7810000;8032000;8060000;7925000;8276000;8414000;9383000;9065000;9414000;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;109000;125000;193000;244000;302000;362000;452000;529000;708000;730000;791000;787000;736000;897000;933000;901000;872000;937000;982000;1120000;1400000;1560000;1878000;1770000;2199000;2589000;2589000;2097000;2625000;2632000;2655000;2738000;2964000;3305000;3236000;3622000;4112000;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1034000;939000;1044000;1145000;1204000;1188000;1015000;1004000;1123000;1247000;1348000;1247000;1223000;1371000;4043000;3440000;4481000;4382000;4332000;5270000;5011000;4214000;4271000;5020000;5220000;5270000;5270000;5997000;5185000;5400000;5405000;5187000;5312000;5109000;6147000;5443000;5302000;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1871;Other industrial roundwood;5516;Production;m3;826000;775000;729000;796000;856000;846000;712000;693000;688000;640000;613000;634000;689000;758000;670000;698000;533000;682000;696000;753000;617000;620000;655000;1005000;1169000;1116000;724000;576000;573000;665000;652000;580000;564000;559000;588000;600000;471000;543000;596000;655000;672000;541000;488000;480000;480000;623000;738000;648000;557000;551000;551000;627000;640000;564000;529188;489250;499159;579717;626595;752962;823000;681000;645000
-10;'036;Australia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;33800;43800;43800;43800;2700;27600;1700;900;1500;3000;700;2000;5300;7100;300;200;300;400;400;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;522;666;666;666;65;525;63;43;82;189;40;104;258;400;69;11;31;60;101;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1871;Other industrial roundwood;5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;26700;9200;10300;16300;12000;4200;4200;7900;1700;1800;3900;6900;7700;3200;5100;7900;5200;3600;4900;1300;6500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1871;Other industrial roundwood;5922;Export value;1000 USD;50;114;45;89;82;128;662;510;259;334;434;325;280;345;333;298;81;280;560;661;1068;1755;2551;1576;859;1090;296;1860;2782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;12000;4000;4000;4000;28000;28000;29000;28000;28000;28000;28000;57000;66000;84000;74000;84000;114000;124000;176000;140000;130000;68000;123000;166000;124000;124000;145000;152000;365000;267000;250000;332000;359000;388000;423000;353000;414000;469000;478000;528000;415000;377000;343000;343000;415000;472000;428000;392000;394000;361000;383000;418000;369000;320199;333013;315558;392294;448568;534754;577000;458000;418000
-10;'036;Australia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;826000;763000;725000;792000;852000;818000;684000;664000;660000;612000;585000;606000;632000;692000;586000;624000;449000;568000;572000;577000;477000;490000;587000;882000;1003000;992000;600000;431000;421000;300000;385000;330000;232000;200000;200000;177000;118000;129000;127000;177000;144000;126000;111000;137000;137000;208000;266000;220000;165000;157000;190000;244000;222000;195000;208989;156237;183601;187423;178027;218208;246000;223000;227000
-10;'036;Australia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;33800;43800;43800;43800;2700;27600;1700;900;1500;3000;700;2000;5300;7100;300;200;300;400;400;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;522;666;666;666;65;525;63;43;82;189;40;104;258;400;69;11;31;60;101;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;26700;9200;10300;16300;12000;4200;4200;7900;1700;1800;3900;6900;7700;3200;5100;7900;5200;3600;4900;1300;6500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;50;114;45;89;82;128;662;510;259;334;434;325;280;345;333;298;81;280;560;661;1068;1755;2551;1576;859;1090;296;1860;2782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1630;Wood charcoal;5510;Production;t;16744;16912;17083;17255;17028;17804;17581;17760;17841;18024;18306;18674;18989;19420;19701;19831;20012;19734;19817;19857;20091;20601;20563;20730;20890;21128;21205;21324;21528;5963;9694;23540;22574;23358;24710;24580;15000;15000;15000;35000;27000;27000;27000;24000;24000;24000;24000;24000;24000;23000;23000;23000;24165;24262;23000;24000;24000;24000;24000;24000;24000;24000;24000
-10;'036;Australia;1630;Wood charcoal;5610;Import quantity;t;100;100;100;100;300;100;100;100;100;100;100;100;100;100;100;100;100;200;200;200;100;100;100;100;100;100;100;100;100;16000;12600;311;200;100;100;0;150;100;100;400;1000;1000;1000;1000;2000;2000;2000;4000;4140;4211;8000;11059;20568;16628;13823;14319;18151;20302;20485;20415;22793.78;27756;28182
-10;'036;Australia;1630;Wood charcoal;5622;Import value;1000 USD;28;19;20;18;76;11;11;11;15;16;16;19;17;14;31;31;31;102;102;102;25;25;25;25;25;25;25;25;25;657;550;105;157;71;102;0;92;54;60;109;184;276;404;400;645;640;640;1579;1865;1977;3653;5571;9161;7652;6336;7557;9879;10742;10663;10418;16531.91;22016;17874
-10;'036;Australia;1630;Wood charcoal;5910;Export quantity;t;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469;400;1100;2400;2000;800;1400;1000;1000;1000;4000;4000;6000;6000;6000;50;75;25;3;4;17;77;84;595;612;13;235;176;248;298;12;523
-10;'036;Australia;1630;Wood charcoal;5922;Export value;1000 USD;50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;244;455;985;980;368;538;413;422;691;2186;2146;3111;3375;3660;31;25;37;5;10;15;66;92;461;469;28;177;129;174;219;30;489
-10;'036;Australia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15536000;15187000;18045000;18159000;17675000;18883000;19204000;19854000;19196000;19481000;21979000;20388000;16273000;16005000;13825000;13825000;13825000;16539281;18699563;20540522;20535215;20763119;17435293;12737000;13189000;13068000
-10;'036;Australia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;15000;8600;7500;6000;6300;2744;10400;17900;16700;41500;24100;31400;43670;53418;5539;6388;4237;4059;3112;2565;2259;3869;3081.67;3354;1745
-10;'036;Australia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;1279;966;897;755;781;1241;2547;2191;1585;2638;1863;2571;3524;3789;3615;4538;4157;4136;3849;4163;3896;3699;5593.37;5840;3438
-10;'036;Australia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8249000;8276000;10284000;9426000;10594000;10485000;11200000;10696000;11527000;12196000;12285000;9560000;10463000;10998069;9008902;9408525;11604005;12750013;13843473;15364467;16366912;14067677;9931484;11393470;13096407;10472559
-10;'036;Australia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392535;378436;421206;367455;426700;503315;623410;631810;678037;834625;957397;687411;846662;798572;694229;637490;757660;788130;835010;939896;1094956;1026999;675389;777989;907396;821412
-10;'036;Australia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13353000;13068000;15469000;15644000;14849000;16098000;16355000;16851000;16563000;17181000;19679000;18088000;13696000;13428000;11248000;11248000;11248000;13962281;16122563;17963522;17958215;18186119;14858293;3351000;3660000;3197000
-10;'036;Australia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1864;3000;4000;3000;4000;4400;6000;9000;8000;7000;5000;5000;744;6400;13900;12700;38500;22100;28400;40000;50000;2053;2986;1588;2850;2654;2520;1836;2961;2437.67;3026;1476
-10;'036;Australia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;242;269;220;413;534;655;1070;895;775;646;646;791;1870;1514;908;1879;1044;1232;1929;2301;2635;3158;2958;3304;3625;4142;3747;3449;5459.37;5432;3122
-10;'036;Australia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;319000;829000;1930000;2490000;2613000;3457000;4786003;4635000;4957000;6599400;6131500;5654500;5435200;6575800;6756200;6582000;7363500;7560000;7690000;5064000;5828000;5164000;6237000;6515000;7280000;6817000;7815000;8249000;8269000;10280000;9421000;10591000;10483000;11198000;10694000;11524000;12191000;12282000;9549000;10404000;10937000;8962000;9376000;11600000;12748000;13842000;15364000;16366000;14067000;9930487;11392826;13096079;10457000
-10;'036;Australia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;8353;23357;66468;94470;63572;63745;88241;92972;106320;149601;187709;177351;137603;168131;151116;160122;242348;270763;305670;299119;339821;283530;314864;345062;421085;418286;430528;392535;377306;420361;366878;426280;503045;623230;631554;677871;834279;956834;686095;840291;790672;689496;631555;756049;787247;834282;938579;1092099;1024194;673017;777857;907016;821188
-10;'036;Australia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143000;2183000;2119000;2576000;2515000;2826000;2785000;2849000;3003000;2633000;2300000;2300000;2300000;2577000;2577000;2577000;2577000;2577000;2577000;2577000;2577000;2577000;2577000;2577000;9386000;9529000;9871000
-10;'036;Australia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3750;4839;0;0;0;0;0;6000;600;500;1000;1300;2000;4000;4000;4000;3000;2000;3000;3670;3418;3486;3402;2649;1209;458;45;423;908;644;328;269
-10;'036;Australia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;161;0;0;0;0;0;209;71;122;109;135;450;677;677;677;759;819;1339;1595;1488;980;1380;1199;832;224;21;149;250;134;408;316
-10;'036;Australia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1224;1337;0;0;0;0;0;7000;4000;5000;3000;2000;2000;2000;3000;5000;3000;11000;59000;61069;46902;32525;4005;2013;1473;467;912;677;997;644;328;15559
-10;'036;Australia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;44;0;0;0;0;0;1130;845;577;420;270;180;256;166;346;563;1316;6371;7900;4733;5935;1611;883;728;1317;2857;2805;2372;132;380;224
-10;'036;Australia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-10;'036;Australia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-10;'036;Australia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-10;'036;Australia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-10;'036;Australia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;105000;106495;111128;200826;130817;61312;75922;100085;100085;100085
-10;'036;Australia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;350;401;875;2759;6090;3733;3830;6296;13273.34;14143;9615
-10;'036;Australia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;196;268;339;1224;2327;3024;2162;2441;4738.71;5240;6010
-10;'036;Australia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;721;1058;2241;1942;70640;79151;61312;75922;94001.89;62896;48763
-10;'036;Australia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;364;524;960;1093;7840;8621;7428;10470;13260.18;9771;7570
-10;'036;Australia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;105000;105000;110000;200000;130000;60967;75402;99910;99910;99910
-10;'036;Australia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;350;401;875;2022;1864;1379;2158;4808;4503;6143;6173
-10;'036;Australia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;196;268;339;589;531;510;849;1356;2124;2618;3337
-10;'036;Australia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;721;1058;746;814;69814;78334;60967;75402;93997.89;62763;48726
-10;'036;Australia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;364;524;375;383;7455;8246;7274;10259;13245.18;9704;7543
-10;'036;Australia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495;1128;826;817;345;520;175;175;175
-10;'036;Australia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;737;4226;2354;1672;1488;8770.34;8000;3442
-10;'036;Australia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;1796;2514;1313;1085;2614.71;2622;2673
-10;'036;Australia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495;1128;826;817;345;520;4;133;37
-10;'036;Australia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;710;385;375;154;211;15;67;27
-10;'036;Australia;1872;Sawnwood;5516;Production;m3;3407000;3287000;3081000;3635000;3700000;3726000;3602000;3718000;3510000;3559000;3479000;3497000;3490000;3499000;3511000;3490000;3488000;3191000;3168000;3389000;3553000;3364000;2991000;3003000;3216000;3220000;3131000;3342000;3165000;3151000;2858000;3041000;3187000;3431000;3691000;3530000;3544000;3789000;3743000;4093000;3921000;4215000;4411000;4668000;4687000;4784000;5064000;5372000;4730000;5079000;4556000;4388000;4593000;4888000;5084653;5104045;4726223;4636081;4509183;4376682;4376682;4350000;4257000
-10;'036;Australia;1872;Sawnwood;5616;Import quantity;m3;826400;641500;657700;788600;829400;776700;755500;829300;891700;883100;926300;906000;1090900;1271000;909400;1024900;1166700;947200;968500;993400;1060600;1140600;826300;1067900;1394200;1255600;1070900;1270200;1724600;1407300;1238300;1193100;1193100;1080400;1058400;741900;757000;786000;782000;1025000;584000;736000;778000;804000;701000;570000;575200;734000;531000;732527;703639;579596;645384;697998;759217;687784;659077;972963;579343;525728;714164;1048262;557075
-10;'036;Australia;1872;Sawnwood;5622;Import value;1000 USD;27207;26133;29414;36415;40782;35505;35277;41852;49260;54975;55090;54280;89237;159318;110062;124980;156754;169078;174480;216461;216404;221900;146914;199142;224843;218590;206176;288730;401070;362132;308368;301789;333241;432941;399471;287426;278148;265516;278428;342710;194033;238213;267540;307300;301500;267000;317066;351209;242967;343654;374530;325250;327750;362959;324047;294642;327938;453348;274276;248365;437969;749891;325881
-10;'036;Australia;1872;Sawnwood;5916;Export quantity;m3;95600;106600;89800;86300;66600;43400;93700;42700;42600;52100;45600;40700;83900;63100;68800;61884;56500;51800;69800;82600;60100;50600;44500;39500;35100;33600;12900;22600;22500;18200;20100;47432;32361;43900;53500;55400;60200;46000;87000;110000;136000;75000;68000;154000;243000;344000;377000;345000;325000;437214;265782;231602;282889;406549;348244;315720;327708;266017;256409;235388;175642;196722;174995
-10;'036;Australia;1872;Sawnwood;5922;Export value;1000 USD;5954;6217;5289;4978;4390;3128;6331;3479;3617;4356;3679;5659;8856;10108;10261;10509;10427;11149;16298;21438;17332;14529;12105;11228;8919;9181;4647;10607;9885;8275;8718;14134;11575;20212;27238;31715;32699;20711;33796;36672;32477;36806;32473;64281;76250;91120;99232;99955;80189;119493;93436;84684;89599;96544;78945;81912;90463;70322;64923;63438;52878;46709;49062
-10;'036;Australia;1632;Sawnwood, coniferous;5516;Production;m3;789000;859000;1641000;978000;953500;995000;959500;932000;891000;913000;902500;917500;960500;923000;971500;1007500;1087000;1054000;1091500;1247500;1336000;1284500;1140000;1194000;1316000;1337000;1238500;1653000;1536000;1405000;1337000;1570000;1660000;1898000;2121000;2053000;2120000;2338000;2338000;2622000;2634000;2877000;3088000;3415000;3456000;3596000;3929000;4263000;3740000;4202000;3826000;3643000;3849000;4220000;4457653;4429250;3970000;3923998;3825610;3751339;3751339;3739000;3803000
-10;'036;Australia;1632;Sawnwood, coniferous;5616;Import quantity;m3;625200;515400;506000;628100;590600;611100;610700;611400;683900;631100;667350;664650;771800;853000;635450;688750;743200;639900;675900;691950;770400;867500;631200;806700;1096900;1006400;834850;1023150;1410400;1153800;1067700;1029600;1030000;947000;913800;647800;657000;678000;673000;893000;490000;624000;652000;655000;563000;444000;427200;617000;446000;645527;616999;505697;577690;626959;696123;626008;601326;918524;530660;475954;666137;989118;510961
-10;'036;Australia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;18757;20179;21803;28002;27110;26811;27431;28878;36872;39628;38003;38383;59492;102306;69805;79025;91825;115339;115176;136731;134194;147406;100878;134732;109706;159608;143343;213140;298781;265573;237914;231225;255739;345720;308016;224077;217396;211069;216898;269730;145699;180603;205140;226100;213000;176250;210682;255527;169867;263442;279291;235793;255880;283781;258394;234091;266851;391552;223467;198898;379162;678012;272985
-10;'036;Australia;1632;Sawnwood, coniferous;5916;Export quantity;m3;22800;32850;27950;26550;12700;6650;34500;11150;6400;12300;14400;11400;19100;10450;22100;22817;15600;13300;18200;19350;15400;10600;7250;2900;3100;1600;300;1600;1000;3000;2200;8043;12361;21700;26400;25900;24000;18000;32000;51000;73000;36000;35000;120000;208000;305000;338000;294000;281000;383214;205204;205287;240979;362569;296776;269556;274068;178437;182085;201014;128027;89000;110000
-10;'036;Australia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1201;1751;1510;1375;712;475;2332;981;608;1030;1318;1888;2316;1560;3139;3308;2420;2885;3389;4147;4016;2767;1846;781;893;443;88;639;552;1047;1433;3250;3154;8266;11386;10518;9411;6257;11498;12154;16567;14400;12354;31200;50000;62850;70962;61091;50539;76599;59591;60245;64901;71256;62228;55707;56688;42510;40276;41394;30465;27756;32499
-10;'036;Australia;1633;Sawnwood, non-coniferous;5516;Production;m3;2618000;2428000;1440000;2657000;2746500;2731000;2642500;2786000;2619000;2646000;2576500;2579500;2529500;2576000;2539500;2482500;2401000;2137000;2076500;2141500;2217000;2079500;1851000;1809000;1900000;1883000;1892500;1689000;1629000;1746000;1521000;1471000;1527000;1533000;1570000;1477000;1424000;1451000;1405000;1471000;1287000;1338000;1323000;1253000;1231000;1188000;1135000;1109000;990000;877000;730000;745000;744000;668000;627000;674795;756223;712083;683573;625343;625343;611000;454000
-10;'036;Australia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;201200;126100;151700;160500;238800;165600;144800;217900;207800;252000;258950;241350;319100;418000;273950;336150;423500;307300;292600;301450;290200;273100;195100;261200;297300;249200;236050;247050;314200;253500;170600;163500;163100;133400;144600;94100;100000;108000;109000;132000;94000;112000;126000;149000;138000;126000;148000;117000;85000;87000;86640;73899;67694;71039;63094;61776;57751;54439;48683;49774;48027;59144;46114
-10;'036;Australia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;8450;5954;7611;8413;13672;8694;7846;12974;12388;15347;17087;15897;29745;57012;40257;45955;64929;53739;59304;79730;82210;74494;46036;64410;115137;58982;62833;75590;102289;96559;70454;70564;77502;87221;91455;63349;60752;54447;61530;72980;48334;57610;62400;81200;88500;90750;106384;95682;73100;80212;95239;89457;71870;79178;65653;60551;61087;61796;50809;49467;58807;71879;52896
-10;'036;Australia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;72800;73750;61850;59750;53900;36750;59200;31550;36200;39800;31200;29300;64800;52650;46700;39067;40900;38500;51600;63250;44700;40000;37250;36600;32000;32000;12600;21000;21500;15200;17900;39389;20000;22200;27100;29500;36200;28000;55000;59000;63000;39000;33000;34000;35000;39000;39000;51000;44000;54000;60578;26315;41910;43980;51468;46164;53640;87580;74324;34374;47615;107722;64995
-10;'036;Australia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;4753;4466;3779;3603;3678;2653;3999;2498;3009;3326;2361;3771;6540;8548;7122;7201;8007;8264;12909;17291;13316;11762;10259;10447;8026;8738;4559;9968;9333;7228;7285;10884;8421;11946;15852;21197;23288;14454;22298;24518;15910;22406;20119;33081;26250;28270;28270;38864;29650;42894;33845;24439;24698;25288;16717;26205;33775;27812;24647;22044;22413;18953;16563
-10;'036;Australia;1634;Veneer sheets;5516;Production;m3;29300;26100;36200;29900;31700;34800;29400;31700;32400;35400;17700;14000;12900;13400;44000;31000;26000;23000;25000;28000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;5000;5000;5000;5000;5000;5000;1000;5000;4000;4000;2000;82000;117000;123000;132000;122000;122000;122000;122000;122000;122000;122000;122500;110500;112000;115000;115000
-10;'036;Australia;1634;Veneer sheets;5616;Import quantity;m3;2800;2400;3800;3600;6100;5400;5900;9800;15400;16300;16900;17600;15500;22600;22800;21300;22600;14600;15300;17600;21000;21500;17000;20700;24900;22200;19000;25800;28700;23000;12300;12700;13200;23100;20700;12500;17700;22000;18000;16000;15000;18813;15000;19000;21000;28569;35370;27000;15000;9102;16799;12340;7676;8791;13520;11741;14558;12148;13561;8774;7378;8289;5051
-10;'036;Australia;1634;Veneer sheets;5622;Import value;1000 USD;412;423;693;690;1212;1154;1481;2080;3275;3250;3566;3698;4546;8735;7869;8736;8652;6648;7717;9917;11770;9591;9617;11980;11443;12541;10704;16428;21092;18712;12170;12892;15394;15149;18880;16831;14850;15155;16546;14850;10499;12281;14892;16100;18565;30797;37095;27623;17393;19104;29021;24735;17906;18377;22098;17208;16314;14646;13966;9829;11426;14749;11588
-10;'036;Australia;1634;Veneer sheets;5916;Export quantity;m3;300;300;300;400;200;500;500;500;600;1400;1100;700;1300;1000;400;300;700;500;700;300;500;300;300;200;100;100;500;500;300;600;400;700;2200;2100;800;1300;1400;2000;3000;6000;21000;24248;7000;6000;7000;3000;3000;64000;91000;19805;26097;13093;7926;10689;11156;15947;15888;7031;6314;4211;3063;2274;1243
-10;'036;Australia;1634;Veneer sheets;5922;Export value;1000 USD;71;92;90;132;72;153;183;171;190;432;361;300;708;642;286;238;450;423;755;283;483;286;354;259;175;225;992;821;473;769;676;711;2542;2723;2707;5226;5034;3417;4361;3989;4086;5747;4241;5100;6453;4300;4300;23968;31816;45771;63946;34422;20468;25906;26531;30398;35207;20107;17392;12722;7766;6475;3573
-10;'036;Australia;1873;Wood-based panels;5516;Production;m3;233400;223200;964600;300400;348800;423400;444300;499600;509500;564100;576400;525200;633300;714900;610100;697400;732000;722000;735000;819000;836400;842200;704000;829000;870000;894000;975000;959000;1052000;955500;836000;848000;932000;1065000;1108000;1354000;1375000;1553000;1571000;1791000;1773000;1889000;2030000;2042000;1949000;1989000;1786000;1844000;1706000;1646000;1745319;1492000;1454126;1537126;1689126;1721126;1731676;1717108;1732111;1661000;1736000;1741000;1741000
-10;'036;Australia;1873;Wood-based panels;5616;Import quantity;m3;17300;20100;17300;17700;23800;28690;36601;38854;38148;43606;50422;50801;67617;85801;77116;104400;89000;65800;77000;64800;77700;83900;57400;75900;81800;94200;78800;80600;81200;137100;159900;188419;206562;194200;232900;186800;192000;203000;230000;310000;258000;346000;325000;349000;326000;363400;414800;428300;328036;492419;498951;534314;480190;518391;558488;564101;730714;934832;806286;698634;1079223;977291;967099
-10;'036;Australia;1873;Wood-based panels;5622;Import value;1000 USD;2743;2800;2461;2898;3917;4590;5056;6236;5787;6270;7285;6714;9784;20365;15811;23662;25259;20242;27776;29781;35749;35595;24726;28679;25621;29457;30214;37902;38327;54441;56461;67782;69956;85157;92357;79314;75234;73567;81472;87815;64247;101026;106584;135824;143884;169423;208804;206298;159464;271569;292613;316090;294948;348613;311449;305331;400179;494199;458355;430807;740669;797157;602295
-10;'036;Australia;1873;Wood-based panels;5916;Export quantity;m3;7200;8100;17900;27900;34900;38581;36390;40055;51215;50679;63551;54986;73989;43943;50807;16400;14100;15200;11000;22400;16100;11100;19300;13600;13400;15600;15800;14900;9100;58400;82300;114612;75800;208600;196000;204800;228100;211000;295000;348000;459000;456030;484220;473640;509296;419000;424000;251000;238883;155222;133130;87618;63381;101943;111834;129814;82375;65364;78723;107534;115019;135490;78167
-10;'036;Australia;1873;Wood-based panels;5922;Export value;1000 USD;842;843;1285;1816;2360;2477;2670;2765;3016;3316;4275;3588;5418;5128;5194;3273;2910;2917;2827;5634;5940;4013;3927;3512;2304;2653;3760;4442;2715;13355;20060;31841;28636;92466;70662;55023;52950;46683;59010;66781;83977;110184;100949;128519;144778;117375;118755;79560;62337;53895;49073;35029;24605;38661;30041;31867;26014;21953;28110;31748;24427;22888;22371
-10;'036;Australia;1640;Plywood and LVL;5516;Production;m3;109300;99800;122000;106300;96000;100000;98200;103400;94400;107500;112600;103100;118700;113500;77700;73000;78000;85000;87000;87000;89000;89000;71000;82000;89000;98000;104000;111000;130000;125000;101000;107000;122000;138000;145000;131000;151000;170000;174000;192000;157000;192000;219000;146000;156000;145000;130000;134000;118000;120000;154319;160000;160126;160126;160126;160126;170668;156100;182111;176000;176000;176000;176000
-10;'036;Australia;1640;Plywood and LVL;5616;Import quantity;m3;14000;13900;11500;13500;20900;23800;26400;33000;31100;36800;45300;45000;53100;68800;57400;93900;80100;64300;74300;63100;75700;81200;53800;70300;72700;81700;67600;70800;66100;66900;59200;71585;69300;61400;67500;65500;72000;89000;106000;109000;99000;145000;168000;193000;192000;226400;209000;239300;179100;303954;266462;295471;237649;297403;290388;287354;402613;543559;465246;442294;794091;726040;616548
-10;'036;Australia;1640;Plywood and LVL;5622;Import value;1000 USD;2448;2392;2020;2601;3627;4209;4735;5850;5372;5994;7055;6468;8995;19136;13911;22597;24180;19959;27139;29328;35235;34913;24029;27603;24015;26958;26382;34172;30963;30713;26575;32539;27795;35051;35247;32757;35975;38924;45003;44742;33477;59973;70068;84000;92200;115098;135225;133023;94895;184228;176528;196100;172438;216760;196343;182222;265744;333140;314183;309731;583521;638616;448043
-10;'036;Australia;1640;Plywood and LVL;5916;Export quantity;m3;500;400;300;300;300;700;1600;800;1700;1300;1900;2000;6600;3300;1900;400;500;300;500;900;900;1500;1000;1000;800;900;900;800;2800;2300;3000;2704;1300;1400;2400;2100;3300;2000;9000;6000;14000;7706;10000;5000;5000;5000;5000;13000;22883;7222;5466;6740;3744;4128;6571;9222;6919;13970;18580;26282;13374;19279;10457
-10;'036;Australia;1640;Plywood and LVL;5922;Export value;1000 USD;292;238;212;193;201;392;556;489;568;572;800;564;1467;1486;1372;1347;1278;1226;1827;2483;3210;2441;1520;1594;797;814;660;1125;1171;755;999;1490;845;1025;1458;1746;1803;1336;2005;1343;2989;2328;3500;3586;3500;3600;3600;5022;3886;3373;3139;3732;1967;2119;2988;3531;4522;5111;7822;9239;7170;7568;9423
-10;'036;Australia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;95000
-10;'036;Australia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107908;109122
-10;'036;Australia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102999;86275
-10;'036;Australia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097;495
-10;'036;Australia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;337
-10;'036;Australia;1646;Particle board and OSB (1961-1994);5516;Production;m3;10900;17100;726000;57700;90700;134400;163100;204600;234500;264400;282000;256300;343000;426800;379000;481000;501000;517000;531000;622000;635000;637000;535000;645000;675000;688000;742000;724000;799000;723000;636000;642000;711000;828000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;2500;2100;1500;1100;900;1500;2200;1600;2500;1100;1100;3000;11800;14600;19000;5200;2000;500;600;200;500;500;1400;2700;5800;7700;6400;2400;4800;11600;16500;22022;20562;22000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;187;147;104;66;59;80;77;67;80;62;59;142;622;1064;1700;468;215;67;164;80;98;125;239;397;866;1210;2543;872;1505;3813;3864;5310;4622;4708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;100;100;200;500;1700;2000;2000;6700;3300;4200;3200;7600;7600;12600;1400;1000;1200;2100;15700;10500;6300;15000;7200;6600;7600;1400;1400;100;25900;35700;17805;36900;71400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;5;4;16;42;116;170;165;214;348;396;342;628;678;274;214;108;166;236;2287;1844;1049;1797;1067;824;978;464;464;37;4410;8290;4674;7900;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864000;826000;790000;882000;902000;978000;904000;965000;1025000;1048000;944000;1002000;933000;957000;911000;928000;986000;866000;831000;877000;955000;968000;967675;967675;965000;955000;970000;970000;970000
-10;'036;Australia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34500;20400;12700;7000;15000;7000;33000;96000;74000;62000;49000;50000;77750;40897;25382;44000;59629;63245;62069;67627;72691;64479;92618;108244;105902;52040;67368;42642;133691
-10;'036;Australia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518;4037;2740;1853;4201;2523;4112;13957;10660;16884;14134;12000;19176;11218;9418;11561;17373;18887;19804;23280;20229;20979;28199;32928;33049;18961;30657;22215;42958
-10;'036;Australia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71200;112300;99900;61000;55000;25000;21000;26444;34220;28640;22296;18000;18000;9000;15000;9000;5882;4476;2921;7352;11254;12239;5027;7682;10775;14062;42325;39717;38676
-10;'036;Australia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;31008;24389;12331;9063;2459;2811;7140;9240;8013;6020;5175;5319;2999;4265;2472;2438;1421;1526;1216;1201;1671;1621;2011;2051;2045;2325;3442;2286
-10;'036;Australia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-10;'036;Australia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12250;12103;12000;25000;22525;15635;27226;22257;21918;24727;31701;42797;27038;26483;30484;46695;18370
-10;'036;Australia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4704;4069;3206;6236;7723;7976;10249;9299;8193;9517;11967;16509;10201;10145;13790;27627;9277
-10;'036;Australia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;67;0;0;0;0;0;0;0
-10;'036;Australia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;119;0;0;0;0;0;0;0
-10;'036;Australia;1874;Fibreboard;5516;Production;m3;113200;106300;116600;136400;162100;189000;183000;191600;180600;192200;181800;165800;171600;174600;153400;143400;153000;120000;117000;110000;112400;116200;98000;102000;106000;108000;129000;124000;123000;107500;99000;99000;99000;99000;99000;397000;434000;501000;495000;621000;712000;732000;786000;848000;849000;842000;723000;753000;677000;598000;605000;466000;463000;500000;574000;593000;593333;593333;585000;530000;590000;595000;595000
-10;'036;Australia;1874;Fibreboard;5616;Import quantity;m3;800;4100;4300;3100;2000;3390;8001;4254;4548;5706;4022;2801;2717;2401;716;5300;6900;1000;2100;1500;1500;2200;2200;2900;3300;4800;4800;7400;10300;58600;84200;94812;116700;110800;130900;100900;107300;107000;109000;194000;126000;105000;83000;94000;85000;87000;115800;136000;111554;119465;150335;159963;153246;131104;173491;187541;203782;240232;208100;177817;187280;161914;198490
-10;'036;Australia;1874;Fibreboard;5622;Import value;1000 USD;108;261;337;231;231;301;244;319;335;214;171;104;167;165;200;597;864;216;473;373;416;557;458;679;740;1289;1289;2858;5859;19915;26022;29933;37539;45398;50592;42520;36519;32790;32268;40550;26658;27096;25856;34940;37550;42325;49699;57988;51945;69544;90989;93127;92457;99274;86684;92613;94269;111622;100922;91970;112701;108699;102017
-10;'036;Australia;1874;Fibreboard;5916;Export quantity;m3;6700;7600;17500;27400;34100;36181;32790;37255;42815;46079;57451;49786;59789;33043;36307;14600;12600;13700;8400;5800;4700;3300;3300;5400;6000;7100;13500;12700;6200;30200;43600;94103;37600;135800;122400;90400;124900;148000;231000;317000;424000;421880;440000;440000;482000;396000;401000;229000;201000;139000;121782;76402;56716;90463;94009;108286;70429;43712;49368;67190;59320;76494;29034
-10;'036;Australia;1874;Fibreboard;5922;Export value;1000 USD;550;600;1069;1607;2117;1969;1944;2111;2234;2396;3079;2682;3323;2964;3548;1712;1524;1525;764;864;886;523;610;851;683;861;2636;2853;1507;8190;10771;25677;19891;71441;47204;22269;26758;33016;47942;62979;78177;100716;88209;116920;135258;108600;109836;71539;54186;48050;43496;29876;21112;35326;25852;26546;19871;14831;18237;20464;14932;11878;10662
-10;'036;Australia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;55000;44000;43000;43000;45000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0
-10;'036;Australia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14600;11000;6300;6000;8000;10000;7000;8000;8000;19000;27000;37000;30800;29000;24000;40000;62590;69053;77465;70036;81677;91386;99180;89133;73089;56543;57452;56602;54123
-10;'036;Australia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5868;5322;3319;3573;4044;3804;3063;3758;4384;11900;16500;23200;23296;22519;19292;32455;51343;55787;57406;61116;50383;51498;52301;50802;43566;35101;45214;44393;36622
-10;'036;Australia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;0;3000;5000;8000;11000;8000;11000;8000;7000;12000;1000;1000;2000;2172;1868;2220;4656;10906;21340;3885;2227;2992;6047;7964;4861;1650
-10;'036;Australia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;119;85;0;2250;3647;4532;3243;2541;3920;4050;3600;4836;340;1138;1576;2205;1887;2169;2106;3083;5176;2614;2446;2019;1494;2061;1399;1195
-10;'036;Australia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86000;377000;434000;501000;495000;621000;712000;732000;786000;795000;794000;798000;680000;710000;632000;558000;605000;466000;463000;500000;574000;593000;593333;593333;585000;530000;590000;595000;595000
-10;'036;Australia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102100;78300;82000;78000;74000;150000;106000;82000;56000;60000;43000;32000;70600;91000;79554;72465;81213;83858;70873;58603;85065;88797;98304;145312;131826;115385;124676;94245;138506
-10;'036;Australia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39736;33065;26042;22177;19865;30139;19820;18898;14682;18000;14300;12000;23459;32633;30010;34701;36553;34060;32769;36825;34062;38155;38868;56619;55803;55388;66164;61989;63640
-10;'036;Australia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120200;89700;117600;139000;206000;297000;405000;396000;408000;416000;461000;378000;378000;227000;198000;133000;114888;69932;53304;81876;77991;85182;66174;41192;45756;59640;44380;62987;16156
-10;'036;Australia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46780;22000;25784;31468;41926;55032;70490;93006;78768;106000;123000;99750;99750;70433;52566;45924;40647;27242;18289;29344;20551;20759;17234;12346;16147;18916;12584;9965;8613
-10;'036;Australia;1650;Other fibreboard;5516;Production;m3;7100;6400;6500;6600;6600;28000;26000;27600;27600;33200;30800;24800;19600;23600;20400;20400;18000;15000;16000;15000;15400;14200;12000;12000;12000;11000;12000;11000;13000;12500;13000;13000;13000;13000;13000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-10;'036;Australia;1650;Other fibreboard;5616;Import quantity;m3;100;200;100;100;100;1600;6000;1200;1600;3600;1600;800;400;400;400;200;700;100;400;600;600;800;800;700;300;500;500;2800;2000;1200;4200;10712;13100;14300;14200;11600;19000;23000;27000;34000;13000;15000;19000;15000;15000;18000;14400;16000;8000;7000;6532;7052;4908;2465;6749;7358;6298;5787;3185;5889;5152;11067;5861
-10;'036;Australia;1650;Other fibreboard;5622;Import value;1000 USD;37;38;42;35;61;141;107;123;149;97;44;13;21;21;21;28;133;11;107;145;145;193;133;126;47;134;134;1000;800;430;1854;3572;3949;5050;4988;4133;7158;7040;8359;6607;3775;4440;6790;5040;6750;7125;2944;2836;2643;2388;3093;3280;2282;1333;2239;2960;3100;4201;1553;1481;1323;2317;1755
-10;'036;Australia;1650;Other fibreboard;5916;Export quantity;m3;;100;300;200;200;800;1200;400;800;800;800;400;400;400;400;100;200;200;100;100;100;100;100;500;1100;600;1000;200;1800;13700;1200;4303;200;1300;2100;400;7000;9000;22000;15000;11000;14880;24000;13000;13000;11000;11000;1000;2000;4000;4722;4602;1192;3931;5112;1764;370;293;620;1503;6976;8646;11228
-10;'036;Australia;1650;Other fibreboard;5922;Export value;1000 USD;;39;54;33;35;33;65;41;41;49;57;23;37;93;115;21;21;9;17;14;13;13;12;43;79;76;96;49;407;3690;360;1458;68;441;377;150;889;1548;3766;4300;3155;4467;6900;7000;8208;5250;5250;766;482;550;644;747;654;3876;2218;611;23;39;71;54;287;514;854
-10;'036;Australia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;106100;99900;110100;129800;155500;161000;157000;164000;153000;159000;151000;141000;152000;151000;133000;123000;135000;105000;101000;95000;97000;102000;86000;90000;94000;97000;117000;113000;110000;95000;86000;86000;86000;86000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;700;3900;4200;3000;1900;1790;2001;3054;2948;2106;2422;2001;2317;2001;316;5100;6200;900;1700;900;900;1400;1400;2200;3000;4300;4300;4600;8300;57400;80000;84100;103600;96500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;71;223;295;196;170;160;137;196;186;117;127;91;146;144;179;569;731;205;366;228;271;364;325;553;693;1155;1155;1858;5059;19485;24168;26361;33590;40348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;6700;7500;17200;27200;33900;35381;31590;36855;42015;45279;56651;49386;59389;32643;35907;14500;12400;13500;8300;5700;4600;3200;3200;4900;4900;6500;12500;12500;4400;16500;42400;89800;37400;134500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;550;561;1015;1574;2082;1936;1879;2070;2193;2347;3022;2659;3286;2871;3433;1691;1503;1516;747;850;873;510;598;808;604;785;2540;2804;1100;4500;10411;24219;19823;71000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1879;Total fibre furnish;5510;Production;t;372000;383100;460000;511700;572600;339000;363900;375700;434200;935200;963200;1004600;960000;1076000;1000000;1033000;1084000;1119000;1157000;1255000;1258000;1368000;1272000;1327000;1448000;1449000;1576000;1765000;1699000;1727000;1880000;1990000;2037000;1983000;2090000;2301000;2433000;2399000;2418000;2921000;3005000;3055000;3051000;3036000;3336000;3679000;3950000;4473000;4188000;4507000;4518000;4622000;4447000;4468000;4550202;4609202;4517259;4587690;4440000;4193000;4152000;4127000;3790000
-10;'036;Australia;1879;Total fibre furnish;5610;Import quantity;t;6100;6800;11600;10400;13500;17900;17400;244100;259400;311400;291400;237200;310400;348000;305700;245800;283900;265400;297000;283900;300400;252400;217000;236200;197700;225100;263800;288100;265000;265700;191900;239658;263376;244900;221100;210200;253000;230000;342000;337500;297400;346400;354000;426100;380259;354047;396918;420249;280230;239600;234626;255522;276169;296736;297036;282352;299115;313377;291355;285555;376765.57;382437;276675
-10;'036;Australia;1879;Total fibre furnish;5622;Import value;1000 USD;428;487;817;830;958;1878;1526;26744;28780;39712;42222;33181;50594;65544;92006;69340;74228;64764;79522;101987;125538;102195;73923;86301;70446;69596;120527;177686;175697;183525;114180;113129;105981;92362;118356;149409;101537;86454;123980;174878;117168;124770;132372;168456;178660;183602;235649;270339;142233;172211;186100;168421;162694;181167;159380;166196;165866;196486;197044;160189;267848.35;300435;214392
-10;'036;Australia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;8000;4500;4500;6100;3100;4100;10300;10900;20100;23400;31000;41400;54800;61800;62100;94400;77500;62356;93833;141300;233100;133400;84700;139000;289000;295600;264000;293500;337000;474000;811000;974000;1198000;1440000;1359000;1426317;1334157;1532315;1430006;1413846;1436181;1341977;1369424;1122172;1055002;1047425;1077288.46;1051955;1146765
-10;'036;Australia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;765;425;425;537;383;484;1414;1790;2407;2696;4650;5543;6901;8342;9171;12619;7635;6091;13833;10914;32437;20540;7962;11230;18528;28403;25654;28830;33526;52209;97655;117875;180821;242361;163179;242094;259019;245716;224927;213784;190057;180767;211146;177223;128552;118248;205317.31;216133;138321
-10;'036;Australia;1878;Pulp for paper;5510;Production;t;372000;383100;460000;511700;572600;339000;363900;375700;434200;547200;557200;574600;510000;612000;571000;557000;581000;602000;656000;702000;708000;762000;752000;833000;898000;922000;931000;1006000;1048000;1047000;1049000;1028000;1002000;1003000;1010000;961000;945000;936000;882000;1028000;1206000;1394000;1170000;1107000;1159000;1153000;1182000;1445000;1226000;1304000;1417000;1431000;1431000;1431000;1408202;1385202;1378000;1523000;1521000;1395000;1395000;1402000;1097000
-10;'036;Australia;1878;Pulp for paper;5610;Import quantity;t;6100;6800;11600;10400;13500;17900;17400;244100;259400;304400;284400;230200;303400;341300;299600;230400;275400;235300;276000;272900;280600;246500;212900;231500;196400;224900;263300;285700;262900;263700;188200;211247;238147;224700;196900;184400;205900;187000;287000;293500;268400;310400;327000;368100;372100;344505;387762;414450;277230;236600;232608;252875;271700;292212;293151;280508;297830;310497;288165;284342;371072.57;364340;275536
-10;'036;Australia;1878;Pulp for paper;5622;Import value;1000 USD;428;487;817;830;958;1878;1526;26744;28780;39166;41676;32635;50048;64332;90996;67272;73209;60919;76383;99785;121965;101445;73374;84842;70273;69578;120383;177125;175429;182929;112957;109329;103348;89479;114451;144707;95023;82016;119557;169526;113694;120558;128930;165330;177412;181938;233713;269281;141744;171710;185665;167699;161046;179475;158420;165924;165589;195686;196078;159885;267559.35;299478;214066
-10;'036;Australia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;8000;4500;4500;4500;100;100;3800;3800;;;;;;;0;0;0;882;212;0;0;0;0;0;0;1600;2000;3500;3000;4000;6000;10000;10000;17000;19000;16317;11443;543;3045;3013;376;415;135;601;245;415;145;152;153
-10;'036;Australia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;765;425;425;425;39;39;583;583;;;;;;;0;0;0;374;76;0;0;0;0;0;0;582;918;886;1096;1353;2883;5375;5375;12054;11428;12972;11453;538;2176;2004;296;388;458;821;365;523;307.34;420;413
-10;'036;Australia;1875;Wood pulp;5510;Production;t;368100;380000;457000;509700;570600;336000;360900;372700;431200;544200;554200;574600;510000;612000;571000;557000;579000;598000;650000;697000;703000;753000;751000;823000;887000;910000;919000;994000;1036000;1035000;1037000;1019000;996000;997000;1003000;954000;945000;936000;882000;894000;1074000;1267000;1170000;1107000;1159000;1153000;1182000;1445000;1226000;1304000;1417000;1431000;1431000;1431000;1408202;1385202;1378000;1523000;1521000;1395000;1395000;1402000;1097000
-10;'036;Australia;1875;Wood pulp;5610;Import quantity;t;9400;11800;19600;20400;19900;15100;16100;248700;263100;309500;287900;233800;306700;344000;301400;231700;276800;236600;280500;275900;280400;247400;213500;232000;198100;224500;262900;285300;267100;264900;188700;209738;237735;223900;196300;183500;202800;182000;279000;322500;293000;341000;343000;383100;370100;343050;380851;408224;274263;235600;232228;252805;271438;290540;291903;279364;297086;309409;287077;283705;368765.84;363179;270423
-10;'036;Australia;1875;Wood pulp;5622;Import value;1000 USD;978;1287;2117;2430;1958;1547;1765;27846;29482;40175;42389;33365;50810;65009;91681;67752;73824;61205;77642;100773;122044;101986;73851;85244;71093;69696;120501;177243;177313;183398;113190;108109;102955;89086;113944;143731;93143;79529;115910;187007;124860;131686;134563;171720;175664;180725;228182;263898;138890;169886;185191;167430;160622;177577;156425;164057;164131;192925;191555;155468;260172.41;293742;209198
-10;'036;Australia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;8000;4500;4500;4500;100;100;3800;3800;;;;;;;0;0;0;882;212;0;0;0;0;0;0;1600;2000;3500;3000;4000;6000;10000;10000;17000;19000;16317;11443;528;3014;3000;352;436;151;596;132;414;141;124;122
-10;'036;Australia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;765;425;425;425;39;39;583;583;;;;;;;0;0;0;374;76;0;0;0;0;0;0;582;918;886;1096;1353;2883;5375;5375;12054;11428;12972;11453;434;1905;1898;149;271;241;626;123;501;271.34;249;253
-10;'036;Australia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477000;474000;444000;348000;348000;324000;317000
-10;'036;Australia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5175;4537;5933;7029;3971.86;3681;2256
-10;'036;Australia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4501;3779;4626;4136;3444.24;3018;2069
-10;'036;Australia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;74;132;169;123;119;119
-10;'036;Australia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;217;123;292;255.34;232;232
-10;'036;Australia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;216900;225500;263400;290800;322400;75500;73200;75200;97500;133800;126500;151500;144000;184000;175000;167000;182000;177000;198000;212000;235000;324000;321000;363000;357000;364000;377000;414000;439000;431000;422000;459000;436000;363000;430000;364000;364000;345000;366000;355000;538000;539000;449000;381000;387000;371000;372000;445000;449000;397000;420000;402000;402000;402000;376000;380000;;;;;;;
-10;'036;Australia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;6100;6800;11600;10400;13500;10000;12500;16600;17700;20100;17800;11800;11900;12400;7200;4100;4500;6000;16800;4300;2900;800;2800;5300;2900;2700;3700;9000;6000;6900;3600;311;500;2400;300;300;2100;3000;9000;9000;5000;5000;5000;5000;11000;6000;7100;2000;1000;400;384;603;2093;2474;2543;1841;;;;;;;
-10;'036;Australia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;428;487;817;830;958;734;932;1227;1342;1552;1581;986;1108;1522;1407;781;854;1066;4135;1573;1279;362;819;1487;979;603;1437;5073;3696;4619;2264;120;166;881;122;180;972;1354;4076;4524;2824;2011;2000;1680;5472;3450;2473;1098;828;253;241;379;1674;1990;1741;1504;;;;;;;
-10;'036;Australia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;8000;4500;4500;4500;100;100;3800;3800;;;;;;;;;;;;;;;;;;;;1500;1000;1000;1000;0;0;0;0;0;0;0;8;0;0;34;;;;;;;
-10;'036;Australia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;765;425;425;425;39;39;583;583;;;;;;;;;;;;;;;;;;;;140;100;100;121;0;0;0;0;0;0;0;10;0;0;13;;;;;;;
-10;'036;Australia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;101200;105400;143200;200400;215100;217600;191000;255000;227000;227000;205000;231000;255000;269000;253000;224000;214000;207000;219000;220000;184000;197000;203000;230000;238000;105000;106000;203000;114000;142000;138000;122000;125000;138000;124000;121000;93000;91000;99000;89000;91000;93000;93000;95000;95000;92000;92000;92000;88000;88000;;;;;;;
-10;'036;Australia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;200;100;500;300;500;500;3000;3000;3000;800;800;600;400;2100;3500;300;500;2000;2600;5817;5985;5200;5000;9700;11000;9000;24000;16000;20000;27000;27000;30000;27000;11000;14000;18000;15000;15000;13233;16282;8920;9345;10112;7251;;;;;;;
-10;'036;Australia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;28;13;272;102;118;118;908;908;908;331;331;200;143;523;1529;137;250;923;1360;2318;1957;1637;2971;7632;4553;3733;9496;4603;8064;10198;11217;13300;12692;5700;8947;12397;7921;11146;11174;10703;5155;6910;7175;6805;;;;;;;
-10;'036;Australia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;5;2;22;;;;;;;
-10;'036;Australia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;15;14;28;;;;;;;
-10;'036;Australia;1656;Chemical wood pulp;5510;Production;t;151200;154500;193600;218900;248200;260500;186500;192100;190500;210000;212600;205500;175000;173000;169000;163000;192000;190000;197000;216000;215000;205000;216000;253000;311000;326000;358000;383000;394000;374000;377000;455000;454000;431000;459000;448000;443000;469000;391000;401000;412000;607000;628000;635000;673000;693000;719000;907000;684000;812000;902000;937000;937000;937000;944202;917202;901000;1049000;1077000;1047000;1047000;1078000;780000
-10;'036;Australia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;226600;241300;284200;266500;218300;291000;328400;291100;224700;269200;228600;255700;263600;272700;244000;208100;224300;193000;217900;253900;274200;256300;252200;181500;203127;231000;216200;191000;173500;189700;170000;246000;264500;243000;278000;294000;331100;332100;326050;359751;388224;258263;220200;218241;235558;259797;278093;279051;269985;291260;304707;280651;276162;363927.98;359079;267536
-10;'036;Australia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;25387;27355;37588;40069;31623;48861;62693;88995;65862;71845;59661;71201;96511;118985;100421;71829;82685;69099;67698;116663;171161;171359;175848;109018;105315;100658;86526;110851;135919;87618;74442;102338;158145;102596;107981;114767;148740;157500;171575;216762;250403;130141;158487;173295;155755;152705;167589;147266;155376;158853;188940;186303;150880;255578.64;289997;205797
-10;'036;Australia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;882;212;;;;;;;1600;2000;2000;2000;3000;5000;10000;10000;17000;19000;16317;11443;528;2995;2995;350;327;17;500;0;242;15;5;3
-10;'036;Australia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;374;76;;;;;;;582;918;746;996;1253;2762;5375;5375;12054;11428;12972;11453;434;1889;1883;135;187;14;405;0;207;14;17;21
-10;'036;Australia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;89500;86800;77200;72800;73100;71500;61000;94000;85000;80000;50000;53000;56000;62000;60000;59000;71000;86000;135000;148000;169000;167000;172000;313000;139000;168000;168000;177000;189000;162000;159000;181000;167000;176000;177000;180000;186000;172000;190000;190000;195000;446000;474000;541000;656000;693000;693000;693000;741202;714202;214000;392000;399000;383000;383000;407000;250000
-10;'036;Australia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;98900;105500;108800;96500;83100;101000;108200;122000;108800;120200;92900;94300;102900;114800;107500;83500;84600;56400;50400;49800;54000;44400;53900;40400;45139;51300;40300;39600;32800;26000;24000;14000;17000;19000;23000;29000;26000;19000;30000;31200;33000;31000;33000;32302;31919;35872;38521;37024;39574;38737;40589;40669;35451;47625.54;46989;37543
-10;'036;Australia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;10167;10427;12254;11999;9920;14940;19921;27839;24340;22382;18390;21820;33021;46116;41238;27375;28911;18851;14063;18502;27000;25716;28685;18220;21590;21021;15962;17644;22434;16640;10319;6205;9155;9092;8748;10754;12390;10336;16000;19569;20743;16419;24132;26050;23220;21588;25538;23910;26014;24646;28500;32332;22251;39263;43629;30619
-10;'036;Australia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;2893;2893;249;313;0;0;0;0;0;0;0
-10;'036;Australia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;1802;1802;45;177;0;0;0;0;0;0;0
-10;'036;Australia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;79500;84300;65500;89400;91700;86200;86000;46000;46000;45000;103000;103000;102000;109000;117000;106000;105000;125000;139000;141000;142000;176000;181000;18000;195000;235000;234000;205000;193000;203000;203000;180000;139000;138000;145000;140000;114000;118000;135000;137000;135000;137000;137000;200000;180000;224000;224000;224000;203000;203000;197000;186000;199000;185000;185000;192000;64000
-10;'036;Australia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;75000;89300;118600;107900;92100;132200;144000;122000;89600;122300;116400;151000;140000;144300;124900;106200;121300;115100;150500;179600;194300;181300;171900;114900;145240;169600;167900;141300;133400;157100;141000;213000;240000;209000;240000;244000;280000;290000;280000;321700;346000;218000;186000;180622;201617;223063;238754;241282;228617;251373;260911;233807;237795;309185.89;308048;225999
-10;'036;Australia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;8670;10854;16989;17539;14618;23552;25538;43970;31453;41126;36148;45955;54800;66455;54134;38110;46469;42536;48177;86119;126550;121012;131783;75862;76109;74529;66873;86369;106965;67842;62241;88635;144549;86590;93140;94926;124600;135643;146250;192367;222946;109029;132655;143135;130154;129634;140722;122232;127577;132620;157485;148911;126373;209923.14;241673;171489
-10;'036;Australia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;212;;;;;;;600;1000;1000;1000;1000;1000;1000;1000;0;0;317;2127;1;101;101;23;11;11;500;0;242;11;2;2
-10;'036;Australia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;76;;;;;;;95;186;147;147;147;147;200;200;0;0;350;1495;2;75;75;17;6;6;405;0;207;7;1;1
-10;'036;Australia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490000;471000;479000;479000;479000;479000;466000
-10;'036;Australia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;3207;6175;2916;7116.54;4042;3994
-10;'036;Australia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1587;2955;5060;2256;6392.5;4695;3689
-10;'036;Australia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;4;3;1
-10;'036;Australia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;7;16;20
-10;'036;Australia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;13700;12700;13600;13600;13600;13600;3000;6000;10000;12000;12000;9000;11000;12000;10000;12000;12000;14000;11000;11000;10000;11000;11000;8000;8000;10000;10000;11000;8000;10000;12000;39000;7000;7000;7000;209000;245000;281000;289000;304000;317000;259000;4000;4000;3000;0;0;0;0;0;;;;;;;
-10;'036;Australia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;16800;9700;10500;14900;10600;14700;25700;15900;4900;10300;10000;1600;2000;1300;200;6300;1700;4000;3100;2700;2900;400;3600;3400;977;1100;1700;2500;2800;2000;2000;1000;500;0;0;2000;100;100;50;251;224;263;200;544;197;119;106;89;50;;;;;;;
-10;'036;Australia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1781;1070;1308;2326;1589;2324;5574;4868;1266;2482;2051;466;732;564;60;2111;766;1343;910;1180;1711;215;2136;1692;463;436;818;1680;2742;1184;810;284;110;0;0;852;200;301;100;179;293;190;142;171;198;102;110;120;58;;;;;;;
-10;'036;Australia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;1;1;78;3;;;;;;;
-10;'036;Australia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;12;6;73;4;;;;;;;
-10;'036;Australia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;3800;8300;34200;34200;34200;34200;25000;27000;28000;26000;27000;25000;28000;33000;28000;28000;28000;28000;26000;26000;37000;29000;30000;35000;35000;42000;42000;38000;69000;73000;69000;69000;78000;80000;83000;78000;83000;64000;59000;62000;72000;65000;69000;67000;63000;20000;20000;20000;0;0;;;;;;;
-10;'036;Australia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;35900;36800;46300;47200;32500;43100;50500;31200;21400;16400;9300;8800;18700;12300;11400;12100;16700;17500;13900;21800;23000;30200;22800;22800;11771;9000;6300;7600;4500;4600;3000;18000;7000;15000;15000;19000;25000;23000;16000;6600;9000;9000;1000;4773;1825;743;712;656;1744;;;;;;;
-10;'036;Australia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;4769;5004;7037;8205;5496;8045;11660;12318;8803;5855;3072;2960;7958;5850;4989;4233;6539;6369;4548;10862;15900;24416;13244;13244;7153;4672;2873;5158;3778;1952;1072;7214;4331;6914;6093;8235;11550;11220;9225;4647;6421;4503;1558;3939;2183;1381;1219;1004;1727;;;;;;;
-10;'036;Australia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;2000;4000;9000;9000;17000;19000;16000;9316;527;0;0;0;0;;;;;;;
-10;'036;Australia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;732;599;849;1106;2615;5175;5175;12054;11428;12622;9958;432;0;0;0;0;;;;;;;
-10;'036;Australia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-10;'036;Australia;1667;Dissolving wood pulp;5610;Import quantity;t;3300;5000;8000;10000;6400;5100;3600;5500;4100;5200;3600;3700;3600;3100;2600;2600;2600;1500;5000;5000;1800;1800;1800;1800;1800;1800;1800;1800;4300;3800;1000;483;250;100;0;0;0;0;0;33000;25000;31000;17000;17000;0;0;0;0;0;0;370;362;628;628;197;287;651;165;493;514;866;419;631
-10;'036;Australia;1667;Dissolving wood pulp;5622;Import value;1000 USD;550;800;1300;1600;1000;813;833;1232;785;1035;739;756;813;781;1007;1007;1007;360;1398;1781;872;872;872;872;872;872;872;872;2008;2008;548;356;174;42;0;0;0;0;0;19735;11376;11496;6579;8000;0;0;0;0;0;0;481;593;1088;1088;243;372;777;206;626;452;1149.52;727;1332
-10;'036;Australia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;53;53;22;0;3;3;0;0
-10;'036;Australia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;43;43;4;0;2;2;0;0
-10;'036;Australia;1668;Pulp from fibres other than wood;5510;Production;t;3900;3100;3000;2000;2000;3000;3000;3000;3000;3000;3000;;;;;;2000;4000;6000;5000;5000;9000;1000;10000;11000;12000;12000;12000;12000;12000;12000;9000;6000;6000;7000;7000;0;0;0;134000;132000;127000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-10;'036;Australia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;7900;4900;900;400;100;100;100;300;400;800;1300;1200;200;500;2000;2000;900;1200;1300;100;2200;2200;2200;100;2600;500;1992;662;900;600;900;3100;5000;8000;4000;400;400;1000;2000;2000;1455;6911;6226;2967;1000;750;432;890;2300;1445;1431;1395;1253;1581;1151;3172.74;1580;5744
-10;'036;Australia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;1144;594;130;83;26;26;26;51;104;322;527;392;74;139;793;793;331;395;470;52;754;754;754;124;1539;315;1576;567;435;507;976;1880;2487;3647;2254;210;368;946;1610;1748;1213;5531;5383;2854;1824;955;862;1512;2986;2238;2239;2235;2967;5149;4869;8536.46;6463;6200
-10;'036;Australia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;31;13;24;32;37;27;113;4;7;28;31
-10;'036;Australia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;104;271;106;147;160;260;199;242;24;38;171;160
-10;'036;Australia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;1000;1000;300;200;1029;1029;150;150;1000;1000;1000;999;3269;13993;16372;9851;1239;1441;2783;2440;1912;2278;2318;1788
-10;'036;Australia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;200;542;827;258;150;710;710;100;100;720;626;447;745;2513;10256;13220;6850;954;1008;1737;1538;1204;2202.97;2531;1404
-10;'036;Australia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1000;10000;14000;1000;500;325;325;0;0;3000;1000;70;74;72;117;15;36;190;55;16;10;596;27;1;10
-10;'036;Australia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;165;1079;1207;200;120;100;100;0;0;410;134;70;87;92;66;10;25;80;50;10;8;269;26;2;1
-10;'036;Australia;1669;Recovered paper;5510;Production;t;;;;;;;;;;388000;406000;430000;450000;464000;429000;476000;503000;517000;501000;553000;550000;606000;520000;494000;550000;527000;645000;759000;651000;680000;831000;962000;1035000;980000;1080000;1340000;1488000;1463000;1536000;1893000;1799000;1661000;1881000;1929000;2177000;2526000;2768000;3028000;2962000;3203000;3101000;3191000;3016000;3037000;3142000;3224000;3139259;3064690;2919000;2798000;2757000;2725000;2693000
-10;'036;Australia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;7000;7000;7000;7000;6700;6100;15400;8500;30100;21000;11000;19800;5900;4100;4700;1300;200;500;2400;2100;2000;3700;28411;25229;20200;24200;25800;47100;43000;55000;44000;29000;36000;27000;58000;8159;9542;9156;5799;3000;3000;2018;2647;4469;4524;3885;1844;1285;2880;3190;1213;5693;18097;1139
-10;'036;Australia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;546;546;546;546;1212;1010;2068;1019;3845;3139;2202;3573;750;549;1459;173;18;144;561;268;596;1223;3800;2633;2883;3905;4702;6514;4438;4423;5352;3474;4212;3442;3126;1248;1664;1936;1058;489;501;435;722;1648;1692;960;272;277;800;966;304;289;957;326
-10;'036;Australia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;1600;3000;4000;6500;7100;20100;23400;31000;41400;54800;61800;62100;94400;77500;61474;93621;141300;233100;133400;84700;139000;289000;294000;262000;290000;334000;470000;805000;964000;1188000;1423000;1340000;1410000;1322714;1531772;1426961;1410833;1435805;1341562;1369289;1121571;1054757;1047010;1077143.46;1051803;1146612
-10;'036;Australia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;112;344;445;831;1207;2407;2696;4650;5543;6901;8342;9171;12619;7635;5717;13757;10914;32437;20540;7962;11230;18528;27821;24736;27944;32430;50856;94772;112500;175446;230307;151751;229122;247566;245178;222751;211780;189761;180379;210688;176402;128187;117725;205009.97;215713;137908
-10;'036;Australia;1876;Paper and paperboard;5510;Production;t;526000;528000;655100;793300;879700;776000;830900;818700;922400;1052400;1071600;1092200;1151900;1185400;1142000;1126000;1278000;1255000;1340000;1459000;1456000;1465000;1430000;1520000;1546000;1596000;1526000;1792000;1870000;2628000;2635000;1990000;2039000;2197000;2252000;2320000;2418000;2541000;2564000;2836000;2672000;2645000;3090000;3097000;3244000;3221000;3192000;3281000;3278000;3203000;3155000;3191000;3059000;3077000;3176000;3224000;3235038;3225000;3213000;3061000;3142000;3118000;2958000
-10;'036;Australia;1876;Paper and paperboard;5610;Import quantity;t;436800;310800;349800;390300;434600;417200;442000;470300;468500;479300;510500;457300;519500;622279;651800;435900;619800;549600;632000;694600;703500;747500;520400;633100;809100;710600;686000;924700;950200;903400;766700;770700;957400;1042500;1345500;1110600;1136300;1284000;1305000;1399000;1144000;1252000;1369000;1564000;1606000;1551000;1490300;1636000;1389000;1702554;1616339;1546931;1451054;1446373;1390760;1346142;1239709;1190435;1123789;1045930;902947.11;860411;773826
-10;'036;Australia;1876;Paper and paperboard;5622;Import value;1000 USD;93512;68506;79172;77843;86605;81345;89184;94608;90616;95072;124812;110273;144187;203677;255876;193531;272818;261336;328518;393682;422958;495865;346414;425719;491528;465064;492006;726313;819455;819342;724734;715755;817400;934351;1190414;1319172;1027165;965857;1073267;1127150;848065;923807;1007782;1211510;1329133;1311550;1349515;1507153;1231017;1633231;1732221;1624304;1408748;1373206;1157847;1189149;1093913;1031311;988821;981807;1047638.18;1178919;990731
-10;'036;Australia;1876;Paper and paperboard;5910;Export quantity;t;6500;6700;8600;14100;22000;16800;24900;27500;33800;40700;43400;49700;51900;42300;30100;20900;31700;43400;41400;95300;110800;79900;72700;57300;82200;86400;120800;92100;131100;163000;198700;241735;289800;274500;247200;241300;419400;402000;389000;458000;539000;588000;704000;776895;731695;808195;684454;740000;787000;726918;778763;897474;1196528;1176431;1128712;1183130;1224505;1131396;1121370;1099291;960366.32;893579;936851
-10;'036;Australia;1876;Paper and paperboard;5922;Export value;1000 USD;2595;2212;3078;4536;5678;4901;7292;6055;7242;8283;9444;12473;15072;18153;18138;11890;14950;19410;20442;39146;43933;35862;28559;30331;33918;33213;55446;58149;65265;82266;102294;124512;152174;157625;165566;182208;260658;167267;187763;210170;229451;305460;305851;378281;376699;403082;413284;444694;380781;473683;556054;591647;741735;727172;647781;667627;690851;701859;708696;604276;625044.25;613581;508733
-10;'036;Australia;2042;Graphic papers;5510;Production;t;170000;151000;520100;189500;197400;217200;215600;210700;248900;299600;307500;311400;336700;376400;356000;322000;376000;361000;398000;431000;481000;500000;555000;600000;581000;618000;595000;695000;705000;777000;785000;708000;737000;774000;809000;796000;785000;868000;902000;999000;1019000;974000;1017000;997000;1103000;1078000;1087000;1162000;1167000;951000;781000;793000;774000;756000;795000;832000;809000;774000;748000;592000;592000;500000;337000
-10;'036;Australia;2042;Graphic papers;5610;Import quantity;t;340400;238400;276900;317300;347000;344600;360300;393300;394600;398300;415800;361300;404900;442100;488400;299600;463300;395400;455100;517900;511500;541200;318700;393900;551800;462700;493200;546300;796200;739500;614400;596800;745700;787000;1038900;858400;875200;913000;935000;1014000;830000;998000;1122000;1290000;1329000;1223000;1113700;1328000;1022000;1340315;1242756;1123033;1057196;1013855;936177;855060;741488;674677;599858;532080;426573.93;380874;343828
-10;'036;Australia;2042;Graphic papers;5622;Import value;1000 USD;57286;40362;47949;53280;56880;55992;58976;63518;62682;64965;71302;72275;95382;117199;160084;111691;172356;156900;202420;260745;268242;307962;187753;234063;288627;249923;308454;376467;668576;648463;541926;527820;563739;640290;854764;959767;733598;630543;695253;735924;565364;689030;773282;938000;1030868;982000;951635;1181437;879541;1185737;1219425;1060417;905866;851412;662070;614496;525878;467753;432594;384058;390854.31;421674;374237
-10;'036;Australia;2042;Graphic papers;5910;Export quantity;t;4500;3400;6300;10500;15400;11800;17400;13700;14100;17200;16000;22900;18400;19500;13100;5700;9100;13300;14500;17400;14600;14100;22000;19400;17900;22800;28600;27800;25600;36400;34200;55135;47400;48700;27600;27800;35000;38000;65000;68000;111000;232000;155000;182895;166695;134195;125154;118000;135000;126493;114981;177280;265219;219992;197122;252297;281404;258213;201743;174711;111808.95;116412;82904
-10;'036;Australia;2042;Graphic papers;5922;Export value;1000 USD;1666;1004;1913;2729;3624;2985;4430;3679;3880;4790;4869;5804;6737;9308;8712;4027;4852;6949;9270;12436;13752;11340;12681;14646;12717;14422;30763;30487;23600;36579;38672;48652;42806;46763;32884;29689;41407;25935;49737;48413;76793;174366;104851;135303;130985;102882;114526;112954;105932;116240;109900;145797;186585;167195;139027;143326;160983;163347;134935;108920;73534.87;78653;44979
-10;'036;Australia;1671;Newsprint;5510;Production;t;89000;91000;433000;93500;94600;94700;98800;94100;125900;173300;178700;181500;199100;200900;196000;206000;207000;208000;208000;221000;246000;307000;376000;378000;354000;363000;361000;362000;362000;371000;395000;404000;433000;426000;444000;445000;421000;444000;405000;464000;465000;471000;499000;437000;443000;415000;411000;456000;444000;427000;439000;435000;405000;365000;325000;319000;327000;318000;296000;190000;190000;101000;107000
-10;'036;Australia;1671;Newsprint;5610;Import quantity;t;273500;190800;216000;256200;285000;278300;280600;302000;294400;275300;287800;221000;258000;283200;324500;216600;320700;266200;294800;336800;277500;251900;134600;193500;301900;256600;235000;264300;288400;288100;188600;171860;204700;206000;257100;281600;250000;289000;278000;305000;239000;253000;278000;315000;342000;270000;280000;199000;177000;226315;166826;97773;73760;75053;76277;69259;65031;33211;20576;87276;62373.84;49077;38352
-10;'036;Australia;1671;Newsprint;5622;Import value;1000 USD;41075;29258;33636;40289;43670;41448;41504;43840;40882;38660;42124;34316;48609;58204;84825;63675;97473;77470;95627;127507;117761;112792;59480;87518;120037;102155;95000;143467;155253;160430;100309;96826;95050;105161;140940;227677;161311;150020;157373;165081;122304;126866;144582;188300;214000;172500;191498;139364;118975;167043;136191;70927;47578;42843;36334;32458;30888;13326;9242;42040;39305.17;44613;33616
-10;'036;Australia;1671;Newsprint;5910;Export quantity;t;100;100;100;800;900;800;200;100;900;100;100;200;300;300;200;100;;2700;400;1200;200;1400;10100;3700;4300;4100;1700;900;400;400;200;6897;5600;2700;1100;1900;300;15000;9000;3000;3000;1000;4000;2000;800;195;154;5000;5000;6493;30959;45169;119404;65463;56199;124433;185648;178462;130672;85640;36973.73;42299;71321
-10;'036;Australia;1671;Newsprint;5922;Export value;1000 USD;14;24;12;302;319;235;50;14;258;22;16;25;59;63;122;25;;730;92;397;94;459;2709;928;1131;996;683;407;237;237;114;3381;2734;1316;558;1015;367;4681;3796;1609;1201;267;991;700;450;107;112;2469;3370;6190;18938;21823;62633;35894;29294;47645;87353;97067;73467;44169;20614.87;24845;36452
-10;'036;Australia;1674;Printing and writing papers;5510;Production;t;81000;60000;87100;96000;102800;122500;116800;116600;123000;126300;128800;129900;137600;175500;160000;116000;169000;153000;190000;210000;235000;193000;179000;222000;227000;255000;234000;333000;343000;406000;390000;304000;304000;348000;365000;351000;364000;424000;497000;535000;554000;503000;518000;560000;660000;663000;676000;706000;723000;524000;342000;358000;369000;391000;470000;513000;482000;456000;452000;402000;402000;399000;230000
-10;'036;Australia;1674;Printing and writing papers;5610;Import quantity;t;66900;47600;60900;61100;62000;66300;79700;91300;100200;123000;128000;140300;146900;158900;163900;83000;142600;129200;160300;181100;234000;289300;184100;200400;249900;206100;258200;282000;507800;451400;425800;424940;541000;581000;781800;576800;625200;624000;657000;709000;591000;745000;844000;975000;987000;953000;833700;1129000;845000;1114000;1075930;1025260;983436;938802;859900;785801;676457;641466;579282;444804;364200.09;331797;305476
-10;'036;Australia;1674;Printing and writing papers;5622;Import value;1000 USD;16211;11104;14313;12991;13210;14544;17472;19678;21800;26305;29178;37959;46773;58995;75259;48016;74883;79430;106793;133238;150481;195170;128273;146545;168590;147768;213454;233000;513323;488033;441617;430994;468689;535129;713824;732090;572287;480523;537880;570843;443060;562164;628700;749700;816868;809500;760137;1042073;760566;1018694;1083234;989490;858288;808569;625736;582038;494990;454427;423352;342018;351549.15;377061;340621
-10;'036;Australia;1674;Printing and writing papers;5910;Export quantity;t;4400;3300;6200;9700;14500;11000;17200;13600;13200;17100;15900;22700;18100;19200;12900;5600;9100;10600;14100;16200;14400;12700;11900;15700;13600;18700;26900;26900;25200;36000;34000;48238;41800;46000;26500;25900;34700;23000;56000;65000;108000;231000;151000;180895;165895;134000;125000;113000;130000;120000;84022;132111;145815;154529;140923;127864;95756;79751;71071;89071;74835.22;74113;11583
-10;'036;Australia;1674;Printing and writing papers;5922;Export value;1000 USD;1652;980;1901;2427;3305;2750;4380;3665;3622;4768;4853;5779;6678;9245;8590;4002;4852;6219;9178;12039;13658;10881;9972;13718;11586;13426;30080;30080;23363;36342;38558;45271;40072;45447;32326;28674;41040;21254;45941;46804;75592;174099;103860;134603;130535;102775;114414;110485;102562;110050;90962;123974;123952;131301;109733;95681;73630;66280;61468;64751;52920;53808;8527
-10;'036;Australia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;83000;96000;81000;28000;28000;74000;74000;107000;101000;127000;116000;89000;80000;80000;82000;87000;69000;71000;64000;324000;329000;294000;294000;297000;137000
-10;'036;Australia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97000;128000;130000;120000;155000;148000;164000;164000;165000;202700;223000;163000;159000;153993;166824;125499;145454;139886;115492;114846;141228;150493;88804;29718.12;36186;24372
-10;'036;Australia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52843;86680;79689;73312;104280;86400;95900;107800;112500;153705;171884;124364;124550;128634;133632;86441;101969;79070;63156;62360;73298;81136;49392;21514.65;37230;23492
-10;'036;Australia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;2000;1895;1895;4000;4000;1000;1000;2000;406;614;195;154;188;263;172;271;397;89;170;466;161
-10;'036;Australia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6997;1500;1703;1703;2700;2700;1778;1280;1498;1294;2155;643;439;410;577;409;469;687;353;236;634;285
-10;'036;Australia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;325000;344000;368000;370000;361000;393000;480000;448000;464000;466000;466000;345000;262000;278000;287000;304000;286000;315000;289000;0;0;0;0;0;0
-10;'036;Australia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;87000;81000;81000;168000;192000;244000;219000;229000;205100;222000;184000;187000;181255;194863;196313;198849;198174;167008;125547;99291;71315;82799;92282.71;55003;96818
-10;'036;Australia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65073;72397;68473;62757;133254;161300;208600;202768;209000;203015;230781;178170;199288;219877;221517;205173;202103;172366;157131;118398;95802;77863;87151;107379.08;77857;123000
-10;'036;Australia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;53000;59000;88000;214000;139000;169000;154000;125000;116000;104000;123000;115000;80304;128191;142594;151216;137275;126201;92851;77523;66910;82223;72359.22;64081;7782
-10;'036;Australia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17518;40231;42577;62001;158702;93360;123900;116900;95200;106839;98507;94172;103352;83352;115545;118515;126150;104649;93252;71308;63834;58353;62851;51375;50291;5702
-10;'036;Australia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66000;89000;95000;105000;105000;129000;93000;106000;108000;111000;113000;141000;90000;0;0;0;0;115000;127000;129000;132000;123000;108000;108000;102000;93000
-10;'036;Australia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451000;442000;498000;390000;422000;504000;567000;604000;559000;425900;684000;498000;768000;740682;663573;661624;594499;521840;503301;436064;400947;357474;273201;242199.26;240608;184286
-10;'036;Australia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362607;378803;422681;306991;324630;381000;445200;506300;488000;403417;639408;458032;694856;734723;634341;566674;504497;374300;361751;314232;285327;264353;205475;222655.42;261974;194129
-10;'036;Australia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;6000;20000;8000;10000;10000;10000;5000;5000;8000;6000;3000;3312;3306;3026;3159;3460;1400;2733;1957;3764;6759;2306;9566;3640
-10;'036;Australia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736;5710;4227;13591;8400;9000;9000;11932;4875;4875;10200;7110;5200;6316;6274;4794;4712;4674;1852;1913;1977;2428;1547;1309;2883;2540
-10;'036;Australia;1675;Other paper and paperboard;5510;Production;t;356000;377000;135000;603800;682300;558800;615300;608000;673500;752800;764100;780800;815200;809000;786000;804000;902000;894000;942000;1028000;975000;965000;875000;920000;965000;978000;931000;1097000;1165000;1851000;1850000;1282000;1302000;1423000;1443000;1524000;1633000;1673000;1662000;1837000;1653000;1671000;2073000;2100000;2141000;2143000;2105000;2119000;2111000;2252000;2374000;2398000;2285000;2321000;2381000;2392000;2426038;2451000;2465000;2469000;2550000;2618000;2621000
-10;'036;Australia;1675;Other paper and paperboard;5610;Import quantity;t;96400;72400;72900;73000;87600;72600;81700;77000;73900;81000;94700;96000;114600;180179;163400;136300;156500;154200;176900;176700;192000;206300;201700;239200;257300;247900;192800;378400;154000;163900;152300;173900;211700;255500;306600;252200;261100;371000;370000;385000;314000;254000;247000;274000;277000;328000;376600;308000;367000;362239;373583;423898;393858;432518;454583;491082;498221;515758;523931;513850;476373.19;479537;429998
-10;'036;Australia;1675;Other paper and paperboard;5622;Import value;1000 USD;36226;28144;31223;24563;29725;25353;30208;31090;27934;30107;53510;37998;48805;86478;95792;81840;100462;104436;126098;132937;154716;187903;158661;191656;202901;215141;183552;349846;150879;170879;182808;187935;253661;294061;335650;359405;293567;335314;378014;391226;282701;234777;234500;273510;298265;329550;397880;325716;351476;447494;512796;563887;502882;521794;495777;574653;568035;563558;556227;597749;656783.87;757245;616494
-10;'036;Australia;1675;Other paper and paperboard;5910;Export quantity;t;2000;3300;2300;3600;6600;5000;7500;13800;19700;23500;27400;26800;33500;22800;17000;15200;22600;30100;26900;77900;96200;65800;50700;37900;64300;63600;92200;64300;105500;126600;164500;186600;242400;225800;219600;213500;384400;364000;324000;390000;428000;356000;549000;594000;565000;674000;559300;622000;652000;600425;663782;720194;931309;956439;931590;930833;943101;873183;919627;924580;848557.37;777167;853947
-10;'036;Australia;1675;Other paper and paperboard;5922;Export value;1000 USD;929;1208;1165;1807;2054;1916;2862;2376;3362;3493;4575;6669;8335;8845;9426;7863;10098;12461;11172;26710;30181;24522;15878;15685;21201;18791;24683;27662;41665;45687;63622;75860;109368;110862;132682;152519;219251;141332;138026;161757;152658;131094;201000;242978;245714;300200;298758;331740;274849;357443;446154;445850;555150;559977;508754;524301;529868;538512;573761;495356;551509.38;534928;463754
-10;'036;Australia;1676;Household and sanitary papers;5510;Production;t;;;135000;135000;135000;40700;47900;52100;56300;64400;70000;80600;77400;86000;92000;89000;90000;94000;100000;110000;105000;107000;113000;125000;116000;126000;125000;136000;144000;167000;134000;145000;165000;167000;173000;180000;181000;191000;187000;232000;204000;198000;200000;186000;197000;217000;204000;186000;196000;194000;183000;166000;188000;204000;201000;215000;232038;244000;243000;253000;253000;267000;264000
-10;'036;Australia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;10000;900;900;1100;1600;1600;3579;3700;2300;2700;1800;900;800;800;1700;2100;2300;3300;4700;9600;9600;5800;4300;5500;6700;15700;20300;26800;25400;24100;26000;35000;42000;46000;58000;56000;61000;55000;63000;55200;43000;55000;68000;72799;122449;90673;98595;102604;112795;124765;123314;121201;139791;96855.04;129745;111010
-10;'036;Australia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;5015;247;254;347;456;474;1263;2894;1843;2170;1831;931;949;878;1982;2200;2424;2804;4599;10719;10719;8079;6368;6747;8639;16257;23008;28994;38764;28064;24566;32280;37400;41461;54676;52800;64000;67184;78750;73156;58559;69760;100265;119589;190972;133196;145883;136216;160755;164869;153612;156234;178368;131115.69;207541;143946
-10;'036;Australia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1700;2800;4500;5400;9400;11200;12000;14900;0;0;1000;4000;4000;500;1000;2000;1000;1000;1000;1000;3000;2344;2021;2083;1125;1043;7322;3994;864;16442;10183;3803;10106;239
-10;'036;Australia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2629;2650;4862;11058;11133;21225;28105;37470;43754;0;0;707;2000;2500;500;1100;3914;2000;2000;2337;2274;5372;5663;4594;4853;3090;2549;16242;8532;1949;13596;8503;3476;7595;773
-10;'036;Australia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1482000;1475000;1605000;1429000;1464000;1863000;1898000;1935000;1916000;1891000;1923000;1905000;2048000;2181000;2222000;2088000;2108000;2171000;2177000;2194000;2207000;2222000;2216000;2297000;2351000;2357000
-10;'036;Australia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308000;300000;302000;258000;176000;175000;192000;203000;250000;306400;245000;253000;279239;286637;290028;298523;330561;343744;369059;369512;385126;396746;370310;375889.14;345863;314928
-10;'036;Australia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218453;246338;250755;216331;144358;145609;162820;187381;210800;284724;222339;253209;293454;332095;324079;328733;335824;311763;364141;365565;378579;366901;379872;479916.18;497143;417816
-10;'036;Australia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360000;319000;375000;417000;351000;548000;592000;545000;584000;504100;533000;564000;402425;450020;478163;691831;731067;710871;696334;708680;640324;665496;729123;672521.97;613825;703831
-10;'036;Australia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130232;126623;147713;142599;127391;199850;241270;227400;253950;269658;279331;232705;242634;303018;297092;400992;417319;384051;373097;382446;381519;400553;382118;431650.22;419059;382219
-10;'036;Australia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;468800;547300;518100;565500;554700;546000;618600;617900;622700;664100;683000;659000;686000;783000;771000;813000;889000;841000;396000;328000;355000;336000;338000;322000;380000;404000;1067000;1099000;1135000;1135000;1196000;1210000;1344000;1452000;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;70400;52900;53200;53300;63900;53000;59600;18700;59500;63000;74700;71400;71000;128300;112600;95200;104400;98700;132200;128800;133200;147300;168000;193600;206300;170800;127300;243000;126800;114800;114200;130200;141500;170200;192900;167500;194000;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;26083;20264;22481;17685;21402;18254;21750;4905;19921;21824;27600;26642;31585;60796;64301;52997;64535;63407;85685;94340;87218;130953;106766;128080;134244;139765;97062;180000;106618;110754;117200;118721;139016;168467;193698;189959;182488;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1900;3100;2200;3400;6300;4700;7100;8300;18000;20900;22200;23900;32000;21300;15200;13800;19100;24800;25800;73900;87700;62500;45400;32500;60500;57900;59300;34000;100300;121100;155900;175200;230300;208500;198500;193100;359500;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;771;1003;967;1500;1705;1590;2375;1378;2381;2369;2764;4089;5816;6229;6264;5215;6255;7199;8741;22228;24093;21839;10015;8582;13862;11864;13267;15000;33843;36742;49886;55346;87666;75619;87946;95056;152824;;;;;;;;;;;;;;;;;;;;;;;;;;
-10;'036;Australia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598000;514000;268000;263000;267000;230000;234000;238000;246000;212000;546000;571000;569000;1923000;1961000;1843000;1861000;1917000;2097000;2107000;2124000;2136000;2135000;2216000;2257000;2266000
-10;'036;Australia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;66000;88000;51000;26000;20000;33000;41000;66000;105000;89000;77000;85000;93256;109123;100199;114437;112043;138088;138630;132130;161989;130004;106459.35;74871;98293
-10;'036;Australia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32335;37831;42770;25680;9900;7609;15120;21364;31500;63651;50141;45520;50711;63467;72042;73624;77557;56992;82239;78489;81681;76641;74717;80376.5;56357;62450
-10;'036;Australia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175000;170000;129000;147000;147000;194000;281000;193000;143000;103100;156000;152000;158000;175759;170349;355928;421717;399960;398606;411204;374592;386810;450621;368194.46;329856;405281
-10;'036;Australia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61344;57649;46921;44847;48316;70820;112700;82000;60000;56858;75513;52874;83727;104504;83768;186396;215819;197741;192246;198564;199211;199761;217666;217131.46;193633;197525
-10;'036;Australia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763000;845000;832000;675000;703000;885000;880000;904000;893000;919000;167000;159000;130000;132000;132000;124000;125000;129000;0;0;0;0;0;0;0;0
-10;'036;Australia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184000;166000;150000;152000;96000;92000;90000;96000;111000;128400;81000;109000;119239;119003;111945;119768;138762;152569;168883;174695;191904;175869;181928;216908.83;223923;172727
-10;'036;Australia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113004;130129;133566;125662;70800;65400;72800;82100;88500;130273;73812;124935;146760;164395;151272;154508;165981;175629;207292;218600;219288;217984;233953;320198.26;356409;278758
-10;'036;Australia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;50000;61000;60000;118000;313000;262000;304000;348000;301400;303000;314000;121425;136722;168082;184575;166779;177689;175299;168911;160576;159909;164043;188063.14;179985;180959
-10;'036;Australia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18668;27518;25454;22219;47529;103410;100100;117000;139500;139763;147196;118634;66573;82645;95597;105754;101080;103856;102034;98711;100496;102965;91317;130569.17;135640;105219
-10;'036;Australia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94000;63000;476000;429000;430000;681000;747000;755000;738000;721000;1172000;1130000;1305000;82000;85000;80000;81000;83000;80000;87000;83000;86000;81000;81000;94000;91000
-10;'036;Australia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;60000;57000;48000;54000;63000;69000;66000;73000;73000;72000;63000;71000;69020;64197;74145;71837;72922;56311;51146;56024;52752;53392;46657.43;41235;38332
-10;'036;Australia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65771;71011;67128;58743;63658;72600;74900;83917;90800;90800;95587;78926;91682;98634;96061;96810;87529;74814;70330;64577;73478;67470;67075;73533.63;77027;71423
-10;'036;Australia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146000;87000;168000;180000;86000;41000;49000;48000;93000;99600;74000;98000;123000;137539;137539;149852;142568;133222;122410;128555;105148;118768;114439;116100.38;103959;117573
-10;'036;Australia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46180;37055;68599;64874;31546;25620;28470;28400;54450;73037;56622;61197;92334;115869;115869;107634;100416;82454;78790;85141;81784;97795;73092;83754.59;89751;79431
-10;'036;Australia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;53000;29000;62000;64000;67000;37000;38000;39000;39000;38000;45000;44000;44000;44000;41000;41000;42000;0;0;0;0;0;0;0;0
-10;'036;Australia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;7000;7000;0;0;0;0;0;0;3000;4000;4000;5358;4763;4411;5525;6210;5777;5041;5068;6136;4986;5863.54;5834;5576
-10;'036;Australia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7343;7367;7291;6246;0;0;0;0;0;0;2799;3828;4301;5599;4704;3791;4757;4328;4280;3899;4132;4806;4127;5807.8;7350;5185
-10;'036;Australia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;12000;17000;30000;0;0;0;0;0;0;0;0;0;0;2193;1476;3;0;19;10;8;9;20;164;25;18
-10;'036;Australia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4040;4401;6739;10659;0;0;0;0;0;0;0;0;0;0;1858;1208;4;0;27;30;28;32;43;195;35;44
-10;'036;Australia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;1900;1200;71200;69800;76200;77500;73700;40000;35000;29000;29000;29000;29000;29000;29000;462000;434000;440000;513000;514000;484000;581000;617000;617000;617000;2000;2000;60000;60000;0;0;0;0;0;20000;9000;10000;16000;9000;10000;10000;10000;10000;10000;10000;10000;9000;9000;9000;0;0;0;0;0;0;0;0
-10;'036;Australia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;26000;19500;19700;19700;23700;19600;22100;48300;13500;17100;18900;23000;42000;48300;47100;38800;49400;53700;43800;47100;58000;57300;31600;43300;47700;72400;55900;125800;21400;44800;32600;37000;54500;65000;86900;59300;43000;37000;35000;41000;10000;20000;16000;21000;19000;15000;15000;20000;59000;15000;14147;11421;4662;3362;8235;9228;3944;7318;5984;3749;3629;3929;4060
-10;'036;Australia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;10143;7880;8742;6878;8323;7099;8458;21170;7766;8029;25563;10900;16746;24419;28597;27000;33757;39198;39482;37648;66620;54968;49695;61152;65853;70777;75771;159127;36182;53757;58861;60575;98388;102586;112958;130682;83015;92295;99396;103071;24909;35743;36091;46690;43700;40000;40000;44818;28507;53775;61112;48836;40953;40087;47798;49757;37601;31367;33092;39509;45752;52561;54732
-10;'036;Australia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;100;200;100;200;300;300;400;5500;1700;2600;5200;2900;1500;1500;1800;1400;3500;5300;1100;4000;8500;3300;5300;5400;3800;5700;32900;30300;4300;3800;5800;6900;6700;7900;9900;8400;10000;4000;5000;14000;7000;1000;500;1000;18000;89000;54200;88000;87000;195000;211418;240010;237395;224247;219676;227177;230427;231995;237689;185274;172232.4;153236;149877
-10;'036;Australia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;158;205;198;307;349;326;487;998;981;1124;1811;2580;2519;2616;3162;2648;3843;5262;2431;4482;6088;2683;5863;7103;7339;6927;11416;12662;5193;6295;8874;9456;10569;14018;16631;19993;22673;11100;11403;13337;8059;1203;650;608;14400;44250;27100;50072;39870;109437;137473;144164;149305;139568;122154;134962;138890;155044;159612;104735;116383.16;108274;80762
-10;'036;Australia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2539303;2818783;2595063;2632531;3329920;3509368;2487232
-10;'036;Australia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56570;53188;56417;48178;64171;62238;59054
-10;'036;Australia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330930;358224;297154;319614;412195;413575;267981
-10;'036;Australia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2682;1771;1578;1401;2364;3482;1382
-10;'036;Australia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139059;153517;144085;144107;213778;206284;129603
-10;'036;Australia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;859;479;423;676;1168;486
-10;'036;Australia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191871;204707;153069;175507;198417;207291;138378
-10;'036;Australia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1801;912;1099;978;1688;2314;896
-10;'036;Australia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60552;66642;58341;56092;67522;70367;52393
-10;'036;Australia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834;9600;10485;8356;11276;13784;13273
-10;'036;Australia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72279;83262;79473;80095;135259;123315;100707
-10;'036;Australia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562;2563;1749;1858;2604;1642;1714
-10;'036;Australia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362180;394321;354537;282455;378147;475310;323943
-10;'036;Australia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13843;12406;12218;11633;14426;9673;14079
-10;'036;Australia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34232;36973
-10;'036;Australia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39419;36366
-10;'036;Australia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;597;162
-10;'036;Australia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;150
-10;'036;Australia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6549;1469
-10;'036;Australia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375;1405
-10;'036;Australia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;4
-10;'036;Australia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;3
-10;'036;Australia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31591;25506
-10;'036;Australia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46325;36855
-10;'036;Australia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1371
-10;'036;Australia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1380;2267
-10;'036;Australia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1617616;1817413;1713071;1794449;2196813;2284810;1629763
-10;'036;Australia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23390;24520;26169;18555;22166;25147;22391
-10;'036;Australia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2856;3658;3868;4815;9588;16416;14114
-10;'036;Australia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;110;928;2686;3018;618;203
-10;'036;Australia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92890;95263;88619;95011;130396;125575;98331
-10;'036;Australia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4135;2218;3290;3689;8317;7892;6012
-10;'036;Australia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1090699;1202408;1136668;1159485;1374013;1570844;1430614
-10;'036;Australia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112252;111219;92928;83778;102719;98722;83712
-10;'036;Australia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6143;6120;5546;4221;4663;4403;3233
-10;'036;Australia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;991;74;427;27;49;117
-10;'036;Australia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195387;227789;201826;204623;227011;233063;206564
-10;'036;Australia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4628;4932;4474;5386;8275;7421;4912
-10;'036;Australia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214708;228220;218943;242878;243749;312326;274824
-10;'036;Australia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23645;16950;16218;18380;18119;20901;14331
-10;'036;Australia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276978;323418;312814;329927;426142;475487;455177
-10;'036;Australia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30843;35885;29569;28336;32057;36275;30975
-10;'036;Australia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397483;416861;397539;377836;472448;545565;490816
-10;'036;Australia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52872;52461;42593;31249;44241;34076;33377
-11;'040;Austria;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7136237.42;7668768;7051789;6897799;8665086;8837760;7715862
-11;'040;Austria;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10115247.29;11150258;10409727;9816582;12744872;13259143;10955307
-11;'040;Austria;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;16778;15655;20818;27410;28222;39484;45182;58967;68505;101622;110616;137289;232322;355120;284246;337371;378318;392524;540435;730565;629188;597782;596305;619825;667670;876756;1125076;1208266;1351813;1415634;1609549;1766973;1452367;1801568;2086198;2199663;2016214;2141631;2442646;2608831;2193267;2232082;2657783;3124855;3135511;3683171;4180250;4245236;3516403;4061446;4579287;4228239;4429842;4384932;3780790;3813964;3999737.18;4425456;3871260;3690883;4898508;5130895;4081577
-11;'040;Austria;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;182420;178715;171052;171757;182831;205950;206376;247167;297447;343042;356365;404153;639215;873829;680408;937221;1029988;1157993;1569234;1882685;1550484;1318678;1288003;1285684;1322565;1860476;2283649;2570545;2878018;3125475;3301311;3494858;2752242;3326107;4156605;4295513;3834619;3953674;4216385;4298833;3940898;4623632;5518698;6212953;6020481;6652231;8175146;8307814;6412545;6998319;7543231;6904346;7113108;7307510;6251835;6333217;6539344.75;7222369;6635558;6097889;8162442;8686559;6807196
-11;'040;Austria;1861;Roundwood;5516;Production;m3;11623000;11160000;10369000;10774000;10947000;11621000;11458000;11158000;11991000;11813000;12406000;12515000;11967000;11655000;11326000;13175000;13162000;12767000;14386000;14386000;14256000;13399000;13647000;14204000;14222000;13721000;13604000;14972000;16255000;16773000;15572000;12849000;12857000;14960000;14405000;15609000;15325000;14033000;14083000;13276000;13467000;14846000;17055000;16483000;16471000;19135000;21317341;21795428;16727438;17830956;18695671;18020680;17389735;17088560;17549526;16763033;17647118;19192060;18903715;16789570;18420265;19357935;18049085
-11;'040;Austria;1861;Roundwood;5616;Import quantity;m3;601300;566300;927400;923900;970600;732900;946500;1146500;1144500;2028700;1677400;1635400;2753800;3327600;2248800;2429600;2454700;2407100;3220400;3756000;3075400;3206800;3099000;2942400;4132400;3693800;4436000;4325500;3878100;4587609;6400486;4983929;4786453;5090000;4998000;4747000;5433000;5237000;7210000;8590000;7666000;7452000;7694000;9069000;8901000;9428000;8983000;7817000;8599710;8651751;8252239;8041736;9146272;8092780;8513041;9718350;9272458;10651918;10958314;12491361;11072732;9004794;8970792
-11;'040;Austria;1861;Roundwood;5622;Import value;1000 USD;10158;8077;11785;15399;13753;10792;12760;16374;16955;32089;30650;30537;63944;102279;67518;70555;80485;84809;129530;192952;142327;136238;117162;103821;137845;172614;231165;233784;231107;298235;366109;336541;255814;311070;327021;308353;330840;344200;474353;440764;376535;406318;480909;586055;616746;739376;831093;759226;722860;791636;891333;804270;926923;838862;703110;771334;750928.07;849328;717175;737375;980664;908009;913950
-11;'040;Austria;1861;Roundwood;5916;Export quantity;m3;456000;404900;403900;344500;293900;335500;373500;379200;456100;454500;436600;399100;441000;606100;582900;709500;728400;753000;819500;842800;788900;659800;524600;627500;570400;534700;815400;600300;706600;1193315;819808;607656;553000;659000;638000;638000;828000;803000;1050000;942000;957000;893000;841000;1037000;901000;772000;921000;1013000;805400;1030625;1081825;884324;882630;762550;843620;891370;889790;968200;906078;638672;1105553;1279564;600064
-11;'040;Austria;1861;Roundwood;5922;Export value;1000 USD;10122;12818;8894;7855;6799;7784;8822;7475;9221;11281;13760;12771;22048;36532;36390;45725;60757;67052;65567;89235;72484;57250;37958;40670;43450;48647;64603;49080;66989;121482;84240;72948;52363;63003;61263;69595;75953;70650;88796;69432;68336;68975;77199;100127;84249;80886;109175;120180;87215;111999;129446;95536;104912;96712;86407;91596;87725.83;104828;86328;60935;116252;148402;74216
-11;'040;Austria;1862;Roundwood, coniferous;5516;Production;m3;9787000;9439000;8909000;9320000;9428000;10000000;9753000;9562000;10321000;10035000;10341000;10410000;9872000;9461000;9304000;11038000;11244000;10796000;12066000;12066000;11819000;10891000;11188000;11711000;12021000;11542000;11387000;12574000;13780000;14408000;13316000;10466000;10565000;12628000;12196000;13426000;13048000;11951000;11967000;11230000;11336000;12670000;14734000;14070000;14008000;16336000;18626396;18884481;14078942;15296643;15727260;14932534;14419172;13921830;14570823;13854201;14594861;16038598;15976721;13946286;15663416;16205143;14878680
-11;'040;Austria;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8034273;9490384;9835835;11559409;10108413;8117230;7965141
-11;'040;Austria;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644314.1;729446;605328;644966;879366;797227;777831
-11;'040;Austria;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733936;797088;730061;518554;955828;1116961;476216
-11;'040;Austria;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62298.36;77123;59737;40362;92026;116644;48738
-11;'040;Austria;1863;Roundwood, non-coniferous;5516;Production;m3;1836000;1721000;1460000;1454000;1519000;1621000;1705000;1596000;1670000;1778000;2065000;2105000;2095000;2194000;2022000;2137000;1918000;1971000;2320000;2320000;2437000;2508000;2459000;2493000;2201000;2179000;2217000;2398000;2475000;2365000;2256000;2383000;2292000;2332000;2209000;2183000;2277000;2082000;2116000;2046000;2131000;2176000;2321000;2413000;2463000;2799000;2690945;2910947;2648496;2534313;2968411;3088146;2970563;3166730;2978703;2908832;3052257;3153462;2926994;2843284;2756849;3152792;3170405
-11;'040;Austria;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1238185;1161534;1122479;931952;964319;887564;1005651
-11;'040;Austria;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106613.98;119882;111847;92409;101298;110782;136119
-11;'040;Austria;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155854;171112;176017;120118;149725;162603;123848
-11;'040;Austria;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427.48;27705;26591;20573;24226;31758;25478
-11;'040;Austria;1864;Wood fuel;5516;Production;m3;1472000;1337000;1373000;1055000;1585000;1554000;1396000;1328000;1292000;1286000;1202000;1067000;958000;1024000;1025000;963000;929000;1034000;1413000;1413000;1413000;1413000;1413000;1413000;2440000;2517000;2504000;2734000;2680000;2613000;2437000;2994000;3149000;3259000;3059000;3797000;3423000;3175000;3095000;2860000;2905000;3036000;3336000;3540000;3685000;4705000;4796377;5023689;4583553;4549512;5065139;5189462;4956972;5058840;4979064;4589952;4908713;5243220;5579035;5327115;4899508;5423706;5671457
-11;'040;Austria;1864;Wood fuel;5616;Import quantity;m3;14900;33400;50700;25500;23800;21200;17000;16500;28900;49900;38900;72200;76100;44900;51000;110900;123700;44700;42500;48000;14600;48000;63600;117000;154100;179100;228200;298500;303100;215000;245000;283118;303000;253000;164000;296000;156000;124000;117000;139000;173000;163000;196000;257000;272000;326000;261000;267000;563790;611015;824891;722565;931912;853370;663981;530187;447113;539034;371880;193675;169696;182193;285844
-11;'040;Austria;1864;Wood fuel;5622;Import value;1000 USD;80;301;461;168;165;166;147;97;203;433;400;548;798;777;877;1758;2206;935;906;2183;520;1419;1360;2301;3587;6499;8215;7791;7844;6495;7000;9686;9023;7371;5000;9245;6396;4837;4751;4989;6320;6543;10434;15233;17468;25563;25479;26901;50057;52968;77905;65233;85684;77901;50562;41469;38099.01;49925;35082;18303;18661;27924;40473
-11;'040;Austria;1864;Wood fuel;5916;Export quantity;m3;71900;68500;55500;24400;21700;19300;12100;14700;17300;17100;11000;10300;11200;21100;18100;18400;20500;27300;35900;33200;33000;29500;24700;26900;12500;6200;27900;2000;1900;3600;3600;5867;2000;6000;6000;13000;9000;11000;11000;18000;25000;29000;72000;102000;65000;54000;45000;39000;76620;75758;64399;57415;58253;60840;13210;11992;13958;20396;17045;10644;12724;11971;10785
-11;'040;Austria;1864;Wood fuel;5922;Export value;1000 USD;1122;1041;785;500;451;465;398;360;423;442;397;408;466;1157;1020;887;1296;1365;2078;2054;2191;1627;1190;1087;418;357;1098;80;89;156;156;333;86;263;263;511;347;334;369;691;1038;1364;4270;6989;4741;4177;2064;3406;5892;5735;5961;4791;5342;5632;1395;1289;1326.54;2459;1555;869;1242;1637;1927
-11;'040;Austria;1627;Wood fuel, coniferous;5516;Production;m3;643000;560000;587000;340000;610000;617000;573000;529000;491000;342000;315000;276000;249000;288000;292000;280000;269000;273000;549000;549000;549000;549000;549000;549000;1249000;1262000;1249000;1336000;1310000;1360000;1249000;1609000;1831000;1963000;1870000;2601000;2131000;1853000;1781000;1623000;1641000;1770000;1960000;2097000;2162000;2822000;3056778;3162038;2735009;2754356;2943685;2995787;2859041;2854150;2999342;2709688;2872955;3217600;3634197;3359345;2992895;3247734;3451236
-11;'040;Austria;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339524;371289;240018;104820;90769;96523;206403
-11;'040;Austria;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26011.35;28160;18657;7726;7997;10779;24540
-11;'040;Austria;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7842;10068;9157;1661;1821;4523;1209
-11;'040;Austria;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785.99;1281;805;106;144;421;164
-11;'040;Austria;1628;Wood fuel, non-coniferous;5516;Production;m3;829000;777000;786000;715000;975000;937000;823000;799000;801000;944000;887000;791000;709000;736000;733000;683000;660000;761000;864000;864000;864000;864000;864000;864000;1191000;1255000;1255000;1398000;1370000;1253000;1188000;1385000;1318000;1296000;1189000;1196000;1292000;1322000;1314000;1237000;1264000;1266000;1376000;1443000;1523000;1883000;1739599;1861651;1848544;1795156;2121454;2193675;2097931;2204690;1979722;1880264;2035758;2025620;1944838;1967770;1906613;2175972;2220221
-11;'040;Austria;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107589;167745;131862;88855;78927;85670;79441
-11;'040;Austria;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12087.66;21765;16425;10577;10664;17145;15933
-11;'040;Austria;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6116;10328;7888;8983;10903;7448;9576
-11;'040;Austria;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540.55;1178;750;763;1098;1216;1763
-11;'040;Austria;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;14900;33400;50700;25500;23800;21200;17000;16500;28900;49900;38900;72200;76100;44900;51000;110900;123700;44700;42500;48000;14600;48000;63600;117000;154100;179100;228200;298500;303100;215000;245000;283118;303000;253000;164000;296000;156000;124000;117000;139000;173000;163000;196000;257000;272000;326000;261000;267000;563790;611015;824891;722565;931912;853370;663981;530187;;;;;;;
-11;'040;Austria;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;80;301;461;168;165;166;147;97;203;433;400;548;798;777;877;1758;2206;935;906;2183;520;1419;1360;2301;3587;6499;8215;7791;7844;6495;7000;9686;9023;7371;5000;9245;6396;4837;4751;4989;6320;6543;10434;15233;17468;25563;25479;26901;50057;52968;77905;65233;85684;77901;50562;41469;;;;;;;
-11;'040;Austria;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;71900;68500;55500;24400;21700;19300;12100;14700;17300;17100;11000;10300;11200;21100;18100;18400;20500;27300;35900;33200;33000;29500;24700;26900;12500;6200;27900;2000;1900;3600;3600;5867;2000;6000;6000;13000;9000;11000;11000;18000;25000;29000;72000;102000;65000;54000;45000;39000;76620;75758;64399;57415;58253;60840;13210;11992;;;;;;;
-11;'040;Austria;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;1122;1041;785;500;451;465;398;360;423;442;397;408;466;1157;1020;887;1296;1365;2078;2054;2191;1627;1190;1087;418;357;1098;80;89;156;156;333;86;263;263;511;347;334;369;691;1038;1364;4270;6989;4741;4177;2064;3406;5892;5735;5961;4791;5342;5632;1395;1289;;;;;;;
-11;'040;Austria;1865;Industrial roundwood;5516;Production;m3;10151000;9823000;8996000;9719000;9362000;10067000;10062000;9830000;10699000;10527000;11204000;11448000;11009000;10631000;10301000;12212000;12233000;11733000;12973000;12973000;12843000;11986000;12234000;12791000;11782000;11204000;11100000;12238000;13575000;14160000;13135000;9855000;9708000;11701000;11346000;11812000;11902000;10858000;10988000;10416000;10562000;11810000;13719000;12943000;12786000;14430000;16520964;16771739;12143885;13281444;13630532;12831218;12432763;12029720;12570462;12173081;12738405;13948840;13324680;11462455;13520757;13934229;12377628
-11;'040;Austria;1865;Industrial roundwood;5616;Import quantity;m3;586400;532900;876700;898400;946800;711700;929500;1130000;1115600;1978800;1638500;1563200;2677700;3282700;2197800;2318700;2331000;2362400;3177900;3708000;3060800;3158800;3035400;2825400;3978300;3514700;4207800;4027000;3575000;4372609;6155486;4700811;4483453;4837000;4834000;4451000;5277000;5113000;7093000;8451000;7493000;7289000;7498000;8812000;8629000;9102000;8722000;7550000;8035920;8040736;7427348;7319171;8214360;7239410;7849060;9188163;8825345;10112884;10586434;12297686;10903036;8822601;8684948
-11;'040;Austria;1865;Industrial roundwood;5622;Import value;1000 USD;10078;7776;11324;15231;13588;10626;12613;16277;16752;31656;30250;29989;63146;101502;66641;68797;78279;83874;128624;190769;141807;134819;115802;101520;134258;166115;222950;225993;223263;291740;359109;326855;246791;303699;322021;299108;324444;339363;469602;435775;370215;399775;470475;570822;599278;713813;805614;732325;672803;738668;813428;739037;841239;760961;652548;729865;712829.07;799403;682093;719072;962003;880085;873477
-11;'040;Austria;1865;Industrial roundwood;5916;Export quantity;m3;384100;336400;348400;320100;272200;316200;361400;364500;438800;437400;425600;388800;429800;585000;564800;691100;707900;725700;783600;809600;755900;630300;499900;600600;557900;528500;787500;598300;704700;1189715;816208;601789;551000;653000;632000;625000;819000;792000;1039000;924000;932000;864000;769000;935000;836000;718000;876000;974000;728780;954867;1017426;826909;824377;701710;830410;879378;875832;947804;889033;628028;1092829;1267593;589279
-11;'040;Austria;1865;Industrial roundwood;5922;Export value;1000 USD;9000;11777;8109;7355;6348;7319;8424;7115;8798;10839;13363;12363;21582;35375;35370;44838;59461;65687;63489;87181;70293;55623;36768;39583;43032;48290;63505;49000;66900;121326;84084;72615;52277;62740;61000;69084;75606;70316;88427;68741;67298;67611;72929;93138;79508;76709;107111;116774;81323;106264;123485;90745;99570;91080;85012;90307;86399.29;102369;84773;60066;115010;146765;72289
-11;'040;Austria;1866;Industrial roundwood, coniferous;5516;Production;m3;9144000;8879000;8322000;8980000;8818000;9383000;9180000;9033000;9830000;9693000;10026000;10134000;9623000;9173000;9012000;10758000;10975000;10523000;11517000;11517000;11270000;10342000;10639000;11162000;10772000;10280000;10138000;11238000;12470000;13048000;12067000;8857000;8734000;10665000;10326000;10825000;10917000;10098000;10186000;9607000;9695000;10900000;12774000;11973000;11846000;13514000;15569618;15722443;11343933;12542287;12783575;11936747;11560131;11067680;11571481;11144513;11721906;12820998;12342524;10586941;12670521;12957409;11427444
-11;'040;Austria;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3086698;4723072;3624089;3562000;4037000;3950000;3552000;4125000;3959000;5765000;7020000;6130000;6035000;6379000;7650000;7517000;7808000;7325000;6418000;6924080;6699511;5996297;5974099;6807999;5829220;6518032;7938926;7694749;9119095;9595817;11454589;10017644;8020707;7758738
-11;'040;Austria;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222759;284667;259263;196079;253244;246000;235805;266232;277449;399072;370080;313020;340917;397447;486882;514617;604838;660204;599908;566755;616448;669335;617567;707411;625234;548506;620822;618302.74;701286;586671;637240;871369;786448;753291
-11;'040;Austria;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960137;626795;466789;418000;477000;490000;462000;634000;575000;622000;463000;492000;494000;519000;638000;601000;544000;719000;849000;648430;856149;919569;748015;742226;608710;725666;723915;726094;787020;720904;516893;954007;1112438;475007
-11;'040;Austria;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98850;62121;50985;35248;41066;40000;49918;57504;49896;51435;31808;31050;33326;45115;61486;53178;51839;76796;89236;64482;86670;101095;74443;81853;68492;64272;64712;61512.37;75842;58932;40256;91882;116223;48574
-11;'040;Austria;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3086698;4723072;3624089;3562000;4037000;3950000;3552000;4125000;3959000;5765000;7020000;6130000;6035000;6379000;7650000;7517000;7808000;7325000;6418000;6924080;6699511;5996297;5974099;6807999;5829220;6518032;7938926;7694749;9119095;9595817;11454589;10017644;8020707;7758738
-11;'040;Austria;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222759;284667;259263;196079;253244;246000;235805;266232;277449;399072;370080;313020;340917;397447;486882;514617;604838;660204;599908;566755;616448;669335;617567;707411;625234;548506;620822;618302.74;701286;586671;637240;871369;786448;753291
-11;'040;Austria;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960137;626795;466789;418000;477000;490000;462000;634000;575000;622000;463000;492000;494000;519000;638000;601000;544000;719000;849000;648430;856149;919569;748015;742226;608710;725666;723915;726094;787020;720904;516893;954007;1112438;475007
-11;'040;Austria;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98850;62121;50985;35248;41066;40000;49918;57504;49896;51435;31808;31050;33326;45115;61486;53178;51839;76796;89236;64482;86670;101095;74443;81853;68492;64272;64712;61512.37;75842;58932;40256;91882;116223;48574
-11;'040;Austria;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1007000;944000;674000;739000;544000;684000;882000;797000;869000;834000;1178000;1314000;1386000;1458000;1289000;1454000;1258000;1210000;1456000;1456000;1573000;1644000;1595000;1629000;1010000;924000;962000;1000000;1105000;1112000;1068000;998000;974000;1036000;1020000;987000;985000;760000;802000;809000;867000;910000;945000;970000;940000;916000;951346;1049296;799952;739157;846957;894471;872632;962040;998981;1028568;1016499;1127842;982156;875514;850236;976820;950184
-11;'040;Austria;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285911;1432414;1076722;921453;800000;884000;899000;1152000;1154000;1328000;1431000;1363000;1254000;1119000;1162000;1112000;1294000;1397000;1132000;1111840;1341225;1431051;1345072;1406361;1410190;1331028;1249237;1130596;993789;990617;843097;885392;801894;926210
-11;'040;Austria;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68981;74442;67592;50712;50455;76021;63303;58212;61914;70530;65695;57195;58858;73028;83940;84661;108975;145410;132417;106048;122220;144093;121470;133828;135727;104042;109043;94526.32;98117;95422;81832;90634;93637;120186
-11;'040;Austria;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229578;189413;135000;133000;176000;142000;163000;185000;217000;417000;461000;440000;370000;250000;297000;235000;174000;157000;125000;80350;98718;97857;78894;82151;93000;104744;155463;149738;160784;168129;111135;138822;155155;114272
-11;'040;Austria;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22476;21963;21630;17029;21674;21000;19166;18102;20420;36992;36933;36248;34285;27814;31652;26330;24870;30315;27538;16841;19594;22390;16302;17717;22588;20740;25595;24886.93;26527;25841;19810;23128;30542;23715
-11;'040;Austria;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5223;4323;2722;1453;1000;24000;20000;4000;1100;150000;165000;1000;4000;2000;2000;701;700;440;432;470;1221;305;66;84;80;42;6;11;20;48;26;54;162;162
-11;'040;Austria;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1467;1399;923;565;526;8000;7000;981;757;16700;17915;1037;324;558;558;404;772;397;838;541;681;278;95;46;37;31;15;90.7;74;154;124;117;239;193
-11;'040;Austria;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;45000;43000;0;0;1000;1000;1000;189;0;0;0;607;327;0;0;0;0;0;0;1;0;0;0;32;55
-11;'040;Austria;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;5476;8268;349;100;129;129;276;68;0;0;0;341;255;0;0;0;0;0;0;7;2;6;0;20;47
-11;'040;Austria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280688;1428091;1074000;920000;799000;860000;879000;1148000;1152900;1178000;1266000;1362000;1250000;1117000;1160000;1111299;1293300;1396560;1131568;1111370;1340004;1430746;1345006;1406277;1410110;1330986;1249231;1130585;993769;990569;843071;885338;801732;926048
-11;'040;Austria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67514;73043;66669;50147;49929;68021;56303;57231;61157;53830;47780;56158;58534;72470;83382;84257;108203;145013;131579;105507;121539;143815;121375;133782;135690;104011;109028;94435.62;98043;95268;81708;90517;93398;119993
-11;'040;Austria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229578;189413;135000;133000;176000;142000;163000;185000;216000;372000;418000;440000;370000;249000;296000;234000;173811;157000;125000;80350;98111;97530;78894;82151;93000;104744;155463;149738;160783;168129;111135;138822;155123;114217
-11;'040;Austria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22476;21963;21630;17029;21674;21000;19166;18102;20106;31516;28665;35899;34185;27685;31523;26054;24802;30315;27538;16841;19253;22135;16302;17717;22588;20740;25595;24886.93;26520;25839;19804;23128;30522;23668
-11;'040;Austria;1868;Sawlogs and veneer logs;5516;Production;m3;7359000;7140000;6454000;6965000;6734000;7289000;7216000;7111000;7756000;7943000;8276000;8126000;7898000;7727000;7240000;8628000;8658000;8091000;8945000;8945000;8815000;7654000;7985000;8706000;8706000;8062000;7858000;8645000;9675000;10751000;9861000;6813000;6910000;8549000;8081000;8194000;8530000;8165000;8067000;8033000;8057000;9183000;10578000;10021000;9892000;11487000;13361253;13162311;9104905;10167382;10385692;9653679;9319316;8855230;9490779;9006268;9535419;10395385;9870400;8504420;10419533;10711001;9068089
-11;'040;Austria;1868;Sawlogs and veneer logs;5616;Import quantity;m3;217400;179500;245000;271500;50600;69100;140200;171200;116500;123800;143900;285500;987800;1062100;452100;750200;816400;820800;888600;1099800;1141300;1440100;1473000;1154200;1474100;1110300;1586000;1723000;1616000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;5622;4165;5282;6043;2642;2971;4259;5195;4512;5113;5962;11018;35175;46891;20124;31242;34280;41063;51235;76991;69298;75933;70069;53896;61835;70638;110883;125300;127418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1868;Sawlogs and veneer logs;5916;Export quantity;m3;184200;168700;156100;153900;138700;161700;185300;176100;199600;192800;224600;214800;257500;359000;339400;420800;407500;415400;472300;421800;404100;371100;288200;298200;275400;296600;378300;307000;345000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;6528;9487;5701;5149;3216;3666;4165;2058;2414;3368;6656;6385;13167;21414;20029;26354;34646;38322;46300;63300;50646;41373;26032;27424;29054;35000;40148;34000;39200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;6953000;6748000;6190000;6730000;6408000;6929000;6781000;6741000;7411000;7529000;7836000;7702000;7405000;7134000;6773000;8087000;8253000;7640000;8531000;8531000;8284000;7156000;7520000;8225000;8225000;7646000;7463000;8221000;9210000;10279000;9469000;6265000;6363000;7953000;7513000;7664000;8027000;7670000;7571000;7614000;7638000;8764000;10181000;9602000;9488000;11078000;12931297;12743736;8816439;9892962;10064816;9358593;9052196;8585110;9193948;8685643;9236916;10069861;9568493;8229195;10139138;10381586;8790374
-11;'040;Austria;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;47400;33100;26500;24400;18700;35700;108700;133200;75700;71400;98900;228900;924400;975500;403100;691800;793900;798700;879300;1084200;1114000;1412900;1439000;1131500;1450500;1092300;1525000;1663000;1547000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;693;518;482;436;377;704;2154;2471;1759;1919;2852;6306;28685;38541;14593;24736;32609;39331;50328;75465;67084;74078;68028;52663;60589;69230;104303;118800;120918;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;153400;144100;126800;117400;100200;112200;131100;130900;147600;126500;159700;152800;175500;214400;221500;273900;267100;263400;272500;215000;178500;164800;120700;146400;143700;169400;251700;170000;206000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;5968;9014;5114;4439;2448;2668;3066;1183;1446;2090;5290;4995;10606;14740;15300;19500;24000;24000;25000;30500;26863;22617;13148;14536;17034;22000;27023;19000;24000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;406000;392000;264000;235000;326000;360000;435000;370000;345000;414000;440000;424000;493000;593000;467000;541000;405000;451000;414000;414000;531000;498000;465000;481000;481000;416000;395000;424000;465000;472000;392000;548000;547000;596000;568000;530000;503000;495000;496000;419000;419000;419000;397000;419000;404000;409000;429956;418575;288466;274420;320876;295086;267120;270120;296831;320625;298503;325524;301907;275225;280395;329415;277715
-11;'040;Austria;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;170000;146400;218500;247100;31900;33400;31500;38000;40800;52400;45000;56600;63400;86600;49000;58400;22500;22100;9300;15600;27300;27200;34000;22700;23600;18000;61000;60000;69000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;4929;3647;4800;5607;2265;2267;2105;2724;2753;3194;3110;4712;6490;8350;5531;6506;1671;1732;907;1526;2214;1855;2041;1233;1246;1408;6580;6500;6500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;30800;24600;29300;36500;38500;49500;54200;45200;52000;66300;64900;62000;82000;144600;117900;146900;140400;152000;199800;206800;225600;206300;167500;151800;131700;127200;126600;137000;139000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;560;473;587;710;768;998;1099;875;968;1278;1366;1390;2561;6674;4729;6854;10646;14322;21300;32800;23783;18756;12884;12888;12020;13000;13125;15000;15200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693000;2921000;2383000;2505000;2627000;3141000;2922000;2894000;2943000;3159711;3609428;3038980;3114062;3244840;3177539;3113447;3174490;3079683;3166813;3202986;3553455;3454280;2958035;3101224;3223228;3309539
-11;'040;Austria;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428000;2615000;1993000;2057000;2136000;2593000;2371000;2358000;2436000;2638321;2978707;2527494;2649325;2718759;2578154;2507935;2482570;2377533;2458870;2484990;2751137;2774031;2357746;2531383;2575823;2637070
-11;'040;Austria;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265000;306000;390000;448000;491000;548000;551000;536000;507000;521390;630721;511486;464737;526081;599385;605512;691920;702150;707943;717996;802318;680249;600289;569841;647405;672469
-11;'040;Austria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;367800;351700;630900;626200;590700;430100;468400;568100;574400;1172100;876600;669000;975000;1290800;1045200;826900;808000;839500;1337400;1514600;1031000;995500;791000;906400;1489800;1393400;1597000;1307000;1223000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;4418;3557;6024;6251;6923;4600;4590;5630;6127;16926;14703;9058;15277;31510;29104;19644;20568;21127;41210;63118;35375;32103;20738;23416;42894;55249;64000;56641;55492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;3200;4900;7800;23300;35300;43300;66000;47000;38700;29700;71800;55100;118100;137000;126700;127700;171200;162800;107000;89900;184900;181000;137600;201000;197000;276000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;25;40;65;250;388;476;726;517;430;350;1300;1400;2960;3600;3500;3600;6000;5800;4100;3000;5960;5430;4689;7000;7000;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1699000;1587000;1540000;1693000;1546000;1567000;1713000;1657000;1808000;1780000;2094000;2452000;2367000;2147000;2239000;2775000;2757000;2837000;3229000;3229000;3229000;3533000;3450000;3286000;2487000;2558000;2652000;3013000;3220000;2809000;2674000;2442000;2198000;2552000;2665000;3018000;2772000;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;367800;351700;630900;626200;590700;430100;468400;568100;574400;1172100;876600;669000;975000;1290800;1045200;826900;808000;839500;1337400;1514600;1031000;995500;791000;906400;1489800;1393400;1597000;1307000;1223000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;4418;3557;6024;6251;6923;4600;4590;5630;6127;16926;14703;9058;15277;31510;29104;19644;20568;21127;41210;63118;35375;32103;20738;23416;42894;55249;64000;56641;55492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;3200;4900;7800;23300;35300;43300;66000;47000;38700;29700;71800;55100;118100;137000;126700;127700;171200;162800;107000;89900;184900;181000;137600;201000;197000;276000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;25;40;65;250;388;476;726;517;430;350;1300;1400;2960;3600;3500;3600;6000;5800;4100;3000;5960;5430;4689;7000;7000;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1522000;1437000;1383000;1463000;1406000;1346000;1500000;1426000;1512000;1449000;1433000;1620000;1536000;1338000;1457000;1911000;1937000;2113000;2212000;2212000;2212000;2412000;2345000;2163000;2163000;2225000;2265000;2617000;2790000;2359000;2188000;2182000;1961000;2302000;2403000;2751000;2480000;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;177000;150000;157000;230000;140000;221000;213000;231000;296000;331000;661000;832000;831000;809000;782000;864000;820000;724000;1017000;1017000;1017000;1121000;1105000;1123000;324000;333000;387000;396000;430000;450000;486000;260000;237000;250000;262000;267000;292000;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1871;Other industrial roundwood;5516;Production;m3;1093000;1096000;1002000;1061000;1082000;1211000;1133000;1062000;1135000;804000;834000;870000;744000;757000;822000;809000;818000;805000;799000;799000;799000;799000;799000;799000;589000;584000;590000;580000;680000;600000;600000;600000;600000;600000;600000;600000;600000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-11;'040;Austria;1871;Other industrial roundwood;5616;Import quantity;m3;1200;1700;800;700;305500;212500;320900;390700;424700;682900;618000;608700;714900;929800;700500;741600;706600;702100;951900;1093600;888500;723200;771400;764800;1014400;1011000;1024800;997000;736000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1871;Other industrial roundwood;5622;Import value;1000 USD;38;54;18;2937;4023;3055;3764;5452;6113;9617;9585;9913;12694;23101;17413;17911;23431;21684;36179;50660;37134;26783;24995;24208;29529;40228;48067;44052;40353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1871;Other industrial roundwood;5916;Export quantity;m3;199900;167700;192300;163000;128600;146700;152800;153100;195900;178600;154000;135300;142600;154200;170300;152200;163400;183600;183600;216600;189000;152200;121800;117500;101500;94300;208200;94300;83700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1871;Other industrial roundwood;5922;Export value;1000 USD;2472;2290;2408;2181;3092;3588;4009;4669;5908;6745;6190;5548;8065;12661;13941;15524;21215;23865;13589;17881;13847;10150;7736;6199;8548;8601;16357;8000;6700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;669000;694000;749000;787000;1004000;1108000;899000;866000;907000;715000;757000;812000;682000;701000;782000;760000;785000;770000;774000;774000;774000;774000;774000;774000;384000;409000;410000;400000;470000;410000;410000;410000;410000;410000;410000;410000;410000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-11;'040;Austria;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;424000;402000;253000;274000;78000;103000;234000;196000;228000;89000;77000;58000;62000;56000;40000;49000;33000;35000;25000;25000;25000;25000;25000;25000;205000;175000;180000;180000;210000;190000;190000;190000;190000;190000;190000;190000;190000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-11;'040;Austria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1200;1700;800;700;305500;212500;320900;390700;424700;682900;618000;608700;714900;929800;700500;741600;706600;702100;951900;1093600;888500;723200;771400;764800;1014400;1011000;1024800;997000;736000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;38;54;18;2937;4023;3055;3764;5452;6113;9617;9585;9913;12694;23101;17413;17911;23431;21684;36179;50660;37134;26783;24995;24208;29529;40228;48067;44052;40353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;199900;167700;192300;163000;128600;146700;152800;153100;195900;178600;154000;135300;142600;154200;170300;152200;163400;183600;183600;216600;189000;152200;121800;117500;101500;94300;208200;94300;83700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;2472;2290;2408;2181;3092;3588;4009;4669;5908;6745;6190;5548;8065;12661;13941;15524;21215;23865;13589;17881;13847;10150;7736;6199;8548;8601;16357;8000;6700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1366;1183;1134;1377;1269;1263;1447;1382;1222;1379;1425;1442;1463;1096;1034
-11;'040;Austria;1630;Wood charcoal;5610;Import quantity;t;7300;4600;3900;3500;4600;5000;7400;6600;5900;5800;8900;7500;6900;7200;2300;2800;2900;2800;3700;3300;4400;4500;4900;5400;5700;6700;6700;5600;6000;6800;6800;7948;8978;7000;7000;10000;9000;9000;8000;10000;10000;10000;12000;13000;11000;12000;11000;12530;13650;11808;11304;13768;12701;12630;14473;15852;14977;15691;16336;16255;15872;13442;12095
-11;'040;Austria;1630;Wood charcoal;5622;Import value;1000 USD;321;204;173;168;282;288;378;317;289;336;601;581;616;856;449;552;662;728;1035;1068;1539;1481;1263;1100;1261;2278;2502;2079;2095;2512;2512;3552;3740;3071;3071;4319;3139;3116;2678;2757;2566;2712;4013;4840;4683;5443;6256;7080;8150;6423;7259;7912;7730;8400;8384;8525;8616.44;10109;10601;11625;11993;9813;9937
-11;'040;Austria;1630;Wood charcoal;5910;Export quantity;t;;100;100;100;100;300;200;100;100;200;200;300;300;200;100;200;40;;;;;;;;;;;;;;;366;58;0;0;0;0;100;100;0;0;0;2000;1000;1000;366;1000;500;3800;1019;1306;2336;1790;1850;733;2029;2752;1945;2046;1851;1464;1294;1027
-11;'040;Austria;1630;Wood charcoal;5922;Export value;1000 USD;0;4;5;2;3;8;6;5;5;6;11;16;20;14;5;8;2;;;;;;;;;;;;;;;88;41;0;0;0;0;51;64;31;34;21;1001;590;348;222;673;484;2769;916;1175;1709;1372;1407;527;1473;1846.2;1593;1473;1338;1532;1076;578
-11;'040;Austria;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300000;8300000;6085000;5933000;6139000;6746000;7317000;7537000;7644000;8503000;8499000;7018924;6868000;7217000;6546000;6258000;5772000;5928000;6780000;6777000;7125000;7205000;7179000;7466500;7762200;6368400
-11;'040;Austria;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733500;921000;950000;801000;802000;741000;847000;942000;2089000;2189000;1967108;1965060;2213155;2000599;2014664;2214652;2067810;1723823;1814221;1824605;2451378;2019644;1797641;1907067;1951191;1183986
-11;'040;Austria;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25651;30348;20287;22406;26681;31139;35159;43267;120753;135646;132139;158701;177503;153046;106563;143903;141376;95745;96943;101979.45;128708;102562;83445;89570;164700;115708
-11;'040;Austria;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;698500;842000;1104000;889000;826000;1176000;1097000;1399000;1230000;1387000;1254500;849090;1143125;520323;453767;527643;510770;578051;591607;560552;612039;482846;316605;768628;486148;413320
-11;'040;Austria;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19239;23322;23487;23236;29086;57146;64827;91251;123084;144119;133643;135979;172333;47523;39046;48115;39779;34633;28598;28601.55;36225;31209;20747;42788;41443;45249
-11;'040;Austria;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3320000;3320000;3720000;3631000;3805000;4316000;4834000;5059000;4897000;5490000;5351000;3855000;4021000;4252500;3844000;3537000;3194000;3276000;3726000;3751000;3856000;3805000;3805000;3903900;4019400;3595600
-11;'040;Austria;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;380300;474700;616200;545000;365000;265000;245000;456000;597205;1377000;2228000;1780000;2185000;666000;519000;679000;692000;513000;487000;443000;348000;451000;920000;1189000;1180000;1172950;1356686;1465273;1414503;1522777;1346110;907380;1135917;1283799;1297378;978893;880906;818429;975595;959701
-11;'040;Austria;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;5890;5719;16814;15611;10600;9400;8529;14000;17295;17108;33169;38565;72000;19865;18531;22445;12985;12934;14093;14795;12091;15510;42945;61864;66074;68591;80287;102713;78351;105373;99665;56542;66405;77684.4;83387;59920;50574;48054;82350;89137
-11;'040;Austria;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;84500;68400;75300;88100;125000;312000;155000;156000;180439;442000;631000;970000;702000;241000;238000;281000;508000;328000;344000;443000;314000;475000;401000;508000;365000;200100;278605;289481;191504;249869;167840;110187;110450;107818;168039;159964;177524;313995;243074;206978
-11;'040;Austria;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1904;1870;2853;3507;4000;5198;6282;6300;6057;5330;9477;16645;16000;7863;8631;9857;10747;9062;9613;18519;14316;19637;19069;32521;24379;15262;18716;20806;14406;21457;14008;9078;5927;6401.62;12729;11823;11032;18563;20721;19910
-11;'040;Austria;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2507000;2732000;2905000;2905000;2905000;4980000;4980000;2365000;2302000;2334000;2430000;2483000;2478000;2747000;3013000;3148000;3163924;2847000;2964500;2702000;2721000;2578000;2652000;3054000;3026000;3269000;3400000;3374000;3562600;3742800;2772800
-11;'040;Austria;1620;Wood residues;5616;Import quantity;m3;;;;15200;26400;25800;14500;29000;49000;97700;97000;64900;135300;167900;211400;219800;224700;232300;237200;254700;298500;246900;267600;304600;298100;405900;461600;462000;661700;300000;450000;409103;691000;795000;690000;398000;173000;214500;242000;258000;288000;315000;298000;499000;491000;1169000;1000000;787108;792110;856469;535326;600161;691875;721700;816443;678304;540806;1154000;1040751;916735;1088638;975596;224285
-11;'040;Austria;1620;Wood residues;5622;Import value;1000 USD;;;;183;309;262;117;212;456;1531;1602;676;1453;2693;3506;2776;3143;3385;4107;6274;7834;5612;5359;5842;5719;11177;12709;12500;9214;7525;14000;10838;9028;10003;11962;10683;9428;7120;7903;7302;9472;12588;16344;23068;27757;77808;73782;66065;90110;97216;50333;28212;38530;41711;39203;30538;24295.05;45321;42642;32871;41516;82350;26571
-11;'040;Austria;1620;Wood residues;5916;Export quantity;m3;;;;51000;40600;62600;75100;76200;81900;78600;79200;81300;102100;107400;82200;113000;101200;92300;114400;108400;109400;122800;118000;126100;107700;158200;144700;250000;703400;333200;300000;361010;618000;911000;1150000;1005000;316000;460500;561000;596000;561000;482000;733000;783000;924000;829000;879000;889500;648990;864520;230842;262263;277774;342930;467864;481157;452734;444000;322882;139081;454633;243074;206342
-11;'040;Austria;1620;Wood residues;5922;Export value;1000 USD;;;;502;418;652;750;708;750;1134;1078;875;1335;1667;1128;1715;1554;2211;2579;3111;2652;2473;1869;3409;3676;3534;3662;3600;6498;6716;6800;10469;6534;10091;12364;24000;9853;10608;13465;12740;14174;19473;38627;50511;71614;104015;111598;109264;120717;153617;26717;24640;26658;25771;25555;22671;22199.93;23496;19386;9715;24225;20722;25339
-11;'040;Austria;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975596;224285
-11;'040;Austria;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82350;26571
-11;'040;Austria;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243074;206342
-11;'040;Austria;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20722;25339
-11;'040;Austria;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755000;755000;905317;957250;1131220;1131220;1131220
-11;'040;Austria;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318400;268000;283834;265150;333201;361400;361400
-11;'040;Austria;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16504;11581;11442;9796;12125;46057;46057
-11;'040;Austria;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79110;115000;102890;139227;141021;111070;111070
-11;'040;Austria;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4476.5;5875;5012;6099;6258;11443;11443
-11;'040;Austria;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182000;1251000;1232000;1055000;1131000;1290000;1405000;1496100;1586300;1675300;1692000;1774000
-11;'040;Austria;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370140;517709;455540;490004;480748;509271;467094;424681;472318;509159;431159;365528
-11;'040;Austria;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77383;120371;103523;86800;81557;93091.12;98414;82985;85425;95119;143497;109394
-11;'040;Austria;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491679;503334;506860;595184;644898;716381;840122;847611;873255;901202;756411;810145
-11;'040;Austria;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127186;153064;150716;131965;139771;161387.24;210842;200990;198414;210925;290490;260153
-11;'040;Austria;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893000;962000;948000;1000000;1071000;1225000;1345000;1441000;1540000;1607000;1640000;1725000
-11;'040;Austria;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272140;385457;343850;367842;392201;403471;360387;337491;384482;412744;343958;289410
-11;'040;Austria;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56712;92287;80648;66849;67616;73578;75011;64790;67884;72278;111201;85764
-11;'040;Austria;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476279;482798;485270;559126;609525;671240;804433;818386;849292;875445;745422;796361
-11;'040;Austria;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123139;147675;144821;123785;132653;151992.63;202615;194084;192417;205088;287115;255843
-11;'040;Austria;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289000;289000;284000;55000;60000;65000;60000;55100;46300;68300;52000;49000
-11;'040;Austria;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;132252;111690;122162;88547;105800;106707;87190;87836;96415;87201;76118
-11;'040;Austria;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20671;28084;22875;19951;13941;19513.12;23403;18195;17541;22841;32296;23630
-11;'040;Austria;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400;20536;21590;36058;35373;45141;35689;29225;23963;25757;10989;13784
-11;'040;Austria;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4047;5389;5895;8180;7118;9394.61;8227;6906;5997;5837;3375;4310
-11;'040;Austria;1872;Sawnwood;5516;Production;m3;4919000;4814000;4377000;4758500;4584000;4945000;4878000;4830000;5268000;5376000;5588000;5517000;5765000;5694000;5002000;5987000;6286000;5972000;6545000;6736000;6426000;5958000;6269000;6315000;6001000;5818000;5944000;6478000;6920000;7508900;7238900;7020000;6786000;7572000;7804000;8200000;8450000;8737000;9628000;10390000;10227000;10415000;10473000;11133000;11074000;10507000;11816000;10835000;8458000;9603000;9636000;8952000;8534000;8460000;8731000;9410000;9849000;10386000;10450000;10475000;10764000;10369157;9371833
-11;'040;Austria;1872;Sawnwood;5616;Import quantity;m3;30200;22300;24900;34100;43600;47000;57200;55500;61800;79000;100500;159100;178600;218400;205200;270600;309800;371200;470600;582500;640000;648400;781700;850300;641300;751900;760300;692200;688200;685000;725000;762000;803000;998000;1029000;1065000;1096000;1040000;1623000;1663000;1320000;1351000;1443000;1489000;1500000;1881000;1707000;1638000;1776070;1797342;1942036;1932554;1911498;1775480;1810412;2000763;1957130;2087521;1981576;1941853;2088125;2001004;1494238
-11;'040;Austria;1872;Sawnwood;5622;Import value;1000 USD;2286;2061;2177;3242;4102;4361;4818;4434;5602;7394;9774;16381;24936;29928;29692;41091;51040;65163;89150;121863;101275;84901;92947;94856;72697;96522;134606;123444;150255;206183;204000;231079;187414;243679;302992;269031;273803;236092;278201;271416;231354;251705;305992;364185;389397;521389;579101;558754;485902;535970;635092;592502;601158;578536;506159;555019;563106.66;648893;574209;561093;825583;787574;533699
-11;'040;Austria;1872;Sawnwood;5916;Export quantity;m3;3099700;2983700;2900300;2801400;2891200;2806500;2687400;3214200;3702200;3421700;3181400;3318300;3436500;3108200;2969000;3909600;3839400;3853300;4368200;4384200;3881900;3618700;4267600;4060100;3682400;3633400;3807100;3991000;4359500;4179000;4063000;3961000;3942000;4557000;4694000;4160000;4953000;4862000;5895000;6356000;6084000;6422000;6772000;7396000;7281000;6889000;7842000;7196400;5798760;6123364;5728026;5174130;5055618;5022940;5202153;5460941;5614047;6101156;6224547;6079892;6119574;5892639;5492313
-11;'040;Austria;1872;Sawnwood;5922;Export value;1000 USD;126964;123511;117607;112852;118569;115599;108209;123100;153514;172596;168307;184156;314348;360385;253755;405842;465081;519026;721008;854997;612664;477021;486274;456148;384055;493152;600404;627502;791038;937461;885000;904984;690595;873892;1121975;1058965;1013747;944035;1127773;1045281;953419;1047653;1286536;1523239;1485858;1620648;2117945;1913192;1379326;1553522;1632032;1378123;1444091;1426128;1239407;1282682;1369598.15;1618287;1477960;1426451;2348927;2134041;1608472
-11;'040;Austria;1632;Sawnwood, coniferous;5516;Production;m3;4679000;4570000;4192500;4533750;4324000;4699500;4616500;4604000;5047500;5126000;5295000;5226000;5448000;5326500;4682000;5709000;5859500;5523000;6104000;6298000;6023000;5692000;6028000;6062500;5766500;5561500;5703500;6232500;6651500;7211500;6941500;6774000;6558000;7316000;7552000;7950000;8254000;8534000;9400000;10150000;10011000;10191000;10263000;10917000;10884000;10265000;11580000;10595000;8295000;9445000;9485000;8793000;8385000;8327000;8605000;9256000;9675000;10206000;10233000;10305000;10582000;10126508;9125245
-11;'040;Austria;1632;Sawnwood, coniferous;5616;Import quantity;m3;13250;7400;4750;8000;9050;11750;15900;13300;14300;14950;26150;46600;63750;110800;90800;128650;164150;232900;335250;419050;512750;543200;665550;717250;517900;631400;603600;547600;547600;557000;576000;629000;677000;842000;875000;900000;904000;841000;1286000;1306000;1125000;1138000;1227000;1274000;1286000;1641000;1446000;1420000;1595700;1592383;1728546;1717926;1736014;1614850;1640801;1808888;1778815;1885639;1789742;1776568;1911235;1784146;1366463
-11;'040;Austria;1632;Sawnwood, coniferous;5622;Import value;1000 USD;693;517;334;648;729;910;1111;1068;1404;1487;2122;3772;6557;11678;8686;13171;18080;26834;40552;59949;56514;48695;53907;57321;39743;63969;82067;74722;95646;142717;149000;170694;134371;176200;221697;176898;182168;155186;184116;182284;156089;170849;209053;245337;263698;369960;399169;384938;364683;402786;475574;441483;469575;446882;385438;414565;425897.66;489151;438131;434704;670847;581236;411423
-11;'040;Austria;1632;Sawnwood, coniferous;5916;Export quantity;m3;3022850;2925350;2846050;2743100;2822150;2741950;2630200;3158700;3642650;3350150;3113650;3252150;3344700;3009900;2892150;3817000;3731100;3731950;4238550;4254050;3791300;3536850;4196550;3964450;3593600;3551350;3691500;3901500;4262000;4070000;3962000;3871000;3850000;4457000;4550000;4000000;4838000;4752000;5652000;6147000;5932000;6289000;6626000;7246000;7111000;6694000;7637000;7012800;5662380;5981449;5585991;5033426;4932123;4883990;5058953;5320305;5448581;5919466;6067816;5950621;5946608;5747283;5382953
-11;'040;Austria;1632;Sawnwood, coniferous;5922;Export value;1000 USD;123389;120747;115247;110237;115269;112404;105379;120518;150672;168944;164554;180093;306226;349513;244957;393801;447953;495249;692522;822868;593505;460608;477333;435598;365765;470397;572881;605251;759602;894309;855000;866673;656465;836072;1076190;988000;957803;897608;1058756;982825;895336;992252;1217791;1447269;1396930;1509040;1987254;1775890;1293515;1452807;1522451;1277189;1351468;1322609;1144057;1180785;1256278.32;1483755;1363133;1324483;2213049;1996884;1500651
-11;'040;Austria;1633;Sawnwood, non-coniferous;5516;Production;m3;240000;244000;184500;224750;260000;245500;261500;226000;220500;250000;293000;291000;317000;367500;320000;278000;426500;449000;441000;438000;403000;266000;241000;252500;234500;256500;240500;245500;268500;297400;297400;246000;228000;256000;252000;250000;196000;203000;228000;240000;216000;224000;210000;216000;190000;242000;236000;240000;163000;158000;151000;159000;149000;133000;126000;154000;174000;180000;217000;170000;182000;242649;246588
-11;'040;Austria;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;16950;14900;20150;26100;34550;35250;41300;42200;47500;64050;74350;112500;114850;107600;114400;141950;145650;138300;135350;163450;127250;105200;116150;133050;123400;120500;156700;144600;140600;128000;149000;133000;126000;156000;154000;165000;192000;199000;337000;357000;195000;213000;216000;215000;214000;240000;261000;218000;180370;204959;213490;214628;175484;160630;169611;191875;178315;201882;191834;165285;176890;216858;127775
-11;'040;Austria;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1593;1544;1843;2594;3373;3451;3707;3366;4198;5907;7652;12609;18379;18250;21006;27920;32960;38329;48598;61914;44761;36206;39040;37535;32954;32553;52539;48722;54609;63466;55000;60385;53043;67479;81295;92133;91635;80906;94085;89132;75265;80856;96939;118848;125699;151429;179932;173816;121219;133184;159518;151019;131583;131654;120721;140454;137209.01;159742;136078;126389;154736;206338;122276
-11;'040;Austria;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;76850;58350;54250;58300;69050;64550;57200;55500;59550;71550;67750;66150;91800;98300;76850;92600;108300;121350;129650;130150;90600;81850;71050;95650;88800;82050;115600;89500;97500;109000;101000;90000;92000;100000;144000;160000;115000;110000;243000;209000;152000;133000;146000;150000;170000;195000;205000;183600;136380;141915;142035;140704;123495;138950;143200;140636;165466;181690;156731;129271;172966;145356;109360
-11;'040;Austria;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3575;2764;2360;2615;3300;3195;2830;2582;2842;3652;3753;4063;8122;10872;8798;12041;17128;23777;28486;32129;19159;16413;8941;20550;18290;22755;27523;22251;31436;43152;30000;38311;34130;37820;45785;70965;55944;46427;69017;62456;58083;55401;68745;75970;88928;111608;130691;137302;85811;100715;109581;100934;92623;103519;95350;101897;113319.82;134532;114827;101968;135878;137157;107821
-11;'040;Austria;1634;Veneer sheets;5516;Production;m3;16900;16900;13600;16400;14700;14200;13400;14500;17200;18200;19700;20400;22400;25000;16300;15000;15000;17000;19000;20000;18000;18000;18000;19000;19000;19000;19000;19000;21000;21000;22000;25000;24000;27000;27000;27000;27000;27700;23420;23420;23000;23420;23420;23420;23420;43269;45000;40000;37368;8000;8000;8000;8040;8040;8040;7000;7000;8000;7510;7500;7500;7500;7500
-11;'040;Austria;1634;Veneer sheets;5616;Import quantity;m3;2200;3600;4900;5500;6400;7100;7400;8100;7400;9900;6500;6000;7300;5600;5000;7000;8000;7800;9000;9600;8100;8300;9100;9900;8000;10700;7100;8600;8800;12600;12600;12486;13071;17000;16000;17000;16000;19600;18000;23000;31000;31000;37000;48000;56000;61000;63000;49600;41720;49397;53065;53893;42385;44270;51363;53369;57807;57674;57859;54591;69640;84765;47798
-11;'040;Austria;1634;Veneer sheets;5622;Import value;1000 USD;928;1557;2500;2952;3362;3921;4192;4479;4418;5566;5473;5956;9219;9639;9605;12274;15222;16896;24114;27540;19866;19743;20875;19517;16322;30956;20454;28148;29697;31771;31771;41039;40406;47033;46620;42688;43675;45442;41758;48425;51898;48706;66078;85483;84986;109017;130518;120554;96787;94073;95942;96040;91021;94122;91482;105846;122347.69;131888;121666;117079;169451;201927;121087
-11;'040;Austria;1634;Veneer sheets;5916;Export quantity;m3;6500;5900;3900;5100;3700;4000;3200;4300;4600;3700;2900;3300;3900;3800;2900;3800;3600;3900;4700;4600;4500;4600;4300;4600;4800;4600;5000;6800;6400;5200;5200;6857;10620;11000;13000;10000;9000;13300;14300;19000;24000;29000;30000;35000;33000;36000;37000;28300;22870;23794;26659;26149;20941;17260;16839;15894;18087;21357;18969;16506;17744;16513;13648
-11;'040;Austria;1634;Veneer sheets;5922;Export value;1000 USD;3333;3031;2227;2682;2046;2799;2377;3504;3545;3012;2808;3240;4981;6088;4392;5885;6294;8137;10213;11205;9657;9224;8454;9040;8654;11348;12597;15892;16045;15858;15858;23939;26049;32555;39171;24557;34646;39081;37910;51702;44141;59020;71346;93362;83437;89352;104273;85078;57589;57044;61024;55886;58009;55196;49159;48977;59071.98;62335;59755;54773;66702;68188;60314
-11;'040;Austria;1873;Wood-based panels;5516;Production;m3;196700;210000;228600;262700;295400;360700;381500;422200;535300;620700;723600;904800;1034000;968000;878000;1192000;1215000;1223000;1292000;1443000;1268000;1146700;1215900;1244200;1289500;1334000;1415000;1544000;1612000;1752000;1930000;1849000;1843000;1934000;1969000;1970000;2071000;2015000;2015500;2341500;2996000;3397000;3396000;3396000;3430000;3766000;3794206;3672678;3167225;3377225;3382212;3241387;3261390;3156000;3046000;3285000;3317000;3309000;3077000;3073700;3423800;2881388;2640000
-11;'040;Austria;1873;Wood-based panels;5616;Import quantity;m3;800;1200;1600;3400;7600;8900;13500;14000;14600;19100;18300;21500;30500;33600;32100;41500;53500;46200;54600;57100;64800;83600;100900;113300;129200;130500;160000;166400;263700;196000;216000;247864;253000;296000;286300;380000;401000;508000;686400;665000;548000;534000;619000;650000;716000;752000;725000;675500;657470;759815;739422;829323;796183;833930;875327;887771;1097009;1075299;1053623;1063425;1190766;1039536;864417
-11;'040;Austria;1873;Wood-based panels;5622;Import value;1000 USD;89;197;348;525;832;939;1371;1507;1903;2731;2823;3389;6024;8389;7857;10912;15467;16851;20159;26827;24227;26065;28317;28037;29767;43862;57390;63573;91129;84267;87247;116791;115613;140043;185789;196227;196163;212375;243700;201455;184535;189340;238312;278293;297773;314829;375945;384243;311407;345674;408211;392173;366639;389181;338566;342674;424895.67;470305;422995;412226;602949;552797;459695
-11;'040;Austria;1873;Wood-based panels;5916;Export quantity;m3;24500;22200;35600;41200;49900;78244;92983;107183;195540;201277;252901;374085;492848;397544;374687;592330;592800;644000;755000;757000;649700;581200;618200;659800;752900;815500;863000;963000;1157800;1220400;1111000;1043321;1057941;1121000;1214000;1414100;1513000;1667600;1676900;2012000;2280000;2574000;2667000;2654000;2714000;2824000;3308000;3050200;2545710;2732675;2726651;2764591;2794975;2716400;2660747;2791951;2813650;2730353;2725749;2702332;2962327;2325758;2218198
-11;'040;Austria;1873;Wood-based panels;5922;Export value;1000 USD;2911;2826;4146;4941;4820;5187;6191;7054;13322;16095;21190;34594;60247;59414;49568;66292;78268;93725;136427;176185;133521;115052;115104;110784;121355;181839;225443;259900;299549;361976;339862;401316;344740;386341;469312;519536;516246;561715;560165;581753;622428;742997;908951;984770;1072193;1228163;1609629;1628052;1285664;1338132;1524088;1403002;1458339;1454111;1210415;1268343;1314843.59;1368013;1301547;1282114;1711614;1527004;1437248
-11;'040;Austria;1640;Plywood and LVL;5516;Production;m3;41500;37100;29600;29700;24600;21100;17600;16100;13400;13600;11100;10900;11500;10000;5800;7000;7000;8000;8000;7000;5000;3700;3900;4200;3500;11000;18000;18000;111000;120000;140000;150000;150000;150000;150000;150000;150000;150000;155000;155000;186000;186000;186000;186000;195000;230000;258000;268014;212000;322000;271387;241387;311390;306000;241000;291000;291000;290000;157000;167700;183800;131388;135000
-11;'040;Austria;1640;Plywood and LVL;5616;Import quantity;m3;100;600;600;800;1100;1200;1800;2400;3500;5500;4200;4400;7400;8400;7100;10100;12900;15400;18700;24000;22700;25100;28600;32800;35300;41500;52000;47500;57500;61000;76000;79000;77000;104000;116000;115000;120000;121000;135800;151000;138000;156000;180000;144000;140000;140000;172000;132900;115670;155296;195972;209221;145466;159530;189646;180966;230935;241961;217465;234160;267164;183352;168812
-11;'040;Austria;1640;Plywood and LVL;5622;Import value;1000 USD;28;130;145;187;326;298;433;585;934;1443;1387;1589;3238;4407;3484;5057;7426;9355;10933;15564;13115;13225;14775;15161;16016;25433;33117;34219;41588;46714;50000;65966;63016;74587;94532;85507;78349;83418;87848;75667;71899;75129;96052;96121;99855;99256;128742;115281;84364;99414;148540;143271;109729;118576;112004;114457;147502.82;173687;160228;159006;238990;199550;178385
-11;'040;Austria;1640;Plywood and LVL;5916;Export quantity;m3;5000;5800;6000;6100;3500;3000;2700;2700;2000;2700;2700;3600;7700;5600;4500;4600;5900;5900;8300;10200;10200;11200;14800;18300;30700;28700;21000;48000;105200;128000;130000;119000;129000;158000;130000;150000;166000;179800;192300;246000;286000;240000;262000;265000;287000;311000;285000;278000;278490;303818;353425;334066;338571;345790;298181;339724;348179;307476;309126;299108;356911;296529;301969
-11;'040;Austria;1640;Plywood and LVL;5922;Export value;1000 USD;849;975;1009;1089;709;636;595;556;422;594;555;870;1998;2261;1576;2073;2383;2668;4570;6339;4840;4793;5627;6940;7644;13684;13289;31000;64631;81040;82000;107958;92675;107492;100008;106025;113055;114694;121854;121823;127246;133571;166157;191044;202888;235573;265660;268046;228366;247524;299539;263058;276376;291329;213473;234538;253668.53;251695;252132;246196;379124;325306;304696
-11;'040;Austria;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4563;2196
-11;'040;Austria;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479;2818
-11;'040;Austria;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;465
-11;'040;Austria;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2482;2746
-11;'040;Austria;1646;Particle board and OSB (1961-1994);5516;Production;m3;89000;112900;128100;152200;191600;222600;250900;298100;396500;479100;576500;749100;875100;819000;773400;1069000;1092000;1097000;1161000;1309000;1156000;1045000;1126000;1152000;1200000;1236000;1308000;1429000;1405000;1529000;1689000;1606000;1595000;1666000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;100;400;800;5900;7100;10200;8400;7600;9900;10500;11500;15800;19300;20500;25800;32500;24600;29300;27400;33000;45800;57400;68500;81600;74900;91000;109000;187200;115000;129000;141992;145000;164000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;7;16;140;199;438;570;806;634;589;810;966;1188;1861;3067;3528;4665;6208;5916;7488;9265;8721;10235;10662;10682;11852;15547;20923;25100;44119;28862;32200;39299;39371;49227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;500;1200;7900;6500;20500;20500;32800;47400;115800;124500;174400;293400;408400;318500;321400;530900;527100;575700;662700;675300;582300;510700;554400;594500;671700;738000;794000;857000;996400;1022000;926000;871000;891000;909000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;40;99;568;441;1317;1485;2195;3028;7398;9999;14258;26688;48588;45291;40792;56593;65124;78520;112114;145596;111568;94302;94891;90538;99706;148912;193154;208500;212152;253094;232000;260135;228214;246048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700000;1700000;1771000;1700000;1680000;1970000;2170000;2380000;2400000;2400000;2425000;2425000;2670000;2500000;2100000;2200000;2250000;2250000;2200000;2200000;2190000;2350000;2390000;2419000;2350000;2330000;2550000;2280000;2125000
-11;'040;Austria;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143000;175000;179000;172000;269000;276000;213000;105000;152000;186000;223000;262000;294000;282900;274300;325974;299898;298717;271268;257740;261068;251739;369665;326800;368900;307985;360983;312908;258720
-11;'040;Austria;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74100;57063;64884;58055;69814;57870;42296;27733;37682;52929;58184;69488;103797;109332;92615;102823;111135;110336;98388;92079;80947;77744;111339.61;105609;104675;87931;127036;125698;102119
-11;'040;Austria;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025000;1134000;1204000;1232600;1181500;1386000;1558000;1712000;1745000;1796000;1846000;1901000;2340000;2148000;1693250;1819580;1788496;1816887;1794845;1806290;1829371;1895924;1947031;1930270;1967916;1918621;2043479;1641675;1606831
-11;'040;Austria;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336750;325955;298949;319985;295213;302935;315558;340226;410154;482757;506975;578334;855931;869630;653100;666058;777158;731696;731063;732203;628423;646942;703545.5;757301;725608;691896;877559;849552;831162
-11;'040;Austria;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-11;'040;Austria;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;51000;56000;68000;117000;127000;135000;130000;155000;106000;117000;127220;138370;137652;162238;168081;170520;166398;161471;172670;176478;165180;182020;192199;211908;133467
-11;'040;Austria;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8725;11034;11122;11545;21377;27692;37745;35864;46651;37728;43878;37761;46609;52662;52122;57160;55685;40151;40277;46860.53;62553;51760;52438;88557;65281;46873
-11;'040;Austria;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2500;3000;4000;8000;12000;10000;13000;11000;11000;10000;7330;9034;7361;6510;7202;7340;9244;9769;10457;8761;6133;4919;5960;6830;4605
-11;'040;Austria;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729;679;737;833;2251;3392;4282;5217;5184;5856;5952;4116;5096;5317;4449;5105;4965;4907;4668;4984.02;4729;2599;1762;3371;3437;1847
-11;'040;Austria;1874;Fibreboard;5516;Production;m3;66200;60000;70900;80800;79200;117000;113000;108000;125400;128000;136000;144800;147400;139000;98800;116000;116000;118000;123000;127000;107000;98000;86000;88000;86000;87000;89000;97000;96000;103000;101000;93000;98000;118000;119000;120000;150000;165000;180500;216500;640000;831000;810000;810000;810000;1111000;866206;904664;855225;855225;860825;750000;750000;650000;615000;644000;636000;600000;570000;576000;690000;470000;380000
-11;'040;Austria;1874;Fibreboard;5616;Import quantity;m3;600;500;600;1800;600;600;1500;3200;3500;3700;3600;5600;7300;5900;4500;5600;8100;6200;6600;5700;9100;12700;14900;12000;12300;14100;17000;9900;19000;20000;11000;26872;31000;28000;27300;90000;102000;169000;230600;182000;129000;156000;160000;185000;223000;195000;153000;142700;140280;140175;105900;159147;211368;246140;258215;293595;323739;330060;302078;339260;370420;331368;303418
-11;'040;Austria;1874;Fibreboard;5622;Import value;1000 USD;54;51;63;139;68;71;132;288;380;478;470;612;925;915;845;1190;1833;1580;1738;1998;2391;2605;2880;2194;1899;2882;3350;4254;5422;8691;5047;11526;13226;16229;17157;53657;52930;62177;75004;56796;58795;65101;76886;91498;103870;99434;105678;115752;96667;96828;95874;86444;101362;122841;105464;110196;119192.71;128456;106332;112851;148366;162268;132318
-11;'040;Austria;1874;Fibreboard;5916;Export quantity;m3;19000;15200;21700;28600;25900;54744;57483;57083;77740;74077;75801;77085;76748;73444;48787;56830;59800;62400;84000;71500;57200;59300;49000;47000;50500;48800;48000;58000;56200;70400;55000;53321;37941;54000;59000;130100;143000;253800;300600;377000;432000;614000;648000;583000;568000;601000;672000;614200;566640;600243;577369;607128;654357;556980;523951;546534;507983;483846;442574;479684;555977;380724;304793
-11;'040;Austria;1874;Fibreboard;5922;Export value;1000 USD;2022;1752;2569;3411;2794;3066;3401;3470;5502;5502;6377;7036;9661;11862;7200;7626;10761;12537;19743;24250;17113;15957;14586;13306;14005;19243;19000;20400;22766;27842;25862;33223;23851;32801;32554;87556;104242;126307;142419;156258;178791;266949;329248;306687;357113;409072;482182;484424;400082;419454;442074;403799;445795;425614;363612;382195;352645.54;354288;321208;342260;451560;348709;299543
-11;'040;Austria;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;65000;81000;89000;97000;97000;127000;221000;130000;130000;130000;431000;115000;100000;100000;100000;100000;100000;100000;100000;85000;82300;71500;71000;72000;66000;75000;54000;50000
-11;'040;Austria;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;46000;60000;99000;130600;87000;74000;79000;85000;95000;113000;98000;37000;42300;32370;33436;30375;48103;16093;22740;26343;25286;29171;25815;26173;18308;17049;18474;17490
-11;'040;Austria;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10469;34366;31741;45763;53715;41078;43506;44427;54322;59133;68532;63096;37143;44436;37044;36311;42793;37057;18571;30713;26415;25674;27764.49;26530;24655;16963;16616;22863;22914
-11;'040;Austria;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;75000;89000;107200;130600;170000;201000;300000;350000;291000;105600;529000;89500;86500;66740;65226;66683;61760;73715;74100;58782;59567;56856;56494;53394;49010;60206;42993;38862
-11;'040;Austria;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13405;57000;77692;93418;108956;124605;135330;196373;251406;215161;69172;363177;63730;65614;40236;36926;41558;36141;43208;48216;33944;35631;33586.98;36047;33595;30698;42870;34206;32575
-11;'040;Austria;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;38000;42000;46000;82000;383000;480000;550000;550000;550000;550000;650000;700000;650000;650000;650000;650000;650000;550000;530000;556000;555000;529000;498000;510000;615000;416000;330000
-11;'040;Austria;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;29000;37000;54000;84000;55000;41000;57000;46000;58000;76000;68000;92000;77300;89120;88862;56447;73774;130231;147830;161454;174200;164317;173739;132722;170423;191844;177203;148241
-11;'040;Austria;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3283;15370;16981;13057;18339;10413;10837;16073;16029;22451;24379;26351;57090;59073;49725;51350;42439;37695;62062;73114;64203;67726;65701.23;77790;59159;70574;101149;110362;84054
-11;'040;Austria;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;35100;46000;107800;130000;138000;138000;245000;232000;220000;422400;61000;577000;523500;496190;532606;508763;543998;571437;470990;456084;482390;443529;422013;384516;425334;490961;333485;259686
-11;'040;Austria;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;12556;16828;21256;23998;21227;27171;55821;62278;72060;276689;42605;415523;416548;358012;381212;398829;366485;398625;373651;327752;345158;317180.71;316783;286144;309905;406644;312221;264593
-11;'040;Austria;1650;Other fibreboard;5516;Production;m3;16500;11600;14000;17800;14100;51000;43000;44000;50400;46000;54000;60800;60400;56000;36800;45000;47000;49000;47000;46000;43000;34000;20000;18000;18000;18000;18000;20000;20000;20000;20000;19000;20000;24000;24000;25000;31000;34000;37500;37500;130000;130000;130000;130000;130000;130000;101206;104664;105225;105225;110825;0;0;0;0;5700;9500;0;0;0;0;0;0
-11;'040;Austria;1650;Other fibreboard;5616;Import quantity;m3;;100;200;100;100;100;400;1200;1600;1200;1200;3200;4400;4000;2400;1600;1800;1400;2100;1800;4200;7500;8900;6700;8300;9600;12000;3900;15000;7000;7000;4148;4000;5000;5200;15000;5000;16000;16000;40000;14000;20000;29000;32000;34000;29000;24000;23100;18790;17877;19078;37270;65044;75570;70418;94109;130251;130506;143183;150529;161527;135691;137687
-11;'040;Austria;1650;Other fibreboard;5622;Import value;1000 USD;;16;18;19;16;16;30;72;90;79;84;234;420;418;325;217;260;327;331;406;570;847;935;657;653;1070;1350;1854;3622;3047;3047;1979;1977;2477;3405;3921;4208;3357;2950;5305;4452;4601;6535;9914;10959;9987;11445;12243;9898;9167;10642;11692;20729;19014;14846;16796;25727;24136;22518;25314;30601;29043;25350
-11;'040;Austria;1650;Other fibreboard;5916;Export quantity;m3;10400;7000;8500;12000;8800;34000;32000;31600;39200;34800;42000;45600;44000;38800;27200;32400;36700;37300;43300;31800;26100;26500;13300;9700;11000;7800;8000;10000;9300;17400;1000;9000;7000;12000;10000;20000;8000;38800;40000;69000;93000;69000;66000;72000;40000;11000;5500;4200;3710;2411;1923;1370;9205;11890;9085;4577;7598;5339;4664;5340;4810;4246;6245
-11;'040;Austria;1650;Other fibreboard;5922;Export value;1000 USD;1157;776;916;1296;987;950;862;830;1035;1035;1341;1621;2010;2217;1500;1799;4599;4921;5649;6730;4800;3544;2036;1643;1978;2308;2400;2400;1350;3062;862;7936;5932;9396;9149;18000;9722;11633;9465;10426;16290;14755;15564;19466;11252;3290;2929;2262;1834;1316;1687;1173;3962;3747;1916;1406;1877.85;1458;1469;1657;2046;2282;2375
-11;'040;Austria;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;49700;48400;56900;63000;65100;66000;70000;64000;75000;82000;82000;84000;87000;83000;62000;71000;69000;69000;76000;81000;64000;64000;66000;70000;68000;69000;71000;77000;76000;83000;81000;74000;78000;94000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;600;400;400;1700;500;500;1100;2000;1900;2500;2400;2400;2900;1900;2100;4000;6300;4800;4500;3900;4900;5200;6000;5300;4000;4500;5000;6000;4000;13000;4000;22724;27000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;54;35;45;120;52;55;102;216;290;399;386;378;505;497;520;973;1573;1253;1407;1592;1821;1758;1945;1537;1246;1812;2000;2400;1800;5644;2000;9547;11249;13752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;8600;8200;13200;16600;17100;20744;25483;25483;38540;39277;33801;31485;32748;34644;21587;24430;23100;25100;40700;39700;31100;32800;35700;37300;39500;41000;40000;48000;46900;53000;54000;44321;30941;42000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;865;976;1653;2115;1807;2116;2539;2640;4467;4467;5036;5415;7651;9645;5700;5827;6162;7616;14094;17520;12313;12413;12550;11663;12027;16935;16600;18000;21416;24780;25000;25287;17919;23405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1879;Total fibre furnish;5510;Production;t;684500;657000;686500;728400;758700;771200;813500;870200;967900;952100;976400;1006700;1038700;1068000;1066000;1139000;1257000;1254000;1418000;1424000;1415000;1398000;1390000;1510000;1576000;1672000;1704000;1865000;1963000;1652000;1676000;1676000;1579000;2383000;2398000;2328000;2504000;2655000;2824000;2849000;2767000;2767000;2903000;3014434;3097000;3162000;3238550;3115471;3079445;3288336;3149915;3186626;3014512;2970605;2869831;3132574;3011277;3093819;3036952;3161019;3313591;3290032;3032196
-11;'040;Austria;1879;Total fibre furnish;5610;Import quantity;t;600;900;1300;8300;3300;4200;2400;60400;67800;170000;163600;233900;301500;374100;261200;317300;341200;357500;376000;497100;536800;574500;612100;652900;800800;832300;869200;895000;968200;968500;967700;1058137;945239;1060000;1034500;1127100;1181000;1270100;1234000;1483000;1370000;1478000;1458000;1726000;1740047;1899000;1981000;1961196;1762750;1902286;2027101;2001457;1882308;1862330;1945131;1994415;1929046;2118925;2082296;2045755;2199661;1951237;1708322
-11;'040;Austria;1879;Total fibre furnish;5622;Import value;1000 USD;49;75;120;744;419;422;283;8251;9994;17896;19276;29081;47006;95242;72191;79451;84492;71520;92142;142629;139765;131738;122986;157411;168015;185374;253544;260138;361755;303646;322910;319378;236998;342307;348562;343265;323841;332127;330937;470966;339736;389036;420698;548983;541266;623261;687156;778531;505526;749510;852693;741211;718537;732786;702913;670525;706340.59;790194;659447;516621;803674;819987;504685
-11;'040;Austria;1879;Total fibre furnish;5910;Export quantity;t;4700;5100;4600;3900;2900;1900;1600;145200;146600;144500;127300;126300;109500;124400;130400;177400;159600;224000;272800;287100;318300;296000;295600;327100;340900;380400;348800;326300;335700;319100;262200;274045;271762;308000;305800;370200;374700;374100;530000;502000;536000;548350;496000;486000;483002;529200;746011;628701;717029;750941;761818;707754;648381;539790;539645;671648;618664;658620;607317;537194;504219;531099;602537
-11;'040;Austria;1879;Total fibre furnish;5922;Export value;1000 USD;372;401;359;391;340;271;229;18158;19909;23202;20887;19301;20365;47511;43973;56952;49112;60637;106159;138938;130339;105152;93780;107481;107051;154780;171555;156271;193995;135586;110251;108159;83387;128816;128461;143305;142182;138909;184053;216634;178627;170516;180983;180870;170130;186632;287851;272340;221234;349051;393671;315250;277140;207273;162661;233233;246936.06;325579;267114;211678;259766;299425;274281
-11;'040;Austria;1878;Pulp for paper;5510;Production;t;609500;578000;600500;629400;650700;656200;680500;728200;795900;838100;833400;848700;880700;925000;875000;926000;1014000;1035000;1147000;1161000;1128000;1102000;1082000;1142000;1200000;1258000;1244000;1359000;1404000;1356000;1380000;1380000;1346000;1481000;1466000;1396000;1476000;1492000;1521000;1580000;1536000;1558000;1625000;1698434;1691000;1678000;1725000;1715153;1537569;1702662;1716329;1726855;1555618;1496402;1361520;1654339;1597681;1627511;1628664;1581019;1619591;1558032;1300196
-11;'040;Austria;1878;Pulp for paper;5610;Import quantity;t;600;900;1300;8300;3300;4200;2400;60400;67800;71000;78600;123900;172500;201400;140700;161500;165300;158200;147900;179600;201100;201100;231300;250600;309800;315800;346400;332000;379800;378800;416700;455270;504809;557000;531500;547600;567000;608900;598000;591000;504000;576000;543000;674000;652047;697000;646000;674196;591530;602631;639151;716622;670089;699860;718444;735385;718673;639363;604458;544045;524088;498231;374775
-11;'040;Austria;1878;Pulp for paper;5622;Import value;1000 USD;49;75;120;744;419;422;283;8251;9994;12690;15249;23880;38649;74389;60598;64680;67119;54470;66715;99949;106921;97173;91559;119523;123934;140363;201298;193130;286480;241012;262300;255686;203548;277461;283716;288082;281012;285321;278870;364636;270686;293746;312354;415003;407978;471637;473892;531915;352249;486564;512750;507786;498639;512471;498938;448716;478073.09;533433;436942;323013;417986;460393;296459
-11;'040;Austria;1878;Pulp for paper;5910;Export quantity;t;4700;5100;4600;3900;2900;1900;1600;145200;146600;132500;112300;108300;92500;113200;116500;148200;130000;180600;231700;248400;258100;229900;241100;257600;287600;336100;298700;261300;246800;207400;168200;181233;196538;226000;223800;265900;281700;282300;378000;321000;329000;321350;295000;259000;249002;228200;292011;271701;294819;346657;375755;363378;308416;202470;161555;274074;276948;310604;307278;301076;255445;272610;278917
-11;'040;Austria;1878;Pulp for paper;5922;Export value;1000 USD;372;401;359;391;340;271;229;18158;19909;22347;19917;18164;19088;45957;42886;54474;46075;57275;101277;133010;124072;98663;88324;100912;101416;149145;164419;144355;179649;121630;98951;96568;76497;119602;119247;132194;134402;132075;172468;195169;162386;147885;155158;153124;141557;151327;228850;213558;180988;283308;312764;261259;226727;153573;109792;171432;188404.63;264900;221498;179802;202830;238256;227626
-11;'040;Austria;1875;Wood pulp;5510;Production;t;688900;658600;684400;720800;742200;744500;766500;818100;891500;933300;929800;939400;983400;1035000;976000;1047000;1134000;1151000;1266000;1281000;1255000;1228000;1208000;1268000;1325000;1384000;1371000;1493000;1541000;1498000;1521000;1527000;1492000;1634000;1619000;1550000;1629000;1650000;1688000;1760000;1728000;1754000;1823000;1934354;1932000;1928000;1989000;1988946;1817083;1984491;2005465;2026910;1987355;1943782;1812471;2116306;2056089;2083266;2090269;2022186;2004481;1977160;1733435
-11;'040;Austria;1875;Wood pulp;5610;Import quantity;t;600;900;1300;4900;500;8400;6600;63400;70700;75700;85600;124200;177600;208100;146100;168907;174194;152700;140400;174600;196900;197900;228500;247200;305800;313800;344400;330000;372500;373100;411000;458007;508948;559000;533500;544200;562300;612800;603000;594000;509000;583000;558000;673000;660047;722000;671000;696406;608790;615037;636607;721989;697138;796220;827526;821544;752163;670704;627199;577846;578391;559363;433163
-11;'040;Austria;1875;Wood pulp;5622;Import value;1000 USD;49;75;120;344;52;1611;1476;9430;11031;14123;17377;24718;40506;77070;63202;69259;72634;52071;62769;96115;103763;95036;89584;116887;120565;137733;198668;190500;281761;236214;257502;258182;205820;277549;283804;282746;276536;289579;284262;365944;271736;289890;315146;398623;396453;470480;479199;540270;358722;500193;526244;520331;522715;597547;595861;518841;497781.49;551387;445548;332560;460084;523935;357923
-11;'040;Austria;1875;Wood pulp;5910;Export quantity;t;4700;5100;4600;3800;2700;1700;1400;145000;146400;132300;112100;108100;92300;112900;116300;147900;129500;180100;230900;248000;257500;229600;240700;257100;286700;335000;297600;260200;246300;206400;167200;189607;205776;235000;232800;273500;289700;290000;385000;332000;345000;323000;295000;258000;234002;221698;284011;269621;300179;353240;392808;376510;435880;347710;308805;418365;423813;460971;450128;441865;321448;398703;403052
-11;'040;Austria;1875;Wood pulp;5922;Export value;1000 USD;372;401;359;306;213;140;93;18056;19815;22194;19758;18035;18959;45830;42628;54072;45442;56591;100090;132365;123182;98335;87919;100465;100645;147832;163106;143042;178659;119621;96942;100728;80515;124340;123985;135186;137418;134482;174586;200743;169925;148343;153914;151379;130549;145322;220801;215507;183179;289643;331688;274000;336053;277170;216696;280764;298494.08;375962;325654;271657;248655;315778;352890
-11;'040;Austria;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328581;304398;309391;280145;314049;254362;113181
-11;'040;Austria;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55609;47519;50610;43383;10176;7288;4494
-11;'040;Austria;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28152.72;29322;30649;22786;5494;4723;2639
-11;'040;Austria;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;64;44;74;45;1
-11;'040;Austria;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.1;1;63;34;54;21;3
-11;'040;Austria;1654;Mechanical wood pulp (1961-2016);5510;Production;t;180100;172700;174100;179900;185900;186100;173000;180600;215300;224000;215600;207500;206200;210000;195000;195000;208000;196000;221000;221000;223000;210000;192000;180000;197000;183000;192000;276000;299000;352000;371000;376000;375000;399000;390000;344000;378000;376000;369000;390000;376000;373000;417000;425056;414000;388000;392000;379793;302790;358525;380102;389790;364518;372470;357974;374896;;;;;;;
-11;'040;Austria;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;600;900;1300;4900;500;2000;200;2800;4500;3600;800;700;700;300;700;2500;1800;1900;1900;3700;300;500;1500;10000;11700;11700;5000;7000;6600;1900;3000;6834;13312;21000;18000;13000;4700;3800;3000;4000;4000;8000;6000;4000;4000;5000;4000;4600;7810;15358;10240;11268;26242;23580;18839;16732;;;;;;;
-11;'040;Austria;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;49;75;120;344;52;160;25;237;492;364;97;97;111;85;163;211;247;456;637;1493;156;180;400;3157;4667;4102;1800;2500;2995;898;1500;2552;3962;7546;6700;4745;1214;939;703;1404;1003;2298;1888;1434;1172;1551;1408;2100;3622;8638;5084;5332;15168;12682;7780;6054;;;;;;;
-11;'040;Austria;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;4700;5100;4600;3800;2700;1700;1400;1900;2100;1400;1100;1100;1100;1200;500;400;300;100;100;100;3500;2500;200;200;200;200;200;200;200;200;200;81;1768;0;0;0;2200;700;1000;0;0;0;0;0;0;0;0;20;398;1286;766;642;544;20;9;29;;;;;;;
-11;'040;Austria;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;372;401;359;306;213;140;93;129;165;113;88;101;114;143;98;81;81;17;17;50;1106;717;42;42;42;42;42;42;42;42;42;37;705;0;0;0;597;264;392;195;0;0;78;15;0;0;0;13;597;178;713;603;433;37;19;61;;;;;;;
-11;'040;Austria;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;1100;2100;3000;3700;;;;;;;;;;49000;49000;51000;54000;48000;43000;52000;45000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;0;0;0;0;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-11;'040;Austria;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20525;22201;27000;35000;35200;20800;9600;8000;5000;4000;5000;9000;15000;18000;70000;63000;60500;12210;7018;11619;34792;20132;33200;32466;31836;;;;;;;
-11;'040;Austria;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9298;7470;11495;18486;15041;8054;3658;3142;2850;1677;2089;4708;7961;10367;38731;40642;42911;6716;4966;7852;21341;13738;21622;19790;17876;;;;;;;
-11;'040;Austria;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;25;0;0;0;0;0;0;0;0;0;0;0;2;0;8;1;1;0;0;1;0;90;0;0;;;;;;;
-11;'040;Austria;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;9;0;0;0;0;0;0;0;0;0;11;0;1;0;5;1;1;0;4;1;1;72;0;0;;;;;;;
-11;'040;Austria;1656;Chemical wood pulp;5510;Production;t;428300;403200;423400;445800;464800;470100;507500;547600;580600;614100;617800;641200;674500;666000;631000;680000;752000;791000;883000;888000;860000;853000;851000;923000;964000;1036000;1013000;1044000;1066000;965000;969000;964000;931000;1042000;1075000;1051000;1097000;1116000;1134000;1190000;1160000;1185000;1208000;1273378;1277000;1290000;1333000;1335360;1234779;1344137;1336227;1337065;1191100;1123932;1003546;1279443;1269100;1323113;1319273;1300874;1305542;1303670;1187015
-11;'040;Austria;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;53400;60000;63000;74000;116500;165000;196200;137400;155100;161000;150800;138500;170900;196600;197400;227000;237200;294100;302100;339400;323000;365900;371200;408000;422104;462866;504000;473500;488400;529400;584400;577000;572000;487000;548000;517000;625000;615047;606000;565000;596006;551160;548287;568983;611180;595649;631690;652089;676511;652216;581581;530763;475892;487516;465158;342183
-11;'040;Austria;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;7538;9090;11642;14549;22759;37222;72090;59206;62816;65844;51615;62132;94622;103607;94856;89184;113730;115898;133631;196868;188000;278766;235316;256002;238000;185240;252892;253002;257314;261229;269965;266164;349051;254866;265553;284514;359561;359191;389731;394662;449285;310012;434535;450710;425312;436172;456796;450406;407744;431587.94;485357;379231;271250;381023;424435;270352
-11;'040;Austria;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;143100;144300;130900;111000;107000;91200;111700;115800;147500;129200;180000;230800;247900;254000;227100;240500;256900;286500;334800;297400;260000;246100;206200;167000;175194;193335;224000;221800;264500;278000;280200;375000;320000;328000;321000;294000;258000;233000;221200;279003;252800;292980;344638;374395;362243;307027;201850;161002;273604;276332;309891;306225;299988;254452;271277;277803
-11;'040;Austria;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;17927;19650;22081;19670;17934;18845;45687;42530;53991;45361;56574;100073;132315;122076;97618;87877;100423;100603;147790;163064;143000;178617;119579;96900;91173;72934;116355;116000;128631;131442;129155;169319;193338;160026;147094;153095;151062;130104;144923;215801;195287;176592;280925;310239;258918;223881;151829;108260;170061;186317.7;262449;218346;176284;199544;233584;222441
-11;'040;Austria;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;125200;120800;119600;130100;143300;150700;159300;156400;156700;165300;208000;200000;210000;241000;264000;295000;292000;297000;294000;284000;316000;319000;331000;338000;358000;361000;343000;358000;356000;362000;406000;417000;395000;421000;412000;431000;465000;451000;453000;464000;495941;491000;492000;506000;503953;485371;519802;502562;524291;523216;551603;558532;585752;580997;605775;604021;595602;597731;596874;543464
-11;'040;Austria;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;2300;3200;2400;1600;400;1200;1000;2700;1400;10800;6400;7800;12600;10700;9600;1700;9900;14300;10800;6200;6000;4400;1500;1500;599;582;4000;4000;500;1800;4500;2000;1000;1000;1000;1000;2000;1000;1000;2000;3900;3490;2500;1425;3684;2531;1900;684;1434;2609;1042;1024;2126;1420;354;1122
-11;'040;Austria;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;337;435;373;331;68;234;414;1024;513;7327;3756;4795;8942;8200;7643;812;7659;10415;7313;2299;2300;1750;652;652;157;207;1404;1404;234;471;1415;802;455;551;417;393;846;518;451;1084;2824;2108;2085;1236;2606;1915;1527;464;933;1672.86;918;698;1138;1284;340;859
-11;'040;Austria;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;26900;26200;23600;23900;25800;18300;10600;16300;17100;20300;43400;60700;51200;47700;38700;41700;40700;37000;35700;39100;34000;35400;29800;29800;28654;17894;29000;29000;33500;34800;35300;45000;40000;37000;40000;37000;49000;50000;37200;45000;46500;49020;56210;51728;51129;62431;60400;48050;58677;41560;45500;45473;48917;22597;34992;26381
-11;'040;Austria;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;2898;3001;3378;3651;3709;3356;3124;5181;5353;5886;11219;22548;22878;18401;13086;11707;13513;12014;12991;17082;15000;18523;13792;13792;13912;6934;12899;12899;17500;16209;16832;19213;20714;18846;18898;19555;26057;26326;21151;29976;32614;27171;37686;39953;35275;43887;41245;28669;33105;25134.05;32170;29762;25869;14157;24639;17642
-11;'040;Austria;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;8100;8900;6700;7500;10100;9500;9600;8700;6300;5000;4000;6000;7000;5000;6000;7000;5000;7000;6000;11000;139000;168000;183000;200000;215000;207000;210000;209000;205000;232000;239000;244000;242000;279000;282000;302000;315000;320000;324000;331059;339000;358000;378000;380071;390212;400081;395336;412043;394087;337709;262585;409320;406003;423313;422081;416191;417691;417092;379770
-11;'040;Austria;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;25500;30400;38500;36200;62900;93900;109100;92500;96900;94000;96500;91100;118500;136200;143800;174700;175500;199500;213900;246700;230800;287600;302700;339500;337071;383133;422000;391500;396100;479000;526300;519000;520000;464000;527000;498000;589000;557000;515000;543000;569500;522680;526380;543186;561223;562329;600320;624254;657763;636237;568114;510673;457526;461880;443731;328318
-11;'040;Austria;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;3733;4734;6959;7230;12277;21025;41892;40357;40186;37481;32636;40342;64051;70971;66905;68683;82426;75391;92580;145761;136100;224191;195720;216406;191016;154936;215511;215621;224391;240257;245385;241027;320471;244467;256313;274333;338239;323829;330828;377799;427692;290893;415363;428299;388729;406449;428904;428371;393537;418849.26;471485;361470;257455;357447;401889;255023
-11;'040;Austria;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;1200;600;600;700;1000;100;300;200;100;100;100;400;1500;800;200;200;2400;95400;124600;126400;111000;117900;135400;96200;125094;152786;135000;132800;143700;170500;173500;262000;226000;251000;250000;238000;177000;169000;175000;206000;182400;216950;226697;230828;285679;230015;139980;112306;214867;230449;253880;251615;240951;223609;223036;240898
-11;'040;Austria;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;155;80;80;125;218;26;127;86;20;23;23;212;849;444;115;78;994;34858;57713;72295;63600;93675;84651;61972;65975;57800;72744;72389;70331;86513;84633;122998;143920;124954;116162;125625;108311;96893;118578;165733;145371;133311;196764;201681;204128;167800;109240;79132;136813;157631.14;220890;182454;144688;178779;196649;196357
-11;'040;Austria;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282100;294025;293171;289081;290120;289704;263781
-11;'040;Austria;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13370;12425;19066;16240;24216;21073;12743
-11;'040;Austria;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11065.82;12954;17063;12657;22292;22206;14470
-11;'040;Austria;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4323;10511;9137;10120;8246;13249;10524
-11;'040;Austria;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3552.52;9389;6130;5727;6608;12296;8442
-11;'040;Austria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;102500;95500;99300;102700;95200;76200;92800;100200;106900;29000;29000;30000;33000;40000;34000;41000;39000;32000;60000;52000;25000;49000;54000;49000;50000;47000;46000;46000;49000;39000;39000;41000;37000;31000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-11;'040;Austria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;3400;7200;3600;3900;5700;18700;21500;16200;13000;8900;5300;3900;4500;6500;6400;7000;6300;6000;4300;3300;3200;5500;4900;4900;2512;6339;3000;3000;4800;2100;1400;1000;0;0;0;0;0;47;0;0;6;0;563;2138;1447;0;0;0;0;;;;;;;
-11;'040;Austria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;365;962;755;710;1021;3954;7122;6154;4475;2952;1532;1458;2286;3339;2743;2767;2721;2176;1762;1654;1600;3427;2418;2418;1211;1677;1404;1404;1689;823;615;467;2;0;8;0;0;22;0;0;7;0;415;1744;1087;0;0;0;0;;;;;;;
-11;'040;Austria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;26000;16900;15300;15100;9100;2300;2800;2000;5100;4000;3900;3800;5400;5400;5400;3200;3200;2500;4100;3400;3000;2300;2300;2300;625;150;0;0;0;100;200;0;0;0;0;0;0;0;0;3;0;0;0;0;0;1400;0;22;0;;;;;;;
-11;'040;Austria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;2869;1865;1994;2290;1267;298;598;353;689;400;504;474;829;887;1324;572;520;435;1435;1077;1000;219;639;639;239;60;0;0;0;35;60;66;26;0;0;0;0;0;0;3;0;0;0;0;0;1043;0;17;0;;;;;;;
-11;'040;Austria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;320600;233400;246100;271400;294100;324600;369100;359000;375600;396000;424000;398000;434000;471000;482000;548000;548000;519000;520000;501000;544000;481000;488000;438000;437000;440000;368000;355000;353000;315000;365000;380000;371000;397000;394000;421000;423000;394000;412000;420000;446378;447000;440000;449000;451336;359196;424254;438329;400731;273797;234620;182429;284371;;;;;;;
-11;'040;Austria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;22200;19200;18500;32300;47500;51200;64600;26000;43800;47300;42600;35700;35300;43200;37600;43600;45500;74300;73100;83200;83000;68400;62100;62100;81922;72812;75000;75000;87000;46500;52200;55000;51000;22000;20000;18000;34000;57000;90000;20000;22600;24990;18844;22234;44826;30789;29470;27151;17314;;;;;;;
-11;'040;Austria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3103;2959;3555;6278;9393;12009;22662;11671;17642;18084;13691;15537;19343;21097;17565;16922;20924;27916;31976;47154;48000;49398;36526;36526;45616;28420;34573;34573;31000;19678;22550;23868;28123;9848;8815;9788;20476;34822;58452;15779;18762;17011;16672;19431;32890;27808;26365;21571;13274;;;;;;;
-11;'040;Austria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;89000;100600;91400;71300;71100;70500;98000;97300;125200;104800;132600;165900;189800;200100;182800;195400;210600;151600;170400;128500;112000;90500;38700;38700;20821;22505;60000;60000;87300;72600;71200;68000;54000;40000;31000;19000;32000;14000;9000;28000;23900;27010;61731;91839;25435;13181;1470;624;60;;;;;;;
-11;'040;Austria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12005;14704;16629;13604;12740;15165;41838;36910;47929;39052;44828;76839;107759;102344;83093;75520;85396;53296;75651;72610;63400;66200;20497;20497;11047;8140;30712;30712;40800;28685;27630;27042;28678;16226;12034;7915;16694;6885;5194;20089;17302;16110;46475;68605;19515;11151;1344;442;143;;;;;;;
-11;'040;Austria;1667;Dissolving wood pulp;5510;Production;t;79400;80600;83900;91400;91500;88300;86000;89900;95600;95200;96400;90700;102700;110000;101000;121000;120000;116000;119000;120000;127000;126000;126000;126000;125000;126000;127000;134000;137000;142000;142000;148000;147000;154000;154000;155000;154000;158000;167000;180000;192000;196000;198000;235920;241000;250000;264000;273793;279514;281829;289136;300055;431737;447380;450951;461967;458408;455755;461605;441167;384890;419128;433239
-11;'040;Austria;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;6400;6400;7200;6200;9100;10800;7000;11900;11600;8000;11307;11394;;;;;;;;;;;;;;;8544;10569;7000;7000;7600;7400;15000;15000;13000;14000;22000;26000;29000;23000;41000;39000;35300;37610;44374;45765;64749;55115;107750;124132;96465;44338;41604;45826;58571;80699;86917;86486
-11;'040;Austria;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;1451;1451;1655;1449;2117;2731;1862;3173;4895;3833;6232;6543;;;;;;;;;;;;;;;8332;9148;5616;5616;5646;6039;15017;14253;12639;14190;19950;24036;29667;25723;40467;42487;45974;38372;52054;62598;68346;57637;106447;117885;87167;38040.83;36708;35668;38524;73567;94777;84932
-11;'040;Austria;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14211;10648;11000;11000;9000;9500;9100;9000;12000;17000;2000;1000;0;1000;498;5000;16800;6800;7316;17647;13624;128309;145750;147794;144732;147473;151079;143839;141833;66922;127381;125248
-11;'040;Austria;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9453;6867;7985;7985;6555;5379;5063;4875;7210;9899;1249;730;302;444;399;4995;20206;5989;8540;20732;14478;111738;125232;108417;110642;112161.29;113512;107245;95339;49057;82173;130446
-11;'040;Austria;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-11;'040;Austria;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3400;2800;2200;2200;4200;3300;4400;3800;6700;6800;4900;2600;3900;2500;5500;7500;5000;4200;3200;2800;3400;4000;2000;2000;2000;7300;5700;5700;5807;6430;5000;5000;11000;12100;11100;10000;10000;9000;15000;11000;30000;15000;16000;14000;13090;20350;31968;48309;59382;28066;11390;15050;10306;10848;10263;23085;24770;26396;25785;28098
-11;'040;Austria;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;400;367;262;258;476;412;684;603;1024;1316;2214;1229;1653;1028;2399;3946;3834;3158;2137;1975;2636;3369;2630;2630;2630;4719;4798;4798;5836;6876;5528;5528;10982;10515;10759;8861;11331;13140;23806;21244;46047;37248;41624;37180;37619;31899;38425;49104;55801;33561;21371;20962;17042;18332.43;18754;27062;28977;31469;31235;23468
-11;'040;Austria;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;100;200;200;200;200;200;200;200;200;200;300;200;300;500;500;800;400;600;300;400;500;900;1100;1100;1100;500;1000;1000;5837;1410;2000;2000;1400;1500;1400;2000;1000;1000;350;1000;1000;16000;7000;13000;18880;1440;733;594;492;845;510;544;441;608;712;989;1044;919;1288;1113
-11;'040;Austria;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;85;127;131;136;102;94;153;159;129;129;127;258;402;633;684;1187;645;890;328;405;447;771;1313;1313;1313;990;2009;2009;5293;2849;3247;3247;3563;2363;2656;2757;1636;2360;791;1974;2047;11452;6404;13044;18257;3798;2205;1808;1737;2412;1635;1513;1310;2071.83;2450;3089;3484;3232;4651;5182
-11;'040;Austria;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1000;0;1000;1000;0;0;173;411;1000;1060;1100;2440;14642;22313;9578;6700;11932;11666;6418;5969;5655;8096;9715;10766;5825
-11;'040;Austria;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;312;151;322;379;119;56;83;236;507;762;746;720;9805;14678;5215;2890;6983;6820;2143.84;1952;1805;3239;4334;4833;2302
-11;'040;Austria;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2000;2000;2000;2000;2000;3000;3000;4000;5000;5470;7100;9055;7741;6583;7046;7120;18077;7709;7083;7638;7215;7708;9954;8540;6574
-11;'040;Austria;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;798;710;847;1064;1445;1892;1892;2983;3466;4549;5773;6941;6576;5248;5771;5628;11362;5058;4706.08;5327;4893;5327;7747;7339;6402
-11;'040;Austria;1669;Recovered paper;5510;Production;t;75000;79000;86000;99000;108000;115000;133000;142000;172000;114000;143000;158000;158000;143000;191000;213000;243000;219000;271000;263000;287000;296000;308000;368000;376000;414000;460000;506000;559000;296000;296000;296000;233000;902000;932000;932000;1028000;1163000;1303000;1269000;1231000;1209000;1278000;1316000;1406000;1484000;1513550;1400318;1541876;1585674;1433586;1459771;1458894;1474203;1508311;1478235;1413596;1466308;1408288;1580000;1694000;1732000;1732000
-11;'040;Austria;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;99000;85000;110000;129000;172700;120500;155800;175900;199300;228100;317500;335700;373400;380800;402300;491000;516500;522800;563000;588400;589700;551000;602867;440430;503000;503000;579500;614000;661200;636000;892000;866000;902000;915000;1052000;1088000;1202000;1335000;1287000;1171220;1299655;1387950;1284835;1212219;1162470;1226687;1259030;1210373;1479562;1477838;1501710;1675573;1453006;1333547
-11;'040;Austria;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;5206;4027;5201;8357;20853;11593;14771;17373;17050;25427;42680;32844;34565;31427;37888;44081;45011;52246;67008;75275;62634;60610;63692;33450;64846;64846;55183;42829;46806;52067;106330;69050;95290;108344;133980;133288;151624;213264;246616;153277;262946;339943;233425;219898;220315;203975;221809;228267.5;256761;222505;193608;385688;359594;208226
-11;'040;Austria;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;12000;15000;18000;17000;11200;13900;29200;29600;43400;41100;38700;60200;66100;54500;69500;53300;44300;50100;65000;88900;111700;94000;92812;75224;82000;82000;104300;93000;91800;152000;181000;207000;227000;201000;227000;234000;301000;454000;357000;422210;404284;386063;344376;339965;337320;378090;397574;341716;348016;300039;236118;248774;258489;323620
-11;'040;Austria;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;855;970;1137;1277;1554;1087;2478;3037;3362;4882;5928;6267;6489;5456;6569;5635;5635;7136;11916;14346;13956;11300;11591;6890;9214;9214;11111;7780;6834;11585;21465;16241;22631;25825;27746;28573;35305;59001;58782;40246;65743;80907;53991;50413;53700;52869;61801;58531.43;60679;45616;31876;56936;61169;46655
-11;'040;Austria;1876;Paper and paperboard;5510;Production;t;362000;357000;378000;415000;452000;738000;761000;841000;943000;1017000;1074000;1193000;1327000;1414000;1254000;1396000;1425000;1434000;1565000;1616000;1671000;1708000;1789000;1922000;2127000;2183000;2396000;2650000;2754000;2932000;3090000;3252000;3301000;3603000;3599000;3653000;3816000;4009000;4142000;4386000;4250000;4419000;4565000;4851962;4950000;5213000;5199000;5152635;4605542;5008934;4901164;5003847;4836772;4864920;4964513;4995014;4860416;5055119;4984712;4718533;5065264;4633359;3900016
-11;'040;Austria;1876;Paper and paperboard;5610;Import quantity;t;5700;6700;7200;7700;9500;56500;66800;69400;95900;112500;131700;131200;149200;151600;118700;171800;166700;164700;197000;214200;237200;235500;272000;308000;328700;341800;359800;436000;614900;536400;635000;662650;624103;702000;854100;872900;892000;1023200;1251000;1397000;1186000;1176000;1226000;1288000;1240000;1291000;1328000;1283500;1145170;1363426;1366180;1399052;1435977;1402380;1341833;1315361;1409217;1327400;1269425;1274743;1296014;1230531;1104391
-11;'040;Austria;1876;Paper and paperboard;5622;Import value;1000 USD;2947;3484;3715;4197;5163;17048;19812;21738;27439;31962;37686;48826;75951;101199;89595;113528;121264;133172;180198;211412;192355;192004;207396;203351;230325;317159;397095;474000;467161;472966;567000;682128;577098;665577;816000;947451;809421;927262;1026106;1139971;969725;897255;1086487;1192134;1131587;1208400;1391541;1457973;1187952;1307883;1463308;1327161;1390708;1388809;1122763;1087554;1171742.81;1247376;1130705;1114435;1229479;1396924;1180131
-11;'040;Austria;1876;Paper and paperboard;5910;Export quantity;t;205000;197800;210800;231500;254500;355900;384400;418100;487100;522100;548500;606600;701800;740600;656600;784600;788800;801900;878000;886000;995100;978100;1158400;1080600;1425700;1531300;1687000;2072000;1915800;2185000;2623000;2513263;2375084;2665000;3000700;3152000;2905100;3047100;3256922;3450000;3087000;3694000;3871530;4128000;3922000;4113000;4268062;4278860;3799348;4072202;3986697;4126916;4026212;4127280;4285365;4249965;4149889;4232831;4170159;3882100;4027594;3730397;3154610
-11;'040;Austria;1876;Paper and paperboard;5922;Export value;1000 USD;38718;36124;37814;42532;49836;73650;79792;87163;97181;115716;128324;149200;215871;362218;291197;354802;368920;407205;527281;609014;589167;552506;544564;556248;652454;964323;1201878;1454300;1498706;1540114;1853000;1957445;1536336;1813947;2299429;2433000;2028750;2174163;2188629;2302593;2039931;2503051;2933361;3262974;3030679;3319862;3793020;4130090;3231007;3399841;3726964;3468882;3450557;3745328;3216882;3122844;3147990.29;3369953;3092032;2734674;3340874;4075535;2898394
-11;'040;Austria;2042;Graphic papers;5510;Production;t;322000;317000;337000;370000;403000;413000;416000;453000;522000;564000;599000;662000;716000;757000;670000;755000;765000;757000;795000;794000;824000;843000;897000;961000;1091000;1107000;1234000;1456000;1523000;1710000;1844000;1941000;1961000;2131000;2144000;2148000;2223000;2378000;2461000;2570000;2464000;2618000;2734000;2927893;2925000;3044000;3009000;3068130;2547697;2773798;2705086;2813385;2712645;2727130;2731819;2739164;2552080;2398260;2280775;1972050;2247590;1869270;1261298
-11;'040;Austria;2042;Graphic papers;5610;Import quantity;t;4900;5600;5800;5900;7400;10400;11700;15900;6900;8500;9700;11200;18200;15600;16700;24800;20500;28000;52600;58200;73200;85100;113300;147900;135700;142000;168100;210000;386200;279400;306000;352650;363103;408000;501100;539000;513600;623800;790000;868000;692000;633000;740000;718000;674000;701000;727000;688500;618990;653033;615424;619438;558237;524450;538413;537870;561522;519372;466406;469314;415470;387778;330251
-11;'040;Austria;2042;Graphic papers;5622;Import value;1000 USD;2442;2877;2965;3299;4118;5628;4942;5952;2476;2839;3331;4485;7362;10251;10550;14156;13344;18633;42623;53028;53360;61242;72665;85601;85577;117784;164435;199000;224748;200966;219000;342383;294868;348627;430000;552451;416433;518568;604639;682121;528832;489138;647273;653104;592736;626628;703844;736040;633280;622422;651035;587182;536750;499194;418398;425424;439981.55;450201;402699;398561;357730;443104;370824
-11;'040;Austria;2042;Graphic papers;5910;Export quantity;t;204100;196900;209900;230600;253500;252900;260400;269100;321100;355100;367500;411600;468800;498600;440600;534400;556600;548900;585700;601200;659400;654400;733500;789900;1023800;1066900;1205100;1310000;1456000;1185000;1534000;1772263;1744084;1971000;1921200;2135000;2086100;2234800;2394000;2534000;2155000;2681000;2901000;3078000;2893000;3039000;2981000;3014420;2551890;2719370;2699337;2833194;2757224;2777730;2816982;2774374;2609741;2375175;2251047;1849435;1911124;1697258;1106781
-11;'040;Austria;2042;Graphic papers;5922;Export value;1000 USD;38524;35930;37623;42335;49613;50493;53001;56896;62958;76716;85239;100918;145359;249147;195210;245240;267495;291615;372010;418166;403022;380610;380851;414616;491785;712169;931267;1026000;1184320;839340;1090000;1474877;1208899;1432151;1449429;1633000;1562622;1705068;1721915;1800599;1536364;1987895;2358595;2610792;2409330;2616110;2815436;3131050;2451555;2393646;2561720;2436649;2369369;2350823;1947404;1886384;1810470.92;1858570;1721996;1417903;1603888;2065452;1318564
-11;'040;Austria;1671;Newsprint;5510;Production;t;99000;102000;112000;124000;121000;131000;123000;134000;162000;170000;170000;160000;159000;155000;147000;154000;171000;161000;171000;176000;178000;182000;176000;199000;241000;234000;245000;252000;255000;333000;397000;395000;387000;403000;380000;361000;397000;376000;394000;384000;383000;365000;392000;421697;416000;424000;418000;419792;299205;406011;420797;390940;397964;400090;340778;401851;324403;304848;289911;230880;264900;208451;140693
-11;'040;Austria;1671;Newsprint;5610;Import quantity;t;;;;;;;;2100;100;400;400;500;3300;500;4600;9100;3300;2400;5300;1500;7900;9100;12700;21200;6300;3400;2500;19000;34300;38400;41000;61624;73635;69000;74100;66000;106000;131400;177000;183000;156000;107000;98000;95000;104000;115000;148000;109000;108980;111039;107058;95345;100431;88830;85234;80099;89037;89714;81953;69760;77209;81206;86942
-11;'040;Austria;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;299;17;48;80;63;663;149;1813;3403;1486;1129;2665;690;3557;3931;4916;6968;2107;1494;1383;11000;17937;21604;23000;34331;34999;33696;35000;59151;63474;79547;98780;99740;91973;57329;58477;56466;64238;77666;110688;83477;76768;65743;79627;64340;65741;58812;42926;40063;45274.28;53210;48589;35767;39991;66972;66289
-11;'040;Austria;1671;Newsprint;5910;Export quantity;t;52000;51000;58000;64500;60200;64200;56200;48500;67400;67000;53300;48700;39600;36300;30800;28000;29500;22500;25200;39100;37500;41000;46000;700;133000;126000;146000;88000;155000;227000;287000;103045;26064;6000;63200;257000;228600;188900;213000;268000;240000;220000;250000;285000;286000;272000;160000;243060;199600;274435;293199;281902;279734;277890;299559;275781;270787;279342;259417;250861;305872;234523;54290
-11;'040;Austria;1671;Newsprint;5922;Export value;1000 USD;6924;6858;7791;8728;8159;8696;7887;6750;8910;9383;8410;8007;7555;10308;10349;9950;11878;10801;12584;17105;18182;18455;18469;246;5300;69300;87000;52000;92000;140000;180000;59669;12691;3861;49429;140000;117846;108345;116038;126440;131778;113614;133699;157633;165076;174250;109495;181235;145631;159645;203893;172930;171791;174339;142277;131753;131049.5;157066;147465;122225;148338;200318;42109
-11;'040;Austria;1674;Printing and writing papers;5510;Production;t;223000;215000;225000;246000;282000;282000;293000;319000;360000;394000;429000;502000;557000;602000;523000;601000;594000;596000;624000;618000;646000;661000;721000;762000;850000;873000;989000;1204000;1268000;1377000;1447000;1546000;1574000;1728000;1764000;1787000;1826000;2002000;2067000;2186000;2081000;2253000;2342000;2506196;2509000;2620000;2591000;2648338;2248492;2367787;2284289;2422445;2314681;2327040;2391041;2337313;2227677;2093412;1990864;1741170;1982690;1660819;1120605
-11;'040;Austria;1674;Printing and writing papers;5610;Import quantity;t;4900;5600;5800;5900;7400;10400;11700;13800;6800;8100;9300;10700;14900;15100;12100;15700;17200;25600;47300;56700;65300;76000;100600;126700;129400;138600;165600;191000;351900;241000;265000;291026;289468;339000;427000;473000;407600;492400;613000;685000;536000;526000;642000;623000;570000;586000;579000;579500;510010;541994;508366;524093;457806;435620;453179;457771;472485;429658;384453;399554;338261;306572;243309
-11;'040;Austria;1674;Printing and writing papers;5622;Import value;1000 USD;2442;2877;2965;3299;4118;5628;4942;5653;2459;2791;3251;4422;6699;10102;8737;10753;11858;17504;39958;52338;49803;57311;67749;78633;83470;116290;163052;188000;206811;179362;196000;308052;259869;314931;395000;493300;352959;439021;505859;582381;436859;431809;588796;596638;528498;548962;593156;652563;556512;556679;571408;522842;471009;440382;375472;385361;394707.27;396991;354110;362794;317739;376132;304535
-11;'040;Austria;1674;Printing and writing papers;5910;Export quantity;t;152100;145900;151900;166100;193300;188700;204200;220600;253700;288100;314200;362900;429200;462300;409800;506400;527100;526400;560500;562100;621900;613400;687500;789200;890800;940900;1059100;1222000;1301000;958000;1247000;1669218;1718020;1965000;1858000;1878000;1857500;2045900;2181000;2266000;1915000;2461000;2651000;2793000;2607000;2767000;2821000;2771360;2352290;2444935;2406138;2551292;2477490;2499840;2517423;2498593;2338954;2095833;1991630;1598574;1605252;1462735;1052491
-11;'040;Austria;1674;Printing and writing papers;5922;Export value;1000 USD;31600;29072;29832;33607;41454;41797;45114;50146;54048;67333;76829;92911;137804;238839;184861;235290;255617;280814;359426;401061;384840;362155;362382;414370;486485;642869;844267;974000;1092320;699340;910000;1415208;1196208;1428290;1400000;1493000;1444776;1596723;1605877;1674159;1404586;1874281;2224896;2453159;2244254;2441860;2705941;2949815;2305924;2234001;2357827;2263719;2197578;2176484;1805127;1754631;1679421.42;1701504;1574531;1295678;1455550;1865134;1276455
-11;'040;Austria;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489000;461000;499000;504000;540000;629000;663880;661000;680000;674000;689097;677516;660096;666141;711549;696007;699720;700923;702816;604816;498366;423951;337620;387360;304815;205374
-11;'040;Austria;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62900;71000;62000;68000;53000;78000;75000;76000;75000;70000;81500;79870;86205;71287;99562;63152;47610;53143;53858;73457;69270;52628;43744;55275;52924;39918
-11;'040;Austria;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47917;49253;40337;46456;36063;58319;58899;59774;59959;59118;74365;70478;64786;63115;71675;51933;40456;34731;35126;46113.82;49522;37762;30000;35729;48216;37760
-11;'040;Austria;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483500;500000;474000;477000;514000;616000;639000;614000;646000;647000;654930;658740;630725;630837;689787;672077;677360;596007;625804;465196;286732;279943;234983;218351;216596;202941
-11;'040;Austria;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334652;324070;281792;295939;308663;418700;459569;450501;481479;503537;560834;554475;448271;499483;518836;502269;503529;349742;350838;262201.71;186907;174986;134420;133187;202613;163486
-11;'040;Austria;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375000;393000;406000;409000;428000;424000;445410;443000;469000;426000;446985;448857;443160;444820;469158;423480;425740;426472;427621;398413;374397;356061;283550;325330;256004;172789
-11;'040;Austria;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140400;158000;136000;152000;238000;238000;198000;161000;152000;132000;116000;107080;109017;98481;108009;95869;110520;109397;130729;126381;113870;118543;103869;97888;104810;85172
-11;'040;Austria;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120457;124900;117340;131035;209251;234848;206036;157453;150408;155783;158108;130631;127563;133991;136095;121457;122130;102717;128954;128076.69;129868;134444;114295;114595;145559;120831
-11;'040;Austria;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132300;141000;136000;214000;568000;574000;577000;491000;529000;430000;490970;448940;436798;455467;440920;397971;377290;395894;404420;397936;361767;337530;312315;335162;275751;203860
-11;'040;Austria;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140422;139470;131535;203544;566591;640673;659476;575254;608151;598582;729742;599552;524362;570262;513481;483373;454432;398786;400376;402660.41;410517;383602;338977;397864;462660;336645
-11;'040;Austria;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1138000;1213000;1281000;1168000;1285000;1289000;1396906;1405000;1471000;1491000;1512256;1122119;1264531;1173328;1241738;1195194;1201580;1263646;1206876;1224448;1220649;1210852;1120000;1270000;1100000;742442
-11;'040;Austria;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289100;384000;487000;316000;235000;326000;350000;333000;359000;377000;382000;323060;346772;338598;316522;298785;277490;290639;273184;272647;246518;213282;251941;185098;148838;118219
-11;'040;Austria;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270647;331706;424704;259368;186495;295629;331703;311271;338595;378255;420090;355403;364330;374302;315072;297619;277796;238024;221281;220516.76;217601;181904;218499;167415;182357;145944
-11;'040;Austria;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430100;1540000;1656000;1224000;1379000;1461000;1577000;1502000;1592000;1744000;1625460;1244610;1377412;1319834;1420585;1407442;1445190;1525522;1468369;1475822;1447334;1374157;1051276;1051739;970388;645690
-11;'040;Austria;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121649;1142337;1260832;905103;999027;1165523;1334114;1218499;1352230;1603822;1659239;1151897;1261368;1288082;1231402;1211936;1218523;1056599;1003417;1014559.3;1104080;1015943;822281;924499;1199861;776324
-11;'040;Austria;1675;Other paper and paperboard;5510;Production;t;40000;40000;41000;45000;49000;325000;345000;388000;421000;453000;475000;531000;611000;657000;584000;641000;660000;677000;770000;822000;847000;865000;892000;961000;1036000;1076000;1162000;1194000;1231000;1222000;1246000;1311000;1340000;1472000;1455000;1505000;1593000;1631000;1681000;1816000;1786000;1801000;1831000;1924069;2025000;2169000;2190000;2084505;2057845;2235136;2196078;2190462;2124127;2137790;2232694;2255850;2308336;2656859;2703937;2746483;2817674;2764089;2638718
-11;'040;Austria;1675;Other paper and paperboard;5610;Import quantity;t;800;1100;1400;1800;2100;46100;55100;53500;89000;104000;122000;120000;131000;136000;102000;147000;146200;136700;144400;156000;164000;150400;158700;160100;193000;199800;191700;226000;228700;257000;329000;310000;261000;294000;353000;333900;378400;399400;461000;529000;494000;543000;486000;570000;566000;590000;601000;595000;526180;710393;750756;779614;877740;877930;803420;777491;847695;808028;803019;805429;880544;842753;774140
-11;'040;Austria;1675;Other paper and paperboard;5622;Import value;1000 USD;505;607;750;898;1045;11420;14870;15786;24963;29123;34355;44341;68589;90948;79045;99372;107920;114539;137575;158384;138995;130762;134731;117750;144748;199375;232660;275000;242413;272000;348000;339745;282230;316950;386000;395000;392988;408694;421467;457850;440893;408117;439214;539030;538851;581772;687697;721933;554672;685461;812273;739979;853958;889615;704365;662130;731761.26;797175;728006;715874;871749;953820;809307
-11;'040;Austria;1675;Other paper and paperboard;5910;Export quantity;t;900;900;900;900;1000;103000;124000;149000;166000;167000;181000;195000;233000;242000;216000;250200;232200;253000;292300;284800;335700;323700;424900;290700;401900;464400;481900;762000;459800;1000000;1089000;741000;631000;694000;1079500;1017000;819000;812300;862922;916000;932000;1013000;970530;1050000;1029000;1074000;1287062;1264440;1247458;1352832;1287360;1293722;1268988;1349550;1468383;1475591;1540148;1857656;1919112;2032665;2116470;2033139;2047829
-11;'040;Austria;1675;Other paper and paperboard;5922;Export value;1000 USD;194;194;191;197;223;23157;26791;30267;34223;39000;43085;48282;70512;113071;95987;109562;101425;115590;155271;190848;186145;171896;163713;141632;160669;252154;270611;428300;314386;700774;763000;482568;327437;381796;850000;800000;466128;469095;466714;501994;503567;515156;574766;652182;621349;703752;977584;999040;779452;1006195;1165244;1032233;1081188;1394505;1269478;1236460;1337519.36;1511383;1370036;1316771;1736986;2010083;1579830
-11;'040;Austria;1676;Household and sanitary papers;5510;Production;t;40000;40000;41000;45000;49000;48000;46000;50000;53000;58000;62000;65000;95000;65000;70000;70000;68000;71000;77000;82000;85000;87000;92000;99000;107000;111000;96000;93000;102000;101000;95000;93000;86000;96000;95000;102000;108000;111000;110000;114000;117000;118000;123000;123270;119000;118000;117000;124945;126121;130060;132497;131130;134227;138000;138000;140000;140000;140000;140000;125000;125000;125000;125000
-11;'040;Austria;1676;Household and sanitary papers;5610;Import quantity;t;800;1100;1400;1800;2100;2100;2100;1500;5000;6000;7000;1000;1000;1000;1000;1000;400;700;700;800;800;700;700;700;800;800;700;1000;4400;5500;6000;14000;15000;17000;49900;5000;5100;5600;10000;4000;5000;5000;5000;5000;6000;7000;12000;13000;13490;14207;15482;15233;17072;16360;18479;18878;18081;14811;18861;13953;9356;11538;14294
-11;'040;Austria;1676;Household and sanitary papers;5622;Import value;1000 USD;505;607;750;898;1045;1045;1045;750;2500;3000;3500;500;500;500;500;909;418;800;800;920;834;780;770;706;868;1190;860;1200;5253;6067;6100;38949;39729;41067;80000;6000;6938;7567;10071;5178;6112;6751;7055;9426;10088;10640;18717;22088;23521;24732;28974;26787;31208;28701;27985;30027;29063.91;27423;32189;22389;16217;24359;29911
-11;'040;Austria;1676;Household and sanitary papers;5910;Export quantity;t;900;900;900;900;1000;1000;1000;1000;1000;1000;3000;7000;15000;10000;10000;8900;8900;9000;11000;10000;12000;11600;15300;10500;14500;16700;4000;6000;5000;4500;5000;24000;15000;24000;57000;3900;3900;3900;11000;5000;8000;19000;21000;5000;5000;6000;14000;8270;8370;9011;7519;6783;5827;5360;6916;11886;9453;11191;8575;7373;5382;5342;3609
-11;'040;Austria;1676;Household and sanitary papers;5922;Export value;1000 USD;194;194;191;197;223;223;223;223;223;400;1300;3300;7500;5800;5900;5279;5892;6000;9000;10000;9700;8900;11000;9500;10777;17000;4171;6300;5713;4710;5000;40408;30624;37469;87000;3900;3923;3963;9147;4195;7128;14770;18779;6827;6588;6775;18203;11690;10164;9503;8309;6875;6053;5984;6573;12593;11392.1;13964;10436;10060;11519;11615;8062
-11;'040;Austria;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449000;1503000;1630000;1595000;1605000;1624000;1710904;1794000;1918000;1927000;1809553;1797971;1958074;1915890;1912464;1846885;1858920;1921331;1941578;1999434;2340474;2393242;2441797;2492708;2474466;2383718
-11;'040;Austria;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313000;362000;433000;395000;434000;447000;534000;539000;570000;574000;561000;495680;668661;697819;733104;846287;847000;772408;743146;813651;772743;769814;774316;857945;817777;750258
-11;'040;Austria;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277585;286924;331490;307345;306986;381456;477998;491894;537562;634896;660517;499334;620894;732193;670652;787076;819394;647139;603414;675510.37;732052;667197;658731;822657;892556;744063
-11;'040;Austria;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771200;812922;875000;886000;952000;949000;1044000;1023000;1067000;1272676;1255740;1238810;1343443;1279602;1286778;1262970;1306190;1423616;1429092;1496658;1842707;1903467;2020212;2105453;2022367;2044059
-11;'040;Austria;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406231;400243;449775;439619;476335;554771;643066;612393;694360;956932;985051;767550;994833;1155121;1024193;1073889;1097114;1008626;984857;1105026.98;1443626;1301350;1240417;1651263;1934023;1569724
-11;'040;Austria;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;255000;269000;307000;330000;252000;261000;271000;308000;476000;450000;507000;533000;560000;647000;691000;711000;725000;760000;819000;883000;917000;1027000;1036000;1075000;1067000;1110000;1172000;1210000;1330000;1315000;1359000;1438000;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;34000;41000;35000;62000;73000;86000;81000;84000;90000;63000;95600;91200;85000;90000;98000;103000;94400;100000;101000;121800;126000;132000;156000;150600;173200;270000;246000;241000;271000;263000;236500;265300;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;7000;9000;7900;14000;17000;20000;23000;31000;35000;25000;38517;39157;40000;43000;47000;42000;39500;41000;37000;45483;62600;103840;123000;119670;123837;235900;198796;235249;254823;246000;245000;169017;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;80000;97000;123000;136000;139000;152000;166000;193000;203000;182000;206300;198400;210000;243000;237000;279000;269000;353000;241600;334000;386000;450000;712000;419600;911100;1024000;667000;615000;669000;984000;923000;771300;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;16000;19000;24000;27000;30000;34000;38000;54000;79000;72000;82072;74020;80000;110000;142000;138500;127900;119288;104000;117979;186000;256025;406000;261099;623867;706000;402160;291702;339325;650000;600000;365360;;;;;;;;;;;;;;;;;;;;;;;;;;
-11;'040;Austria;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;813000;845000;925000;905000;890000;912000;941827;1020000;1070000;1094000;1068116;1046093;1102366;1081720;1047743;972154;978490;1011334;1021991;1052448;1231961;1400000;1440000;1700000;1391000;1441000
-11;'040;Austria;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118700;141000;175000;153000;213000;219000;259000;264000;274000;258000;261000;239480;342297;369423;389885;480490;450570;395668;388555;427632;396873;387689;385520;446690;410159;384258
-11;'040;Austria;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62858;66579;87449;76930;94691;113611;139126;143417;159889;186462;205730;152333;207096;277970;247700;312394;300988;228099;214321;242668.11;258967;216130;198372;301050;316874;226794
-11;'040;Austria;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424300;448000;427000;444000;631000;633000;702000;681000;706000;760359;737180;731880;781490;739583;712122;667057;673130;747598;729987;801754;1107069;1136758;1179398;1243919;1196436;1317525
-11;'040;Austria;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167712;165310;170126;166703;234325;261744;309175;279246;342816;455608;442886;321525;437287;492936;408259;435176;427437;402384;369496;461944.84;700569;559436;509984;793255;910751;703161
-11;'040;Austria;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392000;422000;461000;446000;456000;461000;506293;491000;535000;550000;477214;487214;555252;544520;560986;573116;576850;596220;602503;620456;726289;650761;656368;519375;647926;563757
-11;'040;Austria;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;107000;135000;147000;108000;95000;130000;129000;127000;138000;139500;111270;143938;161433;158587;181486;181600;178968;180178;192459;189719;202482;197793;209680;212032;188907
-11;'040;Austria;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132919;135731;156776;162057;129346;149467;199176;207226;217392;252002;257561;185840;210610;243956;218266;262422;274505;232424;226105;245902.65;268638;268876;267901;297764;318592;302158
-11;'040;Austria;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44600;49000;69000;62000;62000;77000;72000;69000;76000;221194;239080;238300;266174;248601;274758;297391;288490;319583;319263;315059;333828;345377;407581;353220;312340;289106
-11;'040;Austria;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68412;68303;87372;84217;75515;108205;119722;124040;127201;227337;250339;227112;293236;333920;322180;334041;332030;310410;311713;322749.4;357054;346760;378485;392995;430888;356889
-11;'040;Austria;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208000;207000;213000;215000;233000;227000;243500;265000;295000;267000;248028;250742;285583;273922;287786;292805;294710;304612;307822;316994;371057;332474;335339;265349;424627;369466
-11;'040;Austria;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63100;74000;89000;65000;78000;101000;109000;111000;131000;138000;123700;112170;147871;134607;151536;149943;176250;160544;138199;156409;148582;142583;157984;163040;163318;145716
-11;'040;Austria;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64711;67405;73104;55170;68522;102858;120036;121771;138108;168218;168595;138809;179709;185274;180394;182642;213178;164712;144201;167367.15;183193;161834;175824;199306;232024;192579
-11;'040;Austria;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187800;198000;218000;223000;251000;227000;258000;262000;272000;278703;266670;256800;283656;279261;288776;286060;332870;344045;368321;368323;390668;410912;424535;497841;502303;427763
-11;'040;Austria;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135553;133242;140093;142146;161931;176617;205878;200881;215098;263747;280860;209566;254635;316420;283897;293440;327578;286925;295421;311679.41;377300;387436;345445;456159;581039;500371
-11;'040;Austria;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;29000;31000;29000;26000;24000;19284;18000;18000;16000;16195;13922;14873;15728;15949;8810;8870;9165;9262;9536;11167;10007;10090;7984;10913;9495
-11;'040;Austria;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36200;40000;34000;30000;35000;32000;36000;35000;38000;40000;36800;32760;34555;32356;33096;34368;38580;37228;36214;37151;37569;37060;33019;38535;32268;31377
-11;'040;Austria;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17097;17209;14161;13188;14427;15520;19660;19480;22173;28214;28631;22352;23479;24993;24292;29618;30723;21904;18787;19572.46;21254;20357;16634;24537;25066;22532
-11;'040;Austria;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114500;117922;161000;157000;8000;12000;12000;11000;13000;12420;12810;11830;12123;12157;11122;12462;11700;12390;11521;11522;11142;10420;8698;10473;11288;9665
-11;'040;Austria;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34554;33388;52184;46553;4564;8205;8291;8226;9245;10240;10966;9347;9675;11845;9857;11232;10069;8907;8227;8653.32;8703;7718;6503;8854;11345;9303
-11;'040;Austria;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;22000;30000;31000;38000;143000;152000;195000;208000;116000;64000;64000;59000;46000;46000;49000;51000;53000;40000;43000;46000;48000;39000;65000;54000;54000;41000;46000;44000;46000;45000;44000;47000;71000;68000;72000;74000;78000;84000;89895;112000;133000;146000;150007;133753;147002;147691;146868;143015;140870;173363;174272;168902;176385;170695;179686;199966;164623;130000
-11;'040;Austria;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;10000;12000;17000;22000;25000;29000;38000;46000;45000;38000;50400;54600;51000;53700;57200;60200;55300;58000;58400;70400;73000;59000;69000;73700;78300;53000;50000;5000;6000;40100;92400;108000;80800;89000;92000;94000;104000;34000;31000;21000;13000;15000;21000;17010;27525;37455;31277;14381;14570;12533;15467;15963;20474;14344;17160;13243;13438;9588
-11;'040;Austria;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;3375;4825;7136;8463;9123;10855;20841;37089;55448;53545;59946;68345;73739;93775;110464;96161;90482;92961;80044;98397;135585;127960;150800;117490;142096;106000;102000;7252;21060;60000;144000;217033;123542;124472;121182;127436;94380;50703;51606;36869;33570;34084;39328;31817;39835;51106;42540;35674;41520;29241;28689;27186.98;37700;28620;34754;32875;36905;35333
-11;'040;Austria;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;22000;26000;25000;29000;27000;26000;22000;25000;29000;24000;35000;24900;34000;38300;37800;44700;43100;56600;38600;53400;61700;27900;44000;35200;84400;60000;50000;1000;1000;38500;90100;43800;37200;39000;36000;38000;42000;530;1000;1000;1000;386;430;278;378;239;161;191;38000;37851;34613;34037;3758;7070;5080;5635;5430;161
-11;'040;Austria;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;6934;7568;6044;7000;8600;7785;6982;9012;28271;18087;22211;21513;29590;36271;38848;37945;35096;33425;28132;31913;49154;10415;16000;47574;72197;52000;40000;5111;5002;113000;196100;96845;58901;57324;48024;56820;24051;1216;2289;2368;2617;2449;2299;1738;1859;1814;1165;1246;291407;254279;239010;221100.28;53793;58250;66294;74204;64445;2044
-11;'040;Austria;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2065386.27;2067960;2015716;2113756;2512959;2401381;2251963
-11;'040;Austria;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380433.79;2637409;2529763;2487142;3154658;3105825;2673046
-11;'040;Austria;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89458.26;101140;96363;103642;135109;113305;72710
-11;'040;Austria;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129398.92;149911;146464;155438;160359;155054;119609
-11;'040;Austria;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62530.64;70335;65804;74259;101197;83444;51222
-11;'040;Austria;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103742.57;123316;115616;124473;125006;122876;97594
-11;'040;Austria;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26927.62;30805;30559;29383;33912;29861;21488
-11;'040;Austria;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25656.35;26595;30848;30965;35353;32178;22015
-11;'040;Austria;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125607.82;146048;151095;140133;222220;269112;197557
-11;'040;Austria;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65061.64;71287;75663;71917;102918;131096;112391
-11;'040;Austria;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39664.77;44239;41341;40332;50590;47102;44210
-11;'040;Austria;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14123.13;17577;20044;16244;13979;14070;12961
-11;'040;Austria;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296422.07;303935;292284;320852;421276;354909;346900
-11;'040;Austria;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1384236.89;1474346;1437055;1488146;2077743;1996623;1631516
-11;'040;Austria;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991451;1711111
-11;'040;Austria;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41478;38649
-11;'040;Austria;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29402;23831
-11;'040;Austria;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1340822;1294231
-11;'040;Austria;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879081;700401
-11;'040;Austria;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465777;489583
-11;'040;Austria;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25451;20888
-11;'040;Austria;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21586;19057
-11;'040;Austria;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387649;362935
-11;'040;Austria;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305329;273369
-11;'040;Austria;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-11;'040;Austria;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;21
-11;'040;Austria;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;30
-11;'040;Austria;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;34
-11;'040;Austria;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2258;24
-11;'040;Austria;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1318860.56;1280967;1268101;1312084;1494080;1407043;1418688
-11;'040;Austria;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669619.75;719632;659378;628571;677694;663879;627016
-11;'040;Austria;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45671.27;34761;26934;39668;37030;48789;29686
-11;'040;Austria;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59179.68;80413;75823;47439;57510;72798;72620
-11;'040;Austria;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149701.52;156870;139598;157045;152654;161121;142212
-11;'040;Austria;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58813.78;124243;115336;79387;64455;72305;96933
-11;'040;Austria;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071113.96;1175352;1164813;1093160;1253619;1305484;1382322
-11;'040;Austria;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195468.74;1290480;1244406;1231551;1427772;1466759;1475065
-11;'040;Austria;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14882.39;16041;15315;11971;13208;13953;13042
-11;'040;Austria;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165.74;184;153;170;464;361;238
-11;'040;Austria;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180691.82;194521;176201;161508;194373;198428;162215
-11;'040;Austria;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75381.04;78466;68953;70091;110994;117061;112078
-11;'040;Austria;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260354.32;280008;286197;251056;257627;322301;378854
-11;'040;Austria;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168664.42;187745;176690;161077;173151;202642;213204
-11;'040;Austria;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339491.68;385463;399967;392413;466507;491902;500398
-11;'040;Austria;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763566.07;817244;805063;809379;924723;936673;908356
-11;'040;Austria;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275693.74;299319;287133;276212;321904;278900;327813
-11;'040;Austria;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187691.46;206841;193547;190834;218440;210022;241189
-52;'031;Azerbaijan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400652;499204;537824;459842;586871;703637;702301
-52;'031;Azerbaijan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6673.2;3567;3935;5940;7203;12091;12078
-52;'031;Azerbaijan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;94;141;678;13813;22763;25321;22119;31500;26795;27857;36839;45450;59888;62363;81862;103190;101233;182351;278510;286310;287192;287192;227594;189036;228819;309886;313810;285506;359044;443433;443433
-52;'031;Azerbaijan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;136;111;173;161;837;1276;662;1126;594;623;1046;1787;1830;1951;942;984;754;1012;813;1886;2896;2896;1685;4097;4401;2139;1735;2722;2917;4058;4058
-52;'031;Azerbaijan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12600;12600;63700;13500;52800;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;425300;425300;425300;425300;425300;425300;425300;425300;425300;425300;425300
-52;'031;Azerbaijan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;1600;6000;3100;1460;1100;1000;1439;8106;6400;4091;20854;5440;3954;7551;10700;16000;13000;4000;4000;1473;1500;3600;800;509;570;1070;170;170
-52;'031;Azerbaijan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;102;553;0;59;61;60;73;439;389;506;1371;842;616;926;1274;1985;1910;401;401;230;429;281;263;190;192;209;37;37
-52;'031;Azerbaijan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;1538;1500;72;272;272;0;1611;1600;900;0;0;0;0;0;10;10;10;10;10;0;0;0;0;1000;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;132;111;20;40;40;111;276;171;67;0;0;0;0;0;1;1;1;1;1;0;0;0;0;244;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;6300;0;6750;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;500;500;500;1000;100;100
-52;'031;Azerbaijan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;212;189;186;203;31;31
-52;'031;Azerbaijan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;6300;63700;6750;52800;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;425300;425300;425300;425300;425300;425300;425300;425300;425300;425300;425300
-52;'031;Azerbaijan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;9;70;70;70;70
-52;'031;Azerbaijan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;51;1;6;6;6;6
-52;'031;Azerbaijan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;6200;31900;6400;26400;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;422000;422000;422000;422000;422000;422000;422000;422000;422000;422000;422000
-52;'031;Azerbaijan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;698;1519;0;0;0;1000;1000;0;0;0;0;3;0;0;0;0
-52;'031;Azerbaijan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;61;119;0;0;0;11;11;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3100;0;3200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3100;31900;3200;26400;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;422000;422000;422000;422000;422000;422000;422000;422000;422000;422000;422000
-52;'031;Azerbaijan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0
-52;'031;Azerbaijan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;698;1519;0;0;0;1000;1000;0;0;;;;;;;
-52;'031;Azerbaijan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;61;119;0;0;0;11;11;0;0;;;;;;;
-52;'031;Azerbaijan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;6400;31800;7100;26400;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300
-52;'031;Azerbaijan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;1600;6000;3100;1460;1100;1000;1439;8106;6400;4091;20854;5440;3256;6032;10700;16000;13000;3000;3000;1473;1500;3600;800;506;570;1070;170;170
-52;'031;Azerbaijan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;102;553;0;59;61;60;73;439;389;506;1371;842;555;807;1274;1985;1910;390;390;230;429;281;263;190;192;209;37;37
-52;'031;Azerbaijan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;1538;1500;72;272;272;0;1611;1600;900;0;0;0;0;0;10;10;10;10;10;0;0;0;0;1000;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;132;111;20;40;40;111;276;171;67;0;0;0;0;0;1;1;1;1;1;0;0;0;0;244;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;0;3550;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;1600;6000;3100;1410;1100;1000;1360;7912;5600;2551;19436;2420;624;4827;4500;6000;0;0;0;473;500;2600;500;500;500;1000;100;100
-52;'031;Azerbaijan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;102;553;0;59;61;60;69;406;290;253;1228;462;266;674;560;800;0;18;18;33;35;182;212;189;186;203;31;31
-52;'031;Azerbaijan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;1457;1500;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;111;111;0;20;20;111;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;1600;6000;3100;1410;1100;1000;1360;7912;5600;2551;19436;2420;624;4827;4500;6000;0;0;0;473;500;2600;500;500;500;1000;100;100
-52;'031;Azerbaijan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;102;553;0;59;61;60;69;406;290;253;1228;462;266;674;560;800;0;18;18;33;35;182;212;189;186;203;31;31
-52;'031;Azerbaijan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;1457;1500;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;111;111;0;20;20;111;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;31800;3550;26400;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300
-52;'031;Azerbaijan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;79;194;800;1540;1418;3020;2632;1205;6200;10000;13000;3000;3000;1000;1000;1000;300;6;70;70;70;70
-52;'031;Azerbaijan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;33;99;253;143;380;289;133;714;1185;1910;372;372;197;394;99;51;1;6;6;6;6
-52;'031;Azerbaijan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;81;;72;72;72;0;1611;1600;900;0;0;0;0;0;10;10;10;10;10;0;0;0;0;1000;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;21;;20;20;20;0;276;171;67;0;0;0;0;0;1;1;1;1;1;0;0;0;0;244;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;699;699;510;510;510;400;400;0;0;0;63;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;126;126;107;107;107;40;40;0;0;0;31;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;57;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;6;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;79;194;800;841;719;2510;2122;695;5800;9600;13000;3000;3000;937;1000;1000;300;6;70;70;70;70
-52;'031;Azerbaijan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;33;99;127;17;273;182;26;674;1145;1910;372;372;166;394;99;51;1;6;6;6;6
-52;'031;Azerbaijan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;81;;72;72;72;0;1467;1543;800;0;0;0;0;0;10;10;10;10;10;0;0;0;0;1000;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;21;;20;20;20;0;249;165;55;0;0;0;0;0;1;1;1;1;1;0;0;0;0;244;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;10600;3500;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;0;1750;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;10600;1750;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;10600;3500;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;0;1750;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;10600;1750;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600;100;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600;50;8800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-52;'031;Azerbaijan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;300;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-52;'031;Azerbaijan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;1;1;144;144;0;64;111;111;147;400;1000;600;500;1000;100;300;300
-52;'031;Azerbaijan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;9;9;9;3;1;44;44;70;37;62;62;65;178;948;1022;893;605;173;561;561
-52;'031;Azerbaijan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;2;2;2;2;22;77;77;77;8;38;43;43;0;1000;0;100;100;34;0;300;300
-52;'031;Azerbaijan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;22;9;9;9;4;4;5;5;0;57;0;16;16;21;26;85;85
-52;'031;Azerbaijan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;600;200;200;200;200;200;200;200;200;200;200;200
-52;'031;Azerbaijan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;0;0;15;15;175;175;66;27;74;74;5817;41;59;59;1000;1520;357;2088;486;876;483;121;121
-52;'031;Azerbaijan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;3;16;16;16;16;28;19;69;69;315;135;69;69;184;85;121;115;184;215;184;199;199
-52;'031;Azerbaijan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;300;100;100;100;100;100;100;100;100;100;100;100
-52;'031;Azerbaijan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;100;0;0;11;0;0;0;0;160;160;22;22;71;71;5396;33;55;55;1000;1520;100;1971;300;500;362;121;121
-52;'031;Azerbaijan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;3;0;0;1;0;0;0;0;0;0;12;12;54;54;280;128;64;64;184;85;110;110;177;200;158;198;198
-52;'031;Azerbaijan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;300;100;100;100;100;100;100;100;100;100;100;100
-52;'031;Azerbaijan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;900;0;0;0;0;0;0;15;15;15;15;44;5;3;3;421;8;4;4;0;0;257;117;186;376;121;0;0
-52;'031;Azerbaijan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;0;0;0;0;0;3;16;16;16;16;16;7;15;15;35;7;5;5;0;0;11;5;7;15;26;1;1
-52;'031;Azerbaijan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0
-52;'031;Azerbaijan;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;12;12
-52;'031;Azerbaijan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;200;200;200;200;200;200;200;200;200;200;200
-52;'031;Azerbaijan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;470;65;106;5;1;51;100;200;200
-52;'031;Azerbaijan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;64;10;19;1;7;9;42;86;86
-52;'031;Azerbaijan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;10;10;100;100
-52;'031;Azerbaijan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;20;20
-52;'031;Azerbaijan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;100;100;100;100;100;100;100;100
-52;'031;Azerbaijan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;65;24;5;1;44;100;200;200
-52;'031;Azerbaijan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;10;8;1;7;8;28;72;72
-52;'031;Azerbaijan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;10;10;100;100
-52;'031;Azerbaijan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;20;20
-52;'031;Azerbaijan;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;100;100;100;100;100;100;100;100
-52;'031;Azerbaijan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;453;0;82;0;0;7;0;0;0
-52;'031;Azerbaijan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;61;0;11;0;0;1;14;14;14
-52;'031;Azerbaijan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;100;100;400;400;300;200;1300;1500;1500;2500;1300;300;100;100;200;300;2300;200;200;100;100;100;100
-52;'031;Azerbaijan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;87700;152100;277900;316104;192361;179600;203300;250630;301600;525782;577603;737820;747088;683919;466000;821000;659234;741886;214400;499000;756000;846000;1059000;977700;955300;916200;832600;832600
-52;'031;Azerbaijan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;7875;12516;16240;13668;14619;12834;12870;14505;17188;26500;25979;37312;38543;45126;91416;159323;151267;166613;166613;114896;74223;93760;128542;129181;117264;128229;176352;176352
-52;'031;Azerbaijan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;457;400;3400;5150;2654;5656;2400;557;3082;2386;1542;1005;976;775;580;749;1000;1000;1000;1600;1077;1200;357;357;357;357;0;357;357
-52;'031;Azerbaijan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;99;81;672;851;269;588;289;165;374;406;257;284;333;580;328;649;411;1539;1318;1318;750;405;632;632;632;632;30;632;632
-52;'031;Azerbaijan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;0;0;400;400;300;200;1300;1500;1300;2300;1100;300;100;100;200;300;2300;200;200;100;100;100;100
-52;'031;Azerbaijan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;86600;151300;277400;307350;183137;167100;194000;229499;288700;509890;569803;732676;742728;676328;459000;818000;651000;721000;193500;497000;738000;836000;1034000;971700;951000;908900;823200;823200
-52;'031;Azerbaijan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;7605;12311;16126;13113;13909;11844;12189;13049;15943;25632;24804;36654;37842;43899;90068;158418;146631;154854;154854;114549;71473;92549;126661;127683;115812;126754;174420;174420
-52;'031;Azerbaijan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;357;100;3200;5000;782;775;300;0;2282;986;756;205;150;50;0;0;0;0;0;800;77;200;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;76;15;628;796;58;47;18;0;218;102;96;44;19;12;0;0;0;0;0;0;17;44;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;0;0;0;0;0;0;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;1100;800;500;8754;9224;12500;9300;21131;12900;15892;7800;5144;4360;7591;7000;3000;8234;20886;20900;2000;18000;10000;25000;6000;4300;7300;9400;9400
-52;'031;Azerbaijan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;270;205;114;555;710;990;681;1456;1245;868;1175;658;701;1227;1348;905;4636;11759;11759;347;2750;1211;1881;1498;1452;1475;1932;1932
-52;'031;Azerbaijan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;100;300;200;150;1872;4881;2100;557;800;1400;786;800;826;725;580;749;1000;1000;1000;800;1000;1000;357;357;357;357;0;357;357
-52;'031;Azerbaijan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;23;66;44;55;211;541;271;165;156;304;161;240;314;568;328;649;411;1539;1318;1318;733;361;632;632;632;632;30;632;632
-52;'031;Azerbaijan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;1400;1900;200;300;100;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;221;353;10;30;66;30;400;137;1172;1094;1260;1000;1000;889;496;496;494;260;489;371;325;460;2550;3910;3910
-52;'031;Azerbaijan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;25;52;7;6;15;68;64;150;187;125;190;174;191;255;184;184;462;223;446;343;449;444;805;1204;1204
-52;'031;Azerbaijan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;644;0;0;0;0;1900;1710;885;860;371;239;100;96;31;0;0;0;0;0;0;0;0;0;1100;1100
-52;'031;Azerbaijan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;;;;;;61;0;0;0;0;439;360;350;422;238;210;102;115;81;0;0;0;0;0;0;0;0;0;551;551
-52;'031;Azerbaijan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4100;0;700;20;300;20;20;0;0;0;0;0;0;0;0;0;200;2200;2800;700;1300;1600;2200;2200
-52;'031;Azerbaijan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;103;;881;10800;21300;34800;53042;57688;97100;58730;92414;138900;223400;82365;220356;264933;254660;282217;375153;379000;430000;430000;294296;355658;457000;424000;497480;457566;525717;529174;529174
-52;'031;Azerbaijan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;49;;171;2074;5615;2365;5284;6563;6502;7371;13762;15969;19592;19794;24976;31778;28728;57203;72924;88903;74764;74764;76286;65928;81353;120361;108371;103189;153171;158540;158540
-52;'031;Azerbaijan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;200;200;0;0;0;108;0;1010;2654;2;19;0;6;70;0;0;7;2000;0;0;34;110;386;253;981;141;1913;3632;3632
-52;'031;Azerbaijan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;40;40;0;40;0;8;0;207;581;16;4;0;1;20;0;0;2;235;19;19;28;61;187;74;490;129;903;1930;1930
-52;'031;Azerbaijan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;103;;451;300;6500;8900;13657;11740;10500;12200;29540;41300;55550;14040;80500;91963;69668;99000;117153;155000;144000;144000;90296;112658;96000;105000;96300;103700;76500;86900;86900
-52;'031;Azerbaijan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;49;;104;177;2689;3;1780;1624;1270;1490;3660;4492;5892;5988;8119;9304;8051;21222;28092;46534;29692;29692;29351;24514;30016;41461;28742;30435;34941;38972;38972
-52;'031;Azerbaijan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;200;200;0;0;0;0;0;1000;2355;0;19;0;0;35;0;0;0;0;0;0;34;80;83;15;900;42;1505;3100;3100
-52;'031;Azerbaijan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;40;40;0;40;0;0;0;207;542;0;4;0;0;15;0;0;0;3;18;18;27;50;66;8;467;36;747;1735;1735
-52;'031;Azerbaijan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100;0;700;20;300;20;20;0;0;0;0;0;0;0;0;0;200;2200;2800;700;1300;0;0;0
-52;'031;Azerbaijan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;10200;14100;25000;20863;24779;28400;39700;54849;45164;53182;44215;112078;132895;111094;108386;139814;146398;183000;183000;129000;138000;246000;205700;197900;185400;240600;233521;233521
-52;'031;Azerbaijan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;1796;2725;2182;1893;2776;3243;4310;7669;5557;6134;7657;11734;14813;13085;21811;28409;26186;27602;27602;27263;19782;27538;44097;38057;35139;57806;53776;53776
-52;'031;Azerbaijan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;290;0;0;0;0;0;0;0;7;0;0;0;0;0;0;17;21;24;24;300;300
-52;'031;Azerbaijan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;36;0;0;0;0;0;0;0;2;0;1;1;0;1;0;5;6;7;7;88;88
-52;'031;Azerbaijan;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6010;7468;7400;4500;3779;52436;43708;12916;267;1159;223;900;186;602;4000;4000;0;1000;1000;1300;1100;1000;2100;2279;2279
-52;'031;Azerbaijan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;899;806;486;420;5920;4402;2412;44;139;63;322;54;170;383;383;0;292;239;430;287;327;712;773;773
-52;'031;Azerbaijan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1600;2200;2200
-52;'031;Azerbaijan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;300;700;900;12512;13701;50800;2330;4246;0;70960;11194;27511;38916;73675;73931;118000;77000;99000;99000;75000;104000;114000;112000;202180;167466;206517;206474;206474
-52;'031;Azerbaijan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;101;201;180;1159;1264;1183;1085;2013;0;3164;3737;5079;7522;7529;13848;16369;16013;17087;17087;19672;21340;23560;34373;41285;37288;59712;65019;65019
-52;'031;Azerbaijan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;108;0;0;9;2;0;0;6;35;0;0;0;2000;0;0;0;30;303;221;60;75;384;232;232
-52;'031;Azerbaijan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;8;0;0;3;16;0;0;1;5;0;0;0;232;0;0;1;10;121;61;17;86;149;107;107
-52;'031;Azerbaijan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6995;9909;37800;1700;3573;0;29200;6677;1668;3086;7802;13377;22000;24000;21000;21000;11000;12000;14000;15000;19100;18325;21137;22007;22007
-52;'031;Azerbaijan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683;972;849;843;1576;0;2382;2995;748;1382;1848;3930;4684;6013;4574;4574;3029;4104;4841;7235;9264;8803;11147;14544;14544
-52;'031;Azerbaijan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0
-52;'031;Azerbaijan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8;0;0;1;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0
-52;'031;Azerbaijan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;300;700;900;1288;203;2200;30;158;0;4960;1376;9891;16917;8494;13426;51000;43000;67000;67000;44000;87000;92000;85000;101680;84016;175432;179562;179562
-52;'031;Azerbaijan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;101;201;180;192;27;50;34;149;0;228;266;1914;3274;1831;4692;7242;9050;10978;10978;12795;16308;17967;25564;15827;14800;46942;49691;49691
-52;'031;Azerbaijan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;2;0;0;0;0;0;0;0;2000;0;0;0;30;303;86;0;0;309;232;232
-52;'031;Azerbaijan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;8;0;0;0;0;0;0;0;232;0;0;1;10;121;34;0;0;63;106;106
-52;'031;Azerbaijan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1600;2200;2200
-52;'031;Azerbaijan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4229;3589;10800;600;515;0;36800;3141;15952;18913;57379;47128;45000;10000;11000;11000;20000;5000;8000;12000;81400;65125;9948;4905;4905
-52;'031;Azerbaijan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;265;284;208;288;0;554;476;2417;2866;3850;5226;4443;950;1535;1535;3848;928;752;1574;16194;13685;1623;784;784
-52;'031;Azerbaijan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;0;0;0;0;0;0;0;35;0;0;0;0;0;0;0;0;0;135;50;75;75;0;0
-52;'031;Azerbaijan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;27;11;86;86;1;1
-52;'031;Azerbaijan;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-52;'031;Azerbaijan;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-52;'031;Azerbaijan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;316;0;0;0;13;20;10;12;87;318;241;146;120;111;140;272;194;1372;1372;2235;258;177;620;314;1050;100;500;500
-52;'031;Azerbaijan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;0;0;0;1;2;32;8;48;46;37;56;74;144;107;173;131;396;396;498;190;114;161;167;206;162;377;377
-52;'031;Azerbaijan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;200;200;1145;2026;900;900;2555;2337;2258;928;1806;1113;233;400;82;0;0;0;0;0;0;0;0;0;300;200;200
-52;'031;Azerbaijan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;125;125;56;141;24;21;53;49;50;20;37;26;5;9;19;9;6;6;4;2;0;0;0;0;52;24;24
-52;'031;Azerbaijan;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;10;10;14;57;25;21;24;71;100;155;194;372;372;1235;258;157;120;206;50;100;500;500
-52;'031;Azerbaijan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;32;8;41;30;19;45;67;138;101;151;131;323;323;397;185;110;118;149;44;131;363;363
-52;'031;Azerbaijan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;6;0;0
-52;'031;Azerbaijan;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;20;10;14;57;25;17;24;69;100;145;194;372;372;1219;238;145;100;200;43;100;500;500
-52;'031;Azerbaijan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;32;8;41;30;19;34;67;127;101;137;131;323;323;376;159;91;92;139;32;115;342;342
-52;'031;Azerbaijan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;300;300
-52;'031;Azerbaijan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;74;74
-52;'031;Azerbaijan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;5;69;100;100;0;190;190;0;0;;;;;;;
-52;'031;Azerbaijan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;15;127;95;95;0;102;102;0;0;;;;;;;
-52;'031;Azerbaijan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;10;14;57;25;17;19;0;0;45;194;182;182;1219;238;122;100;200;43;100;200;200
-52;'031;Azerbaijan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;32;8;41;30;19;34;52;0;6;42;131;221;221;376;159;81;92;139;32;115;268;268
-52;'031;Azerbaijan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;57;0;0;0;0;0;0;0;0;0;1000;68;33;0;0;0;0;0;0
-52;'031;Azerbaijan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;30;0;0;0;0;0;0;0;62;62;231;43;22;0;0;0;0;0;0
-52;'031;Azerbaijan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10;0;0;0;0;0;0;0;0;194;182;182;208;140;86;100;200;43;100;200;200
-52;'031;Azerbaijan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;0;0;0;0;0;0;6;6;131;123;123;135;89;56;92;139;32;102;260;260
-52;'031;Azerbaijan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0
-52;'031;Azerbaijan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;13;8;8
-52;'031;Azerbaijan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;14;0;25;17;19;0;0;45;0;0;0;11;30;;;;;;;
-52;'031;Azerbaijan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;32;0;41;0;19;34;52;0;0;36;0;36;36;10;27;;;;;;;
-52;'031;Azerbaijan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;;;;;;;
-52;'031;Azerbaijan;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4;0;2;0;10;0;0;0;16;20;12;20;6;7;0;0;0
-52;'031;Azerbaijan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;11;0;11;0;14;0;0;0;21;26;19;26;10;12;16;21;21
-52;'031;Azerbaijan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0
-52;'031;Azerbaijan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;123;85;300;469;1367;743;743;2192;320;0;1;0;0;0;0;0
-52;'031;Azerbaijan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;193;133;432;275;664;361;361;615;89;0;0;0;0;0;1;1
-52;'031;Azerbaijan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;316;0;0;0;13;0;0;2;73;261;216;125;96;40;40;117;0;1000;1000;1000;0;20;500;108;1000;0;0;0
-52;'031;Azerbaijan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;0;0;0;1;0;0;0;7;16;18;11;7;6;6;22;0;73;73;101;5;4;43;18;162;31;14;14
-52;'031;Azerbaijan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;1145;2026;900;900;2555;2337;2258;928;1806;1113;233;400;75;0;0;0;0;0;0;0;0;0;300;200;200
-52;'031;Azerbaijan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;56;141;24;21;53;49;50;20;37;26;5;9;14;9;6;6;4;2;0;0;0;0;46;24;24
-52;'031;Azerbaijan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200;146200;143600;8200;7800;5100;3000;200;3300;1200;3800;47400;7200;7800;7800;14900;19310;13300;19700;22100;38500;46110;51200;51200
-52;'031;Azerbaijan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;200;342;3900;5700;11200;5499;9794;9300;13100;16944;24373;26600;34500;38418;56455;49000;52900;59131;67310;61535;61535;59925;53979;62051;63100;74200;67500;66600;74200;74200
-52;'031;Azerbaijan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;45;141;280;3604;4073;6716;3083;10203;7390;7502;8085;11763;13155;15007;18456;31841;25873;31632;43254;43008;44338;44338;34294;47681;51777;59078;74368;63382;76043;106064;106064
-52;'031;Azerbaijan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;22;0;0;0;0;121;100;100;17;1810;1839;2801;97;135;350;500;489;0;3081;3081;2000;9000;11013;4408;1700;6200;4600;1200;1200
-52;'031;Azerbaijan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;0;0;149;0;218;214;230;38;877;1159;1297;126;110;201;242;261;18;1548;1548;903;3328;3582;1417;596;1939;1905;816;816
-52;'031;Azerbaijan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;300;0;0;0;0;0;0
-52;'031;Azerbaijan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;100;282;2600;3100;8200;2838;5365;4700;6400;7066;9041;9800;14000;13999;17150;16000;16700;19104;20000;23000;23000;15149;19000;23000;29000;33500;24900;22600;31500;31500
-52;'031;Azerbaijan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;79;227;2181;2030;3716;1342;3040;2804;3503;3526;4528;5075;7239;7092;9516;7676;8431;11241;11278;14009;14009;7751;15063;18365;23817;30292;19940;19755;36124;36124
-52;'031;Azerbaijan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;22;0;0;0;0;0;0;0;0;2;0;1;21;117;350;300;300;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;0;0;149;0;0;0;0;0;6;1;1;12;88;201;171;171;0;0;0;0;1;0;0;0;0;0;11;11
-52;'031;Azerbaijan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;1500;2100;6400;1620;2984;2100;3400;3099;3854;4100;4300;3384;4090;4000;3800;3000;4000;4000;4000;4000;2000;2000;2900;3000;2300;1900;2600;2600
-52;'031;Azerbaijan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;1035;1242;2926;629;1534;1161;1638;1358;1874;2114;2458;2106;2926;2231;2051;2266;2536;2528;2528;1918;1086;1278;1821;1699;946;892;1674;1674
-52;'031;Azerbaijan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;117;350;300;300;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;149;0;0;0;0;0;0;0;0;11;88;201;171;171;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;300;0;0;0;0;0;0
-52;'031;Azerbaijan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;100;46;1100;1000;1800;1218;2381;2600;3000;3967;5187;5700;9700;10615;13060;12000;12900;16104;16000;19000;19000;11149;17000;21000;26100;30500;22600;20700;28900;28900
-52;'031;Azerbaijan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;79;68;1146;788;790;713;1506;1643;1865;2168;2654;2961;4781;4986;6590;5445;6380;8975;8742;11481;11481;5833;13977;17087;21996;28593;18994;18863;34450;34450
-52;'031;Azerbaijan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;0;0;0;0;0;0;0;0;2;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;0;0;0;0;0;0;0;6;1;1;1;0;0;0;0;0;0;0;0;1;0;0;0;0;0;11;11
-52;'031;Azerbaijan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;377;361;400;900;506;544;900;1000;1064;880;0;400;104;1000;0;0;149;1000;1000;1200;2800;600;700;1300;1300
-52;'031;Azerbaijan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790;175;199;196;573;338;244;458;327;254;247;42;194;81;312;67;67;101;314;413;700;1587;489;591;1390;1390
-52;'031;Azerbaijan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;1574;1600;1600;2365;3271;3400;6700;7552;9565;10000;11300;12000;12000;15000;15000;9000;14000;17000;19900;23600;18100;17000;23600;23600
-52;'031;Azerbaijan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;1037;1091;952;1280;1752;1790;3400;3884;5511;4777;5614;7102;6962;8996;8996;4601;11244;14012;18144;22498;14427;14845;26808;26808
-52;'031;Azerbaijan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;11
-52;'031;Azerbaijan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;300;0;0;0;0;0;0
-52;'031;Azerbaijan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;446;600;500;1096;1372;1400;2000;1999;2615;2000;1200;4000;3000;4000;4000;2000;2000;3000;5000;4100;3900;3000;4000;4000
-52;'031;Azerbaijan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;270;356;340;550;658;713;1054;848;832;626;572;1792;1468;2418;2418;1131;2419;2662;3152;4508;4078;3427;6252;6252
-52;'031;Azerbaijan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;6;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200;146200;143600;8200;7800;5100;3000;200;3300;1200;3800;47400;7200;7800;7800;14900;19310;13000;19700;22100;38500;46110;51200;51200
-52;'031;Azerbaijan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;24;100;60;1300;2600;3000;2661;4429;4600;6700;9878;15332;16800;20500;24419;39305;33000;36200;40027;47310;38535;38535;44776;34979;39051;34100;40700;42600;44000;42700;42700
-52;'031;Azerbaijan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;19;62;53;1423;2043;3000;1741;7163;4586;3999;4559;7235;8080;7768;11364;22325;18197;23201;32013;31730;30329;30329;26543;32618;33412;35261;44076;43442;56288;69940;69940
-52;'031;Azerbaijan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;121;100;100;17;1808;1839;2800;76;18;0;200;189;0;3081;3081;2000;9000;11013;4408;1700;6200;4600;1200;1200
-52;'031;Azerbaijan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;218;214;230;38;871;1158;1296;114;22;0;71;90;18;1548;1548;903;3327;3582;1417;596;1939;1905;805;805
-52;'031;Azerbaijan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200;140100;140100;0;0;0;0;0;0;0;0;1900;1100;1100;1100;5900;6500;0;6100;5300;7700;10;300;300
-52;'031;Azerbaijan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;73;100;200;455;587;500;1500;1431;2296;3000;4100;5000;6000;8000;8000;8000;8000;7000;4000;6100;5800;6700;6700;6700
-52;'031;Azerbaijan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;42;44;89;183;775;268;481;484;1088;1522;2107;2832;2509;5828;5828;7564;9858;8214;5777;7987;6858;8043;10548;10548
-52;'031;Azerbaijan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;13;1;0;0;0;0;0
-52;'031;Azerbaijan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;62;0;0;0;0;0;0;0;0;0;17;1;0;0;0;1;1
-52;'031;Azerbaijan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6100;3500;8200;7800;5100;3000;200;3300;1200;3800;45500;6100;6700;6700;9000;12810;13000;13600;16800;30800;46100;50900;50900
-52;'031;Azerbaijan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1579;1937;2600;5200;7740;13629;15600;18700;21488;36218;29500;31800;33027;41000;30206;30206;36256;26409;32000;30000;33700;35900;36300;34600;34600
-52;'031;Azerbaijan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696;1188;844;1863;2864;4349;6034;7129;9423;20016;15564;19765;26615;28472;23708;23708;17836;21512;24099;27346;30114;29965;39384;47331;47331
-52;'031;Azerbaijan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;0;20;0;1760;1753;2800;59;17;0;200;189;0;3081;3081;2000;9000;11000;4407;1700;6200;4600;1200;1200
-52;'031;Azerbaijan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;0;2;0;814;810;1296;32;19;0;71;90;18;1548;1548;902;3326;3565;1415;596;1939;1905;804;804
-52;'031;Azerbaijan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6100;3200;7600;0;0;0;0;0;0;0;0;0;0;0;2400;5000;4600;4500;5200;20800;36200;35100;35100
-52;'031;Azerbaijan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;588;800;1200;1491;3126;9000;12300;13827;24160;23400;24000;24000;29000;17000;17000;21000;14000;14000;11000;13100;16100;12700;7800;7800
-52;'031;Azerbaijan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;286;253;299;443;955;3486;4664;6071;12068;11041;12733;15333;16353;10567;10567;8283;7653;7422;7211;8717;8871;9021;6571;6571
-52;'031;Azerbaijan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;58;0;0;100;72;0;3000;3000;2000;9000;11000;4400;1700;6200;4600;1200;1200
-52;'031;Azerbaijan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;31;0;0;34;42;0;1439;1439;902;3326;3565;1407;596;1939;1903;769;769
-52;'031;Azerbaijan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7800;5100;3000;200;3300;1200;3800;45500;6100;6700;6700;6500;7800;8400;9100;11600;10000;9900;15800;15800
-52;'031;Azerbaijan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;354;600;800;1748;4655;1800;1200;1973;7107;3400;5700;7000;9000;10000;10000;8000;8000;10000;11100;14200;14200;16800;19800;19800
-52;'031;Azerbaijan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;274;165;411;725;1427;909;736;1568;6052;3010;5358;9709;10171;10536;10536;5960;10289;10431;13302;15065;16027;23909;32977;32977
-52;'031;Azerbaijan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;0;100;100;0;81;81;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;37;37;18;109;109;0;0;0;0;0;0;2;35;35
-52;'031;Azerbaijan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;300;600;0;0;0;0;0;0;0;0;0;0;0;100;10;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847;847;1100;2300;3104;4750;4700;5000;5270;4487;2300;2100;2000;3000;3000;3000;7000;4000;7000;6700;5500;5000;5900;5800;5800
-52;'031;Azerbaijan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;544;410;843;1214;1615;1585;1642;1601;1767;1351;1674;1556;1882;2462;2462;3441;3373;5764;6141;5717;4723;5866;6660;6660
-52;'031;Azerbaijan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;1760;1753;2800;1;2;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0
-52;'031;Azerbaijan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;814;810;1296;1;3;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0
-52;'031;Azerbaijan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288;148;100;900;1397;1098;100;200;418;464;400;0;27;0;206;206;256;409;1000;1200;900;600;900;1200;1200
-52;'031;Azerbaijan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;84;16;310;482;352;54;87;183;129;162;0;17;66;143;143;152;197;482;692;615;344;588;1123;1123
-52;'031;Azerbaijan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;15;0;0;17;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;16;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1000;2419;1900;1300;1683;1116;700;300;1500;791;500;300;2000;310;329;329;520;570;51;100;900;900;1000;1400;1400
-52;'031;Azerbaijan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1010;5933;3698;2047;1512;2111;1778;158;1457;1221;1111;1329;2566;749;793;793;1143;1248;1099;2138;5975;6619;8861;12061;12061
-52;'031;Azerbaijan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;100;80;17;48;86;0;5;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-52;'031;Azerbaijan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;214;228;38;57;348;0;20;3;0;0;0;0;0;0;1;1;0;1;0;0;0;0;0
-52;'031;Azerbaijan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119962;117680;118644;76014;105584;112945;111609
-52;'031;Azerbaijan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1762.2;1277;1645;2855;3636;6084;6071
-52;'031;Azerbaijan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10225;13886;11696;7818;6765;6034;6034
-52;'031;Azerbaijan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;3;154;22;122;122
-52;'031;Azerbaijan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5531;8245;5770;3312;2306;2823;2823
-52;'031;Azerbaijan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;3;132;17;115;115
-52;'031;Azerbaijan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4694;5641;5926;4506;4459;3211;3211
-52;'031;Azerbaijan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;22;5;7;7
-52;'031;Azerbaijan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810;1052;1288;1176;2188;3215;3215
-52;'031;Azerbaijan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;62;288;101;978;978
-52;'031;Azerbaijan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;1429;1035;848;915;2671;1335
-52;'031;Azerbaijan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27.2;17;3;4;8;26;13
-52;'031;Azerbaijan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21266;25203;26648;23339;27781;29796;29796
-52;'031;Azerbaijan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;102;67;134;22;465;465
-52;'031;Azerbaijan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;35
-52;'031;Azerbaijan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;23
-52;'031;Azerbaijan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-52;'031;Azerbaijan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131
-52;'031;Azerbaijan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-52;'031;Azerbaijan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67
-52;'031;Azerbaijan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50427;72697;68869;40586;65544;67123;67123
-52;'031;Azerbaijan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352;1080;1413;2242;3431;4479;4479
-52;'031;Azerbaijan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36933;479;5829;458;337;1189;1189
-52;'031;Azerbaijan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;3;73;0;14;0;0
-52;'031;Azerbaijan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2934;3279;1789;2054;2917;2917
-52;'031;Azerbaijan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;65;24;33;38;14;14
-52;'031;Azerbaijan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51871;71638;105370;98322;122243;147259;147259
-52;'031;Azerbaijan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;151;555;363;650;1949;1949
-52;'031;Azerbaijan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;119;169;83;256;244;244
-52;'031;Azerbaijan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;1;1
-52;'031;Azerbaijan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3354;3342;4246;4185;4766;8032;8032
-52;'031;Azerbaijan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;24;814;814
-52;'031;Azerbaijan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12521;16433;18412;16214;18307;25529;25529
-52;'031;Azerbaijan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;68;120;63;98;97;97
-52;'031;Azerbaijan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18422;20898;37798;42949;51998;63538;63538
-52;'031;Azerbaijan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;80;168;63;136;151;151
-52;'031;Azerbaijan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17513;30846;44745;34891;46916;49916;49916
-52;'031;Azerbaijan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;3;267;236;391;886;886
-12;'044;Bahamas;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207172;190076;176221;164414;228188;269322;266799
-12;'044;Bahamas;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1904;1915;1463;639;1353;966;1182
-12;'044;Bahamas;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2200;2355;2426;2825;2513;3192;3902;3899;8322;6686;6686;4743;5451;5817;4720;5347;4448;4589;6395;7481;7696;7381;7991;7887;9149;21279;17052;34169;42904;27853;15705;19306;19884;22353;24271;27576;30689;27798;30414;15150;17928;11134;10980;18244;18387;21116;26917;29876;23726;33929;36706;42699;46488;55370;53344;52031;26703;36376;49216;63301;88704;94238;70617
-12;'044;Bahamas;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2789;3603;2500;4284;3639;4040;3680;4030;5510;6044;6234;6346;4196;2715;1563;1990;1207;;;;;;;;;;;;;;;398;557;471;354;367;0;46;245;321;43;261;691;914;914;907;1101;1216;1145;933;1056;1083;990;952;1251;1517;1159;1085;707;365;371;336;611
-12;'044;Bahamas;1861;Roundwood;5516;Production;m3;276733;370933;277334;447338;375542;398949;371957;404167;459478;421692;414838;424551;326659;226885;145168;145383;145172;144683;143908;143821;144468;144453;144182;143505;143458;143467;143534;143773;143640;143817;144238;144590;146478;146825;147099;147225;147182;47619;47869;48127;48343;48565;48793;49027;49268;49418;49573;49732;49896;49896;50187;50312;50441;50574;50711;50744;50779;50818;50859;50904;50957;51013;51071
-12;'044;Bahamas;1861;Roundwood;5616;Import quantity;m3;;100;100;100;200;100;100;100;15000;11500;11500;2900;2700;2900;4200;1400;2300;2300;2300;2300;3400;100;100;100;100;300;300;11700;14400;25888;49960;22208;25647;21231;32800;13400;17900;11500;8400;17300;11700;9657;27541;67327;67327;24932;28370;24232;12799;10871;9303;6971;8869;7330;9435;4456;1756;5906;30675;80730;56828;62073;44128
-12;'044;Bahamas;1861;Roundwood;5622;Import value;1000 USD;;24;24;14;28;38;16;16;570;436;436;185;203;345;414;97;195;195;195;195;160;6;6;6;6;22;22;924;1680;1316;947;1411;2042;1379;3706;2054;2221;1418;1463;2443;4317;1224;1594;4222;4222;2212;2688;2485;1802;1829;1269;904;1074;600;2223;1464;504;2064;9972;14718;18080;21460;11591
-12;'044;Bahamas;1861;Roundwood;5916;Export quantity;m3;242300;335800;242200;409500;337500;358200;330600;362900;418100;380100;373200;382000;283500;183100;99500;99500;52500;;;;;;;;;;;;;;;106;1378;2404;1000;100;0;0;0;0;0;4034;6419;4088;4088;97;1336;13;13;139;645;645;656;646;1;25;151;15;0;0;0;70;70
-12;'044;Bahamas;1861;Roundwood;5922;Export value;1000 USD;2789;3603;2500;4284;3639;4040;3680;4030;5510;6044;6234;6346;4196;2715;1563;1990;1207;;;;;;;;;;;;;;;28;435;214;100;65;0;0;0;0;0;187;328;190;190;5;70;0;0;4;74;75;76;76;0;6;48;4;0;0;0;6;6
-12;'044;Bahamas;1862;Roundwood, coniferous;5516;Production;m3;252000;346000;252200;422000;350000;373200;346000;378000;433100;395100;388000;397000;299000;198000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-12;'044;Bahamas;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1668;16684;38420;43573;25579;24525
-12;'044;Bahamas;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;429;4887;9520;13192;9262;7545
-12;'044;Bahamas;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-12;'044;Bahamas;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-12;'044;Bahamas;1863;Roundwood, non-coniferous;5516;Production;m3;24733;24933;25134;25338;25542;25749;25957;26167;26378;26592;26838;27551;27659;28885;30168;30383;30172;29683;28908;28821;29468;29453;29182;28505;28458;28467;28534;28773;28640;28817;29238;29590;31478;31825;32099;32225;32182;32619;32869;33127;33343;33565;33793;34027;34268;34418;34573;34732;34896;34896;35187;35312;35441;35574;35711;35744;35779;35818;35859;35904;35957;36013;36071
-12;'044;Bahamas;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1756;4238;13991;42310;13255;36494;19603
-12;'044;Bahamas;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;1635;5085;5198;4888;12198;4046
-12;'044;Bahamas;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;15;0;0;0;70;70
-12;'044;Bahamas;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;4;0;0;0;6;6
-12;'044;Bahamas;1864;Wood fuel;5516;Production;m3;24733;24933;25134;25338;25542;25749;25957;26167;26378;26592;26838;27551;27659;28885;30168;30383;30172;29683;28908;28821;29468;29453;29182;28505;28458;28467;28534;28773;28640;28817;29238;29590;29478;29825;30099;30225;30182;30619;30869;31127;31343;31565;31793;32027;32268;32418;32573;32732;32896;32896;33187;33312;33441;33574;33711;33744;33779;33818;33859;33904;33957;34013;34071
-12;'044;Bahamas;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3100;3100;1;1;1043;77;42;42;22;43;62;438;135;466;113;;;;;;8;318
-12;'044;Bahamas;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;80;80;64;29;27;27;10;26;38;97;81;146;10;;;;;;7;53
-12;'044;Bahamas;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;1;1;25;;;;;;70;70
-12;'044;Bahamas;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;;;;;;6;6
-12;'044;Bahamas;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;246
-12;'044;Bahamas;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;39
-12;'044;Bahamas;1628;Wood fuel, non-coniferous;5516;Production;m3;24733;24933;25134;25338;25542;25749;25957;26167;26378;26592;26838;27551;27659;28885;30168;30383;30172;29683;28908;28821;29468;29453;29182;28505;28458;28467;28534;28773;28640;28817;29238;29590;29478;29825;30099;30225;30182;30619;30869;31127;31343;31565;31793;32027;32268;32418;32573;32732;32896;32896;33187;33312;33441;33574;33711;33744;33779;33818;33859;33904;33957;34013;34071
-12;'044;Bahamas;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72
-12;'044;Bahamas;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14
-12;'044;Bahamas;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70
-12;'044;Bahamas;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-12;'044;Bahamas;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3100;3100;1;1;1043;77;42;42;22;43;62;438;135;466;113;;;;;;;
-12;'044;Bahamas;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;80;80;64;29;27;27;10;26;38;97;81;146;10;;;;;;;
-12;'044;Bahamas;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;1;1;25;;;;;;;
-12;'044;Bahamas;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;;;;;;;
-12;'044;Bahamas;1865;Industrial roundwood;5516;Production;m3;252000;346000;252200;422000;350000;373200;346000;378000;433100;395100;388000;397000;299000;198000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;117000;117000;117000;117000;117000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000
-12;'044;Bahamas;1865;Industrial roundwood;5616;Import quantity;m3;;100;100;100;200;100;100;100;15000;11500;11500;2900;2700;2900;4200;1400;2300;2300;2300;2300;3400;100;100;100;100;300;300;11700;14400;25888;49960;22208;25647;21231;32800;13400;17900;11500;8400;17300;8600;6557;24441;67326;67326;23889;28293;24190;12757;10849;9260;6909;8431;7195;8969;4343;1756;5906;30675;80730;56828;62065;43810
-12;'044;Bahamas;1865;Industrial roundwood;5622;Import value;1000 USD;;24;24;14;28;38;16;16;570;436;436;185;203;345;414;97;195;195;195;195;160;6;6;6;6;22;22;924;1680;1316;947;1411;2042;1379;3706;2054;2221;1418;1463;2443;4227;1134;1504;4142;4142;2148;2659;2458;1775;1819;1243;866;977;519;2077;1454;504;2064;9972;14718;18080;21453;11538
-12;'044;Bahamas;1865;Industrial roundwood;5916;Export quantity;m3;242300;335800;242200;409500;337500;358200;330600;362900;418100;380100;373200;382000;283500;183100;99500;99500;52500;;;;;;;;;;;;;;;106;1378;2404;1000;100;0;0;0;0;0;4034;6419;4088;4088;97;1325;2;2;128;634;634;645;645;0;0;151;15;0;0;0;0;0
-12;'044;Bahamas;1865;Industrial roundwood;5922;Export value;1000 USD;2789;3603;2500;4284;3639;4040;3680;4030;5510;6044;6234;6346;4196;2715;1563;1990;1207;;;;;;;;;;;;;;;28;435;214;100;65;0;0;0;0;0;187;328;190;190;5;70;0;0;4;74;75;76;76;0;3;48;4;0;0;0;0;0
-12;'044;Bahamas;1866;Industrial roundwood, coniferous;5516;Production;m3;252000;346000;252200;422000;350000;373200;346000;378000;433100;395100;388000;397000;299000;198000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-12;'044;Bahamas;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18098;47911;22118;24230;21162;32800;12800;17700;11000;7700;16400;8200;6343;22803;61261;61261;7743;19225;13737;4085;7569;3573;2478;2570;648;6513;3114;0;1668;16684;38420;43573;25571;24279
-12;'044;Bahamas;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1114;883;1403;1898;1373;3706;1918;2144;1317;1210;2189;3842;1083;1391;3737;3737;1049;1968;1710;520;1598;836;369;568;65;1175;1042;0;429;4887;9520;13192;9255;7506
-12;'044;Bahamas;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4034;4034;4034;4034;43;1325;2;2;128;181;181;181;181;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;187;187;187;187;2;70;0;0;4;9;10;0;0;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18098;47911;22118;24230;21162;32800;12800;17700;11000;7700;16400;8200;6343;22803;61261;61261;7743;19225;13737;4085;7569;3573;2478;2570;648;6513;3114;0;1668;16684;38420;43573;25571;24279
-12;'044;Bahamas;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1114;883;1403;1898;1373;3706;1918;2144;1317;1210;2189;3842;1083;1391;3737;3737;1049;1968;1710;520;1598;836;369;568;65;1175;1042;0;429;4887;9520;13192;9255;7506
-12;'044;Bahamas;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4034;4034;4034;4034;43;1325;2;2;128;181;181;181;181;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;187;187;187;187;2;70;0;0;4;9;10;0;0;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-12;'044;Bahamas;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7790;2049;90;1417;69;0;600;200;500;700;900;400;214;1638;6065;6065;16146;9068;10453;8672;3280;5687;4431;5861;6547;2456;1229;1756;4238;13991;42310;13255;36494;19531
-12;'044;Bahamas;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;64;8;144;6;0;136;77;101;253;254;385;51;113;405;405;1099;691;748;1255;221;407;497;409;454;902;412;504;1635;5085;5198;4888;12198;4032
-12;'044;Bahamas;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;1378;2404;1000;100;0;0;0;0;0;0;2385;54;54;54;0;0;0;0;453;453;464;464;0;0;151;15;0;0;0;0;0
-12;'044;Bahamas;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;435;214;100;65;0;0;0;0;0;0;141;3;3;3;0;0;0;0;65;65;76;76;0;3;48;4;0;0;0;0;0
-12;'044;Bahamas;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;21;21;21;114;18;28;108;2;5;22;2;2;33;117;15;708;1956;1412;531;18;139
-12;'044;Bahamas;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;6;6;6;41;94;60;690;5;32;206;22;22;14;54;7;223;287;362;179;8;42
-12;'044;Bahamas;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;1378;2404;1000;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;61;61;72;72;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;435;214;100;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;42;42;53;53;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7790;2049;90;1417;69;0;600;200;500;700;900;400;145;1617;6044;6044;16032;9050;10425;8564;3278;5682;4409;5859;6545;2423;1112;1741;3530;12035;40898;12724;36476;19392
-12;'044;Bahamas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;64;8;144;6;0;136;77;101;253;254;385;28;107;399;399;1058;597;688;565;216;375;291;387;432;888;358;497;1412;4798;4836;4709;12190;3990
-12;'044;Bahamas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2385;54;54;54;0;0;0;0;392;392;392;392;0;0;151;15;0;0;0;0;0
-12;'044;Bahamas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;3;3;3;0;0;0;0;23;23;23;23;0;3;48;4;0;0;0;0;0
-12;'044;Bahamas;1868;Sawlogs and veneer logs;5516;Production;m3;10000;10000;10000;12000;12000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000
-12;'044;Bahamas;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;14000;10500;10500;1400;1400;1400;1400;1400;2300;2300;2300;2300;3400;100;100;100;100;300;300;11700;14400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;490;374;374;40;40;55;83;97;195;195;195;195;160;6;6;6;6;22;22;924;1680;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;10000;10000;10000;12000;12000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-12;'044;Bahamas;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;14000;10500;10500;1400;1400;1400;1400;1400;2300;2300;2300;2300;3400;100;100;100;100;300;300;11700;14400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;490;374;374;40;40;55;83;97;195;195;195;195;160;6;6;6;6;22;22;924;1680;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-12;'044;Bahamas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;242300;335800;242200;409500;337500;358200;330600;362900;418100;380100;373200;382000;283500;183100;99500;99500;52500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;2789;3603;2500;4284;3639;4040;3680;4030;5510;6044;6234;6346;4196;2715;1563;1990;1207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1870;Pulpwood and particles (1961-1997);5516;Production;m3;242000;336000;242200;410000;338000;358200;331000;363000;418100;380100;373000;382000;284000;183000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;242300;335800;242200;409500;337500;358200;330600;362900;418100;380100;373200;382000;283500;183100;99500;99500;52500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;2789;3603;2500;4284;3639;4040;3680;4030;5510;6044;6234;6346;4196;2715;1563;1990;1207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;242000;336000;242200;410000;338000;358200;331000;363000;418100;380100;373000;382000;284000;183000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1871;Other industrial roundwood;5616;Import quantity;m3;;100;100;100;200;100;100;100;1000;1000;1000;1500;1300;1500;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1871;Other industrial roundwood;5622;Import value;1000 USD;;24;24;14;28;38;16;16;80;62;62;145;163;290;331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;100;100;100;200;100;100;100;1000;1000;1000;1500;1300;1500;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;24;24;14;28;38;16;16;80;62;62;145;163;290;331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1630;Wood charcoal;5510;Production;t;345;354;362;371;380;389;398;408;317;327;342;62;65;208;255;162;265;259;236;242;281;290;608;603;618;635;654;670;690;712;746;768;775;781;808;819;861;887;908;929;946;962;979;997;1014;1026;1038;1050;1062;1074;1084;1094;1105;1115;1125;1131;1137;1143;1149;1155;1161;1167;1172
-12;'044;Bahamas;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;100;100;100;400;;;;;;;;;;;;;;;;;;;;;13;29;29;29;0;0;0;0;1500;23;36;36;36;176;7950;155;94;95;188;66;49;62;923;22;27;75;216;199;33;278;272
-12;'044;Bahamas;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;16;13;13;24;;;;;;;;;;;;;;;;;;;;;7;12;12;12;0;0;0;0;104;9;27;27;27;46;3435;147;168;148;104;95;157;122;168;21;14;70;119;115;31;210;213
-12;'044;Bahamas;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;0;0;0;0;0
-12;'044;Bahamas;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;0;0;0;0;0
-12;'044;Bahamas;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;1300;1300;10100;10180;2430;13258;13258;4024;1557;1419;679;710;608;851;786;1289;2334;760;201;237;3984;3704;1154;6545;9345
-12;'044;Bahamas;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;109;109;456;593;277;702;702;409;925;825;518;501;446;590;486;805;783;77;30;92;318;1041;146;588;903
-12;'044;Bahamas;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2556
-12;'044;Bahamas;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222
-12;'044;Bahamas;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;1029;225;225;700;3600;4000;1300;1300;600;680;2429;13193;13193;4018;705;950;338;406;341;531;625;852;1878;666;142;66;3732;3238;643;6415;7960
-12;'044;Bahamas;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;72;21;21;48;528;596;109;109;101;238;273;699;699;397;275;451;185;210;191;302;343;462;530;55;16;24;246;237;49;549;790
-12;'044;Bahamas;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122
-12;'044;Bahamas;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192
-12;'044;Bahamas;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;283;283;283;300;0;0;0;0;9500;9500;1;65;65;6;852;469;341;304;267;320;161;437;456;94;59;171;252;466;511;130;1385
-12;'044;Bahamas;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;11;0;0;0;0;355;355;4;3;3;12;650;374;333;291;255;288;143;343;253;22;14;68;72;804;97;39;113
-12;'044;Bahamas;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434
-12;'044;Bahamas;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30
-12;'044;Bahamas;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;771;89;1073;774
-12;'044;Bahamas;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;134;41;349;223
-12;'044;Bahamas;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;187;68;145;88
-12;'044;Bahamas;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;34;29;45;25
-12;'044;Bahamas;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;584;21;928;686
-12;'044;Bahamas;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;100;12;304;198
-12;'044;Bahamas;1872;Sawnwood;5516;Production;m3;6600;6000;5600;6600;6200;5700;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400
-12;'044;Bahamas;1872;Sawnwood;5616;Import quantity;m3;40300;26200;27100;33300;33200;40000;44300;44300;85000;60000;60000;27900;26700;23200;17900;27900;30900;30900;41100;36000;33000;30700;32300;35600;34000;66000;50000;83000;113000;120500;56300;93375;90466;128942;111000;98200;122900;75400;84100;6188;3964;8000;3630;6090;5727;4126;1078;6174;10903;36363;37196;42567;43631;53850;54936;107300;28543;43292;43967;81962;96393;93350;73356
-12;'044;Bahamas;1872;Sawnwood;5622;Import value;1000 USD;2200;1421;1532;1885;1800;2426;2753;2753;4830;3693;3693;2408;2745;2626;1840;2176;2283;2283;4000;5000;5000;4800;5300;5800;5500;10600;8100;11142;10579;12047;6543;8823;8235;10980;11789;14383;14376;15360;17405;989;725;1933;1296;1903;1724;1783;1082;3988;6158;11872;11980;15557;17830;22677;22851;28753;8474;12245;18405;26849;40600;38686;29956
-12;'044;Bahamas;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;61;242;200;700;0;200;1500;1900;300;60;261;1684;1684;1684;1623;1685;1588;0;5;14;5;9;83;9;1;106;4;0;0;12;0
-12;'044;Bahamas;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;11;35;32;125;0;46;245;321;43;23;173;294;294;294;288;393;266;0;9;5;22;2;57;2;1;49;61;0;0;4;0
-12;'044;Bahamas;1632;Sawnwood, coniferous;5516;Production;m3;6600;6000;5600;6600;6200;5700;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400
-12;'044;Bahamas;1632;Sawnwood, coniferous;5616;Import quantity;m3;40300;26200;27100;33300;33200;40000;44300;44300;85000;60000;60000;27900;26700;23200;17900;27900;30900;30900;41100;36000;33000;30700;32300;35600;34000;66000;50000;83000;113000;120500;56300;91780;88065;127618;109500;94800;121300;74000;83000;4488;3464;2710;1850;920;557;1333;603;4777;10094;34731;33602;38560;39091;46516;47850;104956;26445;40318;41313;78265;91978;88417;68490
-12;'044;Bahamas;1632;Sawnwood, coniferous;5622;Import value;1000 USD;2200;1421;1532;1885;1800;2426;2753;2753;4830;3693;3693;2408;2745;2626;1840;2176;2283;2283;4000;5000;5000;4800;5300;5800;5500;10600;8100;11142;10579;12047;6543;8106;7448;10337;10788;12184;13248;14220;16506;203;205;140;138;326;147;431;170;1469;3062;10416;9799;12169;14216;17123;16910;27391;7497;10420;16941;25194;38400;36053;27753
-12;'044;Bahamas;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;61;235;200;700;0;200;1500;1900;300;2;2;1583;1583;1583;1583;1583;1583;0;0;14;0;4;31;9;0;0;0;0;0;12;0
-12;'044;Bahamas;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;11;32;32;125;0;46;245;321;43;7;7;264;264;264;264;264;264;0;0;5;0;1;10;2;0;0;0;0;0;4;0
-12;'044;Bahamas;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1595;2401;1324;1500;3400;1600;1400;1100;1700;500;5290;1780;5170;5170;2793;475;1397;809;1632;3594;4007;4540;7334;7086;2344;2098;2974;2654;3697;4415;4933;4866
-12;'044;Bahamas;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;787;643;1001;2199;1128;1140;899;786;520;1793;1158;1577;1577;1352;912;2519;3096;1456;2181;3388;3614;5554;5941;1362;977;1825;1464;1655;2200;2633;2203
-12;'044;Bahamas;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;58;259;101;101;101;40;102;5;0;5;0;5;5;52;0;1;106;4;0;0;0;0
-12;'044;Bahamas;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;16;166;30;30;30;24;129;2;0;9;0;22;1;47;0;1;49;61;0;0;0;0
-12;'044;Bahamas;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;101;13;100;400;1700;1200;900;700;700;4;2;644;644;298;391;386;35;13;11;30;1358;1230;982;572;252;254;239;468;570;408;329
-12;'044;Bahamas;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;39;27;116;324;2053;1321;1102;831;831;26;120;502;502;515;292;280;145;1628;1005;1180;1462;1471;966;776;411;641;705;1266;1402;1734;1673
-12;'044;Bahamas;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;13000;10000;10000;7000;6100;5900;4500;7000;8700;8700;4800;4800;4800;5000;5300;4300;11000;15000;7000;20000;20400;18000;14900;19282;20678;20926;18300;14900;15400;12600;15300;16400;18900;4430;4455;14891;14891;21630;23865;14762;3605;13917;20300;28626;26393;34609;32406;22498;14471;16629;20909;33034;42782;42103;40475
-12;'044;Bahamas;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;1798;1426;1426;1234;1453;1502;1227;1234;1531;1531;1531;1531;1531;1650;1750;1400;2985;4752;3115;8231;9428;8173;3066;4205;4749;5386;4620;4930;4628;3826;4815;4716;4471;452;952;3446;3446;6252;6190;8901;3564;6182;10737;14686;16464;19658;18461;12453;9730;11798;12952;15690;21035;23819;18379
-12;'044;Bahamas;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;0;0;0;0;0;0;0;0;39;8;8;8;74;36;6;3;25;21;34;21;891;964;224;8;0;0;0;0;19
-12;'044;Bahamas;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;0;18;2;2;2;61;28;6;2;14;44;41;24;324;330;99;6;11;0;0;18;18
-12;'044;Bahamas;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;13000;10000;10000;7000;6100;5900;4500;7000;8700;8700;4800;4800;4800;5000;5300;4300;11000;15000;7000;20000;20400;18000;14900;18999;20136;20017;18000;14600;15000;12200;15000;14000;14000;29;238;6889;6889;17795;23078;14139;3214;11104;17145;25324;23078;28609;28558;18363;14088;15642;20062;32886;40769;41727;39887
-12;'044;Bahamas;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;1798;1426;1426;1234;1453;1502;1227;1234;1531;1531;1531;1531;1531;1650;1750;1400;2985;4752;3115;8231;9428;8173;3066;4152;4543;5039;4480;4793;4459;3657;4725;4086;4086;90;627;2446;2446;5707;4488;7574;874;5185;9732;13636;15112;17827;17059;11056;9105;9966;12263;15420;20003;22908;17608
-12;'044;Bahamas;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;8;8;8;74;36;6;3;25;17;30;17;887;960;224;8;0;0;0;0;19
-12;'044;Bahamas;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;2;2;2;61;28;6;2;14;38;35;18;318;324;99;6;11;0;0;18;18
-12;'044;Bahamas;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-12;'044;Bahamas;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-12;'044;Bahamas;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;497;781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;192;298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;300;300;100;1500;600;363;179;4449;4449;517;276;201;42;2700;3100;3200;3000;4900;3600;3600;143;143;131;41;584;103;190
-12;'044;Bahamas;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;147;147;45;466;171;178;125;730;730;265;891;884;764;671;766;799;748;1214;900;900;91;91;287;55;188;135;181
-12;'044;Bahamas;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;0;0;0;0;0;0;0
-12;'044;Bahamas;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;0;0;0;0;0;0;0
-12;'044;Bahamas;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;39;39;39;55;87;87;33;3;3;0;50;140;73;68;68;9;7;8;5;88
-12;'044;Bahamas;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;6;6;6;115;112;112;11;8;8;0;16;42;46;25;25;3;2;7;13;78
-12;'044;Bahamas;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;45;128;100;100;100;100;200;900;4300;4001;4001;3514;3514;3279;456;335;262;80;52;99;315;1050;108;462;172;776;707;100;1421;268;310
-12;'044;Bahamas;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;14;49;19;16;22;22;45;164;214;180;196;264;264;274;696;331;1814;315;231;243;604;601;460;451;509;1716;399;213;837;763;512
-12;'044;Bahamas;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-12;'044;Bahamas;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-12;'044;Bahamas;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;1;1;192;192;217;205;35;116;2;2;2;2;2;2;4;12;236;2;0;306;1;4
-12;'044;Bahamas;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;14;30;89;89;121;200;76;1379;33;33;33;33;33;33;2;8;270;2;1;234;4;24
-12;'044;Bahamas;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;2900;2900;2900;2900;2900;55;54;139;74;36;80;307;1044;87;439;86;503;98;98;1010;186;301
-12;'044;Bahamas;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;121;121;74;64;399;239;156;141;475;519;326;348;428;1419;241;185;580;682;475
-12;'044;Bahamas;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-12;'044;Bahamas;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-12;'044;Bahamas;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;20;103;100;100;100;100;200;900;1100;1100;1100;422;422;162;196;246;7;4;14;17;6;4;19;19;74;37;607;2;105;81;5
-12;'044;Bahamas;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;41;19;16;22;22;45;164;45;45;45;54;54;32;422;191;36;43;42;69;96;49;101;101;73;27;156;27;23;77;13
-12;'044;Bahamas;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;25;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-12;'044;Bahamas;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;1717;539;587;587;587;587;587;587
-12;'044;Bahamas;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;115;460;600;600;400;700;800;900;3000;3466;3231;1911;1911;1485;467;269;71;144;94;64;48;16;39;22;24;102;394;42;57;6;154
-12;'044;Bahamas;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;59;118;85;85;80;117;148;142;1453;1302;1215;267;267;222;124;113;64;142;79;47;24;11;29;20;19;31;312;16;21;3;104
-12;'044;Bahamas;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;100;100;0;0;0;0;0;0;58;25;25;109;109;217;478;1005;411;734;199;199;301;1916;738;786;482;291;291;469;469
-12;'044;Bahamas;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;19;19;0;0;0;0;0;0;9;2;2;47;47;152;161;186;218;266;149;149;162;471;303;318;189;161;161;210;210
-12;'044;Bahamas;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;107;135;0;0;0;0;100;100;2900;2389;2134;214;214;161;146;32;30;33;47;32;36;14;22;22;22;22;368;19;21;1;142
-12;'044;Bahamas;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;56;64;0;0;0;0;31;37;1423;1222;1110;79;79;60;57;13;12;10;21;11;13;7;19;19;19;19;306;11;15;2;102
-12;'044;Bahamas;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;91;91;199;199;199;199;199;199;199;199;199;199;199;199;199;199;200;200
-12;'044;Bahamas;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;44;44;149;149;149;149;149;149;149;149;149;149;149;149;149;149;151;151
-12;'044;Bahamas;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;107;135;0;0;0;0;100;100;100;106;114;221;221;162;153;43;35;29;29;29;33;13;12;12;12;12;368;19;19;1;137
-12;'044;Bahamas;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;56;64;0;0;0;0;31;37;37;40;41;83;83;63;59;19;17;11;11;11;13;6;6;6;6;6;306;11;11;1;88
-12;'044;Bahamas;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;91;91;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199
-12;'044;Bahamas;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;44;44;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149
-12;'044;Bahamas;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137
-12;'044;Bahamas;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88
-12;'044;Bahamas;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;;;;;;;
-12;'044;Bahamas;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;;;;;;;
-12;'044;Bahamas;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14;14;14;15;15;15;15;15;15;15;15;0;0;0;;;;;;;
-12;'044;Bahamas;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;4;3;3;3;3;3;3;3;3;0;0;0;;;;;;;
-12;'044;Bahamas;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;107;135;0;0;0;0;100;100;100;100;100;193;193;133;124;14;12;12;12;12;12;10;10;10;10;10;368;19;19;1;0
-12;'044;Bahamas;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;56;64;0;0;0;0;31;37;37;37;37;70;70;51;47;7;6;6;6;6;6;4;4;4;4;4;306;11;11;1;0
-12;'044;Bahamas;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;91;91;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199
-12;'044;Bahamas;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;44;44;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149
-12;'044;Bahamas;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;0;0;0;0;80;80;20;20;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0
-12;'044;Bahamas;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;28;28;9;9;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0
-12;'044;Bahamas;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;57;57;0;0;0;0;0;0;0;0;0;13;13;13;4;10;8;8;8;8;8;8;8;8;8;8;366;19;19;1;0
-12;'044;Bahamas;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;45;45;0;0;0;0;0;0;0;0;0;5;5;5;1;4;3;3;3;3;3;3;3;3;3;3;305;11;11;1;0
-12;'044;Bahamas;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;91;91;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199;199
-12;'044;Bahamas;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;44;44;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149
-12;'044;Bahamas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;0;0;0;0;100;100;100;100;100;100;100;100;100;2;2;2;2;2;2;0;0;0;;;;;;;
-12;'044;Bahamas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;31;37;37;37;37;37;37;37;37;2;2;2;2;2;2;0;0;0;;;;;;;
-12;'044;Bahamas;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;8;2;2;2;2;2;2;2;2;2;0;0;0;0;0
-12;'044;Bahamas;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;8;2;2;2;2;2;2;2;2;2;0;0;0;0;0
-12;'044;Bahamas;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2800;2283;2020;7;7;13;7;3;3;6;20;5;5;3;12;12;12;12;0;0;2;0;5
-12;'044;Bahamas;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1386;1182;1069;5;5;6;7;3;3;1;12;2;2;3;15;15;15;15;0;0;4;1;14
-12;'044;Bahamas;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-12;'044;Bahamas;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-12;'044;Bahamas;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;106;19;20;113;127;78;151;82;82;82;82;1;0;0;2;6
-12;'044;Bahamas;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;35;13;13;80;91;51;101;20;20;20;20;1;0;0;1;4
-12;'044;Bahamas;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;1717;539;587;587;587;587;587;587
-12;'044;Bahamas;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;8;325;600;600;400;700;700;800;100;1077;1097;1697;1697;1324;321;237;41;111;47;32;12;2;17;0;2;80;26;23;36;5;12
-12;'044;Bahamas;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;3;54;85;85;80;117;117;105;30;80;105;188;188;162;67;100;52;132;58;36;11;4;10;1;0;12;6;5;6;1;2
-12;'044;Bahamas;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;100;100;0;0;0;0;0;0;58;25;25;18;18;18;279;806;212;535;0;0;102;1717;539;587;283;92;92;269;269
-12;'044;Bahamas;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;19;19;0;0;0;0;0;0;9;2;2;3;3;3;12;37;69;117;0;0;13;322;154;169;40;12;12;59;59
-12;'044;Bahamas;1876;Paper and paperboard;5610;Import quantity;t;;4700;4400;4900;3600;3500;6100;6100;5000;5800;5800;4700;3900;3600;2700;4700;900;1200;1300;1400;1900;1600;1600;1100;900;6300;5900;7200;8500;4700;5700;5426;4971;5163;3900;4400;6300;5000;6300;8100;6900;6313;5586;9933;10507;11765;9267;8268;3333;4014;2857;2092;2363;2596;2349;7506;6411;7413;1545;1392;4889;2434;2442
-12;'044;Bahamas;1876;Paper and paperboard;5622;Import value;1000 USD;;910;870;926;685;728;1133;1130;1108;1118;1118;892;1050;1344;1239;1840;439;580;669;755;1005;925;935;681;658;5905;5815;13872;21217;6317;5149;4786;4672;4421;3913;5729;6803;5160;5372;5920;5571;5595;5499;7166;7488;9668;12152;13093;11286;11612;11004;9547;8938;9923;7841;8445;7499;9413;6302;3472;7348;7388;7571
-12;'044;Bahamas;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;137;236;236;100;0;0;0;0;0;59;187;507;507;622;712;659;674;705;705;652;651;625;918;918;918;918;518;191;205;86;135
-12;'044;Bahamas;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;100;203;203;158;0;0;0;0;0;51;163;426;426;559;635;632;701;730;730;682;691;690;697;697;697;697;446;204;210;98;155
-12;'044;Bahamas;2042;Graphic papers;5610;Import quantity;t;;700;500;1100;500;;1400;1400;1100;1500;1500;1300;500;700;800;1300;500;800;900;1000;1500;1200;1200;800;500;1000;600;3200;3200;1700;2400;2916;1901;3363;2100;1600;3000;2900;3600;3500;4100;4028;3402;5430;6004;5483;7444;6474;2733;1343;1524;1587;1799;1399;1915;3176;3114;4096;1167;1171;2352;1922;1847
-12;'044;Bahamas;2042;Graphic papers;5622;Import value;1000 USD;;101;69;156;64;;190;190;180;255;255;208;224;244;310;208;239;330;369;405;605;515;525;375;250;490;315;6864;7815;1661;2295;2382;1608;2317;1889;1433;3091;3158;2736;2688;3033;2978;2478;3350;3672;3697;7359;7946;7254;6282;6524;7131;6399;5306;6271;2849;2962;3919;4530;2225;2828;4695;4865
-12;'044;Bahamas;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;100;165;165;0;0;;;;;;;397;397;471;520;476;476;476;476;409;409;409;456;456;456;456;450;118;118;4;53
-12;'044;Bahamas;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;72;143;143;0;0;;;;;;;304;304;415;465;438;438;438;438;383;383;383;384;384;384;384;360;113;111;8;60
-12;'044;Bahamas;1671;Newsprint;5610;Import quantity;t;;700;500;1100;500;;1400;1400;600;1000;1000;1000;400;600;600;1000;400;700;800;900;1400;1100;1100;700;400;900;500;1200;1400;1400;1500;1442;489;1500;1600;800;900;300;1300;1100;3400;3368;2445;4092;4666;4388;3884;4500;1571;514;632;877;654;622;586;1561;1435;1437;465;545;646;856;772
-12;'044;Bahamas;1671;Newsprint;5622;Import value;1000 USD;;101;69;156;64;;190;190;80;140;140;143;136;191;171;143;164;255;294;330;530;440;450;300;170;400;215;1048;1075;1075;1381;1018;471;783;815;556;528;135;763;579;2675;1993;1396;2295;2617;2461;2487;2782;2689;2127;2280;2555;2158;1812;1378;945;718;780;886;407;495;680;720
-12;'044;Bahamas;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-12;'044;Bahamas;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;500;500;500;300;100;100;200;300;100;100;100;100;100;100;100;100;100;100;100;2000;1800;300;900;1474;1412;1863;500;800;2100;2600;2300;2400;700;660;957;1338;1338;1095;3560;1974;1162;829;892;710;1145;777;1329;1615;1679;2659;702;626;1706;1066;1075
-12;'044;Bahamas;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;100;115;115;65;88;53;139;65;75;75;75;75;75;75;75;75;80;90;100;5816;6740;586;914;1364;1137;1534;1074;877;2563;3023;1973;2109;358;985;1082;1055;1055;1236;4872;5164;4565;4155;4244;4576;4241;3494;4893;1904;2244;3139;3644;1818;2333;4015;4145
-12;'044;Bahamas;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;100;165;165;0;0;;;;;;;397;397;471;520;476;476;476;476;409;409;409;456;456;456;456;450;118;118;4;53
-12;'044;Bahamas;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;72;143;143;0;0;;;;;;;304;304;415;465;438;438;438;438;383;383;383;384;384;384;384;360;113;111;8;60
-12;'044;Bahamas;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2300;2400;100;252;139;146;146;304;509;634;201;257;233;245;215;179;258;67;87;87;215;271;1;445;381
-12;'044;Bahamas;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3023;1973;2109;257;437;262;115;115;360;1230;1950;1775;1983;1691;1995;1617;1417;1990;79;86;86;1268;529;14;1128;945
-12;'044;Bahamas;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;70;70;70;70;70;70;3;3;3;50;50;50;50;50;4;4;4;50
-12;'044;Bahamas;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;60;60;60;60;60;60;5;5;5;6;6;6;6;6;8;6;8;8
-12;'044;Bahamas;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;587;731;731;400;2552;809;806;478;509;382;815;498;889;1225;1286;1405;391;306;1272;567;614
-12;'044;Bahamas;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;526;577;577;387;2590;2290;2196;1625;2048;2195;2227;1594;2280;1347;1666;1811;1932;1104;1676;2548;2727
-12;'044;Bahamas;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0
-12;'044;Bahamas;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;52;25;25;25;25;25;25;25;25;25;25;25;1;1;1;0;1
-12;'044;Bahamas;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;226;231;461;461;391;499;531;155;94;150;83;115;100;182;323;306;1167;96;49;433;54;80
-12;'044;Bahamas;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;257;294;363;363;489;1052;924;594;547;505;386;397;483;623;478;492;1242;444;185;643;339;473
-12;'044;Bahamas;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;308;400;400;400;400;400;400;400;400;400;400;400;400;400;400;114;114;0;3
-12;'044;Bahamas;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;236;353;353;353;353;353;353;353;353;353;353;353;353;353;353;104;104;0;51
-12;'044;Bahamas;1675;Other paper and paperboard;5610;Import quantity;t;;4000;3900;3800;3100;3500;4700;4700;3900;4300;4300;3400;3400;2900;1900;3400;400;400;400;400;400;400;400;300;400;5300;5300;4000;5300;3000;3300;2510;3070;1800;1800;2800;3300;2100;2700;4600;2800;2285;2184;4503;4503;6282;1823;1794;600;2671;1333;505;564;1197;434;4330;3297;3317;378;221;2537;512;595
-12;'044;Bahamas;1675;Other paper and paperboard;5622;Import value;1000 USD;;809;801;770;621;728;943;940;928;863;863;684;826;1100;929;1632;200;250;300;350;400;410;410;306;408;5415;5500;7008;13402;4656;2854;2404;3064;2104;2024;4296;3712;2002;2636;3232;2538;2617;3021;3816;3816;5971;4793;5147;4032;5330;4480;2416;2539;4617;1570;5596;4537;5494;1772;1247;4520;2693;2706
-12;'044;Bahamas;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;71;71;100;0;0;0;0;0;59;187;110;110;151;192;183;198;229;229;243;242;216;462;462;462;462;68;73;87;82;82
-12;'044;Bahamas;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;28;60;60;158;0;0;0;0;0;51;163;122;122;144;170;194;263;292;292;299;308;307;313;313;313;313;86;91;99;90;95
-12;'044;Bahamas;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865;1002;1405;1405;1006;694;711;161;173;112;91;116;98;285;1258;1261;1225;198;142;893;337;379
-12;'044;Bahamas;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242;1546;1546;1546;1507;1502;1829;1241;1132;1002;803;1032;868;890;2368;2338;2558;968;756;2342;1335;1482
-12;'044;Bahamas;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;187;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;1;1;4;0;0
-12;'044;Bahamas;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;163;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;8;8;8;0;1
-12;'044;Bahamas;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1210;781;2038;2038;4004;796;673;246;2267;1019;292;328;886;65;2350;2004;2050;165;74;1542;164;204
-12;'044;Bahamas;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1291;1163;1044;1264;1264;3130;2066;2057;1662;2735;2235;888;659;2344;366;2629;2057;2611;713;411;1601;1163;1038
-12;'044;Bahamas;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;60;60;75;106;106;124;124;100;100;100;100;100;67;72;83;82;82
-12;'044;Bahamas;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;41;41;110;139;139;125;125;119;119;119;119;119;78;83;91;90;94
-12;'044;Bahamas;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;114;321;321;1936;9;10;4;55;28;10;33;16;23;162;246;103;10;3;1041;21;15
-12;'044;Bahamas;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;140;199;199;1167;36;41;22;63;35;27;59;24;57;174;187;157;44;26;677;482;57
-12;'044;Bahamas;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-12;'044;Bahamas;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34
-12;'044;Bahamas;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;124;732;732;373;22;33;12;1941;702;196;261;605;6;501;81;332;11;7;230;21;9
-12;'044;Bahamas;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;259;454;454;472;143;101;91;1138;895;212;332;673;42;662;152;461;65;34;466;76;92
-12;'044;Bahamas;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;52;52;52;52;52;52;52;52;52;20;24;35;35;35
-12;'044;Bahamas;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;40;40;40;40;40;40;40;40;40;12;16;24;24;24
-12;'044;Bahamas;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;825;487;805;805;1678;740;604;198;226;260;47;26;262;29;1626;1616;1614;144;64;262;122;180
-12;'044;Bahamas;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1291;543;605;499;499;1470;1642;1678;1247;1436;1225;391;181;1614;202;1724;1649;1990;604;340;440;597;877
-12;'044;Bahamas;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;25;25;1;1;1;1;1;0;1;1;0;0
-12;'044;Bahamas;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;21;21;15;15;15;15;15;2;3;3;2;6
-12;'044;Bahamas;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;56;180;180;17;25;26;32;45;29;39;8;3;7;61;61;1;0;0;9;0;0
-12;'044;Bahamas;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;40;112;112;21;245;237;302;98;80;258;87;33;65;69;69;3;0;11;18;8;12
-12;'044;Bahamas;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39
-12;'044;Bahamas;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30
-12;'044;Bahamas;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1800;2800;3300;2100;2700;4600;1700;210;401;1060;1060;1272;333;410;193;231;202;122;120;213;84;722;32;42;15;5;102;11;12
-12;'044;Bahamas;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2104;2024;4296;3712;2002;2636;3232;1247;212;431;1006;1006;1334;1225;1261;1129;1463;1243;725;848;1405;314;599;142;325;91;80;577;195;186
-12;'044;Bahamas;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;20;22;13;13;13;13;9;8;6;252;252;252;252;0;0;0;0;0
-12;'044;Bahamas;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;11;7;31;31;31;31;52;61;66;72;72;72;72;0;0;0;0;0
-12;'044;Bahamas;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142447;109154;93180;78924;99529;126124;143089
-12;'044;Bahamas;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;747;668;209;940;528;484
-12;'044;Bahamas;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27894;24167;25627;18034;30362;31965;31892
-12;'044;Bahamas;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;13;28;2;0;21;64
-12;'044;Bahamas;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300;20997;22975;16354;28968;29375;27299
-12;'044;Bahamas;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;11;14;1;0;21;52
-12;'044;Bahamas;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594;3170;2652;1680;1394;2590;4593
-12;'044;Bahamas;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;14;1;0;0;12
-12;'044;Bahamas;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;615;210;252;474;603;395
-12;'044;Bahamas;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;211;156;77;91;192;197
-12;'044;Bahamas;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604;3492;2902;2766;2449;1911;2658
-12;'044;Bahamas;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;5;4;29;5;5
-12;'044;Bahamas;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22626;18175;12928;13889;13242;15785;14785
-12;'044;Bahamas;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;97;1;1;2;40;1
-12;'044;Bahamas;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42
-12;'044;Bahamas;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-12;'044;Bahamas;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15
-12;'044;Bahamas;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61
-12;'044;Bahamas;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84436;60249;50384;38198;48013;72031;82722
-12;'044;Bahamas;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;422;474;119;278;266;178
-12;'044;Bahamas;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426;771;1251;5882
-12;'044;Bahamas;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545;2456;1129;4359;4218;2578;4755
-12;'044;Bahamas;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;4;6;540;4;39
-12;'044;Bahamas;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38022;44546;33825;22189;39955;48960;53093
-12;'044;Bahamas;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;83;88;65;42;102;87
-12;'044;Bahamas;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;55;34;26;37;9;12
-12;'044;Bahamas;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30
-12;'044;Bahamas;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;1033;730;490;1219;1223;1187
-12;'044;Bahamas;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;6;6;0;0;0
-12;'044;Bahamas;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13012;15453;12654;7990;12641;15895;18737
-12;'044;Bahamas;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;1;0;1
-12;'044;Bahamas;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10347;9380;7221;4478;8576;10153;11065
-12;'044;Bahamas;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;7;27;1;23;5
-12;'044;Bahamas;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13898;18625;13186;9205;17482;21680;22092
-12;'044;Bahamas;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;41;45;2;10;49;51
-13;'048;Bahrain;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296030;348073;299887;271276;312123;332774;307065
-13;'048;Bahrain;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160218;147545;160641;100207;113111;131829;135972
-13;'048;Bahrain;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;1448;1452;1296;2295;2232;2816;4891;6070;6070;17590;29990;25789;19648;32708;32875;43837;49186;46215;34764;47190;73181;35885;29894;21690;21589;23773;17165;25999;33281;29314;29641;31570;25821;29064;30309;13289;61221;62804;65272;58587;105416;87418;58828;103099;100975;98329;108636;152993;135105;140181;128451;174770;133845;115996;138672;161786;132944
-13;'048;Bahrain;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;36;51;48;290;200;0;23;21;18380;7906;1871;14701;18346;29657;3031;2414;2464;5725;4709;12669;12275;8339;9232;8774;7498;9838;7980;6605;7537;16031;15092;12709
-13;'048;Bahrain;1861;Roundwood;5516;Production;m3;2569;2568;2566;2565;2564;2563;2562;2560;2559;2558;2545;2514;1857;1927;2117;2115;2185;2278;2433;2546;2756;2984;3093;3217;3429;3627;3838;3904;4097;4285;4410;4496;4602;3277;3421;4984;5102;5267;5426;5590;5700;5813;5928;6045;6164;6248;6333;6419;6506;6595;6680;6767;6855;6944;7035;7107;7180;7253;7328;7403;7478;7554;7630
-13;'048;Bahrain;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;1000;1200;1400;400;400;400;400;500;2500;11600;45500;56300;72000;72000;72000;32000;30000;30000;30000;30000;408;721;1013;1245;1773;1870;600;600;0;0;0;0;71;726;906;954;401;883;2592;1468;1833;851;2113;4600;2725;3729;6803;6070;2547;3725;2555;2082;1037;1246
-13;'048;Bahrain;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;35;60;72;29;29;29;29;40;377;1803;12724;11185;14177;14177;14177;3600;3600;3600;3600;3600;38;67;91;101;291;324;143;143;0;0;0;0;12;226;103;98;439;417;385;333;664;877;1713;1068;1612;2134;1276;583;440;281;199;329;593;639
-13;'048;Bahrain;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;59;60;161;161;1300;0;0;0;0;0;160;2152;256;256;4982;569;827;449;306;469;341;364;901;292;84;737;37;0;0;0;1;4
-13;'048;Bahrain;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;24;9;9;198;0;0;0;0;0;7;160;179;179;298;73;87;34;485;212;109;138;145;158;23;60;35;19;0;0;1;1
-13;'048;Bahrain;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5192;2005;3329;2228;1541;313;373
-13;'048;Bahrain;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;327;200;104;56;83;136
-13;'048;Bahrain;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;0;0;0;0;0;0
-13;'048;Bahrain;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;19;0;0;0;0
-13;'048;Bahrain;1863;Roundwood, non-coniferous;5516;Production;m3;2569;2568;2566;2565;2564;2563;2562;2560;2559;2558;2545;2514;1857;1927;2117;2115;2185;2278;2433;2546;2756;2984;3093;3217;3429;3627;3838;3904;4097;4285;4410;4496;4602;3277;3421;4984;5102;5267;5426;5590;5700;5813;5928;6045;6164;6248;6333;6419;6506;6595;6680;6767;6855;6944;7035;7107;7180;7253;7328;7403;7478;7554;7630
-13;'048;Bahrain;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;542;396;327;541;724;873
-13;'048;Bahrain;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;113;81;95;273;510;503
-13;'048;Bahrain;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;37;0;0;0;1;4
-13;'048;Bahrain;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;35;0;0;0;1;1
-13;'048;Bahrain;1864;Wood fuel;5516;Production;m3;2569;2568;2566;2565;2564;2563;2562;2560;2559;2558;2545;2514;1857;1927;2117;2115;2185;2278;2433;2546;2756;2984;3093;3217;3429;3627;3838;3904;4097;4285;4410;4496;4602;3277;3421;4984;5102;5267;5426;5590;5700;5813;5928;6045;6164;6248;6333;6419;6506;6595;6680;6767;6855;6944;7035;7107;7180;7253;7328;7403;7478;7554;7630
-13;'048;Bahrain;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;1430;0;0;0;0;0;0;3;44;44;44;54;143;118;118;349;129;279;980;1568;1568;620;105;105;2329;2276;1516;330;644
-13;'048;Bahrain;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;269;0;0;0;0;0;0;3;16;16;16;23;52;49;49;84;69;110;179;722;722;308;25;25;75;98;95;119;131
-13;'048;Bahrain;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;840;1;1;4862;100;100;100;100;17;17;40;192;18;3;;;;;;;4
-13;'048;Bahrain;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;48;161;161;231;8;8;8;8;1;1;30;80;15;2;;;;;;;1
-13;'048;Bahrain;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;1955;1955;1149;24;190
-13;'048;Bahrain;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;16;16;9;18;37
-13;'048;Bahrain;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-13;'048;Bahrain;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-13;'048;Bahrain;1628;Wood fuel, non-coniferous;5516;Production;m3;2569;2568;2566;2565;2564;2563;2562;2560;2559;2558;2545;2514;1857;1927;2117;2115;2185;2278;2433;2546;2756;2984;3093;3217;3429;3627;3838;3904;4097;4285;4410;4496;4602;3277;3421;4984;5102;5267;5426;5590;5700;5813;5928;6045;6164;6248;6333;6419;6506;6595;6680;6767;6855;6944;7035;7107;7180;7253;7328;7403;7478;7554;7630
-13;'048;Bahrain;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;374;321;367;306;454
-13;'048;Bahrain;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;59;82;86;101;94
-13;'048;Bahrain;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-13;'048;Bahrain;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-13;'048;Bahrain;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;1430;0;0;0;0;0;0;3;44;44;44;54;143;118;118;349;129;279;980;1568;1568;620;;;;;;;
-13;'048;Bahrain;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;269;0;0;0;0;0;0;3;16;16;16;23;52;49;49;84;69;110;179;722;722;308;;;;;;;
-13;'048;Bahrain;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;840;1;1;4862;100;100;100;100;17;17;40;192;18;3;;;;;;;
-13;'048;Bahrain;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;48;161;161;231;8;8;8;8;1;1;30;80;15;2;;;;;;;
-13;'048;Bahrain;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;1000;1200;1400;400;400;400;400;500;2500;11600;45500;56300;72000;72000;72000;32000;30000;30000;30000;30000;408;721;1013;1245;343;440;600;600;0;0;0;0;68;682;862;910;347;740;2474;1350;1484;722;1834;3620;1157;2161;6183;5965;2442;1396;279;566;707;602
-13;'048;Bahrain;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;35;60;72;29;29;29;29;40;377;1803;12724;11185;14177;14177;14177;3600;3600;3600;3600;3600;38;67;91;101;22;55;143;143;0;0;0;0;9;210;87;82;416;365;336;284;580;808;1603;889;890;1412;968;558;415;206;101;234;474;508
-13;'048;Bahrain;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;59;60;161;161;1300;0;0;0;0;0;0;1312;255;255;120;469;727;349;206;452;324;324;709;274;81;737;37;0;0;0;1;0
-13;'048;Bahrain;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;24;9;9;198;0;0;0;0;0;0;112;18;18;67;65;79;26;477;211;108;108;65;143;21;60;35;19;0;0;1;0
-13;'048;Bahrain;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;0;0;0;0;0;0;49;462;6;54;74;397;2233;967;960;99;1545;112;265;84;210;5090;1903;1374;273;392;289;183
-13;'048;Bahrain;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;0;0;5;28;11;6;36;122;136;59;57;5;541;7;19;3;19;326;303;184;88;47;65;99
-13;'048;Bahrain;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285;90;90;68;81;339;339;33;67;80;80;624;4;1;576;0;0;0;0;0;0
-13;'048;Bahrain;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;5;5;4;4;18;18;0;0;0;0;1;5;0;23;0;19;0;0;0;0
-13;'048;Bahrain;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;0;0;0;0;0;0;49;462;6;54;74;397;2233;967;960;99;1545;112;265;84;210;5090;1903;1374;273;392;289;183
-13;'048;Bahrain;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;0;0;5;28;11;6;36;122;136;59;57;5;541;7;19;3;19;326;303;184;88;47;65;99
-13;'048;Bahrain;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285;90;90;68;81;339;339;33;67;80;80;624;4;1;576;0;0;0;0;0;0
-13;'048;Bahrain;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;5;5;4;4;18;18;0;0;0;0;1;5;0;23;0;19;0;0;0;0
-13;'048;Bahrain;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;721;1013;1245;343;387;600;600;0;0;0;0;19;220;856;856;273;343;241;383;524;623;289;3508;892;2077;5973;875;539;22;6;174;418;419
-13;'048;Bahrain;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;67;91;101;22;49;143;143;0;0;0;0;4;182;76;76;380;243;200;225;523;803;1062;882;871;1409;949;232;112;22;13;187;409;409
-13;'048;Bahrain;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;59;60;161;161;1300;0;0;0;0;0;0;27;165;165;52;388;388;10;173;385;244;244;85;270;80;161;37;0;0;0;1;0
-13;'048;Bahrain;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;24;9;9;198;0;0;0;0;0;0;44;13;13;63;61;61;8;477;211;108;108;64;138;21;37;35;0;0;0;1;0
-13;'048;Bahrain;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;581;873;873;149;193;600;600;0;0;0;0;0;2;196;196;166;167;167;7;351;283;283;283;10;1267;2456;280;34;19;6;0;413;413
-13;'048;Bahrain;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;54;78;78;13;40;143;143;0;0;0;0;0;2;32;32;58;103;103;14;412;347;347;347;11;892;534;79;50;19;13;0;401;401
-13;'048;Bahrain;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;33;33;4;4;4;4;103;243;102;102;8;0;68;13;5;0;0;0;0;0
-13;'048;Bahrain;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;1;3;3;3;68;168;65;65;11;0;9;5;2;0;0;0;0;0
-13;'048;Bahrain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;140;140;372;194;194;0;0;0;0;0;0;19;218;660;660;107;176;74;376;173;340;6;3225;882;810;3517;595;505;3;0;174;5;6
-13;'048;Bahrain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;13;13;23;9;9;0;0;0;0;0;0;4;180;44;44;322;140;97;211;111;456;715;535;860;517;415;153;62;3;0;187;8;8
-13;'048;Bahrain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;59;60;161;161;1300;0;0;0;0;0;0;23;132;132;48;384;384;6;70;142;142;142;77;270;12;148;32;0;0;0;1;0
-13;'048;Bahrain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;24;9;9;198;0;0;0;0;0;0;42;8;8;62;58;58;5;409;43;43;43;53;138;12;32;33;0;0;0;1;0
-13;'048;Bahrain;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;1000;1200;1400;400;400;400;400;500;2500;11600;45500;56300;72000;72000;72000;32000;30000;30000;30000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;35;60;72;29;29;29;29;40;377;1803;12724;11185;14177;14177;14177;3600;3600;3600;3600;3600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;1000;1200;1400;400;400;400;400;500;2500;11600;45500;56300;72000;72000;72000;32000;30000;30000;30000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;35;60;72;29;29;29;29;40;377;1803;12724;11185;14177;14177;14177;3600;3600;3600;3600;3600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1630;Wood charcoal;5510;Production;t;413;413;412;412;412;411;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;0;0;14;0;0;0;0;0;0;108;0;187;470;0;0;0;0;0;900;918;936;955;974;994;1007;1021;1035;1049;1063;1077;1091;1106;1120;1125;1146;1158;1170;1182;1194;1206;1218;1231
-13;'048;Bahrain;1630;Wood charcoal;5610;Import quantity;t;;;;;;;1000;1000;1000;1300;1300;2900;2900;2900;2900;2900;1900;1400;1400;500;400;1200;1200;500;1000;1000;1000;1000;1000;1000;600;934;552;287;1483;1600;1600;2500;1400;1400;1900;1252;2972;1;1;2208;3946;765;2190;3836;7223;4261;6523;8725;12009;10792;5129;8158;9672;6353;6559;10291;8693
-13;'048;Bahrain;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;104;103;132;130;100;202;202;202;202;202;147;261;261;424;236;351;351;180;385;385;385;385;385;385;112;165;121;70;361;434;475;635;337;337;434;436;1198;779;779;937;1477;336;876;2149;2785;1983;2879;4867;6618;5987;2611;3654;5815;4192;4622;8430;6830
-13;'048;Bahrain;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;105;105;105;393;20;20;20;749;749;749;749;1312;367;3361;3361;3361;161;30;52;4;43
-13;'048;Bahrain;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;48;48;48;141;6;6;6;83;83;83;83;574;215;1070;1070;1070;114;20;71;10;34
-13;'048;Bahrain;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;63;534;3659;3659;1338;2732;494;435;1617;1596;327;1735;453;1652;1277;1249;207;368;7180;7778;415;5795
-13;'048;Bahrain;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;184;145;145;166;513;198;229;498;411;140;444;281;885;621;400;73;256;254;145;178;553
-13;'048;Bahrain;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;2;21;15;71;36;204;158;155;169;386;328;328;41;39;55;434;1;80
-13;'048;Bahrain;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;2;6;11;5;28;13;12;11;49;86;86;28;2;2;6;2;9
-13;'048;Bahrain;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;91;162;162;106;1419;254;51;130;197;159;86;48;182;317;16;39;255;6928;7542;222;3196
-13;'048;Bahrain;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;30;9;9;24;231;76;13;61;102;55;36;65;151;160;29;26;229;196;91;112;317
-13;'048;Bahrain;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;134;134;134;134;21;21;21;8;13;418;0;29
-13;'048;Bahrain;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;7;7;7;7;25;25;25;0;1;3;1;2
-13;'048;Bahrain;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;156;156;300;300;0;0;0;0;42;443;3497;3497;1232;1313;240;384;1487;1399;168;1649;405;1470;960;1233;168;113;252;236;193;2599
-13;'048;Bahrain;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;13;13;0;0;0;0;1;154;136;136;142;282;122;216;437;309;85;408;216;734;461;371;47;27;58;54;66;236
-13;'048;Bahrain;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;2;21;15;71;24;192;24;21;35;252;307;307;20;31;42;16;1;51
-13;'048;Bahrain;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;2;6;11;2;25;6;5;4;42;61;61;3;2;1;3;1;7
-13;'048;Bahrain;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1067;999;1248;805;1131
-13;'048;Bahrain;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592;530;836;635;328
-13;'048;Bahrain;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2617;4572;3222;3148;3134
-13;'048;Bahrain;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574;990;702;1056;812
-13;'048;Bahrain;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;196;404;268;488
-13;'048;Bahrain;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;90;174;158;136
-13;'048;Bahrain;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2617;4559;3188;3049;3133
-13;'048;Bahrain;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;969;661;961;812
-13;'048;Bahrain;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;803;844;537;643
-13;'048;Bahrain;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;440;662;477;192
-13;'048;Bahrain;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;34;99;1
-13;'048;Bahrain;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;21;41;95;0
-13;'048;Bahrain;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1872;Sawnwood;5616;Import quantity;m3;;;;;;;22000;22500;19000;16200;15700;17200;25500;25500;25500;81000;124000;70600;27000;34000;30000;40000;52000;45000;50000;60000;60000;60000;40000;22381;18300;35413;20124;23823;37743;30000;32900;38100;32400;48209;49915;39687;55503;67460;79585;36954;63874;54237;39581;77233;63891;85229;99370;109965;72734;73577;109577;114005;98101;82935;114407;86011;48909
-13;'048;Bahrain;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;1344;1349;1164;1256;1220;1397;2080;2080;2080;9100;15426;14530;6000;7600;6700;9000;11800;10200;11400;14000;14000;14000;10000;4372;3141;7056;3369;4089;9460;7007;5844;6514;4267;7510;9396;7528;13787;18375;20848;10568;29083;23577;12133;20311;18995;26114;27782;32514;19773;17455;27703;50222;23207;20032;29982;29100;14089
-13;'048;Bahrain;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;0;0;0;0;236;1230;1230;240;19;19;29;484;83;705;1122;585;288;75;623;621;30;10;389;0;0
-13;'048;Bahrain;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;111;223;223;193;34;34;42;163;31;99;139;216;190;27;113;201;12;67;334;0;0
-13;'048;Bahrain;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10554;19620;22327;15151;14500;22900;23000;11300;27109;35715;38134;34851;29836;41961;23524;43898;48845;32800;61453;52631;68282;85930;91510;57217;56890;88933;62140;83246;59285;93877;74011;40033
-13;'048;Bahrain;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1557;3057;3150;2215;2279;2844;3304;1476;4719;5747;6651;6152;6900;9373;6065;14106;18636;5987;13557;12171;14982;20108;22531;11109;9467;17669;11823;14367;10456;18793;20784;8528
-13;'048;Bahrain;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;61;1105;1105;83;2;2;2;301;70;680;1121;295;102;0;619;589;27;0;40;0;0
-13;'048;Bahrain;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;29;185;185;65;0;0;0;160;20;20;102;161;68;0;110;183;3;0;22;0;0
-13;'048;Bahrain;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;22000;22500;19000;16200;15700;17200;25500;25500;25500;81000;124000;70600;27000;34000;30000;40000;52000;45000;50000;60000;60000;60000;40000;22381;18300;24859;504;1496;22592;15500;10000;15100;21100;21100;14200;1553;20652;37624;37624;13430;19976;5392;6781;15780;11260;16947;13440;18455;15517;16687;20644;51865;14855;23650;20530;12000;8876
-13;'048;Bahrain;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;1344;1349;1164;1256;1220;1397;2080;2080;2080;9100;15426;14530;6000;7600;6700;9000;11800;10200;11400;14000;14000;14000;10000;4372;3141;5499;312;939;7245;4728;3000;3210;2791;2791;3649;877;7635;11475;11475;4503;14977;4941;6146;6754;6824;11132;7674;9983;8664;7988;10034;38399;8840;9576;11189;8316;5561
-13;'048;Bahrain;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;0;0;0;0;175;125;125;157;17;17;27;183;13;25;1;290;186;75;4;32;3;10;349;0;0
-13;'048;Bahrain;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;82;38;38;128;34;34;42;3;11;79;37;55;122;27;3;18;9;67;312;0;0
-13;'048;Bahrain;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669;109;51;25;200;200;300;500;500;100;7;1445;1250;1250;973;1486;211;287;2089;2058;3564;3856;2137;2250;4041;1048;2925;392;210;314;192;275
-13;'048;Bahrain;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;169;126;15;200;128;116;181;181;40;116;756;975;975;713;2135;729;598;1612;2559;3962;2859;3173;2866;3499;1971;3625;1437;1040;1027;1467;1216
-13;'048;Bahrain;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;6;49;49;14;7;7;7;123;2466;2051;1113;104;140;8;21;62;1;0;0;0;2
-13;'048;Bahrain;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;1;39;39;10;61;61;61;39;1575;1306;662;151;112;21;14;31;8;13;44;0;1
-13;'048;Bahrain;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;4100;2900;3900;14400;14400;14400;24000;65100;29600;21400;20400;35800;36100;43000;40000;35000;40000;98788;29630;36409;26447;27600;30847;10584;17216;18796;15400;16700;25100;19700;19700;23100;1451;73460;39802;39802;53956;53657;31089;28425;58996;67989;69761;60690;96025;76926;85849;89676;118623;101490;106152;125159;103459;65803
-13;'048;Bahrain;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;381;270;491;1600;1600;1600;6100;8977;7330;7100;7622;10065;13651;16200;15000;13200;16000;37281;9959;8806;8895;9149;11120;4475;8020;7554;6246;7236;8660;6862;6862;7646;964;18837;8900;8900;17343;36647;22936;20929;27471;28711;33340;28848;40217;42180;42348;38033;51051;36824;37168;45422;42738;32911
-13;'048;Bahrain;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;28;28;28;0;0;0;0;0;0;2;5;481;481;534;262;284;288;140;557;1254;1209;2664;6651;942;1307;1718;906;1629;1917;1757;2169
-13;'048;Bahrain;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12;12;12;0;0;0;0;0;0;2;3;78;78;129;237;324;354;336;561;695;877;1964;2210;649;379;524;527;504;564;842;1145
-13;'048;Bahrain;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;4100;2900;3900;14400;14400;14400;24000;65100;29600;21400;20400;35800;36100;43000;40000;35000;40000;98788;29630;36409;26447;27600;28959;8216;15221;15125;11000;13700;17000;12000;12000;12000;138;39946;5858;5858;28507;35016;15288;10328;35925;43823;52143;42817;44558;44915;56995;71886;58291;52442;52991;58995;45448;27920
-13;'048;Bahrain;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;381;270;491;1600;1600;1600;6100;8977;7330;7100;7622;10065;13651;16200;15000;13200;16000;37281;9959;8806;8895;9149;10377;3498;7304;6316;5101;6151;6568;4354;4354;4354;456;13648;2079;2079;12676;26115;14043;11489;14072;14030;22918;19514;24830;25426;28516;26778;26748;22018;19833;22249;19273;12246
-13;'048;Bahrain;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;28;28;28;0;0;0;0;0;0;0;0;3;3;61;1;24;24;35;299;1216;1173;2271;6340;826;1165;1536;63;1;1;0;119
-13;'048;Bahrain;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12;12;12;0;0;0;0;0;0;0;0;1;1;34;0;31;31;29;115;457;677;1185;1445;491;267;349;146;84;1;119;119
-13;'048;Bahrain;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;700;714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;237;247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1000;900;800;500;500;400;107;288;1164;1164;585;729;1111;3093;3592;3580;3746;609;899;695;791;5404;12739;12708;17930;18601;23373;17741
-13;'048;Bahrain;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;255;256;227;140;140;121;74;190;191;191;194;104;413;1217;1506;2132;2180;791;659;612;482;2252;9612;4092;5525;7077;9647;8411
-13;'048;Bahrain;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;6;2;236;236;236;67;226;5;5;24;27;23;91;91;635;1192;1285;1328;1390
-13;'048;Bahrain;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;8;147;147;147;42;250;0;0;8;16;13;81;81;132;303;394;528;586
-13;'048;Bahrain;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;114;114;112;869;869;35;52;201;35;146;83;228;72;0;65;87;49;59;67;291
-13;'048;Bahrain;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;19;19;150;516;516;51;76;65;17;67;63;82;43;0;23;20;8;38;25;93
-13;'048;Bahrain;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;1668;1281;2922;3400;2100;7300;7200;7200;10700;1206;33223;32666;32666;24752;17043;13821;14969;19427;20385;13837;17118;50485;31088;27991;12386;47528;36253;35182;47504;34571;19851
-13;'048;Bahrain;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;740;469;1039;890;829;1865;2368;2368;3171;434;4996;6611;6611;4323;9912;7964;8172;11817;12484;8225;8476;14665;16060;13307;9003;14668;10694;11802;16058;13793;12161
-13;'048;Bahrain;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;472;472;471;25;24;28;38;32;33;31;369;284;93;51;91;208;436;631;429;660
-13;'048;Bahrain;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;76;76;87;90;146;176;265;196;238;200;771;749;145;31;94;249;117;169;195;440
-13;'048;Bahrain;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;756;10204;5268;5268;3674;6728;1339;1199;1365;1801;557;736;1508;971;625;859;1237;980;1158;2236;1706;1098
-13;'048;Bahrain;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;323;1927;2444;2444;1514;3890;1317;1123;1374;1479;676;655;1475;1229;550;724;1016;713;813;1160;1109;939
-13;'048;Bahrain;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;1;1;1;1;1;1;1;16;31;47;47;47;47;47;47;47;1
-13;'048;Bahrain;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;13;13;13;13;13;13;13;13;22;44;19;19;19;19;19;19;19;1
-13;'048;Bahrain;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;1200;1900;5300;6000;6000;7000;41;12761;15613;15613;8918;7227;11103;11644;14194;13826;10626;13654;46378;26000;22197;10039;37185;29644;28848;39928;26983;13890
-13;'048;Bahrain;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;390;794;1343;1960;1960;2228;14;2076;2670;2670;1419;4236;5895;5428;8130;7905;5939;6346;11736;12607;10305;6651;11549;8819;9680;13427;11028;9838
-13;'048;Bahrain;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;13;23;17;18;16;339;251;44;2;42;131;269;582;374;644
-13;'048;Bahrain;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;131;161;250;181;223;185;747;696;117;3;66;230;93;141;175;435
-13;'048;Bahrain;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;218;379;1976;2200;200;2000;1200;1200;1600;409;10258;11785;11785;12160;3088;1379;2126;3868;4758;2654;2728;2599;4117;5169;1488;9106;5629;5176;5340;5882;4863
-13;'048;Bahrain;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;78;125;631;500;35;522;408;408;544;97;993;1497;1497;1390;1786;752;1621;2313;3100;1610;1475;1454;2224;2452;1628;2103;1162;1309;1471;1656;1384
-13;'048;Bahrain;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;470;470;14;14;14;14;14;14;14;14;2;2;2;2;30;120;2;8;15
-13;'048;Bahrain;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;2;2;2;2;2;2;2;2;9;9;9;9;0;5;9;1;4
-13;'048;Bahrain;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1036;1450;902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;385;662;344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-13;'048;Bahrain;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000;45000;55000;65000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-13;'048;Bahrain;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;100;5039;8613;11200;13000;11100;5200;5200;2100;460;12290;20197;20197;11957;14864;4577;4042;16777;9643;7712;21265;35594;31762;35702;35406;26634;21514;22592;21336;18649;24027
-13;'048;Bahrain;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;35;3397;7209;4310;5227;3765;2306;2306;999;181;5888;7969;7969;6041;9827;3075;1953;11540;8157;4827;16432;26926;24248;30687;25847;24721;19599;13001;15117;15604;17155
-13;'048;Bahrain;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;600;200;200;700;700;700;12832;24977;26323;23336;23391;29161;26210;29026;39271;44990;57291;59188;58193;64682;61480;61441;52993;59463;61898;40040
-13;'048;Bahrain;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;21;21;65;65;65;1270;1749;1672;1754;1781;5013;2196;9333;8940;5653;4378;4654;4901;6857;5023;4788;4727;8600;8611;6189
-13;'048;Bahrain;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;46;5039;8613;11200;13000;9800;5000;5000;2000;357;11787;17473;17473;11767;13756;4488;3953;15855;9492;7705;21213;35471;31652;35645;35376;26604;21503;22570;21119;17594;22972
-13;'048;Bahrain;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;29;3397;7209;4310;5227;3684;2264;2264;974;174;5771;7667;7667;5950;9559;3052;1930;11207;8057;4825;16390;26807;24132;30590;25812;24686;19581;12988;15040;15244;16795
-13;'048;Bahrain;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;255;255;263;263;263;263;311;567;559;559;559;537;537;537;482;482
-13;'048;Bahrain;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;252;252;266;266;266;266;320;359;345;345;345;277;277;277;250;250
-13;'048;Bahrain;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;46;5039;8590;11200;13000;9800;5000;5000;2000;353;12338;17709;17709;12736;13751;4545;4006;15833;9456;7669;21262;35437;31596;35632;35363;26586;21504;22571;21119;17585;22960
-13;'048;Bahrain;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;29;3397;7192;4310;5227;3684;2264;2264;974;171;6003;7554;7554;6417;9287;3073;1949;11082;7987;4755;16401;26769;23981;30582;25804;24708;19608;13015;15066;15245;16796
-13;'048;Bahrain;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;208;208;208;208;256;512;504;504;504;482;482;482;482;482
-13;'048;Bahrain;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;225;225;239;239;239;239;293;332;318;318;318;250;250;250;250;250
-13;'048;Bahrain;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3510;20;20;211;211;211;211;211;211;211;211;211;211;0;;;;;;;
-13;'048;Bahrain;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1885;7;7;91;91;91;91;91;91;91;91;91;91;0;;;;;;;
-13;'048;Bahrain;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;0;;;;;;;
-13;'048;Bahrain;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;0;;;;;;;
-13;'048;Bahrain;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;200;200;200;200;200;200;200;500;500;500;500;116;187;187;187;187;187;187;187;187;0;;;;;;;
-13;'048;Bahrain;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;100;100;100;100;100;100;100;210;210;210;210;90;94;94;94;94;94;94;94;94;0;;;;;;;
-13;'048;Bahrain;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;46;5039;8488;11000;12800;9600;4800;4800;1800;153;7320;16181;16181;11017;13340;4063;3524;15375;8998;7211;20804;35037;31196;35630;35361;26584;21502;22569;21117;17583;22958
-13;'048;Bahrain;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;29;3397;7145;4210;5127;3584;2164;2164;874;71;3403;6832;6832;5611;9039;2821;1697;10866;7771;4539;16185;26555;23767;30553;25775;24679;19579;12986;15037;15216;16767
-13;'048;Bahrain;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;248;504;504;504;504;482;482;482;482;482
-13;'048;Bahrain;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;225;225;225;225;225;225;279;318;318;318;318;250;250;250;250;250
-13;'048;Bahrain;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;4913;8402;11000;12800;9600;4800;4800;1700;104;7187;16101;16101;10988;13262;4013;3473;15324;8974;7208;20797;35034;31189;35628;35361;26581;21499;22568;21116;17583;22958
-13;'048;Bahrain;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;25;3296;7109;4210;5127;3584;2164;2164;820;43;3343;6794;6794;5591;8976;2771;1655;10824;7738;4533;16172;26546;23763;30548;25775;24673;19573;12980;15031;15214;16765
-13;'048;Bahrain;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;248;504;504;504;504;482;482;482;482;482
-13;'048;Bahrain;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;225;225;225;225;225;225;279;318;318;318;318;250;250;250;250;250
-13;'048;Bahrain;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;1;1;0;0
-13;'048;Bahrain;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;6;2;2
-13;'048;Bahrain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;5;126;86;0;0;0;0;0;100;49;133;80;80;29;78;50;51;51;24;3;7;3;7;2;;;;;;;
-13;'048;Bahrain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;4;101;36;0;0;0;0;0;54;28;60;38;38;20;63;50;42;42;33;6;13;9;4;5;;;;;;;
-13;'048;Bahrain;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008;1008;1008;1008;84;84;84;60;60;60;60;2;2;2;2;2;2;2;2;2;2
-13;'048;Bahrain;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;505;505;505;67;67;67;31;31;31;31;29;29;29;29;29;29;29;29;29;29
-13;'048;Bahrain;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;4;457;772;772;39;89;27;31;82;96;96;11;36;58;15;15;20;1;1;2;11;14
-13;'048;Bahrain;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;3;273;618;618;38;339;46;48;156;101;101;20;67;180;37;37;7;2;2;3;28;28
-13;'048;Bahrain;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;55;55;55;55;55;55;55;55;0;0
-13;'048;Bahrain;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;0;0
-13;'048;Bahrain;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;8;15;15;15;15;81;78;0;0;31;0;0;0;0;21;3;265
-13;'048;Bahrain;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;13;13;13;13;67;46;0;0;26;0;0;0;0;28;4;185
-13;'048;Bahrain;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;0;97;0;0;0;0;0;0;17;0;0
-13;'048;Bahrain;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;0;32;0;0;0;0;0;0;2;1;1
-13;'048;Bahrain;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000;45000;55000;65000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-13;'048;Bahrain;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;0;0;0;0;1300;200;200;100;103;503;2724;2724;190;1108;89;89;922;151;7;52;123;110;57;30;30;11;22;217;1055;1055
-13;'048;Bahrain;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;81;42;42;25;7;117;302;302;91;268;23;23;333;100;2;42;119;116;97;35;35;18;13;77;360;360
-13;'048;Bahrain;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;600;200;200;700;700;700;12832;24977;26323;23136;23136;28906;25947;28763;39008;44727;56980;58621;57634;64123;60921;60904;52456;58926;61416;39558
-13;'048;Bahrain;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;21;21;65;65;65;1270;1749;1672;1529;1529;4761;1930;9067;8674;5387;4058;4295;4556;6512;4678;4511;4450;8323;8361;5939
-13;'048;Bahrain;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-13;'048;Bahrain;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;1200;1600;1500;1800;1900;1900;1900;4900;3400;3000;2300;2400;4400;4400;4400;4100;15139;20541;7399;6341;7805;10500;5183;11218;12555;9372;11100;13600;15000;18600;18600;20900;5607;28018;36146;36146;30245;30339;44023;28412;42667;38290;33785;34420;48933;43239;48523;39050;46524;55081;53080;47477;60242;52578
-13;'048;Bahrain;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;493;582;654;980;2159;2159;2159;5400;3291;4484;4338;4689;6658;6658;6658;6179;13205;17915;7941;7103;8000;9120;4939;8893;10000;8352;10961;10575;11880;11868;11868;11794;4048;19840;25053;25053;21867;25243;36102;21697;38810;38436;26152;28247;43374;36372;38253;31274;40955;45805;39551;41135;63008;59009
-13;'048;Bahrain;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;62;204;0;0;0;0;10254;5600;1386;9338;12184;16954;584;320;201;237;645;393;800;702;658;686;782;529;1148;511;1307;4477;3607;3485
-13;'048;Bahrain;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;22;264;0;0;0;0;18359;7841;1797;14313;16508;27340;586;246;164;203;1401;845;1029;775;1761;1186;721;1259;1068;561;1214;5708;4569;4517
-13;'048;Bahrain;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;400;400;600;900;1500;1500;1500;2500;1300;2100;1700;1800;2400;2400;2400;2100;8156;9558;4121;3911;5535;4900;2747;7439;6058;4311;7500;4900;8100;11700;11700;8900;2773;12765;18580;18580;17014;17628;20912;16017;21704;21405;16823;17378;19513;18507;20940;19131;19482;19017;12001;11085;14779;13345
-13;'048;Bahrain;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;204;192;346;482;1659;1659;1659;2715;1707;3226;2690;3056;3479;3479;3479;3000;7905;9371;4289;4131;5665;4489;2764;5298;4503;4134;6629;4338;6716;7548;7548;5801;1902;11478;13076;13076;14106;15009;20434;13412;20764;22824;16276;15670;18174;17079;16817;16403;19989;18959;11501;10852;16433;17753
-13;'048;Bahrain;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;0;;;;;;134;115;115;235;134;55;84;283;279;268;268;319;432;321;111;662;252;44;204;57;285
-13;'048;Bahrain;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;0;;;;;;67;77;77;218;76;41;55;538;447;234;234;859;518;326;105;295;295;91;1809;165;339
-13;'048;Bahrain;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2663;2106;3327;5500;500;2300;2800;2800;4000;572;4865;5677;5677;7733;6352;7960;6110;6181;5731;1371;920;4843;2134;2546;6;223;1108;178;803;1114;604
-13;'048;Bahrain;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1162;889;2631;4535;288;1082;1201;1201;2310;217;2277;2896;2896;5872;4459;7619;5195;4314;4733;915;539;3417;1396;1429;3;135;764;101;394;678;484
-13;'048;Bahrain;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;41;41;20;105;23;18;128;128;128;128;128;1;1;1;1;1;0;0;0;0
-13;'048;Bahrain;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;19;19;12;50;11;8;153;153;153;153;153;6;6;6;6;1;0;0;1;1
-13;'048;Bahrain;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;400;400;600;900;1500;1500;1500;2500;1300;2100;1700;1800;2400;2400;2400;2100;8156;9558;4121;3911;5535;4900;2721;4776;3952;984;2000;4400;5800;8900;8900;4900;2201;7900;12903;12903;9281;11276;12952;9907;15523;15674;15452;16458;14670;16373;18394;19125;19259;17909;11823;10282;13665;12741
-13;'048;Bahrain;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;204;192;346;482;1659;1659;1659;2715;1707;3226;2690;3056;3479;3479;3479;3000;7905;9371;4289;4131;5665;4489;2753;4136;3614;1503;2094;4050;5634;6347;6347;3491;1685;9201;10180;10180;8234;10550;12815;8217;16450;18091;15361;15131;14757;15683;15388;16400;19854;18195;11400;10458;15755;17269
-13;'048;Bahrain;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;0;;;;;;110;74;74;215;29;32;66;155;151;140;140;191;431;320;110;661;251;44;204;57;285
-13;'048;Bahrain;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;0;;;;;;60;58;58;206;26;30;47;385;294;81;81;706;512;320;99;289;294;91;1809;164;338
-13;'048;Bahrain;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;1063;1063;586;263;459;692;692;976;1470;1681;1607;2443;1102;702;1399;1525;601;597;611;627;948;286;356;802;680
-13;'048;Bahrain;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;776;776;427;206;388;545;545;779;990;1442;1179;1618;1630;574;1146;1471;603;549;424;601;885;340;536;796;687
-13;'048;Bahrain;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;1;2;2;14;14;9;9;9;9;15;27;8;21;8;26;1;0;0;0
-13;'048;Bahrain;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;3;1;12;12;23;23;23;23;17;197;96;31;35;84;66;0;3;0
-13;'048;Bahrain;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1144;1755;1755;966;434;2833;4293;4293;1918;3934;2370;1948;4438;6846;7090;6693;5583;6402;7287;8384;8553;9457;5674;4419;6077;7257
-13;'048;Bahrain;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394;1571;1571;864;417;2511;3388;3388;1627;3602;2438;1843;5325;8166;7303;6495;5952;6483;7515;7150;9369;9390;5466;4584;7170;9695
-13;'048;Bahrain;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;74;7;1;1;39;35;78;78;42;57;266;65;219;133;37;101;32;220
-13;'048;Bahrain;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;28;3;4;1;150;59;56;56;111;66;155;50;63;136;13;1369;57;265
-13;'048;Bahrain;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963;6082;6082;3348;1504;4608;7918;7918;6387;5872;8901;6352;8642;7726;7660;8366;7562;9370;10510;10130;10079;7504;5863;5507;6786;4804
-13;'048;Bahrain;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3551;4000;4000;2200;1062;6302;6247;6247;5828;5958;8935;5195;9507;8295;7484;7490;7334;8597;7324;8826;9884;7920;5594;5338;7789;6887
-13;'048;Bahrain;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;71;71;139;20;17;51;107;107;53;53;134;347;46;24;434;92;6;103;25;65
-13;'048;Bahrain;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;175;22;14;34;212;212;2;2;578;249;69;18;191;74;12;440;104;73
-13;'048;Bahrain;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-13;'048;Bahrain;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;800;1200;900;900;400;400;400;2400;2100;900;600;600;2000;2000;2000;2000;6983;10983;3278;2430;2270;5600;2436;3779;6497;5061;3600;8700;6900;6900;6900;12000;2834;15253;17566;17566;13231;12711;23111;12395;20963;16885;16962;17042;29420;24732;27583;19919;27042;36064;41079;36392;45463;39233
-13;'048;Bahrain;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;289;390;308;498;500;500;500;2685;1584;1258;1648;1633;3179;3179;3179;3179;5300;8544;3652;2972;2335;4631;2175;3595;5497;4218;4332;6237;5164;4320;4320;5993;2146;8362;11977;11977;7761;10234;15668;8285;18046;15612;9876;12577;25200;19293;21436;14871;20966;26846;28050;30283;46575;41256
-13;'048;Bahrain;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;0;142;0;0;0;0;10254;5600;1386;9204;12069;16839;349;186;146;153;362;114;532;434;339;254;461;418;486;259;1263;4273;3550;3200
-13;'048;Bahrain;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;0;242;0;0;0;0;18359;7841;1797;14246;16431;27263;368;170;123;148;863;398;795;541;902;668;395;1154;773;266;1123;3899;4404;4178
-13;'048;Bahrain;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-13;'048;Bahrain;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;84;1767;1442;1442;1711;2819;3579;1719;2900;1302;1092;1933;2798;2982;3652;3841;2800;7096;8608;5359;6264;11374
-13;'048;Bahrain;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;775;97;1684;1585;1585;1726;3172;3740;3094;4319;2015;1255;2271;4004;4164;4744;4163;6603;9714;10449;7656;11440;19560
-13;'048;Bahrain;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10254;5600;1386;8954;11841;16611;6;25;11;23;20;20;290;270;97;137;7;257;154;11;3;3;8;42
-13;'048;Bahrain;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18359;7841;1797;14017;16260;27092;42;42;14;44;69;69;555;477;200;375;51;919;394;22;40;17;40;68
-13;'048;Bahrain;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;2685;12603;14928;14928;10448;9331;18908;10098;17080;14418;14961;14310;25097;20754;22618;16002;23209;27667;31482;30631;38451;27711
-13;'048;Bahrain;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4315;1806;5690;9256;9256;5073;6222;10705;3933;11536;11278;7813;8929;18969;14034;14938;10568;13484;16251;16904;22145;34161;20981
-13;'048;Bahrain;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;157;157;122;151;125;125;123;67;234;157;184;110;447;160;331;156;1259;4267;3541;3154
-13;'048;Bahrain;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;93;93;89;114;95;95;375;262;231;54;615;241;238;232;376;162;1074;3802;4340;4078
-13;'048;Bahrain;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5700;1749;8966;10738;10738;5222;3682;6335;2493;6263;6602;5147;4688;14142;8957;3535;11065;18187;22809;23979;24689;30562;22583
-13;'048;Bahrain;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1697;1070;3339;6659;6659;2229;1937;3139;985;3915;4253;2541;2442;7822;4604;1891;5291;8695;10498;10360;14766;22914;12415
-13;'048;Bahrain;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;32;32;1;1;1;1;5;5;66;34;34;3;3;3;3;51;0;20;1;241
-13;'048;Bahrain;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;19;19;9;9;9;9;2;2;1;36;36;59;59;59;59;14;0;10;43;169
-13;'048;Bahrain;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;633;751;1136;1136;2325;1386;9850;7171;9357;5585;9413;9152;9261;9387;13433;3860;2201;2529;3584;4171;6275;3119
-13;'048;Bahrain;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;856;436;731;705;705;1446;795;5241;2425;5195;3932;4543;5739;6823;6498;8846;4394;1655;3278;3549;4770;8299;5540
-13;'048;Bahrain;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;90;90;90;90;90;90;49;49;49;7;21;8;26;26;18;14;34;24;66;27
-13;'048;Bahrain;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;54;54;54;54;54;54;227;227;227;7;50;56;60;60;14;25;13;9;42;63
-13;'048;Bahrain;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;251;863;2425;2425;874;4090;2325;358;1355;1938;293;352;1497;2076;5522;714;2795;2178;3844;1600;1492;1870
-13;'048;Bahrain;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598;281;919;1502;1502;928;3319;2162;428;2267;2821;524;622;4107;2073;4087;699;3123;2403;2958;2493;2866;2910
-13;'048;Bahrain;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;13;13;9;38;12;12;64;8;114;19;120;96;383;96;275;56;1190;4223;3439;2885
-13;'048;Bahrain;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;7;7;13;38;19;19;145;32;2;6;521;121;112;106;296;116;1054;3780;4248;3845
-13;'048;Bahrain;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;52;2023;629;629;2027;173;398;76;105;293;108;118;197;334;128;363;26;151;75;171;122;139
-13;'048;Bahrain;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1164;19;701;390;390;470;171;163;95;159;272;205;126;217;859;114;184;11;72;37;116;82;116
-13;'048;Bahrain;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;5;5;5;97;9;3;35;35;35;35;35;0;35;1
-13;'048;Bahrain;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;1;1;1;5;8;5;7;7;7;7;7;3;7;1
-13;'048;Bahrain;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-13;'048;Bahrain;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;8700;6900;6900;6900;1200;65;883;1196;1196;1072;561;624;578;983;1165;909;799;1525;996;1313;76;1033;1301;989;402;748;148
-13;'048;Bahrain;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4332;6237;5164;4320;4320;903;243;988;1136;1136;962;840;1223;1258;2191;2319;808;1377;2227;1095;1754;140;879;881;697;482;974;715
-13;'048;Bahrain;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;71;71;221;10;10;5;219;27;8;7;58;7;7;1;1;92;1;3;1;4
-13;'048;Bahrain;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;62;78;78;237;14;14;9;419;67;9;10;87;52;106;3;3;82;9;80;24;32
-13;'048;Bahrain;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103497;103984;99466;92742;102565;88492;97487
-13;'048;Bahrain;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75245;87788;75957;47039;59043;76197;85257
-13;'048;Bahrain;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157;1179;725;947;633;768;1114
-13;'048;Bahrain;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;11;713;34;57;78;127
-13;'048;Bahrain;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;976;204;543;451;521;300
-13;'048;Bahrain;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;3;709;33;54;64;108
-13;'048;Bahrain;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;203;521;404;182;247;814
-13;'048;Bahrain;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;8;4;1;3;14;19
-13;'048;Bahrain;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3123;4564;3694;2834;3705;3090;1098
-13;'048;Bahrain;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21590;20470;16575;20972;17683;23556;14732
-13;'048;Bahrain;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2716;2889;2723;2633;5040;4582;2893
-13;'048;Bahrain;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;203;794;367;128;371;996
-13;'048;Bahrain;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6125;4403;4963;4691;3210;3317;5037
-13;'048;Bahrain;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;958;289;407;249;1570;453;907
-13;'048;Bahrain;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-13;'048;Bahrain;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-13;'048;Bahrain;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-13;'048;Bahrain;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-13;'048;Bahrain;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45
-13;'048;Bahrain;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65
-13;'048;Bahrain;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4
-13;'048;Bahrain;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6
-13;'048;Bahrain;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86763;86275;82605;79345;83269;71670;82059
-13;'048;Bahrain;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52172;66186;57104;25178;39168;51588;68161
-13;'048;Bahrain;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1899;1944;3019;437;2519;167;342
-13;'048;Bahrain;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;63;4;169;10;143
-13;'048;Bahrain;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1714;2730;1737;1855;4189;4898;4944
-13;'048;Bahrain;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;618;301;235;268;141;191
-13;'048;Bahrain;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64082;69319;66576;62538;70886;82496;76634
-13;'048;Bahrain;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75135;51777;78079;45631;38037;40540;38006
-13;'048;Bahrain;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;214;279;236;399;551;357
-13;'048;Bahrain;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;27;2;2;4;0;0
-13;'048;Bahrain;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595;3655;3158;2500;2904;3734;4586
-13;'048;Bahrain;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;242;99;134;284;521;643
-13;'048;Bahrain;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16663;14465;14981;15922;15407;15449;13156
-13;'048;Bahrain;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61598;37575;33337;32197;27822;31621;31090
-13;'048;Bahrain;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23099;26696;24657;23520;29215;34340;31516
-13;'048;Bahrain;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10168;7044;7159;4358;4546;2744;3334
-13;'048;Bahrain;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21553;24289;23501;20360;22961;28422;27019
-13;'048;Bahrain;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3082;6889;37482;8940;5381;5654;2939
-16;'050;Bangladesh;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045722;1112135;1069266;902786;1089599;1259679;1135169
-16;'050;Bangladesh;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23949;32578;37948;35531;56339;69408;56229
-16;'050;Bangladesh;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;879;8169;6732;7889;1594;2999;4000;3055;4377;4377;2034;3945;4198;13318;25230;17265;23301;14802;20507;17317;19491;35233;28881;50185;59118;61695;86491;131819;92529;89772;115902;108036;197339;227353;205450;159140;220399;222759;309692;350224;483826;399398;490418;668506;581907;792325;796100;853057;820684;677528;774117;890435;876404
-16;'050;Bangladesh;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;144;5111;2809;2667;1830;3235;5518;6643;6950;10030;6664;7464;6264;16046;16734;9410;9410;9220;11560;5023;10679;3956;285;264;100;31;573;14403;14398;14398;1;102;422;2024;2024;323;1067;1861;2990;3167;3020;3452;5772;6876;6902;6344;12598;16522;19841;17428;18794;23577;20066
-16;'050;Bangladesh;1861;Roundwood;5516;Production;m3;17147468;17549224;17757900;18383704;18815844;19350542;19996016;20499496;20981212;21396406;22040166;22605224;23622216;23740164;24233828;24819998;25394556;25419364;25895268;26430956;26553642;26999248;27251632;27625300;27790840;28113868;28097322;28416272;28602424;28383092;28581808;28568598;28634152;28586674;28519264;28508236;28476072;28467996;28465852;28458888;28386728;28017752;28108946;28114290;28081784;28004197;27928000;27852955;27779263;27706834;27547819;27390764;27235639;27074413;26925057;26663531;26405391;26159246;26301809;26059832;26616914;26577197;26340627
-16;'050;Bangladesh;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;100500;24000;38100;50000;60000;3429;3379;18637;18637;11207;10046;16806;7000;76700;4900;4900;3700;123633;194226;343783;3156;34;407;722;515;16701;10739;17520;4283;163428;75556;139521;146742;65021;49313;62256;14193;21158;17643
-16;'050;Bangladesh;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;9258;2349;3629;5150;8500;500;551;2425;2425;1789;1517;2696;1474;9137;835;835;556;10654;20523;22577;674;7;62;87;102;10791;2967;3436;899;18772;9777;17765;20071;8262;13464;10311;4208;6730;2793
-16;'050;Bangladesh;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;28;476;228;400;131200;131200;131200;0;0;293;677;677;720;564;589;589;589;186;149;243;187;52;48;0;21;13;0;2;40;21
-16;'050;Bangladesh;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;57;19;56;13888;13888;13888;0;0;53;49;49;53;99;104;104;127;56;33;36;30;4;3;0;6;4;0;3;64;35
-16;'050;Bangladesh;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29649;16215;26384;39327;3946;1674;2643
-16;'050;Bangladesh;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1883;2696;7793;4641;1246;652;258
-16;'050;Bangladesh;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-16;'050;Bangladesh;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-16;'050;Bangladesh;1863;Roundwood, non-coniferous;5516;Production;m3;17147468;17549224;17757900;18383704;18815844;19350542;19996016;20499496;20981212;21396406;22040166;22605224;23622216;23740164;24233828;24819998;25394556;25419364;25895268;26430956;26553642;26999248;27251632;27625300;27790840;28113868;28097322;28416272;28602424;28383092;28581808;28568598;28634152;28586674;28519264;28508236;28476072;28467996;28465852;28458888;28386728;28017752;28108946;28114290;28081784;28004197;27928000;27852955;27779263;27706834;27547819;27390764;27235639;27074413;26925057;26663531;26405391;26159246;26301809;26059832;26616914;26577197;26340627
-16;'050;Bangladesh;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117093;48806;22929;22929;10247;19484;15000
-16;'050;Bangladesh;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18188;5566;5671;5670;2962;6078;2535
-16;'050;Bangladesh;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;13;0;2;40;21
-16;'050;Bangladesh;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;4;0;3;64;35
-16;'050;Bangladesh;1864;Wood fuel;5516;Production;m3;16511468;16895224;17287900;17689704;18100844;18521542;18952016;19392496;19843212;20304406;20996166;22034224;22620216;22665164;23327828;23760998;24358556;24670364;25020268;25548956;25664642;26009248;26281632;26525300;26790180;27026868;27257322;27523272;27765424;27742092;27875808;27922598;27928152;27923674;27940264;27904236;27866072;27850996;27842852;27835888;27798728;27762752;27727946;27694290;27661784;27584197;27508000;27432955;27359263;27286834;27127819;26970764;26815639;26662413;26511057;26255531;26003391;25754580;25509042;25266723;25023805;24784088;24547518
-16;'050;Bangladesh;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;204;204;204;15;15;15;28;28;28;;;;;;;464
-16;'050;Bangladesh;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;56;56;56;10;10;10;;;;;;;73
-16;'050;Bangladesh;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;32;32;32;75;40;40;40;40;10;10;104;48;48;48;;;;;;;
-16;'050;Bangladesh;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;12;12;12;16;23;23;23;23;6;6;9;3;3;3;;;;;;;
-16;'050;Bangladesh;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464
-16;'050;Bangladesh;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73
-16;'050;Bangladesh;1628;Wood fuel, non-coniferous;5516;Production;m3;16511468;16895224;17287900;17689704;18100844;18521542;18952016;19392496;19843212;20304406;20996166;22034224;22620216;22665164;23327828;23760998;24358556;24670364;25020268;25548956;25664642;26009248;26281632;26525300;26790180;27026868;27257322;27523272;27765424;27742092;27875808;27922598;27928152;27923674;27940264;27904236;27866072;27850996;27842852;27835888;27798728;27762752;27727946;27694290;27661784;27584197;27508000;27432955;27359263;27286834;27127819;26970764;26815639;26662413;26511057;26255531;26003391;25754580;25509042;25266723;25023805;24784088;24547518
-16;'050;Bangladesh;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;204;204;204;15;15;15;28;28;28;;;;;;;
-16;'050;Bangladesh;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;56;56;56;10;10;10;;;;;;;
-16;'050;Bangladesh;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;32;32;32;75;40;40;40;40;10;10;104;48;48;48;;;;;;;
-16;'050;Bangladesh;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;12;12;12;16;23;23;23;23;6;6;9;3;3;3;;;;;;;
-16;'050;Bangladesh;1865;Industrial roundwood;5516;Production;m3;636000;654000;470000;694000;715000;829000;1044000;1107000;1138000;1092000;1044000;571000;1002000;1075000;906000;1059000;1036000;749000;875000;882000;889000;990000;970000;1100000;1000660;1087000;840000;893000;837000;641000;706000;646000;706000;663000;579000;604000;610000;617000;623000;623000;588000;255000;381000;420000;420000;420000;420000;420000;420000;420000;420000;420000;420000;412000;414000;408000;402000;404666;792767;793109;1593109;1793109;1793109
-16;'050;Bangladesh;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;100500;24000;38100;50000;60000;3429;3379;18637;18637;11207;10046;16806;7000;76700;4900;4900;3700;123633;194226;343783;3156;34;203;518;311;16497;10724;17505;4268;163400;75528;139493;146742;65021;49313;62256;14193;21158;17179
-16;'050;Bangladesh;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;9258;2349;3629;5150;8500;500;551;2425;2425;1789;1517;2696;1474;9137;835;835;556;10654;20523;22577;674;7;33;58;73;10762;2911;3380;843;18762;9767;17755;20071;8262;13464;10311;4208;6730;2720
-16;'050;Bangladesh;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;28;476;228;400;131200;131200;131200;0;0;261;645;645;645;524;549;549;549;176;139;139;139;4;0;0;21;13;0;2;40;21
-16;'050;Bangladesh;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;57;19;56;13888;13888;13888;0;0;41;37;37;37;76;81;81;104;50;27;27;27;1;0;0;6;4;0;3;64;35
-16;'050;Bangladesh;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2605;3200;11108;11108;11108;8400;12500;2700;2700;2700;2700;2700;8000;13593;25068;2978;0;0;411;51;5390;9970;5881;3014;10204;5528;38402;29649;16215;26384;39327;3946;1674;2179
-16;'050;Bangladesh;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;525;1753;1753;1753;1323;1668;422;422;422;422;422;562;829;1529;640;0;0;30;22;1994;2642;701;439;1069;1087;5623;1883;2696;7793;4641;1246;652;185
-16;'050;Bangladesh;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;200;200;200;200;200;0;0;241;241;241;241;82;82;82;82;82;82;82;82;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;15;15;15;15;15;0;0;13;13;13;13;4;4;4;27;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2605;3200;11108;11108;11108;8400;12500;2700;2700;2700;2700;2700;8000;13593;25068;2978;0;0;411;51;5390;9970;5881;3014;10204;5528;38402;29649;16215;26384;39327;3946;1674;2179
-16;'050;Bangladesh;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;525;1753;1753;1753;1323;1668;422;422;422;422;422;562;829;1529;640;0;0;30;22;1994;2642;701;439;1069;1087;5623;1883;2696;7793;4641;1246;652;185
-16;'050;Bangladesh;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;200;200;200;200;200;0;0;241;241;241;241;82;82;82;82;82;82;82;82;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;15;15;15;15;15;0;0;13;13;13;13;4;4;4;27;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1867;Industrial roundwood, non-coniferous;5516;Production;m3;636000;654000;470000;694000;715000;829000;1044000;1107000;1138000;1092000;1044000;571000;1002000;1075000;906000;1059000;1036000;749000;875000;882000;889000;990000;970000;1100000;1000660;1087000;840000;893000;837000;641000;706000;646000;706000;663000;579000;604000;610000;617000;623000;623000;588000;255000;381000;420000;420000;420000;420000;420000;420000;420000;420000;420000;420000;412000;414000;408000;402000;404666;792767;793109;1593109;1793109;1793109
-16;'050;Bangladesh;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;179;7529;7529;99;1646;4306;4300;74000;2200;2200;1000;115633;180633;318715;178;34;203;107;260;11107;754;11624;1254;153196;70000;101091;117093;48806;22929;22929;10247;19484;15000
-16;'050;Bangladesh;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;26;672;672;36;194;1028;1052;8715;413;413;134;10092;19694;21048;34;7;33;28;51;8768;269;2679;404;17693;8680;12132;18188;5566;5671;5670;2962;6078;2535
-16;'050;Bangladesh;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;28;28;28;200;131000;131000;131000;0;0;20;404;404;404;442;467;467;467;94;57;57;57;4;0;0;21;13;0;2;40;21
-16;'050;Bangladesh;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;4;4;41;13873;13873;13873;0;0;28;24;24;24;72;77;77;77;50;27;27;27;1;0;0;6;4;0;3;64;35
-16;'050;Bangladesh;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;176;4136;4136;99;1340;4000;4000;60000;1000;1000;1000;633;633;138;178;0;0;0;0;7649;316;9938;52;145050;69390;99315;116145;18588;22393;8598;9899;15508;15000
-16;'050;Bangladesh;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;25;369;369;36;162;996;996;6663;190;190;134;92;92;22;34;0;0;0;0;7582;106;1932;84;16582;8396;11702;18039;4656;5194;2055;2817;4246;2535
-16;'050;Bangladesh;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;63;63;63;56;19;19;19;4;0;0;21;13;0;2;20;21
-16;'050;Bangladesh;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;53;53;53;38;15;15;15;1;0;0;6;4;0;3;34;35
-16;'050;Bangladesh;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3393;3393;0;306;306;300;14000;1200;1200;0;115000;180000;318577;0;34;203;107;260;3458;438;1686;1202;8146;610;1776;948;30218;536;14331;348;3976;0
-16;'050;Bangladesh;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;303;303;0;32;32;56;2052;223;223;0;10000;19602;21026;0;7;33;28;51;1186;163;747;320;1111;284;430;149;910;477;3615;145;1832;0
-16;'050;Bangladesh;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;28;28;28;200;131000;131000;131000;0;0;20;404;404;404;404;404;404;404;38;38;38;38;0;0;0;0;0;0;0;20;0
-16;'050;Bangladesh;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;4;4;41;13873;13873;13873;0;0;28;24;24;24;24;24;24;24;12;12;12;12;0;0;0;0;0;0;0;30;0
-16;'050;Bangladesh;1868;Sawlogs and veneer logs;5516;Production;m3;478000;492000;304000;524000;541000;650000;860000;918000;944000;892000;774000;300000;704000;778000;614000;760000;730000;436000;555000;555000;555000;625000;557000;705000;628000;714000;460000;507000;445000;243000;304000;238000;293000;244000;155000;174000;174000;174000;174000;174000;174000;174000;273000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;700000;700000;1500000;1700000;1700000
-16;'050;Bangladesh;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;100500;24000;38100;50000;60000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;9258;2349;3629;5150;8500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;478000;492000;304000;524000;541000;650000;860000;918000;944000;892000;774000;300000;704000;778000;614000;760000;730000;436000;555000;555000;555000;625000;557000;705000;628000;714000;460000;507000;445000;243000;304000;238000;293000;244000;155000;174000;174000;174000;174000;174000;174000;174000;273000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;312000;700000;700000;1500000;1700000;1700000
-16;'050;Bangladesh;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;100500;24000;38100;50000;60000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;9258;2349;3629;5150;8500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;69000;69000;34000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;10000;12000;6000;0;2666;2767;3109;3109;3109;3109
-16;'050;Bangladesh;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;69000;69000;34000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;10000;12000;6000;0;2666;2767;3109;3109;3109;3109
-16;'050;Bangladesh;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;65000;60000;81000;74000;63000;63000;63000;63000;63000;63000;63000;87000;129000;104000;75660;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;65000;60000;81000;74000;63000;63000;63000;63000;63000;63000;63000;87000;129000;104000;75660;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;69000;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1871;Other industrial roundwood;5516;Production;m3;158000;162000;166000;170000;174000;179000;184000;189000;194000;200000;205000;211000;217000;223000;229000;236000;243000;250000;257000;264000;271000;278000;284000;291000;297000;304000;311000;317000;323000;329000;333000;339000;344000;350000;355000;361000;367000;374000;380000;380000;380000;63000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000
-16;'050;Bangladesh;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;158000;162000;166000;170000;174000;179000;184000;189000;194000;200000;205000;211000;217000;223000;229000;236000;243000;250000;257000;264000;271000;278000;284000;291000;297000;304000;311000;317000;323000;329000;333000;339000;344000;350000;355000;361000;367000;374000;380000;380000;380000;63000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000
-16;'050;Bangladesh;1630;Wood charcoal;5510;Production;t;103222;107144;111215;115441;119827;124380;129107;134012;139105;144390;152381;165039;172115;172139;180395;185680;193346;197293;202040;209653;211586;217075;221839;226447;231633;236453;241446;247317;253259;255485;259883;263303;266386;269477;273015;275831;278681;282355;286144;289983;293429;296916;300445;304016;307629;310896;314200;317536;320909;324317;326684;329068;331470;333888;336325;337180;338038;338898;339760;340624;341543;342465;343390
-16;'050;Bangladesh;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;8;2;2;10;48;48;81;14;34;1;13;18;10;93;109;291;14;25
-16;'050;Bangladesh;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;22;99;99;174;10;56;4;10;12;23;104;68;140;21;67
-16;'050;Bangladesh;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;10;10;10;10;21;22;63;63;227;1646;2767;3669;7732;7519;555;4217;5429;6535;7444;13998
-16;'050;Bangladesh;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;10;10;10;10;18;8;15;15;104;949;1403;1990;3769;3916;480;1854;2542;3215;4086;9338
-16;'050;Bangladesh;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1670;96;96;113;113;113;187;187;73;170;50;10;10;11;229;199;199;191
-16;'050;Bangladesh;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;28;28;32;32;32;24;24;31;31;55;49;49;16;136;123;123;122
-16;'050;Bangladesh;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;299;299;299;299;118;20118;20229;20113;20899;20045;20051;20019;352;125;222;119;243;149;105;1679
-16;'050;Bangladesh;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;12;12;12;35;1035;1025;1020;1058;1005;1003;1028;33;47;73;27;32;55;82;130
-16;'050;Bangladesh;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;190;190;190;190
-16;'050;Bangladesh;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;122;122;122;122
-16;'050;Bangladesh;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;20000;20000;20000;20000;20000;20000;20000;33;33;33;36;160;66;22;1679
-16;'050;Bangladesh;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;16;16;16;21;26;49;76;130
-16;'050;Bangladesh;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1670;96;96;113;113;113;187;187;73;168;48;8;8;9;39;9;9;1
-16;'050;Bangladesh;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;28;28;32;32;32;24;24;31;17;41;35;35;2;14;1;1;0
-16;'050;Bangladesh;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;299;299;299;118;118;229;113;899;45;51;19;319;92;189;83;83;83;83;0
-16;'050;Bangladesh;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;35;35;25;20;58;5;3;28;17;31;57;6;6;6;6;0
-16;'050;Bangladesh;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3381;1518;81;81;81
-16;'050;Bangladesh;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;420;149;149;149
-16;'050;Bangladesh;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;7;116;116;42
-16;'050;Bangladesh;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;18;36;36;17
-16;'050;Bangladesh;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3381;1518;81;81;81
-16;'050;Bangladesh;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;420;149;149;149
-16;'050;Bangladesh;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;7;116;116;42
-16;'050;Bangladesh;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;18;36;36;17
-16;'050;Bangladesh;1872;Sawnwood;5516;Production;m3;286000;295000;304000;314000;283000;317000;433000;378000;366000;347000;310000;116000;210000;280000;236000;148000;165000;176000;176000;176000;176000;203000;162000;154000;99000;79000;79000;79000;79000;79000;79000;79000;79000;79000;70000;70000;70000;70000;70000;70000;70000;255000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;895322;972146;972146
-16;'050;Bangladesh;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;100;100;100;4100;2700;3400;3400;10000;10000;1100;1300;2300;5000;10800;4900;15000;5800;11300;1800;2500;6240;2500;2600;300;3600;5900;5900;3700;3700;13900;631;1836;4351;4351;1927;847;1252;961;4660;4487;8398;11039;12957;16490;18078;10898;17395;19362;15240;19965;11215;5263
-16;'050;Bangladesh;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;18;18;18;735;490;655;655;1930;1930;231;272;525;1100;1727;883;3128;1151;2268;506;773;1762;999;921;183;936;1203;1203;618;618;2733;126;884;1064;1064;364;360;740;656;2500;1589;3614;5476;6867;7906;8447;4820;6969;6664;4960;8262;4729;2734
-16;'050;Bangladesh;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;204;167;33;0;1100;1100;1100;1100;0;0;25;3988;3988;82;82;108;108;1124;122;59;59;107;215;26;43;0;8;84;2;85;199
-16;'050;Bangladesh;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;234;228;31;0;509;509;509;509;0;0;2;1204;1204;45;45;75;75;238;101;82;138;105;133;17;18;0;28;26;61;60;61
-16;'050;Bangladesh;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;2000;0;3100;5000;5000;2600;2600;9800;496;20;2002;2002;1797;697;1050;434;1007;3291;3696;5726;3896;7100;8994;1326;6673;5723;3256;4799;2856;1826
-16;'050;Bangladesh;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;500;0;632;795;795;396;396;1867;85;121;348;348;275;250;525;210;422;667;821;1536;923;1699;3233;185;1775;1752;1064;2029;1270;564
-16;'050;Bangladesh;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;0;0;0;100;100;100;100;0;0;0;56;56;56;56;56;56;56;56;56;56;56;1;0;1;0;0;0;2;0;124
-16;'050;Bangladesh;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;48;48;48;48;0;0;0;9;9;9;9;9;9;0;13;0;3;0;2;0;1;0;0;0;0;0;44
-16;'050;Bangladesh;1633;Sawnwood, non-coniferous;5516;Production;m3;286000;295000;304000;314000;283000;317000;433000;378000;366000;347000;310000;116000;210000;280000;236000;148000;165000;176000;176000;176000;176000;203000;162000;154000;99000;79000;79000;79000;79000;79000;79000;79000;79000;79000;70000;70000;70000;70000;70000;70000;70000;255000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;895322;972146;972146
-16;'050;Bangladesh;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;100;100;100;4100;2700;3400;3400;10000;10000;1100;1300;2300;5000;10800;4900;15000;5800;11300;1800;2500;6200;2500;600;300;500;900;900;1100;1100;4100;135;1816;2349;2349;130;150;202;527;3653;1196;4702;5313;9061;9390;9084;9572;10722;13639;11984;15166;8359;3437
-16;'050;Bangladesh;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;18;18;18;735;490;655;655;1930;1930;231;272;525;1100;1727;883;3128;1151;2268;506;773;1750;999;421;183;304;408;408;222;222;866;41;763;716;716;89;110;215;446;2078;922;2793;3940;5944;6207;5214;4635;5194;4912;3896;6233;3459;2170
-16;'050;Bangladesh;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;167;167;33;0;1000;1000;1000;1000;0;0;25;3932;3932;26;26;52;52;1068;66;3;3;51;214;26;42;0;8;84;0;85;75
-16;'050;Bangladesh;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;228;228;31;0;461;461;461;461;0;0;2;1195;1195;36;36;66;66;238;88;82;135;105;131;17;17;0;28;26;61;60;17
-16;'050;Bangladesh;1634;Veneer sheets;5516;Production;m3;;;;;;;;53000;59000;51000;33000;18000;19000;20000;27000;30000;30000;30000;1000;1000;1200;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0
-16;'050;Bangladesh;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;64;64;100;100;100;100;100;100;12;209;209;7;138;286;312;1063;2049;1973;1402;1198;3102;1855;2953;4389;4216;5032;8409;9148;9553
-16;'050;Bangladesh;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;0;62;62;47;47;72;72;72;72;20;163;163;12;169;619;369;1302;1526;1970;1637;2658;3671;3988;5108;7163;6320;6384;11291;11939;11799
-16;'050;Bangladesh;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1873;Wood-based panels;5516;Production;m3;;;;;;;;23000;18000;19000;8000;7000;10200;15700;18600;9800;11800;12500;11100;11300;11300;8400;6940;9200;9700;8500;9500;9600;8300;8600;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;10600;11714;11714;15014;15014
-16;'050;Bangladesh;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;300;900;913;1000;3200;6300;9600;9600;14100;5554;2419;13181;13181;24729;32991;18713;33787;33968;33555;22925;17234;16791;21404;33542;58705;38388;55693;34609;54772;40768;20120
-16;'050;Bangladesh;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466;96;388;369;298;667;1629;1147;1147;1849;1431;4919;3213;3213;4804;10240;7199;10851;11691;13785;11135;9029;9693;11718;14928;22727;14379;14862;11110;15303;14862;9192
-16;'050;Bangladesh;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;332;332;332;332;332;1767;2951;1745;796;1055;256;333;1536;1941;1950;2002;1861;4634;7950;7073;10192;5821
-16;'050;Bangladesh;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;80;80;80;80;80;643;1256;745;465;466;103;174;887;1212;1139;1008;959;960;1023;974;1491;1080
-16;'050;Bangladesh;1640;Plywood and LVL;5516;Production;m3;;;;;;;;23000;18000;19000;8000;7000;7000;11000;13000;3700;1900;1900;1900;1000;1000;1200;1200;1200;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;414;414;414;414
-16;'050;Bangladesh;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;100;500;600;800;3000;6000;2800;2800;2000;2000;779;890;890;1007;855;2297;2103;8775;10514;5219;4869;4528;7904;10825;15376;9428;8078;12312;34163;21148;11852
-16;'050;Bangladesh;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;48;277;272;260;598;1538;726;726;656;656;2501;316;316;594;1894;2042;2068;3600;5139;2828;2800;3039;3972;5045;6850;4572;4078;5403;7919;7124;5652
-16;'050;Bangladesh;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;332;332;332;332;332;23;23;23;23;23;10;42;21;13;60;0;10;40;0;4;5
-16;'050;Bangladesh;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;80;25;25;1;0;0;13;11;14;8;27;0;5;3;0;5;10
-16;'050;Bangladesh;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;1500;300;1300;1300;4600;5300;5300;5300;5300;3900;840;3700;3600;2300;3900;3600;2200;2200;2200;2200;2200;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;48;48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;4500;6200;6200;9500;9500
-16;'050;Bangladesh;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;200;5800;5800;6700;133;1000;7260;7260;144;11782;1672;9093;9617;9770;4334;77;165;315;1586;3111;3111;2819;1637;1596;1404;170
-16;'050;Bangladesh;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;14;36;199;199;405;29;952;1191;1191;275;3364;1834;2875;2433;2895;2191;62;127;492;608;1499;1499;558;388;1323;1618;634
-16;'050;Bangladesh;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;2814;1608;659;908;109;209;1380;1806;1815;1820;1820;4572;7852;7033;10158;5768
-16;'050;Bangladesh;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;1181;670;414;422;59;120;835;1157;1092;942;942;938;991;948;1471;1048
-16;'050;Bangladesh;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;239;9856;9856;9856;9856;213;213;23;67;4;15;96;3;3;42;45;227;64;19
-16;'050;Bangladesh;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;1013;1013;1013;1013;11;11;8;46;3;11;38;4;4;8;128;31;9;30
-16;'050;Bangladesh;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;1700;4400;4300;4800;5300;5300;3900;5000;5000;3300;4900;4300;5100;5200;4600;5000;5100;5400;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100
-16;'050;Bangladesh;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;313;100;100;100;1000;1000;5400;3421;640;4792;4792;13722;10498;4888;12735;15363;13058;13349;12221;12094;13170;21035;40215;25846;44754;20615;18786;18152;8079
-16;'050;Bangladesh;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;97;23;55;55;222;222;788;746;1466;1667;1667;2922;3969;2310;4895;5647;5740;6108;6121;6524;7243;9237;14374;8304;10218;5191;6030;6111;2876
-16;'050;Bangladesh;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;59;114;114;114;124;124;114;114;114;122;122;41;52;58;40;30;48
-16;'050;Bangladesh;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;21;50;50;50;44;44;41;41;41;39;39;17;17;29;26;15;22
-16;'050;Bangladesh;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100
-16;'050;Bangladesh;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;100;100;100;1000;1000;3100;3100;17;3084;3084;6839;605;747;1264;1168;536;667;592;557;623;163;180;965;782;142;332;419;184
-16;'050;Bangladesh;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;23;55;55;222;222;703;703;1354;1431;1431;1837;289;363;514;564;299;433;352;323;362;130;138;475;309;79;273;175;110
-16;'050;Bangladesh;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;30;30;30;30;30;30;30;30;30;30;30;30;30
-16;'050;Bangladesh;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;14;14;14;14;14;14;14;14;14;14;14;14;14
-16;'050;Bangladesh;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;21;34;445;445;6613;9676;4083;10373;13314;10679;10209;10155;8710;10765;18282;39491;22628;40531;18446;15109;17135;7802
-16;'050;Bangladesh;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;10;9;76;76;1060;3614;1893;3684;4370;4267;4164;4706;4209;5528;7279;13749;7320;9046;4442;4509;5655;2734
-16;'050;Bangladesh;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;12;12;12;12;12;2;2;2;10;10;10;2;8;8;0;18
-16;'050;Bangladesh;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;11;11;7;7;4;4;4;2;2;2;0;12;12;1;8
-16;'050;Bangladesh;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;0;0;0;300;300;589;1263;1263;270;217;58;1098;881;1843;2473;1474;2827;1782;2590;544;2253;3441;2027;3345;598;93
-16;'050;Bangladesh;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;0;0;0;0;0;33;33;103;160;160;25;66;54;697;713;1174;1511;1063;1992;1353;1828;487;509;863;670;1248;281;32
-16;'050;Bangladesh;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;82;82;82;82;82;82;82;82;82;82;1;20;20;2;0;0
-16;'050;Bangladesh;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;23;23;23;23;23;23;23;23;23;23;1;3;3;0;0;0
-16;'050;Bangladesh;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;1700;4400;4300;4800;5300;5300;3900;5000;5000;3300;4900;4300;5100;5200;4600;5000;5100;5400;5100;5100;5100;5100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1879;Total fibre furnish;5510;Production;t;26000;30000;26000;28000;13000;12000;9000;30000;26000;26000;42000;38400;39700;34000;27500;53900;47800;76700;91109;91109;103109;103109;106600;102600;127000;115000;123000;127000;127000;134000;129000;129000;129000;129000;122000;114000;97000;37000;37000;37000;37000;37000;72000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000
-16;'050;Bangladesh;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;9500;1500;4600;6300;5500;5600;5600;4000;8100;8100;22000;30900;24700;32900;14600;15100;13000;13400;14343;11467;10360;11792;10400;24200;40200;45200;45200;67500;53831;128497;276482;276482;98017;143298;135461;161050;100584;216337;215322;329188;404259;391191;604544;417845;515363;574508;374743;335559;305172;424355
-16;'050;Bangladesh;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;7871;859;2509;3345;2400;2447;2447;1803;3673;3673;10375;12882;9366;11877;7477;8715;9234;6853;5989;4075;3296;5191;3891;9100;11833;12941;12941;18132;13259;28960;43797;43797;31339;43222;69710;52152;46090;108304;98053;150482;192996;173669;256732;198541;282396;260214;154856;163540;182934;248192
-16;'050;Bangladesh;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;45;15;296;689;792;792;792;266;266;266;8;7;8;14;7;194;8;15
-16;'050;Bangladesh;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;10;18;72;625;737;737;737;676;676;676;6;5;9;7;21;28;7;4
-16;'050;Bangladesh;1878;Pulp for paper;5510;Production;t;26000;30000;26000;28000;13000;12000;9000;30000;26000;26000;42000;38400;39700;34000;27500;53900;47800;76700;91109;91109;103109;103109;106600;102600;127000;115000;123000;127000;127000;134000;129000;129000;129000;129000;122000;114000;97000;37000;37000;37000;37000;37000;72000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000
-16;'050;Bangladesh;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;9500;1500;4600;6300;5500;5600;5600;4000;8100;8100;22000;30900;24700;32900;14600;15100;13000;13400;12132;11446;3946;4046;6300;14000;9700;14100;14100;14700;5246;8497;32455;32455;30106;37802;51693;94017;36438;159836;155704;233683;308754;262733;510150;363448;420341;491246;335886;302051;269842;401627
-16;'050;Bangladesh;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;7871;859;2509;3345;2400;2447;2447;1803;3673;3673;10375;12882;9366;11877;7477;8715;9234;6853;5428;4070;1681;2931;2663;5969;4739;5204;5204;7825;2634;12199;16710;16710;15858;22007;47693;37819;25309;89217;82338;120558;163072;138060;235835;186131;263409;245847;148367;154084;174920;241441
-16;'050;Bangladesh;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;263;263;263;263;263;263;8;7;8;7;6;6;6;6
-16;'050;Bangladesh;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;675;675;675;675;675;675;6;5;9;7;3;3;3;3
-16;'050;Bangladesh;1875;Wood pulp;5510;Production;t;26000;30000;26000;28000;13000;12000;9000;30000;26000;26000;22000;23400;28700;18000;11500;18900;12800;28000;40600;40600;52600;52600;56600;52600;77000;75000;83000;95000;95000;102000;96000;96000;96000;96000;84000;76000;66000;19000;19000;19000;19000;19000;54000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000
-16;'050;Bangladesh;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;9500;1500;4600;6300;5500;5600;5600;4000;8100;8100;22000;30900;24700;32900;14600;15100;13000;13400;13098;12543;4931;4149;6403;14000;9700;14100;14100;14700;5246;8514;25013;25013;22185;34860;51097;93017;29866;158801;155724;233686;309253;266804;510541;372568;420182;490741;336811;302970;270041;402165
-16;'050;Bangladesh;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;7871;859;2509;3345;2400;2447;2447;1803;3673;3673;10375;12882;9366;11877;7477;8715;9234;6853;5967;4649;2224;3044;2776;5969;4739;5204;5204;7825;2634;8470;10683;10683;9517;20509;47404;37292;20382;88517;82348;120562;163322;139675;235919;192317;263338;245573;148783;154499;175115;241847
-16;'050;Bangladesh;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;103;103;103;103;7;6;6;6;6;6;6;6
-16;'050;Bangladesh;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;4;3;3;3;3;3;3;3
-16;'050;Bangladesh;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;36000;36000;36000;36000;36000
-16;'050;Bangladesh;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1065;1379;7938;2253;395;946;3973
-16;'050;Bangladesh;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875;1009;3436;1372;283;507;2557
-16;'050;Bangladesh;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-16;'050;Bangladesh;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-16;'050;Bangladesh;1654;Mechanical wood pulp (1961-2016);5510;Production;t;26000;30000;26000;28000;13000;12000;9000;30000;26000;26000;22000;19900;24400;13000;3000;9100;3000;6000;14000;14000;14000;14000;18000;14000;41000;40000;40000;46000;48000;48000;45000;45000;45000;45000;38000;30000;24000;8000;8000;8000;8000;8000;43000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;;;;;;;
-16;'050;Bangladesh;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;3000;7100;3000;3400;2000;2000;2300;2300;32;746;746;746;1000;1000;400;400;400;1000;1040;1040;445;445;308;308;308;395;123;505;265;265;265;23;152;;;;;;;
-16;'050;Bangladesh;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1291;2985;1582;1392;676;676;286;286;8;216;216;216;243;243;195;195;195;612;420;420;148;148;100;100;100;227;77;206;147;147;147;15;60;;;;;;;
-16;'050;Bangladesh;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;10000;10000;10000;22000;22000;22000;22000;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-16;'050;Bangladesh;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;6400;200;1300;2100;600;700;700;1300;2600;2600;400;400;;;;;;;;;0;0;0;0;0;2700;2700;500;99;592;258;258;1088;1896;3147;9582;1912;22;2678;2401;225;382;622;;;;;;;
-16;'050;Bangladesh;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;4813;151;916;1410;278;325;325;649;1300;1300;198;198;;;;;;;;;0;0;0;0;0;809;809;238;34;285;102;102;363;928;1671;3881;1300;23;1677;1082;100;207;230;;;;;;;
-16;'050;Bangladesh;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;3500;4300;5000;8500;9800;9800;12000;16600;16600;16600;16600;16600;16600;36000;35000;43000;49000;47000;54000;51000;51000;51000;51000;46000;46000;42000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-16;'050;Bangladesh;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;3100;1300;3300;4200;4900;4900;4900;2700;5500;5500;18600;23400;21700;29500;12600;13100;10700;11100;12100;10700;3200;3300;5300;13000;9300;11000;11000;13200;4107;6829;23806;23806;20764;32631;47630;83028;27819;158253;152760;231016;308263;262225;509240;362242;418772;482772;333526;301543;268896;397654
-16;'050;Bangladesh;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;3058;708;1593;1935;2122;2122;2122;1154;2373;2373;8886;9699;7784;10485;6801;8039;8948;6567;5420;3854;1465;2715;2420;5726;4544;4200;4200;6975;2180;7733;10103;10103;9038;19465;45622;33173;18994;88276;80512;119327;162823;137776;235433;185192;262299;242107;146943;153748;174413;238884
-16;'050;Bangladesh;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;103;103;103;103;7;6;6;6;6;6;6;6
-16;'050;Bangladesh;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;4;3;3;3;3;3;3;3
-16;'050;Bangladesh;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;300;100;100;700;0;0;0;0;100;100;362;345;345;345;345;345;345;345;345;345;114;35;231;231;231;231;1237;3783;413;2508;1024
-16;'050;Bangladesh;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;124;37;37;345;0;0;0;0;42;42;96;123;123;123;123;123;123;123;123;123;46;11;134;134;134;134;611;1857;325;2090;784
-16;'050;Bangladesh;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;3500;4300;5000;8500;9800;9800;12000;16600;16600;16600;16600;16600;16600;36000;35000;43000;49000;47000;54000;51000;51000;51000;51000;46000;46000;42000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-16;'050;Bangladesh;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;1400;14000;12200;2000;200;2200;3100;4600;4600;4600;1900;3900;3900;6400;8500;10100;13500;9800;8700;7700;8100;10900;9600;2800;2900;4600;13000;9300;11000;11000;5300;3960;5124;21596;21596;19823;31345;47116;82524;24604;157297;152155;230742;308220;261505;509000;362000;418523;481480;329689;301080;266376;395550
-16;'050;Bangladesh;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;618;5887;4854;2465;115;1000;1342;2005;2005;2005;843;1735;1735;2894;3749;3847;5135;4934;4580;6000;3619;4910;3350;1247;2497;2075;5726;4544;4200;4200;4533;2105;6815;9114;9114;8537;18745;45400;32977;16896;87734;80213;119201;162793;137345;235281;185037;262125;241364;144961;153303;172279;237317
-16;'050;Bangladesh;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;103;103;103;103;7;6;6;6;6;6;6;6
-16;'050;Bangladesh;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;4;3;3;3;3;3;3;3
-16;'050;Bangladesh;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;18;55;54;50;12;1080
-16;'050;Bangladesh;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;40;132;125;120;44;783
-16;'050;Bangladesh;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;150;150;150;150;150;150;150;150;150;150;0;0;0;;;;;;;
-16;'050;Bangladesh;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;55;55;55;55;55;55;55;55;55;55;0;0;0;;;;;;;
-16;'050;Bangladesh;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;1300;10000;6100;1100;1100;1100;1100;300;300;300;800;1600;1600;12200;14900;11600;16000;2800;4400;3000;3000;800;800;300;300;0;0;0;0;0;7800;47;1343;1715;1715;446;791;19;9;2720;461;110;10;8;489;9;;;;;;;
-16;'050;Bangladesh;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;261;2264;1860;593;593;593;593;117;117;117;311;638;638;5992;5950;3937;5350;1867;3459;2948;2948;380;380;181;181;0;0;0;0;0;2400;33;822;811;811;323;542;44;18;1920;364;121;25;19;297;18;;;;;;;
-16;'050;Bangladesh;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966;1097;985;103;103;0;0;0;0;0;0;53;504;504;25;25;12;12;12;21;21;4;500;4174;527;9261;31;31;1032;1032;199;538
-16;'050;Bangladesh;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;579;543;113;113;0;0;0;0;0;0;32;330;330;16;16;11;11;11;12;12;6;252;1677;196;6250;30;30;468;468;195;406
-16;'050;Bangladesh;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;20000;15000;11000;16000;16000;35000;35000;48700;50509;50509;50509;50509;50000;50000;50000;40000;40000;32000;32000;32000;33000;33000;33000;33000;38000;38000;31000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000
-16;'050;Bangladesh;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;7946;7946;7946;2967;608;1012;6584;1056;1;1;1;103;136;141;190;536;107;113;0;0
-16;'050;Bangladesh;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3761;6357;6357;6357;1514;300;538;4938;712;2;2;2;62;112;64;101;304;52;53;0;0
-16;'050;Bangladesh;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;160;160;160;160;160;1;1;2;1;0;0;0;0
-16;'050;Bangladesh;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;563;563;563;563;563;563;2;2;6;4;0;0;0;0
-16;'050;Bangladesh;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;17;17;191;191;847;5;5;6;2215;11;11;11;11;11;154;84;65;141;145;620
-16;'050;Bangladesh;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;13;13;90;90;516;40;40;46;939;39;39;39;39;39;50;25;19;48;53;260
-16;'050;Bangladesh;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0
-16;'050;Bangladesh;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0
-16;'050;Bangladesh;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2211;21;6414;7746;4100;10200;30500;31100;31100;52800;48585;120000;244027;244027;67911;105496;83768;67033;64146;56501;59618;95505;95505;128458;94394;54397;95022;83262;38857;33508;35330;22728
-16;'050;Bangladesh;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;5;1615;2260;1228;3131;7094;7737;7737;10307;10625;16761;27087;27087;15481;21215;22017;14333;20781;19087;15715;29924;29924;35609;20897;12410;18987;14367;6489;9456;8014;6751
-16;'050;Bangladesh;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;45;15;296;529;529;529;529;3;3;3;0;0;0;7;1;188;2;9
-16;'050;Bangladesh;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;10;18;72;62;62;62;62;1;1;1;0;0;0;0;18;25;4;1
-16;'050;Bangladesh;1876;Paper and paperboard;5510;Production;t;65000;61000;60000;73000;68000;76000;71000;78000;84000;79000;63000;48000;54000;60000;49000;45000;62000;58200;71000;74000;79000;94000;148000;149000;104000;113000;114000;116000;117000;112000;111000;97000;150000;160000;120000;90000;70000;46000;46000;46000;46000;46000;83000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000
-16;'050;Bangladesh;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;2700;1800;6700;6700;700;700;8500;14300;39991;29442;70034;76438;103200;125000;119100;188100;176800;226200;189890;208884;239479;239479;244665;272710;175838;401692;379617;423954;425915;475995;555201;561864;682021;761467;745265;769034;724517;712497;725738;779936
-16;'050;Bangladesh;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1843;1363;4667;4667;1024;1024;7077;11314;23727;20382;43248;51683;53699;74000;107970;76916;74159;92560;82494;141972;156196;156196;122432;166209;143846;245457;277668;355466;280041;322816;437142;373415;490165;538483;533736;518233;488796;570585;668700;600690
-16;'050;Bangladesh;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;1000;28900;11600;8200;6200;7300;16700;20000;21000;20300;12300;13300;10800;22800;24900;7800;7800;11700;13700;6300;17800;7181;31;44;6;6;6;6;1;1;1;8;72;811;811;106;195;192;215;382;567;1279;2309;2296;1655;1096;7637;14835;19518;16270;15821;16010;9750
-16;'050;Bangladesh;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;144;5111;2809;2667;1830;3235;5518;6643;6950;10030;6664;7464;6264;16046;16734;9410;9410;9220;11560;5023;10679;3884;25;28;8;8;8;6;1;1;1;22;277;669;669;113;240;301;392;559;625;1335;2794;2772;1859;1376;7603;14994;16936;13765;14421;17750;9401
-16;'050;Bangladesh;2042;Graphic papers;5510;Production;t;60000;57000;55000;67000;62000;68000;62000;70000;72000;68000;55000;43000;48000;50000;44000;39000;56000;51000;64000;64000;66000;76000;125000;125000;85000;90000;96000;88000;89000;84000;84000;84000;91000;98000;80000;60000;56000;38000;38000;38000;38000;38000;75000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-16;'050;Bangladesh;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;2700;1800;6700;6700;700;700;8500;14300;16473;14715;37160;37475;54000;75000;75800;98100;86800;81800;71265;52246;74023;74023;114863;133817;82829;191393;168956;196627;189743;177600;203126;178755;214949;225397;173427;185810;155703;122547;122991;126376
-16;'050;Bangladesh;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1843;1363;4667;4667;1024;1024;7077;11314;12419;11180;25894;27560;31558;51000;72170;44952;42195;42510;37561;46502;48471;48471;62504;85703;70172;125611;129055;175534;133952;130896;178541;135124;175802;201062;146093;165608;156800;115189;155195;136682
-16;'050;Bangladesh;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;1000;28900;11600;8000;5700;6300;15700;19500;20500;19000;11200;12200;9700;18300;20400;3300;3300;2300;2300;2300;2300;4519;13;1;1;1;1;1;1;1;1;1;21;595;595;6;149;154;176;185;234;435;278;35;210;143;5108;11754;14379;7132;5800;4272;4226
-16;'050;Bangladesh;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;144;5111;2809;2436;1253;1735;4018;5878;6185;8005;4895;5695;4495;8808;9496;2172;2172;1808;1808;1808;1808;2470;13;3;3;3;3;1;1;1;1;1;221;456;456;9;130;169;262;239;224;519;390;28;238;275;5052;11603;11727;5184;4891;4190;2260
-16;'050;Bangladesh;1671;Newsprint;5510;Production;t;30000;31000;30000;38000;34000;34000;37000;39000;40000;36000;30000;28000;27000;31000;20000;20000;32000;32000;37000;37000;34000;44000;54000;54000;47000;46000;47000;49000;50000;46000;50000;50000;46000;48000;40000;30000;28000;8000;8000;8000;8000;8000;45000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000
-16;'050;Bangladesh;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;213;2;19680;29400;50000;47500;42300;31000;25900;28000;31800;35611;35611;34443;37322;40000;63893;60941;63455;47960;41743;35138;45106;46142;38796;38785;44412;24692;19038;13094;8318
-16;'050;Bangladesh;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;91;3;12052;14137;24000;38412;14757;12000;10916;14300;16075;18162;18162;17096;19858;32000;29310;34044;40900;30037;24988;21208;22045;22592;18962;25229;25199;11582;10621;10984;5856
-16;'050;Bangladesh;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;1000;26700;10600;7700;5300;5000;14400;19000;20000;18000;9500;10500;8000;16000;18100;1000;1000;;;;;4503;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;26;26;26;26;26;149;1523;376;92;2;74;1
-16;'050;Bangladesh;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;144;4435;2489;2268;1121;1217;3500;5643;5950;7345;3900;4700;3500;7000;7688;364;364;;;;;2455;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;16;16;16;16;16;92;1093;161;37;1;51;1
-16;'050;Bangladesh;1674;Printing and writing papers;5510;Production;t;30000;26000;25000;29000;28000;34000;25000;31000;32000;32000;25000;15000;21000;19000;24000;19000;24000;19000;27000;27000;32000;32000;71000;71000;38000;44000;49000;39000;39000;38000;34000;34000;45000;50000;40000;30000;28000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-16;'050;Bangladesh;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;2700;1800;6700;6700;700;700;8500;14300;16293;14502;37158;17795;24600;25000;28300;55800;55800;55900;43265;20446;38412;38412;80420;96495;42829;127500;108015;133172;141783;135857;167988;133649;168807;186601;134642;141398;131011;103509;109897;118058
-16;'050;Bangladesh;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1843;1363;4667;4667;1024;1024;7077;11314;12338;11089;25891;15508;17421;27000;33758;30195;30195;31594;23261;30427;30309;30309;45408;65845;38172;96301;95011;134634;103915;105908;157333;113079;153210;182100;120864;140409;145218;104568;144211;130826
-16;'050;Bangladesh;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;2200;1000;300;400;1300;1300;500;500;1000;1700;1700;1700;2300;2300;2300;2300;2300;2300;2300;2300;16;13;1;1;1;1;1;1;1;1;1;21;594;594;5;148;153;175;184;233;409;252;9;184;117;4959;10231;14003;7040;5798;4198;4225
-16;'050;Bangladesh;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;676;320;168;132;518;518;235;235;660;995;995;995;1808;1808;1808;1808;1808;1808;1808;1808;15;13;3;3;3;3;1;1;1;1;1;221;455;455;8;129;168;261;238;223;503;374;12;222;259;4960;10510;11566;5147;4890;4139;2259
-16;'050;Bangladesh;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;861;1697;1697;1700;4788;4550;13397;13397;2750;3063;14541;11596;5879;1481;3095;2026;31778;30815;31796;43000;23755;5034;2242;1920;950;2613
-16;'050;Bangladesh;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865;774;774;810;1668;8004;10571;10571;1529;2265;11964;8920;6223;1394;2549;1955;40223;41836;44164;59354;27347;4783;2701;2844;1681;2913
-16;'050;Bangladesh;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;32;6;6;6;109;109;2000;6080;5560;2644;1793;1428;2807
-16;'050;Bangladesh;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;44;5;5;5;126;126;2116;6091;4339;1689;1173;1268;397
-16;'050;Bangladesh;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-16;'050;Bangladesh;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6632;13077;13077;13100;3877;896;9576;9576;9693;14500;17147;13569;10397;26411;18389;16173;25722;14519;18964;56469;23755;45194;30690;20095;26770;25873
-16;'050;Bangladesh;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9514;8510;8510;8904;2593;10873;7556;7556;6931;15383;17095;26196;16447;44265;18270;17687;36081;13700;31244;56577;27348;52000;54430;26725;43530;33335
-16;'050;Bangladesh;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;592;592;3;3;1;23;23;2;187;30;2;74;7;2551;4086;7916;4119;2107;702;1183
-16;'050;Bangladesh;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;454;454;7;7;6;99;99;18;194;65;6;95;132;2462;4335;6557;3115;1835;871;1519
-16;'050;Bangladesh;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20807;41026;41026;41100;34600;15000;15439;15439;67977;78932;11141;102335;91739;105280;120299;117658;110488;88315;118047;87132;87132;91170;98079;81494;82177;89572
-16;'050;Bangladesh;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23379;20911;20911;21880;19000;11550;12182;12182;36948;48197;9113;61185;72341;88975;83096;86266;81029;57543;77802;66169;66169;83626;88087;74999;99000;94578
-16;'050;Bangladesh;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;2;2;2;2;9;9;18;199;216;216;1;1;1;408;65;527;277;1898;2068;235
-16;'050;Bangladesh;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;1;1;1;1;41;41;18;161;304;304;1;1;1;382;84;670;343;1882;2000;343
-16;'050;Bangladesh;1675;Other paper and paperboard;5510;Production;t;5000;4000;5000;6000;6000;8000;9000;8000;12000;11000;8000;5000;6000;10000;5000;6000;6000;7200;7000;10000;13000;18000;23000;24000;19000;23000;18000;28000;28000;28000;27000;13000;59000;62000;40000;30000;14000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-16;'050;Bangladesh;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23518;14727;32874;38963;49200;50000;43300;90000;90000;144400;118625;156638;165456;165456;129802;138893;93009;210299;210661;227327;236172;298395;352075;383109;467072;536070;571838;583224;568814;589950;602747;653560
-16;'050;Bangladesh;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11308;9202;17354;24123;22141;23000;35800;31964;31964;50050;44933;95470;107725;107725;59928;80506;73674;119846;148613;179932;146089;191920;258601;238291;314363;337421;387643;352625;331996;455396;513505;464008
-16;'050;Bangladesh;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;200;500;1000;1000;500;500;1300;1100;1100;1100;4500;4500;4500;4500;9400;11400;4000;15500;2662;18;43;5;5;5;5;0;0;0;7;51;216;216;100;46;38;39;197;333;844;2031;2261;1445;953;2529;3081;5139;9138;10021;11738;5524
-16;'050;Bangladesh;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;231;577;1500;1500;765;765;2025;1769;1769;1769;7238;7238;7238;7238;7412;9752;3215;8871;1414;12;25;5;5;5;5;0;0;0;21;56;213;213;104;110;132;130;320;401;816;2404;2744;1621;1101;2551;3391;5209;8581;9530;13560;7141
-16;'050;Bangladesh;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;125;19;1616;1616;425;1101;1001;526;354;690;630;790;842;2927;1450;1531;397;1149;620;736;62;463
-16;'050;Bangladesh;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;169;1945;1779;1779;462;1054;1183;828;435;941;774;1143;1084;3129;1634;1803;443;1904;1096;864;103;755
-16;'050;Bangladesh;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;2;2;9;7;26;69;554;1725;2020;1181;784;1565;1920;4375;8693;7203;9569;4731
-16;'050;Bangladesh;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;12;12;15;13;60;71;588;2071;2493;1352;963;1687;2243;4492;8092;7318;11745;5966
-16;'050;Bangladesh;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-16;'050;Bangladesh;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115800;108500;144119;150617;150617;84154;121093;84192;188645;196472;211144;220033;276591;322837;339586;414089;502657;539112;537497;533854;555969;561895;605792
-16;'050;Bangladesh;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39489;37464;81997;93385;93385;36995;63544;60567;99340;129756;157752;132125;172794;228884;206365;267197;312595;359841;320247;306925;425175;472854;428748
-16;'050;Bangladesh;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;48;47;47;57;38;26;26;153;230;256;272;213;213;165;961;1099;764;445;2771;2149;721
-16;'050;Bangladesh;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;44;27;27;44;76;100;100;210;285;183;288;196;196;125;858;1047;717;486;1981;1811;1056
-16;'050;Bangladesh;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;7000;4000;5000;5000;4000;5000;7000;9000;12000;16000;17000;13000;15000;12000;8000;8000;8000;7000;7000;32000;34000;30000;20000;14000;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-16;'050;Bangladesh;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67700;60000;54000;50741;50741;36656;33599;18655;92718;84001;82107;91126;102258;101642;117362;143362;228066;252059;254845;249792;262835;247928;329947
-16;'050;Bangladesh;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17742;18000;24633;31460;31460;11617;13692;10269;32656;43133;45035;45685;53676;53296;57265;67525;109650;144003;112888;102319;161634;173290;166014
-16;'050;Bangladesh;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;25;10;10;10;10;27;27;21;21;21;459;258;40;0;1825;1175;8
-16;'050;Bangladesh;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;28;11;11;11;11;21;21;39;39;39;359;237;40;0;880;563;28
-16;'050;Bangladesh;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11200;12500;39600;45600;45600;19034;22672;34459;49650;68865;95274;108532;160246;198975;201664;243578;240054;259860;249641;247619;258151;289656;255196
-16;'050;Bangladesh;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7683;5400;18980;28272;28272;11399;18273;35011;45314;60885;90075;72867;108974;158252;136433;180711;177270;193185;171951;166104;212715;250496;231791
-16;'050;Bangladesh;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;14;12;12;1;1;1;1;131;102;102;102;102;102;121;3;1;213;2;24;65;9
-16;'050;Bangladesh;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;37;7;7;3;27;27;27;182;55;55;55;55;55;53;4;2;114;8;25;100;19
-16;'050;Bangladesh;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35900;35000;50000;47230;47230;28463;64154;30765;46049;43418;33709;20241;13825;21986;20317;26727;33226;26835;30442;33604;30964;22170;17795
-16;'050;Bangladesh;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13760;13760;33072;29284;29284;13970;31253;15119;21252;25359;22608;13399;8907;16748;12045;17506;22969;22266;29793;32174;38329;41203;24041
-16;'050;Bangladesh;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;24;24;26;1;4;4;1;107;116;139;74;74;7;478;671;487;419;896;909;704
-16;'050;Bangladesh;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;14;26;15;56;56;11;213;101;202;82;82;13;490;726;553;467;1049;1144;1002
-16;'050;Bangladesh;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;519;7046;7046;1;668;313;228;188;54;134;262;234;243;422;1311;358;2569;2839;4019;2141;2854
-16;'050;Bangladesh;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;304;5312;4369;4369;9;326;168;118;379;34;174;1237;588;622;1455;2706;387;5615;6328;12497;7865;6902
-16;'050;Bangladesh;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;11;11;11;11;11;11;11;11;4;16;16;16;21;169;24;24;26;0;0
-16;'050;Bangladesh;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;6;6;6;6;6;6;6;6;10;20;20;20;5;82;10;11;27;4;7
-16;'050;Bangladesh;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;3000;1000;1000;1000;3200;2000;3000;4000;6000;7000;7000;6000;8000;6000;20000;20000;20000;20000;6000;27000;28000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-16;'050;Bangladesh;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23518;14727;32874;38963;49200;50000;43300;90000;90000;28000;10000;12500;13223;13223;45223;16699;7816;21128;13835;15493;15509;21014;28396;40596;51533;31882;32329;44578;34340;33245;40790;47305
-16;'050;Bangladesh;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11308;9202;17354;24123;22141;23000;35800;31964;31964;10000;7300;11528;12561;12561;22471;15908;11924;19678;18422;21239;13190;17983;28633;28797;45532;23023;27359;30474;23975;29357;40548;34505
-16;'050;Bangladesh;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;200;500;1000;1000;500;500;1300;1100;1100;1100;4500;4500;4500;4500;9400;11400;4000;15500;2662;18;43;5;5;5;5;0;0;0;3;3;121;121;41;6;3;6;18;34;34;34;28;51;4;3;62;0;0;47;20;72
-16;'050;Bangladesh;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;231;577;1500;1500;765;765;2025;1769;1769;1769;7238;7238;7238;7238;7412;9752;3215;8871;1414;12;25;5;5;5;5;0;0;0;12;12;133;133;48;22;17;17;50;45;45;45;55;73;13;6;101;0;3;231;4;119
-16;'050;Bangladesh;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28055;34099;24527;16430;19984;47566;45828
-16;'050;Bangladesh;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5207;9240;11526;11380;29019;29218;16455
-16;'050;Bangladesh;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;335;319;503;493;255;35
-16;'050;Bangladesh;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;10;11;11;3;8;0
-16;'050;Bangladesh;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0;182;182;182;5
-16;'050;Bangladesh;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;8;8;8;0;8;0
-16;'050;Bangladesh;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;333;319;321;311;73;30
-16;'050;Bangladesh;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;3;3;3;0;0
-16;'050;Bangladesh;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;187;443;249;630;1356;905
-16;'050;Bangladesh;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;15;19;6;12
-16;'050;Bangladesh;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;508;315;326;380;640;790
-16;'050;Bangladesh;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;374;350;543;660;637;533
-16;'050;Bangladesh;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4733;5705;4955;4132;4303;5103;4883
-16;'050;Bangladesh;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;3;29;131;71;4;2
-16;'050;Bangladesh;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-16;'050;Bangladesh;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-16;'050;Bangladesh;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11952;14174;10235;6155;6047;29072;32209
-16;'050;Bangladesh;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4577;8246;10826;10217;27670;28009;15682
-16;'050;Bangladesh;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233;7421;2294;488;765;3496;1141
-16;'050;Bangladesh;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-16;'050;Bangladesh;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8510;5769;5966;4577;7366;7644;5865
-16;'050;Bangladesh;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491;606;307;463;596;554;226
-16;'050;Bangladesh;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221567;224979;224055;208828;295498;321678;212937
-16;'050;Bangladesh;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6144;6816;6581;6723;8526;16613;19708
-16;'050;Bangladesh;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;520;292;531;404;496;416
-16;'050;Bangladesh;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;15;15;368;368;0
-16;'050;Bangladesh;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40823;42294;51723;47606;68018;71435;50732
-16;'050;Bangladesh;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;511;235;318;153;3877;12097
-16;'050;Bangladesh;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2685;2312;2191;2694;2095;1596;2458
-16;'050;Bangladesh;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;368;353;722;1257;1778;1414
-16;'050;Bangladesh;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31770;37992;38227;38616;73117;77983;44990
-16;'050;Bangladesh;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629;1883;1597;1291;2360;3428;2387
-16;'050;Bangladesh;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145774;141861;131622;119381;151864;170168;114341
-16;'050;Bangladesh;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4161;4039;4381;4377;4388;7162;3810
-14;'052;Barbados;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81610;76657;79811;70350;89292.1;110916;95780
-14;'052;Barbados;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15577;17583;16698;18034;18759;19492;17816
-14;'052;Barbados;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1832;1694;2053;1738;1957;2370;2277;3251;4113;4534;5064;5474;7018;7018;7018;12099;13616;13987;17207;24340;24438;19595;19708;19426;19325;19686;19326;14914;15121;14705;32502;22943;17747;21201;18434;17538;47081;47599;35503;35503;28297;27474;25979;25548;25579;45369;44004;41877;34524;41174;41730;33667;33781;37735;32290;31372;21430;20433;25543;21882;32413.1;36390;29015
-14;'052;Barbados;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;73;51;762;0;0;0;0;0;91;213;297;297;297;220;534;1018;4907;1415;1298;1664;1321;13845;12460;718;846;979;1543;618;650;773;656
-14;'052;Barbados;1861;Roundwood;5516;Production;m3;4591;5368;5245;5423;5701;5878;5856;5934;5912;5890;5949;5943;5982;6047;6050;6069;5994;5933;5817;5775;5836;5871;5887;5863;5863;5751;5746;5629;5581;5658;5693;6762;10740;10699;10699;10220;9906;9835;9578;10423;10377;10333;10289;10245;11202;11161;11121;11082;11043;11004;10972;10940;10909;10878;10847;10812;10777;10742;10708;10674;10640;10607;10574
-14;'052;Barbados;1861;Roundwood;5616;Import quantity;m3;2600;2300;6400;4500;3900;4700;2200;1600;1600;1100;2300;1600;2700;2700;2700;1800;2100;2100;800;1000;2600;500;900;3200;500;500;500;500;700;1351;2887;147;147;1811;954;1200;2700;2500;3000;3000;3100;3470;4815;8042;8042;8006;9500;2138;1312;2812;1017;309;1316;3165;812;622;369;92;2625;601;1802;1745;3477
-14;'052;Barbados;1861;Roundwood;5622;Import value;1000 USD;33;51;200;158;155;205;89;64;68;60;66;77;70;70;70;150;237;237;160;161;391;87;200;416;315;315;315;315;466;50;903;16;16;380;190;137;755;683;683;683;184;412;429;491;491;587;650;264;572;712;603;443;620;622;350;399;159;48;788;246;633;760;1494
-14;'052;Barbados;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;41;3;4;4;3;3;3;3;53;53;51;51;51;50;50;0;0;0;0;6;0;0
-14;'052;Barbados;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;34;55;0;0;4;2;2;2;14;14;14;14;14;12;12;0;0;0;0;3;0;0
-14;'052;Barbados;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2486;383;1778;1595;3376
-14;'052;Barbados;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;728;138;609;618;1401
-14;'052;Barbados;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-14;'052;Barbados;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-14;'052;Barbados;1863;Roundwood, non-coniferous;5516;Production;m3;4591;5368;5245;5423;5701;5878;5856;5934;5912;5890;5949;5943;5982;6047;6050;6069;5994;5933;5817;5775;5836;5871;5887;5863;5863;5751;5746;5629;5581;5658;5693;6762;10740;10699;10699;10220;9906;9835;9578;10423;10377;10333;10289;10245;11202;11161;11121;11082;11043;11004;10972;10940;10909;10878;10847;10812;10777;10742;10708;10674;10640;10607;10574
-14;'052;Barbados;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369;92;139;218;24;150;101
-14;'052;Barbados;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;48;60;108;24;142;93
-14;'052;Barbados;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;0;0
-14;'052;Barbados;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0
-14;'052;Barbados;1864;Wood fuel;5516;Production;m3;4591;5368;5245;5423;5701;5878;5856;5934;5912;5890;5949;5943;5982;6047;6050;6069;5994;5933;5817;5775;5836;5871;5887;5863;5863;5751;5746;5629;5581;5658;5693;5762;5740;5699;5699;5220;4906;4835;4578;5423;5377;5333;5289;5245;5202;5161;5121;5082;5043;5004;4972;4940;4909;4878;4847;4812;4777;4742;4708;4674;4640;4607;4574
-14;'052;Barbados;1864;Wood fuel;5616;Import quantity;m3;1600;800;900;700;400;200;200;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;700;700;900;900;2600;2600;2600;2600;2600;2600;2600;28;28;28;3;3;1;141;56;5;;;;;;;
-14;'052;Barbados;1864;Wood fuel;5622;Import value;1000 USD;9;5;5;3;3;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;0;0;21;30;30;17;17;74;74;74;74;74;74;74;15;15;15;1;7;1;136;56;3;;;;;;;
-14;'052;Barbados;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;;;;;;;
-14;'052;Barbados;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;;;;;;;
-14;'052;Barbados;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1628;Wood fuel, non-coniferous;5516;Production;m3;4591;5368;5245;5423;5701;5878;5856;5934;5912;5890;5949;5943;5982;6047;6050;6069;5994;5933;5817;5775;5836;5871;5887;5863;5863;5751;5746;5629;5581;5658;5693;5762;5740;5699;5699;5220;4906;4835;4578;5423;5377;5333;5289;5245;5202;5161;5121;5082;5043;5004;4972;4940;4909;4878;4847;4812;4777;4742;4708;4674;4640;4607;4574
-14;'052;Barbados;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1600;800;900;700;400;200;200;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;700;700;900;900;2600;2600;2600;2600;2600;2600;2600;28;28;28;3;3;1;141;56;5;;;;;;;
-14;'052;Barbados;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;9;5;5;3;3;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;0;0;21;30;30;17;17;74;74;74;74;74;74;74;15;15;15;1;7;1;136;56;3;;;;;;;
-14;'052;Barbados;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;;;;;;;
-14;'052;Barbados;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;;;;;;;
-14;'052;Barbados;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-14;'052;Barbados;1865;Industrial roundwood;5616;Import quantity;m3;1000;1500;5500;3800;3500;4500;2000;1500;1500;1000;2300;1600;2700;2700;2700;1800;2100;2100;800;1000;2600;500;900;3200;500;500;500;500;700;1351;2887;147;147;1811;954;800;2000;1800;2100;2100;500;870;2215;5442;5442;5406;6900;2110;1284;2784;1014;306;1315;3024;756;617;369;92;2625;601;1802;1745;3477
-14;'052;Barbados;1865;Industrial roundwood;5622;Import value;1000 USD;24;46;195;155;152;204;88;63;67;59;66;77;70;70;70;150;237;237;160;161;391;87;200;416;315;315;315;315;466;50;903;16;16;380;190;116;725;653;666;666;110;338;355;417;417;513;576;249;557;697;602;436;619;486;294;396;159;48;788;246;633;760;1494
-14;'052;Barbados;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;41;3;4;4;3;3;3;3;3;3;1;1;1;0;0;0;0;0;0;6;0;0
-14;'052;Barbados;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;34;55;0;0;4;2;2;2;2;2;2;2;2;0;0;0;0;0;0;3;0;0
-14;'052;Barbados;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2887;147;147;1639;782;800;400;200;500;500;300;380;1853;527;527;4562;6167;1472;241;1889;202;197;1194;2943;439;104;0;0;2486;383;1778;1595;3376
-14;'052;Barbados;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;903;16;16;365;175;116;113;41;54;54;32;36;113;32;32;278;376;90;15;231;164;295;465;294;139;89;0;0;728;138;609;618;1401
-14;'052;Barbados;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2887;147;147;1639;782;800;400;200;500;500;300;380;1853;527;527;4562;6167;1472;241;1889;202;197;1194;2943;439;104;0;0;2486;383;1778;1595;3376
-14;'052;Barbados;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;903;16;16;365;175;116;113;41;54;54;32;36;113;32;32;278;376;90;15;231;164;295;465;294;139;89;0;0;728;138;609;618;1401
-14;'052;Barbados;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-14;'052;Barbados;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;172;0;1600;1600;1600;1600;200;490;362;4915;4915;844;733;638;1043;895;812;109;121;81;317;513;369;92;139;218;24;150;101
-14;'052;Barbados;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;612;612;612;612;78;302;242;385;385;235;200;159;542;466;438;141;154;192;155;307;159;48;60;108;24;142;93
-14;'052;Barbados;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;41;3;4;4;3;3;3;3;3;3;1;1;1;0;0;0;0;0;0;6;0;0
-14;'052;Barbados;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;34;55;0;0;4;2;2;2;2;2;2;2;2;0;0;0;0;0;0;3;0;0
-14;'052;Barbados;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;31;620;620;575;575;575;918;409;409;19;19;19;0;439;344;13;3;0;1;1;90
-14;'052;Barbados;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;99;102;102;114;114;114;480;211;211;48;48;48;0;274;148;5;1;1;0;11;69
-14;'052;Barbados;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;6;0;0
-14;'052;Barbados;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0
-14;'052;Barbados;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;172;0;1600;1600;1600;1600;200;450;331;4295;4295;269;158;63;125;486;403;90;102;62;317;74;25;79;136;218;23;149;11
-14;'052;Barbados;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;612;612;612;612;78;271;143;283;283;121;86;45;62;255;227;93;106;144;155;33;11;43;59;107;24;131;24
-14;'052;Barbados;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;41;3;2;2;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;34;55;0;0;4;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-14;'052;Barbados;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-14;'052;Barbados;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1871;Other industrial roundwood;5616;Import quantity;m3;1000;1500;5500;3800;3500;4500;2000;1500;1500;1000;2300;1600;2700;2700;2700;1800;2100;2100;800;1000;2600;500;900;3200;500;500;500;500;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1871;Other industrial roundwood;5622;Import value;1000 USD;24;46;195;155;152;204;88;63;67;59;66;77;70;70;70;150;237;237;160;161;391;87;200;416;315;315;315;315;466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1000;1500;5500;3800;3500;4500;2000;1500;1500;1000;2300;1600;2700;2700;2700;1800;2100;2100;800;1000;2600;500;900;3200;500;500;500;500;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;24;46;195;155;152;204;88;63;67;59;66;77;70;70;70;150;237;237;160;161;391;87;200;416;315;315;315;315;466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;65;65;165;165;165;264;264;0;0;0;277;275;272;266;265;270;277;279;279;282;276;279;276;273;282;288;281;296;265;270;298;297;296;296;295;295;295;295;294;294;294;294;300;294;294;294;294;294;294;294;294;294;294;294;294;294;294;294
-14;'052;Barbados;1630;Wood charcoal;5610;Import quantity;t;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1;30;29;0;0;0;0;0;0;5;6;6;6;43;11;185;2793;67;23;23;27;37;54;23;45;44;5;11;30;19;11
-14;'052;Barbados;1630;Wood charcoal;5622;Import value;1000 USD;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;6;10;0;0;0;0;0;0;12;17;17;17;34;19;81;693;75;4;76;47;70;58;39;21;20;12;21;46;40;32
-14;'052;Barbados;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2100;240;399;2743;2743;212;131;112;98;163;109;114;126;110;80;151;67;117;92;147;122;278;84
-14;'052;Barbados;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;53;96;125;134;134;60;141;156;89;139;150;70;90;86;110;123;61;73;49;57;65;145;47
-14;'052;Barbados;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;5;5;5;5;5;5;5;5;5
-14;'052;Barbados;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;7;7;7;7;7;7;7;7;7
-14;'052;Barbados;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;65;1881;1881;183;87;82;75;108;81;61;98;81;65;62;22;18;31;18;6;17;2
-14;'052;Barbados;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;100;100;50;116;131;73;100;117;31;64;65;87;71;29;17;21;10;10;21;2
-14;'052;Barbados;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;688;239;18;300;0;0;0;0;2100;227;334;862;862;29;44;30;23;55;28;53;28;29;15;89;45;99;61;129;116;261;82
-14;'052;Barbados;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;26;10;1;17;0;0;0;0;53;88;119;34;34;10;25;25;16;39;33;39;26;21;23;52;32;56;28;47;55;124;45
-14;'052;Barbados;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;5;5;5;5;5;5;5;5;5
-14;'052;Barbados;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;7;7;7;7;7;7;7;7;7
-14;'052;Barbados;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;3;4;6
-14;'052;Barbados;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;12;11;19
-14;'052;Barbados;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;2;1
-14;'052;Barbados;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;2;1
-14;'052;Barbados;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;2;5
-14;'052;Barbados;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;10;9;18
-14;'052;Barbados;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;1667;1667;1667;1667
-14;'052;Barbados;1872;Sawnwood;5616;Import quantity;m3;24300;20600;25600;17800;23000;23600;27300;29600;31900;37300;37900;34500;40900;40900;40900;34500;34700;34700;40100;60000;58800;40100;40100;34100;45700;45700;45700;20400;32200;32200;85400;29512;28583;34071;36695;33800;70900;57300;63300;63300;11500;17431;10892;30748;30748;24080;15690;10836;10528;37770;41619;32520;23827;35222;27996;28372;17797;14236;22722;19641;32327;34126;26299
-14;'052;Barbados;1872;Sawnwood;5622;Import value;1000 USD;1244;1065;1261;948;1222;1405;1523;2000;2437;2722;2963;2695;3681;3681;3681;4906;5458;5458;7051;10531;9235;9526;9526;7748;8384;8384;8384;3575;7110;7110;13382;9574;7578;9151;8994;8700;24345;23896;18885;18885;5845;7012;6146;7189;7189;10887;15849;11189;10186;12723;15133;12474;11680;11388;10969;11293;6018;4113;9314;8962;14128;15647;12221
-14;'052;Barbados;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;31;31;0;0;0;0;0;0;19;93;456;456;5;22;100;25;24;24;12;20;9;26;11;37;24;250;3;5;24;1
-14;'052;Barbados;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;24;24;0;0;0;0;0;0;16;79;114;114;12;56;130;35;161;45;11;59;31;11;5;118;16;134;15;3;37;2
-14;'052;Barbados;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1632;Sawnwood, coniferous;5616;Import quantity;m3;23200;19200;24000;16500;21300;21900;24800;27700;29500;34900;35100;30700;35500;35500;35500;29200;29400;29400;31100;45000;46000;23200;23200;18300;18500;18500;18500;20000;32000;32000;80300;26486;27069;32659;35315;32800;62500;46000;58000;58000;5500;5885;2033;16712;16712;12258;7734;6785;6000;28820;34839;29307;19020;31080;25425;24071;15205;12273;21586;17853;30600;31591;23616
-14;'052;Barbados;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1154;958;1153;827;1072;1243;1299;1838;2227;2489;2720;2320;3089;3089;3089;3925;4353;4353;4969;7292;7431;6140;6140;2877;2860;2860;2860;3500;7000;7000;10465;8079;6947;8417;8095;7941;19802;17945;16506;16506;2676;2827;1657;2908;2908;5604;7568;5706;4638;8964;11140;9586;7228;7872;8558;7709;3784;2359;7758;6923;12395;12731;9163
-14;'052;Barbados;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;175;175;2;4;2;2;7;7;7;7;3;20;5;5;23;44;0;1;0;0
-14;'052;Barbados;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;13;29;29;2;11;7;7;13;4;0;28;10;5;1;32;13;11;0;0;0;0
-14;'052;Barbados;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;1667;1667;1667;1667
-14;'052;Barbados;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1100;1400;1600;1300;1700;1700;2500;1900;2400;2400;2800;3800;5400;5400;5400;5300;5300;5300;9000;15000;12800;16900;16900;15800;27200;27200;27200;400;200;200;5100;3026;1514;1412;1380;1000;8400;11300;5300;5300;6000;11546;8859;14036;14036;11822;7956;4051;4528;8950;6780;3213;4807;4142;2571;4301;2592;1963;1136;1788;1727;2535;2683
-14;'052;Barbados;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;90;107;108;121;150;162;224;162;210;233;243;375;592;592;592;981;1105;1105;2082;3239;1804;3386;3386;4871;5524;5524;5524;75;110;110;2917;1495;631;734;899;759;4543;5951;2379;2379;3169;4185;4489;4281;4281;5283;8281;5483;5548;3759;3993;2888;4452;3516;2411;3584;2234;1754;1556;2039;1733;2916;3058
-14;'052;Barbados;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;31;31;0;0;0;0;0;0;19;91;281;281;3;18;98;23;17;17;5;13;6;6;6;32;1;206;3;4;24;1
-14;'052;Barbados;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;24;24;0;0;0;0;0;0;16;66;85;85;10;45;123;28;148;41;11;31;21;6;4;86;3;123;15;3;37;2
-14;'052;Barbados;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;1;33;0;0;1300;1300;1300;200;56;97;56;56;93;73;111;15;7;18;19;22;47;86;29;23;39;47;41;11;19;56
-14;'052;Barbados;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;2;20;0;0;650;650;650;57;97;39;45;45;41;105;120;12;136;38;126;84;81;156;55;50;85;134;121;37;90;131
-14;'052;Barbados;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;2;2;2;2;2;1;0;0;1;0;0;0;0;0
-14;'052;Barbados;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;0;0;1;0;0;3;0;0;1;0;0;0;0;0
-14;'052;Barbados;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1873;Wood-based panels;5616;Import quantity;m3;;;;;;500;3127;3837;5648;6958;9864;15464;16869;16869;16869;17300;17700;17700;11700;15200;14800;26900;26900;12100;8300;8300;8300;8000;5500;5500;8400;5042;7175;9012;7370;6900;16200;14100;13500;13500;20000;21008;88321;16086;16086;29796;13540;13599;9866;62723;32219;15508;14598;10483;17364;12429;12676;11316;14790;10827;16397;17348;9767
-14;'052;Barbados;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;76;125;521;762;859;977;1038;1190;1190;1190;1351;1636;1636;2722;3367;4034;2779;2779;3491;3104;3104;3104;2791;1745;1745;4073;2551;2614;3034;2864;2749;7315;7542;5446;5446;7750;7684;7427;4346;4346;19969;11977;11694;7442;10999;9412;8639;7740;6225;9162;5048;5236;5032;5410;4784;8989;9693;5827
-14;'052;Barbados;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;24;29;29;46;140;33;3747;21;21;147;12;23;14;378;373;469;716;376;374;374;104
-14;'052;Barbados;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;6;7;7;15;109;38;3142;27;26;127;41;31;18;110;86;162;210;161;137;198;63
-14;'052;Barbados;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-14;'052;Barbados;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;2100;2300;3700;4000;6900;11200;11900;11900;11900;15000;16000;16000;8500;13000;12300;25200;25200;9900;5300;5300;5300;5000;4800;4800;2900;3895;6142;7944;6727;6000;9200;12000;11500;11500;16500;17299;84525;9306;9306;23974;11707;11972;8306;60466;30017;14828;13487;9891;16115;11719;12150;10828;12837;9354;14683;15659;8631
-14;'052;Barbados;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;32;308;555;538;598;629;666;666;666;866;1124;1124;1532;2643;3072;2014;2014;2538;1813;1813;1813;1500;1500;1500;2062;2178;2276;2591;2554;2304;5328;6411;4380;4380;6271;6787;6604;3304;3304;18829;10711;10387;6344;9318;7632;7826;6829;5678;8656;4531;4780;4590;4907;4294;8044;8421;4973
-14;'052;Barbados;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;19;134;2;3716;1;1;133;1;1;5;29;26;122;0;2;0;0;101
-14;'052;Barbados;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;10;102;4;3108;1;0;103;1;5;5;26;8;84;0;24;0;61;61
-14;'052;Barbados;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;500;800;1000;1800;1700;3000;3600;3600;3600;600;800;800;2300;1300;2200;1100;1100;1600;1900;1900;1900;1900;500;500;4600;218;185;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;18;64;87;140;148;162;177;177;177;167;303;303;981;515;873;454;454;644;786;786;786;786;150;150;1608;114;28;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;200;1400;900;900;900;400;452;444;1523;1523;24;207;3;5;67;12;5;11;11;4;4;23;23;529;70;51;96;113
-14;'052;Barbados;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;24;1021;717;717;717;286;355;249;249;249;25;79;8;16;24;123;42;25;12;12;5;56;56;23;62;54;315;196
-14;'052;Barbados;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;22;22;22;22;1;1;1;8;8;2;2;2;2;2;0;0;369;369;369;369;0
-14;'052;Barbados;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;4;4;4;4;6;6;6;4;4;2;6;6;6;6;0;0;132;132;132;132;0
-14;'052;Barbados;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;11;29;26;36;71;71;94;10;5;43;43;43;43;43;61;643;20;1
-14;'052;Barbados;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;21;23;29;16;66;66;41;3;47;16;16;16;16;16;17;267;7;6
-14;'052;Barbados;1874;Fibreboard;5616;Import quantity;m3;;;;;;500;527;737;948;1158;1264;1264;1369;1369;1369;1700;900;900;900;900;300;600;600;600;1100;1100;1100;1100;200;200;900;929;848;1046;427;700;5600;1200;1100;1100;3100;3257;3351;5256;5256;5787;1597;1598;1519;2119;2119;581;1090;576;1202;663;460;422;1381;1342;1020;1573;1022
-14;'052;Barbados;1874;Fibreboard;5622;Import value;1000 USD;;;;;;76;75;149;120;181;231;247;347;347;347;318;209;209;209;209;89;311;311;309;505;505;505;505;95;95;403;259;310;438;222;421;966;414;349;349;1193;542;573;792;792;1094;1164;1270;1066;1591;1591;730;883;488;478;496;384;370;464;411;624;950;652
-14;'052;Barbados;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;30;30;12;12;12;9;20;7;347;347;347;347;5;5;5;3
-14;'052;Barbados;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;28;28;22;22;22;34;20;7;78;78;78;78;5;5;5;2
-14;'052;Barbados;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;284;279;279;776;556;197;164;214;214;72;143;34;219;127;114;41;0;3;202;171;75
-14;'052;Barbados;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;82;130;130;319;368;124;122;157;157;62;134;28;127;72;64;23;0;16;149;131;51
-14;'052;Barbados;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;200;400;200;100;100;1200;25;156;676;676;142;415;364;326;490;490;98;422;272;100;186;130;223;227;167;418;330;512
-14;'052;Barbados;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;275;275;140;75;75;900;13;51;116;116;69;248;231;191;287;287;189;248;184;66;161;116;166;171;183;362;440;471
-14;'052;Barbados;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;5;5;5;5;5;3;343;343;343;343;1;1;1;1
-14;'052;Barbados;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;17;17;17;17;17;3;74;74;74;74;1;1;1;1
-14;'052;Barbados;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;96;530;176;500;5200;1000;1000;1000;1900;3095;2911;4301;4301;4869;626;1037;1029;1415;1415;411;525;270;883;350;216;158;1154;1172;400;1072;435
-14;'052;Barbados;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;42;189;67;146;691;274;274;274;293;466;440;546;546;706;548;915;753;1147;1147;479;501;276;285;263;204;181;293;212;113;379;130
-14;'052;Barbados;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;26;26;7;7;7;4;15;4;4;4;4;4;4;4;4;2
-14;'052;Barbados;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;26;26;5;5;5;17;3;4;4;4;4;4;4;4;4;1
-14;'052;Barbados;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;500;527;737;948;1158;1264;1264;1369;1369;1369;1700;900;900;900;900;300;600;600;600;1100;1100;1100;1100;200;200;900;819;752;516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;76;75;149;120;181;231;247;347;347;347;318;209;209;209;209;89;311;311;309;505;505;505;505;95;95;403;224;268;249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;2500;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;356;1201;1540;900;2100;2700;2400;2400;1600;1354;3165;949;926;1410;431;358;90;97;97;95;79;41;43;36;59;183;74;46;45;45;64
-14;'052;Barbados;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;123;611;634;536;1265;1317;1311;1311;887;744;542;535;566;783;174;126;76;90;90;90;54;37;39;34;65;67;50;42;42;43;23
-14;'052;Barbados;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;1134;0;0;0;0;0;0;0;98;21;41;21;297;768;1053;1140;1140;3907;4141;3499;2241;1023;854;889;980;326;275;274;257
-14;'052;Barbados;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;711;0;0;0;0;0;0;0;34;21;21;2;46;83;244;184;184;435;431;361;212;99;86;88;101;42;38;52;50
-14;'052;Barbados;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;182;1167;1506;900;2100;2100;2200;2200;1400;1154;2965;886;886;1136;157;84;86;86;86;84;56;40;40;35;45;45;45;45;45;45;19
-14;'052;Barbados;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;98;600;623;536;1265;1265;1284;1284;860;717;515;528;528;727;118;70;73;73;73;73;52;36;36;33;41;41;41;41;41;41;13
-14;'052;Barbados;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1134;0;0;0;0;0;0;0;20;20;20;21;34;34;309;46;46;44;44;31;31;31;31;31;31;31;31;55;55
-14;'052;Barbados;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;711;0;0;0;0;0;0;0;15;15;15;2;35;35;182;51;51;51;51;18;18;18;18;18;18;18;18;34;34
-14;'052;Barbados;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;182;1167;1506;900;1300;1300;1400;1400;800;664;413;490;490;897;78;58;60;60;60;58;30;14;14;9;19;19;19;19;19;19;19
-14;'052;Barbados;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;98;600;623;536;527;527;546;546;368;337;201;211;211;489;52;42;45;45;45;45;24;8;8;5;13;13;13;13;13;13;13
-14;'052;Barbados;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1134;0;0;0;0;0;0;0;0;0;0;0;13;13;288;25;25;23;23;10;10;10;10;10;10;10;10;34;34
-14;'052;Barbados;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;711;0;0;0;0;0;0;0;0;0;0;0;33;33;180;49;49;49;49;16;16;16;16;16;16;16;16;32;32
-14;'052;Barbados;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-14;'052;Barbados;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;182;1167;1487;900;1300;1300;1400;1400;800;664;413;488;488;895;76;56;58;58;58;58;30;14;14;9;19;19;19;19;19;19;19
-14;'052;Barbados;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;98;600;612;536;527;527;546;546;368;337;201;211;211;489;52;42;45;45;45;45;24;8;8;5;13;13;13;13;13;13;13
-14;'052;Barbados;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1119;0;0;0;0;0;0;0;0;0;0;0;13;13;288;25;25;23;23;10;10;10;10;10;10;10;10;34;34
-14;'052;Barbados;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;0;0;0;0;0;0;0;0;0;0;0;33;33;180;49;49;49;49;16;16;16;16;16;16;16;16;32;32
-14;'052;Barbados;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;11;13;13;8;18;18;18;18;18;18;18
-14;'052;Barbados;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;13;5;5;3;11;11;11;11;11;11;11
-14;'052;Barbados;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-14;'052;Barbados;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;16;16;16;16;16;16;16;16;16;16;16;16;16;16
-14;'052;Barbados;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;180;1165;1292;900;1300;1300;1400;1400;800;663;412;487;487;894;75;55;55;55;55;55;1;1;1;1;1;1;1;1;1;1;1
-14;'052;Barbados;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;93;598;567;536;527;527;546;546;368;332;196;206;206;484;47;37;37;37;37;37;3;3;3;2;2;2;2;2;2;2;2
-14;'052;Barbados;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1119;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0;0;0;0;0;0;0;0;24;24
-14;'052;Barbados;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16
-14;'052;Barbados;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;0;0;0;;;;;;;
-14;'052;Barbados;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;;;;;;;
-14;'052;Barbados;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;0;0;0;;;;;;;
-14;'052;Barbados;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;0;0;0;;;;;;;
-14;'052;Barbados;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;0;0;0;;;;;;;
-14;'052;Barbados;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;0;0;0;;;;;;;
-14;'052;Barbados;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;800;800;800;800;600;490;2552;396;396;239;79;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;0
-14;'052;Barbados;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;738;738;738;738;492;380;314;317;317;238;66;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;0
-14;'052;Barbados;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-14;'052;Barbados;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-14;'052;Barbados;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0
-14;'052;Barbados;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0
-14;'052;Barbados;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;2500;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;174;34;34;0;0;600;200;200;200;200;200;63;40;274;274;274;4;11;11;11;23;1;3;1;14;138;29;1;0;0;45
-14;'052;Barbados;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;25;11;11;0;0;52;27;27;27;27;27;7;38;56;56;56;3;17;17;17;2;1;3;1;24;26;9;1;1;2;10
-14;'052;Barbados;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;0;0;0;0;0;0;0;78;1;21;0;263;734;744;1094;1094;3863;4097;3468;2210;992;823;858;949;295;244;219;202
-14;'052;Barbados;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;19;6;6;0;11;48;62;133;133;384;380;343;194;81;68;70;83;24;20;18;16
-14;'052;Barbados;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-14;'052;Barbados;1876;Paper and paperboard;5610;Import quantity;t;2100;2400;2200;2200;1700;1800;1700;1900;3200;2500;2600;3800;3100;3100;3100;5400;6300;7100;7800;8200;7800;6700;6700;7700;7100;7600;7100;8100;7600;7600;14200;9744;9048;10282;6930;6200;10400;11200;10901;10901;13830;8247;7437;17373;17373;8849;10558;13142;10775;10231;10231;8051;9181;10328;6161;8726;6137;6359;6170;5039;4423.83;4393;3790
-14;'052;Barbados;1876;Paper and paperboard;5622;Import value;1000 USD;527;578;592;632;580;684;540;666;846;893;1058;1664;2077;2077;2077;5692;6285;6656;7274;10281;10778;7203;7203;7771;7522;7883;7523;8233;5800;5800;14144;10673;7340;8007;5721;5399;13401;13511;8528;8528;13521;11417;11254;12791;12791;13008;15089;18241;15448;16294;16294;11743;13460;19220;11440;14375;9814;10989;9775;7638;8455.1;9961;9221
-14;'052;Barbados;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;111;37;37;0;0;0;0;0;200;205;168;193;193;116;264;970;5226;1026;1026;780;675;1368;1161;534;578;792;1015;272;239;227;219
-14;'052;Barbados;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;60;27;27;0;0;0;0;0;91;162;123;154;154;186;320;764;1478;1025;1025;1072;772;13404;12197;485;549;705;1091;393;462;479;534
-14;'052;Barbados;2042;Graphic papers;5610;Import quantity;t;800;1100;1000;1000;800;800;1100;1100;1800;1400;1300;1700;1300;1300;1300;1800;1700;2500;3700;4300;4000;3200;3200;5400;4500;5000;4500;5500;2500;2500;7900;4464;5509;6995;3657;3500;4900;6200;7601;7601;8100;6169;5078;11645;11645;6782;8034;10543;7907;7583;7583;5986;7247;7717;4101;6119;4225;4379;4418;3638;2690;3252;2761
-14;'052;Barbados;2042;Graphic papers;5622;Import value;1000 USD;207;255;250;271;271;311;269;316;360;403;473;533;729;729;729;1366;1275;1646;2613;3083;3867;2838;2838;5345;4803;5164;4804;5514;2100;2100;8263;5318;3863;4699;2195;2654;7801;7912;5305;5305;7762;6611;5987;7779;7779;7545;8330;10855;7852;8109;8109;7444;8631;10161;5321;6189;5135;5244;5412;4350;3571;5427;4722
-14;'052;Barbados;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;;;;;70;31;170;170;74;233;667;898;616;616;370;265;167;183;149;193;197;719;227;194;173;166
-14;'052;Barbados;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;;;;;118;65;131;131;143;282;585;1127;624;624;671;371;210;154;181;251;264;807;294;360;387;450
-14;'052;Barbados;1671;Newsprint;5610;Import quantity;t;700;1000;800;800;700;700;500;500;1400;900;700;1100;500;500;500;700;700;1500;1200;1500;2000;1700;1700;2000;1400;1900;1400;2400;1700;1700;3300;2780;2245;3844;3241;2300;1200;2800;3500;3500;4200;2467;1897;5041;5041;3068;4098;5729;4889;3261;3261;1956;3386;2857;1082;3195;1195;1534;1764;1371;819;772;510
-14;'052;Barbados;1671;Newsprint;5622;Import value;1000 USD;150;197;150;175;162;193;92;100;173;169;176;206;265;265;265;311;329;700;710;900;1200;1020;1020;1200;989;1350;990;1700;1200;1200;2222;2110;1042;1856;1436;1026;1473;2528;1403;1403;3090;2304;1997;2571;2571;2711;3092;4409;3509;2361;2361;1611;2993;2484;698;2038;742;1023;1153;797;483;592;428
-14;'052;Barbados;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;12;112;382;440;264;264;146;249;116;175;110;110;121;514;137;44;71;54
-14;'052;Barbados;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;30;68;229;539;180;180;114;197;94;129;73;82;89;388;60;45;68;48
-14;'052;Barbados;1674;Printing and writing papers;5610;Import quantity;t;100;100;200;200;100;100;600;600;400;500;600;600;800;800;800;1100;1000;1000;2500;2800;2000;1500;1500;3400;3100;3100;3100;3100;800;800;4600;1684;3264;3151;416;1200;3700;3400;4101;4101;3900;3702;3181;6604;6604;3714;3936;4814;3018;4322;4322;4030;3861;4860;3019;2924;3030;2845;2654;2267;1871;2480;2251
-14;'052;Barbados;1674;Printing and writing papers;5622;Import value;1000 USD;57;58;100;96;109;118;177;216;187;234;297;327;464;464;464;1055;946;946;1903;2183;2667;1818;1818;4145;3814;3814;3814;3814;900;900;6041;3208;2821;2843;759;1628;6328;5384;3902;3902;4672;4307;3990;5208;5208;4834;5238;6446;4343;5748;5748;5833;5638;7677;4623;4151;4393;4221;4259;3553;3088;4835;4294
-14;'052;Barbados;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;;;;;67;28;167;167;62;121;285;458;352;352;224;16;51;8;39;83;76;205;90;150;102;112
-14;'052;Barbados;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;;;;;116;63;129;129;113;214;356;588;444;444;557;174;116;25;108;169;175;419;234;315;319;402
-14;'052;Barbados;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523;631;631;600;723;406;507;507;2386;1819;1621;935;1645;1645;2180;2275;1674;1842;1192;1414;1414;1245;745;447;312;343
-14;'052;Barbados;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;726;726;869;746;513;399;399;3249;2491;2370;1477;2413;2413;3546;3650;2838;3125;2021;2238;2238;2142;1331;856;824;863
-14;'052;Barbados;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;2;2;2;2;19;15;2;2;2;2;6;6;6;6;6;8;4;0;5;0
-14;'052;Barbados;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;2;2;2;2;5;35;20;20;93;93;15;15;15;15;15;29;17;2;12;1
-14;'052;Barbados;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2528;3049;3049;2900;2731;2468;4726;4726;932;1624;2070;1276;1220;1220;1009;937;1034;811;1208;1132;1040;994;879;740;1144;1142
-14;'052;Barbados;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3818;2767;2767;3313;3223;3068;3727;3727;1038;1956;2597;1712;1425;1425;1265;1134;1331;961;1448;1437;1418;1447;1281;1048;2057;1939
-14;'052;Barbados;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;11;128;128;40;39;123;348;348;348;220;12;44;1;31;74;67;197;86;150;97;111
-14;'052;Barbados;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;17;98;98;76;109;167;419;419;419;459;76;100;9;88;149;155;388;217;313;307;398
-14;'052;Barbados;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;421;421;400;248;307;1371;1371;396;493;1123;807;1457;1457;841;649;2152;366;524;484;391;415;643;684;1024;766
-14;'052;Barbados;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;409;409;490;338;409;1082;1082;547;791;1479;1154;1910;1910;1022;854;3508;537;682;718;565;670;941;1184;1954;1492
-14;'052;Barbados;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;37;37;20;80;143;95;2;2;2;2;1;1;2;3;3;0;0;0;0;1
-14;'052;Barbados;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;29;29;35;103;184;134;5;5;5;5;1;1;5;5;5;2;0;0;0;3
-14;'052;Barbados;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-14;'052;Barbados;1675;Other paper and paperboard;5610;Import quantity;t;1300;1300;1200;1200;900;1000;600;800;1400;1100;1300;2100;1800;1800;1800;3600;4600;4600;4100;3900;3800;3500;3500;2300;2600;2600;2600;2600;5100;5100;6300;5280;3539;3287;3273;2700;5500;5000;3300;3300;5730;2078;2359;5728;5728;2067;2524;2599;2868;2648;2648;2065;1934;2611;2060;2607;1912;1980;1752;1401;1733.83;1141;1029
-14;'052;Barbados;1675;Other paper and paperboard;5622;Import value;1000 USD;320;323;342;361;309;373;271;350;486;490;585;1131;1348;1348;1348;4326;5010;5010;4661;7198;6911;4365;4365;2426;2719;2719;2719;2719;3700;3700;5881;5355;3477;3308;3526;2745;5600;5599;3223;3223;5759;4806;5267;5012;5012;5463;6759;7386;7596;8185;8185;4299;4829;9059;6119;8186;4679;5745;4363;3288;4884.1;4534;4499
-14;'052;Barbados;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;110;36;36;0;0;0;0;0;200;135;137;23;23;42;31;303;4328;410;410;410;410;1201;978;385;385;595;296;45;45;54;53
-14;'052;Barbados;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;59;26;26;0;0;0;0;0;91;44;58;23;23;43;38;179;351;401;401;401;401;13194;12043;304;298;441;284;99;102;92;84
-14;'052;Barbados;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;700;500;600;700;700;700;700;400;600;600;600;1300;1100;600;600;500;200;200;200;200;200;200;300;300;300;0;0;0;0;0;0;0;1500;1226;1340;914;914;919;597;894;1212;801;801;958;795;515;683;640;787;748;742;713;257;61;43
-14;'052;Barbados;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;175;184;207;550;672;672;672;582;850;850;850;2503;2857;692;692;615;342;342;342;342;300;300;400;400;400;0;0;0;0;0;0;0;1896;1342;1513;1005;1005;1305;802;1322;1731;1158;1158;1210;1006;610;872;711;958;987;931;846;358;247;210
-14;'052;Barbados;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;2;2;2;2;5;2;2;2;2;4;0;0;10;10
-14;'052;Barbados;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1;1;1;1;24;6;11;5;5;23;0;1;12;12
-14;'052;Barbados;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3300;3300;930;168;274;1721;1721;458;1170;945;1103;1142;1142;388;336;936;389;920;1089;1191;968;657;1423.83;1048;908
-14;'052;Barbados;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5599;3223;3223;1062;487;601;1069;1069;1720;3565;3301;3821;4544;4544;690;613;3824;657;3579;3367;4421;3067;2126;4177.1;3963;3781
-14;'052;Barbados;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;132;132;6;6;25;29;270;4159;361;361;361;361;302;302;381;381;591;292;43;43;44;43
-14;'052;Barbados;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;91;36;36;4;4;24;28;80;205;295;295;295;295;264;264;266;266;409;260;72;74;80;72
-14;'052;Barbados;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;500;500;500;400;400;400;400;1900;1900;1900;1400;2000;2200;2000;2000;1400;2000;2000;2000;2000;4400;4400;5000;2700;2700;2700;2700;2700;5500;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;196;212;256;176;180;180;180;1891;1665;1665;1316;2798;2571;2419;2419;1311;1827;1827;1827;1827;2800;2800;3000;2539;2539;2700;2700;2745;5600;;;;;;;;;;;;;;;;;;;;;;;;;;
-14;'052;Barbados;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;177;177;100;9;16;30;30;28;39;59;67;61;61;7;32;34;38;8;44;29;16;8;8;29;4
-14;'052;Barbados;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;99;99;61;15;26;19;19;23;48;48;51;43;43;24;39;34;43;16;40;36;19;18;25;59;20
-14;'052;Barbados;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;132;132;6;6;25;25;233;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-14;'052;Barbados;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;91;36;36;4;4;24;24;42;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-14;'052;Barbados;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;471;471;471;24;31;862;862;214;889;732;796;884;884;299;216;626;236;757;846;990;679;394;1108.83;699;599
-14;'052;Barbados;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;816;470;470;470;71;72;535;535;1085;2941;2733;3106;3877;3877;348;282;3154;294;3048;2794;3891;2411;1538;3409.1;2885;2657
-14;'052;Barbados;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;4111;249;249;249;249;249;249;249;249;249;249;0;0;1;0
-14;'052;Barbados;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;125;187;187;187;187;187;187;187;187;187;187;0;2;8;0
-14;'052;Barbados;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3929;2593;2593;300;132;197;732;732;206;167;148;238;187;187;77;74;247;95;149;195;171;272;247;290;308;295
-14;'052;Barbados;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4439;2555;2555;432;386;469;455;455;596;473;493;655;602;602;303;275;613;289;499;527;491;633;551;702;984;1071
-14;'052;Barbados;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;5;69;69;69;69;10;10;89;89;299;0;0;0;0;0
-14;'052;Barbados;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;8;36;36;36;36;5;5;7;7;150;1;0;0;0;0
-14;'052;Barbados;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;59;59;59;3;30;97;97;10;75;6;2;10;10;5;14;29;20;6;4;1;1;8;17;12;10
-14;'052;Barbados;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;99;99;99;15;34;60;60;16;103;27;9;22;22;15;17;23;31;16;6;3;4;19;41;35;33
-14;'052;Barbados;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;40;40;40;40;40;40;40;40;40;40;40;40;40;40;40
-14;'052;Barbados;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;71;71;71;71;71;71;71;71;71;71;71;71;71;71;71
-14;'052;Barbados;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-14;'052;Barbados;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;200;100;200;1000;700;700;700;1300;2100;2100;2100;600;500;900;900;400;400;400;400;400;500;500;1000;2280;539;587;573;0;0;0;0;0;3300;684;745;3093;3093;690;757;760;553;705;705;719;803;1160;988;1047;36;41;42;31;53;32;78
-14;'052;Barbados;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;115;94;122;405;496;496;496;1853;2495;2495;2495;1897;1483;1254;1254;500;550;550;550;550;600;600;2481;2416;538;608;826;0;0;0;0;0;2801;2977;3153;2938;2938;2438;2392;2763;2044;2483;2483;2399;3210;4625;4590;3896;354;337;365;316;349;324;508
-14;'052;Barbados;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;110;36;36;0;0;0;0;0;0;3;5;17;17;17;2;33;146;47;47;47;47;894;674;2;2;2;0;2;2;0;0
-14;'052;Barbados;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;59;26;26;0;0;0;0;0;0;8;22;19;19;19;10;99;124;105;105;105;105;12906;11773;27;27;27;1;27;27;0;0
-14;'052;Barbados;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30229;25457;21246;20127;28443;35158;28881
-14;'052;Barbados;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;489;599;513;454;981;361
-14;'052;Barbados;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9694;9504;7423;8038;10649;10353;3773
-14;'052;Barbados;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;6;6;4
-14;'052;Barbados;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7176;6986;7051;7191;9792;9510;3097
-14;'052;Barbados;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;4;4;4
-14;'052;Barbados;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2518;2518;372;847;857;843;676
-14;'052;Barbados;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0
-14;'052;Barbados;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1105;1580;1623;2155;2167;2853;3702
-14;'052;Barbados;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;197;145;74;277;296;143
-14;'052;Barbados;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;247;505;183;229;329;421
-14;'052;Barbados;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;12;24;5;24;12;3
-14;'052;Barbados;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3823;2844;3059;2556;3177;6570;5833
-14;'052;Barbados;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;91;58;1;11;15;48
-14;'052;Barbados;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-14;'052;Barbados;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24
-14;'052;Barbados;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15093;11079;8211;6340;11514;14132;12825
-14;'052;Barbados;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;180;339;377;68;545;88
-14;'052;Barbados;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;68;1325
-14;'052;Barbados;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;15;15
-14;'052;Barbados;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;203;425;853;698;853;1002
-14;'052;Barbados;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;29;48;64;92;60
-14;'052;Barbados;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29951;30767;33022;28341;28436;39368;37884
-14;'052;Barbados;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14046;16115;14556;16903;17655;17738;16799
-14;'052;Barbados;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;23;30;7;14;40;31
-14;'052;Barbados;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;5;4;3;1;1
-14;'052;Barbados;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281;3286;3991;3298;4387;4471;4110
-14;'052;Barbados;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;30;29;2;12;271;109
-14;'052;Barbados;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14884;15347;10656;10024;10798;13647;14227
-14;'052;Barbados;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;202;73;416;555;570;267
-14;'052;Barbados;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6771;6891;7157;6181;8672;8718
-14;'052;Barbados;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;954;1435;1790;1987;1631;1895;2577
-14;'052;Barbados;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5776;5340;11454;7855;7056;12538;10798
-14;'052;Barbados;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12907;14442;12659;14494;15454;15001;13845
-57;'112;Belarus;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677416.5;800267;830559;765898;904493;505269;541812
-57;'112;Belarus;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1639550;2036237;2138422;2299000;3287755;1527056;1010511
-57;'112;Belarus;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1285;3296;7941;24059;69294;54646;142520;177380;164036;191051;211405;211405;211405;211405;211405;211407;521445;638289;445065;465155;433524;416618;283554;283235;354488.4;395745;393293;372039;439091;347707;341450
-57;'112;Belarus;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21800;35753;40029;55572;75923;72129;100307;153501;173070;156956;180845;258422;258422;258422;258422;258422;187055;380454;469770;426957;446072;581505;712890;634322;775274;1035517.4;1313936;1339722;1461634;2102638;1104670;639061
-57;'112;Belarus;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11396000;10031000;10015000;10015000;15707000;17585000;5902000;6561100;6135800;6485000;6947000;7542300;8622000;8696000;8756100;8756100;8756100;8811800;10364200;10364200;18067000;18522300;19568000;19568000;21071101;23802015;28590000;26996400;27049890;27289590;25693800;21880800
-57;'112;Belarus;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;85;;;47;0;60400;150300;105300;106548;131300;76504;76504;76504;76504;76504;76504;5455;35410;13000;13100;18640;11712;26188;31210;45600;40250;41400;37700;163024;163024;163024
-57;'112;Belarus;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;;;3;0;3175;4554;4141;3725;5283;3088;3088;3088;3088;3088;3089;410;2160;978;1285;1855;2680;1790;2035;3757.6;3783;3626;3760;10383;10383;10383
-57;'112;Belarus;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127507;166208;174500;443500;670348;513148;881400;834200;945000;1107845;1341800;1517550;1517550;1517550;1517550;1517550;1517550;1479488;2221923;2520000;2503354;2699649;2469830;3001552;2995434;2061700;155213;448700;773400;201834;74856;74856
-57;'112;Belarus;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6321;5823;7185;20046;30012;10262;22636;19783;21079;22935;27687;35677;35677;35677;35677;35677;35677;46160;101487;129493;84627;110602;121061;98071;91924;82280.6;10557;19954;29333;23102;11758;11758
-57;'112;Belarus;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6135000;5340000;5336000;5336000;9337000;11243000;3582000;3474700;3382000;3665000;3958000;5729900;5751900;5775700;5817300;5817300;5817300;5161917;6162845;6162845;12029000;12394600;13088000;13088000;15223401;18885184;22945400;21149800;20359520;19831120;18044200;16610400
-57;'112;Belarus;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2729;2700;2000;2000;2000;2000
-57;'112;Belarus;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278.7;321;304;159;159;159;159
-57;'112;Belarus;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1122300;25185;117800;282000;5831;10853;10853
-57;'112;Belarus;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47807.6;601;2834;6943;754;1715;1715
-57;'112;Belarus;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5261000;4691000;4679000;4679000;6370000;6342000;2320000;3086400;2753800;2820000;2989000;1812400;2870100;2920300;2938800;2938800;2938800;3649883;4201355;4201355;6038000;6127700;6480000;6480000;5847700;4916831;5644600;5846600;6690370;7458470;7649600;5270400
-57;'112;Belarus;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43300;37521;38700;35700;161024;161024;161024
-57;'112;Belarus;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3478.9;3462;3322;3601;10224;10224;10224
-57;'112;Belarus;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;939400;130028;330900;491400;196003;64003;64003
-57;'112;Belarus;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34473;9956;17120;22390;22348;10043;10043
-57;'112;Belarus;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;813000;825000;809000;809000;809000;809000;868000;1143500;928200;947000;978000;1096400;1266000;1340000;1345000;1345000;1345000;2093800;2291600;2291600;7443000;7633000;8244000;8244000;8438800;9679100;12356300;11034300;10057700;10297400;11229900;8803200
-57;'112;Belarus;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;6500;600;548;1200;504;504;504;504;504;504;504;504;0;100;70;57;220;910;0;0;0;0;0;0;0
-57;'112;Belarus;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;258;33;17;25;10;10;10;10;10;11;10;10;2;21;9;4;15;27;0;0;0;0;0;0;0
-57;'112;Belarus;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;14400;9600;16300;12045;13800;74550;74550;74550;74550;74550;74550;4388;4623;11000;27354;40649;51328;59383;65334;86000;150000;180800;177200;201000;69000;69000
-57;'112;Belarus;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;307;196;310;265;212;1146;1146;1146;1146;1146;1146;320;383;1047;2008;3313;4662;4350;4649;6003;10372;13596;15788;23061;10756;10756
-57;'112;Belarus;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210000;200000;196000;196000;196000;196000;217000;457400;371300;379000;391000;274000;405900;429700;431300;431300;431300;671417;734845;734845;4924000;4963000;5360000;5360000;5801100;7586700;9708500;8195700;6925800;6397400;7049800;5881800
-57;'112;Belarus;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-57;'112;Belarus;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-57;'112;Belarus;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;22000;10000;5000;5000;5000;5000
-57;'112;Belarus;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;481;287;714;714;714;714
-57;'112;Belarus;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603000;625000;613000;613000;613000;613000;651000;686100;556900;568000;587000;822400;860100;910300;913700;913700;913700;1422383;1556755;1556755;2519000;2670000;2884000;2884000;2637700;2092400;2647800;2838600;3131900;3900000;4180100;2921400
-57;'112;Belarus;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-57;'112;Belarus;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-57;'112;Belarus;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;128000;170800;172200;196000;64000;64000
-57;'112;Belarus;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5481;9891;13309;15074;22347;10042;10042
-57;'112;Belarus;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;6500;600;548;1200;504;504;504;504;504;504;504;504;0;100;70;57;220;910;;;;;;;
-57;'112;Belarus;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;258;33;17;25;10;10;10;10;10;11;10;10;2;21;9;4;15;27;;;;;;;
-57;'112;Belarus;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;14400;9600;16300;12045;13800;74550;74550;74550;74550;74550;74550;4388;4623;11000;27354;40649;51328;59383;65334;;;;;;;
-57;'112;Belarus;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;307;196;310;265;212;1146;1146;1146;1146;1146;1146;320;383;1047;2008;3313;4662;4350;4649;;;;;;;
-57;'112;Belarus;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10583000;9206000;9206000;9206000;14898000;16776000;5034000;5417600;5207600;5538000;5969000;6445900;7356000;7356000;7411100;7411100;7411100;6718000;8072600;8072600;10624000;10889300;11324000;11324000;12632301;14122915;16233700;15962100;16992190;16992190;14463900;13077600
-57;'112;Belarus;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;85;;;47;0;56600;143800;104700;106000;130100;76000;76000;76000;76000;76000;76000;4951;34906;13000;13000;18570;11655;25968;30300;45600;40250;41400;37700;163024;163024;163024
-57;'112;Belarus;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;;;3;0;3144;4296;4108;3708;5258;3078;3078;3078;3078;3078;3078;400;2150;976;1264;1846;2676;1775;2008;3757.6;3783;3626;3760;10383;10383;10383
-57;'112;Belarus;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127507;166208;174500;443500;670200;513000;867000;824600;928700;1095800;1328000;1443000;1443000;1443000;1443000;1443000;1443000;1475100;2217300;2509000;2476000;2659000;2418502;2942169;2930100;1975700;5213;267900;596200;834;5856;5856
-57;'112;Belarus;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6321;5823;7185;20046;30000;10250;22329;19587;20769;22670;27475;34531;34531;34531;34531;34531;34531;45840;101104;128446;82619;107289;116399;93721;87275;76277.6;185;6358;13545;41;1002;1002
-57;'112;Belarus;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5925000;5140000;5140000;5140000;9141000;11047000;3365000;3017300;3010700;3286000;3567000;5455900;5346000;5346000;5386000;5386000;5386000;4490500;5428000;5428000;7105000;7431600;7728000;7728000;9422301;11298484;13236900;12954100;13433720;13433720;10994400;10728600
-57;'112;Belarus;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;16;;;15;0;28300;49700;46000;32800;49100;24600;24600;24600;24600;24600;24600;2432;15747;1000;1000;600;1213;2344;2700;2300;2729;2700;2000;2000;2000;2000
-57;'112;Belarus;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;;;2;0;1572;1730;1198;1129;1939;733;733;733;733;733;733;209;792;117;161;78;121;165;254;278.7;321;304;159;159;159;159
-57;'112;Belarus;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117822;155959;155500;252500;405200;363000;494000;572700;650200;836200;1045300;1151200;1151200;1151200;1151200;1151200;1151200;553600;978000;1119000;840000;1376000;1482000;1779626;1644500;1111300;3185;107800;277000;831;5853;5853
-57;'112;Belarus;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5897;4608;5889;11142;18000;7250;12727;12934;14632;16262;20612;27736;27736;27736;27736;27736;27736;18820;45764;59973;30652;59803;70723;63685;57714;47285.6;120;2547;6229;40;1001;1001
-57;'112;Belarus;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;16;;;15;0;28300;49700;46000;32800;49100;24600;24600;24600;24600;24600;24600;2432;15747;1000;1000;600;1213;2344;2700;2300;2729;2700;2000;2000;2000;2000
-57;'112;Belarus;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;;;2;0;1572;1730;1198;1129;1939;733;733;733;733;733;733;209;792;117;161;78;121;165;254;278.7;321;304;159;159;159;159
-57;'112;Belarus;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117822;155959;155500;252500;405200;363000;494000;572700;650200;836200;1045300;1151200;1151200;1151200;1151200;1151200;1151200;553600;978000;1119000;840000;1376000;1482000;1779626;1644500;1111300;3185;107800;277000;831;5853;5853
-57;'112;Belarus;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5897;4608;5889;11142;18000;7250;12727;12934;14632;16262;20612;27736;27736;27736;27736;27736;27736;18820;45764;59973;30652;59803;70723;63685;57714;47285.6;120;2547;6229;40;1001;1001
-57;'112;Belarus;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4658000;4066000;4066000;4066000;5757000;5729000;1669000;2400300;2196900;2252000;2402000;990000;2010000;2010000;2025100;2025100;2025100;2227500;2644600;2644600;3519000;3457700;3596000;3596000;3210000;2824431;2996800;3008000;3558470;3558470;3469500;2349000
-57;'112;Belarus;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;;;32;0;28300;94100;58700;73200;81000;51400;51400;51400;51400;51400;51400;2519;19159;12000;12000;17970;10442;23624;27600;43300;37521;38700;35700;161024;161024;161024
-57;'112;Belarus;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;1;0;1572;2566;2910;2579;3319;2345;2345;2345;2345;2345;2345;191;1358;859;1103;1768;2555;1610;1754;3478.9;3462;3322;3601;10224;10224;10224
-57;'112;Belarus;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9685;10249;19000;191000;265000;150000;373000;251900;278500;259600;282700;291800;291800;291800;291800;291800;291800;921500;1239300;1390000;1636000;1283000;936502;1162543;1285600;864400;2028;160100;319200;3;3;3
-57;'112;Belarus;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;1215;1296;8904;12000;3000;9602;6653;6137;6408;6863;6795;6795;6795;6795;6795;6795;27020;55340;68473;51967;47486;45676;30036;29561;28992;65;3811;7316;1;1;1
-57;'112;Belarus;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;500;90;0;0;0;0;0
-57;'112;Belarus;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70.2;15;0;0;0;0;0
-57;'112;Belarus;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;;;32;0;28300;94100;58700;73200;80500;51400;51400;51400;51400;51400;51400;2519;19159;12000;12000;17970;10442;23624;27600;42800;37431;38700;35700;161024;161024;161024
-57;'112;Belarus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;1;0;1572;2566;2910;2579;3295;2345;2345;2345;2345;2345;2345;191;1358;859;1103;1768;2555;1610;1754;3408.7;3447;3322;3601;10224;10224;10224
-57;'112;Belarus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9685;10249;19000;191000;265000;150000;373000;251900;278500;259600;282700;291800;291800;291800;291800;291800;291800;921500;1239300;1390000;1636000;1283000;936502;1162543;1285600;864400;2028;160100;319200;3;3;3
-57;'112;Belarus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;1215;1296;8904;12000;3000;9602;6653;6137;6408;6863;6795;6795;6795;6795;6795;6795;27020;55340;68473;51967;47486;45676;30036;29561;28992;65;3811;7316;1;1;1
-57;'112;Belarus;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3940000;3920000;3920000;3920000;9142000;11020000;2467000;2994500;3168200;3650000;3900000;2303500;3675600;3675600;3703200;3703200;3703200;3223000;3485600;3485600;5282000;5490300;5710000;5710000;6551682;7879915;9127300;9358900;9835900;9835900;7307610;5921310
-57;'112;Belarus;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2640000;2540000;2540000;2540000;6191000;8097000;1924000;1856600;1964200;2100000;2300000;2064400;2585900;2585900;2605300;2605300;2605300;2753400;3017800;3017800;4050000;4282600;4454000;4454000;5430503;6495484;7769600;8016200;8092400;8092400;5653080;5387280
-57;'112;Belarus;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300000;1380000;1380000;1380000;2951000;2923000;543000;1137900;1204000;1550000;1600000;239100;1089700;1089700;1097900;1097900;1097900;469600;467800;467800;1232000;1207700;1256000;1256000;1121179;1384431;1357700;1342700;1743500;1743500;1654530;534030
-57;'112;Belarus;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874000;892900;990700;1415000;1505000;1611500;1847000;1847000;1860800;1860800;1860800;1353000;2066500;2066500;4480000;4765000;4955000;4955000;5355192;5516000;6279200;5530900;6083990;6083990;6083990;6083990
-57;'112;Belarus;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612000;518000;574500;856000;907000;971700;1113400;1113400;1121700;1121700;1121700;745700;1221600;1221600;2487000;2745000;2854000;2854000;3479716;4209000;4791400;4034200;4437620;4437620;4437620;4437620
-57;'112;Belarus;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262000;374900;416200;559000;598000;639800;733600;733600;739100;739100;739100;607300;844900;844900;1993000;2020000;2101000;2101000;1875476;1307000;1487800;1496700;1646370;1646370;1646370;1646370
-57;'112;Belarus;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470000;470000;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350000;350000;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;120000;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6643000;5286000;5286000;5286000;5286000;5286000;1693000;1530200;1048700;473000;564000;2530900;1833400;1833400;1847100;1847100;1847100;2142000;2520500;2520500;862000;634000;659000;659000;725427;727000;827200;1072300;1072300;1072300;1072300;1072300
-57;'112;Belarus;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3285000;2600000;2600000;2600000;2600000;2600000;829000;642700;472000;330000;360000;2419800;1646700;1646700;1659000;1659000;1659000;991400;1188600;1188600;568000;404000;420000;420000;512082;594000;675900;903700;903700;903700;903700;903700
-57;'112;Belarus;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3358000;2686000;2686000;2686000;2686000;2686000;864000;887500;576700;143000;204000;111100;186700;186700;188100;188100;188100;1150600;1331900;1331900;294000;230000;239000;239000;213345;133000;151300;168600;168600;168600;168600;168600
-57;'112;Belarus;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;700;700;500;700;700;700;700;700;700;4500;5360;5360;5360;5360;5360;5360;5360;5360;5360;5360;5360;5360;5360;5360
-57;'112;Belarus;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768;4200;400;1022;100;100;100;100;100;100;100;287;563;1000;1000;1700;2984;4091;4077;4116;6776;6100;7900;6634;6634;6634
-57;'112;Belarus;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;316;101;305;19;47;47;47;47;47;47;280;547;881;586;1035;1708;1700;1008;1102.4;2153;2203;2284;2200;2200;2200
-57;'112;Belarus;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;664;1800;2100;1508;1900;2300;2300;2300;2300;2300;2300;1288;1876;2000;3000;2000;2512;4548;5125;4282;7872;13100;19100;17777;6159;6159
-57;'112;Belarus;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;154;291;325;359;273;345;345;345;345;345;345;374;693;844;1291;867;1517;2135;1436;1034.8;2240;4318;6616;7188;2873;2873
-57;'112;Belarus;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289400;1789900;1579300;1510000;1550000;1613800;1613800;1613800;1613800;1613800;1613800;2363700;2939200;2939200;1339700;1340000;1862000;1462000;4116000;4441000;6085000;8701000;9249000;9249000;9249000;9249000
-57;'112;Belarus;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;4800;417;700;200;1100;1100;1100;1100;1100;1100;1605;1753;1550;1550;2600;2058;1204;5891;4825;2979;1581;1506;1506;1506;1506
-57;'112;Belarus;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;258;13;16;18;64;64;64;64;64;64;310;359;268;281;309;424;238;461;423;415;327;286;286;286;286
-57;'112;Belarus;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;300;400;892;200;900;900;900;900;900;900;308460;453600;511500;730900;678000;1634404;1197878;1647374;1822485;3175938;4322880;3963360;2656000;407000;27
-57;'112;Belarus;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14;7;21;8;29;29;29;29;29;29;17682;21016;14313;18461;31082;50117;35964;40783;37113.4;87629;100021;79841;65739;36990;1
-57;'112;Belarus;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289400;239700;204900;210000;200000;627800;627800;627800;627800;627800;627800;961600;1339700;1339700;1121000;1078000;1600000;1200000;3836000;4211000;5844000;8315000;8853000;8853000;8853000;8853000
-57;'112;Belarus;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;260;596;100;100;100;100;100;100;100;525;566;1550;1550;2600;1087;1016;897;3565;2875;1200;1200;1200;1200;1200
-57;'112;Belarus;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;8;14;17;20;20;20;20;20;20;138;143;268;281;309;300;202;275;382.8;388;312;274;274;274;274
-57;'112;Belarus;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;38;100;100;100;100;100;100;100;124273;242401;413596;627900;566000;1525287;1067913;1422271;1650135;2948715;3984120;3552360;2288000;279000;27
-57;'112;Belarus;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;1;4;4;4;4;4;4;4;2696;5279;11675;15898;28269;44257;32037;33499;35216.9;83374;94721;73045;59215;34381;1
-57;'112;Belarus;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550200;1374400;1300000;1350000;986000;986000;986000;986000;986000;986000;1402100;1599500;1599500;218700;262000;262000;262000;280000;230000;241000;386000;396000;396000;396000;396000
-57;'112;Belarus;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;401;401;0;157;104;100;1000;1000;1000;1000;1000;1000;1080;1187;0;0;0;971;188;4994;1260;104;381;306;306;306;306
-57;'112;Belarus;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;7;5;2;1;44;44;44;44;44;44;172;216;0;0;0;124;36;186;40.2;27;15;12;12;12;12
-57;'112;Belarus;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;;;;;130;100;400;854;100;800;800;800;800;800;800;184187;211199;97904;103000;112000;109117;129965;225103;172350;227223;338760;411000;368000;128000;0
-57;'112;Belarus;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;;;;;6;4;7;20;4;25;25;25;25;25;25;14986;15737;2638;2563;2813;5860;3927;7284;1896.5;4255;5300;6796;6524;2609;0
-57;'112;Belarus;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235000;210000;210000;220000;187000;291000;373000;509000;665000;665000;665000;665000
-57;'112;Belarus;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;610;981;1184;5700;5000;6519;12300;4600;4600;4600;4600
-57;'112;Belarus;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;137;288;258;366;385;756;1436;696;696;696;696
-57;'112;Belarus;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144854;151479;166916;199649;175900;273900;354790;474900;640500;698483;308189;308189
-57;'112;Belarus;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19500;21664;24624;24648;21287;28590.2;44296;59748;72842;73218;44001;44001
-57;'112;Belarus;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175000;150000;150000;160000;148000;221000;278000;412000;557000;557000;557000;557000
-57;'112;Belarus;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;609;333;1059;700;1300;6195;11500;4300;4300;4300;4300
-57;'112;Belarus;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;134;164;222;180;277;692;1319;586;586;586;586
-57;'112;Belarus;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97854;100379;115716;156649;132900;204700;261539;377600;532400;581507;269066;269066
-57;'112;Belarus;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12230;13684;16130;16668;14003;22696.2;34398;50272;63812;59967;36735;36735
-57;'112;Belarus;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;60000;60000;60000;39000;70000;95000;97000;108000;108000;108000;108000
-57;'112;Belarus;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;648;125;5000;3700;324;800;300;300;300;300
-57;'112;Belarus;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;124;36;186;108;64;117;110;110;110;110
-57;'112;Belarus;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;51100;51200;43000;43000;69200;93251;97300;108100;116976;39123;39123
-57;'112;Belarus;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7270;7980;8494;7980;7284;5894;9898;9476;9030;13251;7266;7266
-57;'112;Belarus;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1693000;1545000;1545000;1545000;1545000;1545000;2131000;2174700;1807700;2058000;2182000;2303500;2727000;2737000;2458000;2458000;2458000;2378700;2570900;2570900;2570900;2557350;2557350;2875000;2745000;3559000;4046000;5355000;4593000;4593000;4593000;4593000
-57;'112;Belarus;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057;603;8600;2200;4130;2100;8400;48600;70600;164100;151600;115500;115500;115500;115500;115500;115500;8479;8898;11000;17000;14000;24900;17347;20400;32100;32584;31900;43200;70211;70211;70211
-57;'112;Belarus;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785;133;956;475;678;581;956;2800;5557;12994;12978;11362;11362;11362;11362;11362;11362;2942;3088;4259;7038;5779;5921;4942;5085;9981.2;9967;9752;9709;21202;21202;21202
-57;'112;Belarus;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59686;149372;120900;142800;152207;94000;94000;672800;711400;669100;914200;1196900;1196900;1196900;1196900;1196900;280520;336712;467655;607000;732000;852000;1449000;1217686;1606600;2383100;3425154;4079100;4096000;3487523;2126109;1883452
-57;'112;Belarus;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12795;24521;22811;24413;18697;7520;22811;60588;65601;58484;74881;120717;120717;120717;120717;120717;49350;41365;63541;93740;102433;125207;173888;146195;180422;277010.4;456582;480146;503187;810745;484260;313253
-57;'112;Belarus;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031000;938000;938000;938000;938000;938000;1385000;1457000;1211200;1379000;1484000;2064400;2157300;2165200;1944500;1944500;1944500;2102200;2300000;2300000;2300000;2300000;2300000;2600000;2516000;3350000;3836000;5105000;4364000;4364000;4364000;4364000
-57;'112;Belarus;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;443;600;600;2430;400;400;40800;65200;156300;140500;108300;108300;108300;108300;108300;108300;7950;8343;5000;4000;2000;4900;5628;6300;7600;9627;8500;20100;28083;28083;28083
-57;'112;Belarus;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;64;116;116;225;128;116;1814;4863;11915;11518;9894;9894;9894;9894;9894;9894;2562;2689;1346;937;531;821;864;847;1416.8;2190;1797;2716;7430;7430;7430
-57;'112;Belarus;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58434;147874;116000;116000;128607;80000;80000;312300;599300;581800;850100;1139000;1139000;1139000;1139000;1139000;192000;284630;412145;536000;645000;786000;1339000;1074263;1467300;2289600;3346523;3986900;3936600;3186077;2007000;1882000
-57;'112;Belarus;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12521;24070;21876;21876;15897;6400;21876;31566;58506;52522;70108;115561;115561;115561;115561;115561;34594;35059;55950;82699;90448;115252;160309;128233;161132;265292.6;444115;465398;480397;744268;452555;312376
-57;'112;Belarus;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662000;607000;607000;607000;607000;607000;746000;717700;596500;679000;698000;239100;569700;571800;513500;513500;513500;276500;270900;270900;270900;257350;257350;275000;229000;209000;210000;250000;229000;229000;229000;229000
-57;'112;Belarus;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1730;160;8000;1600;1700;1700;8000;7800;5400;7800;11100;7200;7200;7200;7200;7200;7200;529;555;6000;13000;12000;20000;11719;14100;24500;22957;23400;23100;42128;42128;42128
-57;'112;Belarus;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;575;69;840;359;453;453;840;986;694;1079;1460;1468;1468;1468;1468;1468;1468;380;399;2913;6101;5248;5100;4078;4238;8564.4;7777;7955;6993;13772;13772;13772
-57;'112;Belarus;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1252;1498;4900;26800;23600;14000;14000;360500;112100;87300;64100;57900;57900;57900;57900;57900;88520;52082;55510;71000;87000;66000;110000;143423;139300;93500;78631;92200;159400;301446;119109;1452
-57;'112;Belarus;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;451;935;2537;2800;1120;935;29022;7095;5962;4773;5156;5156;5156;5156;5156;14756;6306;7591;11041;11985;9955;13579;17962;19290;11717.8;12467;14748;22790;66477;31705;877
-57;'112;Belarus;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;17700;18800;19600;16100;29000;29000;29000;29000;29000;29000;2900;1400;1400;1400;1400;1400;1400;8000;6000;8000;7000;6000;6000;6000;6000
-57;'112;Belarus;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;234;700;700;1300;1300;16100;12400;16985;13000;2200;2700;2700;2700;2700;2700;2700;2892;3726;3040;3000;19400;5037;6454;5620;7320;10824;3220;3253;3253;3253;3253
-57;'112;Belarus;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;308;936;936;2196;2166;3455;1282;1674;1437;989;1243;1243;1243;1243;1243;1243;4234;5455;8161;8797;9034;9113;6265;5166;6560.2;8526;6118;5574;5574;5574;5574
-57;'112;Belarus;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;157;700;0;0;0;4600;4100;8700;2200;1900;2400;2400;2400;2400;2400;2400;834;1238;1000;1200;1950;4051;7838;6670;9100;9926;16200;9500;9500;9500;9500
-57;'112;Belarus;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;66;201;0;0;0;1264;691;933;601;521;601;601;601;601;601;601;272;539;443;673;1083;1478;1759;2173;3177.4;3630;3172;3576;3576;3576;3576
-57;'112;Belarus;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574000;476000;374000;374000;373000;392000;500000;541700;563300;615700;654300;832400;864500;887500;866000;866000;866000;458982;477999;477999;780800;1050300;1724800;2566578;3363591;4488745;4933594;4695126;4733060;4733060;4733060;4733060
-57;'112;Belarus;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;309;600;10500;26624;24512;130900;71900;88900;169800;191800;187200;187200;187200;187200;187200;187200;408022;545991;491220;554530;462480;340385;228415;258571;334295;395865;281682;323614;374593;86881;77226
-57;'112;Belarus;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;153;73;2828;8659;6661;20534;15444;22550;30421;46650;46547;46547;46547;46547;46547;46548;101168;131807;156961;176164;178821;127760;74752;55121;76975.3;90982;91729;95117;137812;46428;40171
-57;'112;Belarus;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7267;19464;40200;53700;146500;377200;243800;246900;354500;320900;357700;356900;356900;356900;356900;356900;356900;339163;369435;372540;400430;693470;894186;1258756;2356209;3129180;2577093;2525620;2875700;2739593;968953;521070
-57;'112;Belarus;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404;5169;8972;10218;23116;52733;52377;45435;49741;51938;55899;70542;70542;70542;70542;70542;70542;133584;104105;116710;128834;205462;260004;258512;379053;539755;603851;529217;585220;899223;353696;109997
-57;'112;Belarus;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157000;127000;104000;104000;103000;122000;138500;140000;125700;138000;165000;166300;192000;186000;159000;159000;159000;150800;177500;177500;163800;164800;185800;184600;183000;258000;297000;300000;343000;343000;343000;343000
-57;'112;Belarus;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;113;;;3800;3600;3600;2800;3700;4300;3700;6000;6000;6000;6000;6000;6000;10218;17226;13000;19000;22780;17773;22399;1600;22700;35473;44000;50300;46998;46998;46998
-57;'112;Belarus;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;104;;;1800;1600;1644;953;1686;1464;2258;2242;2242;2242;2242;2242;2242;5919;10626;10353;13505;15449;13042;9016;720;9777.2;15983;18203;17918;28879;28879;28879
-57;'112;Belarus;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515;13646;29000;23100;67000;70000;80700;95400;106700;98700;117900;120900;120900;120900;120900;120900;120900;127300;137923;118000;134000;137200;105773;125342;160853;219700;242344;253400;331600;377561;186000;51000
-57;'112;Belarus;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;4356;7030;6525;12932;18500;24136;23831;21802;22004;25089;27165;27165;27165;27165;27165;27165;86364;50833;57882;63813;68499;71159;49427;52835;78559.3;110324;97123;124886;218031;118511;15673
-57;'112;Belarus;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417000;349000;270000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;175;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;40;73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1752;5818;11200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;813;1942;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;270000;270000;325600;280000;295000;311000;316000;375000;371000;390000;411000;411000;411000;308000;300300;300300;544600;813000;1194000;1430000;1310000;1705000;1749000;1290000;1400000;1400000;1400000;1400000
-57;'112;Belarus;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;6900;2200;120900;63300;76600;153100;174800;177100;177100;177100;177100;177100;177100;193023;265063;296570;340580;253100;162247;106054;85700;100200;108506;111100;124600;156485;8065;2410
-57;'112;Belarus;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1245;3489;1050;16332;11772;15260;20873;35659;31898;31898;31898;31898;31898;31898;49516;64133;82523;94944;78288;46893;22914;18176;23214;25536;26072;26892;38827;4496;1555
-57;'112;Belarus;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30600;79000;306000;104900;92500;140800;129200;144100;195700;195700;195700;195700;195700;195700;145925;146746;109307;147710;437800;481737;481900;907200;1165900;1063563;963700;1013100;900920;399000;289000
-57;'112;Belarus;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3693;10000;34000;13243;10203;13222;14548;14988;20510;20510;20510;20510;20510;20510;19226;21146;19767;28725;101017;99414;67329;102330;163861.5;175836;144314;143965;196199;83044;38167
-57;'112;Belarus;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40000;450000;568000;612000;670000;510000;620000;620000;620000;620000
-57;'112;Belarus;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;8077;10637;8350;16700;23900;27865;5459;2600;8800;5233;5500;13300;15966;0;0
-57;'112;Belarus;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;0;0;0;0;0;0;0;2228;3782;2945;4948;7870;8264;1205;943;1995.4;1145;1131;1727;4346;0;0
-57;'112;Belarus;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;27;141;33;1670;5200;22031;352000;579800;726900;607720;426000;574400;519180;127000;62000
-57;'112;Belarus;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;50;18;782;1078;4904;66756;115568;144992;137104;81348;102031;216878;39256;14989
-57;'112;Belarus;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35900;121700;142600;166700;173300;291100;301500;311500;296000;296000;296000;182;199;199;72400;72500;305000;501978;1302591;1913745;2217594;2595126;2370060;2370060;2370060;2370060
-57;'112;Belarus;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;21;;7900;15924;18712;6400;5600;8600;12400;13300;4100;4100;4100;4100;4100;4100;196704;253065;173300;178250;162700;132500;94503;168671;202595;246653;121082;135414;155144;31818;27818
-57;'112;Belarus;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;;1583;3370;4011;2558;2654;5604;8084;8733;12407;12407;12407;12407;12407;12408;43505;53266;61140;62767;77214;59561;41617;35282;41988.7;48318;46323;48580;65760;13053;9737
-57;'112;Belarus;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;500;1200;58200;59000;107000;93000;95700;40300;40300;40300;40300;40300;40300;65911;84625;145200;117050;113270;284645;299514;708356;1016680;663466;882520;956600;941932;256953;119070
-57;'112;Belarus;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;184;233;14998;11401;14717;15386;15822;22867;22867;22867;22867;22867;22867;27991;32076;39043;35514;34868;84527;75000;108320;152342.2;180587;206432;214338;268115;112885;41168
-57;'112;Belarus;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35900;121700;142600;166700;173300;287700;301500;311500;296000;296000;296000;182;199;199;48400;48700;75000;49500;136000;184000;206211;445140;487750;487750;487750;487750
-57;'112;Belarus;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900;13700;17000;6400;3100;5500;8600;8000;2400;2400;2400;2400;2400;2400;10385;14144;27300;26250;31700;18000;24335;29799;20652;13156;22610;18818;18818;18818;18818
-57;'112;Belarus;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1583;2965;3600;2558;1068;1603;3742;1280;3300;3300;3300;3300;3300;3301;6881;9047;21825;21061;25410;9019;14898;14005;12002.6;10736;8637;6586;6586;6586;6586
-57;'112;Belarus;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;58200;52500;75600;83800;84100;36000;36000;36000;36000;36000;36000;3765;865;42000;43050;32670;70000;66867;90307;136713;70855;260969;389671;331444;70000;38000
-57;'112;Belarus;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;165;14998;8094;10361;10588;13650;19294;19294;19294;19294;19294;19294;5039;1157;14559;13177;9808;24339;27602;52251;68086.4;65252;88935;109764;163541;46082;23556
-57;'112;Belarus;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;200000;411875;1159616;1720320;1999008;2133136;1850160;1850160;1850160;1850160
-57;'112;Belarus;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;0;1100;2000;1000;2300;1500;1500;1500;1500;1500;1500;83227;105843;114000;140000;115000;103871;64434;124237;166160;214063;93472;110596;130326;7000;3000
-57;'112;Belarus;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;1316;2995;1062;3440;8125;8125;8125;8125;8125;8125;20160;23742;33399;39989;49638;48613;25702;20395;29206.8;36841;36838;41022;58202;5495;2179
-57;'112;Belarus;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3500;25700;0;9000;4100;4100;4100;4100;4100;4100;29113;39121;102000;70000;76000;210645;226310;600821;865027;573398;595281;533859;577418;153883;48000
-57;'112;Belarus;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1798;3160;0;1638;3180;3180;3180;3180;3180;3180;12938;17386;23955;21922;24250;59316;46320;54233;82843.9;113536;115107;101483;101483;63712;14521
-57;'112;Belarus;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2400;0;0;0;0;0;0;0;0;24000;23800;30000;40603;6975;9425;12375;16850;32150;32150;32150;32150
-57;'112;Belarus;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;21;;;2112;1600;0;1400;1100;2800;3000;200;200;200;200;200;200;103092;133078;32000;12000;16000;10629;5734;14635;15783;19434;5000;6000;6000;6000;6000
-57;'112;Belarus;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;;;305;311;0;270;1006;3280;4013;982;982;982;982;982;982;16464;20477;5916;1717;2166;1929;1017;882;779.3;741;848;972;972;972;972
-57;'112;Belarus;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;300;1000;0;3000;5700;9200;2600;200;200;200;200;200;200;33033;44639;1200;4000;4600;4000;6337;17228;14940;19213;26270;33070;33070;33070;33070
-57;'112;Belarus;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;68;0;1509;1196;4798;534;393;393;393;393;393;393;10014;13533;529;415;810;872;1078;1836;1411.9;1799;2390;3091;3091;3091;3091
-57;'112;Belarus;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-57;'112;Belarus;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;26000;31000;31000;31000;31000;43300;51700;55900;58100;59200;60600;61200;61300;65900;65900;65900;45100;50700;50700;55400;32900;32900;77900;44000;32000;57000;487000;585200;585200;585200;585200
-57;'112;Belarus;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8781;7220;33825;69700;92300;71800;81800;89200;89200;89200;89200;89200;89200;56199;122394;106407;112919;112540;62365;34117;41523;48629;67175;51600;46100;50483;50483;50483
-57;'112;Belarus;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2964;1328;20015;26905;25449;16517;17243;20189;20189;20189;20189;20189;20189;18919;45414;33566;31082;26645;23773;15967;16650;21949.6;24363;17458;16607;22932;22932;22932
-57;'112;Belarus;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;1000;1000;879;579;1278;1400;1100;1400;4500;2600;2600;2600;2600;2600;2600;207;229;6235;29411;35500;26560;54496;55810;49462;44864;136823;280900;242988;135178;125348
-57;'112;Belarus;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;302;302;459;273;501;804;302;99;304;159;159;159;159;159;159;896;1680;1264;6178;7692;6785;8989;8704;9450.2;19623;57741;105800;144628;92297;78383
-57;'112;Belarus;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;26000;31000;31000;31000;31000;43300;51700;55900;58100;59200;60600;61200;61300;65900;65900;65900;45100;50700;50700;55400;32900;32900;32900;9000;2000;27000;187000;291000;291000;291000;291000
-57;'112;Belarus;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5451;1820;28425;34800;32000;22100;23300;25900;25900;25900;25900;25900;25900;21693;34626;20407;26919;15840;21012;20140;18423;24029;19281;13200;17600;21983;21983;21983
-57;'112;Belarus;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614;852;19539;20558;17709;10863;11241;12948;12948;12948;12948;12948;12948;15277;29605;16522;18540;12410;14805;13128;11778;15726.3;13987;9205;10360;16685;16685;16685
-57;'112;Belarus;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;1000;1000;800;500;1199;100;100;0;300;200;200;200;200;200;200;200;219;235;1411;1800;1793;1228;1210;1262;22123;115823;216200;207552;99742;89912
-57;'112;Belarus;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;302;302;445;259;487;181;70;0;116;7;7;7;7;7;7;7;8;143;1819;2554;2719;1542;1396;1414.4;15524;54402;95962;134805;82474;68560
-57;'112;Belarus;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;26000;31000;31000;31000;31000;43300;51700;55900;58100;59200;60600;61200;61300;65900;65900;65900;45100;50700;50700;55400;32900;32900;32900;9000;2000;27000;187000;291000;291000;291000;291000
-57;'112;Belarus;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5451;1820;35520;43900;40832;36700;38500;39400;39400;39400;39400;39400;39400;35193;48126;23107;27219;13840;20133;19427;17756;23322;18709;12600;17200;21583;21583;21583
-57;'112;Belarus;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614;852;24967;27149;24132;23239;22090;23008;23008;23008;23008;23008;23008;25337;39665;21773;18642;8398;12767;11864;10683;14573.6;13042;8603;10157;16482;16482;16482
-57;'112;Belarus;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;1000;1000;800;500;1199;100;100;0;300;100;100;100;100;100;100;100;119;135;11;0;219;56;0;2;21001;115023;215600;206952;99142;89312
-57;'112;Belarus;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;302;302;445;259;487;181;70;0;116;3;3;3;3;3;3;3;4;12;13;0;237;15;0;1;14229;53615;95687;134530;82199;68285
-57;'112;Belarus;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;40000;40000;40000;40000;40000
-57;'112;Belarus;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3616;2997;1000;600;600;600;600
-57;'112;Belarus;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1711.6;1556;579;268;268;268;268
-57;'112;Belarus;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;100;100;100;100
-57;'112;Belarus;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;13;13;13;13
-57;'112;Belarus;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;100;200;0;0;0;0;0;0;0;0;7;20;30;44;152;78;;;;;;;
-57;'112;Belarus;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;121;47;8;8;8;8;8;8;8;8;15;42;63;107;188;110;;;;;;;
-57;'112;Belarus;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;19;0;0;0;3;56;0;;;;;;;
-57;'112;Belarus;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;4;15;0;;;;;;;
-57;'112;Belarus;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;0;0;0;0;0;0;4901;4309;200;199;10;0;21;1500;;;;;;;
-57;'112;Belarus;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;4;4;4;4;4;4;5271;5854;153;153;6;0;12;710;;;;;;;
-57;'112;Belarus;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;100;100;100;100;100;100;100;100;135;11;0;0;0;0;;;;;;;
-57;'112;Belarus;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;3;3;3;3;12;1;0;0;0;0;;;;;;;
-57;'112;Belarus;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;26000;31000;31000;31000;31000;43300;51700;55900;58100;59200;60600;61200;61300;65900;65900;65900;45100;50700;50700;55400;32900;32900;32900;9000;2000;27000;147000;251000;251000;251000;251000
-57;'112;Belarus;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5431;1800;28405;34800;31700;21800;22900;25300;25300;25300;25300;25300;25300;16192;29717;20000;26000;13800;19884;19050;15951;19558;15442;11400;16500;20883;20883;20883
-57;'112;Belarus;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2596;834;19521;20554;17537;10584;10404;12574;12574;12574;12574;12574;12574;9636;23381;15972;16984;8329;12436;11451;9615;12697.1;11178;7764;9753;16078;16078;16078
-57;'112;Belarus;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;1000;1000;800;500;1199;100;100;0;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;21001;115000;215500;206852;99042;89212
-57;'112;Belarus;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;302;302;445;259;487;181;70;0;116;0;0;0;0;0;0;0;0;0;12;0;0;0;0;1;14229;53612;95674;134517;82186;68272
-57;'112;Belarus;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6972;3800;2000;900;100;100;100;100;100;100;100;64;117;2000;2000;3100;4439;4651;3677;5185;6102;5100;200;200;200;200
-57;'112;Belarus;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5421;2443;339;487;7;40;40;40;40;40;40;31;75;1543;1241;1797;2502;2664;2034;3392.1;4258;3322;78;78;78;78
-57;'112;Belarus;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;623;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10842;5404
-57;'112;Belarus;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;271;91;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7880;4042
-57;'112;Belarus;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2000;27000;147000;251000;251000;251000;251000
-57;'112;Belarus;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4819;1800;0;17700;2800;2500;3800;3100;3100;3100;3100;3100;3100;1984;3641;18000;24000;10700;15402;14365;12233;14316;9276;6200;15700;20083;20083;20083
-57;'112;Belarus;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2289;834;0;9638;2042;1329;2007;1999;1999;1999;1999;1999;1999;1532;3717;14360;15668;6532;9853;8737;7517;9213;6802;4273;8809;15134;15134;15134
-57;'112;Belarus;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;500;0;0;0;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21001;114900;215000;206036;88200;83808
-57;'112;Belarus;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;259;0;84;2;0;47;0;0;0;0;0;0;0;0;0;12;0;0;0;0;0;14229;53494;94846;132886;74306;64230
-57;'112;Belarus;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-57;'112;Belarus;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;64;100;600;600;600;600
-57;'112;Belarus;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;118;169;866;866;866;866
-57;'112;Belarus;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;100;500;816;0;0
-57;'112;Belarus;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;118;828;1631;0;0
-57;'112;Belarus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;26000;31000;31000;31000;31000;43300;51700;55900;58100;59200;60600;61200;61300;65900;65900;65900;45100;50700;50700;55400;32900;32900;32900;9000;;;;;;;
-57;'112;Belarus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;21433;3000;16600;900;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;14100;2222;8905;442;376;11;11;11;11;11;11;9;21;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;1000;1000;0;0;576;0;0;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;302;302;0;0;216;0;0;0;37;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;0;0;10300;10300;17500;18000;22100;22100;22100;22100;22100;22100;14144;25959;0;0;0;43;34;41;;;;;;;
-57;'112;Belarus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;0;0;6251;6251;8326;8014;10524;10524;10524;10524;10524;10524;8064;19568;69;75;0;81;50;64;;;;;;;
-57;'112;Belarus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;100;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;6;46;0;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-57;'112;Belarus;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7095;9100;9132;14700;15400;14100;14100;14100;14100;14100;14100;14100;14100;2900;1000;0;205;204;227;148;270;200;100;100;100;100
-57;'112;Belarus;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5428;6595;6595;12520;11639;10422;10422;10422;10422;10422;10422;10422;10422;5633;1463;0;224;213;248;164.9;308;260;136;136;136;136
-57;'112;Belarus;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;216;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;233;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;100;200;600;600;600;600;600;600;600;600;200;700;2000;1084;917;894;855;842;800;500;500;500;500
-57;'112;Belarus;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;172;144;790;362;362;362;362;362;362;362;362;382;1361;4012;2262;1477;1343;1317.6;1253;862;339;339;339;339
-57;'112;Belarus;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;100;100;100;100;100;100;100;100;100;1400;1800;1790;1172;1210;1260;1122;800;600;600;600;600
-57;'112;Belarus;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;4;4;4;4;4;4;131;1806;2554;2715;1527;1396;1413.4;1295;787;275;275;275;275
-57;'112;Belarus;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;300;300;300;300;300;300;300;300;200;100;100;62;8;297;521;444;600;3600;3600;3600;3600
-57;'112;Belarus;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;169;111;111;111;111;111;111;111;111;120;109;68;64;35;141;336.2;352;500;1946;1946;1946;1946
-57;'112;Belarus;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;100;0;212;504;40;0;40;400;2800;2800;2800;2800
-57;'112;Belarus;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;162;0;168;250;23;0;23;290;1557;1557;1557;1557
-57;'112;Belarus;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45000;35000;30000;30000;300000;294200;294200;294200;294200
-57;'112;Belarus;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3330;5400;5400;34900;60300;49700;58500;63300;63300;63300;63300;63300;63300;34506;87768;86000;86000;96700;41353;13977;23100;24600;47894;38400;28500;28500;28500;28500
-57;'112;Belarus;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;476;476;6347;7740;5654;6002;7241;7241;7241;7241;7241;7241;3642;15809;17044;12542;14235;8968;2839;4872;6223.3;10376;8253;6247;6247;6247;6247
-57;'112;Belarus;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;79;79;79;1300;1000;1400;4200;2400;2400;2400;2400;2400;2400;7;10;6000;28000;33700;24767;53268;54600;48200;22741;21000;64700;35436;35436;35436
-57;'112;Belarus;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;14;14;623;232;99;188;152;152;152;152;152;152;889;1672;1121;4359;5138;4066;7447;7308;8035.8;4099;3339;9838;9823;9823;9823
-57;'112;Belarus;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267000;175000;131000;131000;131000;131000;195200;208400;235500;223500;216000;279300;257000;283900;285000;285000;285000;474200;587750;357400;359800;308000;332700;296099;264000;296999;357000;368001;357000;357000;357000;357000
-57;'112;Belarus;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;610;1300;2300;9300;62000;22000;92600;144000;138100;136700;140500;140500;140500;140500;140500;140500;259750;284312;179000;201000;187500;213885;187900;211100;226700;240226;263400;246500;246500;246500;246500
-57;'112;Belarus;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;684;1331;3702;9545;58544;931;84366;111300;86101;96063;118332;118332;118332;118332;118332;118332;382649;438926;234238;238347;209841;244663;177394;196954;232853;254140;259884;235924;235924;235924;235924
-57;'112;Belarus;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;343;1100;800;6834;3100;1000;42400;71100;45000;49200;85500;85500;85500;85500;85500;85500;184155;222370;114405;165699;130769;144736;131690;105300;113400;158072;159500;157400;157400;157400;157400
-57;'112;Belarus;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;161;558;593;3639;1341;558;25895;35082;22519;21272;30352;30352;30352;30352;30352;30352;140121;176709;70150;83913;77846;73015;57799;49469;57105.4;85505;85115;73662;73662;73662;73662
-57;'112;Belarus;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20000;23000;7700;8300;7200;7000;6400;6400;6400;69700;102600;65800;66200;56800;61400;54627;47284;59865;71749;50938;49219;49219;49219;49219
-57;'112;Belarus;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;295;400;900;1600;59000;18000;50800;64700;78900;80700;79500;79500;79500;79500;79500;79500;148847;153081;65000;75000;75200;80212;66784;64500;66400;70350;75200;60200;60200;60200;60200
-57;'112;Belarus;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;255;412;1187;1988;55044;12;42562;50599;50839;60910;71138;71138;71138;71138;71138;71138;123440;139478;78082;82676;79672;72908;50270;52403;60389;63669;68362;52924;52924;52924;52924
-57;'112;Belarus;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;81;;;34;0;0;9500;9600;8300;4700;4600;4600;4600;4600;4600;4600;79208;113021;14405;24699;30000;31548;27270;26800;28400;31787;37400;37900;37900;37900;37900
-57;'112;Belarus;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;;;38;0;0;9451;7897;6114;3214;3750;3750;3750;3750;3750;3750;28554;52516;9069;14176;16308;16844;11651;11589;12751.8;17976;19396;16763;16763;16763;16763
-57;'112;Belarus;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5000;9500;0;0;0;0;0;0;0;8700;23000;43000;43300;42500;45900;40869;36000;38000;40000;38000;36000;36000;36000;36000
-57;'112;Belarus;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;;;;13000;18000;14600;30500;37700;38400;30700;30700;30700;30700;30700;30700;26420;12933;9000;12000;13600;18474;11690;8200;5900;8060;7400;4900;4900;4900;4900
-57;'112;Belarus;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;;;;8400;12;12820;20158;17960;16432;15968;15968;15968;15968;15968;15968;14413;6990;5454;7288;7762;8549;3690;2933;2365.9;3803;3319;1484;1484;1484;1484
-57;'112;Belarus;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;0;0;0;800;600;800;300;100;100;100;100;100;100;358;6885;13000;23000;29000;30543;26184;25000;25200;29030;27500;27100;27100;27100;27100
-57;'112;Belarus;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;0;0;0;940;531;440;118;58;58;58;58;58;58;184;3195;7553;12184;14989;16021;10832;10079;10254.5;15576;11733;9435;9435;9435;9435
-57;'112;Belarus;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15000;13500;7700;8300;7200;7000;6400;6400;6400;61000;79600;22800;22900;14300;15500;13758;11284;21865;31749;12938;13219;13219;13219;13219
-57;'112;Belarus;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;282;400;900;1600;46000;;36200;34200;41200;42300;48800;48800;48800;48800;48800;48800;122427;140148;56000;63000;61600;61738;55094;56300;60500;62290;67800;55300;55300;55300;55300
-57;'112;Belarus;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;240;412;1187;1988;46644;;29742;30441;32879;44478;55170;55170;55170;55170;55170;55170;109027;132488;72628;75388;71910;64359;46580;49470;58023.1;59866;65043;51440;51440;51440;51440
-57;'112;Belarus;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;;;34;0;;8700;9000;7500;4400;4500;4500;4500;4500;4500;4500;78850;106136;1405;1699;1000;1005;1086;1800;3200;2757;9900;10800;10800;10800;10800
-57;'112;Belarus;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;;;38;0;;8511;7366;5674;3096;3692;3692;3692;3692;3692;3692;28370;49321;1516;1992;1319;823;819;1510;2497.3;2400;7663;7328;7328;7328;7328
-57;'112;Belarus;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5000;13400;7400;8200;7000;6800;6200;6200;6200;61000;79600;19000;19100;11900;12900;11431;9376;21865;31749;12938;13219;13219;13219;13219
-57;'112;Belarus;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;900;31500;27600;36200;36200;36200;36200;36200;36200;69787;65804;1000;2000;2000;1794;1483;1100;2400;2340;2400;1500;1500;1500;1500
-57;'112;Belarus;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1295;1480;23325;22618;36660;36660;36660;36660;36660;36660;64556;68252;1197;2057;2057;1553;870;649;1596.6;1544;1705;955;955;955;955
-57;'112;Belarus;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;6400;3800;4000;4000;4000;4000;4000;4000;3429;4538;231;83;0;352;76;600;1700;999;600;800;800;800;800
-57;'112;Belarus;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;252;5219;2608;3337;3337;3337;3337;3337;3337;2142;3032;148;54;0;117;20;353;1253.3;763;383;301;301;301;301
-57;'112;Belarus;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5000;0;0;0;0;0;0;0;0;0;0;3800;3800;2400;2600;2327;1908;0;0;0;0;0;0;0
-57;'112;Belarus;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28800;26800;0;1100;2300;2300;2300;2300;2300;2300;25462;38493;43000;46000;46000;45915;41154;42700;45500;46072;52400;42800;42800;42800;42800
-57;'112;Belarus;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17772;28158;0;6070;2303;2303;2303;2303;2303;2303;13232;21646;52098;52188;52188;45722;33657;36968;44445.9;45244;51100;40696;40696;40696;40696
-57;'112;Belarus;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;8500;0;0;100;100;100;100;100;100;74377;100480;1000;1000;1000;623;798;1000;1300;1487;9100;9800;9800;9800;9800
-57;'112;Belarus;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4606;6846;0;0;99;99;99;99;99;99;25510;45379;1226;1436;1319;667;709;970;1201.5;1545;7206;6926;6926;6926;6926
-57;'112;Belarus;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5000;100;300;100;200;200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;6500;9700;13600;10300;10300;10300;10300;10300;10300;27178;35851;12000;15000;13600;14029;12457;12500;12600;13878;13000;11000;11000;11000;11000
-57;'112;Belarus;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10675;803;9554;15790;16207;16207;16207;16207;16207;16207;31239;42590;19333;21143;17665;17084;12053;11853;11980.6;13078;12238;9789;9789;9789;9789
-57;'112;Belarus;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;300;1100;600;400;400;400;400;400;400;1044;1118;174;616;0;30;212;200;200;271;200;200;200;200;200
-57;'112;Belarus;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690;268;455;488;256;256;256;256;256;256;718;910;142;502;0;39;90;187;42.5;92;74;101;101;101;101
-57;'112;Belarus;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267000;175000;131000;131000;131000;131000;195200;208400;215500;200500;208300;271000;249800;276900;278600;278600;278600;404500;485150;291600;293600;251200;271300;241472;216716;237134;285251;317063;307781;307781;307781;307781
-57;'112;Belarus;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;315;900;1400;7700;3000;4000;41800;79300;59200;56000;61000;61000;61000;61000;61000;61000;110903;131231;114000;126000;112300;133673;121116;146600;160300;169876;188200;186300;186300;186300;186300
-57;'112;Belarus;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;429;919;2515;7557;3500;919;41804;60701;35262;35153;47194;47194;47194;47194;47194;47194;259209;299448;156156;155671;130169;171755;127124;144551;172464;190471;191522;183000;183000;183000;183000
-57;'112;Belarus;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;262;1100;800;6800;3100;1000;32900;61500;36700;44500;80900;80900;80900;80900;80900;80900;104947;109349;100000;141000;100769;113188;104420;78500;85000;126285;122100;119500;119500;119500;119500
-57;'112;Belarus;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;121;558;593;3601;1341;558;16444;27185;16405;18058;26602;26602;26602;26602;26602;26602;111567;124193;61081;69737;61538;56171;46148;37880;44353.6;67529;65719;56899;56899;56899;56899
-57;'112;Belarus;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4200;5300;4200;4500;14200;8400;8200;7500;7500;7500;7500;7500;17600;17700;17200;18600;16489;22000;30000;37000;42000;42000;42000;42000;42000
-57;'112;Belarus;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1400;800;500;600;600;600;600;600;600;15513;17923;3000;4000;4500;4269;3379;5800;3800;5946;6300;8100;8100;8100;8100
-57;'112;Belarus;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;1209;606;600;605;605;605;605;605;605;61379;64135;3587;3918;4994;4545;3133;4132;3730.4;5017;6087;6509;6509;6509;6509
-57;'112;Belarus;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;5300;4400;5400;600;600;600;600;600;600;9867;9434;6000;10000;13700;12828;9581;9200;12800;18373;17800;19100;19100;19100;19100
-57;'112;Belarus;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;1597;1247;1405;605;605;605;605;605;605;5466;6259;3630;6023;9286;9264;7528;6396;9203.7;14295;13957;15147;15147;15147;15147
-57;'112;Belarus;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195200;106200;115400;136600;143900;192400;186000;214900;222000;222000;222000;380400;448600;113100;113900;101800;109900;97924;84748;195161;233901;202824;195980;195980;195980;195980
-57;'112;Belarus;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24600;28200;27200;19800;25100;25100;25100;25100;25100;25100;53296;55833;95000;113000;100200;122963;109180;130300;147600;152086;170200;165300;165300;165300;165300
-57;'112;Belarus;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19997;26499;14235;11754;20138;20138;20138;20138;20138;20138;71780;75219;124091;130511;117383;148749;108227;121362;148293.4;162223;160886;150187;150187;150187;150187
-57;'112;Belarus;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;13600;22600;31100;41100;41100;41100;41100;41100;41100;63850;70161;90000;128000;85369;98690;93338;66100;68800;105582;101700;96400;96400;96400;96400
-57;'112;Belarus;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3468;6800;13017;11552;14833;14833;14833;14833;14833;14833;43673;48848;51973;59099;49477;44475;36432;27735;31094.7;49645;47237;37237;37237;37237;37237
-57;'112;Belarus;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195200;91600;102900;111200;119400;173600;162000;187200;193300;193300;193300;202800;238200;300;300;56800;62900;48962;42374;140085;167892;136142;131548;131548;131548;131548
-57;'112;Belarus;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9400;7800;5600;12800;4500;4500;4500;4500;4500;4500;4500;4500;29000;41000;34000;34457;30716;39100;48900;52600;71900;66800;66800;66800;66800
-57;'112;Belarus;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4231;3309;3432;6897;2131;2131;2131;2131;2131;2131;2131;2131;22663;28295;25974;23606;17835;24132;34333.3;44377;48767;39625;39625;39625;39625
-57;'112;Belarus;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;5600;5900;11400;8600;8600;8600;8600;8600;8600;16415;20355;51000;82000;59169;64151;68791;39000;39600;67961;59900;55100;55100;55100;55100
-57;'112;Belarus;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;971;2441;1531;3222;2168;2168;2168;2168;2168;2168;16618;16520;27737;34673;27930;25705;24935;14627;15663;29482;24389;17255;17255;17255;17255
-57;'112;Belarus;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9300;8800;15900;16300;10900;15100;17400;18000;18000;18000;166000;192700;0;0;0;0;0;0;0;0;0;0;0;0;0
-57;'112;Belarus;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;5400;7900;4300;600;600;600;600;600;600;600;600;38000;41000;37200;44834;40102;46100;49300;48487;48800;52500;52500;52500;52500
-57;'112;Belarus;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7942;9400;3078;2587;734;734;734;734;734;734;734;734;77795;74297;64674;92494;68237;69964;79714.4;81512;76406;83079;83079;83079;83079
-57;'112;Belarus;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;7000;11700;8100;200;200;200;200;200;200;200;200;2000;2000;10800;3393;3354;7800;6000;6148;5700;3200;3200;3200;3200
-57;'112;Belarus;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2031;3601;8056;3284;142;142;142;142;142;142;142;142;3678;2133;14439;3727;2859;5799;5758.3;5602;5199;3037;3037;3037;3037
-57;'112;Belarus;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5300;3700;6300;6000;7700;7600;8800;9100;9100;9100;9800;15000;0;0;0;0;0;0;55076;66009;66682;64432;64432;64432;64432
-57;'112;Belarus;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;9400;3100;2300;16400;16400;16400;16400;16400;16400;16400;16400;16000;22000;22000;34476;31715;36600;39900;40280;40400;40200;40200;40200;40200
-57;'112;Belarus;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5419;6910;1560;947;14783;14783;14783;14783;14783;14783;14783;14783;17500;22363;22363;27556;19687;23489;30072.5;31511;31471;25233;25233;25233;25233
-57;'112;Belarus;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;700;0;100;30500;30500;30500;30500;30500;30500;30500;30500;18000;25000;400;11946;5729;3500;3100;4881;8500;9100;9100;9100;9100
-57;'112;Belarus;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;604;0;30;10235;10235;10235;10235;10235;10235;10235;10235;10886;13410;124;6724;3177;1845;2058.8;3421;6405;6783;6783;6783;6783
-57;'112;Belarus;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3200;2200;200;1300;1500;1600;1600;1600;1800;2700;112800;113600;45000;47000;48962;42374;0;0;0;0;0;0;0
-57;'112;Belarus;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5600;10600;400;3600;3600;3600;3600;3600;3600;31796;34333;12000;9000;7000;9196;6647;8500;9500;10719;9100;5800;5800;5800;5800
-57;'112;Belarus;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2405;6880;6165;1323;2490;2490;2490;2490;2490;2490;54132;57571;6133;5556;4372;5093;2468;3777;4173.2;4823;4242;2250;2250;2250;2250
-57;'112;Belarus;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;5000;11500;1800;1800;1800;1800;1800;1800;16735;19106;19000;19000;15000;19200;15464;15800;20100;26592;27600;29000;29000;29000;29000
-57;'112;Belarus;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;154;3430;5016;2288;2288;2288;2288;2288;2288;16678;21951;9672;8883;6984;8319;5461;5464;7614.6;11140;11244;10162;10162;10162;10162
-57;'112;Belarus;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267000;175000;131000;131000;131000;131000;0;98000;94800;59700;59900;64400;55400;53800;49100;49100;49100;16600;29050;160900;162000;132200;142800;127059;109968;11973;14350;72239;69801;69801;69801;69801
-57;'112;Belarus;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;16600;49700;31200;35700;35300;35300;35300;35300;35300;35300;42094;57475;16000;9000;7600;6441;8557;10500;8900;11844;11700;12900;12900;12900;12900
-57;'112;Belarus;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;919;21399;32993;20421;22799;26451;26451;26451;26451;26451;26451;126050;160094;28478;21242;7792;18461;15764;19057;20440.2;23231;24549;26304;26304;26304;26304
-57;'112;Belarus;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;26100;42600;9700;8000;39200;39200;39200;39200;39200;39200;31230;29754;4000;3000;1700;1670;1501;3200;3400;2330;2600;4000;4000;4000;4000
-57;'112;Belarus;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;12724;18788;2141;5101;11164;11164;11164;11164;11164;11164;62428;69086;5478;4615;2775;2432;2188;3749;4055.2;3589;4525;4515;4515;4515;4515
-57;'112;Belarus;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102202.5;143884;155635;135824;157204;53485;69352
-57;'112;Belarus;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513733.3;615489;668559;715300;1039462;385902;332249
-57;'112;Belarus;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4470.4;5426;6514;6709;7365;1583;416
-57;'112;Belarus;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16807.8;21200;22209;22630;31896;23350;4372
-57;'112;Belarus;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3362.2;3521;4593;5330;6550;1348;205
-57;'112;Belarus;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10324;14566;15586;17624;25773;17227;3488
-57;'112;Belarus;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1108.2;1905;1921;1379;815;235;211
-57;'112;Belarus;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6483.8;6634;6623;5006;6123;6123;884
-57;'112;Belarus;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3693;5145;6928;6008;11797;2563;2208
-57;'112;Belarus;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30234.6;42181;42488;40768;76473;33199;1602
-57;'112;Belarus;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683.7;2238;2930;2548;2961;908;2141
-57;'112;Belarus;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1314.9;1505;1882;2180;3402;2604;945
-57;'112;Belarus;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30733.9;40081;40732;37650;39429;7082;6913
-57;'112;Belarus;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67375.9;78930;83525;83102;127304;39196;30735
-57;'112;Belarus;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55580;83826;90104;75192;82481;39018;54501
-57;'112;Belarus;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353469;414272;443684;479841;672916;219600;249729
-57;'112;Belarus;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1815.1;1428;1416;966;5146;459;86
-57;'112;Belarus;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5695.1;6410;7796;9657;23368;18153;18785
-57;'112;Belarus;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4226.4;5740;7011;6751;8025;1872;3087
-57;'112;Belarus;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38836;50991;66975;77122;104103;49800;26081
-57;'112;Belarus;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220725.6;260638;281631;258035;308198;104077;131010
-57;'112;Belarus;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90299.3;106812;130141;122066;145655;36484;39201
-57;'112;Belarus;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709.8;874;899;699;859;724;623
-57;'112;Belarus;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16.9;17;16;18;55;9;23
-57;'112;Belarus;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49998.9;64761;70210;69514;89992;43766;41409
-57;'112;Belarus;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1816.1;2400;5338;3944;4559;1590;471
-57;'112;Belarus;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19493.5;23234;26919;28946;34166;7893;2621
-57;'112;Belarus;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3498.8;5749;9467;10619;14335;5499;6693
-57;'112;Belarus;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81548.7;90109;95609;90028;111862;20822;21708
-57;'112;Belarus;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22348.6;18494;24837;25277;30451;7149;6703
-57;'112;Belarus;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68974.7;81660;87994;68848;71319;30872;64649
-57;'112;Belarus;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62618.9;80152;90483;82208;96255;22237;25311
-255;'056;Belgium;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9450929.47;10252063;9339699;8706467;11113292;11662636;9838699
-255;'056;Belgium;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8706114.01;9165825;8688665;7677981;10172788;10484985;9123657
-255;'056;Belgium;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4317158;3954865;3951930;4695092;4682830;5328283;5860833;7396499;7271331;5758652;6329715;6756837;6359203;6228258;6420306;5312971;5238508;5587067.73;6069746;5269515;4597058;6079328;6487106;5032214
-255;'056;Belgium;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3661581;3377529;3305635;4065480;4623603;4892910;5626100;6942019;7108617;5135566;5824540;6055604;4611067;4700562;5943565;5228912;5201390;5745459.64;5974252;5457996;4652889;6506884;6744608;5552396
-255;'056;Belgium;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4510000;4215000;4500000;4765000;4850000;4950000;5075000;5015000;4700000;4395000;4827425;5128001;5128001;5512140;5412140;5412140;5412140;5412140;5212140;5212140;5212140;5212140;5212140;5212140
-255;'056;Belgium;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4024000;4162132;2688133;2691904;2898085;3207000;3330248;4145343;3712527;3098601;4254764;4433477;4940920;4864760;4898458;4240108;4106248;3562692;4299540;4278177;4993534;5324774;5226024;3924489
-255;'056;Belgium;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155647;109479;97071;113938;142585;145082;175208;280827;251861;200201;261597;293046;283742;316972;333712;247316;250082;273638.81;324506;283420;294320;369418;378876;309557
-255;'056;Belgium;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181000;1041100;1028953;1141521;1088278;1113000;1033369;820575;1106738;682989;872479;1030592;1077620;1285230;1278584;1326487;1158686;1543266;1802587;2737725;4981074;5621124;3272832;1846915
-255;'056;Belgium;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93977;68494;66184;81935;94698;93650;136226;113352;183868;92444;119808;153295;140964;184017;214866;190085;163537;268884.86;301002;311565;506611;759981;617079;288567
-255;'056;Belgium;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2830000;2795000;3000000;3225000;3285000;3335000;3425000;3325000;3110000;2850000;3187879;3292821;3292821;3676970;3576970;3576970;3576970;3576970;3376970;3376970;3376970;3376970;3376970;3376970
-255;'056;Belgium;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1822937;2257820;2046387;2984709;3262338;2905648;2554856
-255;'056;Belgium;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126500.14;147644;133635;160150;207796;195319;150361
-255;'056;Belgium;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490862;575852;1529278;3427233;4092826;2334634;1029800
-255;'056;Belgium;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81625.9;83469;194204;391264;646629;337726;146127
-255;'056;Belgium;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1680000;1420000;1500000;1540000;1565000;1615000;1650000;1690000;1590000;1545000;1639546;1835180;1835180;1835170;1835170;1835170;1835170;1835170;1835170;1835170;1835170;1835170;1835170;1835170
-255;'056;Belgium;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739755;2041720;2231790;2008825;2062436;2320376;1369633
-255;'056;Belgium;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147138.66;176862;149785;134170;161622;183557;159196
-255;'056;Belgium;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052404;1226735;1208447;1553841;1528298;938198;817115
-255;'056;Belgium;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187258.97;217533;117361;115347;113352;279353;142440
-255;'056;Belgium;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550000;550000;550000;550000;600000;650000;670000;740000;700000;725000;713525;892753;892753;892750;892750;892750;892750;892750;892750;892750;892750;892750;892750;892750
-255;'056;Belgium;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;40930;35465;25048;19119;19000;46248;51722;43285;68047;61964;107660;602530;358080;426568;219242;207570;189342;155688;134466;91883;120369;119552;76789
-255;'056;Belgium;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;445;912;1340;1632;1630;3795;3804;3620;6792;6598;12155;40503;42183;39084;28422;23426;19128.41;17079;16084;12918;15793;15691;16426
-255;'056;Belgium;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;40210;25501;64344;21569;34000;8369;6586;6135;18203;17476;16804;23440;25400;45848;29980;73096;40201;32140;59910;62136;49426;99137;111538
-255;'056;Belgium;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;934;782;1341;2433;1094;1581;1135;984;1211;2674;3316;3737;4264;6312;7348;4705;5779;3762.6;2579;2912;6150;4044;8856;8881
-255;'056;Belgium;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;49209;61569;61569;61570;61570;61570;61570;61570;61570;61570;61570;61570;61570;61570
-255;'056;Belgium;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88488;47033;22387;17774;14647;14335;29569
-255;'056;Belgium;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6021.17;2408;2253;1959;1566;1532;3116
-255;'056;Belgium;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32126;19337;17852;27194;9820;22240;8922
-255;'056;Belgium;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3080.79;1924;1367;4211;1846;2103;1036
-255;'056;Belgium;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;500000;500000;500000;550000;600000;620000;690000;650000;675000;664316;831184;831184;831180;831180;831180;831180;831180;831180;831180;831180;831180;831180;831180
-255;'056;Belgium;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100854;108655;112079;74109;105722;105217;47220
-255;'056;Belgium;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13107.24;14671;13831;10959;14227;14159;13310
-255;'056;Belgium;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8075;12803;42058;34942;39606;76897;102616
-255;'056;Belgium;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681.82;655;1545;1939;2198;6753;7845
-255;'056;Belgium;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;40930;35465;25048;19119;19000;46248;51722;43285;68047;61964;107660;602530;358080;426568;219242;207570;;;;;;;
-255;'056;Belgium;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;445;912;1340;1632;1630;3795;3804;3620;6792;6598;12155;40503;42183;39084;28422;23426;;;;;;;
-255;'056;Belgium;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;40210;25501;64344;21569;34000;8369;6586;6135;18203;17476;16804;23440;25400;45848;29980;73096;;;;;;;
-255;'056;Belgium;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;934;782;1341;2433;1094;1581;1135;984;1211;2674;3316;3737;4264;6312;7348;4705;5779;;;;;;;
-255;'056;Belgium;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3960000;3665000;3950000;4215000;4250000;4300000;4405000;4275000;4000000;3670000;4113900;4235248;4235248;4619390;4519390;4519390;4519390;4519390;4319390;4319390;4319390;4319390;4319390;4319390
-255;'056;Belgium;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3992000;4121202;2652668;2666856;2878966;3188000;3284000;4093621;3669242;3030554;4192800;4325817;4338390;4506680;4471890;4020866;3898678;3373350;4143852;4143711;4901651;5204405;5106472;3847700
-255;'056;Belgium;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155251;109034;96159;112598;140953;143452;171413;277023;248241;193409;254999;280891;243239;274789;294628;218894;226656;254510.4;307427;267336;281402;353625;363185;293131
-255;'056;Belgium;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169000;1000890;1003452;1077177;1066709;1079000;1025000;813989;1100603;664786;855003;1013788;1054180;1259830;1232736;1296507;1085590;1503065;1770447;2677815;4918938;5571698;3173695;1735377
-255;'056;Belgium;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93043;67712;64843;79502;93604;92069;135091;112368;182657;89770;116492;149558;136700;177705;207518;185380;157758;265122.26;298423;308653;500461;755937;608223;279686
-255;'056;Belgium;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2780000;2745000;2950000;3175000;3235000;3285000;3375000;3275000;3060000;2800000;3138670;3231252;3231252;3615400;3515400;3515400;3515400;3515400;3315400;3315400;3315400;3315400;3315400;3315400
-255;'056;Belgium;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759000;2383340;1046506;1033087;1164959;1048000;1435000;2396934;1875757;1424159;2393420;2164939;2017720;2160080;2174490;2060745;1954219;1734449;2210787;2024000;2966935;3247691;2891313;2525287
-255;'056;Belgium;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67317;51447;39504;48926;59897;56206;70425;142910;116504;83166;132846;132079;109849;122834;138676;103091;112471;120478.98;145236;131382;158191;206230;193787;147245
-255;'056;Belgium;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844000;664080;675223;721446;744231;685000;565000;575861;588717;432224;505546;595301;692860;737060;572911;592174;458688;458736;556515;1511426;3400039;4083006;2312394;1020878
-255;'056;Belgium;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43332;31867;33784;42742;51509;49008;46009;59002;58905;41846;49633;61683;69141;76030;71599;54771;42541;78545.11;81545;192837;387053;644783;335623;145091
-255;'056;Belgium;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759000;2383340;1046506;1033087;1164959;1048000;1435000;2396934;1875757;1424159;2393420;2164939;2017720;2160080;2174490;2060745;1954219;1734449;2210787;2024000;2966935;3247691;2891313;2525287
-255;'056;Belgium;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67317;51447;39504;48926;59897;56206;70425;142910;116504;83166;132846;132079;109849;122834;138676;103091;112471;120478.98;145236;131382;158191;206230;193787;147245
-255;'056;Belgium;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844000;664080;675223;721446;744231;685000;565000;575861;588717;432224;505546;595301;692860;737060;572911;592174;458688;458736;556515;1511426;3400039;4083006;2312394;1020878
-255;'056;Belgium;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43332;31867;33784;42742;51509;49008;46009;59002;58905;41846;49633;61683;69141;76030;71599;54771;42541;78545.11;81545;192837;387053;644783;335623;145091
-255;'056;Belgium;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180000;920000;1000000;1040000;1015000;1015000;1030000;1000000;940000;870000;975230;1003996;1003996;1003990;1003990;1003990;1003990;1003990;1003990;1003990;1003990;1003990;1003990;1003990
-255;'056;Belgium;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233000;1737862;1606162;1633769;1714007;2140000;1849000;1696687;1793485;1606395;1799380;2160878;2320670;2346600;2297400;1960121;1944459;1638901;1933065;2119711;1934716;1956714;2215159;1322413
-255;'056;Belgium;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87934;57587;56655;63672;81056;87246;100988;134113;131737;110243;122153;148812;133390;151955;155952;115803;114185;134031.42;162191;135954;123211;147395;169398;145886
-255;'056;Belgium;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325000;336810;328229;355731;322478;394000;460000;238128;511886;232562;349457;418487;361320;522770;659825;704333;626902;1044329;1213932;1166389;1518899;1488692;861301;714499
-255;'056;Belgium;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49711;35845;31059;36760;42095;43061;89082;53366;123752;47924;66859;87875;67559;101675;135919;130609;115217;186577.15;216878;115816;113408;111154;272600;134595
-255;'056;Belgium;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;38702;24821;23614;32922;43000;33000;35901;41967;28488;34224;37962;22150;28130;28130;28130;28130;28192;38988;32641;33987;41688;36636;39532
-255;'056;Belgium;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27944;12044;7962;8829;14533;16641;12959;22968;26372;16128;19521;23953;13050;16365;16365;16365;16365;16242;21205;16975;17085;24868;21400;24318
-255;'056;Belgium;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;68230;7841;11164;16343;15000;15000;21499;28831;17208;23279;20211;7680;14780;14780;14780;14780;14780;14780;24232;2455;7036;15267;31295
-255;'056;Belgium;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10985;11628;3182;4583;8047;6814;6440;14071;19198;11639;14821;13512;4852;8849;8849;8849;8849;8848.85;8849;14508;1491;4710;28097;19513
-255;'056;Belgium;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198000;1699160;1581341;1610155;1681085;2097000;1816000;1660786;1751518;1577907;1765156;2122916;2298520;2318470;2269270;1931991;1916329;1610709;1894077;2087070;1900729;1915026;2178523;1282881
-255;'056;Belgium;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59990;45543;48693;54843;66523;70605;88029;111145;105365;94115;102632;124859;120340;135590;139587;99438;97820;117789.42;140986;118979;106126;122527;147998;121568
-255;'056;Belgium;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287000;268580;320388;344567;306135;379000;445000;216629;483055;215354;326178;398276;353640;507990;645045;689553;612122;1029549;1199152;1142157;1516444;1481656;846034;683204
-255;'056;Belgium;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38726;24217;27877;32177;34048;36247;82642;39295;104554;36285;52038;74363;62707;92826;127070;121760;106368;177728.3;208029;101308;111917;106444;244503;115082
-255;'056;Belgium;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2660000;2370000;2575000;2690000;2700000;2690000;2800000;2700000;2520000;2320000;2600612;2677322;2677322;3015490;2965490;2965490;2965490;2965490;2815490;2815490;2815490;2815490;2815490;2815490
-255;'056;Belgium;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930000;1770000;1925000;1950000;1975000;2000000;2100000;2000000;1850000;1700000;1905621;1961831;1961831;2300000;2250000;2250000;2250000;2250000;2100000;2100000;2100000;2100000;2100000;2100000
-255;'056;Belgium;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730000;600000;650000;740000;725000;690000;700000;700000;670000;620000;694991;715491;715491;715490;715490;715490;715490;715490;715490;715490;715490;715490;715490;715490
-255;'056;Belgium;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200000;1095000;1175000;1325000;1375000;1430000;1430000;1400000;1320000;1200000;1345145;1384823;1384823;1430800;1380800;1380800;1380800;1380800;1330800;1330800;1330800;1330800;1330800;1330800
-255;'056;Belgium;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800000;825000;875000;1075000;1125000;1155000;1150000;1150000;1100000;1000000;1120954;1154019;1154019;1200000;1150000;1150000;1150000;1150000;1100000;1100000;1100000;1100000;1100000;1100000
-255;'056;Belgium;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400000;270000;300000;250000;250000;275000;280000;250000;220000;200000;224191;230804;230804;230800;230800;230800;230800;230800;230800;230800;230800;230800;230800;230800
-255;'056;Belgium;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;200000;200000;200000;175000;180000;175000;175000;160000;150000;168143;173103;173103;173100;173100;173100;173100;173100;173100;173100;173100;173100;173100;173100
-255;'056;Belgium;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;150000;150000;150000;135000;130000;125000;125000;110000;100000;112095;115402;115402;115400;115400;115400;115400;115400;115400;115400;115400;115400;115400;115400
-255;'056;Belgium;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;40000;50000;50000;50000;50000;50000;56048;57701;57701;57700;57700;57700;57700;57700;57700;57700;57700;57700;57700;57700
-255;'056;Belgium;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;25660;35589;63424;64038;60000;64332;80340;78339;100329;80195;91557;53000;67720;62037;77156;86261;69240;68093;54675;51608;46721;41711;29257
-255;'056;Belgium;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7981;6997;9400;22081;22467;21793;23178;31543;35031;40763;31162;37528;22889;31263;28168;29645;33595;37624.97;37002;28004;29787;30379;21158;19274
-255;'056;Belgium;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;8630;13102;41185;55202;44000;58375;67524;56468;64756;61732;61636;38520;40060;39340;43433;54442;64795;48470;56318;30288;11401;5014;13696
-255;'056;Belgium;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3042;2922;5070;19410;24446;22546;25374;32155;34831;39449;41781;42516;27707;29218;32107;31524;35052;32572.49;31670;25666;38521;5784;4304;14140
-255;'056;Belgium;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;830000;780000;855000;1000000;1035000;1055000;1070000;1100000;1000000;900000;958651;1012105;1012105;1012110;1012110;1012110;1012110;1012110;1012110;1316940;1342940;1144159;1096850;1096850
-255;'056;Belgium;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1510000;1816880;1894169;1239409;1400328;1886000;1030000;3177628;3375083;4203787;3493752;2232874;3022420;1853290;1849993;1031667;1213907;974955;931895;1434217;1444259;1742466;1993626;1947287
-255;'056;Belgium;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30747;31997;32772;34422;50404;59322;50106;205993;202325;285203;206019;104028;103605;66503;69338;35087;41635;34434.95;33380;50318;32199;33502;57027;56509
-255;'056;Belgium;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753000;853400;974575;771926;1011147;1339000;1045000;1151256;1468800;860324;954969;1028237;790340;814630;743429;504073;621281;461945;540119;663923;707762;689085;865202;778023
-255;'056;Belgium;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21386;26767;31038;41175;54853;59152;47841;68693;87472;61447;63434;67627;52869;51511;52738;36116;40863;33047.78;40243;52798;33997;42213;54422;52988
-255;'056;Belgium;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305000;305000;305000;400000;414000;422000;428000;500000;500000;475000;464340;473165;473165;473170;473170;473170;473170;473170;473170;838000;864000;842400;815190;815190
-255;'056;Belgium;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555000;607990;510146;330637;111128;186000;94000;195476;332074;474791;201379;93956;122420;76080;72783;45297;68214;68803;84336;266165;599759;768216;1019376;973037
-255;'056;Belgium;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8638;9857;8801;9621;4637;4267;2173;6027;11643;11587;5827;4646;6709;7554;10389;4142;3950;4835.13;6187;10051;16446;16260;39785;39267
-255;'056;Belgium;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;188570;270624;283080;341606;399000;321000;335471;503830;280967;254502;160249;140340;175330;104129;186605;278875;293085;386677;231589;378512;356085;532202;445023
-255;'056;Belgium;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5605;5158;9011;13648;17233;14525;12175;16682;20745;8529;10300;9199;8004;7514;8741;8751;12419;15797.96;18947;13193;14743;16705;28914;27480
-255;'056;Belgium;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525000;475000;550000;600000;621000;633000;642000;600000;500000;425000;494311;538940;538940;538940;538940;538940;538940;538940;538940;478940;478940;301759;281660;281660
-255;'056;Belgium;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;955000;1208890;1384023;908772;1289200;1700000;936000;2982152;3043009;3728996;3292373;2138918;2900000;1777210;1777210;986370;1145693;906152;847559;1168052;844500;974250;974250;974250
-255;'056;Belgium;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22109;22140;23971;24801;45767;55055;47933;199966;190682;273616;200192;99382;96896;58949;58949;30945;37685;29599.82;27193;40267;15753;17242;17242;17242
-255;'056;Belgium;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539000;664830;703951;488846;669541;940000;724000;815785;964970;579357;700467;867988;650000;639300;639300;317468;342406;168860;153442;432334;329250;333000;333000;333000
-255;'056;Belgium;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15781;21609;22027;27527;37620;44627;35666;52011;66727;52918;53134;58428;44865;43997;43997;27365;28444;17249.82;21296;39605;19254;25508;25508;25508
-255;'056;Belgium;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128777;110265
-255;'056;Belgium;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16972;11712
-255;'056;Belgium;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30688;21597
-255;'056;Belgium;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3511;3182
-255;'056;Belgium;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;600000;600000;600000;600000;600000;600000
-255;'056;Belgium;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604101;565039;565039;563000;649500;649500;649500
-255;'056;Belgium;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29599.82;27193;27193;15753;17242;17242;17242
-255;'056;Belgium;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112573;102295;102295;219500;222000;222000;222000
-255;'056;Belgium;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17249.82;21296;21296;19254;25508;25508;25508
-255;'056;Belgium;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367000;390000;395000;320000;400000;498000;660000;650000;740000;516945;646860;646860
-255;'056;Belgium;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123930;1050281;828658;1121896;973973;1234827;1370692;1127070;1226170;942505;1254270;755875
-255;'056;Belgium;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196511;186074;143173;179897;158694;195410.45;216386;198525;219744;154281;315041;178034
-255;'056;Belgium;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74650;430300;128852;113903;151695;259811;338907;309083;424837;598316;700196;818964
-255;'056;Belgium;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15548;68895;31227;22201;32451;44860.21;72344;65093;76539;108117;195569;270158
-255;'056;Belgium;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367000;390000;395000;320000;400000;498000;660000;650000;740000;516945;646860;646860
-255;'056;Belgium;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970470;896188;657756;985617;906477;1090921;1137302;979417;1120924;868225;1134427;615837
-255;'056;Belgium;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180075;169147;128417;172930;155205;179638.29;192123;175394;200565;142640;296260;159233
-255;'056;Belgium;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39650;394221;97213;85881;129545;218762;297852;238778;324044;496576;600387;742069
-255;'056;Belgium;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7666;60740;25215;18353;28726;40151.02;66629;59866;71184;92707;180451;260625
-255;'056;Belgium;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153460;154093;170902;136279;67496;143906;233390;147653;105246;74280;119843;140038
-255;'056;Belgium;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16436;16927;14756;6967;3489;15772.16;24263;23131;19179;11641;18781;18801
-255;'056;Belgium;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;36079;31639;28022;22150;41049;41055;70305;100793;101740;99809;76895
-255;'056;Belgium;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7882;8155;6012;3848;3725;4709.19;5715;5227;5355;15410;15118;9533
-255;'056;Belgium;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150000;1275000;1175000;1215000;1235000;1285000;1520000;1555000;1400000;1255000;1383456;1368503;1368503;1745000;1805000;1800000;1700000;1520000;1620000;1600000;1560000;1590000;1550000;1450000
-255;'056;Belgium;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223000;1976530;2063834;2128528;2249119;2467000;2213000;2861211;2640753;2007331;2107558;2244819;2186190;2034000;2018000;1679000;2563000;2769516;2936162;3442500;3424644;3678692;2184000;1389000
-255;'056;Belgium;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;569477;457027;463337;567717;638452;671200;682421;998306;873634;639235;705364;839188;772483;750186;840580;730150;759334;788693.83;871442;758025;695272;1135903;856419;636469
-255;'056;Belgium;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025000;977320;1064689;1084175;1266143;1425000;1065000;2002207;1958459;1127751;1293708;1386474;1358450;1283000;1307000;1414000;1333489;1413983;1598385;1885000;2060000;1550000;1061000;1020000
-255;'056;Belgium;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320250;262321;274810;323925;411756;417131;390544;660041;578778;410221;438530;541640;512797;510664;542867;509623;565878;579975.09;664887;640095;430560;692000;538956;445052
-255;'056;Belgium;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950000;1075000;975000;1000000;1035000;1075000;1300000;1325000;1200000;1075000;1142420;1173802;1173802;1460000;1520000;1500000;1400000;1350000;1450000;1450000;1460000;1500000;1450000;1350000
-255;'056;Belgium;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1568000;1383240;1493524;1504391;1653113;1868000;1688000;2018539;1881640;1688331;1769558;1834819;1765190;1670000;1600000;1254000;2100000;2400000;2500000;2700000;2950000;3100000;1783000;1100000
-255;'056;Belgium;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264144;203880;229850;280441;323817;333459;383413;579637;499387;399557;448176;487945;434729;455512;514537;426772;415318;480339.64;507473;387577;455406;810209;501426;316124
-255;'056;Belgium;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678000;671180;799415;829781;944094;1057000;750000;1187275;1173875;965751;1066708;1097474;1072450;1020000;1000000;1050000;948489;1078000;1200000;1500000;1700000;1300000;860000;810000
-255;'056;Belgium;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126298;106783;129707;159037;201978;185643;190809;377508;347851;262598;285688;324960;301711;304679;294423;253623;263318;302422.52;335784;322490;263824;422849;313589;238063
-255;'056;Belgium;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;200000;200000;215000;200000;210000;220000;230000;200000;180000;241036;194701;194701;285000;285000;300000;300000;170000;170000;150000;100000;90000;100000;100000
-255;'056;Belgium;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655000;593290;570310;624137;596006;599000;525000;842672;759113;319000;338000;410000;421000;364000;418000;425000;463000;369516;436162;742500;474644;578692;401000;289000
-255;'056;Belgium;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305333;253147;233487;287276;314635;337741;299008;418669;374247;239678;257188;351243;337754;294674;326043;303378;344016;308354.19;363969;370448;239866;325694;354993;320345
-255;'056;Belgium;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347000;306140;265274;254394;322049;368000;315000;814932;784584;162000;227000;289000;286000;263000;307000;364000;385000;335983;398385;385000;360000;250000;201000;210000
-255;'056;Belgium;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193952;155538;145103;164888;209778;231488;199735;282533;230927;147623;152842;216680;211086;205985;248444;256000;302560;277552.57;329103;317605;166736;269151;225367;206989
-255;'056;Belgium;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;52000;54000;48000;40000;38000;40000;40000;30000;25000;34492;34060;34060;34060;34060;34060;34060;34060;34060;34060;34060;34060;34060;34060
-255;'056;Belgium;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;34640;39020;29257;30584;27000;40000;45000;42000;32901;42405;45198;31240;26470;27255;33298;27488;76525;48348;61399;47582;73961;82880;82880
-255;'056;Belgium;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54957;45976;50549;54544;59738;58787;87418;71896;64553;42944;46990;51004;38552;32485;51900;39688;48823;52582.74;58510;52043;49889;77554;88252;78232
-255;'056;Belgium;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;21470;27368;29715;19178;13820;22000;32000;24000;19321;22992;25293;17050;10870;10491;7970;11918;11250;11518;16844;34792;49235;35382;89269
-255;'056;Belgium;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48420;40411;48400;45836;40196;33582;54086;43856;31916;21828;23893;23395;15093;10954;17646;13165;20285;19722.25;22151;22251;25534;35984;26214;34656
-255;'056;Belgium;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2771000;2595000;2860000;2650000;2601000;2765000;2545000;2510000;2265000;2088000;2088964;2143231;2143231;2083430;2014130;1974130;1924130;1924130;1924130;2030000;1966320;2157407;1997364;1997364
-255;'056;Belgium;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1375000;1289560;1451847;1666468;1847405;1823000;1932000;1817000;1698000;1743322;1833221;1880259;1909514;1955900;1800476;1743893;1901077;2025169;2010432;2088786;2286420;2444214;2073534;1768530
-255;'056;Belgium;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423331;426662;434031;524749;652940;693951;735029;861222;689953;583244;622870;717020;653877;672449;741403;616090;624940;692674.92;709318;601533;579543;836669;714397;544038
-255;'056;Belgium;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2736000;2730980;2865280;2764363;2755373;2571000;3067000;2762000;2380000;1780610;2016474;1959069;1836534;1810165;2454323;2213326;2383909;2377373;2420513;2603474;2205249;2767724;2431966;2305229
-255;'056;Belgium;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633271;708612;743149;847487;984420;1000894;1215873;1697090;1625969;1024190;1043426;1126555;980286;981230;1245086;1063736;1055006;1156233.7;1225303;1103003;968209;1367455;1287032;1319346
-255;'056;Belgium;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;30000;20000;20000;21000;20000;20000;20000;15000;13000;21000;24131;24131;24130;24130;24130;24130;24130;24130;78000;78000;78000;78000;78000
-255;'056;Belgium;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534000;526330;504902;571857;624134;521000;610000;672000;633000;527159;543755;592800;532780;537310;554487;524536;575253;589446;589446;500632;421553;564875;374233;344959
-255;'056;Belgium;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200609;183540;169025;206983;268782;278711;332894;317819;328283;230124;239567;273471;241550;251589;278048;233595;225409;247913.11;266341;197722;164706;221688;134460;82415
-255;'056;Belgium;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380000;377720;370663;435528;474490;423000;470000;386000;470000;374203;439994;437411;367810;369490;402944;380941;436823;404304;394540;351737;213360;425290;212164;420849
-255;'056;Belgium;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155396;152177;153163;189816;232658;245518;279502;198037;278570;193179;213839;223408;188117;195314;224810;199641;203372;217460.66;241482;184219;110951;173609;106733;289396
-255;'056;Belgium;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79171;116037
-255;'056;Belgium;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5103;4091
-255;'056;Belgium;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13073;7216
-255;'056;Belgium;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23160;3699
-255;'056;Belgium;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2450000;2210000;2330000;2115000;2028000;2115000;2010000;1975000;1750000;1625000;1582944;1569057;1569057;1509253;1380000;1330000;1250000;1250000;1250000;1299860;1196886;1352485;1244287;1244287
-255;'056;Belgium;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256000;233450;213856;213025;252768;235000;285000;303000;278000;200774;202121;204467;201470;187970;196272;153726;169232;248953;214159;311973;336171;397452;397452;234172
-255;'056;Belgium;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61300;56054;49613;59153;76582;85869;86112;105117;98985;67578;64677;73524;65492;63910;84643;66696;75086;73115.1;75108;66132;68722;89633;95122;86369
-255;'056;Belgium;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2012000;1906510;1792910;1734296;1664968;1490000;1585000;1520000;1225000;384264;379465;326798;335680;294590;787686;705777;782409;814082;776320;1010210;791134;942661;796844;655603
-255;'056;Belgium;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348823;319700;303119;331721;379836;379448;436536;532987;414765;162105;153423;154323;139340;130347;247844;227041;211807;230848.83;250684;232671;182152;265747;293035;258607
-255;'056;Belgium;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40000;150000;150000;177000;250000;250000;250000;250000;225000;246124;240747;240747;240747;320000;320000;350000;350000;350000;364140;400554;452622;416412;416412
-255;'056;Belgium;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;67280;54920;56418;51921;101000;110000;77000;112000;108155;111857;163799;207570;239720;193515;162263;255393;282485;304987;292888;438194;283830;313992;328454
-255;'056;Belgium;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9437;9771;9740;10893;14780;27828;30197;27136;34711;28610;33145;50964;60860;72655;66984;49954;63387;68672.88;91421;78255;93150;121325;90248;69374
-255;'056;Belgium;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;14200;190580;119520;123778;179000;235000;181000;225000;175843;207763;257342;252430;291660;296871;286161;347779;285394;322355;322889;284030;291577;509491;409343
-255;'056;Belgium;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1260;2232;30082;26786;41460;49913;69648;68388;97220;49790;67383;87637;80750;96442;96716;81990;74044;81592.29;98276;89128;93078;151258;173167;129832
-255;'056;Belgium;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286000;315000;360000;365000;375000;380000;265000;265000;250000;225000;238896;309296;309296;309300;290000;300000;300000;300000;300000;288000;290880;274300;258665;258665
-255;'056;Belgium;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543000;462500;678169;825168;918582;966000;927000;765000;675000;907234;975488;919193;967694;990900;856202;903368;901199;904285;901840;983293;1090502;1198057;987857;860945
-255;'056;Belgium;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151985;177297;205653;247720;292796;301543;285826;411150;227974;256932;285481;319061;285975;284295;311728;265845;261058;302973.84;276448;259424;252965;404023;394567;305880
-255;'056;Belgium;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338000;432550;511127;475019;492137;479000;777000;675000;460000;846300;989252;937518;880614;854425;966822;840447;816898;873593;927298;918638;916725;1108196;913467;819434
-255;'056;Belgium;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127792;234503;256785;299164;330466;326015;430187;897678;835414;619116;608781;661187;572079;559127;675716;555064;565783;626331.92;634861;596985;582028;776841;714097;641511
-255;'056;Belgium;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199000;206660;232137;232110;294873;287000;232000;202000;190000;249135;296463;365572;462000;447900;439000;491000;493000;499443;488580;477229;457641;572371;455162;408155
-255;'056;Belgium;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79648;88142;89340;101402;128166;127495;104180;185018;44124;111797;133908;184128;160614;150436;165550;133424;128323;169578.87;145142;134181;128674;198530;211402;137402
-255;'056;Belgium;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121000;215960;215958;215958;215958;216000;202000;166000;105000;75917;108908;113896;179900;151400;269135;224013;198993;39677;43454;36940;36978;43336;218944;231405
-255;'056;Belgium;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78669;191086;201754;241353;265399;265441;250580;315215;25445;169346;164197;172116;153976;138746;159975;138364;106885;22189.93;21793;14334;14349;26196;291218;330624
-255;'056;Belgium;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;225000;260000;260000;265000;270000;265000;265000;250000;225000;238896;309296;309296;309300;290000;300000;300000;300000;300000;288000;290880;274300;258665;258665
-255;'056;Belgium;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321000;235700;397004;551537;604176;635000;675000;548000;474000;564282;598796;492198;460000;480000;368000;381000;373000;358840;362490;406210;543232;545178;447569;352201
-255;'056;Belgium;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65477;83399;109319;139208;159661;165596;177746;219280;176496;128397;136337;122685;115218;121663;133906;123969;124575;123783.4;123262;116061;112184;184336;161171;152481
-255;'056;Belgium;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141000;122490;170138;158517;153666;128000;565000;501000;350000;752091;837305;801518;680000;690000;689000;610000;610000;825645;878299;872587;869254;1050909;659988;564037
-255;'056;Belgium;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38829;32336;41853;44954;45117;39805;178063;566839;804667;447582;438634;485789;412744;417375;513444;415181;457236;602475.13;611967;580936;565602;744595;414402;293412
-255;'056;Belgium;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96000;90000;100000;105000;110000;110000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;20140;49028;41521;19533;44000;20000;15000;11000;93817;80229;61423;45694;63000;49202;31368;35199;46002;50770;99854;89629;80508;85126;100589
-255;'056;Belgium;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6860;5756;6994;7110;4969;8452;3900;6852;7354;16738;15236;12248;10143;12196;12272;8452;8160;9611.57;8044;9182;12107;21157;21994;15997
-255;'056;Belgium;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;94100;125031;100544;122513;135000;10000;8000;5000;18292;43039;22104;20714;13025;8687;6434;7905;8271;5545;9111;10493;13951;34535;23992
-255;'056;Belgium;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10294;11081;13178;12857;19950;20769;1544;15624;5302;2188;5950;3282;5359;3006;2297;1519;1662;1666.85;1101;1715;2077;6050;8477;17475
-255;'056;Belgium;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931000;1974000;2107000;2337000;2670000;2647000;1656000;1521000;1470358;1706185;1704032;1598123;1589017;1596815;1595928;1585951;1593466;1594649;1608820;2245310;2168310;2010790;2008790;1801790
-255;'056;Belgium;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1838000;1922960;1737084;1579095;1928328;1916016;2477778;2428156;2391931;2368826;2277710;2049427;1992700;2105274;2068740;1941370;1975768;1815744;1992450;1730185;1494372;1249345;1508246;1713037
-255;'056;Belgium;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746734;592967;525067;518293;621131;653212;889508;1161861;1116578;775729;1027508;919200;812069;774302;758749;644506;649351;654608.67;703927;522415;426538;496141;731167;747125
-255;'056;Belgium;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2515000;2479600;2430429;2500321;2879579;2907183;3425371;3758177;3432087;3369755;3184465;3104135;2734390;2492180;2422929;2325452;2234985;2337858;2284459;2044764;1601119;1540314;1788386;1971175
-255;'056;Belgium;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631490;452708;440509;464023;575655;605742;886896;1203086;1219955;789974;1111346;1082022;858925;823047;774617;712190;685553;722067.17;736059;585691;374605;495213;710288;661086
-255;'056;Belgium;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431000;405000;466000;491000;532000;509000;509000;510000;452000;687827;453032;506095;496989;504785;503898;493921;501436;502619;516790;690310;587310;400790;395790;324790
-255;'056;Belgium;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084000;1114370;1040156;902000;958633;1037016;1245578;1101316;911774;732891;808762;591637;675160;879384;921192;852268;906455;906204;950247;724185;607563;504131;738415;773134
-255;'056;Belgium;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674510;546362;468319;457409;536739;571554;767062;971740;856913;577365;760924;590498;589539;595029;591827;501588;500470;502562.11;567478;411369;347635;373397;588630;619075
-255;'056;Belgium;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709000;711820;685333;602333;696166;696183;1045841;1420431;1118499;944345;1084326;782199;726390;764470;789211;744478;777902;743027;698459;688764;353824;353697;557452;651230
-255;'056;Belgium;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436283;339877;293981;283700;345896;366653;619296;827528;815883;506234;726305;560038;502884;533303;507593;477951;449490;429550.66;483569;423704;261970;274735;479594;482897
-255;'056;Belgium;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431000;405000;466000;491000;532000;509000;509000;528000;450000;685827;452814;504309;495203;502995;502108;492131;499646;500829;515000;688520;585520;399000;394000;323000
-255;'056;Belgium;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100000;1141790;1076586;939520;990650;1071016;1276192;1159699;996419;781815;837732;640326;754850;945730;980341;866093;936910;969763;1015967;793171;643928;563656;775551;792891
-255;'056;Belgium;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684049;565556;495778;488228;561815;600502;790439;1026733;933306;606363;780199;630689;683028;674036;654140;520970;538280;565649.62;633822;473745;377011;429509;618545;628690
-255;'056;Belgium;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719000;728440;694563;623603;724443;726183;1080293;1479719;1189641;996635;1112541;825223;809240;843970;847333;781382;798479;797845;750313;741401;376691;403727;593653;674122
-255;'056;Belgium;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442883;354528;302879;298578;369634;393578;647108;883102;892775;553840;756332;608141;595395;612245;568736;512565;475094;483725.59;535164;470819;280004;321738;514554;500384
-255;'056;Belgium;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118829;119000;235520;235520;0;0;0
-255;'056;Belgium;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31840;2598;2819;1961;1639;1166;1562
-255;'056;Belgium;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10037;1457;889;921;1009;838;1116
-255;'056;Belgium;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25600;1510;1224;1101;8729;7901;6545
-255;'056;Belgium;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10725.56;1048;451;958;2232;1194;2093
-255;'056;Belgium;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196000;162000;164000;158000;170000;163000;163000;163000;150000;425711;227585;230865;128203;119995;119108;119131;111646;;;;;;;
-255;'056;Belgium;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;8190;19093;2350;1450;1000;155;288;515;5382;2154;744;2330;320;2619;2043;2288;;;;;;;
-255;'056;Belgium;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5111;3564;8152;1107;785;417;2276;846;780;3125;1662;1211;1505;374;1608;1136;1051;;;;;;;
-255;'056;Belgium;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;3300;15743;3;23;183;400;54;444;5081;1890;653;110;20;7;159;1377;;;;;;;
-255;'056;Belgium;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4228;1170;6414;3;9;77;73;159;242;2506;1415;514;1819;361;5;66;558;;;;;;;
-255;'056;Belgium;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-255;'056;Belgium;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;83160;50787;18870;12500;16000;37588;30594;21142;38224;31347;7846;7540;7210;23368;3312;8468;;;;;;;
-255;'056;Belgium;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38074;37549;21319;8577;11177;7942;24478;20872;15666;25947;27850;6965;8983;8972;18667;5342;3494;;;;;;;
-255;'056;Belgium;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;82700;49250;15430;11820;9000;10000;24523;11155;30101;24325;1295;1630;350;19906;227;8366;;;;;;;
-255;'056;Belgium;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32689;37464;20851;7014;6158;4166;19375;16730;8563;17214;18476;1039;1968;439;12113;162;3663;;;;;;;
-255;'056;Belgium;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235000;243000;302000;333000;362000;346000;346000;347000;300000;260116;225229;273444;367000;383000;383000;373000;388000;382000;396000;453000;350000;399000;394000;323000
-255;'056;Belgium;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008000;1018060;965282;876300;938900;1010016;1198086;1058581;884389;680686;766251;577730;663740;863000;889300;841330;890665;870241;943717;716613;599270;493574;715821;756434
-255;'056;Belgium;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625774;498668;432306;442312;517040;552745;728389;934954;821466;521606;706725;556875;570241;572915;562070;487501;489079;485287.67;559290;402403;336609;359536;548890;587620
-255;'056;Belgium;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647000;625180;618644;585970;682490;683000;1031513;1392217;1100236;904282;1055686;775925;724000;763400;765600;742205;766056;715600;693488;679699;345101;337648;537686;636627
-255;'056;Belgium;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398410;300459;265470;275174;336959;358239;591829;802087;797226;480301;701330;550516;495815;528869;490149;473837;442256;416061.29;478737;415187;253919;263886;459445;462091
-255;'056;Belgium;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;14000;16496;14630;19200;21000;21116;26915;22298;11482;18643;18145;15310;14400;9700;11573;12903;20249;29062;21919;21919;55265;122578;83066
-255;'056;Belgium;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9546;7038;7263;7579;10606;11410;13021;22308;15381;7284;14371;14825;12724;12097;8823;8527;9567;12930.5;24852;16094;12384;40885;79465;55235
-255;'056;Belgium;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;5130;10297;6670;13900;14000;13170;17984;12038;10102;13444;12468;520;5100;1100;5695;5150;8562;11840;11415;9965;48801;106305;71707
-255;'056;Belgium;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5967;2495;4644;2764;7444;7908;8624;14906;9649;6146;8600;8375;8350;4614;1048;4509;4047;5755.66;10394;8918;7234;30864;65345;32804
-255;'056;Belgium;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235000;243000;302000;333000;362000;346000;346000;347000;300000;226513;199186;238948;367000;383000;383000;373000;388000;382000;396000;453000;350000;399000;394000;323000
-255;'056;Belgium;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901000;861850;843182;773920;858000;934000;1167000;1022864;851371;660861;723494;529040;617050;813300;857000;809495;865660;840794;907276;691927;572703;430147;582886;661747
-255;'056;Belgium;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557840;421637;370219;382148;463333;499654;678983;878211;776313;496549;664190;509964;531554;532204;533715;462991;467548;459862.43;523598;382474;318001;307020;453621;515460
-255;'056;Belgium;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616000;597820;579083;565400;660200;661000;1011000;1369650;1082151;887408;1021101;739721;723000;738100;757400;729297;756404;706487;681034;667833;334630;288040;429914;563939
-255;'056;Belgium;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380372;285758;245720;263912;322839;342728;576306;782378;779912;468674;674306;520399;465198;508125;483117;464415;434869;409198.55;467110;405262;245730;231733;391333;427154
-255;'056;Belgium;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-255;'056;Belgium;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9198;7379;2767;4648;8162;10357;11621
-255;'056;Belgium;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12494.74;10840;3835;6224;11631;15804;16925
-255;'056;Belgium;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;614;451;506;807;1467;981
-255;'056;Belgium;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107.08;1233;1007;955;1289;2767;2133
-255;'056;Belgium;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;33603;26043;34496;0;0;0;0;0;;;;;;;
-255;'056;Belgium;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;58180;15619;11770;900;16;10;1272;769;784;1084;212;10590;14500;7500;6946;3805;;;;;;;
-255;'056;Belgium;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2299;23179;6897;6074;495;7;12;4507;3143;2580;3651;412;5433;9089;4673;3558;1793;;;;;;;
-255;'056;Belgium;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2380;226;2080;1070;1000;793;803;200;112;634;86;110;12700;6300;6873;3933;;;;;;;
-255;'056;Belgium;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;1341;654;1561;1280;861;957;1058;1040;567;916;318;892;9427;4715;4251;2340;;;;;;;
-255;'056;Belgium;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-255;'056;Belgium;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;84030;89985;75980;60800;55000;9960;7530;9951;7559;23030;30333;20790;20800;15100;13316;8297;;;;;;;
-255;'056;Belgium;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56089;46814;47927;46511;42606;41674;36373;29928;26629;15193;24513;31674;20530;19525;14859;12425;10171;;;;;;;
-255;'056;Belgium;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;19850;29038;11820;7320;7000;6550;3780;5847;6660;20507;23650;370;7500;800;340;569;;;;;;;
-255;'056;Belgium;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11416;10865;14452;6937;5396;6742;5942;3745;6625;4914;17508;21424;21375;6703;1269;662;1000;;;;;;;
-255;'056;Belgium;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;32380;41424;42000;37800;44000;40363;70236;90373;57523;37980;54006;81240;75200;65054;19408;35489;67682;69652;73739;42697;68443;58564;34895
-255;'056;Belgium;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15090;25775;34001;36232;32813;39398;35296;70061;95394;55685;43962;65638;102299;91775;71795;26991;44656;70324.95;73075;70453;39481;68964;68817;39954
-255;'056;Belgium;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;17260;10926;22200;30110;34000;38380;62925;77806;57171;30640;47350;83500;80200;61820;38791;22680;56645;55315;60478;30489;57350;48066;30950
-255;'056;Belgium;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7556;15435;10144;16387;26508;31096;35831;64126;86744;53819;35111;56072;95793;82576;66469;38500;28617;56938.74;55379;55181;25127;55620;53915;36200
-255;'056;Belgium;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2000;2000;218;1786;1786;1790;1790;1790;1790;1790;1790;1790;1790;1790;1790;1790
-255;'056;Belgium;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4960;4994;4480;5783;10000;9749;11853;5728;8599;9010;5317;1550;8854;5905;5583;5034;4123;3932;4753;6332;8918;21428;15138
-255;'056;Belgium;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5551;6581;6542;5413;7737;10450;11919;15068;19001;26687;24687;25447;8810;12768;9482;7609;6846;7237.44;6731;8077;10105;12852;38902;30339
-255;'056;Belgium;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;640;1696;930;1833;4000;3928;3637;6664;4881;2425;4326;650;700;3698;1887;2103;1827;3461;7841;7622;7320;11865;8058
-255;'056;Belgium;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956;784;1246;1509;2770;4171;8019;8552;9852;6213;5084;7969;3282;3634;5326;3886;3013;2763.81;3784;8066;7093;8617;18955;18713
-255;'056;Belgium;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3230;4173;3360;8900;12000;152;963;19;6;25;4;1000;2520;420;240;353;1324;1514;1258;149;272;139;264
-255;'056;Belgium;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509;1191;1504;1655;4371;6135;2913;5994;1567;1823;8552;2212;1547;3634;1112;820;865;759.29;893;724;701;1050;321;328
-255;'056;Belgium;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;190;612;225;309;8;7;4358;100;78;37;80;2090;550;11;11;11;6;27;69;106;600;120;5
-255;'056;Belgium;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1381;107;247;52;167;4;133;2550;694;1865;1177;678;1275;389;9;7;9;13.68;35;95;98;340;68;59
-255;'056;Belgium;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500000;1569000;1641000;1846000;2138000;2138000;1147000;1011000;1018358;1018358;1251000;1092028;1092028;1092030;1092030;1092030;1092030;1092030;1092030;1555000;1581000;1610000;1613000;1477000
-255;'056;Belgium;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;754000;808590;696928;677095;969695;879000;1232200;1326840;1480157;1635935;1468948;1457790;1317540;1225890;1147548;1089102;1069313;909540;1042203;1006000;886809;745214;769831;939903
-255;'056;Belgium;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72224;46605;56748;60884;84392;81658;122446;190121;259665;198364;266584;328702;222530;179273;166922;142918;148881;152046.56;136449;111046;78903;122744;142537;128050
-255;'056;Belgium;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1806000;1767780;1745096;1897988;2183413;2211000;2379530;2337746;2313588;2425410;2100139;2321936;2008000;1727710;1633718;1580974;1457083;1594831;1586000;1356000;1247295;1186617;1230934;1319945
-255;'056;Belgium;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195207;112831;146528;180323;229759;239089;267600;375558;404072;283740;385041;521984;356041;289744;267024;234239;236063;292516.51;252490;161987;112635;220478;230694;178189
-255;'056;Belgium;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1727000;1662000;1704000;1919000;1957000;1897000;1897000;1931000;2006487;2128000;2085945;2112447;2006750;1961000;2044000;2123000;2077000;2022000;1945000;1860000;1611000;1837299;1730776;1776504
-255;'056;Belgium;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3219000;3159170;3208045;3523563;3025443;3826000;3945422;4089511;4085147;3709970;3985938;3882584;4005154;3792727;3786804;3503720;3603787;3647521;3590960;3530863;3044340;3352639;3209361;2632700
-255;'056;Belgium;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2311685;2256794;2304198;2821461;2457929;2979403;3179756;3708796;3940435;3133825;3375691;3727973;3371629;3302615;3380376;2762781;2626533;2756714.34;3014114;2676862;2213831;2858225;3238389;2405452
-255;'056;Belgium;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2301000;2225260;2265761;2581674;2640371;3123000;3299662;3179863;3367361;3071366;3550510;3182303;2449220;2431270;3500799;3731997;3697371;3651724;3632200;3611085;3304059;3607541;3162679;2621284
-255;'056;Belgium;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900808;1799752;1686084;2225250;2410904;2629113;2833296;3057070;3258390;2640329;2946034;2961804;1909810;1958061;2965933;2611765;2574139;2813893.86;2803883;2575262;2153834;2918669;3231253;2404636
-255;'056;Belgium;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1221000;1144000;1170000;1408000;1464000;1384000;1384000;1384000;1440910;1450000;1456999;1466778;1465664;1231000;1461000;1517000;1484000;1418000;1353000;1250000;983000;1342360;1308118;1045806
-255;'056;Belgium;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1824000;1764500;1796223;2100245;1451906;2136000;2123183;2300956;2260969;1929771;2090283;2092615;1998284;1759127;1754715;1787225;1822801;1763650;1700742;1568471;1013486;1058794;950982;744836
-255;'056;Belgium;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301062;1291355;1333762;1729110;1233288;1802261;1836823;2167192;2285082;1808429;1847218;1997868;1771186;1578109;1570995;1284289;1319227;1289843.12;1396958;1254767;809185;896775;1047565;832183
-255;'056;Belgium;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662000;1518280;1561523;1813772;1744514;2120000;2246658;2186906;2242838;1892068;2203160;2002758;1175090;1115240;2133385;2361526;2381595;2406912;2244365;2000873;1470750;1858119;1617757;1223476
-255;'056;Belgium;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211830;1107639;1128541;1436183;1505601;1842454;1974051;2093979;2245411;1764482;1835373;1784825;867053;842894;1811835;1640161;1628014;1546449.93;1619283;1424082;982976;1360947;1704471;1278773
-255;'056;Belgium;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124000;122000;103000;173000;345000;265000;265000;265000;299444;250000;264603;258544;390000;380000;320000;332000;324778;300000;300000;270000;270000;529853;499908;499908
-255;'056;Belgium;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305000;296390;298424;287731;253145;286000;258020;288022;319286;250110;282036;228653;231080;191340;197249;184807;215737;194679;154651;130844;88365;120868;101294;53761
-255;'056;Belgium;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143680;159197;149602;156124;144909;168452;164612;203484;239936;182316;172626;162052;156398;124398;131453;97329;113209;102562.87;96542;77794;48024;62658;79248;42915
-255;'056;Belgium;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;129610;148492;188146;319586;293000;343883;382933;393668;369056;458040;386872;471670;406810;375376;381444;399700;433228;433440;362907;315159;364996;334267;309686
-255;'056;Belgium;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53370;69285;64991;87537;153854;155713;203298;256613;283793;254990;251866;257732;282432;248689;238456;178862;191187;205304.75;240026;195474;145023;175419;255055;224209
-255;'056;Belgium;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097000;1022000;1067000;1235000;1119000;1119000;1119000;1119000;1141466;1200000;1192396;1208234;1075664;851000;1141000;1185000;1159222;1118000;1053000;980000;713000;812507;808210;545898
-255;'056;Belgium;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1519000;1468110;1497799;1812514;1198761;1850000;1865163;2012934;1941683;1679661;1808247;1863962;1767204;1567787;1557466;1602418;1607064;1568971;1546091;1437627;925121;937926;849688;691075
-255;'056;Belgium;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157382;1132158;1184160;1572986;1088379;1633809;1672211;1963708;2045146;1626113;1674592;1835816;1614788;1453711;1439542;1186960;1206018;1187280.26;1300416;1176973;761161;834117;968317;789268
-255;'056;Belgium;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1545000;1388670;1413031;1625626;1424928;1827000;1902775;1803973;1849170;1523012;1745120;1615886;703420;708430;1758009;1980082;1981895;1973684;1810925;1637966;1155591;1493123;1283490;913790
-255;'056;Belgium;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1158460;1038354;1063550;1348646;1351747;1686741;1770753;1837366;1961618;1509492;1583507;1527093;584621;594205;1573379;1461299;1436827;1341145.18;1379257;1228608;837953;1185528;1449416;1054564
-255;'056;Belgium;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;115000;113000;120000;119000;128000;128000;128000;128644;150000;144969;143554;57000;0;0;0;0;0;0;0;0;95000;95000;95000
-255;'056;Belgium;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;294170;390367;359188;359188;400000;417741;473390;475624;394273;322858;341280;362890;321060;295375;284793;260250;264420;245622;187824;156249;146599;182462;133907
-255;'056;Belgium;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194482;185192;294041;270041;296945;296608;323374;387072;411639;329163;245102;284667;278455;244680;222043;171040;152849;154717.58;163928;124853;95285;91442;166175;128728
-255;'056;Belgium;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306000;205650;284798;279200;279200;326000;343580;348692;386749;311489;349424;348059;337900;339310;308057;375933;372708;382541;324583;262313;229111;267989;259912;217889
-255;'056;Belgium;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181738;127425;186993;195527;215007;247086;262008;292039;310936;262805;262837;285467;253789;253314;233336;227409;221887;220439.99;212627;173431;136049;155569;232461;203016
-255;'056;Belgium;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146000;140000;158000;185000;39000;34000;34000;34000;29000;50000;42839;46016;0;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246000;264270;468993;497500;385165;440000;441867;425607;393667;403157;423583;418366;418860;392420;413287;455789;446763;435314;409898;526318;166085;176099;189583;149657
-255;'056;Belgium;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235327;245411;408180;504062;393426;463339;467258;511131;526234;459814;469299;493884;441283;424391;428803;384220;388870;387957.61;415045;469066;181663;203464;256842;211240
-255;'056;Belgium;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;111020;223227;265080;225098;195000;217503;159114;163700;137105;158175;137578;170530;194030;223837;258719;272659;218379;218746;308217;30360;49809;50498;39733
-255;'056;Belgium;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74994;99208;186260;236708;224431;193629;225416;193864;214463;151733;160356;149384;163437;194007;221751;216535;231093;184148.05;211574;259903;39612;64694;83506;71192
-255;'056;Belgium;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838000;767000;796000;930000;961000;957000;957000;957000;983822;1000000;1004588;1018664;1018664;851000;1141000;1185000;1159222;1118000;1053000;980000;713000;717507;713210;450898
-255;'056;Belgium;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943000;909670;638439;955826;454408;1010000;1005555;1113937;1072392;882231;1061806;1104316;985454;854307;848804;861836;900051;869237;890571;723485;602787;615228;477643;407511
-255;'056;Belgium;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727573;701555;481939;798883;398008;873862;881579;1065505;1107273;837136;960191;1057265;895050;784640;788696;631700;664299;644605.06;721443;583054;484213;539211;545300;449300
-255;'056;Belgium;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1160000;1072000;905006;1081346;920630;1306000;1341692;1296167;1298721;1074418;1237521;1130249;194990;175090;1226115;1345430;1336528;1372764;1267596;1067436;896120;1175325;973080;656168
-255;'056;Belgium;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901728;811721;690297;916411;912309;1246026;1283329;1351463;1436219;1094954;1160314;1092242;167395;146884;1118292;1017355;983847;936557.14;955056;795274;662292;965265;1133449;780356
-255;'056;Belgium;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506000;518000;534000;511000;493000;513000;513000;547000;565577;678000;628946;645669;541086;730000;583000;606000;593000;604000;592000;610000;628000;494939;422658;730698
-255;'056;Belgium;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1395000;1394670;1411822;1423318;1573537;1690000;1822239;1788555;1824178;1780199;1895655;1789969;2006870;2033600;2032089;1716495;1780986;1883871;1890218;1962392;2030854;2293845;2258379;1887864
-255;'056;Belgium;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010623;965439;970436;1092351;1224641;1177142;1342933;1541604;1655353;1325396;1528473;1730105;1600443;1724506;1809381;1478492;1307306;1466871.21;1617156;1422095;1404646;1961450;2190824;1573269
-255;'056;Belgium;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639000;706980;704238;767902;895857;1003000;1053004;992957;1124523;1179298;1347350;1179545;1274130;1316030;1367414;1370471;1315776;1244812;1387835;1610212;1833309;1749422;1544922;1397808
-255;'056;Belgium;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688978;692113;557543;789067;905303;786659;859245;963091;1012979;875847;1110661;1176979;1042757;1115167;1154098;971604;946125;1267443.93;1184600;1151180;1170858;1557722;1526782;1125863
-255;'056;Belgium;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;93000;97000;100000;101000;101000;101000;101000;103156;238000;180000;160000;172000;196000;196000;204000;199624;0;0;0;0;0;0;0
-255;'056;Belgium;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;19410;21749;23440;27898;32000;30753;35894;39309;33797;25723;29217;35080;34040;38495;43092;39007;50763;54734;37804;49489;54811;58788;52756
-255;'056;Belgium;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40300;35696;38868;50917;56973;62884;60585;73332;85835;71096;57087;67272;66131;66264;71650;71602;63606;79402.08;96449;62057;69635;65614;87572;86930
-255;'056;Belgium;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;12100;14119;10855;13626;16000;15503;18049;16620;17407;19295;16634;19510;19250;21660;19851;19601;19385;13519;12766;11281;10711;11128;11464
-255;'056;Belgium;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38218;29563;30013;29575;37379;41726;51932;72673;60267;51790;49943;48806;52159;55352;54655;45609;46716;45891.76;40715;36468;29117;27539;31465;33255
-255;'056;Belgium;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349000;301000;367000;353000;352000;370000;370000;378000;393777;370000;409000;426182;309599;432000;281000;292000;285736;438728;430012;443000;456000;322939;250658;558698
-255;'056;Belgium;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208000;1209670;1155839;1292844;1434657;1619000;1748934;1723463;1690514;1695020;1831874;1709556;1950150;1982220;1974780;1656821;1725606;1803889;1822713;1915937;1963357;2229159;2181143;1830092
-255;'056;Belgium;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785615;738887;735336;885998;988513;1055393;1213571;1422574;1472318;1186427;1405800;1574580;1468843;1593858;1667687;1351946;1188094;1333519.1;1464188;1322056;1289276;1854265;2059640;1450222
-255;'056;Belgium;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501000;569650;554577;666046;782064;940000;972420;927941;992354;1099226;1277810;1105083;1231100;1277360;1330256;1338491;1282748;1208008;1360219;1579952;1760683;1721662;1507698;1373012
-255;'056;Belgium;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407354;419143;394551;516876;587236;633055;665512;757081;768529;690275;913846;943365;854720;918873;970250;836620;798024;1126448.95;1026468;1013469;1044295;1418098;1390139;1004311
-255;'056;Belgium;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263000;291000;292000;277000;276000;298000;298000;298000;301600;250000;285545;287583;171000;300000;195000;203000;198645;305009;298950;308000;317000;254562;214721;457262
-255;'056;Belgium;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631000;664240;660760;853556;962722;1029000;1116152;1093455;1099677;1118068;1165180;1071027;1285930;1289370;1177780;947821;942161;973089;1028037;1091890;1093894;1171501;1256726;1089534
-255;'056;Belgium;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262725;260219;265037;367033;427644;443446;542787;664707;692596;527567;638878;712328;673829;725426;668991;463106;453533;512119.22;616149;496563;469071;734800;919897;553270
-255;'056;Belgium;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247000;298500;320001;456517;557871;673000;696232;669591;744525;788071;878149;702573;810220;841430;844178;847750;804684;376571;685692;919974;1048014;857882;916114;868693
-255;'056;Belgium;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100764;107447;115920;186962;244493;293794;336629;418989;465183;360266;473995;457142;406035;451721;441884;385567;359242;363433.57;383575;415379;440240;523447;669253;440305
-255;'056;Belgium;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;65000;66000;69000;66000;66000;66000;75533;100000;111822;125320;125320;132000;86000;89000;87091;133719;131062;135000;139000;68377;35937;101436
-255;'056;Belgium;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345000;335820;243072;237098;251170;286000;320391;323586;291962;313627;359417;348670;387400;416180;479000;426000;470730;486940;463779;450095;465707;660976;610026;515635
-255;'056;Belgium;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358364;334445;291601;333277;347572;348287;387647;441093;442221;400920;448731;507152;499812;551805;634576;564773;470131;528008.74;526974;490461;488979;750515;791200;640280
-255;'056;Belgium;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171000;191900;124505;130788;139252;144000;154534;141764;131444;192181;275836;286602;325950;345250;369087;363849;335937;624860;503269;477363;463198;629884;436900;357897
-255;'056;Belgium;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227530;234198;194479;243950;255558;239331;220011;221655;192293;229723;333378;364874;358973;376614;408152;333337;313291;566587.46;477390;414686;394829;666100;537152;433579
-255;'056;Belgium;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;7000;6000;6000;6000;4644;10000;4109;5815;5815;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181000;157290;211578;194321;212896;245000;250241;237016;223504;215663;263763;246667;226720;235750;271000;241000;266305;311916;292054;331941;366479;365138;288130;189738
-255;'056;Belgium;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145539;127028;165936;181710;208923;239773;256267;279857;292081;235745;293888;323635;266441;293452;337469;300348;250066;277868.46;299443;315391;315529;350664;329155;230931
-255;'056;Belgium;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;78210;80586;78302;84502;90000;80047;79446;67927;79306;88183;84960;70220;63760;89590;100654;117534;182747;145483;154642;214389;201559;119263;119130
-255;'056;Belgium;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78094;76936;74827;85572;86754;87019;92149;97596;84088;84133;90230;105354;78242;77958;107270;107532;116058;185696.06;154433;172518;195912;208199;161006;115586
-255;'056;Belgium;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;0;0;0;0;0;0;8000;12000;10000;7524;7464;7464;0;0;0;0;0;0;0;0;0;0;0
-255;'056;Belgium;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;52320;40429;7869;7869;59000;62150;69406;75371;47662;43514;43192;50100;40920;47000;42000;46410;31944;38843;42011;37277;31544;26261;35185
-255;'056;Belgium;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18987;17195;12762;3978;4374;23887;26870;36917;45420;22195;24303;31465;28761;23175;26651;23719;14364;15522.68;21622;19641;15697;18286;19388;25741
-255;'056;Belgium;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1040;29485;439;439;33000;41607;37140;48458;39668;35642;30948;24710;26920;27401;26238;24593;23830;25775;27973;35082;32337;35421;27292
-255;'056;Belgium;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966;562;9325;392;431;12911;16723;18841;26965;16153;16243;15995;11470;12580;12944;10184;9433;10731.86;11070;10886;13314;20352;22728;14841
-255;'056;Belgium;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;124000;70000;58000;40000;42000;42000;68000;68644;70000;39946;59487;59487;102000;106000;110000;107640;165272;161988;167000;172000;172000;172000;172000
-255;'056;Belgium;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160000;165590;234234;107034;110982;39000;42552;29198;94355;51382;38058;51196;21640;17340;18814;16582;16373;29219;12771;8651;18008;9875;18448;5016
-255;'056;Belgium;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184708;190856;196232;155436;179155;58865;68777;45698;97200;67873;65586;88253;65469;64384;70044;54944;55606;53950.03;56519;37982;45735;41571;43612;36117
-255;'056;Belgium;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;125230;135542;91001;100167;47000;65081;46967;115549;62665;50245;57828;23520;19420;15498;12129;13427;17419;14097;17494;61345;17049;26096;13332
-255;'056;Belgium;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243406;243407;132979;242616;280688;111878;141801;133337;184183;133782;146872;184808;135878;140942;129193;89375;101385;95103.22;117417;101243;97446;112085;105178;88297
-255;'056;Belgium;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951264.47;2093716;2102364;2026096;2620551;2562058;2275897
-255;'056;Belgium;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288613.35;1390788;1376584;1266124;1605386;1540488;1431954
-255;'056;Belgium;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87382.65;90463;90463;60191;75245;70513;57442
-255;'056;Belgium;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52662.03;58271;58271;44767;66516;75161;56247
-255;'056;Belgium;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21209.67;18867;18867;22545;32246;23031;18252
-255;'056;Belgium;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6378.37;7616;7616;4647;14680;21862;12018
-255;'056;Belgium;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66172.98;71596;71596;37646;42999;47482;39190
-255;'056;Belgium;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46283.66;50655;50655;40120;51836;53299;44229
-255;'056;Belgium;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217186.94;247720;259351;239562;296188;318046;266979
-255;'056;Belgium;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196478.36;218426;208417;218815;294399;291648;304784
-255;'056;Belgium;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70611.87;80041;75434;68099;104945;104930;92281
-255;'056;Belgium;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61589.03;65381;63027;58503;78417;75371;78148
-255;'056;Belgium;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274679.23;300886;300886;235387;298799;265648;281152
-255;'056;Belgium;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211551.94;230003;230003;112223;137970;122663;118617
-255;'056;Belgium;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373197;373197
-255;'056;Belgium;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26427;39212
-255;'056;Belgium;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26897;34596
-255;'056;Belgium;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8777;10940
-255;'056;Belgium;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15575;18862
-255;'056;Belgium;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5820;5131
-255;'056;Belgium;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5379;4856
-255;'056;Belgium;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3150;738
-255;'056;Belgium;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4509;1725
-255;'056;Belgium;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3405;2307
-255;'056;Belgium;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5630;3622
-255;'056;Belgium;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;99
-255;'056;Belgium;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;190
-255;'056;Belgium;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177934;1243119;1244743;1287012;1648963;1567201;1401552
-255;'056;Belgium;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628672;671262;671583;668236;792945;723312;680512
-255;'056;Belgium;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14715.69;14725;14725;9936;17952;24788;16393
-255;'056;Belgium;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83278.83;86732;86732;100526;137371;124078;92359
-255;'056;Belgium;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108754.09;116762;116762;125909;178459;210932;160098
-255;'056;Belgium;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54381.17;60713;58551;63054;97768;128255;101287
-255;'056;Belgium;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1912597.27;2088601;1967820;2083313;2413413;2613472;2530588
-255;'056;Belgium;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672041.02;1800785;1854085;1758968;2060518;2199889;2139307
-255;'056;Belgium;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68505.67;75753;75753;57053;70997;99376;75004
-255;'056;Belgium;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2897;3688;3688;3638;4253;6480;6817
-255;'056;Belgium;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233053;275103;252853;225438;346047;349205;316857
-255;'056;Belgium;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221693.11;240472;249162;228603;316888;302556;220288
-255;'056;Belgium;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355513.6;389165;362125;468878;416995;452249;506080
-255;'056;Belgium;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309290.92;329205;309646;345983;335892;368867;403318
-255;'056;Belgium;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815472;872156;849376;891994;1017036;1113784;1020028
-255;'056;Belgium;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646178;724981;807640;703455;833390;956150;899916
-255;'056;Belgium;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440053;476424;427713;439950;562338;598858;612619
-255;'056;Belgium;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491982;502439;483949;477289;570095;565836;608968
-15;'058;Belgium-Luxembourg;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;144272;146302;163640;196772;197732;211565;211079;253901;315448;332986;358575;431325;630541;941533;710290;935017;1025067;1230242;1539975;1690027;1584403;1610626;1298915;1224447;1227680;1510350;2246850;2615164;2705073;3311813;3407445;3234954;2722847;3218473;4110982;3461584;3371632;2529902;4162427;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;59425;71583;75446;88695;102981;114078;118475;132822;179024;216294;229742;300262;393585;472965;428217;507738;556487;646810;792996;949780;911174;910780;808469;731939;643427;856374;1363714;1804032;1905113;2133520;1967794;2177196;1638626;2037575;2850348;2453826;2446365;1636876;3520442;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1861;Roundwood;5516;Production;m3;2626000;2627000;2674000;2698000;2798000;2730000;2874000;2893000;2620000;2626000;3070000;3141000;3224000;2847000;2736000;2808000;2681000;2748000;2705000;2723000;2727000;2936000;3041000;3086000;3251000;3348000;3741000;3980000;4832000;5610000;4755000;4240000;4240000;4340000;4110000;3985000;4005000;4837400;5059000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1861;Roundwood;5616;Import quantity;m3;846800;895900;894600;1149700;1059100;1098400;1189400;1208900;1825500;1943900;2477300;2219600;2867400;3107600;1629800;2529400;2692700;2597000;2698100;2938000;2815700;3148100;2938000;3021800;3352700;3252300;3292500;3341200;3434200;2191330;2510466;2329230;2510100;3514500;3249500;2472400;2878400;2878400;3868000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1861;Roundwood;5622;Import value;1000 USD;19899;19657;19812;27176;23962;25593;25426;27432;40421;36506;41167;32589;73160;100879;64794;77948;104075;118293;131137;160065;141300;143022;97557;99739;97034;117796;132932;135008;144908;122011;140741;138366;124060;170893;188929;155248;150915;150950;200778;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1861;Roundwood;5916;Export quantity;m3;466800;470100;449100;507300;505800;481000;360300;338200;404400;561000;682300;541300;489700;328000;441100;436600;592400;692200;689300;764800;778900;780700;771900;1018300;975200;1156800;1358900;1354500;1464500;1050910;1529744;1280026;1000800;1077100;879400;793300;954100;935300;1559000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1861;Roundwood;5922;Export value;1000 USD;9370;9560;8763;10670;11825;13517;8216;7873;11181;12063;13108;14524;16858;16171;19937;20845;32390;45170;51257;64682;64934;64997;45047;49331;44952;69466;96780;106085;112835;105558;125524;110625;105202;119545;133767;99920;95956;84954;139116;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1862;Roundwood, coniferous;5516;Production;m3;1386000;1413000;1453000;1434000;1470000;1505000;1609000;1617000;1537000;1528000;1756000;1851000;1901000;1651000;1581000;1643000;1526000;1564000;1597000;1588000;1578000;1690000;1803000;1803000;1903000;2042000;2382000;2557000;3282000;3960000;3170000;2770000;2770000;2870000;2710000;2585000;2559000;3337000;3271000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1863;Roundwood, non-coniferous;5516;Production;m3;1240000;1214000;1221000;1264000;1328000;1225000;1265000;1276000;1083000;1098000;1314000;1290000;1323000;1196000;1155000;1165000;1155000;1184000;1108000;1135000;1149000;1246000;1238000;1283000;1348000;1306000;1359000;1423000;1550000;1650000;1585000;1470000;1470000;1470000;1400000;1400000;1446000;1500400;1788000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1864;Wood fuel;5516;Production;m3;400000;392000;348000;322000;298000;235000;239000;226000;218000;244000;416000;416000;416000;277000;276000;277000;276000;288000;387000;392000;337000;538000;538000;538000;538000;538000;538000;572000;572000;550000;550000;550000;550000;550000;500000;500000;550000;550000;568000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1864;Wood fuel;5616;Import quantity;m3;61500;100500;47400;49500;51200;81100;75400;67200;271000;186600;133900;10900;7900;4600;6100;6600;4400;55100;63900;43100;43100;43100;90700;117500;59000;80000;40000;40000;40000;40000;13500;15198;55900;61700;108900;81400;55700;55700;17000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1864;Wood fuel;5622;Import value;1000 USD;905;1411;501;593;612;1144;1313;1064;6090;2104;1762;131;181;133;122;113;73;1463;2241;1918;1918;1918;2735;3414;1383;2068;1564;1564;1564;1564;675;722;1260;1207;2562;2158;2062;2062;977;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1864;Wood fuel;5916;Export quantity;m3;29000;27800;17500;20500;10600;9600;10200;12000;14100;14900;13500;5000;3900;2000;1200;4700;4600;9000;7000;4700;4700;4700;4300;2100;1300;3500;5500;5500;5500;5500;20300;23463;28700;43300;39600;32000;50800;50800;22000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1864;Wood fuel;5922;Export value;1000 USD;411;354;227;266;138;122;130;175;354;219;195;98;137;108;35;215;287;408;337;197;197;197;106;70;64;169;429;429;429;429;800;927;1420;1843;2416;2075;2735;2470;1314;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;10000;10000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;3000;72000;72000;72000;72000;72000;72000;72000;72000;50000;50000;50000;50000;50000;50000;50000;50000;50000;51000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1628;Wood fuel, non-coniferous;5516;Production;m3;400000;392000;348000;322000;298000;235000;239000;226000;208000;234000;356000;356000;356000;217000;216000;217000;216000;228000;327000;332000;334000;466000;466000;466000;466000;466000;466000;500000;500000;500000;500000;500000;500000;500000;450000;450000;500000;500000;517000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;61500;100500;47400;49500;51200;81100;75400;67200;271000;186600;133900;10900;7900;4600;6100;6600;4400;55100;63900;43100;43100;43100;90700;117500;59000;80000;40000;40000;40000;40000;13500;15198;55900;61700;108900;81400;55700;55700;17000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;905;1411;501;593;612;1144;1313;1064;6090;2104;1762;131;181;133;122;113;73;1463;2241;1918;1918;1918;2735;3414;1383;2068;1564;1564;1564;1564;675;722;1260;1207;2562;2158;2062;2062;977;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;29000;27800;17500;20500;10600;9600;10200;12000;14100;14900;13500;5000;3900;2000;1200;4700;4600;9000;7000;4700;4700;4700;4300;2100;1300;3500;5500;5500;5500;5500;20300;23463;28700;43300;39600;32000;50800;50800;22000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;411;354;227;266;138;122;130;175;354;219;195;98;137;108;35;215;287;408;337;197;197;197;106;70;64;169;429;429;429;429;800;927;1420;1843;2416;2075;2735;2470;1314;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1865;Industrial roundwood;5516;Production;m3;2226000;2235000;2326000;2376000;2500000;2495000;2635000;2667000;2402000;2382000;2654000;2725000;2808000;2570000;2460000;2531000;2405000;2460000;2318000;2331000;2390000;2398000;2503000;2548000;2713000;2810000;3203000;3408000;4260000;5060000;4205000;3690000;3690000;3790000;3610000;3485000;3455000;4287400;4491000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1865;Industrial roundwood;5616;Import quantity;m3;785300;795400;847200;1100200;1007900;1017300;1114000;1141700;1554500;1757300;2343400;2208700;2859500;3103000;1623700;2522800;2688300;2541900;2634200;2894900;2772600;3105000;2847300;2904300;3293700;3172300;3252500;3301200;3394200;2151330;2496966;2314032;2454200;3452800;3140600;2391000;2822700;2822700;3851000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1865;Industrial roundwood;5622;Import value;1000 USD;18994;18246;19311;26583;23350;24449;24113;26368;34331;34402;39405;32458;72979;100746;64672;77835;104002;116830;128896;158147;139382;141104;94822;96325;95651;115728;131368;133444;143344;120447;140066;137644;122800;169686;186367;153090;148853;148888;199801;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1865;Industrial roundwood;5916;Export quantity;m3;437800;442300;431600;486800;495200;471400;350100;326200;390300;546100;668800;536300;485800;326000;439900;431900;587800;683200;682300;760100;774200;776000;767600;1016200;973900;1153300;1353400;1349000;1459000;1045410;1509444;1256563;972100;1033800;839800;761300;903300;884500;1537000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1865;Industrial roundwood;5922;Export value;1000 USD;8959;9206;8536;10404;11687;13395;8086;7698;10827;11844;12913;14426;16721;16063;19902;20630;32103;44762;50920;64485;64737;64800;44941;49261;44888;69297;96351;105656;112406;105129;124724;109698;103782;117702;131351;97845;93221;82484;137802;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1866;Industrial roundwood, coniferous;5516;Production;m3;1386000;1413000;1453000;1434000;1470000;1505000;1609000;1617000;1527000;1518000;1696000;1791000;1841000;1591000;1521000;1583000;1466000;1504000;1537000;1528000;1575000;1618000;1731000;1731000;1831000;1970000;2310000;2485000;3210000;3910000;3120000;2720000;2720000;2820000;2660000;2535000;2509000;3287000;3220000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405866;662712;695539;637100;988900;576300;555300;725800;725800;1543000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18266;26114;28034;22926;42432;34157;35628;44788;44788;91328;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794356;943199;809549;683300;687100;520900;482000;592100;592100;1086000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73515;76623;67710;25862;34623;45024;47045;43938;43938;73034;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405866;662712;695539;637100;988900;576300;555300;725800;725800;1543000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18266;26114;28034;22926;42432;34157;35628;44788;44788;91328;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794356;943199;809549;683300;687100;520900;482000;592100;592100;1086000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73515;76623;67710;25862;34623;45024;47045;43938;43938;73034;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1867;Industrial roundwood, non-coniferous;5516;Production;m3;840000;822000;873000;942000;1030000;990000;1026000;1050000;875000;864000;958000;934000;967000;979000;939000;948000;939000;956000;781000;803000;815000;780000;772000;817000;882000;840000;893000;923000;1050000;1150000;1085000;970000;970000;970000;950000;950000;946000;1000400;1271000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745464;1834254;1618493;1817100;2463900;2564300;1835700;2096900;2096900;2308000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102181;113952;109610;99874;127254;152210;117462;104065;104100;108473;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251054;566245;447014;288800;346700;318900;279300;311200;292400;451000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31614;48101;41988;77920;83079;86327;50800;49283;38546;64768;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;47266;41746;38400;52000;49600;66200;76400;76400;45410;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;15150;14213;14751;21890;20028;26480;17495;17495;36366;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38300;51400;34900;13000;18800;0;29000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24690;23102;24927;8570;10737;0;9633;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745398;1786988;1576747;1778700;2411900;2514700;1769500;2020500;2020500;2262590;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102156;98802;95397;85123;105364;132182;90982;86570;86605;72107;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251054;566245;447014;250500;295300;284000;266300;292400;292400;422000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31614;48101;41988;53230;59977;61400;42230;38546;38546;55135;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1868;Sawlogs and veneer logs;5516;Production;m3;1269000;1272000;1267000;1336000;1345000;1374000;1403000;1374000;1281000;1278000;1583000;1655000;1657000;1360000;1291000;1323000;1275000;1389000;1405000;1438000;1469000;1475000;1580000;1625000;1790000;1890000;2070000;2230000;3050000;3550000;2945000;2620000;2620000;2720000;2550000;2400000;2470000;2480000;3063000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1868;Sawlogs and veneer logs;5616;Import quantity;m3;359300;357400;389100;487000;398600;410700;416100;445400;537000;530900;599700;560400;713400;609100;378800;380200;412500;376500;354200;392700;304000;299000;302300;345000;329300;325000;314300;296000;338000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;11105;11164;12891;17930;15153;16663;15252;16928;21701;18151;20768;13285;45953;54219;40579;48656;60684;73981;75344;82878;64880;62100;47654;52933;47802;56517;60524;60100;68000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1868;Sawlogs and veneer logs;5916;Export quantity;m3;202600;194400;212600;228200;235500;231200;189100;157000;205300;237600;321900;256700;257500;251400;255400;282000;342400;428800;463500;533900;537000;542000;628200;653300;672800;728000;779900;858000;874000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4937;4806;4719;5836;6463;6272;4887;4737;6852;6302;6918;8480;10191;13327;13106;14855;21061;31294;38221;49847;49380;50300;37521;36327;34112;48601;61945;69000;71000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;584000;593000;623000;639000;629000;695000;701000;693000;598000;590000;824000;922000;916000;714000;692000;715000;663000;774000;817000;842000;868000;887000;1000000;1000000;1100000;1250000;1400000;1530000;2250000;2750000;2150000;1900000;1900000;2000000;1850000;1700000;1750000;1750000;2312000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;38000;29000;46700;60700;54200;60500;56400;60900;83600;89800;62000;77500;140500;91000;12100;22000;27800;20900;20500;17100;9000;20000;15900;20000;17200;13500;19000;10000;28000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;975;653;985;1289;1379;1428;1342;1270;1827;1820;1650;2073;3743;3536;658;982;1503;1716;1909;1091;580;1300;704;590;466;560;1894;1100;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;118000;110800;127500;136100;147200;131300;84100;50700;64000;91100;173500;150300;109600;114200;142000;168000;219000;275800;306100;340700;366000;350000;444000;447500;456400;493100;566000;625000;625000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;2218;2113;2456;2921;3230;2800;1521;919;1342;935;3008;4088;3715;4729;6018;7505;12030;18316;22833;28404;30380;29000;23334;20700;18110;26235;36445;41000;41000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;685000;679000;644000;697000;716000;679000;702000;681000;683000;688000;759000;733000;741000;646000;599000;608000;612000;615000;588000;596000;601000;588000;580000;625000;690000;640000;670000;700000;800000;800000;795000;720000;720000;720000;700000;700000;720000;730000;751000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;321300;328400;342400;426300;344400;350200;359700;384500;453400;441100;537700;482900;572900;518100;366700;358200;384700;355600;333700;375600;295000;279000;286400;325000;312100;311500;295300;286000;310000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;10130;10511;11906;16641;13774;15235;13910;15658;19874;16331;19118;11212;42210;50683;39921;47674;59181;72265;73435;81787;64300;60800;46950;52343;47336;55957;58630;59000;65000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;84600;83600;85100;92100;88300;99900;105000;106300;141300;146500;148400;106400;147900;137200;113400;114000;123400;153000;157400;193200;171000;192000;184200;205800;216400;234900;213900;233000;249000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2719;2693;2263;2915;3233;3472;3366;3818;5510;5367;3910;4392;6476;8598;7088;7350;9031;12978;15388;21443;19000;21300;14187;15627;16002;22366;25500;28000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1597400;1272000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1377000;802000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220400;470000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;384400;381900;380000;516000;524500;556000;640300;653700;888600;1048100;1260100;1139400;1534200;1812900;1220500;2074000;2227200;2156600;2267000;2490600;2457000;2789000;2531400;2545000;2950400;2840000;2917000;2984000;3035000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;7245;6381;5654;7756;7465;7199;8136;8694;10836;14241;15360;14956;20916;36650;23299;27024;42258;42293;52838;74467;73700;78000;46374;42988;47457;58923;69500;72000;74000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;22000;13900;7000;11300;7400;7900;5400;17200;6900;18200;14200;9800;61100;27200;31100;20500;98900;114300;114000;119000;130000;135000;40800;251400;204100;305300;277000;406000;500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;288;196;82;122;83;111;68;160;104;274;318;244;1757;912;1005;671;4229;6119;6628;7731;8450;8100;1346;8386;5776;14244;14000;16250;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1870;Pulpwood and particles (1961-1997);5516;Production;m3;341000;358000;379000;385000;439000;479000;530000;672000;508000;490000;508000;583000;658000;809000;752000;795000;741000;714000;576000;583000;588000;668000;668000;668000;668000;720000;903000;968000;1000000;1300000;1050000;860000;860000;860000;850000;875000;875000;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;384400;381900;380000;516000;524500;556000;640300;653700;888600;1048100;1260100;1139400;1534200;1812900;1220500;2074000;2227200;2156600;2267000;2490600;2457000;2789000;2531400;2545000;2950400;2840000;2917000;2984000;3035000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;7245;6381;5654;7756;7465;7199;8136;8694;10836;14241;15360;14956;20916;36650;23299;27024;42258;42293;52838;74467;73700;78000;46374;42988;47457;58923;69500;72000;74000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;22000;13900;7000;11300;7400;7900;5400;17200;6900;18200;14200;9800;61100;27200;31100;20500;98900;114300;114000;119000;130000;135000;40800;251400;204100;305300;277000;406000;500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;288;196;82;122;83;111;68;160;104;274;318;244;1757;912;1005;671;4229;6119;6628;7731;8450;8100;1346;8386;5776;14244;14000;16250;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;231000;233000;239000;245000;264000;299000;335000;392000;361000;360000;389000;452000;506000;525000;455000;504000;453000;413000;415000;406000;409000;495000;495000;495000;495000;540000;730000;795000;800000;1000000;810000;660000;660000;660000;650000;675000;675000;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;110000;125000;140000;140000;175000;180000;195000;280000;147000;130000;119000;131000;152000;284000;297000;291000;288000;301000;161000;177000;179000;173000;173000;173000;173000;180000;173000;173000;200000;300000;240000;200000;200000;200000;200000;200000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1871;Other industrial roundwood;5516;Production;m3;616000;605000;680000;655000;716000;642000;702000;621000;613000;614000;563000;487000;493000;401000;417000;413000;389000;357000;337000;310000;333000;255000;255000;255000;255000;200000;230000;210000;210000;210000;210000;210000;210000;210000;210000;210000;110000;210000;156000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1871;Other industrial roundwood;5616;Import quantity;m3;41600;56100;78100;97200;84800;50600;57600;42600;128900;178300;483600;508900;611900;681000;24400;68600;48600;8800;13000;11600;11600;17000;13600;14300;14000;7300;21200;21200;21200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1871;Other industrial roundwood;5622;Import value;1000 USD;644;701;766;897;732;587;725;746;1794;2010;3277;4217;6110;9877;794;2155;1060;556;714;802;802;1004;794;404;392;288;1344;1344;1344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1871;Other industrial roundwood;5916;Export quantity;m3;213200;234000;212000;247300;252300;232300;155600;152000;178100;290300;332700;269800;167200;47400;153400;129400;146500;140100;104800;107200;107200;99000;98600;111500;97000;120000;296500;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1871;Other industrial roundwood;5922;Export value;1000 USD;3734;4204;3735;4446;5141;7012;3131;2801;3871;5268;5677;5702;4773;1824;5791;5104;6813;7349;6071;6907;6907;6400;6074;4548;5000;6452;20406;20406;20406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;571000;587000;591000;550000;577000;511000;573000;532000;568000;568000;483000;417000;419000;352000;374000;364000;350000;317000;305000;280000;298000;236000;236000;236000;236000;180000;180000;160000;160000;160000;160000;160000;160000;160000;160000;160000;84000;160000;106000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;45000;18000;89000;105000;139000;131000;129000;89000;45000;46000;80000;70000;74000;49000;43000;49000;39000;40000;32000;30000;35000;19000;19000;19000;19000;20000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;26000;50000;50000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;41600;56100;78100;97200;84800;50600;57600;42600;128900;178300;483600;508900;611900;681000;24400;68600;48600;8800;13000;11600;11600;17000;13600;14300;14000;7300;21200;21200;21200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;644;701;766;897;732;587;725;746;1794;2010;3277;4217;6110;9877;794;2155;1060;556;714;802;802;1004;794;404;392;288;1344;1344;1344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;213200;234000;212000;247300;252300;232300;155600;152000;178100;290300;332700;269800;167200;47400;153400;129400;146500;140100;104800;107200;107200;99000;98600;111500;97000;120000;296500;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;3734;4204;3735;4446;5141;7012;3131;2801;3871;5268;5677;5702;4773;1824;5791;5104;6813;7349;6071;6907;6907;6400;6074;4548;5000;6452;20406;20406;20406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1630;Wood charcoal;5610;Import quantity;t;2300;2500;1400;1300;700;400;600;400;400;1100;1700;1700;2800;2900;2700;4300;5600;4900;6100;6900;6900;6900;9100;13000;8400;8400;9600;9600;9600;11500;9600;12130;21100;15300;12000;15000;19000;19000;24000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1630;Wood charcoal;5622;Import value;1000 USD;163;207;138;116;78;55;64;39;59;99;203;259;430;558;625;973;1529;1640;2380;3143;3143;3143;2760;3603;2364;2364;4311;4311;4311;5849;4981;6588;8426;6730;6064;6628;8861;8861;8287;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1630;Wood charcoal;5910;Export quantity;t;2300;2500;1400;1300;700;400;600;400;400;100;300;200;600;500;500;700;200;600;300;100;100;100;1000;1100;600;600;1900;1900;1900;1900;800;748;6500;3400;1900;900;2400;2400;9000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1630;Wood charcoal;5922;Export value;1000 USD;302;301;318;242;263;206;195;180;73;21;43;30;153;118;127;134;45;258;114;78;78;78;312;368;216;216;895;895;895;895;281;329;2111;1278;755;359;714;714;3300;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1269818;1056000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1865700;2017000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31643;46004;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406800;840000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21663;28860;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666122;475000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;175500;190300;229800;196500;184000;203400;180400;179200;176000;142000;153000;155700;139000;96300;130000;172000;165000;177000;242000;234600;228226;262600;278900;347700;360500;373900;974000;882000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;2156;2298;3490;3127;2865;3214;3100;3276;3811;3100;3400;3620;2083;1659;2698;6643;6500;7000;7459;6807;7299;7035;7705;12021;10799;8270;8270;17088;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;5600;400;400;14400;2800;4800;9400;16300;31700;35000;66000;34700;38800;41600;75700;89400;75700;76000;181000;207000;206064;249300;261600;301900;175300;121700;121700;268000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;855;120;120;253;71;142;399;648;1410;1540;2900;1687;806;939;1814;2857;2600;2700;10083;10929;11806;10604;11998;17862;9020;6671;10214;10572;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603696;581000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1620;Wood residues;5616;Import quantity;m3;;;;;;;4000;169000;136000;134000;121000;164000;187000;123000;131100;371500;366200;345000;322000;394000;319000;342000;380000;374000;388800;350000;496400;445000;478000;409000;546600;596068;643200;775400;847800;756800;891700;891700;1135000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1620;Wood residues;5622;Import value;1000 USD;;;;;;;36;1500;1360;1350;1300;2000;3000;2114;4303;4965;5381;6051;6085;8978;7300;7800;8049;5987;7123;6070;15133;13400;15800;16708;16217;19830;18350;22696;28881;24044;23373;23373;28916;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;100;100;5500;27200;24500;26300;34000;44500;49000;93000;70600;99800;102400;209000;212600;209000;210000;212000;288400;258600;282900;419600;332800;289300;285100;285100;572000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;38;38;170;303;318;555;762;1294;1400;2700;1562;1215;1676;5096;6523;6500;6600;5853;7638;7884;8934;12485;15694;12600;11449;11449;18288;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1872;Sawnwood;5516;Production;m3;725300;747400;735600;736500;706700;695500;706100;693500;735500;746200;744500;791100;843000;709300;611000;692000;689000;879000;671000;686000;653000;676000;753000;746000;795000;824000;909000;1009000;1164000;1194000;1244000;1184000;1184000;1209000;1150000;1100000;1150000;1266632;1189000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1872;Sawnwood;5616;Import quantity;m3;909700;914900;1019500;1108000;975100;1015300;1061000;1020600;1229000;1141700;917500;1203300;1555600;1360300;1050500;1473500;1460800;1618000;1819900;1604100;1280600;1368600;1345400;1233000;1375500;1396700;1734600;1639800;1727900;1668000;1670000;2196564;2638400;2194600;1923300;1931600;2006800;2006800;2241000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1872;Sawnwood;5622;Import value;1000 USD;46490;42832;49167;58555;55384;56203;55602;54467;71896;68093;56397;89062;149432;191954;160956;229517;265845;339833;425132;418138;337426;351226;265269;223623;239482;205552;407162;377834;383834;525980;635544;718884;536036;598407;654333;560719;562006;562000;532010;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1872;Sawnwood;5916;Export quantity;m3;102100;125200;122600;117400;107000;91300;76300;85600;97100;119600;162000;158400;151100;103900;154700;168300;142300;173200;201300;229200;242600;270600;312200;316800;275600;257200;304400;337800;411800;483600;399900;556446;509800;612500;497200;415600;470700;471000;1048000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1872;Sawnwood;5922;Export value;1000 USD;5300;6812;7233;7668;7160;5889;5896;6245;7928;9210;9288;16113;17931;16254;24364;30931;31450;43603;57691;70248;72996;79446;67379;64144;55513;73572;93381;97874;106874;112674;147496;178851;156218;199287;199019;197781;179856;180000;292714;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1632;Sawnwood, coniferous;5516;Production;m3;377500;381200;376600;378400;372000;368400;374900;374000;407300;407800;404700;432000;454000;355500;302500;341000;345500;352500;355000;365000;347000;399000;453000;448000;507500;582000;632000;725000;880000;930000;960000;900000;900000;925000;880000;830000;880000;1074004;1005000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1632;Sawnwood, coniferous;5616;Import quantity;m3;803150;809600;900200;958650;830700;868850;909700;836150;977050;880900;645450;930600;1002300;915550;773100;1035450;971650;1095800;1212900;1073500;833800;934800;888150;789000;904950;907850;1122900;1100900;1112000;1130000;1195000;1251564;1680500;1376700;1390900;1298000;1270000;1270000;1511000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1632;Sawnwood, coniferous;5622;Import value;1000 USD;38639;35242;40541;46713;44103;44152;43127;39739;50526;47264;32911;55455;78820;103459;98116;121164;128442;157237;191911;201075;156363;175163;115675;93875;108238;132732;191957;188417;193417;286563;362735;266884;238488;278605;327484;269357;275354;275000;260762;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1632;Sawnwood, coniferous;5916;Export quantity;m3;77800;97050;92500;83000;72350;59500;46650;49700;58950;78700;85350;91400;68450;40550;94100;92750;68000;87450;100250;128200;142800;171800;197750;177500;159150;157100;174100;216900;331900;346700;294500;339538;340300;467800;358400;257400;318800;319000;644000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1632;Sawnwood, coniferous;5922;Export value;1000 USD;3891;4994;5017;4842;4294;3491;3231;3194;4373;5779;5847;7633;7731;5472;12645;14063;10665;14736;19665;29100;32348;39248;30547;24142;20451;24743;34666;43437;70437;76237;67467;75781;67793;98229;86061;81597;77467;78000;120229;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1633;Sawnwood, non-coniferous;5516;Production;m3;347800;366200;359000;358100;334700;327100;331200;319500;328200;338400;339800;359100;389000;353800;308500;351000;343500;526500;316000;321000;306000;277000;300000;298000;287500;242000;277000;284000;284000;264000;284000;284000;284000;284000;270000;270000;270000;192628;184000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;106550;105300;119300;149350;144400;146450;151300;184450;251950;260800;272050;272700;553300;444750;277400;438050;489150;522200;607000;530600;446800;433800;457250;444000;470550;488850;611700;538900;615900;538000;475000;945000;957900;817900;532400;633600;736800;736800;730000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;7851;7590;8626;11842;11281;12051;12475;14728;21370;20829;23486;33607;70612;88495;62840;108353;137403;182596;233221;217063;181063;176063;149594;129748;131244;72820;215205;189417;190417;239417;272809;452000;297548;319802;326849;291362;286652;287000;271248;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;24300;28150;30100;34400;34650;31800;29650;35900;38150;40900;76650;67000;82650;63350;60600;75550;74300;85750;101050;101000;99800;98800;114450;139300;116450;100100;130300;120900;79900;136900;105400;216908;169500;144700;138800;158200;151900;152000;404000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1409;1818;2216;2826;2866;2398;2665;3051;3555;3431;3441;8480;10200;10782;11719;16868;20785;28867;38026;41148;40648;40198;36832;40002;35062;48829;58715;54437;36437;36437;80029;103070;88425;101058;112958;116184;102389;102000;172485;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1634;Veneer sheets;5516;Production;m3;;;10000;10000;12000;15000;23000;25000;27500;27500;27500;30000;35000;32000;26000;30000;30000;30000;35000;39000;36000;33000;33000;35000;38000;42000;40000;42000;45000;45000;45000;45000;45000;45000;45000;45000;46000;46000;45000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1634;Veneer sheets;5616;Import quantity;m3;10700;10200;10200;12500;11000;10400;9600;11000;13600;11700;24800;27000;34200;30000;20300;22700;26200;30400;33100;32200;40000;36000;37000;36800;30400;38000;36000;44500;51000;27000;48400;54824;42800;89500;36600;34500;54100;65000;58079;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1634;Veneer sheets;5622;Import value;1000 USD;2909;2946;3598;4831;4967;4872;4352;4670;5826;4577;7983;9575;16180;16954;11732;13043;15836;20823;24241;26957;33500;30200;22894;21282;18840;25089;29434;37000;42000;31687;42763;48190;42748;54946;63494;62862;55489;66000;59481;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1634;Veneer sheets;5916;Export quantity;m3;4600;6600;7200;7200;8100;7600;7100;7700;8700;9600;12400;15500;20300;15000;12700;20300;26300;34500;38100;37700;30000;30000;35200;41300;36000;34800;33100;35500;38000;20000;37200;24114;27400;35200;22200;34800;31600;39000;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1634;Veneer sheets;5922;Export value;1000 USD;1544;1819;2219;2648;2909;2948;2850;3120;4022;4599;5175;8299;11964;12470;10185;16245;22828;32899;42298;50097;40000;40000;35668;36360;34047;41026;45734;50000;53000;43018;51326;56219;43793;58546;62451;66744;54491;67000;5;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1873;Wood-based panels;5516;Production;m3;410300;486600;565000;621000;707000;752500;940000;1060000;1268000;1381700;1547200;1755600;2023600;2079200;1725000;1841000;1668000;1668000;1802000;1750400;1704900;1722000;1807000;1829000;1928000;1994000;2050000;2106000;2217000;2335000;2442000;2466000;2466000;2516000;2990000;3200000;2653000;3222800;3309000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1873;Wood-based panels;5616;Import quantity;m3;61800;59600;72700;109600;110800;175482;188829;182021;191423;258942;284917;262762;315049;301600;256600;333500;339300;373200;400900;394600;387000;342000;351400;354400;358400;467600;513000;563000;599000;623200;709500;640176;771398;881660;598000;637200;718000;917500;1060100;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1873;Wood-based panels;5622;Import value;1000 USD;6868;7000;8291;11990;12867;14722;16228;17316;20951;22393;26075;32962;43097;59572;53683;72976;75894;99687;128766;135883;134400;119554;90806;90756;92500;133424;165807;185300;198000;256992;274944;274870;258471;252144;248397;260518;261238;363496;441386;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1873;Wood-based panels;5916;Export quantity;m3;210500;294100;322000;319300;385900;412467;438854;469348;614821;794807;1007388;1058956;1274546;1328402;1183508;1317346;1256154;1301045;1345200;1322300;1192000;1193000;1191400;1250300;1318900;1425200;1591000;1632000;1766300;2040000;2058600;1935689;2167315;2061379;2008500;1979500;2348700;2775600;2870200;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1873;Wood-based panels;5922;Export value;1000 USD;12883;16377;18435;19376;25690;25270;25693;26646;36751;44386;56148;77566;103287;119863;128625;152698;162988;183601;221680;270845;248900;246150;186969;176084;181490;262916;345098;363500;395000;477692;487177;492524;448688;489239;572106;528629;534604;644928;730844;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1640;Plywood and LVL;5516;Production;m3;43000;50000;60000;70000;75000;72500;70000;75000;70000;75000;75000;90000;98000;75000;50000;60000;50000;47000;50000;55000;60000;68000;70000;55000;50000;58000;60000;62000;65000;65000;67000;68000;68000;68000;66000;65000;60000;60000;59000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1640;Plywood and LVL;5616;Import quantity;m3;17700;18900;25000;31600;37200;38900;41000;42200;45100;61800;69800;77200;91500;123700;110400;163400;138900;201500;220900;209200;223000;212000;215000;220100;204800;271000;283000;330000;325000;361000;385400;299532;371900;426300;145700;215000;313100;313000;538300;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1640;Plywood and LVL;5622;Import value;1000 USD;2767;2773;3385;4390;4599;5342;6029;6474;8329;8965;11135;14840;20477;30902;28348;42932;41789;62876;82505;83593;89000;85000;60142;61221;60563;83674;104811;122000;121000;153000;163358;154029;161809;113649;92676;128641;146074;146000;214673;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1640;Plywood and LVL;5916;Export quantity;m3;13100;15100;25600;30600;29800;22300;21200;26500;36100;41600;57000;59300;73900;67600;56900;83900;67100;85800;107100;112900;121000;136000;128000;122000;97700;117000;126000;135000;145000;128000;168100;131916;134700;120700;88100;88100;101200;101000;403100;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1640;Plywood and LVL;5922;Export value;1000 USD;2789;3107;4225;5067;5120;4346;4329;4861;6383;6116;7141;11462;16647;13794;17441;25622;23511;31248;43163;48506;52000;58500;41045;37362;31315;48267;57961;62000;67000;67000;88001;89448;79055;75744;71955;67501;64073;64000;182172;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1646;Particle board and OSB (1961-1994);5516;Production;m3;315000;385000;451000;499000;577000;600000;790000;900000;1100000;1200000;1360000;1550000;1800000;1900000;1600000;1700000;1550000;1575000;1700000;1665000;1610000;1650000;1725000;1750000;1850000;1900000;1950000;2000000;2100000;2222000;2323000;2350000;2350000;2400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;25400;19500;24700;42300;38900;47900;53400;42000;50100;83700;110600;82200;130500;93200;84000;95000;133500;101000;107400;110600;104000;80000;73000;79100;92000;128000;150000;143000;166000;145000;190400;190819;274100;255000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;1518;1350;1662;2850;2791;3522;3849;3805;4926;5476;5830;7846;10339;14035;12735;15427;19276;19618;25633;26442;24800;15500;13708;13937;15781;25201;32896;31500;37000;52192;59146;64622;56976;64239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;170800;248300;266600;263800;322000;345000;367600;392900;526100;698500;872100;928400;1136000;1197000;1089400;1147200;1131800;1183200;1214800;1163500;1022000;1037000;1030000;1105300;1208100;1295000;1425000;1432000;1550000;1839000;1819500;1774952;1987000;1883200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;7599;10556;11402;11785;17095;17771;18036;18367;26731;34020;43842;59045;79620;98478;105557;116536;131624;147919;175277;212210;186000;177000;134338;130495;146682;208534;269337;271000;293000;374692;381894;387663;340969;368774;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2726000;2937000;2415000;2482000;2587000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261300;225400;199600;276400;251300;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76686;64146;52871;128747;128943;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1840700;1816900;1939900;2037000;1961300;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455583;418335;364881;383872;383264;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;150000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32700;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9021;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137700;12300;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33427;2986;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1874;Fibreboard;5516;Production;m3;52300;51600;54000;52000;55000;80000;80000;85000;98000;106700;112200;115600;125600;104200;75000;81000;68000;46000;52000;30400;34900;4000;12000;24000;28000;36000;40000;44000;52000;48000;52000;48000;48000;48000;48000;48000;28000;530800;513000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1874;Fibreboard;5616;Import quantity;m3;18700;21200;23000;35700;34700;88682;94429;97821;96223;113442;104517;103362;93049;84700;62200;75100;66900;70700;72600;74800;60000;50000;63400;55200;61600;68600;80000;90000;108000;117200;133700;149825;125398;200360;191000;196800;205300;328100;237800;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1874;Fibreboard;5622;Import value;1000 USD;2583;2877;3244;4750;5477;5858;6350;7037;7696;7952;9110;10276;12281;14635;12600;14617;14829;17193;20628;25848;20600;19054;16956;15598;16156;24549;28100;31800;40000;51800;52440;56219;39686;74256;79035;67731;62293;88749;88749;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1874;Fibreboard;5916;Export quantity;m3;26600;30700;29800;24900;34100;45167;50054;49948;52621;54707;78288;71256;64646;63802;37208;86246;57254;32045;23300;45900;49000;20000;33400;23000;13100;13200;40000;65000;71300;73000;71000;28821;45615;57479;79700;74500;307600;499900;493500;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1874;Fibreboard;5922;Export value;1000 USD;2495;2714;2808;2524;3475;3153;3328;3418;3637;4250;5165;7059;7020;7591;5627;10540;7853;4434;3240;10129;10900;10650;11586;8227;3493;6115;17800;30500;35000;36000;17282;15413;28664;44721;44568;42793;105650;163629;162422;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93400;115400;72500;190000;100000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44769;36208;30111;46498;46498;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;22700;37200;92000;85600;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33781;27409;45795;61508;60301;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482700;483000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87600;63000;116600;131300;131000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31567;27429;29326;34211;34211;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;14100;205200;395100;395100;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3535;9275;51257;93092;93092;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1650;Other fibreboard;5516;Production;m3;6600;7200;7000;7000;8000;28000;28000;32000;40000;40000;40000;40000;40000;32000;24000;28000;24000;2000;8000;23000;27000;4000;12000;24000;28000;36000;40000;44000;52000;48000;52000;48000;48000;48000;48000;48000;28000;30100;30000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1650;Other fibreboard;5616;Import quantity;m3;7800;9300;8900;11100;14500;65200;72000;67600;60000;82800;70400;60400;42400;36400;22400;25600;23600;22400;13200;13200;11000;2000;16400;4600;4000;13600;4000;12000;14200;14200;32500;7994;4929;8679;10000;18400;16200;6800;6800;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1650;Other fibreboard;5622;Import value;1000 USD;1053;1181;1252;1678;2468;2498;2729;2659;2383;2442;3148;3042;2190;2429;1735;1935;1854;2174;1552;1687;1400;254;1756;802;680;5395;1600;4800;5800;5800;5414;4756;2900;4919;2699;4094;2856;8040;8040;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1650;Other fibreboard;5916;Export quantity;m3;2100;3000;3700;3100;4800;18000;17200;17200;22400;18800;38800;30400;24000;28000;15200;45600;24400;21200;20800;35600;38000;3000;9200;5100;10000;8000;32000;40000;40000;44000;48000;14944;17609;14472;48400;37700;65200;12800;12800;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1650;Other fibreboard;5922;Export value;1000 USD;264;359;400;396;591;603;560;494;670;598;1109;1079;1285;1409;1208;3545;1737;1898;2071;3972;4300;450;1181;663;1868;3323;13500;17000;18000;20000;7064;6902;10642;5876;7252;6109;8598;9029;9029;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;45700;44400;47000;45000;47000;52000;52000;53000;58000;66700;72200;75600;85600;72200;51000;53000;44000;44000;44000;7400;7900;;;;;;0;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;10900;11900;14100;24600;20200;23482;22429;30221;36223;30642;34117;42962;50649;48300;39800;49500;43300;48300;59400;61600;49000;48000;47000;50600;57600;55000;76000;78000;93800;103000;101200;141831;120469;191681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1530;1696;1992;3072;3009;3360;3621;4378;5313;5510;5962;7234;10091;12206;10865;12682;12975;15019;19076;24161;19200;18800;15200;14796;15476;19154;26500;27000;34200;46000;47026;51463;36786;69337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;24500;27700;26100;21800;29300;27167;32854;32748;30221;35907;39488;40856;40646;35802;22008;40646;32854;10845;2500;10300;11000;17000;24200;17900;3100;5200;8000;25000;31300;29000;23000;13877;28006;43007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2231;2355;2408;2128;2884;2550;2768;2924;2967;3652;4056;5980;5735;6182;4419;6995;6116;2536;1169;6157;6600;10200;10405;7564;1625;2792;4300;13500;17000;16000;10218;8511;18022;38845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1879;Total fibre furnish;5510;Production;t;303500;321200;367000;376400;437000;457000;499000;539000;586000;628000;622000;725000;771000;813000;610000;741000;739000;704000;760500;740000;801000;772000;771000;858000;849000;827000;973000;1152000;1145000;1163000;1151000;1151000;996000;1064000;1064000;1068000;1068000;1932000;1931000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1879;Total fibre furnish;5610;Import quantity;t;19800;16800;18100;21600;19600;21700;19900;287500;323000;374100;366100;371200;438900;457500;338000;378300;377100;403800;486300;502500;477100;453700;470000;497200;494200;520000;553300;573100;598200;597600;577500;635445;541200;618600;621600;742300;774800;775200;1426000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1879;Total fibre furnish;5622;Import value;1000 USD;1255;948;1216;1971;1809;1759;1643;37521;44393;56453;62733;62666;78891;135986;129914;138080;132429;119036;164228;210116;205298;203309;166890;195341;167196;198882;278456;322061;378278;380905;338728;274559;190891;289077;454521;308953;280176;280212;383495;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;83800;100300;259200;258800;332000;416100;430800;279900;422600;417400;409900;419800;403300;423800;447500;457600;527400;543800;523400;600300;742900;738200;728100;738800;856674;706964;760384;905000;1044800;1208200;1512522;2331270;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;10603;14165;24011;24673;31961;49169;83351;46074;72298;68964;68430;90621;105448;92808;91991;75487;101923;90055;97591;139609;183903;204957;190352;178854;186860;79635;114053;241019;149135;142140;149477;312183;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1878;Pulp for paper;5510;Production;t;151500;157200;165000;171400;219000;226000;245000;287000;306000;311000;332000;376000;384000;387000;284000;336000;355000;325000;331500;350000;330000;315000;315000;332000;319000;304000;366000;447000;454000;478000;465000;465000;310000;378000;378000;382000;382000;432000;431000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1878;Pulp for paper;5610;Import quantity;t;19800;16800;18100;21600;19600;21700;19900;287500;323000;351100;352100;358200;416900;431500;315300;344800;340600;353600;381500;391700;391300;391300;407800;430600;408900;445700;480400;468400;496000;495000;474900;489306;447400;527100;501800;531100;533200;533200;748000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1878;Pulp for paper;5622;Import value;1000 USD;1255;948;1216;1971;1809;1759;1643;37521;44393;55346;62062;62027;77195;131959;127172;134250;128600;114762;156492;195946;198411;198411;161829;189508;159766;192461;271128;307168;362681;360299;318122;264177;185872;280848;434012;294084;268212;268212;344968;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;83800;100300;96200;95800;117000;164100;138900;68800;134100;137100;156200;152100;143400;138100;138100;140800;153500;153500;157100;180300;194900;197800;205100;215800;253035;116664;118484;142600;174600;186700;186700;454270;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;10603;14165;15800;17406;21820;31485;42478;28692;49778;45930;48556;60278;68562;66612;66612;50286;66071;53528;67021;100790;123575;142484;132275;120777;129179;43879;57903;113680;82757;87483;87483;206475;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1875;Wood pulp;5510;Production;t;151500;157200;165000;171400;219000;226000;245000;287000;306000;311000;332000;376000;384000;387000;284000;336000;355000;325000;331500;350000;330000;315000;315000;332000;319000;304000;366000;447000;454000;478000;465000;465000;310000;378000;378000;382000;382000;432000;431000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1875;Wood pulp;5610;Import quantity;t;58400;53000;50700;54400;50700;55400;53300;323600;357000;381700;372000;382000;439900;446300;320900;375000;363300;401400;427700;423000;422600;422600;432100;448100;431600;468000;509700;490500;518300;506900;477500;493746;451800;532100;512700;536300;535400;535400;754000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1875;Wood pulp;5622;Import value;1000 USD;7955;7165;7010;8292;8032;7776;7536;43841;50217;61773;66455;67028;82361;136532;129142;149047;139205;135856;180387;214472;216937;216937;173097;198214;170043;203180;288620;322347;380945;370619;320800;267690;188276;283730;445025;297473;267515;262199;348182;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1875;Wood pulp;5910;Export quantity;t;;;;;;;;83800;100300;96200;95300;116800;164000;138900;69200;134500;137000;156000;152000;143400;138100;138100;140700;153500;153600;157200;180900;195500;197800;205100;215800;252725;116264;118084;142800;175900;186500;186500;459920;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;10603;14165;15800;17346;21804;31475;42459;28802;50047;45886;48313;60084;68478;66528;66528;50110;65858;53517;67010;100965;123845;142484;132302;120804;129022;43747;57795;113665;83946;86678;86678;210459;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1654;Mechanical wood pulp (1961-2016);5510;Production;t;96500;99700;105000;109400;104000;121100;122000;145000;151000;165000;172000;177000;169000;164000;127000;150000;144000;133000;125000;140000;128000;117000;117000;116000;111000;121000;149000;224000;231000;260000;237000;238000;203000;210000;210000;173000;173000;207000;196000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;19800;16800;18100;17700;15000;19900;18700;33200;40100;42800;37300;43400;48200;54000;34100;47400;45700;56900;57400;58600;41400;41400;51200;56600;59300;53700;61800;33400;27900;20100;30600;40101;14700;16100;9400;4900;2900;2900;3000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1255;948;1216;1409;1215;1500;1488;2727;3346;4021;3604;4162;5580;11070;10518;12888;12332;14419;17644;21747;15400;15400;14741;16463;18129;18347;25651;14641;13236;10827;12000;20731;7468;8359;7165;1378;1016;1016;976;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;100;100;800;100;800;600;600;1300;1700;600;900;900;900;600;700;400;400;300;800;200;1500;1100;503;600;200;100;1300;1700;1700;4000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;16;5;75;10;201;142;116;371;382;121;369;369;369;200;202;144;218;252;381;147;735;735;203;202;87;122;496;675;675;1353;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;900;3100;3100;2700;1200;1200;1600;600;600;600;300;1500;7900;18700;13200;100;900;1300;1800;3030;3000;5700;5200;10400;7500;7500;22000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;109;536;779;479;233;233;697;357;357;357;92;469;2379;6286;5398;49;267;726;1000;1992;1707;3506;5026;6340;3938;3938;9463;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;64;2984;3000;2200;1000;1000;12000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;12;988;1000;949;314;314;4686;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1656;Chemical wood pulp;5510;Production;t;55000;57500;60000;62000;115000;104900;123000;142000;155000;146000;160000;199000;215000;223000;157000;186000;211000;192000;206500;210000;202000;198000;198000;216000;208000;183000;217000;223000;223000;218000;228000;227000;107000;168000;168000;209000;209000;225000;235000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;249900;277300;303500;311600;310200;365500;372400;276400;293400;293100;295300;322300;329200;346000;346000;355300;371700;341600;372100;404700;433500;463500;466700;435600;441403;426300;501800;483400;511600;517500;517500;719000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;34060;40199;50629;57808;56979;70765;118762;114511;120657;115870;100009;138050;171196;180008;180008;145971;171671;138683;166796;239386;290911;346103;343624;300000;237268;173238;265398;416748;280790;257245;257245;329898;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;83800;100300;96100;95200;116000;163900;138000;68100;133400;135700;154300;151300;142300;137000;137000;140000;152600;153000;156600;179900;194000;197500;203500;214600;251000;115500;114800;139100;170900;182100;182100;437920;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;10603;14165;15784;17341;21729;31465;42240;28517;49617;45515;47931;59914;67950;66000;66000;49843;65626;53343;66762;100497;123153;142296;131498;120000;128267;43497;56646;111749;80935;84050;84050;200007;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;11400;11500;12100;6900;17200;23300;20900;36200;37800;37100;25000;18900;22200;22200;22200;20600;16700;4300;9100;16700;8300;11800;12400;20000;28711;20400;18300;7100;9700;16100;16100;24000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;1351;1502;1914;1096;2535;3816;5526;14464;15452;14314;7682;7618;10994;10994;10994;7797;7069;1622;3377;9152;5350;7392;8195;12000;14695;8755;9842;5215;5626;7140;7140;9323;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;189;200;1100;200;400;100;100;21000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;100;104;71;391;130;200;62;62;7869;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;26700;79000;69200;89000;106000;115000;106000;125000;159000;169000;182000;128000;152000;182000;166000;188000;191000;184000;180000;180000;185000;178000;157000;186000;191000;191000;187000;197000;196000;92000;144000;144000;209000;209000;209000;235000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;150400;164800;196600;202500;181700;229400;249100;186700;173900;161100;175400;207400;198900;215700;215700;299700;313400;285800;314400;351000;325700;341700;369100;321600;318151;345700;407500;431600;456400;440300;440300;606000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;20345;23569;32141;36770;32917;44351;79417;76702;71057;62791;58711;87025;101788;110600;110600;121883;144171;114323;137775;206431;217307;254344;267704;234000;167191;134005;210416;369532;242399;216095;216095;274055;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;82100;97000;90300;90900;113600;161800;137000;66900;131600;133100;151400;149900;141300;136000;136000;139000;152400;152800;155900;179800;192900;196500;202400;213600;249456;113500;112300;138400;168300;177300;177300;392000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;10367;13688;14838;16561;21302;31063;41892;28052;48890;44543;46851;59415;67690;65740;65740;49583;65503;53242;66445;100471;122461;141534;130580;119200;127271;42623;55600;111141;78651;81906;81906;180395;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;35300;36000;23100;22000;23000;25000;19000;15000;15000;18000;11000;5000;5000;3000;2000;1000;1100;1000;1000;1000;2000;2000;2000;3000;3000;3000;3000;3000;3000;2000;4000;4000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;11800;14900;14900;18000;22700;30500;35900;5500;6300;5400;6500;6800;18100;18100;18100;4500;8400;10000;10000;3000;10700;10400;7600;13000;13225;1600;700;4500;1100;900;900;1000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1340;1970;2242;2770;3812;5535;10599;2021;2175;2233;2549;3033;9276;9276;9276;1991;3757;3954;5114;1866;6609;7265;4864;6000;6895;536;371;3288;592;416;416;722;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;1400;2100;3900;2600;400;500;600;300;700;600;200;100;;;;;;;;;;;;;149;1200;900;100;500;1900;1900;1920;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;193;290;606;458;70;85;199;120;265;221;75;21;;;;;;;;;;;;;85;443;318;141;676;693;693;721;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;12600;12000;13000;15000;21000;20000;25000;28000;30000;24000;29000;26000;24000;17500;17900;17000;17000;17000;29000;28000;24000;28000;29000;29000;28000;28000;28000;13000;20000;20000;0;0;16000;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;76300;86100;79900;84200;88600;82300;66500;48000;75400;89500;88400;89200;90000;90000;90000;30500;33200;41500;38600;34000;88800;99600;77600;81000;81316;58600;75300;40200;44400;60200;60200;88000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;11024;13158;14332;17172;17715;17063;23220;21324;31973;36532;31067;40374;49138;49138;49138;14300;16674;18784;20530;21937;61645;77102;62861;48000;48487;29942;44769;38713;32173;33594;33594;45798;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;300;1200;1900;1700;2000;1600;400;900;1100;2000;2700;1300;1000;1000;1000;1000;200;200;700;100;1100;1000;900;800;1206;600;500;400;1700;2800;2800;23000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;43;187;340;322;357;317;149;345;462;751;1005;478;260;260;260;260;123;101;317;26;692;762;774;700;807;360;337;337;1408;1389;1389;11022;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1667;Dissolving wood pulp;5610;Import quantity;t;38600;36200;32600;36700;35700;35500;34600;40500;39600;35400;23100;28400;25300;16800;7300;31500;23300;48000;46400;34600;34600;34600;25300;18300;22800;23500;30000;23500;26000;18800;9500;9212;7800;8500;14700;9400;7500;7500;10000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1667;Dissolving wood pulp;5622;Import value;1000 USD;6700;6217;5794;6883;6817;6276;6048;7054;6672;7123;5043;5887;5907;6164;3334;15023;10770;21195;23996;21172;21172;21172;12293;9611;10852;11751;18185;16746;21339;15442;7800;7699;5863;6467;16086;8965;5316;0;7845;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;100;500;500;0;0;100;200;200;200;100;200;200;200;700;700;100;100;100;183;100;100;600;1500;1700;1700;6000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;18;143;314;0;0;49;159;159;159;67;30;30;30;216;311;41;69;69;140;36;74;794;1566;1639;1639;4413;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3900;4600;1800;1200;4400;5600;4800;3200;4600;2300;2000;1700;1300;600;200;200;3300;3300;3300;1000;800;100;1200;700;1400;3700;6900;6900;4772;3400;3500;3800;4200;5300;5300;4000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;562;594;259;155;734;848;696;650;886;741;1591;1364;226;165;101;101;2646;2646;2646;1025;905;575;1032;693;1567;3075;5122;5122;4186;3459;3585;5073;5576;6013;6013;4631;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;500;200;100;100;100;100;100;200;200;200;200;200;200;200;100;100;100;100;100;100;100;493;500;500;400;200;1900;1900;350;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;60;16;10;37;33;45;44;243;243;243;243;243;243;243;41;41;41;41;41;42;42;297;168;182;809;377;2444;2444;429;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;951;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1669;Recovered paper;5510;Production;t;152000;164000;202000;205000;218000;231000;254000;252000;280000;317000;290000;349000;387000;426000;326000;405000;384000;379000;429000;390000;471000;457000;456000;526000;530000;523000;607000;705000;691000;685000;686000;686000;686000;686000;686000;686000;686000;1500000;1500000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;23000;14000;13000;22000;26000;22700;33500;36500;50200;104800;110800;85800;62400;62200;66600;85300;74300;72900;104700;102200;102600;102600;146139;93800;91500;119800;211200;241600;242000;678000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1107;671;639;1696;4027;2742;3830;3829;4274;7736;14170;6887;4898;5061;5833;7430;6421;7328;14893;15597;20606;20606;10382;5019;8229;20509;14869;11964;12000;38527;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;163000;163000;215000;252000;291900;211100;288500;280300;253700;267700;259900;285700;309400;316800;373900;390300;366300;420000;548000;540400;523000;523000;603639;590300;641900;762400;870200;1021500;1325822;1877000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;8211;7267;10141;17684;40873;17382;22520;23034;19874;30343;36886;26196;25379;25201;35852;36527;30570;38819;60328;62473;58077;58077;57681;35756;56150;127339;66378;54657;61994;105708;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1876;Paper and paperboard;5510;Production;t;435900;442600;468600;508500;515000;547800;566000;654000;723000;771000;771000;783000;833000;847000;676000;782000;743000;796000;864000;864000;886000;828000;840000;847000;843000;850000;1031000;1133000;1170000;1196000;1233000;1147000;1147000;1088000;1088000;1432000;1432000;1830529;1727000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1876;Paper and paperboard;5610;Import quantity;t;328100;345700;401100;437700;464000;489700;498500;545100;643600;642900;705400;795500;921400;985100;632000;850000;856200;945600;994900;974500;967500;1008000;1115900;1069300;1033800;1144300;1369200;1595200;1658700;1782000;1834000;1807842;1944900;2265200;2298900;2243400;2653800;1629200;3392550;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1876;Paper and paperboard;5622;Import value;1000 USD;59988;66495;75624;85250;91848;102085;101680;103902;123870;136392;157674;194169;258146;423862;277822;379627;410094;500584;630734;701764;697764;727800;628777;572422;590630;806724;1188787;1517004;1509603;1948780;1938920;1738669;1530967;1809408;2438256;2062848;2015988;1066740;2482190;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1876;Paper and paperboard;5910;Export quantity;t;129600;139400;141700;167300;176000;205300;243100;269400;332300;371500;367900;434700;461800;405800;321200;393600;398300;424000;457900;481000;486000;475000;486800;421900;328600;387100;530900;822600;880000;924000;886100;940071;899300;1163100;1358300;1361300;1747900;650490;2315000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1876;Paper and paperboard;5922;Export value;1000 USD;30026;36714;38478;48091;55134;66248;75625;78155;104904;122004;121307;150914;194065;224562;198339;213899;237362;271895;327876;385519;388359;382359;394291;301678;234509;304647;632621;992364;1022211;1187326;958500;1131958;783405;1031070;1606881;1388072;1418845;486501;2009002;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2042;Graphic papers;5510;Production;t;201400;203000;205000;213600;220000;248300;259000;336000;403000;447000;463000;472000;522000;535000;407000;491000;477000;500000;528000;538000;531000;516000;528000;535000;523000;550000;716000;817000;829000;835000;784000;785000;785000;732000;732000;1095000;1095000;1133422;1221000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2042;Graphic papers;5610;Import quantity;t;156900;163100;170300;194800;211200;224600;229700;246200;300300;318600;314200;351400;413200;448600;260900;350900;377800;431300;469500;463700;456700;466000;452100;544700;497200;566900;579500;817700;877000;949000;863000;961942;1093400;1274800;1315200;1163700;1522200;233500;1875000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2042;Graphic papers;5622;Import value;1000 USD;28743;29652;29233;37131;41017;45703;46303;50470;62450;68944;73839;92766;129085;211386;142383;182013;212291;275336;357483;386125;382125;392800;255229;320624;298743;450506;535524;855857;859201;1144596;1032920;949714;894042;1074441;1473979;1181334;1225696;133000;1403022;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2042;Graphic papers;5910;Export quantity;t;72000;72300;50000;71100;67100;94000;119100;168700;223800;263000;271600;320500;335700;271200;222300;277200;275800;283300;300400;319400;324400;313400;230800;284200;205900;313700;335900;592700;626400;667900;630000;657971;722000;959500;1099600;1069800;1374700;111600;1632000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2042;Graphic papers;5922;Export value;1000 USD;18084;17531;9588;18554;19047;27029;33242;45274;68531;82288;87562;108344;141120;142282;127834;147466;162311;191666;226414;267143;269983;263983;140408;164432;121914;238694;307945;636346;628074;783389;554000;621064;559797;776409;1237633;1032613;1078338;58873;1239364;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1671;Newsprint;5510;Production;t;99500;97000;97000;97600;89000;94100;87000;98000;80000;95000;113000;93000;97000;91000;77000;88000;83000;86000;99000;102000;108000;99000;111000;102000;109000;100000;112000;114000;113000;102000;106000;119000;119000;122000;122000;104000;104000;105000;124000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1671;Newsprint;5610;Import quantity;t;58600;66300;69500;68000;76800;79600;86700;88300;103200;110300;106800;109400;114000;146200;105400;111300;129100;135000;118000;126000;119000;114000;125200;141700;140100;153200;168500;180600;180500;184400;177000;172801;181400;190500;181100;204300;233500;233500;304000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1671;Newsprint;5622;Import value;1000 USD;8449;9852;10253;10018;11102;11761;12732;12750;14985;16826;17024;18860;22390;43936;42466;42784;55904;66015;62800;72200;68200;65400;51413;54978;56238;81242;104331;118454;109459;133305;127400;108278;95239;100652;130713;162924;133238;133000;159745;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1671;Newsprint;5910;Export quantity;t;19700;41300;38800;42900;32400;17300;30900;30000;14500;25600;28700;26500;26900;21400;20500;26600;22900;21000;28000;31000;36000;25000;33600;28900;27600;31600;40100;32000;34500;46200;30000;48334;77200;96400;40000;54600;111600;111600;114000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1671;Newsprint;5922;Export value;1000 USD;3028;6960;6462;7021;5335;2705;5134;4562;2107;3852;4438;4230;5099;6949;8520;10127;9633;10060;14168;16960;19800;13800;14833;11647;11987;16609;25131;21592;23283;35692;24000;29528;38233;48314;30658;40437;58873;58873;57800;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1674;Printing and writing papers;5510;Production;t;101900;106000;108000;116000;131000;154200;172000;238000;323000;352000;350000;379000;425000;444000;330000;403000;394000;414000;429000;436000;423000;417000;417000;433000;414000;450000;604000;703000;716000;733000;678000;666000;666000;610000;610000;991000;991000;1028422;1097000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1674;Printing and writing papers;5610;Import quantity;t;98300;96800;100800;126800;134400;145000;143000;157900;197100;208300;207400;242000;299200;302400;155500;239600;248700;296300;351500;337700;337700;352000;326900;403000;357100;413700;411000;637100;696500;764600;686000;789141;912000;1084300;1134100;959400;1288700;0;1571000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1674;Printing and writing papers;5622;Import value;1000 USD;20294;19800;18980;27113;29915;33942;33571;37720;47465;52118;56815;73906;106695;167450;99917;139229;156387;209321;294683;313925;313925;327400;203816;265646;242505;369264;431193;737403;749742;1011291;905520;841436;798803;973789;1343266;1018410;1092458;0;1243277;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1674;Printing and writing papers;5910;Export quantity;t;52300;31000;11200;28200;34700;76700;88200;138700;209300;237400;242900;294000;308800;249800;201800;250600;252900;262300;272400;288400;288400;288400;197200;255300;178300;282100;295800;560700;591900;621700;600000;609637;644800;863100;1059600;1015200;1263100;0;1518000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1674;Printing and writing papers;5922;Export value;1000 USD;15056;10571;3126;11533;13712;24324;28108;40712;66424;78436;83124;104114;136021;135333;119314;137339;152678;181606;212246;250183;250183;250183;125575;152785;109927;222085;282814;614754;604791;747697;530000;591536;521564;728095;1206975;992176;1019465;0;1181564;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68700;113000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224419;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211553;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68700;146000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;295000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;264890;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;119000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;97749;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891022;838000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;943000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;753968;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1085000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;872262;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1675;Other paper and paperboard;5510;Production;t;234500;239600;263600;294900;295000;299500;307000;318000;320000;324000;308000;311000;311000;312000;269000;291000;266000;296000;336000;326000;355000;312000;312000;312000;320000;300000;315000;316000;341000;361000;449000;362000;362000;356000;356000;337000;337000;697107;506000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1675;Other paper and paperboard;5610;Import quantity;t;171200;182600;230800;242900;252800;265100;268800;298900;343300;324300;391200;444100;508200;536500;371100;499100;478400;514300;525400;510800;510800;542000;663800;524600;536600;577400;789700;777500;781700;833000;971000;845900;851500;990400;983700;1079700;1131600;1395700;1517550;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1675;Other paper and paperboard;5622;Import value;1000 USD;31245;36843;46391;48119;50831;56382;55377;53432;61420;67448;83835;101403;129061;212476;135439;197614;197803;225248;273251;315639;315639;335000;373548;251798;291887;356218;653263;661147;650402;804184;906000;788955;636925;734967;964277;881514;790292;933740;1079168;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1675;Other paper and paperboard;5910;Export quantity;t;57600;67100;91700;96200;108900;111300;124000;100700;108500;108500;96300;114200;126100;134600;98900;116400;122500;140700;157500;161600;161600;161600;256000;137700;122700;73400;195000;229900;253600;256100;256100;282100;177300;203600;258700;291500;373200;538890;683000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1675;Other paper and paperboard;5922;Export value;1000 USD;11942;19183;28890;29537;36087;39219;42383;32881;36373;39716;33745;42570;52945;82280;70505;66433;75051;80229;101462;118376;118376;118376;253883;137246;112595;65953;324676;356018;394137;403937;404500;510894;223608;254661;369248;355459;340507;427628;769638;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1676;Household and sanitary papers;5510;Production;t;;;;;;;32000;39000;41000;48000;50000;50000;44000;56000;50000;53000;60000;75000;90000;87000;95000;83000;83000;83000;85000;80000;84000;84000;91000;96000;119000;96000;96000;118000;118000;82000;82000;82000;93000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1676;Household and sanitary papers;5610;Import quantity;t;3500;3700;4600;4900;5100;5300;5400;5500;3900;4500;6100;7000;8400;11100;8500;14400;14300;12900;18000;20000;20000;21000;26000;11400;12500;13800;18000;69600;62500;58100;54000;30000;16500;29000;30500;32000;28200;28200;35000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1676;Household and sanitary papers;5622;Import value;1000 USD;1875;2200;2783;2887;3050;3383;3323;3167;2066;3268;4099;4869;5198;8387;8019;11040;12968;13852;20341;28131;28131;29800;37000;10160;7864;15593;25920;106871;102306;113079;100000;33000;22598;33262;46615;46000;35066;35066;52851;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1676;Household and sanitary papers;5910;Export quantity;t;3400;4000;5500;5800;6500;6700;7400;6500;9200;4100;2300;2300;7000;7600;8000;7100;10500;19200;21700;23500;23500;23500;36000;12500;10900;17000;16300;85700;94100;94200;94200;50000;29000;26500;28100;31000;14300;14300;47000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1676;Household and sanitary papers;5922;Export value;1000 USD;717;1151;1733;1772;2165;2353;2543;1919;2756;1414;1050;1606;4842;6911;7950;4669;6700;13463;18764;26401;26401;26401;44000;8175;7212;15818;17745;176226;193759;168756;168756;60000;30558;29649;46145;46000;19347;19347;107598;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491878;349000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1299500;1316550;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832980;834744;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514390;519000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398417;412181;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;207000;216000;228000;225000;202000;208000;185000;217000;174000;184000;159000;168000;198000;192000;209000;184000;184000;184000;189000;177000;186000;187000;202000;214000;266000;214000;214000;202000;202000;216000;216000;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;147200;157000;198500;209000;217400;228000;231100;257500;278700;261100;319900;376700;433600;453900;298700;411500;398000;442100;438500;426600;426600;452600;554300;444100;425300;486300;474500;488900;483900;502300;542000;715900;748000;866600;921300;1012700;1035400;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;24371;28748;36185;37533;39648;43978;43194;41847;44197;46814;57831;73983;96357;163783;119730;143435;139964;163956;195426;223350;223350;237100;290000;178901;173307;244465;254714;317203;306780;363919;400000;635955;520960;614240;881855;799514;689532;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;31700;36900;50400;52900;59900;61200;68200;55400;55000;52600;49200;57400;73000;93400;68700;90600;91800;106000;121000;125300;125300;125300;198000;66000;57400;44800;21400;61900;69400;64700;64700;222100;142300;167400;227300;257000;348700;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;5732;9208;13867;14178;17322;18825;20344;15905;14792;15702;15974;19819;26683;44930;37814;41431;40864;44331;59973;71202;71202;71202;173883;37007;31000;31750;19198;41345;55940;64865;64865;438894;184596;215296;317520;304459;311296;;;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331194;263000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;627600;627000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242542;242468;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261390;262000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90782;90914;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83566;0;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306200;319550;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368450;368375;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164300;166000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215990;227781;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74078;10000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187400;192000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152003;153890;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83200;85000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84599;86439;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3040;76000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178300;178000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69985;70011;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;6000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7046;7047;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;68000;63000;51000;51000;56000;53000;82000;39000;45000;54000;47000;53000;48000;47000;51000;45000;45000;45000;46000;43000;45000;45000;48000;51000;64000;52000;52000;36000;36000;39000;39000;123229;64000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;20500;21900;27700;29000;30300;31800;32300;35900;60700;58700;65200;60400;66200;71500;63900;73200;66100;59300;68900;64200;64200;68400;83500;69100;98800;77300;297200;219000;235300;272600;375000;100000;87000;94800;31900;35000;68000;68000;166000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;4999;5895;7423;7699;8133;9021;8860;8418;15157;17366;21905;22551;27506;40306;7690;43139;44871;47440;57484;64158;64158;68100;46548;62737;110716;96160;372629;237073;241316;327186;406000;120000;93367;87465;35807;36000;65694;65694;191573;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;22500;26200;35800;37500;42500;43400;48400;38800;44300;51800;44800;54500;46100;33600;22200;18700;20200;15500;14800;12800;12800;12800;22000;59200;54400;11600;157300;82300;90100;97200;97200;10000;6000;9700;3300;3500;10200;10200;117000;;;;;;;;;;;;;;;;;;;;;;;;
-15;'058;Belgium-Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;5493;8824;13290;13587;16600;18041;19496;15057;18825;22600;16721;21145;21420;30439;24741;20333;27487;22435;22725;20773;20773;20773;36000;92064;74383;18385;287733;138447;144438;170316;170879;12000;8454;9716;5583;5000;9864;9864;249859;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32454;30165;33897;28072;36719.16;48077.09;43569
-23;'084;Belize;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9342;7267;7748;6146;36913;9335.49;7170.49
-23;'084;Belize;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;219;220;254;264;181;190;345;967;461;637;740;761;758;1036;1162;1739;1630;1905;1505;2947;1735;3157;2441;2431;2532;3241;3029;2154;2751;4999;3065;4447;3645;3071;3892;3261;3261;4166;4005;12603;5112;2816;4745;5106;5106;6868;9266;9442;8108;8747;8522;9104;10692;12055;12777;13991;15210;14689;17427;10638;18107.16;23352.09;22866
-23;'084;Belize;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2895;1597;2464;3315;2145;2130;1002;904;902;1103;913;836;1194;2523;2515;1145;1155;969;1915;1737;1384;1707;1408;1061;545;662;2445;1210;2183;1069;2965;3140;753;5066;2340;1529;1529;3153;3465;5691;3816;2259;4063;3285;3285;4204;3858;15006;9678;9032;11694;8080;4284;7701;9573;7782;4950;4110;3279;2613;31435;3320.49;2881.49
-23;'084;Belize;1861;Roundwood;5516;Production;m3;121300;121800;116400;107900;113100;98700;125000;112300;98600;106500;105500;105200;114100;113800;115000;106900;102300;109400;118000;122900;117400;121500;143400;164500;166700;158100;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;187600;155000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000;167000
-23;'084;Belize;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778;68;105;105;154;0;0;0;67;128;519;700;643;9089;3476;3476;1824;3776;3608;902;1523;9152;389;175;1734;842;291;823;3295;16113;1177;4690;4874;6006
-23;'084;Belize;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;10;10;10;0;0;0;7;13;75;70;264;752;409;409;117;231;676;511;225;805;95;64;227;195;62;230;985;4078;567;1847;2154;2481
-23;'084;Belize;1861;Roundwood;5916;Export quantity;m3;2400;1200;1200;2400;1300;3200;300;600;900;1600;800;400;600;600;900;1600;1500;800;3200;6700;1000;900;600;300;300;6200;7500;6000;1800;;;;;0;0;0;0;0;0;0;0;0;10;475;475;230;66;2080;2126;1607;3508;1975;595;2050;6304;2415;656;312;180;77;6000;318;97
-23;'084;Belize;1861;Roundwood;5922;Export value;1000 USD;130;31;50;84;38;39;14;38;41;53;25;17;78;71;63;160;170;109;521;562;194;73;67;73;101;485;332;400;1114;;;;;0;0;0;0;0;0;0;0;0;7;33;33;18;10;76;100;621;2937;926;295;694;1855;708;368;112;129;120;28500;127;101
-23;'084;Belize;1862;Roundwood, coniferous;5516;Production;m3;25500;41600;37400;30200;32800;14800;19000;12500;13000;11800;10800;3400;3700;2100;4700;2800;4300;2900;4000;2200;4000;5900;8900;10200;11200;12700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-23;'084;Belize;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;2487;14715;724;2987;3539;5941
-23;'084;Belize;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;543;3400;197;1021;1409;2450
-23;'084;Belize;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;0;0;0;3
-23;'084;Belize;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;2
-23;'084;Belize;1863;Roundwood, non-coniferous;5516;Production;m3;95800;80200;79000;77700;80300;83900;106000;99800;85600;94700;94700;101800;110400;111700;110300;104100;98000;106500;114000;120700;113400;115600;134500;154300;155500;145400;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;169900;151000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000;159000
-23;'084;Belize;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;808;1398;453;1703;1335;65
-23;'084;Belize;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;442;678;370;826;745;31
-23;'084;Belize;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656;312;174;77;6000;318;94
-23;'084;Belize;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;112;128;120;28500;127;99
-23;'084;Belize;1864;Wood fuel;5516;Production;m3;39000;39000;40000;45000;50000;55000;60000;60000;65000;65000;65000;70000;66000;68000;70000;72000;74000;77000;79000;79000;79000;79000;110000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000
-23;'084;Belize;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;79;42;42;42;25;1;1;;;;;;;0
-23;'084;Belize;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;2;2;2;4;3;3;;;;;;;0
-23;'084;Belize;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-23;'084;Belize;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-23;'084;Belize;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-23;'084;Belize;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1628;Wood fuel, non-coniferous;5516;Production;m3;39000;39000;40000;45000;50000;55000;60000;60000;65000;65000;65000;70000;66000;68000;70000;72000;74000;77000;79000;79000;79000;79000;110000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000;126000
-23;'084;Belize;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-23;'084;Belize;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-23;'084;Belize;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;79;42;42;42;25;1;1;;;;;;;
-23;'084;Belize;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;2;2;2;4;3;3;;;;;;;
-23;'084;Belize;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-23;'084;Belize;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-23;'084;Belize;1865;Industrial roundwood;5516;Production;m3;82300;82800;76400;62900;63100;43700;65000;52300;33600;41500;40500;35200;48100;45800;45000;34900;28300;32400;39000;43900;38400;42500;33400;38500;40700;32100;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;29000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-23;'084;Belize;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778;68;105;105;154;0;0;0;67;128;519;700;643;9089;3476;3476;1824;3776;3529;823;1444;9110;347;133;1709;841;290;823;3295;16113;1177;4690;4874;6006
-23;'084;Belize;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;10;10;10;0;0;0;7;13;75;70;264;752;409;409;117;231;668;503;217;803;93;62;223;192;59;230;985;4078;567;1847;2154;2481
-23;'084;Belize;1865;Industrial roundwood;5916;Export quantity;m3;2400;1200;1200;2400;1300;3200;300;600;900;1600;800;400;600;600;900;1600;1500;800;3200;6700;1000;900;600;300;300;6200;7500;6000;1800;;;;;;;;;;;;;;10;475;475;230;66;2080;2126;1607;3508;1975;595;2050;6304;2415;656;312;180;77;6000;318;97
-23;'084;Belize;1865;Industrial roundwood;5922;Export value;1000 USD;130;31;50;84;38;39;14;38;41;53;25;17;78;71;63;160;170;109;521;562;194;73;67;73;101;485;332;400;1114;;;;;;;;;;;;;;7;33;33;18;10;76;100;621;2937;926;295;694;1855;708;368;112;129;120;28500;127;101
-23;'084;Belize;1866;Industrial roundwood, coniferous;5516;Production;m3;25500;41600;37400;30200;32800;14800;19000;12500;13000;11800;10800;3400;3700;2100;4700;2800;4300;2900;4000;2200;4000;5900;8900;10200;11200;12700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-23;'084;Belize;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778;68;105;105;154;0;0;0;67;67;458;500;220;8666;3053;3053;1786;3770;3314;608;1348;9014;251;37;1613;441;127;328;2487;14715;724;2987;3539;5941
-23;'084;Belize;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;10;10;10;0;0;0;7;7;69;42;41;529;186;186;109;230;202;37;155;741;31;0;161;46;12;24;543;3400;197;1021;1409;2450
-23;'084;Belize;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;168;4;3;39;0;39;113;0;0;123;95;0;0;6;0;0;0;3
-23;'084;Belize;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;1;3;21;0;21;6;0;0;11;7;0;0;1;0;0;0;2
-23;'084;Belize;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778;68;105;105;154;0;0;0;67;67;458;500;220;8666;3053;3053;1786;3770;3314;608;1348;9014;251;37;1613;441;127;328;2487;14715;724;2987;3539;5941
-23;'084;Belize;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;10;10;10;0;0;0;7;7;69;42;41;529;186;186;109;230;202;37;155;741;31;0;161;46;12;24;543;3400;197;1021;1409;2450
-23;'084;Belize;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;168;4;3;39;0;39;113;0;0;123;95;0;0;6;0;0;0;3
-23;'084;Belize;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;1;3;21;0;21;6;0;0;11;7;0;0;1;0;0;0;2
-23;'084;Belize;1867;Industrial roundwood, non-coniferous;5516;Production;m3;56800;41200;39000;32700;30300;28900;46000;39800;20600;29700;29700;31800;44400;43700;40300;32100;24000;29500;35000;41700;34400;36600;24500;28300;29500;19400;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;25000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000
-23;'084;Belize;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;61;61;200;423;423;423;423;38;6;215;215;96;96;96;96;96;400;163;495;808;1398;453;1703;1335;65
-23;'084;Belize;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;6;28;223;223;223;223;8;1;466;466;62;62;62;62;62;146;47;206;442;678;370;826;745;31
-23;'084;Belize;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;307;307;62;62;2077;2087;1607;3469;1862;595;2050;6181;2320;656;312;174;77;6000;318;94
-23;'084;Belize;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;24;24;9;9;73;79;621;2916;920;295;694;1844;701;368;112;128;120;28500;127;99
-23;'084;Belize;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;163;104;66;207;35;37;124;30
-23;'084;Belize;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;47;44;21;102;29;20;72;15
-23;'084;Belize;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;15;25;43;27;152;152;379;6181;2320;656;312;174;32;6000;318;94
-23;'084;Belize;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;18;24;25;19;94;94;287;1844;701;368;112;128;50;28500;127;99
-23;'084;Belize;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;61;61;200;423;423;423;423;38;6;215;215;96;96;96;96;96;382;0;391;742;1191;418;1666;1211;35
-23;'084;Belize;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;6;28;223;223;223;223;8;1;466;466;62;62;62;62;62;133;0;162;421;576;341;806;673;16
-23;'084;Belize;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;246;246;1;1;2062;2062;1564;3442;1710;443;1671;0;0;0;0;0;45;0;0;0
-23;'084;Belize;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;15;15;0;0;55;55;596;2897;826;201;407;0;0;0;0;0;70;0;0;0
-23;'084;Belize;1868;Sawlogs and veneer logs;5516;Production;m3;82300;82800;76400;62900;63100;43700;65000;52300;33600;41500;40500;35200;48100;45800;45000;34900;28300;32400;39000;43900;38400;42500;33400;38500;40700;32100;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;61600;29000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-23;'084;Belize;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2400;1200;1200;2400;1300;3200;300;600;900;1600;800;400;600;600;900;1600;1500;800;3200;6700;1000;900;600;300;300;6200;7500;6000;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;130;31;50;84;38;39;14;38;41;53;25;17;78;71;63;160;170;109;521;562;194;73;67;73;101;485;332;400;1114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;25500;41600;37400;30200;32800;14800;19000;12500;13000;11800;10800;3400;3700;2100;4700;2800;4300;2900;4000;2200;4000;5900;8900;10200;11200;12700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;17700;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-23;'084;Belize;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;56800;41200;39000;32700;30300;28900;46000;39800;20600;29700;29700;31800;44400;43700;40300;32100;24000;29500;35000;41700;34400;36600;24500;28300;29500;19400;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;43900;25000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000
-23;'084;Belize;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2400;1200;1200;2400;1300;3200;300;600;900;1600;800;400;600;600;900;1600;1500;800;3200;6700;1000;900;600;300;300;6200;7500;6000;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;130;31;50;84;38;39;14;38;41;53;25;17;78;71;63;160;170;109;521;562;194;73;67;73;101;485;332;400;1114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1630;Wood charcoal;5510;Production;t;462;461;459;458;457;455;454;453;451;450;454;451;448;438;442;450;450;447;448;437;445;461;481;493;507;517;514;511;509;509;518;471;530;528;541;560;570;582;591;616;627;638;649;660;672;682;692;700;713;724;724;741;750;759;768;779;779;801;812;823;834;845;856
-23;'084;Belize;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;15;15;15;15;15;15;15;15;15;15;15;15;15;2;96;96;3;15;2;3;3;2;23;7;10;3;4;12;4;15
-23;'084;Belize;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;5;5;5;5;5;5;5;5;5;5;5;5;5;4;33;33;5;4;4;3;4;3;28;6;8;4;4;8;7;7
-23;'084;Belize;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;21;21;21;21;21;17;20;20;20;20;0;0;46;0;11
-23;'084;Belize;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;2;2;2;10;2;2;2;2;0;0;11;0;3
-23;'084;Belize;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;357;357;84;84;32;32;32;32;4;41;68;46;169;127;127;374;374;129;129;129;5;3;3;1.04;0
-23;'084;Belize;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;16;16;3;3;2;2;2;2;6;57;68;9;13;6;6;48;48;13;13;13;28;13;37;8.09;1
-23;'084;Belize;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;953;4279;4279;4279;4279;665;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099
-23;'084;Belize;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;116;171;171;171;171;181;220;220;220;220;220;220;220;220;220;220;220;220;220;220;220
-23;'084;Belize;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;273;273;273;273;273;0;0;3;3;3;3;3;3;30;3;126;126;126;126;126;126;126;126;2;2;3;1;0
-23;'084;Belize;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;0;0;1;1;1;1;1;5;16;1;5;5;5;5;5;5;5;5;20;13;37;8;1
-23;'084;Belize;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;29;29;29;29;1;38;38;43;43;1;1;248;248;3;3;3;3;1;0;0.04;0
-23;'084;Belize;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;1;1;1;5;52;52;8;8;1;1;43;43;8;8;8;8;0;0;0.09;0
-23;'084;Belize;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550;1550;0;0;0;0;0;0;0;953;4279;4279;4279;4279;665;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099;1099
-23;'084;Belize;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;0;0;0;0;116;171;171;171;171;181;220;220;220;220;220;220;220;220;220;220;220;220;220;220;220
-23;'084;Belize;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2
-23;'084;Belize;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;4;5;5
-23;'084;Belize;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111
-23;'084;Belize;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19
-23;'084;Belize;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2
-23;'084;Belize;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;3;5
-23;'084;Belize;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111
-23;'084;Belize;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19
-23;'084;Belize;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-23;'084;Belize;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;2;0
-23;'084;Belize;1872;Sawnwood;5516;Production;m3;50000;39000;41000;30000;32000;26000;23000;32000;17000;21000;18000;18000;25000;18000;16000;20000;16000;16500;18000;21000;19000;20500;16000;19000;22000;14300;14300;14300;14300;14300;14300;14300;14300;20300;35300;35300;35300;35300;35300;35300;35300;35300;35300;35300;35300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300
-23;'084;Belize;1872;Sawnwood;5616;Import quantity;m3;;;;;1800;1800;200;1200;400;100;100;100;1600;1600;1600;1600;1600;700;200;1100;1700;500;100;300;300;300;300;300;300;300;300;3779;719;844;799;799;799;710;215;15283;600;2748;501;1732;1732;8610;3452;6687;1643;6047;7045;5615;10077;15638;16452;25853;25664;19624;26192;24207;34917;17271;58734
-23;'084;Belize;1872;Sawnwood;5622;Import value;1000 USD;;;;;14;10;10;210;118;34;5;5;46;46;46;46;46;67;22;157;296;88;14;48;48;48;48;48;48;48;48;365;311;170;211;211;211;162;83;3140;104;309;102;333;333;1102;2018;2082;794;1665;2201;2134;2862;3776;4482;6776;6783;5387;6893;4018;8427;9530;12559
-23;'084;Belize;1872;Sawnwood;5916;Export quantity;m3;21600;15700;21100;26300;17400;14100;8600;8000;8800;9200;6700;7000;11000;10600;10600;4500;4500;3800;5500;4500;3500;4800;4100;2700;1600;800;6400;2300;3800;3800;8300;11070;2641;10431;4600;3700;3700;5456;7067;8159;3900;3116;2843;5373;5373;1929;376;1493;757;3635;4599;6042;3087;4344;3651;3277;4389;2518;3199;1606;2269;2308;1508
-23;'084;Belize;1872;Sawnwood;5922;Export value;1000 USD;2765;1566;2414;3231;2107;2091;988;866;861;1050;888;819;1116;2452;2452;985;985;860;1394;1175;1190;1634;1341;988;444;177;2113;810;1069;1069;2965;3138;671;3767;1926;1363;1363;2479;2295;2935;1643;1041;2632;1609;1609;1542;1632;2014;1154;3337;3916;4902;2884;2971;3734;3342;3470;2166;1873;1289;1866;2089;1701
-23;'084;Belize;1632;Sawnwood, coniferous;5516;Production;m3;24000;18000;20000;10000;17000;8000;10000;14000;6000;6000;3000;2000;2000;1000;1000;1000;1000;1500;2000;1000;2000;2500;4000;5000;6000;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300
-23;'084;Belize;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;1800;1800;200;1200;400;100;100;100;1600;1600;1600;1600;1600;700;200;1100;1700;500;100;300;300;300;300;300;300;300;300;421;560;838;710;710;710;508;69;15084;500;2579;365;1493;1493;8578;2769;5467;1547;5668;7024;5483;9960;15608;16307;25429;24904;19539;26068;24127;34648;16532;57751
-23;'084;Belize;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;14;10;10;210;118;34;5;5;46;46;46;46;46;67;22;157;296;88;14;48;48;48;48;48;48;48;48;90;240;169;174;174;174;78;25;3065;58;278;55;260;260;1063;1497;1458;742;1495;1966;1692;2804;3771;4448;6415;6197;5305;6782;3969;8147;8658;11784
-23;'084;Belize;1632;Sawnwood, coniferous;5916;Export quantity;m3;5500;1700;3400;7100;3800;4000;400;100;;;;;;;;;;;;;;;;;;;;;;;;1025;2246;45;100;100;100;205;167;115;200;133;396;174;174;184;22;174;174;231;46;161;119;312;24;172;97;436;427;171;260;188;187
-23;'084;Belize;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1265;391;782;1633;874;920;92;23;;;;;;;;;;;;;;;;;;;;;;;;200;462;15;26;23;23;67;20;35;43;28;173;29;29;48;27;279;279;102;39;36;57;164;31;36;22;113;100;119;90;66;115
-23;'084;Belize;1633;Sawnwood, non-coniferous;5516;Production;m3;26000;21000;21000;20000;15000;18000;13000;18000;11000;15000;15000;16000;23000;17000;15000;19000;15000;15000;16000;20000;17000;18000;12000;14000;16000;9000;9000;9000;9000;9000;9000;9000;9000;15000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-23;'084;Belize;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3358;159;6;89;89;89;202;146;199;100;169;136;239;239;32;683;1220;96;379;21;132;117;30;145;424;760;85;124;80;269;739;983
-23;'084;Belize;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;71;1;37;37;37;84;58;75;46;31;47;73;73;39;521;624;52;170;235;442;58;5;34;361;586;82;111;49;280;872;775
-23;'084;Belize;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;16100;14000;17700;19200;13600;10100;8200;7900;8800;9200;6700;7000;11000;10600;10600;4500;4500;3800;5500;4500;3500;4800;4100;2700;1600;800;6400;2300;3800;3800;8300;10045;395;10386;4500;3600;3600;5251;6900;8044;3700;2983;2447;5199;5199;1745;354;1319;583;3404;4553;5881;2968;4032;3627;3105;4292;2082;2772;1435;2009;2120;1321
-23;'084;Belize;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1500;1175;1632;1598;1233;1171;896;843;861;1050;888;819;1116;2452;2452;985;985;860;1394;1175;1190;1634;1341;988;444;177;2113;810;1069;1069;2965;2938;209;3752;1900;1340;1340;2412;2275;2900;1600;1013;2459;1580;1580;1494;1605;1735;875;3235;3877;4866;2827;2807;3703;3306;3448;2053;1773;1170;1776;2023;1586
-23;'084;Belize;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000
-23;'084;Belize;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;114;114;24;24;24;89;89;89;89;89;89;11;11;9;9;65;7;7;335;335;12;10;54;40;6;2;13;0;4;0;4
-23;'084;Belize;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;44;44;26;26;26;90;90;90;90;90;90;9;9;19;19;24;41;173;843;608;330;188;41;22;6;6;15;0;14;19;15
-23;'084;Belize;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;370;67;682;682;682;395;1048;1048;485;343;343;343;343;343;343;55;21;1;210;103;27;0;0;0;6;4
-23;'084;Belize;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;168;26;129;129;129;129;826;826;1046;714;714;714;1;0;102;151;1;11;44;23;58;0;0;0;21;13
-23;'084;Belize;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-23;'084;Belize;1873;Wood-based panels;5616;Import quantity;m3;6200;6200;6500;6500;700;837;627;832;416;837;837;837;948;1048;3048;3048;4348;3800;3300;1600;1700;1700;1800;1900;3700;2600;5700;2500;2900;9780;5000;7545;3509;4890;3521;3226;3226;3773;4149;19020;6161;2623;2393;3455;3455;4217;4980;7663;2606;3023;2696;3002;5351;6083;13170;11034;8470;13109;10831;13434;13882.46;11781;15710
-23;'084;Belize;1873;Wood-based panels;5622;Import value;1000 USD;118;118;148;148;97;106;94;163;80;127;158;141;130;221;247;249;319;422;293;471;445;438;414;537;403;702;706;726;721;2804;1416;1650;1750;1224;1550;1355;1355;1547;1565;6426;2068;424;1544;697;697;2250;3043;2611;1795;1686;1400;2170;3323;4060;5128;4381;3687;4858;3434;2798;4090;6838;4074
-23;'084;Belize;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1666;628;226;226;64;95;2807;2305;85;71;102;102;363;570;801;316;186;174;176;168;2978;2173;2048;346;620;806;521;249;569;586
-23;'084;Belize;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1189;304;86;86;55;78;1248;1432;66;30;33;33;136;360;400;340;190;216;170;200;2438;2405;2321;227;393;494;338;198;264;264
-23;'084;Belize;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-23;'084;Belize;1640;Plywood and LVL;5616;Import quantity;m3;6200;6200;6200;6200;200;100;100;200;100;100;100;100;;100;2100;2100;3400;2900;2900;1100;1300;1300;1400;1400;3400;2100;4900;2000;2000;2000;4400;6775;3141;4650;3294;3000;3000;3498;2807;18512;4000;3;1623;563;563;3827;3408;5677;1015;2027;1918;2446;3318;2984;8842;3669;4528;5570;5135;10050;10785;9106;10799
-23;'084;Belize;1640;Plywood and LVL;5622;Import value;1000 USD;118;118;118;118;28;17;32;92;30;30;39;32;;91;117;119;189;107;107;178;200;193;192;237;227;399;413;500;400;400;1263;1428;1663;1152;1497;1309;1309;1482;1438;6324;1917;73;846;200;200;2124;2192;1890;1228;1023;1080;1676;2037;2140;3469;2185;2579;2834;2340;2124;3271;4931;2864
-23;'084;Belize;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1666;602;200;200;63;94;2802;2300;43;44;75;75;179;386;54;119;33;20;0;53;966;161;36;0;54;240;101;219;199;216
-23;'084;Belize;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1189;301;83;83;55;78;1246;1430;58;22;25;25;112;336;68;156;33;58;0;57;135;102;18;0;25;126;80;184;56;56
-23;'084;Belize;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;55;77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;12;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;38;603;24;24;483;483;195;195;19;134;10;1;134;37;2;5;0;355;198;15;15;73;5;8;284;188
-23;'084;Belize;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;7;10;3;3;203;203;32;32;9;31;6;1;53;13;4;5;0;275;262;43;43;31;10;14;275;59
-23;'084;Belize;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;1;1;5;5;22;7;7;7;99;99;590;40;40;40;40;40;40;40;40;0;0;0;0;0;0;0
-23;'084;Belize;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;2;2;2;2;2;2;5;5;244;96;96;96;96;96;96;96;96;0;0;0;0;0;0;0
-23;'084;Belize;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;225;41;55;17;229;479;564;1304;680;907;983;3307;1050;16;1260;414
-23;'084;Belize;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;66;21;67;11;217;427;312;457;304;393;362;566;192;7;869;95
-23;'084;Belize;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29
-23;'084;Belize;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14
-23;'084;Belize;1874;Fibreboard;5616;Import quantity;m3;;;300;300;500;737;527;632;316;737;737;737;948;948;948;948;948;900;400;500;400;400;400;500;300;500;800;500;900;7780;600;572;313;163;161;160;160;237;739;484;2137;2137;287;2697;2697;371;1412;1751;1549;807;724;325;1549;2535;2669;6487;3020;6541;2316;2329;3073.46;1131;4309
-23;'084;Belize;1874;Fibreboard;5622;Import value;1000 USD;;;30;30;69;89;62;71;50;97;119;109;130;130;130;130;130;315;186;293;245;245;222;300;176;303;293;226;321;2404;153;152;75;44;44;37;37;58;117;99;148;148;495;465;465;117;798;649;545;543;296;273;854;1608;927;1630;672;1619;497;472;798;763;1056
-23;'084;Belize;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;20;20;20;20;85;85;157;157;113;114;136;75;1972;1972;1972;346;537;537;391;1;341;341
-23;'084;Belize;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6;6;6;6;19;19;88;88;61;62;74;47;2207;2207;2207;227;354;354;244;0;194;194
-23;'084;Belize;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;160;160;229;731;440;400;400;244;26;26;93;332;581;684;381;623;140;703;702;844;1222;121;1276;114;110;477;105;675
-23;'084;Belize;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;37;37;58;117;92;79;79;459;12;12;56;209;248;268;251;235;118;501;309;349;425;43;476;57;43;180;101;263
-23;'084;Belize;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;0;1;44;34;124;124;124;124;124;124;1;1;135;135
-23;'084;Belize;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;0;1;24;15;93;93;93;93;93;93;0;0;83;83
-23;'084;Belize;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;42;2579;2579;54;305;378;73;391;66;180;831;1819;1756;5243;2702;5051;2200;2217;2594.46;938;3242
-23;'084;Belize;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;35;441;441;18;192;148;24;265;34;148;326;1281;530;1194;568;1102;439;428;618;637;758
-23;'084;Belize;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;69;69;69;69;69;18;1825;1825;1825;199;390;390;390;0;206;206
-23;'084;Belize;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;33;33;33;33;33;15;2097;2097;2097;117;244;244;244;0;111;111
-23;'084;Belize;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;7;1700;1700;1;92;92;224;775;792;792;35;35;5;15;14;69;22;197;214;2;2;2;88;392
-23;'084;Belize;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;63;63;1;12;12;43;397;253;253;27;27;7;27;18;48;11;61;41;1;1;0;25;35
-23;'084;Belize;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;65;65;44;44;44;44;23;23;23;23;23;23;23;23;0;0;0;0
-23;'084;Belize;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;13;13;28;28;28;28;17;17;17;17;17;17;17;17;0;0;0;0
-23;'084;Belize;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;300;300;500;737;527;632;316;737;737;737;948;948;948;948;948;900;400;500;400;400;400;500;300;500;800;500;900;7780;600;572;313;163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;30;30;69;89;62;71;50;97;119;109;130;130;130;130;130;315;186;293;245;245;222;300;176;303;293;226;321;2404;153;152;75;44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;500;400;300;300;300;300;300;300;300
-23;'084;Belize;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;15;15;34;34;34;2045;2045;2045;2045;2045;2113;2434;2434;2631;2065;2201;2914;2223;2255;2457;1999;1059;2408;3166;3142;2450;2356;4426;3450;2735;5900
-23;'084;Belize;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;6;6;19;19;19;646;646;646;646;646;671;690;690;806;658;688;738;689;700;722;642;513;795;865;897;846;700;1097;1018;2481;1903
-23;'084;Belize;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;456;2029;1871;607;1537;1946;804;804;1010;268;581;496;540;406;2461;387;955;1404;1247;392;1679;567;467;340.83;289;289
-23;'084;Belize;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;191;986;1079;312;681;866;330;330;482;163;298;266;256;195;667;226;616;718;624;175;727;206;206;204;208;208
-23;'084;Belize;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;316;2339;3135;3100;2375;1923;3824;2641.49;2401;4826
-23;'084;Belize;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;230;764;854;879;829;613;1005;889;2333;1760
-23;'084;Belize;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;314;1887;1868;604;1534;1943;793;793;1005;209;198;98;98;98;98;98;868;868;868;118;818;185;185;185;185;185
-23;'084;Belize;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;166;961;1079;312;681;866;329;329;480;122;176;126;126;126;126;126;600;600;600;138;693;192;192;192;192;192
-23;'084;Belize;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;316;2339;3135;3100;2375;1923;3824;2641.49;2401;4826
-23;'084;Belize;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;230;764;854;879;829;613;1005;889;2333;1760
-23;'084;Belize;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;314;1887;1868;604;1534;1943;793;793;1005;209;104;4;4;4;4;4;774;774;774;24;724;91;91;91;91;91
-23;'084;Belize;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;166;961;1079;312;681;866;329;329;480;122;53;3;3;3;3;3;477;477;477;15;570;69;69;69;69;69
-23;'084;Belize;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;316;2339;3135;3100;2375;1923;3824;2641.49;2401;4826
-23;'084;Belize;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;230;764;854;879;829;613;1005;889;2333;1760
-23;'084;Belize;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;314;1887;1868;604;1534;1943;793;793;1005;209;104;4;4;4;4;4;774;774;774;24;724;91;91;91;91;91
-23;'084;Belize;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;166;961;1079;312;681;866;329;329;480;122;53;3;3;3;3;3;477;477;477;15;570;69;69;69;69;69
-23;'084;Belize;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;15;15;15;15;15;15;15;15;15;15
-23;'084;Belize;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;20;20;20;20;20;20;20;20;20;20
-23;'084;Belize;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;104;104;104;104;104;104;104;104;104;104;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-23;'084;Belize;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53;53;53;53;53;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-23;'084;Belize;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;2324;3120;3085;2360;1908;3809;2626.49;2386;4811
-23;'084;Belize;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;744;834;859;809;593;985;869;2313;1740
-23;'084;Belize;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;210;1783;1764;500;1430;1839;689;689;901;105;0;0;0;0;0;0;770;770;770;20;720;87;87;87;87;87
-23;'084;Belize;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;113;908;1026;259;628;813;276;276;427;69;0;0;0;0;0;0;474;474;474;12;567;66;66;66;66;66
-23;'084;Belize;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94
-23;'084;Belize;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;123;123;123;123;123;123;123;123;123;123;123;123;123;123;123;123
-23;'084;Belize;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;50;50;50;50;50;50
-23;'084;Belize;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;14;14;14;14;14;14
-23;'084;Belize;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45
-23;'084;Belize;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36
-23;'084;Belize;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;500;400;300;300;300;300;300;300;300
-23;'084;Belize;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;15;15;15;15;15;46;46;46;46;46;114;435;435;632;66;202;915;224;256;458;0;743;69;31;42;75;433;602;808.51;334;1074
-23;'084;Belize;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;6;6;6;6;6;4;4;4;4;4;29;48;48;164;16;46;96;47;58;80;0;283;31;11;18;17;87;92;129;148;143
-23;'084;Belize;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;142;142;3;3;3;3;11;11;5;59;383;398;442;308;2363;289;87;536;379;274;861;382;282;155.83;104;104
-23;'084;Belize;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;25;25;0;0;0;0;1;1;2;41;122;140;130;69;541;100;16;118;24;37;34;14;14;12;16;16
-23;'084;Belize;1876;Paper and paperboard;5610;Import quantity;t;400;400;400;500;500;500;700;1500;900;1200;1300;1500;1300;1300;1300;1700;1600;1500;1300;2200;800;2300;1700;1300;1900;2500;2800;1500;1900;2000;1900;1757;1454;1531;2132;2300;2300;1750;1926;2418;2412;967;1557;3691;3691;2436;2903;5586;3601;3199;2190;2373;2549;3765;3437;2569;6185;3890;3358;3368;4262.95;1113;1863
-23;'084;Belize;1876;Paper and paperboard;5622;Import value;1000 USD;101;102;106;116;70;74;241;594;263;476;577;615;582;769;869;1444;1265;1416;1190;2319;994;2631;2013;1846;2081;2491;2275;1380;1982;2067;1594;2338;1516;1612;2068;1632;1632;1696;1587;2205;2126;1075;1579;2961;2961;2567;3287;3271;4128;4295;2556;3365;3462;3239;2085;1843;3587;2572;2260;2124;2648.16;2296;1807
-23;'084;Belize;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;99;100;100;100;335;58;314;314;356;313;313;313;979;976;6646;5517;1366;1511;1528;267;583;468;433;378;359;255;286;267;319.07;317.07
-23;'084;Belize;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;260;80;300;300;342;283;283;283;809;808;11184;6846;4369;4172;1055;270;715;592;485;429;396;302;385;381;336.49;316.49
-23;'084;Belize;2042;Graphic papers;5610;Import quantity;t;100;100;100;200;300;300;200;300;300;300;300;500;300;300;300;700;600;400;300;500;500;400;400;400;400;300;500;400;400;500;400;710;333;501;395;300;300;244;247;548;570;532;531;2333;2333;508;620;933;757;968;987;582;708;690;1358;1158;4873;976;1256;913;805;321;685
-23;'084;Belize;2042;Graphic papers;5622;Import value;1000 USD;11;12;16;26;47;49;48;92;65;65;64;102;69;69;69;544;365;382;269;655;673;692;504;544;515;496;552;487;502;587;322;956;329;601;750;511;511;270;290;547;556;546;495;1747;1747;443;709;586;900;1349;1013;807;906;860;769;773;2747;725;968;650;682;781;739
-23;'084;Belize;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;99;100;100;100;257;34;70;70;112;77;77;77;702;724;4158;4442;95;82;68;68;141;141;141;85;85;85;85;65;84;84
-23;'084;Belize;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;222;19;54;54;96;84;84;84;497;542;4323;2191;138;86;70;70;150;150;150;85;85;85;85;69;83;83
-23;'084;Belize;1671;Newsprint;5610;Import quantity;t;100;100;100;100;100;200;100;100;200;200;200;200;200;200;200;200;200;200;200;200;200;100;100;200;200;100;200;100;100;200;100;287;80;211;100;0;0;90;67;27;100;170;165;331;331;175;255;447;174;481;234;159;239;166;543;406;4083;325;271;213;126;60;151
-23;'084;Belize;1671;Newsprint;5622;Import value;1000 USD;11;12;16;10;20;36;23;29;29;29;42;49;43;43;43;66;84;116;112;112;127;96;96;136;123;69;125;60;75;160;53;236;34;151;84;0;0;70;54;17;49;127;87;169;169;144;305;219;137;397;172;154;220;175;234;184;2187;172;138;103;62;86;127
-23;'084;Belize;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571;901;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-23;'084;Belize;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;643;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-23;'084;Belize;1674;Printing and writing papers;5610;Import quantity;t;;;;100;200;100;100;200;100;100;100;300;100;100;100;500;400;200;100;300;300;300;300;200;200;200;300;300;300;300;300;423;253;290;295;300;300;154;180;521;470;362;366;2002;2002;333;365;486;583;487;753;423;469;524;815;752;790;651;985;700;679;261;534
-23;'084;Belize;1674;Printing and writing papers;5622;Import value;1000 USD;;;;16;27;13;25;63;36;36;22;53;26;26;26;478;281;266;157;543;546;596;408;408;392;427;427;427;427;427;269;720;295;450;666;511;511;200;236;530;507;419;408;1578;1578;299;404;367;763;952;841;653;686;685;535;589;560;553;830;547;620;695;612
-23;'084;Belize;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;99;100;100;100;257;34;70;70;112;77;77;77;702;724;3587;3541;95;82;68;68;141;141;141;85;85;85;85;65;84;84
-23;'084;Belize;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;222;19;54;54;96;84;84;84;497;542;3945;1548;138;86;70;70;150;150;150;85;85;85;85;69;83;83
-23;'084;Belize;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;65;30;293;295;289;172;131;42;111;87;106;106;351;324;332;157;255
-23;'084;Belize;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;115;48;381;674;349;205;201;91;112;113;117;117;422;324;358;460;330
-23;'084;Belize;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;16;16;77;29;29;16;2;2;2;2;2;2;2;2;2;2;1;1
-23;'084;Belize;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;16;16;76;71;71;19;3;3;3;3;3;3;3;3;3;3;1;1
-23;'084;Belize;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;100;251;200;286;282;1827;1827;149;299;355;289;159;426;228;302;458;580;611;635;484;583;361;314;68;233
-23;'084;Belize;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;123;301;278;368;273;1442;1442;183;264;227;379;160;454;344;415;540;314;424;361;342;339;193;218;150;206
-23;'084;Belize;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;34;34;34;76;41;41;41;99;121;2625;3200;63;63;63;63;63;63;63;63;63;63;63;63;63;63
-23;'084;Belize;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;19;19;19;61;49;49;49;93;138;2998;949;66;66;66;66;66;66;66;66;66;66;66;66;66;66
-23;'084;Belize;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;80;261;261;67;75;166;166;175;1;101;1;33;38;23;36;24;124;54;49;61;51;15;33;36;46
-23;'084;Belize;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;113;224;224;46;130;131;131;111;25;92;3;118;38;104;70;54;109;52;82;94;69;30;44;85;76
-23;'084;Belize;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;587;885;312;3;3;3;3;76;76;76;20;20;20;20;0;20;20
-23;'084;Belize;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;388;871;528;1;1;1;1;81;81;81;16;16;16;16;0;16;16
-23;'084;Belize;1675;Other paper and paperboard;5610;Import quantity;t;300;300;300;300;200;200;500;1200;600;900;1000;1000;1000;1000;1000;1000;1000;1100;1000;1700;300;1900;1300;900;1500;2200;2300;1100;1500;1500;1500;1047;1121;1030;1737;2000;2000;1506;1679;1870;1842;435;1026;1358;1358;1928;2283;4653;2844;2231;1203;1791;1841;3075;2079;1411;1312;2914;2102;2455;3457.95;792;1178
-23;'084;Belize;1675;Other paper and paperboard;5622;Import value;1000 USD;90;90;90;90;23;25;193;502;198;411;513;513;513;700;800;900;900;1034;921;1664;321;1939;1509;1302;1566;1995;1723;893;1480;1480;1272;1382;1187;1011;1318;1121;1121;1426;1297;1658;1570;529;1084;1214;1214;2124;2578;2685;3228;2946;1543;2558;2556;2379;1316;1070;840;1847;1292;1474;1966.16;1515;1068
-23;'084;Belize;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;78;24;244;244;244;236;236;236;277;252;2488;1075;1271;1429;1460;199;442;327;292;293;274;170;201;202;235.07;233.07
-23;'084;Belize;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;38;61;246;246;246;199;199;199;312;266;6861;4655;4231;4086;985;200;565;442;335;344;311;217;300;312;253.49;233.49
-23;'084;Belize;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;364;824;600;155;676;578;578;1498;1649;4311;1688;1859;902;1642;1740;2598;1166;664;620;2216;1250;1307;1424;259;90
-23;'084;Belize;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;355;775;628;241;618;636;636;1661;1766;2374;1962;2277;1119;2239;2390;1493;670;399;293;1118;606;709;794.9;388;56
-23;'084;Belize;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;219;219;219;219;219;219;219;257;221;40;40;40;40;0;0;0;0;0;22;37;37;7;7
-23;'084;Belize;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;181;181;181;181;181;181;385;476;71;71;71;71;0;0;0;0;0;12;8;8;17;17
-23;'084;Belize;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506;1306;990;642;257;149;495;495;325;247;253;738;305;255;131;78;392;874;341;606;623;792;1083;2008.95;484;1050
-23;'084;Belize;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426;921;830;673;264;323;307;307;366;262;167;840;433;276;174;82;686;586;339;365;440;513;577;1082.26;921;789
-23;'084;Belize;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;24;24;24;24;16;16;16;16;17;1173;481;1228;1326;1402;141;381;266;290;290;266;143;154;154;223.07;223.07
-23;'084;Belize;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;61;61;61;61;14;14;14;14;16;2304;3627;4108;3875;902;117;408;285;302;302;203;135;156;156;214.49;214.49
-23;'084;Belize;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;200;200;500;1200;500;500;500;500;500;500;500;500;500;500;500;1400;100;1700;1100;700;1000;1900;2000;800;1200;1200;1200;747;821;1030;1737;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;23;25;193;502;186;186;208;208;208;300;350;400;400;418;418;1205;105;1376;1096;889;842;1429;1100;393;910;910;702;812;617;1011;1318;1121;1121;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-23;'084;Belize;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;220;100;100;44;65;65;65;145;146;650;228;103;122;45;199;584;82;47;30;27;420;1174.95;342;541
-23;'084;Belize;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;111;97;97;16;40;40;40;87;57;561;208;81;151;36;225;353;47;28;34;35;211;608.01;558;377
-23;'084;Belize;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;833;1123;1378;117;212;97;97;97;97;0;0;0;0.07;0.07
-23;'084;Belize;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;573;860;875;90;179;56;56;56;56;0;0;0;0.49;0.49
-23;'084;Belize;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177;1021;624;400;56;69;321;321;171;7;81;82;40;130;5;30;178;259;203;238;345;68;110;62;61;103
-23;'084;Belize;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123;725;603;479;91;260;199;199;236;16;58;221;130;131;10;29;401;142;166;158;248;114;74;88;182;132
-23;'084;Belize;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;868;268;268;20;20;20;27;27;27;27;3;3;3;3;3;3
-23;'084;Belize;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;579;579;21;21;21;108;108;108;108;9;9;9;9;9;9
-23;'084;Belize;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;235;104;100;100;35;89;89;69;94;25;5;36;21;1;1;13;23;48;52;24;99;90;49;57;81
-23;'084;Belize;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;170;91;72;72;43;56;56;78;155;48;54;91;60;7;11;52;72;101;80;58;129;121;71;145;112
-23;'084;Belize;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;24;24;24;24;16;16;16;16;16;219;127;127;127;4;4;21;21;45;45;45;19;30;30;99;99
-23;'084;Belize;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;61;61;61;61;14;14;14;14;14;255;2956;2956;2956;6;6;32;32;49;49;49;37;58;58;116;116
-23;'084;Belize;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;24;42;42;1;1;20;20;20;1;1;1;1;1;3;2;2;8;8;269;224;598;463;723;24;325
-23;'084;Belize;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;25;25;4;4;12;12;12;4;4;4;4;4;6;6;8;19;25;99;100;235;171;315.26;36;168
-23;'084;Belize;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;0;56;0;0;121;121;121;121;121;121;121;121;121;121
-23;'084;Belize;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;0;38;0;0;89;89;89;89;89;89;89;89;89;89
-23;'084;Belize;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;100;400;500;500;500;500;500;500;500;600;500;300;200;200;200;200;500;300;300;300;300;300;300;300;300;0;0;0;0;0;9;56;600;23;201;285;285;105;387;89;418;67;46;18;23;85;39;406;86;75;60;65;25;49;38
-23;'084;Belize;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;12;225;305;305;305;400;450;500;500;616;503;459;216;563;413;413;724;566;623;500;570;570;570;570;570;0;0;0;0;0;21;53;269;24;143;271;271;97;550;144;426;236;148;145;84;200;60;332;182;289;173;188;89;206;223
-23;'084;Belize;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;1;1;1;42;16;1058;373;3;63;18;18;61;61;2;3;8;5;10;11;5;3
-23;'084;Belize;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;4;4;4;4;4;117;69;4172;552;52;140;12;12;157;157;33;42;108;70;136;148;22;2
-23;'084;Belize;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2966;2474;3171;3231;2680;4500;3600
-23;'084;Belize;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3847;2579;3576;2189;4133;4084;1870
-23;'084;Belize;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;289;6;9;2;3;44
-23;'084;Belize;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;14
-23;'084;Belize;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;286;0;6;0;2;5
-23;'084;Belize;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-23;'084;Belize;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;6;3;2;1;39
-23;'084;Belize;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;13
-23;'084;Belize;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;354;758;597;363;291;305
-23;'084;Belize;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;3;13;15;4;3
-23;'084;Belize;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;56;202;58;123;91
-23;'084;Belize;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;5;21;0;0;9;25
-23;'084;Belize;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;19;120;633;135;85;142
-23;'084;Belize;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3645;2402;3221;2002;3899;3729;1316
-23;'084;Belize;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750;1543;2068;1716;1800;3710;2725
-23;'084;Belize;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;110;192;139;183;215;261
-23;'084;Belize;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;6;5;6;2;19
-23;'084;Belize;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;232
-23;'084;Belize;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;206;157;69;316;286;274
-23;'084;Belize;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;105;1;2;0;19
-23;'084;Belize;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14278;13002;13299;14203;15932;20225;17103
-23;'084;Belize;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;578;893;1344;1345;1931;2419
-23;'084;Belize;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;1;1;0;0;1
-23;'084;Belize;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;147;147;147;147;147
-23;'084;Belize;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;372;441;269;396;679;472
-23;'084;Belize;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;7;7;7;4;4
-23;'084;Belize;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1730;1596;1515;1378;1822;2141;2314
-23;'084;Belize;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;426;708;1188;1187;1734;2246
-23;'084;Belize;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7126;6896;7133;8748;9867;11112;7719
-23;'084;Belize;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;3;4
-23;'084;Belize;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4877;4137;4209;3807;3847;6293;6597
-23;'084;Belize;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;31;2;4;43;18
-53;'204;Benin;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35211;34380;31609;37613;43222.9;54152;50962
-53;'204;Benin;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45565;53449;47132;39003;57011;54679;56349
-53;'204;Benin;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;22;38;39;57;73;36;48;48;48;48;48;48;48;143;5637;5637;1445;1449;1448;1458;3226;1116;1114;1114;2120;2513;3237;2587;1433;1532;2516;3231;1614;1115;1654;1098;3351;4233;12325;12404;12393;14491;17692;9487;9487;6559;10917;12787;9735;12382;17516;14270;15548;14473;9636;13531;13814;11833;11100;10975;14207.9;14311;16041
-53;'204;Benin;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;482;265;782;793;1048;1754;989;931;1356;1677;5679;9428;17330;17866;19933;19776;23922;15879;38511;100207;128475;136746;208556;99677;57520;42476;49888;36226;30464;48436;46656;47498
-53;'204;Benin;1861;Roundwood;5516;Production;m3;5019882;5031384;5026892;5044407;5052927;5058454;5069987;5078527;5087072;5095624;5139247;5111253;5104984;5106657;5195199;5223312;5211613;5232972;5209154;5193487;5180632;5235462;5370708;5379288;5396382;5478154;5597520;5654507;5783776;5853160;5925505;5972375;6040187;6092932;6127711;6163531;6208853;6208337;6227592;6242329;6294375;6352969;6383125;6414859;6448188;6612554;6568000;6611200;6655498;6741503;6784761;6884592;6880015;6955050;6798877;6921148;6952183;6984488;7018070;7052935;7090420;7129175;7169211
-53;'204;Benin;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8675;5801;48001;48001;48001;66001;66001;15001;15001;16;165;45;15;1;34;191;5324;171;85;88;801;181;619;1393;568;50;388
-53;'204;Benin;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1416;1000;8500;8500;8500;11000;11000;3000;3000;0;9;2;0;0;74;89;1786;60;24;20;145;55;247;573;126;51;141
-53;'204;Benin;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;218;75;11;11;0;0;701;600;591;2000;15300;28300;47900;53900;51900;50216;50516;14911;87716;237702;262024;237025;354013;220151;133671;41208;66872;34942;7894;27060;20331;19506
-53;'204;Benin;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;16;4;4;0;0;103;100;194;420;4483;7320;15544;16080;16704;15956;18958;12625;32501;86203;114885;110983;166738;72578;43161;23068;29903;8285;4638;16319;10771;11659
-53;'204;Benin;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;174;619;1154;430;5;302
-53;'204;Benin;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;247;488;83;48;117
-53;'204;Benin;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631;426;0;0;0;477;621
-53;'204;Benin;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;117;0;42;0;140;141
-53;'204;Benin;1863;Roundwood, non-coniferous;5516;Production;m3;5019882;5031384;5026892;5044407;5052927;5058454;5069987;5078527;5087072;5095624;5139247;5111253;5104984;5106657;5195199;5223312;5211613;5232972;5209154;5193487;5180632;5235462;5370708;5379288;5396382;5478154;5597520;5654507;5783776;5853160;5925505;5972375;6040187;6092932;6127711;6163531;6208853;6208337;6227592;6242329;6294375;6352969;6383125;6414859;6448188;6612554;6568000;6611200;6655498;6741503;6784761;6884592;6880015;6955050;6798877;6921148;6952183;6984488;7018070;7052935;7090420;7129175;7169211
-53;'204;Benin;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801;7;0;239;138;45;86
-53;'204;Benin;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;2;0;85;43;3;24
-53;'204;Benin;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40577;66446;34942;7894;27060;19854;18885
-53;'204;Benin;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23019;29786;8285;4596;16319;10631;11518
-53;'204;Benin;1864;Wood fuel;5516;Production;m3;4890882;4896384;4901892;4907407;4912927;4918454;4923987;4929527;4935072;4940624;4985247;4954253;4944984;4943657;5019199;5043312;5027613;5044972;5017154;4996487;4978632;5028462;5157708;5161288;5173382;5240154;5353520;5404507;5524776;5579160;5625505;5676375;5737187;5782932;5827711;5859531;5893853;5882337;5895592;5910329;5937375;5965969;5996125;6027859;6061188;6100554;6141000;6184200;6228498;6274503;6317761;6362592;6409015;6457050;6506720;6536492;6567527;6599832;6633414;6668279;6705764;6744519;6784555
-53;'204;Benin;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;54;;;;;;;
-53;'204;Benin;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;;;;;;;
-53;'204;Benin;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;12;12;;;;;;;
-53;'204;Benin;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;;;;;;;
-53;'204;Benin;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1628;Wood fuel, non-coniferous;5516;Production;m3;4890882;4896384;4901892;4907407;4912927;4918454;4923987;4929527;4935072;4940624;4985247;4954253;4944984;4943657;5019199;5043312;5027613;5044972;5017154;4996487;4978632;5028462;5157708;5161288;5173382;5240154;5353520;5404507;5524776;5579160;5625505;5676375;5737187;5782932;5827711;5859531;5893853;5882337;5895592;5910329;5937375;5965969;5996125;6027859;6061188;6100554;6141000;6184200;6228498;6274503;6317761;6362592;6409015;6457050;6506720;6536492;6567527;6599832;6633414;6668279;6705764;6744519;6784555
-53;'204;Benin;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;54;;;;;;;
-53;'204;Benin;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;;;;;;;
-53;'204;Benin;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;12;12;;;;;;;
-53;'204;Benin;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;;;;;;;
-53;'204;Benin;1865;Industrial roundwood;5516;Production;m3;129000;135000;125000;137000;140000;140000;146000;149000;152000;155000;154000;157000;160000;163000;176000;180000;184000;188000;192000;197000;202000;207000;213000;218000;223000;238000;244000;250000;259000;274000;300000;296000;303000;310000;300000;304000;315000;326000;332000;332000;357000;387000;387000;387000;387000;512000;427000;427000;427000;467000;467000;522000;471000;498000;292157;384656;384656;384656;384656;384656;384656;384656;384656
-53;'204;Benin;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;5800;48000;48000;48000;66000;66000;15000;15000;15;164;44;14;0;33;190;5323;171;85;34;801;181;619;1393;568;50;388
-53;'204;Benin;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1000;8500;8500;8500;11000;11000;3000;3000;0;9;2;0;0;74;89;1786;60;24;15;145;55;247;573;126;51;141
-53;'204;Benin;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;218;75;11;11;0;0;701;600;591;2000;15300;28300;47900;53900;51900;50216;50516;14911;87716;237702;262011;237012;354000;220139;133659;41208;66872;34942;7894;27060;20331;19506
-53;'204;Benin;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;16;4;4;0;0;103;100;194;420;4483;7320;15544;16080;16704;15956;18958;12625;32501;86203;114881;110979;166734;72577;43160;23068;29903;8285;4638;16319;10771;11659
-53;'204;Benin;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;150;30;0;0;0;0;0;0;0;0;0;174;619;1154;430;5;302
-53;'204;Benin;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;2;0;0;0;0;0;0;0;0;0;53;247;488;83;48;117
-53;'204;Benin;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;444;1760;884;11;12;0;133;0;631;426;0;0;0;477;621
-53;'204;Benin;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;24;458;234;1;1;0;14;0;49;117;0;42;0;140;141
-53;'204;Benin;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;150;30;0;0;0;0;0;0;0;0;0;174;619;1154;430;5;302
-53;'204;Benin;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;2;0;0;0;0;0;0;0;0;0;53;247;488;83;48;117
-53;'204;Benin;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;444;1760;884;11;12;0;133;0;631;426;0;0;0;477;621
-53;'204;Benin;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;24;458;234;1;1;0;14;0;49;117;0;42;0;140;141
-53;'204;Benin;1867;Industrial roundwood, non-coniferous;5516;Production;m3;129000;135000;125000;137000;140000;140000;146000;149000;152000;155000;154000;157000;160000;163000;176000;180000;184000;188000;192000;197000;202000;207000;213000;218000;223000;238000;244000;250000;259000;274000;300000;296000;303000;310000;300000;304000;315000;326000;332000;332000;357000;387000;387000;387000;387000;512000;427000;427000;427000;467000;467000;522000;471000;498000;292157;384656;384656;384656;384656;384656;384656;384656;384656
-53;'204;Benin;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;5800;48000;48000;48000;66000;66000;15000;15000;14;14;14;14;0;33;190;5323;171;85;34;801;7;0;239;138;45;86
-53;'204;Benin;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1000;8500;8500;8500;11000;11000;3000;3000;0;0;0;0;0;74;89;1786;60;24;15;145;2;0;85;43;3;24
-53;'204;Benin;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;218;75;11;11;0;0;701;600;591;2000;15300;28300;47900;53900;51900;50200;50500;14467;85956;236818;262000;237000;354000;220006;133659;40577;66446;34942;7894;27060;19854;18885
-53;'204;Benin;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;16;4;4;0;0;103;100;194;420;4483;7320;15544;16080;16704;15955;18957;12601;32043;85969;114880;110978;166734;72563;43160;23019;29786;8285;4596;16319;10631;11518
-53;'204;Benin;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;5800;48000;48000;48000;66000;66000;15000;15000;14;14;14;14;0;0;0;3744;78;2;34;5;0;0;0;138;43;85
-53;'204;Benin;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1000;8500;8500;8500;11000;11000;3000;3000;0;0;0;0;0;0;0;1421;37;1;15;3;0;0;0;43;1;22
-53;'204;Benin;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;218;75;11;11;0;0;700;600;591;2000;15300;28300;47900;53900;51900;50200;50500;14467;18825;42580;262000;237000;354000;220006;133659;40577;66446;34942;7894;27060;18721;18885
-53;'204;Benin;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;16;4;4;0;0;102;100;194;420;4483;7320;15544;16080;16704;15955;18957;12601;11083;23076;114880;110978;166734;72563;43160;23019;29786;8285;4596;16319;10228;11518
-53;'204;Benin;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;190;1579;93;83;0;796;7;0;239;0;2;1
-53;'204;Benin;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;89;365;23;23;0;142;2;0;85;0;2;2
-53;'204;Benin;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;67131;194238;0;0;0;0;0;0;0;0;0;0;1133;0
-53;'204;Benin;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;20960;62893;0;0;0;0;0;0;0;0;0;0;403;0
-53;'204;Benin;1868;Sawlogs and veneer logs;5516;Production;m3;16000;20000;8000;18000;19000;16000;20000;20000;20000;20000;16000;16000;15000;15000;24000;24000;24000;24000;24000;24000;24000;24000;24000;23000;22000;31000;30000;29000;32000;40000;60000;50000;50000;50000;33000;30000;33000;37000;35000;35000;60000;90000;90000;90000;90000;215000;130000;130000;130000;170000;170000;157000;106000;133000;133000;133000;133000;133000;133000;133000;133000;133000;133000
-53;'204;Benin;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;16000;20000;8000;18000;19000;16000;20000;20000;20000;20000;16000;16000;15000;15000;24000;24000;24000;24000;24000;24000;24000;24000;24000;23000;22000;31000;30000;29000;32000;40000;60000;50000;50000;50000;33000;30000;33000;37000;35000;35000;60000;90000;90000;90000;90000;215000;130000;130000;130000;170000;170000;157000;106000;133000;133000;133000;133000;133000;133000;133000;133000;133000;133000
-53;'204;Benin;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1871;Other industrial roundwood;5516;Production;m3;113000;115000;117000;119000;121000;124000;126000;129000;132000;135000;138000;141000;145000;148000;152000;156000;160000;164000;168000;173000;178000;183000;189000;195000;201000;207000;214000;221000;227000;234000;240000;246000;253000;260000;267000;274000;282000;289000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;365000;365000;365000;159157;251656;251656;251656;251656;251656;251656;251656;251656
-53;'204;Benin;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;113000;115000;117000;119000;121000;124000;126000;129000;132000;135000;138000;141000;145000;148000;152000;156000;160000;164000;168000;173000;178000;183000;189000;195000;201000;207000;214000;221000;227000;234000;240000;246000;253000;260000;267000;274000;282000;289000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;365000;365000;365000;159157;251656;251656;251656;251656;251656;251656;251656;251656
-53;'204;Benin;1630;Wood charcoal;5510;Production;t;43100;44787;46540;48362;50055;52223;54267;56391;58599;60893;63877;65467;67611;70239;74959;78158;80596;84107;86584;89400;91016;94706;101004;103491;106283;110986;117415;121942;129286;134387;138972;143975;149599;155094;160241;165018;169692;173252;177899;183197;40000;41000;40000;204724;210491;216393;222500;228700;235111;241704;247964;254387;94000;56000;49050;49050;49050;49050;49050;49050;49050;49050;49050
-53;'204;Benin;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;371;637;637;637;637;637;11;11;11;1;1;1;1;6;1;1;1;371;73;1;40;1;6;29;34;16;102
-53;'204;Benin;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;79;143;143;143;143;143;50;50;50;1;1;1;1;20;2;2;2;114;122;3;138;0;5;19;15;20;21
-53;'204;Benin;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;258;59;59;59;110;110;110;110;110;110;110;110;110;42;42;17;255;1080;496;496;285;375;25;270;869;125;125;125;10;252
-53;'204;Benin;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;58;18;18;18;25;25;25;25;25;25;25;25;25;9;9;6;73;312;172;172;99;172;4;70;177;46;46;46;5;31
-53;'204;Benin;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;7;55;55;32;32;49;15;1;2
-53;'204;Benin;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;39;39;9;9;6;4;0;1
-53;'204;Benin;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;154;154;154;242;100;100;100;100;100
-53;'204;Benin;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;30;30;30;43;16;16;16;16;16
-53;'204;Benin;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1551;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;37;37;14;14;14;14;1;1
-53;'204;Benin;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;33;3;3;3;3;0;0
-53;'204;Benin;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;100;100;100;100;100;100
-53;'204;Benin;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;16;16;16;16;16;16
-53;'204;Benin;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;144;0;0;0;0;0;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;7;18;18;18;18;35;1;0;1
-53;'204;Benin;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;6;6;6;6;3;1;0;1
-53;'204;Benin;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;142;142;142;142;0;0;0;0;0
-53;'204;Benin;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;27;27;27;27;0;0;0;0;0
-53;'204;Benin;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;10000;10000;10000;10000
-53;'204;Benin;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0
-53;'204;Benin;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-53;'204;Benin;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;8620;3381;6543;6739;6162
-53;'204;Benin;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;2969;3381;2395;2178;2051
-53;'204;Benin;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;10000;10000;10000;10000
-53;'204;Benin;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0
-53;'204;Benin;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-53;'204;Benin;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;8620;3381;6543;6739;6162
-53;'204;Benin;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;2969;3381;2395;2178;2051
-53;'204;Benin;1872;Sawnwood;5516;Production;m3;8000;10200;4000;8500;9000;8000;9500;10000;10000;10000;8000;8000;8000;7000;9000;9000;9000;9000;9000;9000;9000;9000;9000;5000;8000;11000;11000;11000;14000;14000;27000;24000;24000;24000;15000;11000;12000;13000;13000;13000;32000;46000;30600;30600;30600;146000;84000;84000;84000;85000;86000;86000;165000;135000;133000;133000;133000;134000;184000;154000;154000;154000;154000
-53;'204;Benin;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;3000;3000;200;200;200;200;200;200;200;200;300;800;500;300;100;100;2600;8448;37;41;83;159;61;59;400;401;301;301;308;96;96;8891;171;485;428;55;218;193;705;1239;408;248;184;115;28;0;95;155;154
-53;'204;Benin;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;448;448;35;39;38;48;46;46;44;44;102;187;116;70;23;23;829;1857;24;19;23;34;22;51;32;33;25;25;33;17;17;295;53;216;180;225;155;167;628;1189;398;224;163;82;1;56;98;42;28
-53;'204;Benin;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;259;988;1563;1900;2361;1400;1300;2027;2294;2246;2082;5241;5241;6412;5646;8419;6489;13274;25038;24807;45065;59249;37172;21745;26975;47385;79431;55640;73027;79420;79423
-53;'204;Benin;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;243;720;771;1030;1727;708;674;1004;1003;942;1519;1574;1574;2848;3574;4679;3003;5742;12923;13242;25408;41525;26792;14082;18965;18909;24466;21959;29122;32591;32591
-53;'204;Benin;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2000;3000;3000;3000;3000;3000;4000;4000;4000;4000;4000;4000
-53;'204;Benin;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;18;18;18;44;44;29;400;400;300;300;300;92;92;158;86;105;48;7;115;143;90;0;0;0;0;34;2;0;20;117;0
-53;'204;Benin;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;3;6;6;20;32;32;24;24;24;16;16;4;27;55;19;3;69;117;22;0;0;0;0;9;1;0;9;28;0
-53;'204;Benin;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;111;0;0;33;300;300;300;138;138;1521;70;19;218;974;1288;1371;2482;2872;922;126;0;3705;51;2605;1308;28;28
-53;'204;Benin;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;0;0;9;8;8;8;23;23;222;20;6;75;365;524;850;1283;1509;438;39;0;913;18;745;555;8;8
-53;'204;Benin;1633;Sawnwood, non-coniferous;5516;Production;m3;8000;10200;4000;8500;9000;8000;9500;10000;10000;10000;8000;8000;8000;7000;9000;9000;9000;9000;9000;9000;9000;9000;9000;5000;8000;11000;11000;11000;14000;14000;27000;24000;24000;24000;15000;11000;12000;13000;13000;13000;32000;46000;30600;30600;30600;146000;84000;84000;84000;84000;84000;84000;162000;132000;130000;130000;130000;130000;180000;150000;150000;150000;150000
-53;'204;Benin;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;3000;3000;200;200;200;200;200;200;200;200;300;800;500;300;100;100;2600;8436;19;23;65;115;17;30;0;1;1;1;8;4;4;8733;85;380;380;48;103;50;615;1239;408;248;184;81;26;0;75;38;154
-53;'204;Benin;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;448;448;35;39;38;48;46;46;44;44;102;187;116;70;23;23;829;1855;21;16;20;28;16;31;0;1;1;1;9;1;1;291;26;161;161;222;86;50;606;1189;398;224;163;73;0;56;89;14;28
-53;'204;Benin;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;259;988;1563;1900;2250;1400;1300;1994;1994;1946;1782;5103;5103;4891;5576;8400;6271;12300;23750;23436;42583;56377;36250;21619;26975;43680;79380;53035;71719;79392;79395
-53;'204;Benin;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;243;720;771;1030;1698;708;674;995;995;934;1511;1551;1551;2626;3554;4673;2928;5377;12399;12392;24125;40016;26354;14043;18965;17996;24448;21214;28567;32583;32583
-53;'204;Benin;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-53;'204;Benin;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;1;1;1;1;1;5;5;1236;506;1118;1239;1205;1137;585;1129;288;1249;1378;1392;422;90;0;26;26;100
-53;'204;Benin;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;1;1;1;1;1;4;4;457;1000;654;463;443;479;228;210;99;323;434;459;175;38;84;14;14;34
-53;'204;Benin;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;304;304;304;304;6;6;6;6;6;6;6;0;1341;1;1;31;0;181;0;0;0;0;0;0;3
-53;'204;Benin;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;132;132;132;132;2;2;2;2;2;2;2;0;538;1;0;13;0;30;0;0;0;0;0;0;5
-53;'204;Benin;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;1875;1875;1875;1875
-53;'204;Benin;1873;Wood-based panels;5616;Import quantity;m3;100;200;200;200;300;100;200;200;200;200;200;200;200;700;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1700;2100;1500;800;300;300;800;743;818;382;1287;400;183;871;700;555;1650;563;964;1127;1127;919;2247;3984;2957;5189;8174;5762;4830;4916;6345;4195;5182;6504;9099;10109;11812;11412;14241
-53;'204;Benin;1873;Wood-based panels;5622;Import value;1000 USD;22;38;39;57;73;36;48;48;48;48;48;48;48;143;384;384;384;384;384;384;384;384;384;384;720;644;568;241;107;107;502;213;278;120;244;161;34;299;207;167;386;172;215;324;324;361;1409;2493;1536;2464;3897;3237;2375;2925;2495;1490;2785;3165;2927;2534;3256;2691;3665
-53;'204;Benin;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;30;46;9;110;392;48;31;23;76;50;0;183;183;183;0;39
-53;'204;Benin;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;39;11;3;33;0;8;18;11;30;34;0;41;41;41;1;36
-53;'204;Benin;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;1875;1875;1875;1875
-53;'204;Benin;1640;Plywood and LVL;5616;Import quantity;m3;100;200;200;200;300;100;200;200;200;200;200;200;200;700;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1700;2100;1500;800;300;300;800;562;599;68;19;100;2;300;400;400;400;400;400;37;37;780;1361;2087;1015;4540;6271;5044;4112;3411;4406;2893;3775;4384;7618;8602;10039;10125;12582
-53;'204;Benin;1640;Plywood and LVL;5622;Import value;1000 USD;22;38;39;57;73;36;48;48;48;48;48;48;48;143;384;384;384;384;384;384;384;384;384;384;720;644;568;241;107;107;502;166;214;25;15;78;3;93;124;124;124;124;124;13;13;326;1045;1591;717;2026;3012;2784;1922;2103;1781;1140;2073;2225;2489;1974;2675;2281;3119
-53;'204;Benin;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;30;46;9;110;392;48;31;23;76;50;0;0;0;0;0;39
-53;'204;Benin;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;39;11;3;33;0;8;18;11;30;34;0;0;0;0;0;35
-53;'204;Benin;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;0;0;0;0;5;1100;13;13;65;65;3;45;25;790;68;374;2;2;60;312;18;252;252;17;67;120;176;192
-53;'204;Benin;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;1;220;6;6;11;11;3;65;36;406;147;157;4;4;123;117;46;84;84;25;94;16;26;28
-53;'204;Benin;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;0;0
-53;'204;Benin;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;1;1
-53;'204;Benin;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;5;5;4;3;3;2;2;2;8;27;11;5
-53;'204;Benin;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;11;11;23;18;18;5;5;5;1;9;9;2
-53;'204;Benin;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;219;314;1242;300;181;571;300;150;150;150;551;1025;1025;136;841;1872;1152;568;1524;711;711;1441;1624;1281;1153;1866;1462;1432;1626;1100;1462
-53;'204;Benin;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;64;95;221;83;31;206;83;42;42;42;85;300;300;32;299;866;413;282;726;438;438;676;579;286;623;851;408;465;556;375;516
-53;'204;Benin;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;300;181;493;300;130;130;130;407;497;497;131;768;1694;1092;456;1063;574;574;291;1475;1002;605;877;785;726;764;371;194
-53;'204;Benin;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;83;31;199;83;41;41;41;79;230;230;28;263;789;379;209;502;352;352;97;522;191;277;259;213;269;270;115;76
-53;'204;Benin;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;2;72;177;59;111;460;136;136;524;102;232;547;659;662;701;860;704;1180
-53;'204;Benin;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;2;33;74;30;69;220;82;82;343;40;78;346;454;192;191;283;250;426
-53;'204;Benin;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;704;0;0;78;0;20;20;20;144;470;470;3;1;1;1;1;1;1;1;626;47;47;1;330;15;5;2;25;88
-53;'204;Benin;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;46;0;0;7;0;1;1;1;6;60;60;2;3;3;4;4;4;4;4;236;17;17;0;138;3;5;3;10;14
-53;'204;Benin;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;213;308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;60;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000
-53;'204;Benin;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;17;17;100;107;107;107;65;1340;1340;6;53;54;483;489;522;588;588;809;642;639;472;472;504;535;461;966;1476
-53;'204;Benin;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;4;4;18;37;37;37;136;153;153;26;57;61;303;343;289;292;292;327;351;293;268;268;282;270;279;1129;1520
-53;'204;Benin;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;42;42;42;40;152;267;267;169;79;79;85;90;1020;698;201;559;204;120;213;129
-53;'204;Benin;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;4;4;4;7;33;30;30;41;17;17;5;5;85;175;66;8;7;4;20;22
-53;'204;Benin;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;7;7;7;2;11;11;4;4;5;434;440;433;433;433;431;432;432;431;431;431;431;431;954;1140
-53;'204;Benin;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;19;19;19;10;5;5;26;26;30;272;312;268;268;268;266;268;268;264;264;264;264;264;1113;1512
-53;'204;Benin;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0
-53;'204;Benin;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;7;7;7;2;11;11;4;4;5;434;440;433;433;433;431;432;432;431;431;431;431;431;954;1140
-53;'204;Benin;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;19;19;19;10;5;5;26;26;30;272;312;268;268;268;266;268;268;264;264;264;264;264;1113;1512
-53;'204;Benin;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0
-53;'204;Benin;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;7;7;7;2;11;11;4;4;5;434;440;433;433;433;431;432;432;431;431;431;431;431;954;1140
-53;'204;Benin;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;19;19;19;10;5;5;26;26;30;272;312;268;268;268;266;268;268;264;264;264;264;264;1113;1512
-53;'204;Benin;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0
-53;'204;Benin;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;431;431;431;431;431;431;431;431;431;431;431;431;431;954;1140
-53;'204;Benin;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;264;264;264;264;264;264;264;264;264;264;264;264;264;1113;1512
-53;'204;Benin;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-53;'204;Benin;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;7;7;7;2;11;11;4;4;5;3;9;2;2;2;0;1;1;;;;;;;
-53;'204;Benin;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;19;19;19;10;5;5;26;26;30;8;48;4;4;4;2;4;4;;;;;;;
-53;'204;Benin;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;
-53;'204;Benin;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;;;;
-53;'204;Benin;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000
-53;'204;Benin;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;17;100;100;100;100;63;1329;1329;2;49;49;49;49;89;155;155;378;210;207;41;41;73;104;30;12;336
-53;'204;Benin;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;18;18;18;18;126;148;148;0;31;31;31;31;21;24;24;61;83;25;4;4;18;6;15;16;8
-53;'204;Benin;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;40;152;267;267;169;79;79;85;90;1020;698;201;559;204;120;213;129
-53;'204;Benin;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;7;33;30;30;41;17;17;5;5;83;175;66;8;7;4;20;22
-53;'204;Benin;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;3000;3000;1100;1100;1100;1100;2100;500;500;500;900;2800;3300;2700;1065;1021;900;829;1309;982;1003;802;1959;3120;4771;3295;4417;4255;6967;7568;7568;6176;7303;8714;8205;8652;12948;10688;10688;12101;8685;14682;10436;11067;14299;10998;12200.87;26678;11586
-53;'204;Benin;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;4805;4805;1026;1026;1026;1026;2796;686;686;686;1298;1682;2553;2276;1303;1402;1185;1151;1297;971;1387;903;1702;2735;3424;3523;3301;3113;6257;5939;5939;5418;8387;9359;7251;8886;12619;10254;10254;9758;5922;11028;9817;8079;7591;7433;10415.9;10363;10631
-53;'204;Benin;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;14;14;0;1;201;201;813;398;398;387;387;165;174;181;214;218;218;146;144;149;150;147;247;230;316;288;298
-53;'204;Benin;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;9;9;0;1;97;97;562;181;181;350;228;202;202;162;157;158;158;83;89;98;134;97;395;376;493;1074;1087
-53;'204;Benin;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;600;600;200;200;200;200;400;200;200;200;600;2500;2100;2000;765;721;100;560;878;678;603;502;1459;2289;3071;1933;2617;2034;5158;5121;5121;3465;5007;6227;5688;6603;10820;8483;8483;8325;5132;11437;8868;8852;10182;9283;10530.87;8636;9787
-53;'204;Benin;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;2166;2166;196;196;196;196;496;246;246;246;858;1242;1098;1100;863;962;114;777;830;689;928;562;1278;2118;2135;2362;2042;1553;4348;3956;3956;2720;4502;6115;4817;6757;10243;7481;7481;6020;3302;6647;8466;6386;6624;6468;8523.37;7653;9301
-53;'204;Benin;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;200;200;203;7;7;7;7;25;25;30;113;117;117;45;40;40;41;38;28;28;28;62;62
-53;'204;Benin;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;96;96;101;9;9;9;9;36;36;36;83;84;84;9;14;14;50;13;11;10;10;34;34
-53;'204;Benin;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;30;30;2;2;48;172;172;17;200;200;122;304;304;455;481;1182;379;993;454;178;178;446;615;622;85;343;473;358;128;122;214
-53;'204;Benin;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;96;96;98;98;98;;;;;;8;8;4;4;19;71;71;11;118;118;58;155;155;296;272;851;238;623;342;114;114;315;396;292;44;281;299;168;109;102;188
-53;'204;Benin;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;0;0;3;3;3;3;3;3;3;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-53;'204;Benin;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;0;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-53;'204;Benin;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;500;500;100;100;100;100;300;100;100;100;500;2400;2000;2000;765;721;100;560;848;648;601;500;1411;2117;2899;1916;2417;1834;5036;4817;4817;3010;4526;5045;5309;5610;10366;8305;8305;7879;4517;10815;8783;8509;9709;8925;10402.87;8514;9573
-53;'204;Benin;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;2070;2070;100;100;100;100;400;150;150;150;760;1144;1000;1100;863;962;114;777;822;681;924;558;1259;2047;2064;2351;1924;1435;4290;3801;3801;2424;4230;5264;4579;6134;9901;7367;7367;5705;2906;6355;8422;6105;6325;6300;8414.37;7551;9113
-53;'204;Benin;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;4;4;4;4;22;22;22;105;109;109;37;32;32;33;30;20;20;20;54;54
-53;'204;Benin;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;4;4;4;4;31;31;31;78;79;79;4;9;9;45;8;6;5;5;29;29
-53;'204;Benin;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;177;117;117;677;244;522;522;583;293;619;167;1045;750;116;116;557;204;765;165;165;4;18;47;145;136
-53;'204;Benin;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;139;158;158;507;203;412;412;472;280;516;116;857;640;120;120;424;151;529;413;413;3;16;37;73;61
-53;'204;Benin;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0;0;0
-53;'204;Benin;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;0;0;0;0
-53;'204;Benin;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1221;1672;1105;1300;812;3711;3224;3224;1637;2605;3746;3769;3163;8011;6951;6951;6160;3011;8592;7016;7589;9242;8487;9783.87;8031;9090
-53;'204;Benin;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;954;1087;900;669;2944;2544;2544;1274;2189;3805;3150;3878;7606;6109;6109;4492;1786;4759;6575;5027;5931;5992;7413.96;7064;8656
-53;'204;Benin;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;1;1;1;1;1;1;1;1;5;5;4;2;2;3;0;0;0;0;53;53
-53;'204;Benin;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;1;1;1;1;1;1;1;1;2;2;2;1;1;37;0;0;0;0;29;29
-53;'204;Benin;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767;1050;694;1000;345;1081;1071;1071;790;1628;680;1373;1402;1605;1238;1238;1162;1302;1458;1602;755;463;420;572;338;347
-53;'204;Benin;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;963;971;1106;866;259;1143;845;845;678;1761;943;1313;1399;1655;1138;1138;789;969;1067;1434;665;391;292;963.41;414;396
-53;'204;Benin;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;21;21;21;104;104;104;33;20;20;20;20;20;20;20;1;1
-53;'204;Benin;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;30;30;30;77;77;77;2;5;5;5;5;5;5;5;0;0
-53;'204;Benin;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;2400;2400;900;900;900;900;1700;300;300;300;300;300;1200;700;300;300;800;269;431;304;400;300;500;831;1700;1362;1800;2221;1809;2447;2447;2711;2296;2487;2517;2049;2128;2205;2205;3776;3553;3245;1568;2215;4117;1715;1670;18042;1799
-53;'204;Benin;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;2639;2639;830;830;830;830;2300;440;440;440;440;440;1455;1176;440;440;1071;374;467;282;459;341;424;617;1289;1161;1259;1560;1909;1983;1983;2698;3885;3244;2434;2129;2376;2773;2773;3738;2620;4381;1351;1693;967;965;1892.54;2710;1330
-53;'204;Benin;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;0;0;1;1;1;610;391;391;380;380;140;149;151;101;101;101;101;104;109;109;109;219;202;288;226;236
-53;'204;Benin;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;0;0;1;1;1;461;172;172;341;219;166;166;126;74;74;74;74;75;84;84;84;384;366;483;1040;1053
-53;'204;Benin;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;500;375;344;113;113;314;315;303;458;12;246;206;206;396;572;419;260;414;146;129;55;252;112
-53;'204;Benin;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;277;262;305;124;124;270;377;635;554;33;355;363;363;262;480;282;293;251;95;154;51;291;121
-53;'204;Benin;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;4;4;4;4;4;9;9;9;9;9;9;0;0
-53;'204;Benin;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;10;10;10;10;10;10;0;0
-53;'204;Benin;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;1000;1531;961;1086;1086;1272;1402;1332;1624;1596;1495;1955;1955;1668;1724;1787;1305;1694;3971;1579;1600;17782;1670
-53;'204;Benin;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;714;779;717;673;673;1036;1351;1267;1151;1513;1396;2276;2276;2110;1402;3482;1035;1183;869;756;1834.54;2405;1196
-53;'204;Benin;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;609;370;370;370;370;130;139;146;96;96;96;96;96;96;96;96;206;193;275;222;232
-53;'204;Benin;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;459;149;149;149;149;96;96;124;72;72;72;72;72;72;72;72;374;351;473;1040;1053
-53;'204;Benin;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;1100;1100;400;400;400;400;800;100;100;100;100;100;500;200;100;100;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;1206;1206;370;370;370;370;1100;150;150;150;150;150;655;276;150;150;164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-53;'204;Benin;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;100;119;205;426;426;34;54;202;202;202;202;56;56;660;117;200;404;394;793;22;437;16657;822
-53;'204;Benin;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;87;61;140;264;264;24;46;159;159;159;159;210;210;481;66;101;293;258;120;33;1023;1374;463
-53;'204;Benin;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;319;319;319;319;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79
-53;'204;Benin;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;117;117;117;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64
-53;'204;Benin;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;100;99;167;225;225;559;98;280;316;316;325;245;245;259;224;480;61;182;1776;24;317;41;86
-53;'204;Benin;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;66;62;225;140;140;505;215;268;213;236;207;222;222;517;154;1892;53;107;208;11;109;41;64
-53;'204;Benin;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;8;6;6;6;6;6;6;6;6;90;90;90;133;133
-53;'204;Benin;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;29;7;7;7;7;7;7;7;7;271;271;271;975;975
-53;'204;Benin;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;600;1309;458;395;395;258;1229;829;1086;1058;859;1600;1600;684;1330;1011;465;549;927;913;584;352;481
-53;'204;Benin;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;462;650;293;244;244;234;1070;820;765;1104;964;1469;1469;826;1136;1406;516;499;302;421;523.53;419;544
-53;'204;Benin;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;49;49;49;49;49;49;49;1;1;1;1;1;1;1;1;27;14;96;0;10
-53;'204;Benin;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;30;30;30;30;30;30;30;0;0;0;0;0;0;0;0;38;15;137;0;13
-53;'204;Benin;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;200;4;131;40;40;421;21;21;20;20;109;54;54;65;53;96;375;569;475;620;262;732;281
-53;'204;Benin;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;99;6;59;25;25;273;20;20;14;14;66;375;375;286;46;83;173;319;239;291;179;571;125
-53;'204;Benin;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-53;'204;Benin;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-53;'204;Benin;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;1300;1300;500;500;500;500;900;200;200;200;200;200;700;500;200;200;500;269;431;304;400;300;500;831;1700;294;300;315;504;1248;1248;1125;579;852;435;441;387;44;44;1712;1257;1039;3;107;0;7;15;8;17
-53;'204;Benin;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;1433;1433;460;460;460;460;1200;290;290;290;290;290;800;900;290;290;907;374;467;282;459;341;424;617;1289;338;268;519;887;1186;1186;1392;2157;1342;729;583;625;134;134;1366;738;617;23;259;3;55;7;14;13
-53;'204;Benin;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;0;0;0;0;0;1;21;21;10;8;8;8;3;1;1;1;1;4;4;4;4;4;0;4;4;4
-53;'204;Benin;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;0;0;0;0;0;2;23;23;192;69;69;69;1;1;1;1;1;2;2;2;2;0;5;0;0;0
-53;'204;Benin;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5447;4478;3939;6181;6112;14972;8897
-53;'204;Benin;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2949;3239;10546;8284;8346;7661;8495
-53;'204;Benin;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;84;20;161;25;57;4
-53;'204;Benin;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1794;1805;9535;7589;7139;6958;8189
-53;'204;Benin;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;23;23;42;4
-53;'204;Benin;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;9;9;22;22;22;22
-53;'204;Benin;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;69;5;138;2;15;0
-53;'204;Benin;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1755;1796;9526;7567;7117;6936;8167
-53;'204;Benin;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;34;17;37;246;398;45
-53;'204;Benin;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;3;3;31;32;46;44
-53;'204;Benin;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;42;71;80;126;128;144
-53;'204;Benin;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;87;576;385;919;370;7
-53;'204;Benin;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960;546;839;1838;1183;3543;2274
-53;'204;Benin;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;2;4
-53;'204;Benin;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9
-53;'204;Benin;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20
-53;'204;Benin;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66
-53;'204;Benin;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129
-53;'204;Benin;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4190;3716;2619;3921;4362;10647;6180
-53;'204;Benin;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;614;412;259;236;284;251
-53;'204;Benin;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;1;11;131
-53;'204;Benin;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;56;369;129;169;188;119
-53;'204;Benin;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;727;17;17;17;1;0
-53;'204;Benin;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15950;18069;16570;20457;22903;24869;26024
-53;'204;Benin;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;322;360;255;229;362;356
-53;'204;Benin;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;1;3;1;6;0;8
-53;'204;Benin;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-53;'204;Benin;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;367;635;629;979;527;502
-53;'204;Benin;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;15;15;15;15
-53;'204;Benin;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1247;1388;1494;1448;1995;1361;1513
-53;'204;Benin;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;2;1;1;6
-53;'204;Benin;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9720;11708;10386;13059;13565;16010;16283
-53;'204;Benin;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;205;312;235;150;298;318
-53;'204;Benin;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4437;4605;4052;5320;6358;6971;7718
-53;'204;Benin;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;98;29;3;63;48;17
-17;'060;Bermuda;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42106;43221;44936;43100;62590.22;52634;36214
-17;'060;Bermuda;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;109;15;17;57;118
-17;'060;Bermuda;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4746;4648;2814;2843;7710;5834;7918.23;9216;7704
-17;'060;Bermuda;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;47;0;0;37;0;0;3;7
-17;'060;Bermuda;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281;4642;2081;828;5425;5479;14745;7192;16089
-17;'060;Bermuda;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;1498;536;339;1492;1588;1938;1609;2253
-17;'060;Bermuda;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;19;0;0;10;0
-17;'060;Bermuda;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;3;0
-17;'060;Bermuda;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1460;565;3313;4184;14048;6122;11768
-17;'060;Bermuda;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;213;1074;1121;1547;1486;1366
-17;'060;Bermuda;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0
-17;'060;Bermuda;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-17;'060;Bermuda;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;263;2112;1295;697;1070;4321
-17;'060;Bermuda;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;126;418;467;391;123;887
-17;'060;Bermuda;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;19;0;0;10;0
-17;'060;Bermuda;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;3;0
-17;'060;Bermuda;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;118;111;30;76
-17;'060;Bermuda;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;119;125;48;48
-17;'060;Bermuda;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;18;15;9;55
-17;'060;Bermuda;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;24;35;25;25
-17;'060;Bermuda;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;100;96;21;21
-17;'060;Bermuda;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;95;90;23;23
-17;'060;Bermuda;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281;4642;2081;828;5350;5361;14634;7162;16013
-17;'060;Bermuda;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;1498;536;339;1406;1469;1813;1561;2205
-17;'060;Bermuda;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;19;0;0;10;0
-17;'060;Bermuda;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;3;0
-17;'060;Bermuda;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3005;4181;1460;565;3294;4166;14033;6113;11713
-17;'060;Bermuda;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807;1282;238;213;1053;1097;1512;1461;1341
-17;'060;Bermuda;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0
-17;'060;Bermuda;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3005;4181;1460;565;3294;4166;14033;6113;11713
-17;'060;Bermuda;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807;1282;238;213;1053;1097;1512;1461;1341
-17;'060;Bermuda;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0
-17;'060;Bermuda;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;461;621;263;2056;1195;601;1049;4300
-17;'060;Bermuda;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;216;298;126;353;372;301;100;864
-17;'060;Bermuda;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;0;0;10;0
-17;'060;Bermuda;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;3;0
-17;'060;Bermuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;50;90;36;108;133;22;1;276
-17;'060;Bermuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;45;19;46;53;9;0;124
-17;'060;Bermuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;411;531;227;1948;1062;579;1048;4024
-17;'060;Bermuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;154;253;107;307;319;292;100;740
-17;'060;Bermuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;0;0;10;0
-17;'060;Bermuda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;3;0
-17;'060;Bermuda;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23911
-17;'060;Bermuda;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;6;26
-17;'060;Bermuda;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;35;22;54
-17;'060;Bermuda;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83
-17;'060;Bermuda;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50
-17;'060;Bermuda;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71
-17;'060;Bermuda;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28
-17;'060;Bermuda;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-17;'060;Bermuda;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22
-17;'060;Bermuda;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;49
-17;'060;Bermuda;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;67
-17;'060;Bermuda;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;46
-17;'060;Bermuda;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;63
-17;'060;Bermuda;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;3
-17;'060;Bermuda;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;4
-17;'060;Bermuda;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3165;2832;750;2309;4168;1795;2557;3133;1384
-17;'060;Bermuda;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1610;1177;357;1006;1505;772;1446;1795;801
-17;'060;Bermuda;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;160;0;0;32;0;0;0;10
-17;'060;Bermuda;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;0;0;17;0;0;0;7
-17;'060;Bermuda;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2905;2446;246;1767;3830;1514;2203;2869;1087
-17;'060;Bermuda;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;866;52;642;1297;620;1209;1455;593
-17;'060;Bermuda;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;160;0;0;1;0;0;0;10
-17;'060;Bermuda;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;0;0;0;0;0;0;7
-17;'060;Bermuda;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;386;504;542;338;281;354;264;297
-17;'060;Bermuda;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;311;305;364;208;152;237;340;208
-17;'060;Bermuda;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;31;0;0;0;0
-17;'060;Bermuda;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;0;0;0;0
-17;'060;Bermuda;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;224;199;176;35;21;31;41;38
-17;'060;Bermuda;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;174;156;252;287;115;68;101;111
-17;'060;Bermuda;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;2514;2096;4825;1641;1644;3079;3818;3386
-17;'060;Bermuda;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1799;1765;1246;1190;910;1673;2063;1619
-17;'060;Bermuda;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;0;0;0;0
-17;'060;Bermuda;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;16;0;0;0;0
-17;'060;Bermuda;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-17;'060;Bermuda;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;2514;2096;4825;1641;1644;3079;3796;3195
-17;'060;Bermuda;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1799;1765;1246;1190;910;1673;2023;1525
-17;'060;Bermuda;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;0;0;0;0
-17;'060;Bermuda;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;16;0;0;0;0
-17;'060;Bermuda;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;122
-17;'060;Bermuda;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;37
-17;'060;Bermuda;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;69
-17;'060;Bermuda;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;57
-17;'060;Bermuda;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;64
-17;'060;Bermuda;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;52
-17;'060;Bermuda;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5
-17;'060;Bermuda;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5
-17;'060;Bermuda;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1450;1023;984.85;1225;1511
-17;'060;Bermuda;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3236;2409;2758.22;3474;2749
-17;'060;Bermuda;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1206;778;722;946;996
-17;'060;Bermuda;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2065;1267;1487;2080;1297
-17;'060;Bermuda;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;309;268;462;233
-17;'060;Bermuda;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;189;199;437;220
-17;'060;Bermuda;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;469;454;484;763
-17;'060;Bermuda;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1685;1078;1288;1643;1077
-17;'060;Bermuda;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;222;265;275;4
-17;'060;Bermuda;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;954;574;661;929;11
-17;'060;Bermuda;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;215;159;181;186
-17;'060;Bermuda;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;400;497;606;319
-17;'060;Bermuda;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;32;30;28;573
-17;'060;Bermuda;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;104;130;108;747
-17;'060;Bermuda;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;245;262.85;279;515
-17;'060;Bermuda;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1171;1142;1271.22;1394;1452
-17;'060;Bermuda;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;195;206.85;240;362
-17;'060;Bermuda;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;758;815.04;1040;1103
-17;'060;Bermuda;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-17;'060;Bermuda;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;45;47;35;151
-17;'060;Bermuda;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;259;247.1;245;260
-17;'060;Bermuda;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;2;34
-17;'060;Bermuda;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;4;13;26
-17;'060;Bermuda;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-17;'060;Bermuda;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;5;6;84
-17;'060;Bermuda;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;78;32;45;148
-17;'060;Bermuda;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;35;41;27;23
-17;'060;Bermuda;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;176;207.1;184;69
-17;'060;Bermuda;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10
-17;'060;Bermuda;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;4;3;17
-17;'060;Bermuda;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;4;2
-17;'060;Bermuda;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;125;209.08;109;89
-17;'060;Bermuda;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27488;28695;25696;24571;42491;29697;20912
-17;'060;Bermuda;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;63;12;13;45;106
-17;'060;Bermuda;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;1388;1061;1329;1460;1620;1004
-17;'060;Bermuda;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-17;'060;Bermuda;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;335;240;175;294;460;362
-17;'060;Bermuda;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-17;'060;Bermuda;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;1053;821;1154;1166;1160;642
-17;'060;Bermuda;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-17;'060;Bermuda;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;201;218;198;291;242;45
-17;'060;Bermuda;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;0;0;0;0
-17;'060;Bermuda;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;726;586;551;652;687;501
-17;'060;Bermuda;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;21
-17;'060;Bermuda;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2566;3273;3167;2626;2504;2141;2450
-17;'060;Bermuda;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;11;11;11;11
-17;'060;Bermuda;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21903;22155;19639;18525;36483;23763;15742
-17;'060;Bermuda;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;42;1;1;33;73
-17;'060;Bermuda;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;147;396;684;350;581;55
-17;'060;Bermuda;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598;805;629;658;751;663;1115
-17;'060;Bermuda;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;0;1;1;1
-17;'060;Bermuda;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11804;11683;11530;12695;12181;13721;7598
-17;'060;Bermuda;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;9;3;4;9;5
-17;'060;Bermuda;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;14;15;10;25;25;41
-17;'060;Bermuda;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;262;236;217;238;262;61
-17;'060;Bermuda;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;0;0;0;0
-17;'060;Bermuda;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5389;5486;5300;7065;5417;5471;2311
-17;'060;Bermuda;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;3;1;1;3;0
-17;'060;Bermuda;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2663;2632;2718;2778;3729;4411;2235
-17;'060;Bermuda;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;1;4;0
-17;'060;Bermuda;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3351;3289;3261;2625;2772;3552;2950
-17;'060;Bermuda;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;6;2;2;2;5
-18;'064;Bhutan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6351;26016;37057;37895;51827;71165;52118
-18;'064;Bhutan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737;3604;4060;2880;3385;3699;3877
-18;'064;Bhutan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;95;143;143;300;0;0;0;0;0;0;0;14;32;33;263;1423;1511;1755;2202;2159;2159;2086;425;429;1224;1178;1373;1181;2350;2752;2752;5858;4271;4880;1881;11081;4458;3783;4047;20942;30691;31776;43335;60675;41346
-18;'064;Bhutan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;501;501;501;501;501;501;501;286;89;132;438;4511;10487;10481;445;468;32;24;24;101;156;156;121;97;93;2949;4991;4991;5288;7336;7511;7596;8106;6339;7392;6078;6521;2490;2139;2992;2904;3151;2242;2734;3063;3161
-18;'064;Bhutan;1861;Roundwood;5516;Production;m3;2644771;2688683;2733324;2778706;2824842;3109743;3157424;3205896;3255173;3305267;3335778;3354136;3429422;3493263;3439320;3440476;3507539;3790347;3821144;3894318;3891080;3923700;3934081;3953651;3925579;3924304;3899627;3900030;3904123;3903812;3930528;3953821;3935704;3939139;3933601;3964649;4016899;4110712;4281468;4354796;4417723;4480414;4545689;4611867;4679168;4737049;4963900;4980000;4967000;5035000;5025103;5078401;5128760;5184336;5239825;5279812;5320254;5361159;5402530;5444372;5482955;5521965;5561407
-18;'064;Bhutan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;289;289;289;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1297;777;337;300;300;153;153;0;6;6;0;4;268;0
-18;'064;Bhutan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;32;32;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;230;209;120;118;118;10;10;0;2;2;0;1;0;0
-18;'064;Bhutan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;7400;7400;7400;7400;7400;7400;7400;7400;109;510;510;1758;;0;225;225;0;0;0;0;0;0;0;0;0;17163;2767;2767;2767;2767;2767;2767;2812;2812;2787;2787;2787;20;20;0;0;0;0;0;0;0
-18;'064;Bhutan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;217;217;217;217;217;217;217;217;20;63;63;217;;0;41;41;0;0;0;0;0;0;0;0;0;657;184;184;184;184;184;184;186;186;195;195;195;11;11;0;0;0;0;0;0;0
-18;'064;Bhutan;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;54000;48000;52000;29000;10000;200;200;26000;18600;18600;13000;13000;13000;13000;48000;46000;46000;44700;44900;44900;44900;44900;136000;128000;53000;59000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000
-18;'064;Bhutan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;268;0
-18;'064;Bhutan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0
-18;'064;Bhutan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-18;'064;Bhutan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-18;'064;Bhutan;1863;Roundwood, non-coniferous;5516;Production;m3;2644771;2688683;2733324;2778706;2824842;3109743;3157424;3205896;3255173;3305267;3335778;3354136;3429422;3493263;3439320;3440476;3507539;3790347;3821144;3894318;3891080;3923700;3934081;3953651;3871579;3876304;3847627;3871030;3894123;3903612;3930328;3927821;3917104;3920539;3920601;3951649;4003899;4097712;4233468;4308796;4371723;4435714;4500789;4566967;4634268;4692149;4827900;4852000;4914000;4976000;4992103;5045401;5095760;5151336;5206825;5246812;5287254;5328159;5369530;5411372;5449955;5488965;5528407
-18;'064;Bhutan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;0;4;0;0
-18;'064;Bhutan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;1;0;0
-18;'064;Bhutan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-18;'064;Bhutan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-18;'064;Bhutan;1864;Wood fuel;5516;Production;m3;2644771;2688683;2733324;2778706;2824842;2871743;2919424;2967896;3017173;3067267;3097778;3116136;3191422;3255263;3201320;3202476;3269539;3444347;3543144;3616318;3613080;3645700;3656081;3675651;3732579;3749304;3712627;3778030;3836123;3855112;3869728;3875221;3872204;3875639;3888601;3919649;3971899;4065712;4142468;4220796;4283723;4347714;4412789;4478967;4546268;4604149;4662900;4723000;4783000;4845000;4897103;4950401;5004420;5059168;5114657;5154644;5195086;5235991;5277362;5319204;5357787;5396797;5436239
-18;'064;Bhutan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;153;153;153;153;153;;;;;;;
-18;'064;Bhutan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;10;10;10;10;;;;;;;
-18;'064;Bhutan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;20;20;20;;;;;;;
-18;'064;Bhutan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;;;;;;;
-18;'064;Bhutan;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1628;Wood fuel, non-coniferous;5516;Production;m3;2644771;2688683;2733324;2778706;2824842;2871743;2919424;2967896;3017173;3067267;3097778;3116136;3191422;3255263;3201320;3202476;3269539;3444347;3543144;3616318;3613080;3645700;3656081;3675651;3732579;3749304;3712627;3778030;3836123;3855112;3869728;3875221;3872204;3875639;3888601;3919649;3971899;4065712;4142468;4220796;4283723;4347714;4412789;4478967;4546268;4604149;4662900;4723000;4783000;4845000;4897103;4950401;5004420;5059168;5114657;5154644;5195086;5235991;5277362;5319204;5357787;5396797;5436239
-18;'064;Bhutan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;153;153;153;153;153;;;;;;;
-18;'064;Bhutan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;10;10;10;10;;;;;;;
-18;'064;Bhutan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;20;20;20;;;;;;;
-18;'064;Bhutan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;;;;;;;
-18;'064;Bhutan;1865;Industrial roundwood;5516;Production;m3;;;;;;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;346000;278000;278000;278000;278000;278000;278000;193000;175000;187000;122000;68000;48700;60800;78600;63500;63500;45000;45000;45000;45000;139000;134000;134000;132700;132900;132900;132900;132900;301000;257000;184000;190000;128000;128000;124340;125168;125168;125168;125168;125168;125168;125168;125168;125168;125168
-18;'064;Bhutan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;289;289;289;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1297;777;184;147;147;0;0;0;6;6;0;4;268;0
-18;'064;Bhutan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;32;32;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;230;209;110;108;108;0;0;0;2;2;0;1;0;0
-18;'064;Bhutan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;7400;7400;7400;7400;7400;7400;7400;7400;109;510;510;1758;;0;225;225;0;0;0;0;0;0;0;0;0;17163;2767;2767;2767;2767;2767;2767;2812;2812;2767;2767;2767;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;217;217;217;217;217;217;217;217;20;63;63;217;;0;41;41;0;0;0;0;0;0;0;0;0;657;184;184;184;184;184;184;186;186;184;184;184;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;54000;48000;52000;29000;10000;200;200;26000;18600;18600;13000;13000;13000;13000;48000;46000;46000;44700;44900;44900;44900;44900;136000;128000;53000;59000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000
-18;'064;Bhutan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;114;114;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1150;630;37;0;0;0;0;0;6;0;0;0;268;0
-18;'064;Bhutan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;122;101;2;0;0;0;0;0;2;0;0;0;0;0
-18;'064;Bhutan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;114;114;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1150;630;37;0;0;0;0;0;6;0;0;0;268;0
-18;'064;Bhutan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;122;101;2;0;0;0;0;0;2;0;0;0;0;0
-18;'064;Bhutan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;238000;346000;278000;278000;278000;278000;278000;278000;139000;127000;135000;93000;58000;48500;60600;52600;44900;44900;32000;32000;32000;32000;91000;88000;88000;88000;88000;88000;88000;88000;165000;129000;131000;131000;95000;95000;91340;92168;92168;92168;92168;92168;92168;92168;92168;92168;92168
-18;'064;Bhutan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;147;147;147;147;147;0;0;0;0;6;0;4;0;0
-18;'064;Bhutan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;108;108;108;108;108;0;0;0;0;2;0;1;0;0
-18;'064;Bhutan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;225;225;0;0;0;0;0;0;0;0;0;17163;2767;2767;2767;2767;2767;2767;2767;2767;2767;2767;2767;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;41;0;0;0;0;0;0;0;0;0;657;184;184;184;184;184;184;184;184;184;184;184;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;147;147;147;147;147;0;0;0;0;6;0;4;0;0
-18;'064;Bhutan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;108;108;108;108;108;0;0;0;0;2;0;1;0;0
-18;'064;Bhutan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;239;239;239;239;239;239;239;239;239;239;239;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;35;35;35;35;35;35;35;35;35;35;35;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;225;225;0;0;0;0;0;0;0;0;0;16888;2528;2528;2528;2528;2528;2528;2528;2528;2528;2528;2528;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;41;0;0;0;0;0;0;0;0;0;609;149;149;149;149;149;149;149;149;149;149;149;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;308000;240000;240000;240000;240000;240000;240000;155000;137000;149000;84000;30000;10700;22800;40600;25500;25500;18000;18000;18000;18000;67000;64000;64000;62700;62900;62900;62900;62900;188000;168000;93000;99000;36000;36000;27000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000
-18;'064;Bhutan;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;7400;7400;7400;7400;7400;7400;7400;7400;109;510;510;1758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;217;217;217;217;217;217;217;217;20;63;63;217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;54000;48000;52000;29000;10000;200;200;26000;18600;18600;13000;13000;13000;13000;48000;46000;46000;44700;44900;44900;44900;44900;117000;112000;37000;43000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000
-18;'064;Bhutan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;308000;240000;240000;240000;240000;240000;240000;101000;89000;97000;55000;20000;10500;22600;14600;6900;6900;5000;5000;5000;5000;19000;18000;18000;18000;18000;18000;18000;18000;71000;56000;56000;56000;19000;19000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-18;'064;Bhutan;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;7400;7400;7400;7400;7400;7400;7400;7400;109;510;510;1758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;217;217;217;217;217;217;217;217;20;63;63;217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;4000;4000;9340;9168;9168;9168;9168;9168;9168;9168;9168;9168;9168
-18;'064;Bhutan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;4000;4000;9340;9168;9168;9168;9168;9168;9168;9168;9168;9168;9168
-18;'064;Bhutan;1871;Other industrial roundwood;5516;Production;m3;;;;;;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;27000;27000;27000;27000;72000;70000;70000;70000;70000;70000;70000;70000;112000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000;88000
-18;'064;Bhutan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-18;'064;Bhutan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;27000;27000;27000;27000;72000;70000;70000;70000;70000;70000;70000;70000;93000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000
-18;'064;Bhutan;1630;Wood charcoal;5510;Production;t;2671;2742;2814;2888;2964;3042;3122;3204;3288;3374;3418;3452;3594;3703;3585;3576;3700;4045;4238;4375;4373;4433;4456;4506;4617;4644;4549;4676;4797;4850;4886;4918;4934;4934;4934;4934;4934;4934;4934;5656;5798;5944;6093;6246;6403;6554;6700;6900;7000;7000;7000;7000;7000;7000;7000;7000;7000;8538;8711;8887;9073;9263;9456
-18;'064;Bhutan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;11300;11300;11300;11300;11300;11300;0;0;1;857;1322;362;3167;5513;5513;191;191;191;191;38746;10600;7543;5938;87977;99790;98874;158224;143508;111479
-18;'064;Bhutan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926;1420;1420;1420;1420;1420;1420;0;0;116;360;555;152;656;1117;1117;61;61;61;61;9051;2700;1978;1632;14679;24908;27760;34867;49250;36317
-18;'064;Bhutan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;4000;8000;10421;634;457;507;607;156;77;77;12;12;67;400;499;868;1043
-18;'064;Bhutan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;60;60;60;60;93;268;353;41;27;176;58;14;9;9;5;5;28;167;208;362;618
-18;'064;Bhutan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;27000;14000;13000;15000;15000;15000;5366;3421;3421;3421;3421;3421;3421;3421;3421;3421
-18;'064;Bhutan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;263;263;263;263;263;263;504;504;504;510;504;8;710
-18;'064;Bhutan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;25;25;25;24;24;0;20
-18;'064;Bhutan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;280;280;280;280;280;280;280;280;280;48;33;98;98;98;98;98;98;98;98;98;98;98;98
-18;'064;Bhutan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;3;2;4;4;4;4;4;4;4;4;4;4;4;4
-18;'064;Bhutan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;24000;14000;13000;15000;15000;15000;5081;3121;3121;3121;3121;3121;3121;3121;3121;3121
-18;'064;Bhutan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;257;257;257;257;257;257;498;498;498;498;498;2;2
-18;'064;Bhutan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;24;24;24;24;24;0;0
-18;'064;Bhutan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;0;0;0;0;0;285;300;300;300;300;300;300;300;300;300
-18;'064;Bhutan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;12;6;6;708
-18;'064;Bhutan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;20
-18;'064;Bhutan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;280;280;280;280;280;280;280;280;280;48;33;98;98;98;98;98;98;98;98;98;98;98;98
-18;'064;Bhutan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;3;2;4;4;4;4;4;4;4;4;4;4;4;4
-18;'064;Bhutan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;6000;6000;6000;6000;5000;5000;3000;5000;35000;35000;21000;18000;18000;18000;18000;18000;18000;22000;31000;31000;31000;31000;31000;31000;31000;21000;27000;20000;25000;27000;27000;27000;21821;22014;22014;22014;22014;22014;22014;22014;22014;22014
-18;'064;Bhutan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;39;28;28;160;31;157;31;0;0;47;178;775;136;0;1;358;0
-18;'064;Bhutan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;147;88;88;171;12;147;11;0;0;13;62;113;14;0;0;2;0
-18;'064;Bhutan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;1700;1700;1700;1700;1700;1700;1700;400;400;400;400;1700;33700;32000;140;140;140;140;140;140;140;140;140;0;0;21;34;34;34;24;24;24;45;45;0;0;22;0;0;0;0;0;0;131;3;0
-18;'064;Bhutan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;284;284;284;284;284;284;284;69;69;69;69;284;5675;5389;24;24;24;24;24;24;24;24;24;0;0;4;8;8;8;9;9;9;14;28;1;0;32;0;0;0;0;0;0;118;9;0
-18;'064;Bhutan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;12000;12000;12000;12000;12000;12000;15000;21000;21000;21000;21000;21000;21000;21000;9000;9000;2000;7000;9000;9000;9000;3821;4014;4014;4014;4014;4014;4014;4014;4014;4014
-18;'064;Bhutan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;34;31;31;31;0;0;47;162;654;0;0;0;1;0
-18;'064;Bhutan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;14;12;5;11;0;0;13;40;63;0;0;0;0;0
-18;'064;Bhutan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;21;21;21;21;11;11;11;0;0;0;0;0;0;0;0;0;0;0;54;0;0
-18;'064;Bhutan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4;4;4;4;5;5;5;0;0;0;0;0;0;0;0;0;0;0;16;0;0
-18;'064;Bhutan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;6000;6000;6000;6000;5000;5000;3000;5000;35000;35000;8000;6000;6000;6000;6000;6000;6000;7000;10000;10000;10000;10000;10000;10000;10000;12000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000
-18;'064;Bhutan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;23;23;126;0;126;0;0;0;0;16;121;136;0;1;357;0
-18;'064;Bhutan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;81;81;157;0;142;0;0;0;0;22;50;14;0;0;2;0
-18;'064;Bhutan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;1700;1700;1700;1700;1700;1700;1700;400;400;400;400;1700;33700;32000;140;140;140;140;140;140;140;140;140;0;0;0;13;13;13;13;13;13;45;45;0;0;22;0;0;0;0;0;0;77;3;0
-18;'064;Bhutan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;284;284;284;284;284;284;284;69;69;69;69;284;5675;5389;24;24;24;24;24;24;24;24;24;0;0;0;4;4;4;4;4;4;14;28;1;0;32;0;0;0;0;0;0;102;9;0
-18;'064;Bhutan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;16000;16000;16000;16000;16000;16000;16000;0;0;0;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;15987;15971;15971;15971
-18;'064;Bhutan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0;0;7;24;24;24;2;2;2;295;65;453;207;22;49;0;1;41;18;13;1;8;0
-18;'064;Bhutan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;0;0;5;19;19;19;6;6;6;85;98;236;30;21;78;0;4;27;27;15;2;9;0
-18;'064;Bhutan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;398;358;358;358;53;53;53;5;23;3;27;22;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;459;282;282;282;46;46;46;45;20;28;0;9;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;9000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15700;15700;15700;15700;15700;15700;15700;70000;43000;43000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-18;'064;Bhutan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;200;300;300;300;0;0;0;0;0;0;0;0;0;2;6;6;6;6;6;6;6;6;6;6;27;56;56;103;93;93;93;3342;3917;4119;351;150;189;189;502;2376;1427;1286;12221;5685;276
-18;'064;Bhutan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;95;143;143;300;0;0;0;0;0;0;0;0;0;1;3;3;3;3;3;3;3;3;3;3;21;30;30;51;61;61;61;1915;2432;3018;363;239;210;209;187;917;771;515;3975;7034;568
-18;'064;Bhutan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044;7044;9044;10000;855;855;0;0;0;0;18;18;42;42;42;6053;22646;22646;22646;14762;14762;14762;13619;6083;6059;3646;3832;1103;1175;1209;1970;6987;3748;6079;7505;7371
-18;'064;Bhutan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;4010;4812;5092;380;380;0;0;0;0;4;4;5;5;5;1639;3877;3877;3877;6118;6118;6118;6189;4448;5360;4330;4776;975;579;1447;1928;2191;1067;1750;2066;1922
-18;'064;Bhutan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;5000;5000;5000;5000;5000;5000;5000;5000;5000;3000;3700;3700;3700;3700;3700;3700;3700;21000;16000;16000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-18;'064;Bhutan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;200;300;300;300;0;0;0;0;0;0;0;0;0;2;6;6;6;6;6;6;6;6;6;6;6;35;35;82;82;82;82;2826;3806;3772;71;0;58;59;459;2208;1251;1117;12025;5476;0
-18;'064;Bhutan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;95;143;143;300;0;0;0;0;0;0;0;0;0;1;3;3;3;3;3;3;3;3;3;3;3;12;12;33;33;33;33;1578;2278;2651;60;0;27;30;98;643;481;332;3745;6668;0
-18;'064;Bhutan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044;1044;1044;2000;400;400;0;0;0;0;18;18;18;18;18;18;323;323;323;323;323;323;390;24;187;191;377;40;158;35;3;0;59;153;180;0
-18;'064;Bhutan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;306;306;586;113;113;0;0;0;0;4;4;4;4;4;4;106;106;106;106;106;106;443;263;342;64;510;29;41;11;3;0;20;68;87;0
-18;'064;Bhutan;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;8000;455;455;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3704;4506;4506;267;267;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;10000;12000;12000;12000;12000;12000;12000;12000;49000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000
-18;'064;Bhutan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;11;11;11;507;13;123;56;15;1;0;5;5;41;65;108;103;118
-18;'064;Bhutan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;28;28;28;330;2;130;66;36;10;6;9;9;48;39;73;130;186
-18;'064;Bhutan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6030;22239;22239;22239;14421;14421;14421;13211;5211;5024;2607;2607;215;169;1163;1163;6183;3636;5873;7272;7318
-18;'064;Bhutan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1630;3758;3758;3758;5998;5998;5998;5732;3796;4629;3877;3877;557;149;1427;1427;1693;1028;1663;1960;1903
-18;'064;Bhutan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;1;1;1;0;0;0;0
-18;'064;Bhutan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;0
-18;'064;Bhutan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;793;42;42;42;42
-18;'064;Bhutan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489;489;10;10;10;10
-18;'064;Bhutan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;96;222;222;133;128;128;37;162;134;104;88;106;158
-18;'064;Bhutan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;151;236;236;202;172;172;79;264;241;144;157;236;382
-18;'064;Bhutan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;5;84;84;84;18;18;18;18;848;848;848;848;848;848;11;11;11;11;11;11;11
-18;'064;Bhutan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;5;13;13;13;14;14;14;14;389;389;389;389;389;389;9;9;9;9;9;9;9
-18;'064;Bhutan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;58;58;8;124;52;9;8;5;59
-18;'064;Bhutan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;83;83;41;185;142;30;26;38;164
-18;'064;Bhutan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;21;21;21;21;22;70;94;75;100;96
-18;'064;Bhutan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;15;15;15;15;45;92;113;126;196;207
-18;'064;Bhutan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;96;96;96;96;49;49;8;16;12;1;5;1;3
-18;'064;Bhutan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;151;151;151;151;74;74;23;34;7;1;5;2;11
-18;'064;Bhutan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;5;84;84;84;18;18;18;18;848;848;848;848;848;848;11;11;11;11;11;11;11
-18;'064;Bhutan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;5;13;13;13;14;14;14;14;389;389;389;389;389;389;9;9;9;9;9;9;9
-18;'064;Bhutan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;506;506;506;506;506;506;506;506;506;515;515;515;515;519;519;519;519;518;534;628;535;535;535;541;36;39;25
-18;'064;Bhutan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;196;196;196;196;196;196;196;196;196;209;209;209;209;207;207;207;207;205;208;253;214;214;214;213;21;24;12
-18;'064;Bhutan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;1804;1804;1804;19;19;19;97;97;97;97;97;97;24;24
-18;'064;Bhutan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;147;147;147;10;10;10;55;55;55;55;55;55;16;16
-18;'064;Bhutan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;506;506;506;506;506;506;506;506;506;515;515;515;515;519;519;519;519;518;534;534;534;534;534;534;29;29;17
-18;'064;Bhutan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;196;196;196;196;196;196;196;196;196;209;209;209;209;207;207;207;207;205;208;208;208;208;208;208;15;15;6
-18;'064;Bhutan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;97;97;97;97;97;97;24;24
-18;'064;Bhutan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;55;55;55;55;55;55;16;16
-18;'064;Bhutan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;506;506;506;506;506;506;506;506;506;507;507;507;507;507;507;507;507;506;522;522;522;522;522;522;17;17;17
-18;'064;Bhutan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;196;196;196;196;196;196;196;196;196;198;198;198;198;198;198;198;198;196;199;199;199;199;199;199;6;6;6
-18;'064;Bhutan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;97;97;97;97;97;97;24;24
-18;'064;Bhutan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;55;55;55;55;55;55;16;16
-18;'064;Bhutan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;506;506;506;506;506;506;506;506;506;507;507;507;507;507;507;507;507;506;522;522;522;522;522;522;17;17;17
-18;'064;Bhutan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;196;196;196;196;196;196;196;196;196;198;198;198;198;198;198;198;198;196;199;199;199;199;199;199;6;6;6
-18;'064;Bhutan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;97;97;97;97;97;97;24;24
-18;'064;Bhutan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;55;55;55;55;55;55;16;16
-18;'064;Bhutan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16
-18;'064;Bhutan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3
-18;'064;Bhutan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;506;1;1;1
-18;'064;Bhutan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;3;3;3
-18;'064;Bhutan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;97;97;97;97;97;97;24;24
-18;'064;Bhutan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;55;55;55;55;55;55;16;16
-18;'064;Bhutan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;;;;;;;
-18;'064;Bhutan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-18;'064;Bhutan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;12;12;12;12;12;12;12;12;12;12;12;12;12;0
-18;'064;Bhutan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;9;9;9;9;9;9;9;9;9;9;9;9;9;0
-18;'064;Bhutan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-18;'064;Bhutan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-18;'064;Bhutan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1;1;1;7;7;10;8
-18;'064;Bhutan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;6;6;6;5;6;9;6
-18;'064;Bhutan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1785;1785;1785;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;0;0;0;0;0;0;0;0;0;0;0
-18;'064;Bhutan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-18;'064;Bhutan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;619;127;150;223;170;170;208;184;187;874;742;742;377;692;692;692;2941;1259;1350;1350;1357;1445;1905;2167;3361;3607;2410;2820;2574;2694
-18;'064;Bhutan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;487;81;146;576;533;533;460;226;230;886;573;573;743;1271;1271;1271;3172;1235;1074;1074;1430;1235;1303;1923;4965;4730;3249;4445;4356;4429
-18;'064;Bhutan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;10;0;0;82;150;150;144;144;110;94;524;524;845;853;853;853;1391;1391;1391;1391;1391;1391;1391;1391;921;872;1146;612;613;612
-18;'064;Bhutan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;8;0;0;67;118;118;70;70;66;108;558;558;855;864;864;864;1480;1480;1480;1480;1480;1480;1480;1480;911;872;948;598;605;600
-18;'064;Bhutan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;487;43;66;46;46;46;53;53;53;640;96;96;96;71;71;71;609;419;419;419;110;295;342;324;923;1397;1009;1488;1212;789
-18;'064;Bhutan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;381;31;96;33;33;33;76;76;76;464;75;75;75;77;77;77;845;480;471;471;165;503;516;768;1824;2018;1591;2380;2080;1680
-18;'064;Bhutan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;10;0;0;82;148;148;51;51;17;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;515;4;5;4
-18;'064;Bhutan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;8;0;0;67;112;112;52;52;48;39;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;338;3;10;5
-18;'064;Bhutan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;10;10;10;10;10;10;10;30;30;30;30;2;2;2;2;20;103;21;37;55;21
-18;'064;Bhutan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;6;6;6;6;6;6;6;27;27;27;27;5;5;5;5;29;137;27;42;55;20
-18;'064;Bhutan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;487;0;23;3;3;3;10;10;10;630;86;86;86;61;61;61;579;389;389;389;108;293;340;322;903;1294;988;1451;1157;768
-18;'064;Bhutan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;381;0;65;2;2;2;45;45;45;458;69;69;69;71;71;71;818;453;444;444;160;498;511;763;1795;1881;1564;2338;2025;1660
-18;'064;Bhutan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;10;0;0;82;148;148;51;51;17;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;515;4;5;4
-18;'064;Bhutan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;8;0;0;67;112;112;52;52;48;39;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;338;3;10;5
-18;'064;Bhutan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;37;37;37;23;23;23;243;40;40;40;58;179;116;16;16;8;14;20;23;42
-18;'064;Bhutan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;30;30;30;20;20;20;338;45;45;45;66;142;170;20;20;12;24;33;24;62
-18;'064;Bhutan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;10;10;10;91;5;5;5;21;21;21;84;340;340;340;41;109;214;235;771;1096;865;1367;1043;668
-18;'064;Bhutan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;45;45;45;96;4;4;4;17;17;17;168;388;388;388;83;352;335;649;1618;1624;1344;2140;1776;1490
-18;'064;Bhutan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;104;36;36;2;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;511;0;1;0
-18;'064;Bhutan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;27;27;23;36;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;335;0;7;2
-18;'064;Bhutan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;44;44;44;17;17;17;252;9;9;9;9;5;10;71;116;190;109;64;91;58
-18;'064;Bhutan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;35;35;35;34;34;34;312;20;11;11;11;4;6;94;157;245;196;165;225;108
-18;'064;Bhutan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;15;15;15;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-18;'064;Bhutan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;25;25;25;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-18;'064;Bhutan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-18;'064;Bhutan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;132;84;84;177;124;124;155;131;134;234;646;646;281;621;621;621;2332;840;931;931;1247;1150;1563;1843;2438;2210;1401;1332;1362;1905
-18;'064;Bhutan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;106;50;50;543;500;500;384;150;154;422;498;498;668;1194;1194;1194;2327;755;603;603;1265;732;787;1155;3141;2712;1658;2065;2276;2749
-18;'064;Bhutan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;93;93;93;89;518;518;839;847;847;847;1385;1385;1385;1385;1385;1385;1385;1385;915;866;631;608;608;608
-18;'064;Bhutan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;6;18;18;18;69;554;554;851;860;860;860;1476;1476;1476;1476;1476;1476;1476;1476;907;868;610;595;595;595
-18;'064;Bhutan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;75;75;75;75;75;6;6;59;159;112;179;150;111;149
-18;'064;Bhutan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;145;145;145;145;145;9;9;80;271;148;213;228;197;265
-18;'064;Bhutan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;206;512;512;512;512;512;512;512;512;512;512;512;512;512;512;512;512;512;512
-18;'064;Bhutan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518
-18;'064;Bhutan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-18;'064;Bhutan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;100;103;192;354;354;194;484;484;484;2079;753;844;844;1126;1098;1527;1776;2272;2090;1217;1127;1169;1582
-18;'064;Bhutan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;33;37;277;219;219;259;556;556;556;1591;569;417;417;953;556;750;1047;2824;2518;1414;1759;1993;2352
-18;'064;Bhutan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;77;77;77;92;100;100;100;638;638;638;638;638;638;638;638;168;119;119;96;96;96
-18;'064;Bhutan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;67;67;67;74;83;83;83;699;699;699;699;699;699;699;699;130;91;92;77;77;77
-18;'064;Bhutan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-18;'064;Bhutan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;100;100;87;213;213;53;62;62;62;367;205;205;205;199;98;110;75;443;42;122;154;152;81
-18;'064;Bhutan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;33;33;211;132;132;172;132;132;132;375;119;119;119;97;48;48;46;290;24;49;93;116;49
-18;'064;Bhutan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;55;55;55;152;152;152;572;99;236;236;181;361;383;471;597;506;252;447;569;545
-18;'064;Bhutan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;34;34;34;241;241;241;337;183;92;92;525;179;210;386;1909;1735;954;1320;1575;1843
-18;'064;Bhutan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-18;'064;Bhutan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67
-18;'064;Bhutan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;26;86;86;86;250;250;250;1120;429;383;383;726;619;1014;1210;1212;1510;843;526;447;955
-18;'064;Bhutan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;53;53;53;164;164;164;860;248;187;187;312;310;473;596;606;739;411;345;300;455
-18;'064;Bhutan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0
-18;'064;Bhutan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;16;16;16;16;16;16;16;16;16;16;16;16;16;16;1;1;1
-18;'064;Bhutan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;20;32;0;0;1;1
-18;'064;Bhutan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;20;0;1;2;5
-18;'064;Bhutan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;538;538;538;538;538;538;538;68;19;19;19;19;19
-18;'064;Bhutan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;616;616;616;616;616;616;616;47;8;9;9;9;9
-18;'064;Bhutan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;84;84;177;124;124;31;31;31;42;283;283;78;128;128;128;178;12;12;12;46;46;30;8;7;8;5;55;82;174
-18;'064;Bhutan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;50;50;543;500;500;117;117;117;145;269;269;399;628;628;628;591;41;41;41;167;167;28;28;46;46;31;78;86;132
-18;'064;Bhutan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;2;2;2;2;12;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;0;0;0;0
-18;'064;Bhutan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;6;6;6;6;6;2;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;0;0;0;0
-18;'064;Bhutan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;1614;2539;1936;3874;5074;5068
-18;'064;Bhutan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;78;289;15;25;17;71
-18;'064;Bhutan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;15;16;2;7;23;28
-18;'064;Bhutan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;3;0;0;0
-18;'064;Bhutan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;13;13;2;5;5;9
-18;'064;Bhutan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-18;'064;Bhutan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;3;0;2;18;19
-18;'064;Bhutan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0
-18;'064;Bhutan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;308;109;55;118;175
-18;'064;Bhutan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0
-18;'064;Bhutan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;90;6;26;49;86;103
-18;'064;Bhutan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;19;268;0;2;9;2
-18;'064;Bhutan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;302;985;777;833;1088;2061
-18;'064;Bhutan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;34;3;3;3;3;3
-18;'064;Bhutan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-18;'064;Bhutan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-18;'064;Bhutan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166
-18;'064;Bhutan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234
-18;'064;Bhutan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;638;857;836;2460;3614;2571
-18;'064;Bhutan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;17;11;0;1;2;65
-18;'064;Bhutan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;522;346;169;458;131;110
-18;'064;Bhutan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-18;'064;Bhutan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;36;21;17;12;14;20
-18;'064;Bhutan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;9;19;3;1
-18;'064;Bhutan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1762;3460;3827;4183;4618;5416;5704
-18;'064;Bhutan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;622;620;623;626;619;645
-18;'064;Bhutan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;19;29;12;31;12;17
-18;'064;Bhutan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;616;616;616;616;616;616
-18;'064;Bhutan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;140;108;70;181;296;234
-18;'064;Bhutan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0
-18;'064;Bhutan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;384;603;663;506;790;902
-18;'064;Bhutan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;2;3;3
-18;'064;Bhutan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;844;1120;1062;1438;1861;1683
-18;'064;Bhutan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;0;0;7;0;0
-18;'064;Bhutan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945;2073;1967;2376;2462;2457;2868
-18;'064;Bhutan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;0;1;1;0;26
-19;'068;Bolivia (Plurinational State of);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215613;236488;220566;166975;209382.42;259944;259713
-19;'068;Bolivia (Plurinational State of);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57421;76181;75108;67264;125359.27;128506.08;139051.08
-19;'068;Bolivia (Plurinational State of);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1018;700;410;719;1245;1245;1411;1782;2272;3460;3460;3460;3460;3460;3460;3460;8731;8937;10200;11700;12500;8400;8400;7400;6900;7700;9400;9600;9560;9600;9784;18281;20082;23829;56672;15460;23151;29175;37810;43519;35454;37187;35591;46722;47177;57539;69404;90574;81300;90209;111296;105099;122960;139771;130169;108370;148642;167032;156055;115467;144826.42;186977;188219
-19;'068;Bolivia (Plurinational State of);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;0;0;29;139;485;333;340;828;1800;1850;2586;4860;10917;22000;22409;13461;12935;19150;20450;11310;13740;5880;5880;4772;13263;23669;14950;36143;39667;45047;49868;58981;85684;71019;74233;71148;47409;24827;27178;23043;24234;28584;32783;40661;65042;76912;87258;69675;84432;73362;41055;40598;46279;26620;23853;24754;38871;37022;34388;70196.27;61684.08;89038.08
-19;'068;Bolivia (Plurinational State of);1861;Roundwood;5516;Production;m3;1444400;1464689;1477149;1497783;1530592;1576578;1612744;1688091;1721621;1738336;1760583;1766068;1826208;1944114;1892080;1900202;1843217;1985583;2145033;2118156;2024797;1963937;1987748;2003357;2028419;2189804;2395102;2161794;2164189;2292879;2397026;2557183;2729924;2878480;2871586;2937676;2958439;2906465;2618050;2609914;2721520;2727753;2855626;2958150;3061337;3179860;3198800;3218800;3242150;3292841;3310861;3329260;3348041;3377208;3396766;3408293;3420042;3947015;4017212;4029633;4042257;4055098;4068155
-19;'068;Bolivia (Plurinational State of);1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9718;652;652;652;0;0;100;100;3000;1000;1200;856;798;1200;1360;2300;5618;7258;1883;1888;6712;8144;6267;6968;13412;8302;5300;2046;2587;304;0;56;78;127
-19;'068;Bolivia (Plurinational State of);1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;284;284;284;0;0;12;12;75;27;33;29;27;118;128;231;242;390;534;596;521;645;358;360;1029;466;317;144;346;98;0;8;21;144
-19;'068;Bolivia (Plurinational State of);1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;2220;300;13500;15300;2300;2900;0;0;3200;3070;958;2305;4320;6267;5619;8641;10553;17226;14394;12621;20508;16000;10338;10732;12996;12951;15610;13381;12677;14893;44103;11776;113338
-19;'068;Bolivia (Plurinational State of);1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;300;41;7972;7381;954;1325;0;0;66;47;21;263;492;682;1103;2536;3371;6328;2711;6467;5451;1716;1565;1068;574;1767;2815;2298;4193;2708;14100;794;33683
-19;'068;Bolivia (Plurinational State of);1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;30000;30000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-19;'068;Bolivia (Plurinational State of);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;1;0;0;56;0;0
-19;'068;Bolivia (Plurinational State of);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;8;0;0
-19;'068;Bolivia (Plurinational State of);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4986;0;0;0;0;126;126
-19;'068;Bolivia (Plurinational State of);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382;0;0;0;0;25;25
-19;'068;Bolivia (Plurinational State of);1863;Roundwood, non-coniferous;5516;Production;m3;1444400;1464689;1477149;1497783;1530592;1576578;1612744;1688091;1721621;1738336;1760583;1766068;1826208;1944114;1892080;1900202;1843217;1985583;2145033;2118156;2024797;1963937;1987748;2003357;2028419;2189804;2395102;2161794;2164189;2292879;2397026;2557183;2729924;2878480;2871586;2937676;2958439;2906465;2618050;2609914;2721520;2727753;2855626;2958150;3061337;3179860;3198800;3218800;3242150;3262841;3280861;3299260;3318041;3337208;3356766;3368293;3380042;3907015;3977212;3989633;4002257;4015098;4028155
-19;'068;Bolivia (Plurinational State of);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924;2586;304;0;0;78;127
-19;'068;Bolivia (Plurinational State of);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;346;98;0;0;21;144
-19;'068;Bolivia (Plurinational State of);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10624;13381;12677;14893;44103;11650;113212
-19;'068;Bolivia (Plurinational State of);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2433;2298;4193;2708;14100;769;33658
-19;'068;Bolivia (Plurinational State of);1864;Wood fuel;5516;Production;m3;1363400;1378689;1394149;1409783;1425592;1441578;1457744;1474091;1490621;1507336;1525583;1542068;1560208;1578114;1592080;1600202;1614217;1630583;1657033;1685156;1701797;1738437;1775248;1790857;1815919;1856304;1873602;1888294;1908689;1921379;1935526;1959183;1979024;1999080;2021186;2045276;2068039;2091065;2116050;2141914;2162520;2183753;2205626;2228150;2251337;2270060;2289000;2309000;2329150;2349841;2367861;2386260;2405041;2424208;2443766;2455293;2467042;2479015;2491212;2503633;2516257;2529098;2542155
-19;'068;Bolivia (Plurinational State of);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;
-19;'068;Bolivia (Plurinational State of);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;;;;;;;
-19;'068;Bolivia (Plurinational State of);1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;54;54;54;54;;;;;;126;126
-19;'068;Bolivia (Plurinational State of);1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;476;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;;;;;;25;25
-19;'068;Bolivia (Plurinational State of);1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126
-19;'068;Bolivia (Plurinational State of);1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25
-19;'068;Bolivia (Plurinational State of);1628;Wood fuel, non-coniferous;5516;Production;m3;1363400;1378689;1394149;1409783;1425592;1441578;1457744;1474091;1490621;1507336;1525583;1542068;1560208;1578114;1592080;1600202;1614217;1630583;1657033;1685156;1701797;1738437;1775248;1790857;1815919;1856304;1873602;1888294;1908689;1921379;1935526;1959183;1979024;1999080;2021186;2045276;2068039;2091065;2116050;2141914;2162520;2183753;2205626;2228150;2251337;2270060;2289000;2309000;2329150;2349841;2367861;2386260;2405041;2424208;2443766;2455293;2467042;2479015;2491212;2503633;2516257;2529098;2542155
-19;'068;Bolivia (Plurinational State of);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;
-19;'068;Bolivia (Plurinational State of);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;;;;;;;
-19;'068;Bolivia (Plurinational State of);1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;54;54;54;54;;;;;;;
-19;'068;Bolivia (Plurinational State of);1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;476;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;;;;;;;
-19;'068;Bolivia (Plurinational State of);1865;Industrial roundwood;5516;Production;m3;81000;86000;83000;88000;105000;135000;155000;214000;231000;231000;235000;224000;266000;366000;300000;300000;229000;355000;488000;433000;323000;225500;212500;212500;212500;333500;521500;273500;255500;371500;461500;598000;750900;879400;850400;892400;890400;815400;502000;468000;559000;544000;650000;730000;810000;909800;909800;909800;913000;943000;943000;943000;943000;953000;953000;953000;953000;1468000;1526000;1526000;1526000;1526000;1526000
-19;'068;Bolivia (Plurinational State of);1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9718;652;652;652;0;0;100;100;3000;1000;1200;856;798;1200;1360;2300;5618;7258;1883;1888;6712;8144;6267;6967;13411;8301;5299;2046;2587;304;0;56;78;127
-19;'068;Bolivia (Plurinational State of);1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;284;284;284;0;0;12;12;75;27;33;29;27;118;128;231;242;390;534;596;521;645;358;360;1028;465;316;144;346;98;0;8;21;144
-19;'068;Bolivia (Plurinational State of);1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;2220;300;13500;15300;2200;2200;0;0;3200;3070;958;2305;4320;6267;5619;8641;10553;17226;14394;12621;20508;16000;10284;10678;12942;12897;15610;13381;12677;14893;44103;11650;113212
-19;'068;Bolivia (Plurinational State of);1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;300;41;7972;7381;849;849;0;0;66;47;21;263;492;682;1103;2536;3371;6328;2711;6467;5451;1716;1557;1060;566;1759;2815;2298;4193;2708;14100;769;33658
-19;'068;Bolivia (Plurinational State of);1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;30000;30000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-19;'068;Bolivia (Plurinational State of);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9718;652;652;652;0;0;100;100;0;0;0;0;0;0;0;0;35;0;122;250;0;0;0;0;0;0;0;122;1;0;0;56;0;0
-19;'068;Bolivia (Plurinational State of);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;284;284;284;0;0;12;12;0;0;0;0;0;0;0;0;2;0;9;26;0;0;0;0;0;0;0;36;0;0;0;8;0;0
-19;'068;Bolivia (Plurinational State of);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1352;60;14;0;0;0;0;0;0;0;4986;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;163;68;22;0;0;52;0;0;0;0;382;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9718;652;652;652;0;0;100;100;0;0;0;0;0;0;0;0;35;0;122;250;0;0;0;0;0;0;0;122;1;0;0;56;0;0
-19;'068;Bolivia (Plurinational State of);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;284;284;284;0;0;12;12;0;0;0;0;0;0;0;0;2;0;9;26;0;0;0;0;0;0;0;36;0;0;0;8;0;0
-19;'068;Bolivia (Plurinational State of);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1352;60;14;0;0;0;0;0;0;0;4986;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;163;68;22;0;0;52;0;0;0;0;382;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1867;Industrial roundwood, non-coniferous;5516;Production;m3;81000;86000;83000;88000;105000;135000;155000;214000;231000;231000;235000;224000;266000;366000;300000;300000;229000;355000;488000;433000;323000;225500;212500;212500;212500;333500;521500;273500;255500;371500;461500;598000;750900;879400;850400;892400;890400;815400;502000;468000;559000;544000;650000;730000;810000;909800;909800;909800;913000;913000;913000;913000;913000;913000;913000;913000;913000;1428000;1486000;1486000;1486000;1486000;1486000
-19;'068;Bolivia (Plurinational State of);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3000;1000;1200;856;798;1200;1360;2300;5583;7258;1761;1638;6712;8144;6267;6967;13411;8301;5299;1924;2586;304;0;0;78;127
-19;'068;Bolivia (Plurinational State of);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;75;27;33;29;27;118;128;231;240;390;525;570;521;645;358;360;1028;465;316;108;346;98;0;0;21;144
-19;'068;Bolivia (Plurinational State of);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;2220;300;13500;15300;2200;2200;0;0;3200;3070;958;2305;4320;6267;5619;8641;9201;17166;14380;12621;20508;16000;10284;10678;12942;12897;10624;13381;12677;14893;44103;11650;113212
-19;'068;Bolivia (Plurinational State of);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;300;41;7972;7381;849;849;0;0;66;47;21;263;492;682;1103;2536;3208;6260;2689;6467;5451;1664;1557;1060;566;1759;2433;2298;4193;2708;14100;769;33658
-19;'068;Bolivia (Plurinational State of);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3000;1000;1200;856;798;1200;1360;2300;5389;5242;1198;1296;6401;7619;5891;6917;7608;7560;5299;1924;2569;304;0;0;0;87
-19;'068;Bolivia (Plurinational State of);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;75;27;33;29;27;118;128;231;230;275;357;451;493;598;326;356;413;458;316;108;341;98;0;0;0;87
-19;'068;Bolivia (Plurinational State of);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;2220;300;13500;15300;2200;2200;0;0;3200;3070;958;2305;4320;6267;5619;8615;9120;17166;14237;12621;20508;16000;10284;10678;12942;12897;10624;13381;12677;14893;44103;620;113212
-19;'068;Bolivia (Plurinational State of);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;300;41;7972;7381;849;849;0;0;66;47;21;263;492;682;1103;2522;3202;6260;2622;6467;5451;1664;1557;1060;566;1759;2433;2298;4193;2708;14100;228;33658
-19;'068;Bolivia (Plurinational State of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;194;2016;563;342;311;525;376;50;5803;741;0;0;17;0;0;0;78;40
-19;'068;Bolivia (Plurinational State of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;10;115;168;119;28;47;32;4;615;7;0;0;5;0;0;0;21;57
-19;'068;Bolivia (Plurinational State of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;26;81;0;143;0;0;0;0;0;0;0;0;0;0;0;0;11030;0
-19;'068;Bolivia (Plurinational State of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;14;6;0;67;0;0;0;0;0;0;0;0;0;0;0;0;541;0
-19;'068;Bolivia (Plurinational State of);1868;Sawlogs and veneer logs;5516;Production;m3;73000;76000;70000;75000;90000;115000;135000;169000;181000;181000;185000;174000;216000;331000;265000;265000;200000;326000;455000;404000;309000;213000;200000;200000;200000;321000;509000;261000;243000;359000;449000;305000;443000;478000;449000;491000;489000;797000;502000;468000;559000;544000;650000;730000;810000;909800;909800;909800;913000;943000;943000;943000;943000;953000;953000;953000;953000;1468000;1526000;1526000;1526000;1526000;1526000
-19;'068;Bolivia (Plurinational State of);1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;30000;30000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-19;'068;Bolivia (Plurinational State of);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;73000;76000;70000;75000;90000;115000;135000;169000;181000;181000;185000;174000;216000;331000;265000;265000;200000;326000;455000;404000;309000;213000;200000;200000;200000;321000;509000;261000;243000;359000;449000;305000;443000;478000;449000;491000;489000;797000;502000;468000;559000;544000;650000;730000;810000;909800;909800;909800;913000;913000;913000;913000;913000;913000;913000;913000;913000;1428000;1486000;1486000;1486000;1486000;1486000
-19;'068;Bolivia (Plurinational State of);1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291000;300000;383000;383000;383000;383000;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291000;300000;383000;383000;383000;383000;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1871;Other industrial roundwood;5516;Production;m3;8000;10000;13000;13000;15000;20000;20000;45000;50000;50000;50000;50000;50000;35000;35000;35000;29000;29000;33000;29000;14000;12500;12500;12500;12500;12500;12500;12500;12500;12500;12500;2000;7900;18400;18400;18400;18400;18400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8000;10000;13000;13000;15000;20000;20000;45000;50000;50000;50000;50000;50000;35000;35000;35000;29000;29000;33000;29000;14000;12500;12500;12500;12500;12500;12500;12500;12500;12500;12500;2000;7900;18400;18400;18400;18400;18400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1630;Wood charcoal;5510;Production;t;48717;49968;51251;52567;53917;55302;56722;58178;59672;61205;62333;63414;64526;65706;66607;68177;70209;72474;75553;78867;81831;86333;91070;94341;98444;103600;107051;110344;114167;117420;120898;125340;129422;133672;138152;163577;150979;4000;18000;22000;25000;24000;29000;33000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;42031;48372;48372;48372;48372
-19;'068;Bolivia (Plurinational State of);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;25;25;25;0;0;0;0;0;0;0;0;0;0;101;101;14;3;3;4;23;23;1;6;1;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;8;8;0;0;0;0;0;0;0;0;0;0;7;7;23;11;11;16;11;11;0;3;0;0;0;0;1;0
-19;'068;Bolivia (Plurinational State of);1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;21400;4700;0;0;0;0;0;0;0;0;0;0;1181;869;1709;10356;6753;3891;1658;67;725;405;839;1301;2031;64;9614;12567
-19;'068;Bolivia (Plurinational State of);1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;750;420;0;0;0;0;0;0;0;0;0;0;165;115;244;1883;1126;696;281;23;138;75;155;323;400;887.51;1475;2202
-19;'068;Bolivia (Plurinational State of);1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289000;247000;229000;252000;256000;340000;329000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000
-19;'068;Bolivia (Plurinational State of);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;738;598;707;651;34;16;12;975;6;14;44;2208;54;562.03;841;331
-19;'068;Bolivia (Plurinational State of);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;46;15;11;92;32;35;48;99;26;65;91;15;93;36;68;26
-19;'068;Bolivia (Plurinational State of);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;42;72;75;75;93;43;43;291;291;291;26;26;26;26;296;296
-19;'068;Bolivia (Plurinational State of);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;24;39;39;39;32;32;60;60;60;21;21;21;21;42;42
-19;'068;Bolivia (Plurinational State of);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;3;3;15;14;10;8;971;2;10;17;848;18;0.03;756;330
-19;'068;Bolivia (Plurinational State of);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;5;6;66;30;21;15;94;3;40;78;9;82;31;64;26
-19;'068;Bolivia (Plurinational State of);1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;273;273
-19;'068;Bolivia (Plurinational State of);1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;36;36
-19;'068;Bolivia (Plurinational State of);1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73000;70000;61000;61000;61000;61000;289000;247000;229000;252000;256000;340000;329000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000
-19;'068;Bolivia (Plurinational State of);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;729;595;704;636;20;6;4;4;4;4;27;1360;36;562;85;1
-19;'068;Bolivia (Plurinational State of);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;18;10;5;26;2;14;33;5;23;25;13;6;11;5;4;0
-19;'068;Bolivia (Plurinational State of);1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;900;0;0;0;0;0;0;0;0;0;0;0;42;72;72;72;90;40;40;288;288;288;23;23;23;23;23;23
-19;'068;Bolivia (Plurinational State of);1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;534;0;0;0;0;0;0;0;0;0;0;0;8;24;24;24;24;17;17;45;45;45;6;6;6;6;6;6
-19;'068;Bolivia (Plurinational State of);1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2258;9421;5375;5375;5375;5375
-19;'068;Bolivia (Plurinational State of);1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;5;0;11;0;0;0;32;13;12;60;53
-19;'068;Bolivia (Plurinational State of);1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;0;2;0;0;0;6;5;5;16;15
-19;'068;Bolivia (Plurinational State of);1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127;1027;1027;1027
-19;'068;Bolivia (Plurinational State of);1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;185;185;185
-19;'068;Bolivia (Plurinational State of);1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2258;9421;5375;5375;5375;5375
-19;'068;Bolivia (Plurinational State of);1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;5;0;11;0;0;0;32;13;12;42;35
-19;'068;Bolivia (Plurinational State of);1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;0;2;0;0;0;6;5;5;11;10
-19;'068;Bolivia (Plurinational State of);1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127;1027;1027;1027
-19;'068;Bolivia (Plurinational State of);1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;185;185;185
-19;'068;Bolivia (Plurinational State of);1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18
-19;'068;Bolivia (Plurinational State of);1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-19;'068;Bolivia (Plurinational State of);1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1872;Sawnwood;5516;Production;m3;28700;37200;35300;33800;42600;55200;66000;93000;104000;72000;102000;103000;153000;150000;140000;143000;109000;167000;233000;212000;125000;76000;52000;46000;40000;57000;62000;51000;102000;102000;125000;230000;268000;185000;162000;181000;180000;515000;244000;239000;308000;299000;347000;403000;409000;461400;461000;461000;462000;466000;466000;466000;466000;466000;466000;466000;466000;466000;466000;407000;407000;407000;407000
-19;'068;Bolivia (Plurinational State of);1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;288;0;0;0;0;1200;4800;5450;975;1710;3800;3000;6000;2335;2036;407;548;549;673;840;2887;3344;2662;2890;1560;1044;1146;553;315;363;590
-19;'068;Bolivia (Plurinational State of);1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;71;0;0;0;0;797;1752;1945;339;595;1250;731;1543;1143;818;194;262;204;198;281;413;791;570;607;472;248;334;171;63;181;210
-19;'068;Bolivia (Plurinational State of);1872;Sawnwood;5916;Export quantity;m3;;0;0;400;1900;5300;4800;4900;14100;30100;30500;30500;49800;66700;47600;47600;52700;47500;86000;90700;42800;52800;23800;23800;23800;54100;56900;36500;98000;98500;116500;143364;126900;162900;139500;147400;148000;84200;42000;43100;42784;33612;42598;54078;59612;111547;185975;156854;225237;81561;78481;44149;37822;48801;28088;32654;43263;66767;51074;47010;98416;135880;163863
-19;'068;Bolivia (Plurinational State of);1872;Sawnwood;5922;Export value;1000 USD;;0;0;29;139;485;333;340;828;1800;1850;2586;4860;10917;22000;22000;9325;9667;18000;19000;9800;12150;5500;5500;4349;12841;22901;12000;33184;36425;41815;47133;49704;74620;67131;69295;68962;45738;22223;24275;20951;20308;24196;26900;30465;52838;56139;58045;52757;55875;48134;26507;28044;29345;11688;11570;12567;27124;24386;23835;42902;36370;40040
-19;'068;Bolivia (Plurinational State of);1632;Sawnwood, coniferous;5516;Production;m3;7700;5700;3800;1250;800;1600;2500;15000;9500;1000;3000;2000;2000;3500;4000;4000;11000;13500;7000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5000;10000;10000;10000;10000;15000;15000;15000;0;0;0;0;0;1000;1000;2400;2000;2000;3000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-19;'068;Bolivia (Plurinational State of);1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;0;0;0;200;4000;4000;193;360;400;1200;2100;901;454;262;351;281;294;490;267;290;529;742;410;544;703;220;147;362;580
-19;'068;Bolivia (Plurinational State of);1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;115;1525;1689;84;157;65;163;303;168;79;80;106;78;119;190;181;53;138;223;153;141;179;55;45;179;197
-19;'068;Bolivia (Plurinational State of);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7581;6600;1900;6300;11000;15000;2200;0;0;0;0;0;0;949;2941;1339;1029;1836;1101;2171;1869;1560;511;288;284;41;32;74;10;0;80;0
-19;'068;Bolivia (Plurinational State of);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2147;3106;475;2389;2166;1908;534;0;0;0;0;0;0;565;2300;729;406;640;519;1051;1087;1070;371;153;143;38;43;59;53;0;24;0
-19;'068;Bolivia (Plurinational State of);1633;Sawnwood, non-coniferous;5516;Production;m3;21000;31500;31500;32550;41800;53600;63500;78000;94500;71000;99000;101000;151000;146500;136000;139000;98000;153500;226000;210000;123000;74000;50000;44000;38000;55000;60000;49000;100000;100000;120000;220000;258000;175000;152000;166000;165000;500000;244000;239000;308000;299000;347000;402000;408000;459000;459000;459000;459000;459000;459000;459000;459000;459000;459000;459000;459000;459000;459000;400000;400000;400000;400000
-19;'068;Bolivia (Plurinational State of);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;288;0;0;0;0;1000;800;1450;782;1350;3400;1800;3900;1434;1582;145;197;268;379;350;2620;3054;2133;2148;1150;500;443;333;168;1;10
-19;'068;Bolivia (Plurinational State of);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;71;0;0;0;0;682;227;256;255;438;1185;568;1240;975;739;114;156;126;79;91;232;738;432;384;319;107;155;116;18;2;13
-19;'068;Bolivia (Plurinational State of);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;0;0;400;1900;5300;4800;4900;14100;30100;30500;30500;49800;66700;47600;47600;52700;47500;86000;90700;42800;52800;23800;23800;23800;54100;56900;36500;98000;98500;116500;135783;120300;161000;133200;136400;133000;82000;42000;43100;42784;33612;42598;54078;58663;108606;184636;155825;223401;80460;76310;42280;36262;48290;27800;32370;43222;66735;51000;47000;98416;135800;163863
-19;'068;Bolivia (Plurinational State of);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;0;0;29;139;485;333;340;828;1800;1850;2586;4860;10917;22000;22000;9325;9667;18000;19000;9800;12150;5500;5500;4349;12841;22901;12000;33184;36425;41815;44986;46598;74145;64742;67129;67054;45204;22223;24275;20951;20308;24196;26900;29900;50538;55410;57639;52117;55356;47083;25420;26974;28974;11535;11427;12529;27081;24327;23782;42902;36346;40040
-19;'068;Bolivia (Plurinational State of);1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;200;3000;18000;16000;13000;10000;5000;1000;1000;1000;1000;1100;1200;1000;1700;1700;1700;2000;2000;1800;1500;900;1000;8000;1000;2000;4000;4000;4000;9000;4000;7000;8000;8000;8000;8000;8000;8000;8000;8100;8100;8100;8000;8000;8000;8000;8000;8000;8000
-19;'068;Bolivia (Plurinational State of);1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;100;50;200;70;36;71;69;145;194;59;132;28;170;115;2262;329;149;132;59;6;58;26;3;0;21;11
-19;'068;Bolivia (Plurinational State of);1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;22;65;245;85;33;75;69;119;168;57;150;44;83;262;1833;687;118;98;60;11;146;90;14;0;110;38
-19;'068;Bolivia (Plurinational State of);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;7400;7700;1900;2200;1300;900;0;0;100;200;600;1000;1000;600;600;1500;500;500;60;500;800;1000;1300;2300;2000;882;1178;1067;1307;1194;2343;2988;2140;3781;2956;1848;1637;2807;2618;1613;1404;1444;1038;387;2417;3373;3373
-19;'068;Bolivia (Plurinational State of);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;3727;3240;800;950;560;390;0;0;43;112;221;450;900;540;590;1404;448;419;74;1120;1540;1671;2538;2856;2058;2453;1997;2406;3220;3435;6505;9607;6892;12050;11061;8141;8102;13628;12575;8369;7047;6628;3970;1695;2285;2941;2941
-19;'068;Bolivia (Plurinational State of);1873;Wood-based panels;5516;Production;m3;200;500;400;900;800;700;700;1400;1500;1300;1400;1300;1100;1900;1900;2000;3000;1300;4400;5900;5800;6000;5000;1000;2000;3400;3400;2800;3500;7000;10000;29000;15000;7000;8000;15500;11600;8000;9000;9000;11000;10000;11000;17000;34000;34000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000
-19;'068;Bolivia (Plurinational State of);1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;929;1424;1700;2400;1100;1300;5600;6200;7800;13000;10000;9370;9210;6990;6982;7010;10683;11864;15112;25144;20697;53959;59526;68122;72561;94827;124811;113645;86338;115403;113504;114403
-19;'068;Bolivia (Plurinational State of);1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;534;724;815;516;639;1347;1704;2597;1904;1595;1511;1470;1028;1025;1019;5679;6080;9232;15456;12518;26176;26744;25455;21949;29283;38178;35760;24296;37343;39038;36474
-19;'068;Bolivia (Plurinational State of);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;1500;1500;100;1400;1900;2700;3500;1100;1000;1100;500;800;2800;3500;5400;3300;1258;600;1900;1300;200;300;0;0;0;8;9124;11417;13478;20383;19380;28821;19703;9246;15867;9498;3378;3294;2474;2475;3025;4256;6670;12109;6760;15341;17086;12299
-19;'068;Bolivia (Plurinational State of);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;409;409;28;350;500;950;1200;380;380;380;310;547;2500;2059;2524;2342;967;549;1747;1500;190;226;0;0;0;13;1210;1899;2795;5873;6233;10897;11475;4938;7402;4597;1731;1724;1526;1231;1412;1789;2438;3226;2774;6255;8152;6249
-19;'068;Bolivia (Plurinational State of);1640;Plywood and LVL;5516;Production;m3;200;500;400;900;800;700;700;1400;1500;1300;1400;1300;1100;1900;1900;2000;3000;1300;4400;5900;5800;6000;5000;1000;2000;3400;3400;2800;3500;7000;10000;29000;15000;7000;8000;500;600;4000;4000;4000;4000;4000;5000;6000;13000;13000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-19;'068;Bolivia (Plurinational State of);1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;124;0;0;0;0;0;0;0;0;0;170;10;36;28;56;196;370;156;731;1695;2622;3880;1960;3501;4314;5463;4940;419;1135;1203;966
-19;'068;Bolivia (Plurinational State of);1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;104;0;0;0;0;0;0;0;0;0;50;9;32;29;23;88;180;165;323;769;1441;1990;907;1255;1842;2168;2145;306;706;520;500
-19;'068;Bolivia (Plurinational State of);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;1500;1500;100;1400;1900;2700;3500;1100;1000;1100;500;800;2800;3500;5400;3300;1129;600;1300;400;200;300;0;0;0;8;124;298;2359;7239;6236;12821;8679;2796;5200;2021;30;152;156;24;0;0;0;0;0;664;3296;1154
-19;'068;Bolivia (Plurinational State of);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;409;409;28;350;500;950;1200;380;380;380;310;547;2500;2059;2524;2342;912;549;1555;179;190;226;0;0;0;13;46;122;1018;2938;3298;7397;5423;1940;3021;1230;20;113;355;19;0;0;0;0;0;388;2227;840
-19;'068;Bolivia (Plurinational State of);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;618;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;172;181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;0;192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;3000;3900;5600;5000;5000;5000;5000;1354;1354;1354;7177;7325;9095;15128;5438;33316;40878;47712;52265;66650;80739;70382;55241;77561;78106;83218
-19;'068;Bolivia (Plurinational State of);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;165;0;659;1048;1852;758;758;758;758;185;185;185;3645;3632;5408;9394;3491;14010;16112;14392;13321;15194;21797;19363;13875;22384;23467;23184
-19;'068;Bolivia (Plurinational State of);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;0;0;0;0;0;0;0;0;0;0;0;0;45;27;14;98;98;98;98;0;0;0;0;0;0;291;1023;125
-19;'068;Bolivia (Plurinational State of);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1321;0;0;0;0;0;0;0;0;0;0;0;0;22;73;45;61;61;61;61;0;0;0;0;0;0;121;345;99
-19;'068;Bolivia (Plurinational State of);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;155;409;309;436;1737;2285;1956;1337;1919;1911;1840;1507;1818;1202;1393
-19;'068;Bolivia (Plurinational State of);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;63;202;145;221;583;764;626;354;635;606;517;280;583;487;448
-19;'068;Bolivia (Plurinational State of);1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;334;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;135;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11000;4000;5000;5000;7000;6000;6000;11000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000
-19;'068;Bolivia (Plurinational State of);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;682;1200;2200;900;1300;2600;2300;2200;8000;5000;4200;4200;5600;5600;5600;3283;4014;5452;8976;13128;16284;12483;16494;15458;21944;36698;36483;29171;34889;32993;28826
-19;'068;Bolivia (Plurinational State of);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;258;543;650;351;639;688;656;745;1146;837;703;703;811;811;811;1934;2205;3457;5594;8037;10142;7878;9530;7019;11612;13607;13735;9835;13670;14564;12342
-19;'068;Bolivia (Plurinational State of);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;9000;11119;11119;13144;13144;16000;10979;6423;10653;7379;3250;3044;2220;2144;2691;4256;6670;12109;6760;14386;12767;11020
-19;'068;Bolivia (Plurinational State of);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1164;1777;1777;2935;2935;3500;6030;2925;4336;3306;1650;1550;1110;1054;1277;1789;2438;3226;2774;5746;5580;5310
-19;'068;Bolivia (Plurinational State of);1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11000;4000;5000;5000;7000;6000;6000;6000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-19;'068;Bolivia (Plurinational State of);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;700;200;700;100;100;2000;1000;1000;1000;2400;2400;2400;389;927;826;1338;2729;3080;2198;2822;3709;3484;5172;2774;1854;2692;1414;1267
-19;'068;Bolivia (Plurinational State of);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;204;130;225;40;56;316;141;224;224;300;300;300;265;644;746;909;2013;2136;1400;1740;1951;2172;2664;1748;1163;1534;1022;1084
-19;'068;Bolivia (Plurinational State of);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;11119;11119;13144;13144;16000;10979;6423;10640;7366;3237;3031;2071;2069;2616;4195;6609;8739;6194;13697;11902;10155
-19;'068;Bolivia (Plurinational State of);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1164;1777;1777;2935;2935;3500;6030;2925;4307;3277;1621;1521;1012;979;1202;1739;2388;3185;2253;5346;4974;4704
-19;'068;Bolivia (Plurinational State of);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;600;1900;2200;2100;6000;3000;3000;3000;3000;3000;3000;2589;3011;4419;7214;9548;10052;10150;13657;11720;18365;31254;33210;26962;31395;30861;27218
-19;'068;Bolivia (Plurinational State of);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;382;463;616;689;830;542;433;433;465;465;465;1482;1516;2628;4512;5615;6343;6398;7775;5050;9368;10886;11826;8548;11931;13331;11097
-19;'068;Bolivia (Plurinational State of);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;62;62;48;48;3357;377;500;676;676
-19;'068;Bolivia (Plurinational State of);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;46;46;21;21;12;121;0;206;206
-19;'068;Bolivia (Plurinational State of);1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-19;'068;Bolivia (Plurinational State of);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;100;1000;0;500;0;0;0;0;1000;200;200;200;200;200;305;76;207;424;851;3152;135;15;29;95;272;499;355;802;718;341
-19;'068;Bolivia (Plurinational State of);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;88;116;0;127;0;0;0;0;154;46;46;46;46;46;187;45;83;173;409;1663;80;15;18;72;57;161;124;205;211;161
-19;'068;Bolivia (Plurinational State of);1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;13;13;13;13;13;13;13;13;13;189;189;189;189
-19;'068;Bolivia (Plurinational State of);1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;29;29;29;29;29;29;29;29;29;29;400;400;400;400
-19;'068;Bolivia (Plurinational State of);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;682;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;258;455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1879;Total fibre furnish;5510;Production;t;400;400;400;400;400;400;400;400;400;400;400;500;600;600;600;600;600;600;600;600;600;600;600;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894;1100;2800;8100;3200;3700;2400;2600;2900;2900;1000;1000;1000;3000;3000;3000;4839;3896;2427;7689;12528;14836;19118;19711;25999;21185;29354;34785;51198;56786.04;60798;93822
-19;'068;Bolivia (Plurinational State of);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;991;475;1479;3939;1364;1887;1119;1094;1371;1371;452;135;135;462;462;462;2119;1857;1333;4038;4855;7213;9633;10261;9517;15109;20038;21676;24261;32985.29;41429;43203
-19;'068;Bolivia (Plurinational State of);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2380;1189;1494;1617;746;261;2936;2916;2553;1805;1114;822;106;21;73;139
-19;'068;Bolivia (Plurinational State of);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1598;2063;2102;2030;1552;192;156;226;286;142;45;31;7;4;14;27
-19;'068;Bolivia (Plurinational State of);1878;Pulp for paper;5510;Production;t;400;400;400;400;400;400;400;400;400;400;400;500;600;600;600;600;600;600;600;600;600;600;600;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894;1100;2700;7600;2700;3200;1700;1400;1600;1600;0;0;0;0;0;0;157;1568;312;452;1496;3570;5131;9031;15723;16670;19492;27006;40311;40070.04;39437;52618
-19;'068;Bolivia (Plurinational State of);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;991;475;1454;3618;1243;1722;849;684;896;896;0;0;0;0;0;0;208;986;294;441;976;2610;3606;6379;7654;10623;15549;18442;20438;26371.29;31749;36336
-19;'068;Bolivia (Plurinational State of);1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;912;1152;1152;934;656;93;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1426;2060;2049;1911;1544;181;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894;1100;2700;7600;2700;3200;1700;1400;1600;1600;0;0;0;0;0;0;136;1547;291;431;1494;3568;5129;9053;15667;16694;19517;27031;40336;40085.04;39410;52618
-19;'068;Bolivia (Plurinational State of);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;991;475;1454;3618;1243;1722;849;684;896;896;0;0;0;0;0;0;113;891;199;346;957;2598;3594;6374;7637;10626;15559;18448;20447;26373.29;31643;36283
-19;'068;Bolivia (Plurinational State of);1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;124;64;47;55;369;81
-19;'068;Bolivia (Plurinational State of);1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;134;42;35;45;200;51
-19;'068;Bolivia (Plurinational State of);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;;;;;;;
-19;'068;Bolivia (Plurinational State of);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;19;19;19;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;;;;;;;
-19;'068;Bolivia (Plurinational State of);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;900;900;900;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-19;'068;Bolivia (Plurinational State of);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459;356;356;356;440;440;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-19;'068;Bolivia (Plurinational State of);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;100;1700;6600;1600;2100;1700;1400;1600;1600;0;0;0;0;0;0;136;1547;291;431;1494;3543;5104;9028;15619;16669;19368;26942;40264;40005.04;39016;52512
-19;'068;Bolivia (Plurinational State of);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;100;1079;3243;778;1257;849;684;896;896;0;0;0;0;0;0;113;891;199;346;957;2588;3584;6364;7614;10616;15415;18396;20402;26318.29;31433;36222
-19;'068;Bolivia (Plurinational State of);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;319;319;503;342;562;530;418
-19;'068;Bolivia (Plurinational State of);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;264;264;419;241;503;449;316
-19;'068;Bolivia (Plurinational State of);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;136;1547;291;431;1449;3498;4961;8931;15574;16350;19049;26439;39922;39443.04;38486;52094
-19;'068;Bolivia (Plurinational State of);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;113;891;199;346;950;2581;3496;6317;7607;10352;15151;17977;20161;25815.29;30984;35906
-19;'068;Bolivia (Plurinational State of);1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;100;1700;6600;1600;2100;1700;1400;1600;1600;0;0;0;0;0;0;0;0;0;0;0;0;98;52;0;;;;;;;
-19;'068;Bolivia (Plurinational State of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;100;1079;3243;778;1257;849;684;896;896;0;0;0;0;0;0;0;0;0;0;0;0;81;40;0;;;;;;;
-19;'068;Bolivia (Plurinational State of);1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25
-19;'068;Bolivia (Plurinational State of);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10
-19;'068;Bolivia (Plurinational State of);1668;Pulp from fibres other than wood;5510;Production;t;400;400;400;400;400;400;400;400;400;400;400;500;600;600;600;600;600;600;600;600;600;600;600;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;21;21;21;2;27;27;3;81;1;0;0;0;10;52;25
-19;'068;Bolivia (Plurinational State of);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;95;95;95;95;19;22;22;15;27;7;0;4;1;8;116;63
-19;'068;Bolivia (Plurinational State of);1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;912;1152;1152;934;656;93;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1426;2060;2049;1911;1544;181;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;203;203;7;7;5;5;5;8;8;1;0;0;10;10
-19;'068;Bolivia (Plurinational State of);1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;147;147;14;14;8;8;8;22;19;6;0;0;7;7
-19;'068;Bolivia (Plurinational State of);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;500;500;500;700;1200;1300;1300;1000;1000;1000;3000;3000;3000;4682;2328;2115;7237;11032;11266;13987;10680;10276;4515;9862;7779;10887;16716;21361;41204
-19;'068;Bolivia (Plurinational State of);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;321;121;165;270;410;475;475;452;135;135;462;462;462;1911;871;1039;3597;3879;4603;6027;3882;1863;4486;4489;3234;3823;6614;9680;6867
-19;'068;Bolivia (Plurinational State of);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1468;37;342;683;90;168;2936;2916;2553;1805;1114;822;106;21;73;139
-19;'068;Bolivia (Plurinational State of);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;172;3;53;119;8;11;156;226;286;142;45;31;7;4;14;27
-19;'068;Bolivia (Plurinational State of);1876;Paper and paperboard;5510;Production;t;500;400;500;500;500;500;500;500;500;500;500;600;600;500;500;500;500;500;500;500;500;500;500;500;500;500;2000;2000;2000;5000;5000;5000;5000;5000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1876;Paper and paperboard;5610;Import quantity;t;4500;5900;4800;3500;6900;6900;7700;7700;9500;12900;12900;12900;12900;12900;12900;12900;15700;16000;18000;17000;18000;13000;13000;10500;9500;11000;14500;14800;14600;14200;14200;23384;28200;28600;51900;18600;29100;33613;47037;61895;44222;47249;50535;66108;61130;71728;79914;87976;81006;85848;89662;88928;92785;103788;108037;93330;115196;111637;103513;76459;79386.94;96848;88531
-19;'068;Bolivia (Plurinational State of);1876;Paper and paperboard;5622;Import value;1000 USD;1018;700;410;719;1245;1245;1411;1782;2272;3460;3460;3460;3460;3460;3460;3460;8731;8937;10200;11700;12500;8400;8400;7400;6900;7700;9400;9600;9560;9400;9500;16558;18718;21626;51910;13560;20605;25815;33168;37328;31726;34485;32502;44189;43794;54499;66658;81845;72434;78655;90447;85194;88032;101379;93189;75876;103523;107956;98060;66617;74376.13;106096;108092
-19;'068;Bolivia (Plurinational State of);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;300;700;500;500;0;0;0;0;0;0;0;0;0;0;0;72;250;428;206;327;327;327;327;332;332;209;654;2667;4443;10079;2948
-19;'068;Bolivia (Plurinational State of);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;308;1517;1019;1019;0;0;0;0;0;0;0;0;0;0;0;32;175;253;167;243;243;243;243;251;259;162;872;2583;3556.76;11711.08;3669.08
-19;'068;Bolivia (Plurinational State of);2042;Graphic papers;5610;Import quantity;t;3700;2100;200;3400;4800;4800;5700;6000;7200;8600;8600;8600;8600;8600;8600;8600;10900;11200;13000;12000;13000;8000;8000;5500;4500;6000;9500;9800;9600;9200;9200;15142;18300;23100;13700;8300;15100;20462;27089;42445;29398;35452;37190;47311;40264;47867;52916;58569;56395;57191;60156;61110;64590;70721;62291;58862;65698;65948;63005;38688;44485.49;63489;53828
-19;'068;Bolivia (Plurinational State of);2042;Graphic papers;5622;Import value;1000 USD;909;400;50;703;728;728;894;1277;1546;2057;2057;2057;2057;2057;2057;2057;5455;5661;6700;8000;8800;4700;4700;3700;3200;4000;5700;5900;5860;5700;5800;11371;12688;16046;12701;6860;11717;16437;20718;24637;23035;27278;24592;33845;30986;38969;46547;57110;53016;51853;59511;59107;61451;66693;57270;49231;59080;64386;60897;35627;40654.79;67478;71824
-19;'068;Bolivia (Plurinational State of);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;106;366;131;252;252;252;252;252;252;120;120;612;115;219;219
-19;'068;Bolivia (Plurinational State of);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;33;170;39;115;115;115;115;115;115;18;18;486;10;147.08;147.08
-19;'068;Bolivia (Plurinational State of);1671;Newsprint;5610;Import quantity;t;3700;2100;200;1800;3100;3100;3700;3300;5300;4700;4700;4700;4700;4700;4700;4700;6300;6000;7000;6000;7000;6500;6500;4000;3000;4500;8000;8300;8100;7700;7700;7628;9200;9500;11300;6200;13000;12813;14200;23839;11167;10000;11000;11091;9000;8989;9400;12549;10959;11429;14011;12334;14102;13236;12979;11397;8040;8201;6065;2929;2308.42;4082;2416
-19;'068;Bolivia (Plurinational State of);1671;Newsprint;5622;Import value;1000 USD;909;400;50;313;319;319;485;529;978;950;950;950;950;950;950;950;2373;2172;2600;2200;3000;2900;2900;1900;1400;2200;3900;4100;4060;3900;4000;4947;5784;5822;9473;4744;9601;9059;9823;8077;8253;5003;4959;6087;5823;6348;6698;9970;8818;8084;11340;10243;11442;10314;9353;6362;4921;5939;4274;1764;1735.78;3249;1936
-19;'068;Bolivia (Plurinational State of);1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;115;115;115;115;115;115;115;115;115;115;115;115
-19;'068;Bolivia (Plurinational State of);1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;8;8;8;8;8;8;8;8;8;8;8;8
-19;'068;Bolivia (Plurinational State of);1674;Printing and writing papers;5610;Import quantity;t;;;;1600;1700;1700;2000;2700;1900;3900;3900;3900;3900;3900;3900;3900;4600;5200;6000;6000;6000;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;7514;9100;13600;2400;2100;2100;7649;12889;18606;18231;25452;26190;36220;31264;38878;43516;46020;45436;45762;46145;48776;50488;57485;49312;47465;57658;57747;56940;35759;42177.07;59407;51412
-19;'068;Bolivia (Plurinational State of);1674;Printing and writing papers;5622;Import value;1000 USD;;;;390;409;409;409;748;568;1107;1107;1107;1107;1107;1107;1107;3082;3489;4100;5800;5800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;6424;6904;10224;3228;2116;2116;7378;10895;16560;14782;22275;19633;27758;25163;32621;39849;47140;44198;43769;48171;48864;50009;56379;47917;42869;54159;58447;56623;33863;38919.01;64229;69888
-19;'068;Bolivia (Plurinational State of);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;106;357;122;137;137;137;137;137;137;5;5;497;0;104;104
-19;'068;Bolivia (Plurinational State of);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;33;165;34;107;107;107;107;107;107;10;10;478;2;139.08;139.08
-19;'068;Bolivia (Plurinational State of);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649;323;326;231;452;59;10;88;55;522;496;468;861;257;332;376;345;426;372;467;467;165;31;28;162;221
-19;'068;Bolivia (Plurinational State of);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;261;287;219;371;78;21;111;95;500;501;454;651;319;321;331;326;418;236;391;391;209;58;52;127;204
-19;'068;Bolivia (Plurinational State of);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5444;10566;14380;14000;23000;24131;30481;28176;32697;35161;37691;37537;35448;38388;40736;40934;43788;35426;41390;42964;41685;44622;26676;33742;43804;39438
-19;'068;Bolivia (Plurinational State of);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5019;7663;12076;10302;20174;17680;23023;22635;26714;31700;38738;35963;33581;39447;39936;40328;43014;34644;37257;40160;41900;44411;24895;29788;43284;53104
-19;'068;Bolivia (Plurinational State of);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;352;117;132;132;132;132;132;132;4;4;496;0;104;104
-19;'068;Bolivia (Plurinational State of);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;162;31;104;104;104;104;104;104;8;8;476;2;139;139
-19;'068;Bolivia (Plurinational State of);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1556;2000;3900;4000;2000;2000;5729;3000;6126;7833;7833;7431;9453;7500;7708;9178;13352;13460;5703;14227;15595;12153;9052;8407.07;15441;11753
-19;'068;Bolivia (Plurinational State of);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2076;2971;4197;4261;1730;1875;4714;2417;5812;7649;7901;7781;9537;8405;8607;9350;13039;12855;5376;13608;16156;12003;8910;9079.01;20818;16580
-19;'068;Bolivia (Plurinational State of);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;1;1;1;0;0;0
-19;'068;Bolivia (Plurinational State of);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;2;2;2;0;0.08;0.08
-19;'068;Bolivia (Plurinational State of);1675;Other paper and paperboard;5510;Production;t;500;400;500;500;500;500;500;500;500;500;500;600;600;500;500;500;500;500;500;500;500;500;500;500;500;500;2000;2000;2000;5000;5000;5000;5000;5000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1675;Other paper and paperboard;5610;Import quantity;t;800;3800;4600;100;2100;2100;2000;1700;2300;4300;4300;4300;4300;4300;4300;4300;4800;4800;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;8242;9900;5500;38200;10300;14000;13151;19948;19450;14824;11797;13345;18797;20866;23861;26998;29407;24611;28657;29506;27818;28195;33067;45746;34468;49498;45689;40508;37771;34901.45;33359;34703
-19;'068;Bolivia (Plurinational State of);1675;Other paper and paperboard;5622;Import value;1000 USD;109;300;360;16;517;517;517;505;726;1403;1403;1403;1403;1403;1403;1403;3276;3276;3500;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;5187;6030;5580;39209;6700;8888;9378;12450;12691;8691;7207;7910;10344;12808;15530;20111;24735;19418;26802;30936;26087;26581;34686;35919;26645;44443;43570;37163;30990;33721.34;38618;36268
-19;'068;Bolivia (Plurinational State of);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;300;700;500;500;0;0;0;0;0;0;0;0;0;0;0;72;144;62;75;75;75;75;75;80;80;89;534;2055;4328;9860;2729
-19;'068;Bolivia (Plurinational State of);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;308;1517;1019;1019;0;0;0;0;0;0;0;0;0;0;0;32;142;83;128;128;128;128;128;136;144;144;854;2097;3546.76;11564;3522
-19;'068;Bolivia (Plurinational State of);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;2700;3000;100;200;150;347;1000;243;272;333;165;176;111;1840;1913;3719;3412;1562;5098;3760;3460;3696;3705.89;2276;2527
-19;'068;Bolivia (Plurinational State of);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;3422;3856;108;282;111;251;543;249;341;455;200;167;120;2771;2632;5403;4742;2227;7135;4527;3291;2573;3948.39;4047;4345
-19;'068;Bolivia (Plurinational State of);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;7;7;19;479;1927;1408;5555;2231
-19;'068;Bolivia (Plurinational State of);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;10;18;22;777;2038;1677;8149;3111
-19;'068;Bolivia (Plurinational State of);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11168;15581;12101;13912;11266;12914;18189;19657;23370;26526;28842;24065;26668;26981;24814;24726;26751;42040;32611;44131;41626;36799;33819;31004.57;30876;31980
-19;'068;Bolivia (Plurinational State of);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7976;8268;7595;7333;6229;7161;9476;11620;14550;19050;23402;18029;22616;24764;21648;22063;25002;30065;23390;36286;37774;32813;27290;28690.17;33568;30860
-19;'068;Bolivia (Plurinational State of);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;72;90;6;19;19;19;19;19;19;19;16;1;128;2920;4305;498
-19;'068;Bolivia (Plurinational State of);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;32;66;5;50;50;50;50;50;50;50;46;1;58;1868.76;3414;410
-19;'068;Bolivia (Plurinational State of);1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;800;3800;4600;100;2100;2100;2000;1700;2300;4300;4300;4300;4300;4300;4300;4300;4800;4800;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;8242;9900;5500;38200;10300;14000;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;109;300;360;16;517;517;517;505;726;1403;1403;1403;1403;1403;1403;1403;3276;3276;3500;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;5187;6030;5580;39209;6700;8888;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;300;700;500;500;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;308;1517;1019;1019;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-19;'068;Bolivia (Plurinational State of);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4172;7013;5424;6000;4000;6000;10841;11032;13186;15060;17097;13778;16895;15635;12980;13027;14373;28202;21079;30225;26748;20300;22066;20717.18;19923;21032
-19;'068;Bolivia (Plurinational State of);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2315;3238;2565;2783;1830;2593;4695;5298;6608;8746;10800;7834;10783;11352;8513;9872;10587;16453;11142;20059;20633;14809;14931;16282.83;17361;14666
-19;'068;Bolivia (Plurinational State of);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;18;4;4;4;4;4;4;4;4;1;1;128;2920;3768;446
-19;'068;Bolivia (Plurinational State of);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;34;5;5;5;5;5;5;5;5;1;1;58;1868.76;2920;352
-19;'068;Bolivia (Plurinational State of);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;1440;1296;2000;2185;3351;3347;2565;3348;4072;4890;3904;4892;5321;7394;7516;8203;9942;7249;7800;6910;7383;6778;4110.8;5234;5888
-19;'068;Bolivia (Plurinational State of);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768;2178;1961;1618;1860;2337;2550;2512;3307;4123;6230;5018;7072;7332;8214;7873;9813;9932;9065;10807;9745;9572;8127;6193.34;8530;9638
-19;'068;Bolivia (Plurinational State of);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;2;15;15;15;15;15;15;15;15;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;45;45;45;45;45;45;45;45;0;0;0;1;1
-19;'068;Bolivia (Plurinational State of);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5577;6958;5227;5823;5000;3557;4000;6000;6599;7157;6510;5942;4709;5487;4225;3716;3747;3522;4046;4633;6525;7571;4224;5735;5071;3845
-19;'068;Bolivia (Plurinational State of);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3758;2755;2953;2866;2462;2225;2229;3782;4510;6056;6135;4908;4650;5615;4700;3947;4260;3374;3023;4206;6312;7318;3709;5856;7080;5539
-19;'068;Bolivia (Plurinational State of);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;52
-19;'068;Bolivia (Plurinational State of);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;57
-19;'068;Bolivia (Plurinational State of);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;170;154;89;81;6;1;60;237;237;345;441;172;538;215;467;428;374;237;1473;1443;1545;751;441.58;648;1215
-19;'068;Bolivia (Plurinational State of);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;97;116;66;77;6;2;28;125;125;237;269;111;465;221;371;342;306;160;1214;1084;1114;523;358;597;1017
-19;'068;Bolivia (Plurinational State of);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1583;1667;4349;812;331;281;261;209;248;200;232;381;1813;2414;1164;1556;2597;294;295;269;303;249;256;191;207;196
-19;'068;Bolivia (Plurinational State of);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1212;760;1240;1250;696;638;617;645;731;720;878;1189;4019;6052;1668;1886;4281;1112;1028;1022;1269;1059;1127;1082.78;1003;1063
-19;'068;Bolivia (Plurinational State of);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;54;54;54;54;54;54;54;54;0;0;0;0
-19;'068;Bolivia (Plurinational State of);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;76;76;76;76;76;76;76;1;1;1;1
-19;'068;Bolivia (Plurinational State of);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22845;20519;19300;12352;19007;20928;21024
-19;'068;Bolivia (Plurinational State of);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31093;33891;32584;26029;44809;54383;38741
-19;'068;Bolivia (Plurinational State of);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;276;64;82;57;163;81
-19;'068;Bolivia (Plurinational State of);2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16690;19589;19924;15286;28162;35991;27308
-19;'068;Bolivia (Plurinational State of);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;146;20;25;55;160;81
-19;'068;Bolivia (Plurinational State of);1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;260;260;260;260;2449;2449
-19;'068;Bolivia (Plurinational State of);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;130;44;57;2;3;0
-19;'068;Bolivia (Plurinational State of);1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16430;19329;19664;15026;27902;33542;24859
-19;'068;Bolivia (Plurinational State of);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;201;228;240;102;265;925
-19;'068;Bolivia (Plurinational State of);1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;1
-19;'068;Bolivia (Plurinational State of);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536;512;470;344;650;464;381
-19;'068;Bolivia (Plurinational State of);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;49;27;36;35;23;17
-19;'068;Bolivia (Plurinational State of);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1461;1526;1598;878;1409;1141;1064
-19;'068;Bolivia (Plurinational State of);1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6556;6444;5496;4358;5859;6976;6311
-19;'068;Bolivia (Plurinational State of);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18497;16411;15205;9198;15324;16686;16736
-19;'068;Bolivia (Plurinational State of);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7619;7549;6960;6172;10583;10317;4711
-19;'068;Bolivia (Plurinational State of);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;48;7;316;1;1;27
-19;'068;Bolivia (Plurinational State of);1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32
-19;'068;Bolivia (Plurinational State of);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1851;1545;1728;1294;1464;2208;1810
-19;'068;Bolivia (Plurinational State of);1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;258;175;175;168;1074;361
-19;'068;Bolivia (Plurinational State of);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44126;48937;45211;39156;45549;52039;50470
-19;'068;Bolivia (Plurinational State of);5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1574;3419;5502;6847;10354;12439;11272
-19;'068;Bolivia (Plurinational State of);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;126;220;62;368;439;37
-19;'068;Bolivia (Plurinational State of);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5924;7037;6616;4907;6603;7442;7511
-19;'068;Bolivia (Plurinational State of);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1;1;1
-19;'068;Bolivia (Plurinational State of);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12963;9810;9924;7509;7667;9805;8395
-19;'068;Bolivia (Plurinational State of);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;440;372;2217;1456;623;1612
-19;'068;Bolivia (Plurinational State of);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16219;22374;18473;18937;23014;22729;22957
-19;'068;Bolivia (Plurinational State of);1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;2811;5044;4548;8366;11108;9476
-19;'068;Bolivia (Plurinational State of);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8903;9590;9978;7741;7897;11624;11570
-19;'068;Bolivia (Plurinational State of);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;168;86;82;531;707;183
-80;'070;Bosnia and Herzegovina;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404237.99;474005;456943;420914;543180;644626;531781
-80;'070;Bosnia and Herzegovina;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865992.76;976672;866076;879379;1198709;1278501;1131178
-80;'070;Bosnia and Herzegovina;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2569;2315;336;336;336;21733;10206;23229;23229;23229;23229;23229;114865;126934;126934;142802;241209;183518;191776;222230;193623;213102;245957;212176;233317;249258.35;296352;280158;259396;346329;421329;325532
-80;'070;Bosnia and Herzegovina;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7838;2381;316;316;316;56184;64541;66033;66848;61494;63701;70658;260819;210047;210724;303264;343466;283838;319859;401589;349802;408497;436785;383606;391708;432748.77;472568;385244;391953;567223;613753;483998
-80;'070;Bosnia and Herzegovina;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;4000000;4130000;4130000;4282000;3818000;4224000;4097886;3993000;3806000;4105000;3752000;4011000;3428530;3879000;4171000;4090000;4335000;4152200;4421710;4573100;4375300;4613406;4458000;4303000;4225000;3885221;3726230
-80;'070;Bosnia and Herzegovina;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1481;7;7;7;2264;0;0;0;0;0;0;13387;53634;53634;30371;153150;54320;112020;117000;48000;34000;22628;44396;43060;36080;84450;159490;163590;146080;258091;159979
-80;'070;Bosnia and Herzegovina;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;62;1;1;1;104;1;62;62;62;62;62;267;3154;3154;3115;15328;4803;9342;9597;4173;3817;2651;4497;5170;3927.59;8248;14343;14453;17640;48580;27944
-80;'070;Bosnia and Herzegovina;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198;1057;;;;25737;0;0;0;0;0;132970;437733;445510;445510;409002;555710;586230;706100;826000;742000;825000;814000;739080;898150;973050;894390;708410;609500;771710;511322;479295
-80;'070;Bosnia and Herzegovina;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;216;;;;2493;5355;6809;6809;1455;3662;8839;22505;20638;20639;20442;36533;37822;43772;57072;49889;59859;60663;48989;58185;65729.68;72079;58696;49839;70224;77077;71107
-80;'070;Bosnia and Herzegovina;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060000;2160000;2160000;2204000;2065000;2108000;1931000;1816000;1684000;1749000;1592000;1723000;1395530;1621000;1794000;1830000;2015000;2075900;2065030;2247310;2034300;2321079;2115293;2125000;2019000;1885436;1879395
-80;'070;Bosnia and Herzegovina;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22810;74180;140310;137170;108150;231264;140162
-80;'070;Bosnia and Herzegovina;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974.13;5845;11698;10328;11300;42055;22715
-80;'070;Bosnia and Herzegovina;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92660;54920;33180;39580;43570;22507;17338
-80;'070;Bosnia and Herzegovina;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6285.34;5270;3384;4432;5322;4887;3275
-80;'070;Bosnia and Herzegovina;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;1940000;1970000;1970000;2078000;1753000;2116000;2166886;2177000;2122000;2356000;2160000;2288000;2033000;2258000;2377000;2260000;2320000;2076300;2356680;2325790;2341000;2292327;2342707;2178000;2206000;1999785;1846835
-80;'070;Bosnia and Herzegovina;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13270;10270;19180;26420;37930;26827;19817
-80;'070;Bosnia and Herzegovina;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953.46;2403;2645;4125;6340;6525;5229
-80;'070;Bosnia and Herzegovina;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880390;839470;675230;569920;728140;488815;461957
-80;'070;Bosnia and Herzegovina;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59444.35;66809;55312;45407;64902;72190;67832
-80;'070;Bosnia and Herzegovina;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910000;910000;910000;950000;860000;1150000;1215000;1310000;1362000;1459000;1339000;1440000;1329000;1418000;1495000;1418000;1489000;1347900;1462270;1501090;1491300;1555000;1549000;1484000;1488000;1318608;1209034
-80;'070;Bosnia and Herzegovina;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;7;7;7;35;0;0;0;0;0;0;524;149;149;149;350;570;520;1000;1000;1000;628;326;620;1020;3450;2060;1450;1540;1912;404
-80;'070;Bosnia and Herzegovina;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;1;1;1;1;1;0;0;0;0;0;17;8;8;8;26;34;159;45;311;141;46;30;49;42.16;126;58;63;63;68;93
-80;'070;Bosnia and Herzegovina;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;102;;;;1633;0;0;0;0;0;0;194219;289803;289803;289803;434010;463810;488690;597000;568000;707000;694000;670660;798280;877620;839720;670430;559150;699090;465713;453009
-80;'070;Bosnia and Herzegovina;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;;;;52;0;35;35;35;35;35;7050;10339;10339;10339;26098;29074;30058;41471;38777;50642;51055;41982;48893;57609.54;65357;53244;43330;57080;61871;62899
-80;'070;Bosnia and Herzegovina;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;13000;25000;31000;26000;32000;20000;13000;11000;8000;2000;3000;3000;3000;2000;2000;4580;2070;1300;12000;9000;5000;10000;3475;1221
-80;'070;Bosnia and Herzegovina;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;2920;1870;1120;1120;1511;106
-80;'070;Bosnia and Herzegovina;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16.57;79;42;31;28;34;50
-80;'070;Bosnia and Herzegovina;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19210;10460;8530;7340;10290;9387;9244
-80;'070;Bosnia and Herzegovina;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952.14;1471;1251;1142;1834;1820;1897
-80;'070;Bosnia and Herzegovina;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900000;900000;900000;937000;835000;1119000;1189000;1278000;1342000;1446000;1328000;1432000;1327000;1415000;1492000;1415000;1487000;1345900;1457690;1499020;1490000;1543000;1540000;1479000;1478000;1315133;1207813
-80;'070;Bosnia and Herzegovina;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;530;190;330;420;401;298
-80;'070;Bosnia and Herzegovina;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25.59;47;16;32;35;34;43
-80;'070;Bosnia and Herzegovina;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858410;829260;661900;551810;688800;456326;443765
-80;'070;Bosnia and Herzegovina;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55657.4;63886;51993;42188;55246;60051;61002
-80;'070;Bosnia and Herzegovina;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;7;7;7;35;0;0;0;0;0;0;524;149;149;149;350;570;520;1000;1000;1000;628;326;620;;;;;;;
-80;'070;Bosnia and Herzegovina;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;1;1;1;1;1;0;0;0;0;0;17;8;8;8;26;34;159;45;311;141;46;30;49;;;;;;;
-80;'070;Bosnia and Herzegovina;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;102;;;;1633;0;0;0;0;0;0;194219;289803;289803;289803;434010;463810;488690;597000;568000;707000;694000;670660;798280;;;;;;;
-80;'070;Bosnia and Herzegovina;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;;;;52;0;35;35;35;35;35;7050;10339;10339;10339;26098;29074;30058;41471;38777;50642;51055;41982;48893;;;;;;;
-80;'070;Bosnia and Herzegovina;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;3090000;3220000;3220000;3332000;2958000;3074000;2882886;2683000;2444000;2646000;2413000;2571000;2099530;2461000;2676000;2672000;2846000;2804300;2959440;3072010;2884000;3058406;2909000;2819000;2737000;2566613;2517196
-80;'070;Bosnia and Herzegovina;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;105;;;;2229;0;0;0;0;0;0;12863;53485;53485;30222;152800;53750;111500;116000;47000;33000;22000;44070;42440;35060;81000;157430;162140;144540;256179;159575
-80;'070;Bosnia and Herzegovina;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;22;;;;103;0;62;62;62;62;62;250;3146;3146;3107;15302;4769;9183;9552;3862;3676;2605;4467;5121;3885.43;8122;14285;14390;17577;48512;27851
-80;'070;Bosnia and Herzegovina;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2447;955;;;;24104;0;0;0;0;0;132970;243514;155707;155707;119199;121700;122420;217410;229000;174000;118000;120000;68420;99870;95430;54670;37980;50350;72620;45609;26286
-80;'070;Bosnia and Herzegovina;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574;215;;;;2441;5355;6774;6774;1420;3627;8804;15455;10299;10300;10103;10435;8748;13714;15601;11112;9217;9608;7007;9292;8120.15;6722;5452;6509;13144;15206;8208
-80;'070;Bosnia and Herzegovina;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050000;2150000;2150000;2191000;2040000;2077000;1905000;1784000;1664000;1736000;1581000;1715000;1393530;1618000;1791000;1827000;2013000;2073900;2060450;2245240;2033000;2309079;2106293;2120000;2009000;1881961;1878174
-80;'070;Bosnia and Herzegovina;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;105;;;;72;0;0;0;0;0;0;2686;44270;44270;21007;131800;13640;47210;86000;18000;17000;16000;32760;26540;22220;71260;138440;136050;107030;229753;140056
-80;'070;Bosnia and Herzegovina;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;22;;;;15;0;0;0;0;0;0;188;3084;3084;2506;11847;1223;3412;5973;1297;1207;1049;1941;2037;1957.56;5766;11656;10297;11272;42021;22665
-80;'070;Bosnia and Herzegovina;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;23;;;;15200;0;0;0;0;0;71000;150589;104295;104295;67787;36700;86990;92090;87000;53000;68000;63000;44650;69260;73450;44460;24650;32240;33280;13120;8094
-80;'070;Bosnia and Herzegovina;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2;;;;918;1;1420;1420;1420;3627;3627;7689;5215;5215;5019;2610;5942;6441;6853;3961;4974;4434;3076;4560;4333.2;3799;2133;3290;3488;3067;1378
-80;'070;Bosnia and Herzegovina;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;105;;;;72;0;0;0;0;0;0;2686;44270;44270;21007;131800;13640;47210;86000;18000;17000;16000;32760;26540;22220;71260;138440;136050;107030;229753;140056
-80;'070;Bosnia and Herzegovina;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;22;;;;15;0;0;0;0;0;0;188;3084;3084;2506;11847;1223;3412;5973;1297;1207;1049;1941;2037;1957.56;5766;11656;10297;11272;42021;22665
-80;'070;Bosnia and Herzegovina;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;23;;;;15200;0;0;0;0;0;71000;150589;104295;104295;67787;36700;86990;92090;87000;53000;68000;63000;44650;69260;73450;44460;24650;32240;33280;13120;8094
-80;'070;Bosnia and Herzegovina;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2;;;;918;1;1420;1420;1420;3627;3627;7689;5215;5215;5019;2610;5942;6441;6853;3961;4974;4434;3076;4560;4333.2;3799;2133;3290;3488;3067;1378
-80;'070;Bosnia and Herzegovina;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;1040000;1070000;1070000;1141000;918000;997000;977886;899000;780000;910000;832000;856000;706000;843000;885000;845000;833000;730400;898990;826770;851000;749327;802707;699000;728000;684652;639022
-80;'070;Bosnia and Herzegovina;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;;2157;0;0;0;0;0;0;10177;9215;9215;9215;21000;40110;64290;30000;29000;16000;6000;11310;15900;12840;9740;18990;26090;37510;26426;19519
-80;'070;Bosnia and Herzegovina;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;;;;88;0;62;62;62;62;62;62;62;62;601;3455;3546;5771;3579;2565;2469;1556;2526;3084;1927.87;2356;2629;4093;6305;6491;5186
-80;'070;Bosnia and Herzegovina;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021;932;;;;8904;0;0;0;0;0;61970;92925;51412;51412;51412;85000;35430;125320;142000;121000;50000;57000;23770;30610;21980;10210;13330;18110;39340;32489;18192
-80;'070;Bosnia and Herzegovina;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;213;;;;1523;5354;5354;5354;0;0;5177;7766;5084;5085;5084;7825;2806;7273;8748;7151;4243;5174;3931;4732;3786.95;2923;3319;3219;9656;12139;6830
-80;'070;Bosnia and Herzegovina;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4851;20;0;0;0;0;2;3;34;1600;80;0;0;960;0;0;0
-80;'070;Bosnia and Herzegovina;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;444;23;0;0;0;0;1;1;8;457;38.62;0;0;0;1;0;0
-80;'070;Bosnia and Herzegovina;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;130;70;0;10;25979;0;0;0;0;0;0;0;0;0;30;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;1;0;4;2688;0;0;0;0;0;0;0;0;0;9.01;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;;2157;0;0;0;0;0;0;10177;9215;9215;4364;20980;40110;64290;30000;29000;15998;5997;11276;14300;12760;9740;18990;25130;37510;26426;19519
-80;'070;Bosnia and Herzegovina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;;;;88;0;62;62;62;62;62;62;62;62;157;3432;3546;5771;3579;2565;2468;1555;2518;2627;1889.25;2356;2629;4093;6304;6491;5186
-80;'070;Bosnia and Herzegovina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021;932;;;;8904;0;0;0;0;0;61840;92855;51412;51402;25433;85000;35430;125320;142000;121000;50000;57000;23770;30610;21950;10210;13330;18110;39340;32489;18192
-80;'070;Bosnia and Herzegovina;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;213;;;;1523;5354;5354;5354;0;0;5171;7765;5084;5081;2396;7825;2806;7273;8748;7151;4243;5174;3931;4732;3777.94;2923;3319;3219;9656;12139;6830
-80;'070;Bosnia and Herzegovina;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;2800000;2800000;2800000;2875000;2531000;2637000;2446000;2247000;2030000;2150000;1924000;2041000;1597000;1722000;1873000;1871000;2020660;1935000;2105830;2152960;2111000;2221497;2150000;2031000;2028000;1910571;1852551
-80;'070;Bosnia and Herzegovina;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800000;1800000;1800000;1811000;1664000;1712000;1549000;1395000;1300000;1349000;1196000;1308000;1029000;1132000;1254000;1279000;1429230;1311200;1332730;1444130;1385000;1551170;1444791;1417000;1386000;1313100;1290840
-80;'070;Bosnia and Herzegovina;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;1000000;1000000;1000000;1064000;867000;925000;897000;852000;730000;801000;728000;733000;568000;590000;619000;592000;591430;623800;773100;708830;726000;670327;705209;614000;642000;597471;561711
-80;'070;Bosnia and Herzegovina;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;130000;158000;141000;133000;143886;196000;155000;233000;250000;285000;322000;517000;535000;561000;654580;707300;690950;742710;614000;644466;591000;614000;559000;512516;526289
-80;'070;Bosnia and Herzegovina;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;126000;118000;116000;120000;173000;134000;145000;169000;182000;204000;340000;358000;384000;462990;623700;589340;648560;515000;589466;513528;559000;488000;439539;463457
-80;'070;Bosnia and Herzegovina;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;32000;23000;17000;23886;23000;21000;88000;81000;103000;118000;177000;177000;177000;191590;83600;101610;94150;99000;55000;77472;55000;71000;72977;62832
-80;'070;Bosnia and Herzegovina;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290000;290000;290000;299000;286000;304000;293000;240000;259000;263000;239000;245000;180530;222000;268000;240000;170760;162000;162660;176340;159000;192443;168000;174000;150000;143526;138356
-80;'070;Bosnia and Herzegovina;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;250000;250000;254000;258000;249000;236000;216000;230000;242000;216000;225000;160530;146000;179000;164000;120780;139000;138380;152550;133000;168443;147974;144000;135000;129322;123877
-80;'070;Bosnia and Herzegovina;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;45000;28000;55000;57000;24000;29000;21000;23000;20000;20000;76000;89000;76000;49980;23000;24280;23790;26000;24000;20026;30000;15000;14204;14479
-80;'070;Bosnia and Herzegovina;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;25000;25000;22000;22000;13690;20000;17000;19000;19000;25000;31000;86000;45000;40000;30000;32000;30000;32000;24112;19056
-80;'070;Bosnia and Herzegovina;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;29;39;53;53;53;53;53;86;276;276;158;270;640;290;354;233;209;420;470;440;780;890;1750;840;700;760;1026
-80;'070;Bosnia and Herzegovina;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;8;0;0;0;0;0;0;39;76;76;58;115;297;140;153;106;95;209;275;250;378.26;647;956;568;812;996;1031
-80;'070;Bosnia and Herzegovina;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2520;2500;2500;4620;4620;4620;11800;21963;22170;19800;21996;19200;17750;14050;16000;17000;19960;25000;23920;23460;24780;19520;16520;19200;19590;24876;34158
-80;'070;Bosnia and Herzegovina;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;698;698;698;1513;1513;1513;3293;7240;6665;7341;9078;9488;8801;6755;8024;8139;9263;12181;9948;9642;10735.73;9147;8067;9703;10728;13623;12616
-80;'070;Bosnia and Herzegovina;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19244;12678;37236;124257;196566;264000;287500;339000;94000;24000;103000;105000;200000;275000;330000;300000;300000;267000;250000;96459;107230
-80;'070;Bosnia and Herzegovina;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6500;6500;6500;6500;6500;840;1153;1153;764;910;2070;1780;9080;0;4879;7270;5770;2060;6690;18920;11750;8530;23060;20176;7303
-80;'070;Bosnia and Herzegovina;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;581;581;581;581;581;53;70;70;57;114;174;125;284;44;135;213;197;97;284.24;890;487;363;899;1094;545
-80;'070;Bosnia and Herzegovina;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;30396;54485;54485;165744;239440;275770;265160;318270;17000;68000;47000;39510;17080;20680;22190;24170;30310;33270;12522;47523
-80;'070;Bosnia and Herzegovina;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;795;1626;1626;10171;15766;24715;24300;29760;1522;4865;3633;2454;1241;1175.55;1275;1320;1357;1629;1909;4053
-80;'070;Bosnia and Herzegovina;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4236;4236;99123;8566;39000;34730;69000;3000;14000;23000;23000;100000;180000;150000;200000;200000;180000;160000;24459;26230
-80;'070;Bosnia and Herzegovina;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;294;294;294;60;120;760;7340;0;879;270;1240;220;4980;17340;6510;4730;18220;16741;5157
-80;'070;Bosnia and Herzegovina;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;7;7;7;23;28;15;148;28;51;58;81;50;238.56;836;310;239;737;945;445
-80;'070;Bosnia and Herzegovina;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;344;;;;;;;;;;;19230;19225;19225;19225;17660;21050;12520;10530;13000;22000;14000;7510;14060;19700;21860;22460;30150;33100;12496;44632
-80;'070;Bosnia and Herzegovina;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;;;;;;;;;;;468;534;534;534;1195;1776;1404;1180;1178;1948;1731;1173;1029;1070.85;1234;1255;1335;1589;1901;3879
-80;'070;Bosnia and Herzegovina;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19244;8442;33000;25134;188000;225000;252770;270000;91000;10000;80000;82000;100000;95000;180000;100000;100000;87000;90000;72000;81000
-80;'070;Bosnia and Herzegovina;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;;;;6654;6500;6500;6500;6500;6500;6500;817;859;859;470;850;1950;1020;1740;0;4000;7000;4530;1840;1710;1580;5240;3800;4840;3435;2146
-80;'070;Bosnia and Herzegovina;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;504;581;581;581;581;581;581;51;63;63;50;91;146;110;136;16;84;155;116;47;45.68;54;177;124;162;149;100
-80;'070;Bosnia and Herzegovina;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;78;;;;75;0;0;0;0;0;0;11166;35260;35260;146519;221780;254720;252640;307740;4000;46000;33000;32000;3020;980;330;1710;160;170;26;2891
-80;'070;Bosnia and Herzegovina;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;;;;5;0;0;0;0;0;0;327;1092;1092;9637;14571;22939;22896;28580;344;2917;1902;1281;212;104.69;41;65;22;40;8;174
-80;'070;Bosnia and Herzegovina;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3435;1687
-80;'070;Bosnia and Herzegovina;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;70
-80;'070;Bosnia and Herzegovina;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;61
-80;'070;Bosnia and Herzegovina;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4
-80;'070;Bosnia and Herzegovina;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;3000;3000;3000;3000;3000
-80;'070;Bosnia and Herzegovina;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010;520;1050;660;1180;5817;381
-80;'070;Bosnia and Herzegovina;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48.09;36;43;56;78;579;30
-80;'070;Bosnia and Herzegovina;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020;1050;890;840;1610;1558;2349
-80;'070;Bosnia and Herzegovina;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96.26;71;59;54;124;119;170
-80;'070;Bosnia and Herzegovina;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243000;314000;327000;349000;400000;400000;350000;247660;202000;225000;222000;208000
-80;'070;Bosnia and Herzegovina;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;532;420;170;180;14710;10140;1740;1040;4330;2353;1000
-80;'070;Bosnia and Herzegovina;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;63;84;32;33;2547.36;1539;302;177;676;425;223
-80;'070;Bosnia and Herzegovina;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191000;259000;262000;216300;214260;189260;169170;127870;108210;135930;114638;124743
-80;'070;Bosnia and Herzegovina;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26888;47993;49090;30813;28598;26490.21;28855;20966;16037;21675;27964;29612
-80;'070;Bosnia and Herzegovina;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;184000;197000;264000;270000;250000;220000;156030;122000;135000;150000;143000
-80;'070;Bosnia and Herzegovina;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;314;270;120;120;14240;9610;1460;530;2780;1205;641
-80;'070;Bosnia and Herzegovina;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;46;60;23;23;2465.97;1471;264;103;488;289;163
-80;'070;Bosnia and Herzegovina;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73000;169000;172000;137350;134620;94280;82060;69900;60960;75680;65524;76071
-80;'070;Bosnia and Herzegovina;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12883;33792;34611;21071;19743;14560.9;14711;12197;10028;13362;14824;18857
-80;'070;Bosnia and Herzegovina;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160000;130000;130000;85000;130000;150000;130000;91630;80000;90000;72000;65000
-80;'070;Bosnia and Herzegovina;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;218;150;50;60;470;530;280;510;1550;1148;359
-80;'070;Bosnia and Herzegovina;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;17;24;9;10;81.39;68;38;74;188;136;60
-80;'070;Bosnia and Herzegovina;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000;90000;90000;78950;79640;94980;87110;57970;47250;60250;49114;48672
-80;'070;Bosnia and Herzegovina;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14005;14201;14479;9742;8855;11929.31;14144;8769;6009;8313;13140;10755
-80;'070;Bosnia and Herzegovina;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;550000;550000;700000;720000;700000;738000;887900;1319000;1319000;1319000;987000;1005430;781320;822000;868000;853000;853000;969390;1060000;1109610;1902480;1749790;1625970;1477000;1650000;1075157;1380079
-80;'070;Bosnia and Herzegovina;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;648;903;142;142;142;8640;17000;20600;20600;20600;20600;20600;12959;16655;16655;30138;39300;36520;39270;55000;64000;76000;109000;110810;139550;131720;164870;157960;136020;161200;113635;97311
-80;'070;Bosnia and Herzegovina;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;463;77;77;77;2743;79;5705;5705;5705;5705;5705;3782;4821;4821;9061;12671;9453;9230;13010;14755;17004;24164;23868;31965;32175.01;41220;39512;36912;49117;53085;47807
-80;'070;Bosnia and Herzegovina;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15007;6208;1079;1079;1079;255000;151000;226460;226460;226460;226460;226460;1174568;931727;931727;976755;909940;629140;674390;789000;762000;743000;899000;936090;951530;983120;942570;845120;846170;987540;600703;515288
-80;'070;Bosnia and Herzegovina;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4184;1549;266;266;266;47352;57172;57172;57172;57172;57172;57172;184760;141483;141483;218679;215143;137237;142233;177455;159008;165058;197744;182391;193296;207557.99;218417;189738;195597;283998;288688;227428
-80;'070;Bosnia and Herzegovina;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;450000;450000;450000;489000;566500;621000;621000;621000;624000;650000;509110;513000;560000;539000;537000;660000;713890;746440;673640;710180;610750;620000;743000;101000;380500
-80;'070;Bosnia and Herzegovina;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;609;142;142;142;1440;12000;12000;12000;12000;12000;12000;2545;3976;3976;6961;13340;9730;4730;5000;3000;3000;4000;5170;4160;7710;7080;7950;6590;7180;6561;9639
-80;'070;Bosnia and Herzegovina;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;197;77;77;77;394;77;3679;3679;3679;3679;3679;587;696;696;1613;3439;2276;1142;1443;972;960;1213;1591;1028;1904.47;2375;2599;2354;3482;4292;4393
-80;'070;Bosnia and Herzegovina;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;151000;150000;225500;225500;225500;225500;225500;639364;563651;563651;596368;537970;384090;434170;531000;515000;518000;640000;636630;630490;658760;644890;579340;590440;717940;411416;355629
-80;'070;Bosnia and Herzegovina;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;20570;20378;20378;20378;20378;20378;20378;81580;67150;67150;91863;97133;62338;63592;83337;76321;82105;100920;87676;84363;88322.43;95027;81143;83801;144738;137514;103577
-80;'070;Bosnia and Herzegovina;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;250000;250000;250000;270000;250000;249000;321400;698000;698000;698000;363000;355430;272210;309000;308000;314000;316000;309390;346110;363170;1228840;1039610;1015220;857000;907000;974157;999579
-80;'070;Bosnia and Herzegovina;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;294;;;;7200;5000;8600;8600;8600;8600;8600;10414;12679;12679;23177;25960;26790;34540;50000;61000;73000;105000;105640;135390;124010;157790;150010;129430;154020;107074;87672
-80;'070;Bosnia and Herzegovina;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;266;;;;2349;2;2026;2026;2026;2026;2026;3195;4125;4125;7448;9232;7177;8088;11567;13783;16044;22951;22277;30937;30270.55;38845;36913;34558;45635;48793;43414
-80;'070;Bosnia and Herzegovina;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15007;6208;1079;1079;1079;104000;1000;960;960;960;960;960;535204;368076;368076;380387;371970;245050;240220;258000;247000;225000;259000;299460;321040;324360;297680;265780;255730;269600;189287;159659
-80;'070;Bosnia and Herzegovina;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4184;1549;266;266;266;26782;36794;36794;36794;36794;36794;36794;103180;74333;74333;126816;118010;74899;78641;94118;82687;82953;96824;94715;108933;119235.55;123390;108595;111796;139260;151174;123851
-80;'070;Bosnia and Herzegovina;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;9400;12000;12000;14000;14000;20000;11940;15000;13000;12000;14000;17000;17550;26920;26560;22430;22130;14000;20000;133337;74669
-80;'070;Bosnia and Herzegovina;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;3;3;3;250;150;150;150;150;150;150;1186;1246;1246;2369;4100;2880;3130;4000;2000;3606;3490;3100;5270;5860;7240;10010;8250;11820;7677;7988
-80;'070;Bosnia and Herzegovina;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;9;9;9;492;9;441;441;441;441;441;2368;2035;2035;3673;4879;4200;4488;5120;4409;6977;5307;5249;6154;7339.93;9358;8500;7195;10889;10102;9545
-80;'070;Bosnia and Herzegovina;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5400;7800;10500;10500;10500;10500;10500;13925;13094;13094;14188;13130;8910;8630;8088;7000;7000;6150;6170;8470;7840;7100;5780;6030;7230;5537;6789
-80;'070;Bosnia and Herzegovina;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2976;23;23;23;23;23;23;7880;7491;7491;13150;14766;9326;9097;8370;6481;7033;7241;7725;11586;10808.57;10846;9543;10890;16063;16114;16565
-80;'070;Bosnia and Herzegovina;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;34000;34000;34000;34000;34000;34000;34000;34000;34000;12000;17300;16000;16000;14280;28000;8050;7970;18000;24000;21000;24000;35100;40890;36930;41840;33880;30460;41000;48000;46897;65949
-80;'070;Bosnia and Herzegovina;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3708;719;;;;19338;22620;30870;30870;30870;30870;30870;117880;145591;145591;224624;224690;178480;178180;185503;169000;183000;217000;220980;250010;272600;285850;284510;284450;334380;308864;273362
-80;'070;Bosnia and Herzegovina;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;218;;;;5091;1261;6139;6139;6139;6139;6139;36859;43484;43484;69417;84187;59627;55724;66610;57458;62632;75018;63917;69038;78117.83;88163;83203;80808;117939;121876;118431
-80;'070;Bosnia and Herzegovina;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3879;73;430;430;430;2398;3910;4802;4802;4802;4802;4802;13593;12364;12364;8837;2070;8050;8910;12138;3800;15395;19670;19710;22230;22810;18870;17790;18300;22930;23164;19920
-80;'070;Bosnia and Herzegovina;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2076;38;50;50;50;1503;132;178;178;178;178;178;8507;7966;7966;7580;1531;4934;5842;9413;2289;11272;14833;13694;15545;16686.4;14719;14984;15511;22026;24939;21424
-80;'070;Bosnia and Herzegovina;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;34000;34000;34000;34000;34000;34000;34000;34000;34000;12000;16200;14000;14000;12000;10000;6050;6000;14000;11000;13000;14000;22000;28080;22820;27620;23960;20360;27000;30000;0;15000
-80;'070;Bosnia and Herzegovina;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;63;;;;1400;900;900;900;900;900;900;4183;6703;6703;3517;4310;8370;8820;10503;6000;10000;9000;9230;10730;12510;14210;16320;14520;18070;15440;13952
-80;'070;Bosnia and Herzegovina;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;34;;;;835;1;660;660;660;660;660;3032;4708;4708;3254;3891;7312;7187;7951;4357;6361;6511;5379;6124;8019.79;9735;10194;9049;13304;14502;12447
-80;'070;Bosnia and Herzegovina;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2438;37;430;430;430;1972;3500;4270;4270;4270;4270;4270;9026;10706;10706;7123;1510;6150;7680;10255;3000;14000;17410;18200;20160;20880;16480;16000;16290;19930;20908;17587
-80;'070;Bosnia and Herzegovina;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1666;26;50;50;50;1344;50;50;50;50;50;50;5364;6856;6856;6356;1149;4034;5308;8786;1958;10768;14189;12802;14779;15738.97;13582;13868;14225;19910;23065;19575
-80;'070;Bosnia and Herzegovina;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-80;'070;Bosnia and Herzegovina;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;110
-80;'070;Bosnia and Herzegovina;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;81
-80;'070;Bosnia and Herzegovina;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6
-80;'070;Bosnia and Herzegovina;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5
-80;'070;Bosnia and Herzegovina;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2727;626;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1441;36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;0;0;280;16000;2000;1970;4000;11000;5000;6000;9100;9810;9110;8220;6070;6370;10000;10000;13648;12324
-80;'070;Bosnia and Herzegovina;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400;19000;27200;27200;27200;27200;27200;79050;94429;94429;122702;139720;109090;111120;113000;110000;111000;133000;131640;146470;154740;158360;162020;156880;188210;167710;162898
-80;'070;Bosnia and Herzegovina;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3675;4;4223;4223;4223;4223;4223;17351;20374;20374;34171;47066;30284;27843;34139;31288;31810;38197;32534;35299;38806.03;43454;41655;38834;57201;61440;56889
-80;'070;Bosnia and Herzegovina;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;150;150;150;150;150;150;3412;1151;1151;1183;349;370;520;987;800;983;990;900;450;630;870;750;1090;1580;1266;1357
-80;'070;Bosnia and Herzegovina;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;46;46;46;46;46;2777;965;965;1060;238;301;236;267;225;292;347;490;256;386.02;438;500;651;1181;1001;923
-80;'070;Bosnia and Herzegovina;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;1000;2000;2000;1000;2000;3000;3000;3000;2000;3000;0;0
-80;'070;Bosnia and Herzegovina;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1900;1900;13772;2040;2370;1800;2000;2000;3000;4000;4640;5970;8630;8680;580;12060;10810;10936;14948
-80;'070;Bosnia and Herzegovina;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;487;487;5015;931;784;708;973;948;1194;1344;1297;1655;2398.43;2807;164;3370;4967;4386;4987
-80;'070;Bosnia and Herzegovina;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;1;30;20;13;0;17;10;10;30;40;10;50;10;260;42;42
-80;'070;Bosnia and Herzegovina;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;9;11;4;3;5;5;6;12;29.43;3;13;7;169;36;28
-80;'070;Bosnia and Herzegovina;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;800;2000;2000;2000;2000;0;0;0;1000;2000;2000;2000;2000;3000;3000;850;730;2000;5000;33249;38625
-80;'070;Bosnia and Herzegovina;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;30;;;;1538;2720;2770;2770;2770;2770;2770;33747;42559;42559;84633;78620;58650;56440;60000;51000;59000;71000;75470;86840;96720;104600;105590;100990;117290;114778;81564
-80;'070;Bosnia and Herzegovina;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;11;;;;581;1256;1256;1256;1256;1256;1256;16151;17915;17915;26977;32299;21247;19986;23547;20865;23267;28966;24707;25960;28893.58;32167;31190;29555;42467;41548;44108
-80;'070;Bosnia and Herzegovina;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;290;260;382;382;382;382;382;1155;507;507;507;210;1500;690;883;0;395;1260;600;1590;1260;1510;990;910;1160;948;934
-80;'070;Bosnia and Herzegovina;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;107;82;82;82;82;82;82;366;145;145;145;143;590;287;356;103;207;292;396;498;531.98;696;603;628;766;837;898
-80;'070;Bosnia and Herzegovina;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;800;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;1000;0;0;0;1000;0;0
-80;'070;Bosnia and Herzegovina;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;1800;1800;1800;1800;1800;1800;19887;24752;24752;1743;23050;14830;11370;11000;13000;12000;16000;14100;11640;11670;11190;10620;10270;12080;13564;13555
-80;'070;Bosnia and Herzegovina;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;987;987;987;987;987;987;12420;13630;13630;1068;15481;9597;7662;8070;9133;8250;11040;8326;6751;6953.38;6877;6296;6106;8131;10085;10303
-80;'070;Bosnia and Herzegovina;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;60;82;82;82;82;82;652;62;62;62;80;10;20;76;0;23;10;30;110;300;400;480;480;470;586;586
-80;'070;Bosnia and Herzegovina;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;168;44;44;44;58;11;15;57;25;78;20;28;73;272.49;360;415;412;419;659;619
-80;'070;Bosnia and Herzegovina;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;2000;2000;850;510;2000;4000;33249;38625
-80;'070;Bosnia and Herzegovina;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;120;170;170;170;170;170;9847;13366;13366;80914;43060;37170;41000;46000;37000;46000;54000;59370;71330;79250;86300;87870;83210;99390;28310;58774
-80;'070;Bosnia and Herzegovina;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;119;119;119;119;119;119;2942;3495;3495;25633;14731;10689;11633;14935;11482;14772;17719;16130;18723;21283.76;24305;23911;22440;33427;15976;32391
-80;'070;Bosnia and Herzegovina;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;300;300;300;300;300;147;44;44;44;110;300;150;693;0;288;250;140;890;820;880;330;240;530;141;287
-80;'070;Bosnia and Herzegovina;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;82;82;82;82;66;21;21;21;75;241;72;264;43;109;118;117;310;215.14;276;117;134;293;108;245
-80;'070;Bosnia and Herzegovina;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1000;2000;1000;1000;1000;1000;0;0;220;0;0;0;0
-80;'070;Bosnia and Herzegovina;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;;;;400;800;800;800;800;800;800;4013;4441;4441;1976;12510;6650;4070;3000;1000;1000;1000;2000;3870;5800;7110;7100;7510;5820;72904;9235
-80;'070;Bosnia and Herzegovina;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;;;;55;150;150;150;150;150;150;789;790;790;276;2087;961;691;542;250;245;207;251;486;656.44;985;983;1009;909;15487;1414
-80;'070;Bosnia and Herzegovina;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;45;0;0;0;0;0;0;356;401;401;401;20;1190;520;114;0;84;1000;430;590;140;230;180;190;160;221;61
-80;'070;Bosnia and Herzegovina;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;0;0;0;0;0;0;132;80;80;80;10;338;200;35;35;20;154;251;115;44.35;60;71;82;54;70;34
-80;'070;Bosnia and Herzegovina;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-80;'070;Bosnia and Herzegovina;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;10515;40000;60800;92000;116000;116000;122000;123000;138240;101000;127880;130700;117500;122000;130000;121000;108331
-80;'070;Bosnia and Herzegovina;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;433;78;78;78;1559;4323;4361;4361;4361;4361;4361;65478;65498;65498;57497;55901;47655;42140;44010;39000;41515;41050;41700;46803;45864;45206;41630;43890;49260;51026;51824
-80;'070;Bosnia and Herzegovina;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;120;33;33;33;167;818;818;818;818;818;818;21056;20468;20468;25906;29690;21873;27466;29806;23356;26864;26130;25427;24958;25882.06;31539;26657;22112;28035;37494;30588
-80;'070;Bosnia and Herzegovina;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;14;0;0;0;745;1132;1144;1144;1144;1144;1144;12220;13517;13517;20472;23700;24910;40104;45000;40000;42000;43110;46310;44860;47241;41104;50150;44350;37770;45241;51009
-80;'070;Bosnia and Herzegovina;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;1;0;0;0;53;68;68;68;68;68;68;1250;1177;1177;2800;3599;2811;5945;7868;5298;6388;6500;6103;6682;7831.74;7194;6878;5158;8053;10109;8088
-80;'070;Bosnia and Herzegovina;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;10515;33000;40800;58000;79000;78000;80000;80000;86240;46000;67880;80700;65500;77000;80000;84000;83331
-80;'070;Bosnia and Herzegovina;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;51;51;51;149;1923;1961;1961;1961;1961;1961;31545;33627;33627;33671;36001;37555;34590;35010;34000;37515;38050;37860;41953;41604;39626;40010;41370;38630;42756;39079
-80;'070;Bosnia and Herzegovina;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;24;24;24;95;694;694;694;694;694;694;17431;17186;17186;22848;26942;20852;26375;27922;22545;26130;25415;24740;24172;25143.45;30588;26376;21832;25760;35693;28659
-80;'070;Bosnia and Herzegovina;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;0;;;;24;32;44;44;44;44;44;0;0;0;50;0;0;74;0;0;0;110;0;30;1;24;20;0;0;8;0
-80;'070;Bosnia and Herzegovina;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;0;;;;9;0;0;0;0;0;0;0;0;0;1;0;0;54;0;14;0;48;0;13;0.65;22;19;0;0;9;0
-80;'070;Bosnia and Herzegovina;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;10515;33000;40800;58000;79000;78000;80000;80000;86240;46000;67880;80700;65500;77000;80000;84000;83331
-80;'070;Bosnia and Herzegovina;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;51;51;51;95;1851;1862;1862;1862;1862;1862;31545;33674;33674;33719;36000;37545;34580;35001;34000;37482;38031;37833;41903;41584;39596;39980;41320;38520;42723;39027
-80;'070;Bosnia and Herzegovina;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;24;24;24;47;694;694;694;694;694;694;17431;17219;17219;22881;26938;20844;26364;27911;22546;26075;25385;24703;24109;25104.74;30550;26336;21766;25644;35631;28554
-80;'070;Bosnia and Herzegovina;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;0;;;;24;32;44;44;44;44;44;0;0;0;50;0;0;74;0;0;0;110;0;10;0;24;20;0;0;8;0
-80;'070;Bosnia and Herzegovina;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;0;;;;9;0;0;0;0;0;0;0;0;0;1;0;0;54;0;0;0;48;0;7;0;22;19;0;0;9;0
-80;'070;Bosnia and Herzegovina;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2370;1220;940;40;50;229;30
-80;'070;Bosnia and Herzegovina;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1317.5;693;518;27;40;146;31
-80;'070;Bosnia and Herzegovina;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1772;2800;2820;2370;2000;3000;3000;3000;680;60;;;;;;;
-80;'070;Bosnia and Herzegovina;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1081;2025;1396;1720;1392;1443;1546;1633;355;32;;;;;;;
-80;'070;Bosnia and Herzegovina;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;0;0;0;50;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;59;46;46;3;0;5;0;0;0;194;0;2080;2230;;;;;;;
-80;'070;Bosnia and Herzegovina;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;35;23;23;3;0;3;0;0;0;114;1;1142;1133;;;;;;;
-80;'070;Bosnia and Herzegovina;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10515;33000;40800;58000;79000;78000;80000;80000;86240;46000;67880;80700;65500;77000;80000;84000;83331
-80;'070;Bosnia and Herzegovina;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;51;51;51;73;1829;1840;1840;1840;1840;1840;31486;33580;33580;31896;33200;34720;32210;33000;31000;34288;35030;35070;39613;39214;38376;39040;41280;38470;42494;38997
-80;'070;Bosnia and Herzegovina;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;24;24;24;37;684;684;684;684;684;684;17396;17162;17162;21763;24913;19445;24643;26518;21102;24414;23749;23203;22939;23786.65;29854;25814;21736;25601;35483;28521
-80;'070;Bosnia and Herzegovina;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;;;;;24;32;44;44;44;44;44;0;0;0;0;0;0;70;0;0;0;110;0;10;0;24;20;0;0;8;0
-80;'070;Bosnia and Herzegovina;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;;;;;9;0;0;0;0;0;0;0;0;0;0;0;0;51;0;0;0;48;0;7;0;22;19;0;0;9;0
-80;'070;Bosnia and Herzegovina;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10515;33000;40800;58000;79000;78000;80000;80000;86240;46000;67880;80700;65500;77000;80000;0;0
-80;'070;Bosnia and Herzegovina;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1825;1422;1422;1349;0;20;0;0;0;0;0;0;4660;1570;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;637;637;808;0;12;0;0;0;0;0;0;2731;904.3;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;84000;83331
-80;'070;Bosnia and Herzegovina;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;51;51;51;51;1800;1800;1800;1800;1800;1800;19044;24998;24998;23746;14500;17210;17720;18000;21000;33000;35000;35060;34940;37640;38370;38810;41160;38460;42342;38976
-80;'070;Bosnia and Herzegovina;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;24;24;24;24;684;684;684;684;684;684;10450;12943;12943;16413;10958;9659;13599;14023;14257;23795;23720;23178;20196;22871.74;29838;25637;21654;25575;35340;28464
-80;'070;Bosnia and Herzegovina;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;70;0;0;0;110;0;10;0;24;20;0;0;8;0
-80;'070;Bosnia and Herzegovina;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;;;;;;;;;;;;0;0;0;0;0;0;51;0;0;0;48;0;7;0;22;19;0;0;9;0
-80;'070;Bosnia and Herzegovina;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;230;120;10;152;21
-80;'070;Bosnia and Herzegovina;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10.61;16;177;82;26;143;57
-80;'070;Bosnia and Herzegovina;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;0;0;0;0;350;0;0;0;288;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;0;0;213;0;0;0;148;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;29;40;40;40;40;40;10467;7160;7160;6801;18700;17140;14490;15000;10000;1000;30;10;13;;;;;;;
-80;'070;Bosnia and Herzegovina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;0;0;0;0;6053;3582;3582;4542;13955;9561;11044;12495;6845;471;29;25;12;;;;;;;
-80;'070;Bosnia and Herzegovina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;32;44;44;44;44;44;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-80;'070;Bosnia and Herzegovina;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;48;48;48;0;0;0;1;0;0;1;3;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;34;34;0;0;1;1;1;1;2;3;5;0.59;3;4;3;3;2;2
-80;'070;Bosnia and Herzegovina;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;72;99;99;99;99;99;0;1;1;0;1;10;10;10;0;33;20;30;50;20;30;30;50;110;33;52
-80;'070;Bosnia and Herzegovina;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;0;0;0;0;0;0;1;1;1;4;8;12;12;0;56;32;40;68;39.3;41;44;69;119;64;107
-80;'070;Bosnia and Herzegovina;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;1;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;0;0;0;0;0;0;0;0;14;0;0;0;6;0.65;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;52;52;115;210;170;100;480;1;99;220;70;470;260;300;110;160;300;317;208
-80;'070;Bosnia and Herzegovina;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;32;32;85;167;119;72;975;3;48;173;48;726;338.46;416;94;99;305;441;159
-80;'070;Bosnia and Herzegovina;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;399;1;0;2;0;0;2;0;0;0;23;0
-80;'070;Bosnia and Herzegovina;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;185;1;0;1;0;0.18;1;0;0;4;22;0
-80;'070;Bosnia and Herzegovina;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;20000;34000;37000;38000;42000;43000;52000;55000;60000;50000;52000;45000;50000;37000;25000
-80;'070;Bosnia and Herzegovina;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;249;27;27;27;1410;2400;2400;2400;2400;2400;2400;33933;31871;31871;23826;19900;10100;7550;9000;5000;4000;3000;3840;4850;4260;5580;1620;2520;10630;8270;12745
-80;'070;Bosnia and Herzegovina;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;21;9;9;9;72;124;124;124;124;124;124;3625;3282;3282;3058;2748;1021;1091;1884;811;734;715;687;786;738.6;951;281;280;2275;1801;1929
-80;'070;Bosnia and Herzegovina;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;721;1100;1100;1100;1100;1100;1100;12220;13517;13517;20422;23700;24910;40030;45000;40000;42000;43000;46310;44830;47240;41080;50130;44350;37770;45233;51009
-80;'070;Bosnia and Herzegovina;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;44;68;68;68;68;68;68;1250;1177;1177;2799;3599;2811;5891;7868;5284;6388;6452;6103;6669;7831.1;7172;6859;5158;8053;10100;8088
-80;'070;Bosnia and Herzegovina;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;81000;81000;117944;111341;92510;107880;112000;146000;128000;149000;106000;146020;97133;135450;142840;99600;122000;136000;113981;129854
-80;'070;Bosnia and Herzegovina;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1122;1390;298;298;298;13508;12700;12700;12700;12700;12700;12700;52498;59666;59666;32997;74170;71540;74480;78000;77000;76000;93000;86290;97410;97990;105940;104880;99190;114440;108495;76432
-80;'070;Bosnia and Herzegovina;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1173;1378;216;216;216;12624;7457;9483;9483;9483;9483;9483;50413;52760;52760;31396;94058;82972;85188;96674;88984;95466;112006;88663;94921;98218.93;114293;106057;96650;119936;146655;89227
-80;'070;Bosnia and Herzegovina;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;643;0;0;0;3324;3200;3200;3200;3200;3200;3200;49289;41825;41825;22783;51150;79750;90624;99209;105249;106116;91640;105520;78930;105130;112850;82100;112690;134220;110898;86729
-80;'070;Bosnia and Herzegovina;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;784;546;0;0;0;1104;1093;1085;1085;1085;1085;1085;27882;23001;23001;21364;46640;58192;81915;103627;90103;96765;84900;81488;66933;85636.46;109964;74993;87807;132699;153189;92935
-80;'070;Bosnia and Herzegovina;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;2000;19250;50721;2700;3350;7000;8000;0;0;1300;980;753;440;530;500;2000;2000;1939;1833
-80;'070;Bosnia and Herzegovina;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;514;98;98;98;8061;3800;3800;3800;3800;3800;3800;27184;29085;29085;14318;39170;36520;35790;36000;35000;35000;40000;39650;41430;40640;42890;40600;33360;39890;36891;30852
-80;'070;Bosnia and Herzegovina;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;658;125;125;125;8025;2;2028;2028;2028;2028;2028;24287;24370;24370;12538;45726;38253;36382;39772;35511;36089;39093;33523;34342;35243.08;42479;37102;29207;37870;47055;38081
-80;'070;Bosnia and Herzegovina;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;500;0;0;0;24;0;0;0;0;0;0;349;663;663;120;806;810;1042;2175;2210;1823;2170;1790;1870;1760;2240;1850;940;1840;1358;1109
-80;'070;Bosnia and Herzegovina;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;492;0;0;0;9;8;0;0;0;0;0;190;406;406;67;1072;1061;1374;2288;1601;1666;2082;1689;1629;1631.58;2609;1920;1004;1767;1750;1226
-80;'070;Bosnia and Herzegovina;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;2000;19250;0;0;0;0;0;0;0;400;430;400;340;480;400;0;0;272;0
-80;'070;Bosnia and Herzegovina;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;3093;3800;3800;3800;3800;3800;3800;10647;11031;11031;11834;12270;10650;9160;8000;8000;8000;8000;6300;7050;6020;5850;4420;2330;2790;2608;1486
-80;'070;Bosnia and Herzegovina;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;;;;1726;2;2028;2028;2028;2028;2028;6117;6317;6317;8549;9485;8159;5546;6207;5436;5570;5063;3163;3527;3084.73;3275;2475;1229;1676;2323;1212
-80;'070;Bosnia and Herzegovina;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;182;423;423;35;0;30;2;130;210;215;150;50;30;120;70;80;140;90;184;101
-80;'070;Bosnia and Herzegovina;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;0;0;0;0;0;60;251;251;29;0;21;2;75;137;138;127;27;21;73.91;45;53;79;48;142;93
-80;'070;Bosnia and Herzegovina;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50721;2700;3350;7000;8000;0;0;900;550;353;100;50;100;2000;2000;1667;1833
-80;'070;Bosnia and Herzegovina;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;509;98;98;98;4968;;;;;;;16537;18054;18054;2484;26900;25870;26630;28000;27000;27000;32000;33350;34380;34620;37040;36180;31030;37100;34283;29366
-80;'070;Bosnia and Herzegovina;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;654;125;125;125;6299;;;;;;;18170;18053;18053;3989;36241;30094;30836;33565;30075;30519;34030;30360;30815;32158.35;39204;34627;27978;36194;44732;36869
-80;'070;Bosnia and Herzegovina;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;500;;;;24;;;;;;;167;240;240;85;806;780;1040;2045;2000;1608;2020;1740;1840;1640;2170;1770;800;1750;1174;1008
-80;'070;Bosnia and Herzegovina;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;492;;;;9;;;;;;;130;155;155;38;1072;1040;1372;2213;1464;1528;1955;1662;1608;1557.66;2564;1867;925;1719;1608;1133
-80;'070;Bosnia and Herzegovina;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50509;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1371;1133;1133;1133;1200;1430;970;1000;1000;1000;1000;780;700;650;1080;1260;1660;1740;1855;1211
-80;'070;Bosnia and Herzegovina;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496;1311;1311;1311;1962;1904;1434;1386;1430;823;585;710;625;609.99;934;1009;1019;1293;1702;1272
-80;'070;Bosnia and Herzegovina;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;83;83;83;6;10;10;45;0;38;20;30;10;10;30;70;180;120;23;23
-80;'070;Bosnia and Herzegovina;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;29;29;29;4;13;40;33;60;30;42;37;14;24.61;44;73;140;102;45;32
-80;'070;Bosnia and Herzegovina;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2700;3350;7000;8000;0;0;800;540;340;100;50;100;2000;2000;1667;1833
-80;'070;Bosnia and Herzegovina;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7805;9415;9415;7;15100;16510;16900;18000;16000;17000;18000;18870;19030;19400;20780;20570;17190;21260;18477;16370
-80;'070;Bosnia and Herzegovina;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7523;8149;8149;55;18464;16743;17775;19614;16398;17684;18366;16141;16245;17074.33;21210;19115;14910;20091;24548;19538
-80;'070;Bosnia and Herzegovina;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;104;104;0;500;540;680;1000;1000;1000;1000;1130;1100;1010;1260;1010;270;1270;660;510
-80;'070;Bosnia and Herzegovina;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;67;67;1;611;609;783;1401;750;955;1212;1073;952;935.32;1372;1086;476;1242;1020;641
-80;'070;Bosnia and Herzegovina;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;212;0;0;0;0;0;0;100;10;13;0;0;0;0;0;0;0
-80;'070;Bosnia and Herzegovina;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7361;7506;7506;1344;10600;7930;8760;9000;10000;9000;13000;13700;14650;14570;15180;14350;12180;14100;13951;11785
-80;'070;Bosnia and Herzegovina;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9151;8593;8593;2623;15815;11447;11627;12565;12247;12012;15079;13509;13945;14474.03;17060;14503;12049;14810;18482;16059
-80;'070;Bosnia and Herzegovina;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;53;53;2;300;230;350;1000;1000;570;1000;580;730;620;880;690;350;360;491;475
-80;'070;Bosnia and Herzegovina;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;59;59;8;457;418;549;779;654;543;701;552;642;597.74;1148;708;309;375;543;460
-80;'070;Bosnia and Herzegovina;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;79000;79000;98694;60620;89810;104530;105000;138000;128000;149000;104700;145040;96380;135010;142310;99100;120000;134000;112042;128021
-80;'070;Bosnia and Herzegovina;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;876;200;200;200;5447;8900;8900;8900;8900;8900;8900;25314;30581;30581;18679;35000;35020;38690;42000;42000;41000;53000;46640;55980;57350;63050;64280;65830;74550;71604;45580
-80;'070;Bosnia and Herzegovina;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;720;91;91;91;4599;7455;7455;7455;7455;7455;7455;26126;28390;28390;18858;48332;44719;48806;56902;53473;59377;72913;55140;60579;62975.85;71814;68955;67443;82066;99600;51146
-80;'070;Bosnia and Herzegovina;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;143;;;;3300;3200;3200;3200;3200;3200;3200;48940;41162;41162;22663;50344;78940;89582;97034;103039;104293;89470;103730;77060;103370;110610;80250;111750;132380;109540;85620
-80;'070;Bosnia and Herzegovina;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;54;;;;1095;1085;1085;1085;1085;1085;1085;27692;22595;22595;21297;45568;57131;80541;101339;88502;95099;82818;79799;65304;84004.89;107355;73073;86803;130932;151439;91709
-80;'070;Bosnia and Herzegovina;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32000;32000;36305;25930;35880;35640;33000;34000;32000;35000;23100;22280;22900;26880;23260;24300;26000;30000;20038;23519
-80;'070;Bosnia and Herzegovina;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2262;3714;3714;6177;7000;5450;7130;7000;5000;7000;12000;6870;11060;11850;13140;14180;16240;20230;16136;16211
-80;'070;Bosnia and Herzegovina;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2144;3513;3513;7815;10152;6770;9520;9396;6760;8758;15386;8058;11168;11492.96;15469;15180;16055;20364;26853;22117
-80;'070;Bosnia and Herzegovina;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19049;14761;14761;15354;16700;16590;14730;18000;17000;20000;20000;19460;15040;25120;20850;21560;24590;25260;17131;17563
-80;'070;Bosnia and Herzegovina;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18344;13855;13855;18194;22054;19668;18831;24868;20244;24297;24141;20333;22657;25676.6;25702;24209;25771;28833;27024;24599
-80;'070;Bosnia and Herzegovina;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;47000;47000;62360;34039;53860;68820;72000;104000;95000;113000;80000;119390;72250;106460;117740;72500;93000;102000;88980;100990
-80;'070;Bosnia and Herzegovina;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20394;24406;24406;10602;26900;28350;30280;34000;36000;32000;39000;37200;42800;43480;48130;47990;47360;52060;53011;27950
-80;'070;Bosnia and Herzegovina;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19534;20682;20682;8019;33816;33270;34716;42147;39989;40177;46849;37312;41110;42897.01;48579;45060;42574;52241;62760;23041
-80;'070;Bosnia and Herzegovina;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885;26386;26386;7285;33626;62320;74822;79023;86009;84011;69020;83790;61380;77630;89280;58040;86450;106370;91750;68052
-80;'070;Bosnia and Herzegovina;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9336;8716;8716;3069;23479;37420;61689;76439;68157;70209;56674;57429;39850;55777.03;79419;46145;57905;98309;121178;67083
-80;'070;Bosnia and Herzegovina;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11750;11750;15590;0;18450;14800;12000;14000;12000;11000;8700;10310;11720;12480;16020;8400;10000;14000;15433;18716
-80;'070;Bosnia and Herzegovina;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1798;2910;2910;1253;3200;2140;1540;5000;7000;4000;2000;2580;5790;6740;6870;7020;9040;10500;10758;10023
-80;'070;Bosnia and Herzegovina;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042;1705;1705;1153;2632;1556;1230;3695;4528;2405;1684;1557;2871;3348.59;3887;3545;3973;6379;7989;5278
-80;'070;Bosnia and Herzegovina;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20415;21313;21313;5454;10700;13840;7540;6000;6000;7000;6000;9690;9560;12580;13710;8180;10330;18310;9666;6955
-80;'070;Bosnia and Herzegovina;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6266;6574;6574;2226;5446;5337;3379;3062;2631;2966;2778;3638;3558;5010.8;6292;3249;3639;11074;6655;2870
-80;'070;Bosnia and Herzegovina;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11750;11750;15590;10754;5520;8760;6000;8000;8000;20000;7200;10690;0;12340;11920;8600;0;2000;128;64
-80;'070;Bosnia and Herzegovina;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4834;5557;5557;5523;8300;9100;9840;12000;12000;12000;14000;13320;13430;13640;14430;14120;13540;15000;14174;9933
-80;'070;Bosnia and Herzegovina;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8256;8098;8098;4151;16461;17204;17859;23063;21367;23635;24491;20247;21309;22109.49;22244;20048;19004;21454;23130;8835
-80;'070;Bosnia and Herzegovina;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;1090;1090;1772;1700;1700;1350;1000;2000;1000;1000;1150;820;1030;1000;990;1620;1090;933;392
-80;'070;Bosnia and Herzegovina;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;414;414;768;1035;782;923;1164;1604;1073;433;889;611;843;1032;867;1143;1207;1261;300
-80;'070;Bosnia and Herzegovina;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11750;11750;15590;23285;29890;36120;54000;82000;75000;82000;64100;98390;60530;81640;89800;55500;83000;85000;73419;82210
-80;'070;Bosnia and Herzegovina;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11317;12941;12941;828;12500;14560;16030;14000;14000;14000;21000;18850;21040;20530;24560;24450;22860;24330;24937;5959
-80;'070;Bosnia and Herzegovina;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9002;9487;9487;1323;12894;13147;14079;13729;12552;12739;19443;14329;15744;16112.21;21132;20169;18602;23012;28868;7474
-80;'070;Bosnia and Herzegovina;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8485;3979;3979;55;21200;46760;65930;72000;78000;76000;62000;72940;50990;64010;74540;48610;74480;86940;81046;60625
-80;'070;Bosnia and Herzegovina;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2615;1725;1725;72;16982;31280;57386;72199;63915;66163;53446;52896;35673;49918.95;72064;41977;53106;85999;113160;63828
-80;'070;Bosnia and Herzegovina;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11750;11750;15590;0;0;9140;0;0;0;0;0;0;0;0;0;0;0;1000;0;0
-80;'070;Bosnia and Herzegovina;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445;2998;2998;2998;2900;2550;2870;3000;3000;2000;2000;2450;2540;2570;2270;2400;1920;2230;3142;2035
-80;'070;Bosnia and Herzegovina;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1234;1392;1392;1392;1829;1363;1548;1660;1542;1398;1231;1179;1186;1326.72;1316;1298;995;1396;2773;1454
-80;'070;Bosnia and Herzegovina;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;4;26;20;2;23;9;11;20;10;10;10;30;260;20;30;105;80
-80;'070;Bosnia and Herzegovina;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;16;21;1;14;7;7;17;6;8;4.28;31;52;17;29;102;85
-80;'070;Bosnia and Herzegovina;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;651;70;70;0;0;1000;1000;1600;3370;1230;1670;1310;2300;1000;2000;3024;3512
-80;'070;Bosnia and Herzegovina;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;8900;8900;8900;8900;8900;2658;2461;2461;1900;1100;1220;1280;1000;1000;2000;2000;2570;2120;2020;1780;2110;2230;2260;2457;1419
-80;'070;Bosnia and Herzegovina;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7455;7455;7455;7455;7455;7455;4448;4195;4195;3024;4364;4679;4570;5359;6724;10442;10678;9770;8301;8585.88;7766;8715;8814;9461;9987;5988
-80;'070;Bosnia and Herzegovina;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;3200;3200;3200;3200;6;15;15;24;18;30;30;11;30;282;450;480;640;620;480;650;710;750;659;5
-80;'070;Bosnia and Herzegovina;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085;1085;1085;1085;1085;1085;12;24;24;34;35;43;21;32;101;593;2003;2037;2797;2551.26;2234;2719;3127;3790;3237;27
-80;'070;Bosnia and Herzegovina;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68723.87;78463;79397;67164;85359;97055;105539
-80;'070;Bosnia and Herzegovina;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392443.78;453881;432227;438624;570300;586900;568634
-80;'070;Bosnia and Herzegovina;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3660.08;3642;3243;2169;2358;2703;2723
-80;'070;Bosnia and Herzegovina;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32269.26;35239;28147;18875;23253;24343;18880
-80;'070;Bosnia and Herzegovina;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1698.62;1441;1165;1255;1002;995;981
-80;'070;Bosnia and Herzegovina;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570.58;767;832;740;704;869;818
-80;'070;Bosnia and Herzegovina;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961.46;2201;2078;914;1356;1708;1742
-80;'070;Bosnia and Herzegovina;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31698.69;34472;27315;18135;22549;23474;18062
-80;'070;Bosnia and Herzegovina;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198.76;4064;4032;4501;6546;9534;10021
-80;'070;Bosnia and Herzegovina;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14812.49;18182;15517;12473;18238;22475;20818
-80;'070;Bosnia and Herzegovina;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1404.2;1690;1901;1659;2342;1900;2629
-80;'070;Bosnia and Herzegovina;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324.17;489;671;571;1738;971;1149
-80;'070;Bosnia and Herzegovina;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8498.47;9359;10289;9326;12855;13229;14416
-80;'070;Bosnia and Herzegovina;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643.49;47902;56484;62328;85610;89763;88424
-80;'070;Bosnia and Herzegovina;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-80;'070;Bosnia and Herzegovina;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;379
-80;'070;Bosnia and Herzegovina;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;412
-80;'070;Bosnia and Herzegovina;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9379;5125
-80;'070;Bosnia and Herzegovina;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9800;4697
-80;'070;Bosnia and Herzegovina;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-80;'070;Bosnia and Herzegovina;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;295
-80;'070;Bosnia and Herzegovina;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;228
-80;'070;Bosnia and Herzegovina;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;71
-80;'070;Bosnia and Herzegovina;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;72
-80;'070;Bosnia and Herzegovina;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-80;'070;Bosnia and Herzegovina;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9
-80;'070;Bosnia and Herzegovina;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6
-80;'070;Bosnia and Herzegovina;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;81
-80;'070;Bosnia and Herzegovina;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;31
-80;'070;Bosnia and Herzegovina;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47120;54125;59476;48814;60657;68525;74701
-80;'070;Bosnia and Herzegovina;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278047;312794;302703;319026;408326;410908;406134
-80;'070;Bosnia and Herzegovina;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39;97;88;15;150;449;58
-80;'070;Bosnia and Herzegovina;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7268.24;15158;9386;11335;14558;18573;19259
-80;'070;Bosnia and Herzegovina;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4835.97;5486;368;680;451;715;991
-80;'070;Bosnia and Herzegovina;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19079.12;24117;19319;14016;18577;19867;13970
-80;'070;Bosnia and Herzegovina;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86255.77;99190;97388;94354;111492;126242;100710
-80;'070;Bosnia and Herzegovina;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40800.21;50223;48605;48802;61186;77848;78546
-80;'070;Bosnia and Herzegovina;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027.37;2711;2959;2225;2666;2827;2663
-80;'070;Bosnia and Herzegovina;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40.99;35;42;33;28;19;42
-80;'070;Bosnia and Herzegovina;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8315.11;11978;10667;9567;11784;16669;12989
-80;'070;Bosnia and Herzegovina;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449.89;361;520;469;609;823;607
-80;'070;Bosnia and Herzegovina;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17903.56;20281;20382;20187;21885;24201;30044
-80;'070;Bosnia and Herzegovina;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20486.01;26493;23807;24808;28488;43317;54609
-80;'070;Bosnia and Herzegovina;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35647.98;38687;40249;40015;48952;53843;49270
-80;'070;Bosnia and Herzegovina;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16670.61;18946;19513;18967;26231;27321;23086
-80;'070;Bosnia and Herzegovina;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22361.76;25533;23131;22360;26205;28702;5744
-80;'070;Bosnia and Herzegovina;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3152.7;4388;4723;4525;5830;6368;202
-20;'072;Botswana;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121910;146487;156903;141837;184743.93;165660.77;153231.77
-20;'072;Botswana;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11400;9788;5714;3962;6974.51;6878;7148
-20;'072;Botswana;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;259;585;598;598;598;598;598;598;598;1264;1302;1001;1321;1149;1630;1640;1640;1640;1640;5827;9415;9415;8046;8046;8046;8046;8046;8046;8046;24885;25144;27344;24752;20963;15410;15410;15410;15410;15410;15410;15410;15410;15410;15410;58687;65189;69814.35;62313;50275;52670;49393;49408;45771;57355;71007;62360;87586.93;74737.77;69284.77
-20;'072;Botswana;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3711;1834;1439.08;1674.19;1263;1303.04;1597;1984;1918;2016;1451;1512;2243.51;1744;1169
-20;'072;Botswana;1861;Roundwood;5516;Production;m3;605981;609056;612139;615229;618327;621432;624545;627666;630794;634930;633861;620915;617151;614922;638246;639883;657352;657542;668756;673719;680396;687522;683704;685114;690155;694253;696761;690014;684736;687128;689131;691829;704869;712330;720598;726466;731902;730897;735891;740448;744809;749515;754570;759980;765750;770032;774000;778900;783556;788295;791401;794538;797706;800906;804139;804218;804300;804385;804472;804563;804644;804729;804816
-20;'072;Botswana;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;400;300;300;200;400;400;400;400;400;400;400;400;400;400;5697;8490;8713;7117;5999;3061;1899;1948;18630;42478;77316;69289;64820;58990;83760
-20;'072;Botswana;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;103;98;53;55;86;86;86;86;86;86;86;86;86;86;744;992;1130.35;2110;1127;568;389;320;2228;8991;12979;10754;16497;12476;13271
-20;'072;Botswana;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;44;1;130;2;37;2;132;40;35;0;38;55
-20;'072;Botswana;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;19;1;9;5;4;1;18;3;14;2;2;2
-20;'072;Botswana;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12881;34348;46833;38806;59191;45179;44091
-20;'072;Botswana;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;978;8105;11582;9357;14479;10375;10418
-20;'072;Botswana;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;129;40;35;0;23;0
-20;'072;Botswana;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;3;14;2;0;0
-20;'072;Botswana;1863;Roundwood, non-coniferous;5516;Production;m3;605981;609056;612139;615229;618327;621432;624545;627666;630794;634930;633861;620915;617151;614922;638246;639883;657352;657542;668756;673719;680396;687522;683704;685114;690155;694253;696761;690014;684736;687128;689131;691829;704869;712330;720598;726466;731902;730897;735891;740448;744809;749515;754570;759980;765750;770032;774000;778900;783556;788295;791401;794538;797706;800906;804139;804218;804300;804385;804472;804563;804644;804729;804816
-20;'072;Botswana;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5749;8130;30483;30483;5629;13811;39669
-20;'072;Botswana;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;886;1397;1397;2018;2101;2853
-20;'072;Botswana;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;0;0;0;15;55
-20;'072;Botswana;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;2;2
-20;'072;Botswana;1864;Wood fuel;5516;Production;m3;573981;576056;578139;580229;582327;584432;586545;588666;590794;592930;590861;575915;571151;566922;588246;587883;604352;602542;611756;614719;618396;623522;617704;617114;619155;621253;620761;611014;603736;603128;602131;602829;612869;617330;623598;627466;629902;627897;630891;635448;639809;644515;649570;654980;660750;665032;669000;673900;678556;683295;686401;689538;692706;695906;699139;699218;699300;699385;699472;699563;699644;699729;699816
-20;'072;Botswana;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;400;300;300;200;400;400;400;400;400;400;400;400;400;400;85;130;21;240;449;151;230;93;11;73;74;149;117;41;2
-20;'072;Botswana;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;103;98;53;55;86;86;86;86;86;86;86;86;86;86;5;41;4;54;110;29;37;16;40;17;16;32;37;16;2
-20;'072;Botswana;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;49
-20;'072;Botswana;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2
-20;'072;Botswana;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;73;74;149;117;3;2
-20;'072;Botswana;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;17;16;32;37;12;1
-20;'072;Botswana;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1628;Wood fuel, non-coniferous;5516;Production;m3;573981;576056;578139;580229;582327;584432;586545;588666;590794;592930;590861;575915;571151;566922;588246;587883;604352;602542;611756;614719;618396;623522;617704;617114;619155;621253;620761;611014;603736;603128;602131;602829;612869;617330;623598;627466;629902;627897;630891;635448;639809;644515;649570;654980;660750;665032;669000;673900;678556;683295;686401;689538;692706;695906;699139;699218;699300;699385;699472;699563;699644;699729;699816
-20;'072;Botswana;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0
-20;'072;Botswana;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1
-20;'072;Botswana;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;49
-20;'072;Botswana;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2
-20;'072;Botswana;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;400;300;300;200;400;400;400;400;400;400;400;400;400;400;85;130;21;240;449;151;230;93;;;;;;;
-20;'072;Botswana;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;103;98;53;55;86;86;86;86;86;86;86;86;86;86;5;41;4;54;110;29;37;16;;;;;;;
-20;'072;Botswana;1865;Industrial roundwood;5516;Production;m3;32000;33000;34000;35000;36000;37000;38000;39000;40000;42000;43000;45000;46000;48000;50000;52000;53000;55000;57000;59000;62000;64000;66000;68000;71000;73000;76000;79000;81000;84000;87000;89000;92000;95000;97000;99000;102000;103000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000
-20;'072;Botswana;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5612;8360;8692;6877;5550;2910;1669;1855;18619;42405;77242;69140;64703;58949;83758
-20;'072;Botswana;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;739;951;1126.35;2056;1017;539;352;304;2188;8974;12963;10722;16460;12460;13269
-20;'072;Botswana;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;44;1;130;2;37;2;132;40;35;0;33;6
-20;'072;Botswana;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;19;1;9;5;4;1;18;3;14;2;2;0
-20;'072;Botswana;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5406;8344;6632;4465;3409;1836;1086;1161;12870;34275;46759;38657;59074;45176;44089
-20;'072;Botswana;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;949;698;593;356;183;112;105;938;8088;11566;9325;14442;10363;10417
-20;'072;Botswana;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;0;129;40;35;0;23;0
-20;'072;Botswana;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;9;3;14;2;0;0
-20;'072;Botswana;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5406;8344;6632;4465;3409;1836;1086;1161;12870;34275;46759;38657;59074;45176;44089
-20;'072;Botswana;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;949;698;593;356;183;112;105;938;8088;11566;9325;14442;10363;10417
-20;'072;Botswana;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;0;129;40;35;0;23;0
-20;'072;Botswana;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;9;3;14;2;0;0
-20;'072;Botswana;1867;Industrial roundwood, non-coniferous;5516;Production;m3;32000;33000;34000;35000;36000;37000;38000;39000;40000;42000;43000;45000;46000;48000;50000;52000;53000;55000;57000;59000;62000;64000;66000;68000;71000;73000;76000;79000;81000;84000;87000;89000;92000;95000;97000;99000;102000;103000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000
-20;'072;Botswana;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;16;2060;2412;2141;1074;583;694;5749;8130;30483;30483;5629;13773;39669
-20;'072;Botswana;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;2;428.35;1463;661;356;240;199;1250;886;1397;1397;2018;2097;2852
-20;'072;Botswana;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;44;1;130;2;3;2;3;0;0;0;10;6
-20;'072;Botswana;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;19;1;9;5;1;0;9;0;0;0;2;0
-20;'072;Botswana;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2059;2366;2136;1058;449;331;1660;770;2000;2000;898;6552;82
-20;'072;Botswana;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;1442;659;352;202;94;517;306;162;162;152;160;4
-20;'072;Botswana;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;44;1;130;2;3;2;3;0;0;0;3;6
-20;'072;Botswana;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;19;1;9;5;1;0;9;0;0;0;0;0
-20;'072;Botswana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;16;1;46;5;16;134;363;4089;7360;28483;28483;4731;7221;39587
-20;'072;Botswana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;2;0.35;21;2;4;38;105;733;580;1235;1235;1866;1937;2848
-20;'072;Botswana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;7;0
-20;'072;Botswana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0
-20;'072;Botswana;1871;Other industrial roundwood;5516;Production;m3;32000;33000;34000;35000;36000;37000;38000;39000;40000;42000;43000;45000;46000;48000;50000;52000;53000;55000;57000;59000;62000;64000;66000;68000;71000;73000;76000;79000;81000;84000;87000;89000;92000;95000;97000;99000;102000;103000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000
-20;'072;Botswana;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;32000;33000;34000;35000;36000;37000;38000;39000;40000;42000;43000;45000;46000;48000;50000;52000;53000;55000;57000;59000;62000;64000;66000;68000;71000;73000;76000;79000;81000;84000;87000;89000;92000;95000;97000;99000;102000;103000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000
-20;'072;Botswana;1630;Wood charcoal;5510;Production;t;17973;18119;18266;18414;18564;18715;18867;19020;19174;19330;19267;18523;18389;18265;19448;19427;20264;20196;20713;20959;21780;22816;23357;24330;25708;27222;28829;30014;31571;34018;35875;38121;41483;44526;48140;50255;52136;53944;56025;58703;60258;61854;63493;65175;66902;67926;69000;70000;71091;72179;72755;73336;73921;74511;75106;75110;75114;75118;75122;75126;75125;75125;75124
-20;'072;Botswana;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;40;100;100;300;300;300;300;300;300;300;300;300;300;300;300;300;300;214;0;27;0;0;0;22;93;89;117;325
-20;'072;Botswana;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;127;93;136;169;345;345;345;345;345;345;345;345;345;345;345;345;345;345;108;5;6;0;0;0;108;143;220;129;195
-20;'072;Botswana;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;1;17;0;0
-20;'072;Botswana;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;44;6;4;0
-20;'072;Botswana;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;250;250;250;250;250;250;250;250;250;250;5447;5424;6102;3433;5727;4754;5816;5147;5147;5147;2552;6149;1676.12;956;401
-20;'072;Botswana;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;135;135;135;135;135;135;135;135;135;135;775;986;1035;514;755;637;596;446;446;446;2375;2724;690.76;441;77
-20;'072;Botswana;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46;0.88;0.06;0.34;6;5.08;9;11;11;11;0;0;2;0;0
-20;'072;Botswana;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0.08;0.19;49;8.04;33;28;28;28;0;5;6;4;0
-20;'072;Botswana;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;150;200;100;100;100;100;100;100;100;100;100;100;299;811;470;1646;4230;4131;3762;4305;4305;4305;2463;5127;803.73;599;34
-20;'072;Botswana;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;67;18;43;40;69;69;69;69;69;69;69;69;69;69;198;375;116;288;599;536;389;378;378;378;2358;2580;590.76;396;55
-20;'072;Botswana;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46;0.88;0.06;0.34;3;0.08;9;11;11;11;0;0;0;0;0
-20;'072;Botswana;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0.08;0.19;2;0.04;33;28;28;28;0;5;4;4;0
-20;'072;Botswana;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;300;200;400;150;150;150;150;150;150;150;150;150;150;5148;4613;5632;1787;1497;623;2054;842;842;842;89;1022;872.39;357;367
-20;'072;Botswana;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;74;84;85;101;66;66;66;66;66;66;66;66;66;66;577;611;919;226;156;101;207;68;68;68;17;144;100;45;22
-20;'072;Botswana;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;0;0;0;0;0;0;2;0;0
-20;'072;Botswana;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;8;0;0;0;0;0;0;2;0;0
-20;'072;Botswana;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;36;5;5;5;1881;2515;3302.34;3710;3293
-20;'072;Botswana;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;33;6;10;10;10;1172;1040;914.93;993;1079
-20;'072;Botswana;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;36;5;5;5;118;282;90;66;16
-20;'072;Botswana;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;33;6;10;10;10;352;317;78;19;14
-20;'072;Botswana;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1763;2233;3212.34;3644;3277
-20;'072;Botswana;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;723;836.93;974;1065
-20;'072;Botswana;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1872;Sawnwood;5616;Import quantity;m3;;;;;3600;23100;19000;19000;19000;19000;19000;19000;19000;16000;11000;4000;5000;4000;6000;6000;6000;6000;6000;6000;8100;8100;0;0;0;0;0;0;0;37200;34500;25100;18800;10600;15100;15100;15100;15100;15100;15100;15100;15100;15100;15100;28866;45461;70461;68627;60837;78470;27240;76320;58502;109950;99553;102760;115466;100144;98384
-20;'072;Botswana;1872;Sawnwood;5622;Import value;1000 USD;;;;;259;348;282;282;282;282;282;282;282;1090;1087;744;888;716;1080;1080;1080;1080;1080;1080;1369;1369;0;0;0;0;0;0;0;8633;9474;7665;10121;7279;6031;6031;6031;6031;6031;6031;6031;6031;6031;6031;20705;24307;22111;22877;18267;17836;19223;21947;16486;18999;21639;17453;33359;26990;21789
-20;'072;Botswana;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;115;154;26;76;5;246;40;172;133;35;0;0;312;18
-20;'072;Botswana;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;125;38;15;31;49;60;5;48;70;31;0;12;29;4
-20;'072;Botswana;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;3600;23100;19000;19000;19000;19000;19000;19000;19000;16000;11000;4000;5000;4000;6000;6000;6000;6000;6000;6000;8100;8100;0;0;0;0;0;0;0;21100;22000;12100;6600;7700;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;19051;25231;63810;60674;56040;72210;22160;73660;53609;94610;48553;54850;90120;74798;73038
-20;'072;Botswana;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;259;348;282;282;282;282;282;282;282;1090;1087;744;888;716;1080;1080;1080;1080;1080;1080;1369;1369;0;0;0;0;0;0;0;2793;4584;2580;4527;5491;5472;5472;5472;5472;5472;5472;5472;5472;5472;5472;15711;18845;17822;18718;15774;16753;18105;19888;13339;16084;16590;15030;31096;24618;19693
-20;'072;Botswana;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;109;154;10;2;1;243;40;141;98;11;0;0;4;4
-20;'072;Botswana;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;124;38;3;28;48;57;5;30;52;8;0;0;1;2
-20;'072;Botswana;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16100;12500;13000;12200;2900;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;9815;20230;6651;7953;4797;6260;5080;2660;4893;15340;51000;47910;25346;25346;25346
-20;'072;Botswana;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5840;4890;5085;5594;1788;559;559;559;559;559;559;559;559;559;559;4994;5462;4289;4159;2493;1083;1118;2059;3147;2915;5049;2423;2263;2372;2096
-20;'072;Botswana;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;6;0;16;74;4;3;0;31;35;24;0;0;308;14
-20;'072;Botswana;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;0;12;3;1;3;0;18;18;23;0;12;28;2
-20;'072;Botswana;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;676;169;196;407;614;660;154;238;1028;1323;183;2;80;28;121
-20;'072;Botswana;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681;365;278;342;468;543;543;543;543;543;543;543;543;543;543;295;180;278;285;705;590;189;144;588;703;131;33;29;44;74
-20;'072;Botswana;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;9;2;0;0;3;13;3;1;0;0;11;0
-20;'072;Botswana;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;1;0;1;2;19;3;1;0;3;19;0
-20;'072;Botswana;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13395;26087;23515;13050;14701;11848;7950;12214;7450;5165;13653;17272;21139.36;12468;33914
-20;'072;Botswana;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9098;11791;14151;5768;7724;7080;4978;5092;6148;5762;9781;8422;11904.64;8818;10512
-20;'072;Botswana;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;27;10;185;18;25;57;42;71;202;21;711;53.16;78;89
-20;'072;Botswana;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;252;56;193;23;75;100;94;26;101;48;25;20;36;54
-20;'072;Botswana;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-20;'072;Botswana;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3002;23320;21244;6595;9479;6679;1929;3155;4380;2095;1996;2951;4249;715;5184
-20;'072;Botswana;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4145;9324;11354;3075;4187;3442;1267;1097;1302;916;1110;910;641;223;1756
-20;'072;Botswana;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;22;3;8;4;0;1;1;31;162;11;0;0;0;5
-20;'072;Botswana;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;246;20;118;1;1;4;2;8;83;22;12;3;0;2
-20;'072;Botswana;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9432;2044;1319;5792;4500;5047;5974;9049;2819;2819;11011;13655;15386.84;10442;25114
-20;'072;Botswana;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4259;1910;1568;1737;2536;3581;3677;3981;4635;4635;7836;6672;10282.64;7679;7448
-20;'072;Botswana;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;7;177;14;25;56;41;40;40;10;680;22.16;45;34
-20;'072;Botswana;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;6;36;75;22;74;96;92;18;18;25;4;8;25;39
-20;'072;Botswana;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;122;47;10;251;251;79;57;15;3;194
-20;'072;Botswana;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;57;34;14;211;211;615;542;142;46;76
-20;'072;Botswana;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;31;31;31
-20;'072;Botswana;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;9;9;9
-20;'072;Botswana;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961;723;952;663;663;0;0;0;0;0;567;609;1488.52;1308;3422
-20;'072;Botswana;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;557;1229;956;956;0;0;0;0;0;220;298;839;870;1232
-20;'072;Botswana;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;19
-20;'072;Botswana;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;4
-20;'072;Botswana;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;17;118;44;90
-20;'072;Botswana;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;42;144;97;92
-20;'072;Botswana;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0
-20;'072;Botswana;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0
-20;'072;Botswana;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961;723;952;663;663;0;0;0;0;0;105;510;817.14;1022;3192
-20;'072;Botswana;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;557;1229;956;956;0;0;0;0;0;101;208;524;691;1047
-20;'072;Botswana;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;82;553.38;242;140
-20;'072;Botswana;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;48;171;82;93
-20;'072;Botswana;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19
-20;'072;Botswana;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4
-20;'072;Botswana;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;9000;9000;8000;7000;9000;12000;10000;10000;10000;10000;10000;10000;10000
-20;'072;Botswana;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36.1;308;13;47;11;8.3;46;2;1;1;116;81;3494;14;248
-20;'072;Botswana;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;113;33;52;29;28;66;9;3;3;51;198;102;17;196
-20;'072;Botswana;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7573;7957;8990;8318;8147;6851;8367;10875;9461;9461;3406;5674;5956.63;9968;5208
-20;'072;Botswana;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;1024;1078;944;900;895;954;1188;1133;1133;918;1127;1589;1260;880
-20;'072;Botswana;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1;56;8;39;10;7.3;9;2;1;1;10;6;1;7;10
-20;'072;Botswana;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;82;27;42;28;27;20;9;3;3;35;24;4;7;6
-20;'072;Botswana;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;18;1
-20;'072;Botswana;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0;2;0
-20;'072;Botswana;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1;71;4.27;36;8;6.3;8;2;1;1;3;0;0;0.1;1.1
-20;'072;Botswana;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;79;18;34;33;25;18;13;7;7;6;1;3;2.77;1.77
-20;'072;Botswana;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1;2;;;;;;;;;;;;;
-20;'072;Botswana;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;;;;;;;;;;;;;
-20;'072;Botswana;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;2;0;;;;;;;
-20;'072;Botswana;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;;;;;;;
-20;'072;Botswana;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;53;4;35;3;1.3;6;1;0;0;3;0;0;0;1
-20;'072;Botswana;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;68;17;32;19;20;17;8;2;2;5;0;2;2;1
-20;'072;Botswana;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;1;32;1;0;4;0;0;0;3;0;0;0;0
-20;'072;Botswana;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;6;21;2;0;3;1;1;1;5;0;0;0;0
-20;'072;Botswana;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2;2;1;0.3;1;0;0;0;0;0;0;0;1
-20;'072;Botswana;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;8;8;14;17;11;1;1;1;0;0;2;2;1
-20;'072;Botswana;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-20;'072;Botswana;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-20;'072;Botswana;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;;;;;;;
-20;'072;Botswana;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;6;;;;;;;
-20;'072;Botswana;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0.27;1;1;1;0;1;1;1;0;0;0;0.1;0.1
-20;'072;Botswana;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;2;10;1;1;5;5;5;1;1;1;0.77;0.77
-20;'072;Botswana;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;3;2;1;1;1;1;7;6;1;7;9
-20;'072;Botswana;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;10;5;3;3;1;1;1;30;24;2;5;5
-20;'072;Botswana;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;18;1
-20;'072;Botswana;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0;2;0
-20;'072;Botswana;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0.1;0.2;0;0;0;0;0;0;0;1;0
-20;'072;Botswana;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;1;1;0;0;0;1;2;2;6;0
-20;'072;Botswana;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;9000;9000;8000;7000;9000;12000;10000;10000;10000;10000;10000;10000;10000
-20;'072;Botswana;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;252;5;8;1;1;37;0;0;0;106;75;3493;7;238
-20;'072;Botswana;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;31;6;10;1;1;46;0;0;0;16;174;98;10;190
-20;'072;Botswana;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7573;7957;8990;8318;8145;6851;8367;10875;9461;9461;3406;5674;5956.63;9950;5207
-20;'072;Botswana;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;1024;1078;944;880;895;954;1188;1133;1133;918;1127;1589;1258;880
-20;'072;Botswana;1876;Paper and paperboard;5610;Import quantity;t;;;;;;300;300;300;300;300;300;300;300;200;200;300;400;400;500;500;500;500;500;2800;7000;7000;7000;7000;7000;7000;7000;7000;7000;10300;11500;17000;11200;11600;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;22378;21074;22111;24301;20094;23528;23058;22341;19762;26046;31898;44514;37739.62;51784;27489
-20;'072;Botswana;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;237;316;316;316;316;316;316;316;174;215;257;433;433;550;560;560;560;560;4747;8046;8046;8046;8046;8046;8046;8046;8046;8046;15307;14934;19108;13972;12851;8270;8270;8270;8270;8270;8270;8270;8270;8270;8270;26715;26470;30730;30346;21542;25891;23938;21435;19857;22436;22769;21590;23866.61;24823;22091
-20;'072;Botswana;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2755;547;123.06;169;113.55;294.2;217;149;149;149;271;1809;1140.23;368;350
-20;'072;Botswana;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2782;429;261;503;258;267;444;663;663;663;448;297;605.5;390;229
-20;'072;Botswana;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12104;9234;10556;12723;8533;10697;11127;11952;11952;11952;19095;27602;23562.03;30115;12613
-20;'072;Botswana;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14340;12384;13923;16386;9205;12068;11863;11514;11514;11514;14330;11577;12847.58;13866;10614
-20;'072;Botswana;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2110;345;16.06;70;3.55;10.2;96;46;46;46;65;1749;1050.23;251;209
-20;'072;Botswana;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2272;307;6;55;8;19;48;68;68;68;153;244;496.5;263;132
-20;'072;Botswana;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6974;3402;2523;3764;3928;3230;3547;3707;3707;3707;2932;2493;3365.32;2616;1175
-20;'072;Botswana;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6255;3283;2472;3987;3320;2831;2712;2582;2582;2582;2818;1845;2531;2951;1877
-20;'072;Botswana;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2064;341;14;31;0;8;22;4;4;4;14;0;376;207;28
-20;'072;Botswana;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2243;298;2;9;0;5;2;0;0;0;4;0;283.7;205;3
-20;'072;Botswana;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5130;5832;8033;8959;4605;7467;7580;8245;8245;8245;16163;25109;20196.71;27499;11438
-20;'072;Botswana;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8085;9101;11451;12399;5885;9237;9151;8932;8932;8932;11512;9732;10316.58;10915;8737
-20;'072;Botswana;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;4;2.06;39;3.55;2.2;74;42;42;42;51;1749;674.23;44;181
-20;'072;Botswana;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;9;4;46;8;14;46;68;68;68;149;244;212.81;58;129
-20;'072;Botswana;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1068;1814;1232;574;1268;1535;3610;4650;4650;4650;5054;4832;934.27;2271;1425
-20;'072;Botswana;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1417;2293;1160;810;1562;1948;3631;4458;4458;4458;5778;1297;4744.23;3444;3746
-20;'072;Botswana;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0.2;3;3;3;3;47;0;1;25;3
-20;'072;Botswana;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;13;4;4;4;60;2;9;17;2
-20;'072;Botswana;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2101;2344;4801;5910;125;3090;2306;1247;1247;1247;551;3006;3512.24;2488;4112
-20;'072;Botswana;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3095;3968;7163;7803;237;4028;2735;1714;1714;1714;2383;4940;2351.29;3217;2574
-20;'072;Botswana;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;2;38;0.4;1;70;1;1;1;1;21;33;2;32
-20;'072;Botswana;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;3;40;3;6;25;24;24;24;11;46;10;9;28
-20;'072;Botswana;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;1674;2000;2475;3212;2842;1664;2348;2348;2348;10558;17271;15750.2;22740;5901
-20;'072;Botswana;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3573;2840;3128;3786;4086;3261;2785;2760;2760;2760;3351;3495;3221.06;4254;2417
-20;'072;Botswana;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;0.06;1;0.15;1;1;38;38;38;3;1728;640.23;17;146
-20;'072;Botswana;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;9;1;6;1;5;8;40;40;40;78;196;193.81;32;99
-20;'072;Botswana;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;300;300;300;300;300;300;300;300;200;200;300;400;400;500;500;500;500;500;2800;7000;7000;7000;7000;7000;7000;7000;7000;7000;10300;11500;17000;11200;11600;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10274;11840;11555;11578;11561;12831;11931;10389;7810;14094;12803;16912;14177.6;21669;14876
-20;'072;Botswana;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;237;316;316;316;316;316;316;316;174;215;257;433;433;550;560;560;560;560;4747;8046;8046;8046;8046;8046;8046;8046;8046;8046;15307;14934;19108;13972;12851;8270;8270;8270;8270;8270;8270;8270;8270;8270;8270;12375;14086;16807;13960;12337;13823;12075;9921;8343;10922;8439;10013;11019.03;10957;11477
-20;'072;Botswana;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;202;107;99;110;284;121;103;103;103;206;60;90;117;141
-20;'072;Botswana;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;122;255;448;250;248;396;595;595;595;295;53;109;127;97
-20;'072;Botswana;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;1598;533;1825;1196;2218;3487;2993;414;344;1;848;1008;716;1423
-20;'072;Botswana;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;743;1010;3298;1931;2750;3782;3121;1543;1193;11;922;1886.31;1355;1930
-20;'072;Botswana;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;44;2;1;0;1;1;1;1;1;0;4;5;5;6
-20;'072;Botswana;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;8;1;0;2;1;1;1;1;0;14;22;25;60
-20;'072;Botswana;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;9848;10129;10871;8630;10213;10404;8117;7193;7193;13547;12656;16020;13117.6;20878;13382
-20;'072;Botswana;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12851;8270;8270;8270;8270;8270;8270;8270;8270;8270;8270;10989;12665;15030;9384;9705;10445;7688;6349;6349;9278;7318;8582;8616.72;9082;8996
-20;'072;Botswana;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;136;94;92;86;225;114;89;89;89;200;56;85;111;134
-20;'072;Botswana;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;102;223;443;240;234;358;552;552;552;138;39;81;96;31
-20;'072;Botswana;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;6223;6192;6606;4063;6224;6164;4843;4634;4634;4634;2432;2024;2123.98;1896;1969
-20;'072;Botswana;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12851;8270;8270;8270;8270;8270;8270;8270;8270;8270;8270;6076;6296;8484;3823;5037;5850;3497;2870;2870;2870;1994;1465;2085.1;2453;2492
-20;'072;Botswana;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;72;0;0;0;1;0;0;0;0
-20;'072;Botswana;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;0;6;0;0;0;2;0;0;0;0
-20;'072;Botswana;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1526;2439;1023;561;1347;735;1292;689;689;7043;7109;12710;9901.12;17118;9450
-20;'072;Botswana;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1915;3592;1960;813;1626;951;1979;1396;1396;4325;4325;6131;5343.32;5416;5404
-20;'072;Botswana;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;68;20;1;51;137;4;39;39;39;1;0;34;0;0
-20;'072;Botswana;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;36;6;43;26;26;12;9;9;9;2;0;3;0;1
-20;'072;Botswana;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2044;1495;3240;4003;2641;3505;1981;1870;1870;1870;3115;1234;679.5;1475;1780
-20;'072;Botswana;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2991;2775;4570;4735;3040;3636;2208;2077;2077;2077;944;852;1001.3;1016;920
-20;'072;Botswana;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;68;74;76;35;88;38;50;50;50;198;56;51;111;134
-20;'072;Botswana;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;66;217;383;213;208;340;543;543;543;134;39;78;96;30
-20;'072;Botswana;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;3;2;3;1;0;1;0;0;0;0;52;413;389;183
-20;'072;Botswana;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;16;13;2;8;4;6;6;6;55;134;187;197;180
-20;'072;Botswana;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;113;151;1123;152;209;327;203;203;203;146;44;52;75;71
-20;'072;Botswana;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972;678;767;1278;701;628;605;451;451;451;1110;509;516;520;551
-20;'072;Botswana;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;22;11;6;24;58;6;13;13;13;6;0;0;1;1
-20;'072;Botswana;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;24;4;10;12;37;42;42;42;157;0;6;6;6
-20;'072;Botswana;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40670;48693;46036;44360;56140;44013;36686
-20;'072;Botswana;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2712;3735;2939;1681;1686;2596;3354
-20;'072;Botswana;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1591;1816;1098;768;777;858;628
-20;'072;Botswana;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;2;1;12;12;0
-20;'072;Botswana;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;510;696;235;435;190;269
-20;'072;Botswana;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0
-20;'072;Botswana;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;917;1306;402;533;342;668;359
-20;'072;Botswana;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;2;1;12;12;0
-20;'072;Botswana;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5755;7000;6882;5932;8095;7036;6324
-20;'072;Botswana;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;963;1762;1400;971;905;1239;992
-20;'072;Botswana;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668;2336;2222;2063;5141;3060;1647
-20;'072;Botswana;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;40;9;9;31;181;3
-20;'072;Botswana;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9332;11273;10049;9321;11522;6412;6620
-20;'072;Botswana;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;53;24;28;30;19;8
-20;'072;Botswana;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;16
-20;'072;Botswana;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1
-20;'072;Botswana;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-20;'072;Botswana;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1
-20;'072;Botswana;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-20;'072;Botswana;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-20;'072;Botswana;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-20;'072;Botswana;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12
-20;'072;Botswana;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20391;22463;21567;22547;26561;23925;17852
-20;'072;Botswana;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1658;1802;1226;625;687;1113;2327
-20;'072;Botswana;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;780;564;216;259;223
-20;'072;Botswana;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;3;0;4;0
-20;'072;Botswana;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933;3367;3438;3165;3828;2463;3392
-20;'072;Botswana;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;76;274;44;21;28;24
-20;'072;Botswana;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35469;40439;39860;35117;41017;46910;47261
-20;'072;Botswana;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6770;4037;1324;769;3045;2538;2625
-20;'072;Botswana;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;59;39;10;54;35;104
-20;'072;Botswana;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1
-20;'072;Botswana;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;453;826;548;723;1139;1516
-20;'072;Botswana;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;11;2;6;8;52
-20;'072;Botswana;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10299;11661;14109;15244;15911;16987;17542
-20;'072;Botswana;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505;710;127;106;53;169;202
-20;'072;Botswana;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12457;13951;13364;10732;12658;16628;15305
-20;'072;Botswana;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398;175;230;20;56;101;42
-20;'072;Botswana;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12292;14315;11522;8583;11671;12121;12794
-20;'072;Botswana;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2854;3148;955;640;2929;2259;2328
-21;'076;Brazil;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1174105;1236327;1259377;1053442;1304204.01;1317374;1260106
-21;'076;Brazil;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11678811;14182569;13312109;11673867;14464095.55;17145495;14523566
-21;'076;Brazil;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;25789;21351;20921;16183;11225;16330;34191;58691;52823;62562;79387;103138;147838;347878;164155;199646;186724;197569;225569;274816;283511;299781;162371;175566;149075;229147;274309;274765;299996;236934;321838;314541;387047;594161;1319802;1119667;1315969;1030817;819304;902399;715373;624884;599248;798652;902761;1055298;1218826;1523326;1192798;1675982;1789623;1692826;1620909;1586896;1096610;886448;840783;879102;921774;757148;893523.01;1008497;920563
-21;'076;Brazil;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;51532;42584;41816;56920;67461;76008;70066;96808;113796;113457;123795;142610;227853;236287;177172;169988;226660;302476;591288;864601;944547;695614;822144;1028221;801842;937576;1117049;1761459;1565987;1470892;1642236;1873727;2146306;2652088;3202211;2660347;2647469;2689583;2812704;3211846;2819890;2949147;4063876;4865902;5245218;5598262;6434246;7227141;5743827;7596333;7947255;7505282;8017392;8233432;8722204;8705321;10015502;12376661;11419944;9736103;11796621.55;14258109;12268741
-21;'076;Brazil;1861;Roundwood;5516;Production;m3;104811504;106768603;105847128;106684150;108068759;110372043;112712081;114872955;117022762;119840582;121278743;121116926;121587967;123323265;130343926;134534060;139291830;147877953;158470406;167438475;168795562;171839359;175388028;178325516;181200611;183731965;186515620;189729645;197529534;194577560;198423030;202514910;205686483;208912937;211129834;212306210;213479519;213703275;231562657;235401621;223256218;230912063;255902476;243254745;231569000;229984000;235158000;229064000;226707000;235432000;253144000;266769000;261381000;261563000;247998050;267575000;271537000;282103000;264561000;276865000;292596000;313840000;316864000
-21;'076;Brazil;1861;Roundwood;5616;Import quantity;m3;11900;12600;10900;500;2000;100;100;100;200;6000;26600;69400;81800;93400;96300;50500;46100;84400;58100;44700;31100;31000;26500;45400;55800;64000;55400;25900;40000;4287;5679;8871;8245;9900;11200;5300;11000;31000;16400;25640;90034;16480;19157;14005;12464;16490;8000;18832;39761;28788;31302;39750;38402;31177;16430;46461;11136;39139;34377;11982;37530;31202;17778
-21;'076;Brazil;1861;Roundwood;5622;Import value;1000 USD;89;72;75;21;48;16;16;16;16;480;1606;3651;5776;4926;4995;4399;3911;5848;6239;6912;6485;6616;6556;8125;8001;7417;4649;5555;5809;146;643;663;430;772;804;318;995;1259;1013;1425;2987;983;857;2013;1493;2734;514;1377;3542;1931;2252;1915;1861;1734;835;605;811;1775;4709;507;9380;902;684
-21;'076;Brazil;1861;Roundwood;5916;Export quantity;m3;54100;40100;43800;50800;53100;58100;79100;117300;114300;84400;119400;130200;426000;140000;5000;7400;4300;10300;12700;7000;6100;8000;4200;30300;26200;9400;9500;46000;17100;80085;78692;364276;260635;654500;1240400;513300;793100;935300;442000;753600;563079;950611;123305;100021;25004;7225;18553;27473;5610;34254;91766;86776;115017;196279;110555;174206;248974;402144;903200;1686384;2765157;2395633;1526346
-21;'076;Brazil;1861;Roundwood;5922;Export value;1000 USD;2624;2492;2927;4013;6190;7179;7195;6265;5612;3136;3595;4351;13320;6850;1168;1620;895;1602;1951;1490;1360;1370;908;2039;2231;1107;1085;3824;4316;6128;5177;15223;11951;20671;59112;25682;35985;45039;22286;34543;17746;23152;3814;5062;1782;789;3870;6458;1144;7685;18201;18025;17347;30229;32195;39901;65568;95573;87764;165406;222483;294229;154313
-21;'076;Brazil;1862;Roundwood, coniferous;5516;Production;m3;15728144;16413115;15379928;15687590;16105111;17044499;17963761;18794907;19506946;20698886;20994671;20855462;19945943;20044033;23038246;25296316;27126734;29004881;32896678;36380827;36240658;37169959;38261844;40216236;41425195;41116389;41494092;42219325;46066254;43315576;45164158;45323478;45441979;45565073;45687410;45805698;45923679;46046003;51671785;52900725;43849738;46353175;55671068;50419449;47257000;47502000;47391000;46171000;47246000;49047000;50224000;51559000;50963000;45818000;42579000;45730000;50000000;47902000;44799000;47995000;51555000;52133000;50357000
-21;'076;Brazil;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;10;0;2934;0;39
-21;'076;Brazil;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;1;0;311;6;3
-21;'076;Brazil;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52073;19381;97193;316384;704972;116636;52967
-21;'076;Brazil;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4159;1362;4084;17873;49024;7373;3894
-21;'076;Brazil;1863;Roundwood, non-coniferous;5516;Production;m3;89083360;90355488;90467200;90996560;91963648;93327544;94748320;96078048;97515816;99141696;100284072;100261464;101642024;103279232;107305680;109237744;112165096;118873072;125573728;131057648;132554904;134669400;137126184;138109280;139775416;142615576;145021528;147510320;151463280;151261984;153258872;157191432;160244504;163347864;165442424;166500512;167555840;167657272;179890872;182500896;179406480;184558888;200231408;192835296;184312000;182482000;187767000;182893000;179461000;186385000;202920000;215210000;210418000;215745000;205419050;221845000;221537000;234201000;219762000;228870000;241041000;261707000;266507000
-21;'076;Brazil;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11134;39139;34367;11982;34596;31202;17739
-21;'076;Brazil;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;1775;4708;507;9069;896;681
-21;'076;Brazil;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196901;382763;806007;1370000;2060185;2278997;1473379
-21;'076;Brazil;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61409;94211;83680;147533;173459;286856;150419
-21;'076;Brazil;1864;Wood fuel;5516;Production;m3;87851504;88711603;89580128;90457150;91342759;92237043;93140081;94051955;94972762;95902582;96560743;97168926;97683967;98555265;99707926;100659060;101963830;103385953;104614398;105716475;107585554;109139359;110949028;112203516;113303611;114365957;115713604;117256637;118556518;120300536;121747014;123250894;124336483;125477937;126611834;127705210;128795519;129939275;131167657;132407621;133428218;134473063;135542476;136636745;113582000;111230000;113637000;113674000;104547000;107032000;113175000;119965000;118748000;123879000;111821050;122473000;120582000;124047000;121555000;122145000;129040000;133173000;132440000
-21;'076;Brazil;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;838;1100;1100;0;0;17000;400;400;0;0;0;0;0;0;0;0;0;114;320;197;203;203;357;357;;;;;;23;23
-21;'076;Brazil;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;35;75;75;0;0;225;6;6;0;0;0;0;0;0;0;0;0;12;35;18;24;24;39;39;;;;;;25;25
-21;'076;Brazil;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535;5400;5400;1300;1300;0;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;109;;;;;;;1
-21;'076;Brazil;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;581;581;71;71;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;16;;;;;;;1
-21;'076;Brazil;1627;Wood fuel, coniferous;5516;Production;m3;8781144;8867115;8953928;9041590;9130111;9219499;9309761;9400907;9492946;9585886;9651671;9712462;9763943;9851033;9966246;10061316;10191734;10333881;10456670;10566827;10753650;10908959;11089844;11215236;11325195;11431381;11566084;11720317;11850246;12024568;12169150;12319470;12427979;12542073;12655410;12764698;12873679;12988003;13110785;13234725;13336738;13441175;13548068;13657449;7371000;7371000;7371000;8237000;7945000;7989000;5425000;3255000;3965000;3886000;3401000;3083000;4074000;3504000;3349000;3126000;2762000;3273000;3511000
-21;'076;Brazil;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-21;'076;Brazil;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-21;'076;Brazil;1628;Wood fuel, non-coniferous;5516;Production;m3;79070360;79844488;80626200;81415560;82212648;83017544;83830320;84651048;85479816;86316696;86909072;87456464;87920024;88704232;89741680;90597744;91772096;93052072;94157728;95149648;96831904;98230400;99859184;100988280;101978416;102934576;104147520;105536320;106706272;108275968;109577864;110931424;111908504;112935864;113956424;114940512;115921840;116951272;118056872;119172896;120091480;121031888;121994408;122979296;106211000;103859000;106266000;105437000;96602000;99043000;107750000;116710000;114783000;119993000;108420050;119390000;116508000;120543000;118206000;119019000;126278000;129900000;128929000
-21;'076;Brazil;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23
-21;'076;Brazil;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25
-21;'076;Brazil;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;838;1100;1100;0;0;17000;400;400;0;0;0;0;0;0;0;0;0;114;320;197;203;203;357;357;;;;;;;
-21;'076;Brazil;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;35;75;75;0;0;225;6;6;0;0;0;0;0;0;0;0;0;12;35;18;24;24;39;39;;;;;;;
-21;'076;Brazil;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535;5400;5400;1300;1300;0;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;109;;;;;;;
-21;'076;Brazil;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;581;581;71;71;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;16;;;;;;;
-21;'076;Brazil;1865;Industrial roundwood;5516;Production;m3;16960000;18057000;16267000;16227000;16726000;18135000;19572000;20821000;22050000;23938000;24718000;23948000;23904000;24768000;30636000;33875000;37328000;44492000;53856008;61722000;61210008;62700000;64439000;66122000;67897000;69366008;70802016;72473008;78973016;74277024;76676016;79264016;81350000;83435000;84518000;84601000;84684000;83764000;100395000;102994000;89828000;96439000;120360000;106618000;117987000;118754000;121521000;115390000;122160000;128400000;139969000;146804000;142633000;137684000;136177000;145102000;150955000;158056000;143006000;154720000;163556000;180667000;184424000
-21;'076;Brazil;1865;Industrial roundwood;5616;Import quantity;m3;11900;12600;10900;500;2000;100;100;100;200;6000;26600;69400;81800;93400;96300;50500;46100;84400;58100;44700;31100;31000;26500;45400;55800;64000;55400;25900;40000;4287;5679;8506;7407;8800;10100;5300;11000;14000;16000;25240;90034;16480;19157;14005;12464;16490;8000;18832;39761;28674;30982;39553;38199;30974;16073;46104;11136;39139;34377;11982;37530;31179;17755
-21;'076;Brazil;1865;Industrial roundwood;5622;Import value;1000 USD;89;72;75;21;48;16;16;16;16;480;1606;3651;5776;4926;4995;4399;3911;5848;6239;6912;6485;6616;6556;8125;8001;7417;4649;5555;5809;146;643;650;395;697;729;318;995;1034;1007;1419;2987;983;857;2013;1493;2734;514;1377;3542;1919;2217;1897;1837;1710;796;566;811;1775;4709;507;9380;877;659
-21;'076;Brazil;1865;Industrial roundwood;5916;Export quantity;m3;54100;40100;43800;50800;53100;58100;79100;117300;114300;84400;119400;130200;426000;140000;5000;7400;4300;10300;12700;7000;6100;8000;4200;30300;26200;9400;9500;46000;17100;80085;78692;364276;259100;649100;1235000;512000;791800;935300;442000;753600;563079;950611;123305;100021;25004;7225;18553;27473;5610;34254;91746;86756;114997;196259;110535;174097;248974;402144;903200;1686384;2765157;2395633;1526345
-21;'076;Brazil;1865;Industrial roundwood;5922;Export value;1000 USD;2624;2492;2927;4013;6190;7179;7195;6265;5612;3136;3595;4351;13320;6850;1168;1620;895;1602;1951;1490;1360;1370;908;2039;2231;1107;1085;3824;4316;6128;5177;15223;11847;20090;58531;25611;35914;45039;22286;34543;17746;23152;3814;5062;1782;789;3870;6458;1144;7685;18198;18022;17344;30226;32192;39885;65568;95573;87764;165406;222483;294229;154312
-21;'076;Brazil;1866;Industrial roundwood, coniferous;5516;Production;m3;6947000;7546000;6426000;6646000;6975000;7825000;8654000;9394000;10014000;11113000;11343000;11143000;10182000;10193000;13072000;15235000;16935000;18671000;22440008;25814000;25487008;26261000;27172000;29001000;30100000;29685008;29928008;30499008;34216008;31291008;32995008;33004008;33014000;33023000;33032000;33041000;33050000;33058000;38561000;39666000;30513000;32912000;42123000;36762000;39886000;40131000;40020000;37934000;39301000;41058000;44799000;48304000;46998000;41932000;39178000;42647000;45926000;44398000;41450000;44869000;48793000;48860000;46846000
-21;'076;Brazil;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;129;820;4400;5600;100;300;0;7000;6000;8000;7600;3800;7276;5092;1136;105;0;47;24;19;35;12;29;2;3;0;2;0;10;0;2934;0;39
-21;'076;Brazil;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;52;205;256;16;17;0;517;488;182;180;199;224;173;69;18;0;5;9;9;7;11;7;11;9;0;5;0;1;0;311;6;3
-21;'076;Brazil;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2854;1968;294376;215600;520800;954000;294000;414500;691300;303000;529000;479800;695861;33715;92510;20181;666;127;5000;9;8254;15519;5672;41658;92557;21441;893;52073;19381;97193;316384;704972;116636;52966
-21;'076;Brazil;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;208;12266;10009;15087;44696;13911;19145;30162;12876;19413;12671;15191;1359;4505;1300;8;7;706;1;1779;2213;747;4534;9748;2169;63;4159;1362;4084;17873;49024;7373;3893
-21;'076;Brazil;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;129;820;4400;5600;100;300;0;7000;6000;8000;7600;3800;7276;5092;1136;105;0;47;24;19;35;12;29;2;3;0;2;0;10;0;2934;0;39
-21;'076;Brazil;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;52;205;256;16;17;0;517;488;182;180;199;224;173;69;18;0;5;9;9;7;11;7;11;9;0;5;0;1;0;311;6;3
-21;'076;Brazil;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2854;1968;294376;215600;520800;954000;294000;414500;691300;303000;529000;479800;695861;33715;92510;20181;666;127;5000;9;8254;15519;5672;41658;92557;21441;893;52073;19381;97193;316384;704972;116636;52966
-21;'076;Brazil;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;208;12266;10009;15087;44696;13911;19145;30162;12876;19413;12671;15191;1359;4505;1300;8;7;706;1;1779;2213;747;4534;9748;2169;63;4159;1362;4084;17873;49024;7373;3893
-21;'076;Brazil;1867;Industrial roundwood, non-coniferous;5516;Production;m3;10013000;10511000;9841000;9581000;9751000;10310000;10918000;11427000;12036000;12825000;13375000;12805000;13722000;14575000;17564000;18640000;20393000;25821000;31416000;35908000;35723000;36439000;37267000;37121000;37797000;39681000;40874008;41974000;44757008;42986016;43681008;46260008;48336000;50412000;51486000;51560000;51634000;50706000;61834000;63328000;59315000;63527000;78237000;69856000;78101000;78623000;81501000;77456000;82859000;87342000;95170000;98500000;95635000;95752000;96999000;102455000;105029000;113658000;101556000;109851000;114763000;131807000;137578000
-21;'076;Brazil;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;5550;7686;3007;3200;10000;5000;11000;7000;10000;17240;82434;12680;11881;8913;11328;16385;8000;18785;39737;28655;30947;39541;38170;30972;16070;46104;11134;39139;34367;11982;34596;31179;17716
-21;'076;Brazil;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;619;598;190;441;713;301;995;517;519;1237;2807;784;633;1840;1424;2716;514;1372;3533;1910;2210;1886;1830;1699;787;566;806;1775;4708;507;9069;871;656
-21;'076;Brazil;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77231;76724;69900;43500;128300;281000;218000;377300;244000;139000;224600;83279;254750;89590;7511;4823;6559;18426;22473;5601;26000;76227;81084;73339;103702;89094;173204;196901;382763;806007;1370000;2060185;2278997;1473379
-21;'076;Brazil;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5345;4969;2957;1838;5003;13835;11700;16769;14877;9410;15130;5075;7961;2455;557;482;781;3863;5752;1143;5906;15985;17275;12810;20478;30023;39822;61409;94211;83680;147533;173459;286856;150419
-21;'076;Brazil;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;3256;3986;207;0;0;0;0;0;0;5700;500;11949;11293;2430;6779;7545;8;11815;13830;2784;2483;14350;15974;10791;12230;45750;10671;11053;8775;11733;12325;357;17341
-21;'076;Brazil;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;340;361;21;0;0;0;0;0;0;256;27;624;529;693;1332;2539;5;591;934;776;907;791;824;787;674;510;686;695;498;451;681;58;610
-21;'076;Brazil;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9031;8324;0;0;0;0;0;0;0;0;6600;3279;9349;5937;6415;3281;599;6000;12597;1532;6000;31756;24211;29878;25294;89094;173204;196901;382763;806007;1370000;2060185;2278997;1473379
-21;'076;Brazil;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;1569;0;0;0;0;0;0;0;0;888;549;1738;726;534;351;78;1249;2802;227;1100;6262;5017;4915;5576;30023;39822;61409;94211;83680;147533;173459;286856;150419
-21;'076;Brazil;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2294;3700;2800;3200;10000;5000;11000;7000;10000;11540;81934;731;588;6483;4549;8840;7992;6970;25907;25871;28464;25191;22196;20181;3840;354;463;28086;25592;249;22271;30822;375
-21;'076;Brazil;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;279;237;169;441;713;301;995;517;519;981;2780;160;104;1147;92;177;509;781;2599;1134;1303;1095;1006;912;113;56;120;1080;4210;56;8388;813;46
-21;'076;Brazil;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68200;68400;69900;43500;128300;281000;218000;377300;244000;139000;218000;80000;245401;83653;1096;1542;5960;12426;9876;4069;20000;44471;56873;43461;78408;0;0;0;0;0;0;0;0;0
-21;'076;Brazil;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3408;3400;2957;1838;5003;13835;11700;16769;14877;9410;14242;4526;6223;1729;23;131;703;2614;2950;916;4806;9723;12258;7895;14902;0;0;0;0;0;0;0;0;0
-21;'076;Brazil;1868;Sawlogs and veneer logs;5516;Production;m3;12930000;13720000;11600000;11260000;11370000;12300000;13560000;14500000;15410000;16790000;17220000;16130000;15995000;16765000;21183000;23750000;26490000;27990000;31550008;36212000;35595008;36982000;38618000;39924000;39924000;39983008;39983008;40263008;40263008;37968016;40279008;42779008;44779000;46779000;47779000;47779000;47779000;46779000;48300000;49290000;42125000;45800000;61106000;52051000;54601000;54903000;52243000;49355000;49015000;50574000;55289000;62950000;60986000;56668000;51202000;51720000;55010000;56370000;54741000;57782000;64226000;61186000;61551000
-21;'076;Brazil;1868;Sawlogs and veneer logs;5616;Import quantity;m3;11900;12600;10900;500;2000;100;100;100;200;6000;23800;54200;66600;73200;76200;35300;40400;76700;50400;35400;23600;25500;23500;35400;48500;57800;52300;24500;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;89;72;75;21;48;16;16;16;16;480;1561;3401;5526;4109;4178;3352;3531;5397;5788;6588;6191;6505;6502;7946;7873;7299;4590;5543;5566;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1868;Sawlogs and veneer logs;5916;Export quantity;m3;54100;40100;43800;50800;53100;58100;79100;117300;114300;84400;119400;130200;426000;140000;5000;7400;4300;10300;12700;7000;6100;8000;4200;30300;26200;9400;9500;46000;17100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2624;2492;2927;4013;6190;7179;7195;6265;5612;3136;3595;4351;13320;6850;1168;1620;895;1602;1951;1490;1360;1370;908;2039;2231;1107;1085;3824;4316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;6170000;6670000;5440000;5570000;5770000;6450000;7240000;7880000;8400000;9320000;9430000;9130000;8160000;8160000;11015000;13062000;14570000;15395000;17353008;19916000;19577008;20340000;21240000;21958000;21958000;21299008;21299008;21299008;21299008;20085008;21779008;21779008;21779000;21779000;21779000;21779000;21779000;21779000;22900000;23490000;20075000;21827000;29121000;24806000;26021000;26165000;24897000;23521000;23359000;24102000;26349000;30000000;29064000;27006000;24401000;24648000;26216000;26864000;26088000;27537000;30608000;29159000;29333000
-21;'076;Brazil;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;100;1000;200;1800;1200;2400;1300;200;1200;400;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;6;37;29;72;78;184;106;23;136;27;45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6760000;7050000;6160000;5690000;5600000;5850000;6320000;6620000;7010000;7470000;7790000;7000000;7835000;8605000;10168000;10688000;11920000;12595000;14197000;16296000;16018000;16642000;17378000;17966000;17966000;18684000;18684000;18964000;18964000;17883008;18500000;21000000;23000000;25000000;26000000;26000000;26000000;25000000;25400000;25800000;22050000;23973000;31985000;27245000;28580000;28738000;27346000;25834000;25656000;26472000;28940000;32950000;31922000;29662000;26801000;27072000;28794000;29506000;28653000;30245000;33618000;32027000;32218000
-21;'076;Brazil;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;11900;12600;10900;500;2000;100;100;100;200;6000;23700;53200;66400;71400;75000;32900;39100;76500;49200;35000;22100;25500;23500;35400;48500;57800;52300;24500;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;89;72;75;21;48;16;16;16;16;480;1555;3364;5497;4037;4100;3168;3425;5374;5652;6561;6146;6505;6502;7946;7873;7299;4590;5543;5566;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;54100;40100;43800;50800;53100;58100;79100;117300;114300;84400;119400;130200;426000;140000;5000;7400;4300;10300;12700;7000;6100;8000;4200;30300;26200;9400;9500;46000;17100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2624;2492;2927;4013;6190;7179;7195;6265;5612;3136;3595;4351;13320;6850;1168;1620;895;1602;1951;1490;1360;1370;908;2039;2231;1107;1085;3824;4316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30701000;44734000;45861000;41000000;43352000;49531000;46285000;54698000;55115000;60965000;58182000;65346000;69779000;75882000;73837000;71943000;71999000;76828000;85153000;87192000;92717000;79555000;87744000;89111000;109745000;113079000
-21;'076;Brazil;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600000;13852000;14287000;8824000;9330000;10660000;9961000;11772000;11862000;13121000;12522000;14064000;15018000;16331000;15891000;15597000;12754000;12815000;16017000;17602000;15374000;13264000;15118000;15724000;17356000;15154000
-21;'076;Brazil;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20101000;30882000;31574000;32176000;34022000;38871000;36324000;42926000;43253000;47844000;45660000;51282000;54761000;59551000;57946000;56346000;59245000;64013000;69136000;69590000;77343000;66291000;72626000;73387000;92389000;97925000
-21;'076;Brazil;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1190000;1410000;1650000;1860000;2160000;2550000;2640000;2860000;3090000;3510000;3770000;4000000;4000000;4000000;5354000;5927000;6539000;12100000;17800000;20900000;20900000;20900000;20900000;21174000;22848000;24157000;25494008;26788000;33194008;30701008;30701008;30701008;30701000;30701000;30701000;30701000;30701000;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;470000;560000;660000;740000;860000;1020000;1050000;1140000;1230000;1400000;1510000;1600000;1600000;1600000;1614000;1719000;1900000;2800000;4600000;5400000;5400000;5400000;5400000;6500000;7588000;7821000;8053000;8614000;12321000;10600000;10600000;10600000;10600000;10600000;10600000;10600000;10600000;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;720000;850000;990000;1120000;1300000;1530000;1590000;1720000;1860000;2110000;2260000;2400000;2400000;2400000;3740000;4208000;4639000;9300000;13200000;15500000;15500000;15500000;15500000;14674000;15260000;16336000;17441008;18174000;20873008;20101008;20101008;20101008;20101000;20101000;20101000;20101000;20101000;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1871;Other industrial roundwood;5516;Production;m3;2840000;2927000;3017000;3107000;3196000;3285000;3372000;3461000;3550000;3638000;3728000;3818000;3909000;4003000;4099000;4198000;4299000;4402000;4506000;4610000;4715000;4818000;4921000;5024000;5125000;5226000;5325000;5422000;5516000;5608000;5696000;5784000;5870000;5955000;6038000;6121000;6204000;6284000;7361000;7843000;6703000;7287000;9723000;8282000;8688000;8736000;8313000;7853000;7799000;8047000;8798000;10017000;9704000;9017000;8147000;8229000;8753000;8969000;8710000;9194000;10219000;9736000;9794000
-21;'076;Brazil;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;2800;15200;15200;20200;20100;15200;5700;7700;7700;9300;7500;5500;3000;10000;7300;6200;3100;1400;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;45;250;250;817;817;1047;380;451;451;324;294;111;54;179;128;118;59;12;243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;307000;316000;326000;336000;345000;355000;364000;374000;384000;393000;403000;413000;422000;433000;443000;454000;465000;476000;487000;498000;510000;521000;532000;543000;554000;565000;576000;586000;596000;606000;616000;625000;635000;644000;653000;662000;671000;679000;1809000;1889000;1614000;1755000;2342000;1995000;2093000;2104000;2002000;1891000;1878000;1938000;2119000;2413000;2337000;2172000;1962000;1982000;2108000;2160000;2098000;2214000;2461000;2345000;2359000
-21;'076;Brazil;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2533000;2611000;2691000;2771000;2851000;2930000;3008000;3087000;3166000;3245000;3325000;3405000;3487000;3570000;3656000;3744000;3834000;3926000;4019000;4112000;4205000;4297000;4389000;4481000;4571000;4661000;4749000;4836000;4920000;5002000;5080000;5159000;5235000;5311000;5385000;5459000;5533000;5605000;5552000;5954000;5089000;5532000;7381000;6287000;6595000;6632000;6311000;5962000;5921000;6109000;6679000;7604000;7367000;6845000;6185000;6247000;6645000;6809000;6612000;6980000;7758000;7391000;7435000
-21;'076;Brazil;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;2800;15200;15200;20200;20100;15200;5700;7700;7700;9300;7500;5500;3000;10000;7300;6200;3100;1400;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;45;250;250;817;817;1047;380;451;451;324;294;111;54;179;128;118;59;12;243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1630;Wood charcoal;5510;Production;t;3731632;3866114;4005442;4149792;4299343;4454285;4614810;4781120;4953424;5131937;5319425;5512600;5712588;5920985;6138986;6357136;6598625;6843865;7094253;7337857;7559306;7795083;8045462;8289285;8543551;8788993;9036776;9286079;5482000;4631000;4578000;4238000;3990000;8250000;7771000;6500000;5900000;6600000;6725000;6350000;6555000;6705000;7301000;7301000;7301000;7100000;7500000;7100000;5018000;4951000;5479000;6258000;6590000;7240000;6183000;5502000;5525000;6430000;6390000;6558000;7300000;7595000;7151000
-21;'076;Brazil;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459;347;6600;7400;7600;7600;9500;9500;20000;18200;18000;18000;6100;6100;17200;31800;100000;84762;124188;110460;77354;38833;41256;12613;3990;6189;14767;22733;12344;25816.45;31104;33603
-21;'076;Brazil;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;78;294;265;186;186;330;176;222;280;422;422;1175;1175;3260;6047;19164;6934;11542;12177;8667;5227;6165;3171;2872;4858;7092;10370;7514;18394.48;15071;15153
-21;'076;Brazil;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;14300;23900;31400;25800;9400;2900;6700;6700;6700;6700;6700;6700;17600;7100;10500;12814;21416;11277;10300;10300;10300;9600;9000;8000;9300;10100;10100;20598;15998;16000;15500;8000;6488;3000;927;882;1211;1287;4151;5410;3844;4194;14581;15766;13235.53;4286;5213
-21;'076;Brazil;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;570;808;2000;1582;1010;282;984;984;984;984;984;984;2002;822;1320;1691;3492;2020;1555;1555;1555;1694;1968;1414;2141;3166;3166;5963;5606;3055;2940;1609;2200;1116;560;457;692;742;1650;1563;1859;2064;6325;7064;6111.03;2696;3437
-21;'076;Brazil;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22184000;22467000;26629000;21599000;17055000;18782000;16879000;23940000;24076000;24076000;30928000;30928000;30928000;30928000;30928000;30928000;30928000;41417000;41417000
-21;'076;Brazil;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;393;130;1300;1151;5530;145700;269000;385000;298000;47000;47000;56946;33368;29377;31987;17144;14319;9035;11762;12076;13588;24294;20287;27994
-21;'076;Brazil;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;143;141;164;49;34;104;164;285;524;994;925;1193;1107;1190;1280;1157;1160;891;1001;1485;1343;2469.53;3156;2052
-21;'076;Brazil;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;830000;1096000;1300018;1260057;1251659;1905000;2337997;2917000;3039000;2310000;2266000;1643720;1899000;1699855;1750794;1992409;2162654;2252581;2577880;2594000;2597769;1562068;1721587;1863995.9;1977145;1583459
-21;'076;Brazil;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38502;36612;52488;48642;51892;61241;86297;102412;110363;116740;142247;91285;110836;107513;116958;129300;132547;136118;141823;144062;144281;150670;139975;151356.65;170435;158121
-21;'076;Brazil;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1089000;3042000;7619000;7723000;6686000;7565000;5258000;6746000;6882000;6882000;11788000;11788000;11788000;11788000;11788000;11788000;11788000;14087000;14087000
-21;'076;Brazil;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;61;61;100;100;100;0;0;300;0;1100;1100;1100;700;2000;3000;2000;8000;5000;946;368;377;537;613;790;398;532;759;782;1108;1290;1961
-21;'076;Brazil;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;7;5;5;0;0;2;0;8;8;8;5;14;39;74;306;178;353;385;348;508;386;542;812;900;1350;1218;2261.53;2926;1683
-21;'076;Brazil;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;212052;533875;607300;612800;579000;830000;1096000;1300000;1260000;1251500;1754000;2216000;2405000;2134000;2269000;2262000;1640000;1898000;1699000;1749000;1986000;2162000;2250000;2574000;2594000;2597691;1562021;1721454;1863946.9;1977143;1583455
-21;'076;Brazil;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18421;29343;32954;27713;25839;38502;36612;52487;48628;51847;59388;83744;101009;106097;116014;142180;91187;110807;107490;116865;129061;132439;135827;141403;144062;144271;150662;139970;151348.65;170433;158118
-21;'076;Brazil;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21095000;19425000;19010000;13876000;10369000;11217000;11621000;17194000;17194000;17194000;19140000;19140000;19140000;19140000;19140000;19140000;19140000;27330000;27330000
-21;'076;Brazil;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2238;1700;200;300;0;0;0;0;93;130;200;51;4430;145000;267000;382000;296000;39000;42000;56000;33000;29000;31450;16531;13529;8637;11230;11317;12806;23186;18997;26033
-21;'076;Brazil;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;101;47;62;0;0;0;0;141;141;156;41;26;99;150;246;450;688;747;840;722;842;772;771;618;79;101;135;125;208;230;369
-21;'076;Brazil;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2047;113;61;300;0;0;0;0;18;57;159;151000;121997;512000;905000;41000;4000;3720;1000;855;1794;6409;654;2581;3880;0;78;47;133;49;2;4
-21;'076;Brazil;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;4;2;15;0;0;0;0;1;14;45;1853;2553;1403;4266;726;67;98;29;23;93;239;108;291;420;0;10;8;5;8;2;3
-21;'076;Brazil;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239000;244000;231000;257000;317350;652000;686000;727000;764000;921000;921000;921000
-21;'076;Brazil;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1143;1998;1340;1110;1320;2198;1506;1758;2151;2500.46;1843;6511
-21;'076;Brazil;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5675;5388;6465;4843;4221;377;548;600;650;795.93;845;1632
-21;'076;Brazil;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536;388;13320;24641;35940;108686;225941;223232;412347;399453.79;493134;564278
-21;'076;Brazil;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2597;96;2818;5883;6949;17717;37566;37074;56612;53313.1;83809;109809
-21;'076;Brazil;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;62000;49000;75000;135350;470000;504000;506000;543000;700000;700000;700000
-21;'076;Brazil;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;1160;454;367;820;873;1283;1500;1908;2048.46;1424;5539
-21;'076;Brazil;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;69;27;24;55;71;112;112;147;125;128;996
-21;'076;Brazil;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;194;6660;24368;35760;108376;225355;221986;409038;395572;488702;563788
-21;'076;Brazil;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;48;1409;4361;5803;17304;37337;36778;55979;52617.1;82861;109619
-21;'076;Brazil;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182000;182000;182000;182000;182000;182000;182000;221000;221000;221000;221000;221000
-21;'076;Brazil;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;838;886;743;500;1325;223;258;243;452;419;972
-21;'076;Brazil;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5656;5319;6438;4819;4166;306;436;488;503;670.93;717;636
-21;'076;Brazil;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;194;6660;273;180;310;586;1246;3309;3881.78;4432;490
-21;'076;Brazil;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;48;1409;1522;1146;413;229;296;633;696;948;190
-21;'076;Brazil;1872;Sawnwood;5516;Production;m3;6450000;6769000;5693000;5531000;5661000;6073002;6618302;6965000;7467202;8035000;8100000;7550000;7109000;7642402;10128602;11243102;12643000;13337000;14070102;14881000;15852000;16470000;17199000;17781000;17781000;18063000;18063000;18179000;18179000;13730000;15700000;15890000;16340000;16610000;18100000;18830000;19310000;19520000;20530000;21300000;21950000;22488000;23090000;23480000;23557000;23797000;24180000;21847000;16844000;17450000;16200000;15170000;13330000;11340000;9980000;9950000;10220000;10240000;10100000;10000000;10000000;9743000;9743000
-21;'076;Brazil;1872;Sawnwood;5616;Import quantity;m3;;;;;;200;500;1000;1000;1000;500;4600;33700;82900;77113;179900;256800;360200;311200;461700;334700;341600;270700;339100;353900;424300;308100;111900;258400;265000;255400;228444;219373;381034;456000;573000;380500;245000;145300;158700;165500;142300;92000;94614;146393;134000;145000;113000;99975;81192;56588;44535;35901;32633;45728;37274;96944;61549;67177;106528;59408;36558;51422
-21;'076;Brazil;1872;Sawnwood;5622;Import value;1000 USD;;;;;;5;12;15;15;15;10;92;1478;5366;3626;8782;13154;19646;16084;24297;17663;12871;8582;10299;12840;16985;12986;5696;15160;22251;16170;16207;26870;102427;125711;123757;118335;102453;51592;5384;7431;8538;9164;12930;10733;11414;13925;18156;15396;14677;18755;22593;18699;26309;25927;33942;28985;28457;35088;42886;32109;22831;18441
-21;'076;Brazil;1872;Sawnwood;5916;Export quantity;m3;1114600;853500;836500;1101300;1192600;1274100;1111500;1394600;1114200;1074500;1154500;1040000;1055000;711500;500400;438900;596900;568400;827500;809000;736700;523700;573000;525900;492900;455200;552200;651700;561600;508600;507200;718521;1017187;1404900;1928000;1449000;1587000;1589000;2174000;2464000;2520000;2915000;3374176;3657000;3648365;3167000;3167000;2121000;1394137;1268000;1227679;1127743;1110349;1369093;1658930;2097118;2763044;3742043;3400920;2794096;4319616;3384663;2889305
-21;'076;Brazil;1872;Sawnwood;5922;Export value;1000 USD;47768;38658;37628;50194;56008;60976;55312;76998;82909;79218;84344;83055;128120;127035;90225;70546;121268;104440;207988;211472;210405;139856;178815;142981;121773;119712;189299;202072;147721;147247;168985;212771;280375;449620;518169;344746;411000;409910;497408;490194;512163;548941;645884;836367;882712;846314;922500;679549;398922;417912;407904;351274;353287;424392;454672;537187;787143;923388;746522;852526;1351648;1443395;880940
-21;'076;Brazil;1632;Sawnwood, coniferous;5516;Production;m3;3275000;3502500;2821000;2801000;2961000;3272501;3618151;3865000;4167101;4535000;4500000;4350000;3665000;3665201;5469301;5846051;6590000;6952000;7334051;7143000;7475000;7766000;8110000;8384000;8384000;8384000;8384000;8384000;8384000;2800000;3500000;3480000;3720000;3780000;4870000;5180000;5610000;6020000;6730000;7500000;7950000;8320000;8660000;8990000;8935000;9078000;9260000;8797000;8470000;8970000;9060000;9170000;8780000;7940000;7250000;7250000;7620000;7840000;7900000;8100000;8200000;7943000;7943000
-21;'076;Brazil;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3444;373;3034;6000;6000;8000;6000;300;700;6000;29000;20000;44000;54000;46000;40000;16000;31903;23700;11700;5940;3901;6600;6400;7274;6157;10481;14046;5587;12965;9644;19048
-21;'076;Brazil;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1670;282;427;2464;2000;3000;2000;77;196;1200;3087;2664;6781;6565;4923;4589;2533;3547;3982;2995;1595;1227;2495;2598;2982;2479;5025;5879;1780;3097;4601;7850
-21;'076;Brazil;1632;Sawnwood, coniferous;5916;Export quantity;m3;1094700;824550;800350;1055100;1126300;1198050;1033950;1312400;1023450;927300;993550;836000;688000;383750;310200;177050;191900;177500;234250;187150;157400;126300;113800;80200;71500;80500;66600;118600;114100;80000;120000;250000;350000;494000;402000;474000;634000;783000;1175000;1276000;1328000;1499000;1700176;1619000;1761365;1505000;1468000;1090000;823437;690000;741000;719000;746000;993000;1304000;1812821;2282044;3078043;2790920;2219096;3432616;2726663;2542305
-21;'076;Brazil;1632;Sawnwood, coniferous;5922;Export value;1000 USD;46822;37442;35946;47669;51709;56302;50530;71342;75103;69602;73994;69451;97774;87647;65806;36988;37359;45928;68758;68323;53951;38208;49598;26362;19218;22510;27537;32836;25256;15333;34380;58326;69500;116142;133324;106363;145602;160588;223981;212669;228714;227087;254999;294748;303866;275314;254888;202645;141589;153870;169689;157461;168596;230376;288184;361193;463911;549556;349412;481076;778646;817637;611668
-21;'076;Brazil;1633;Sawnwood, non-coniferous;5516;Production;m3;3175000;3266500;2872000;2730000;2700000;2800501;3000151;3100000;3300101;3500000;3600000;3200000;3444000;3977201;4659301;5397051;6053000;6385000;6736051;7738000;8377000;8704000;9089000;9397000;9397000;9679000;9679000;9795000;9795000;10930000;12200000;12410000;12620000;12830000;13230000;13650000;13700000;13500000;13800000;13800000;14000000;14168000;14430000;14490000;14622000;14719000;14920000;13050000;8374000;8480000;7140000;6000000;4550000;3400000;2730000;2700000;2600000;2400000;2200000;1900000;1800000;1800000;1800000
-21;'076;Brazil;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;200;500;1000;1000;1000;500;4600;33700;82900;77113;179900;256800;360200;311200;461700;334700;341600;270700;339100;353900;424300;308100;111900;258400;265000;255400;225000;219000;378000;450000;567000;372500;239000;145000;158000;159500;113300;72000;50614;92393;88000;105000;97000;68072;57492;44888;38595;32000;26033;39328;30000;90787;51068;53131;100941;46443;26914;32374
-21;'076;Brazil;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;5;12;15;15;15;10;92;1478;5366;3626;8782;13154;19646;16084;24297;17663;12871;8582;10299;12840;16985;12986;5696;15160;22251;16170;14537;26588;102000;123247;121757;115335;100453;51515;5188;6231;5451;6500;6149;4168;6491;9336;15623;11849;10695;15760;20998;17472;23814;23329;30960;26506;23432;29209;41106;29012;18230;10591
-21;'076;Brazil;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;19900;28950;36150;46200;66300;76050;77550;82200;90750;147200;160950;204000;367000;327750;190200;261850;405000;390900;593250;621850;579300;397400;459200;445700;421400;374700;485600;533100;447500;428600;387200;468521;667187;910900;1526000;975000;953000;806000;999000;1188000;1192000;1416000;1674000;2038000;1887000;1662000;1699000;1031000;570700;578000;486679;408743;364349;376093;354930;284297;481000;664000;610000;575000;887000;658000;347000
-21;'076;Brazil;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;946;1216;1682;2525;4299;4674;4782;5656;7806;9616;10350;13604;30346;39388;24419;33558;83909;58512;139230;143149;156454;101648;129217;116619;102555;97202;161762;169236;122465;131914;134605;154445;210875;333478;384845;238383;265398;249322;273427;277525;283449;321854;390885;541619;578846;571000;667612;476904;257333;264042;238215;193813;184691;194016;166488;175994;323232;373832;397110;371450;573002;625758;269272
-21;'076;Brazil;1634;Veneer sheets;5516;Production;m3;28000;35000;40000;40000;50000;65000;77000;80000;90000;96000;116000;152000;188000;175000;154000;169000;190000;190000;200000;216000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;300000;310000;300000;304000;468000;440000;560000;620000;620000;550000;550000;550000;1464000;1540000;1206000;1348000;1127000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000
-21;'076;Brazil;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;200;100;100;100;100;2000;4500;5600;8500;10600;27600;47600;86700;83700;76500;53500;61400;64400;55200;49900;25900;42100;35700;26100;24239;35300;35800;17400;38000;29000;18500;14500;21000;19400;15400;9868;7626;10000;13000;12000;14000;10105;7007;6027;6332;8721;7048;4438;5933;3212;2708;2503;2913;5143;8745;22149
-21;'076;Brazil;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;103;12;49;68;68;432;846;1046;1532;2082;4920;7406;13791;12410;10402;6836;6199;5899;6923;6623;6000;7603;8427;4982;4571;6215;7050;5431;10087;11796;10311;9317;11554;9107;13442;8461;8451;7227;8754;8512;14764;9456;9875;9095;7326;12745;15234;11568;11483;7502;7388;6817;6463;9190;13941;16014
-21;'076;Brazil;1634;Veneer sheets;5916;Export quantity;m3;9100;6500;6100;6300;11100;14900;20300;28300;37000;33300;43500;51800;57000;38600;41600;49200;48900;46800;35900;39800;42500;46800;53900;52000;51900;49600;46600;55700;49800;52900;51000;63515;84500;118700;195600;128000;167000;105000;80000;83500;62200;67000;114000;131822;233680;207000;308000;120000;32970;31603;44600;40567;38077;48936;49041;55409;77298;119672;148465;224328;195579;232272;131792
-21;'076;Brazil;1634;Veneer sheets;5922;Export value;1000 USD;427;731;668;911;2178;4328;3628;7405;17070;17013;18565;24888;31485;23134;24470;24497;24645;24682;28466;34249;32881;29360;30738;33329;34293;31730;32537;40857;32688;34016;30850;38529;49430;63640;85819;74097;96772;63903;27244;62786;36726;47827;41000;57080;68479;69560;88232;55978;25571;30290;36091;34427;30081;34852;33209;26422;31368;47688;34481;44413;42402;55401;29648
-21;'076;Brazil;1873;Wood-based panels;5516;Production;m3;251400;252400;255800;276500;299600;406585;460038;523197;589445;722986;916004;1238013;1322607;1408780;1571000;1786800;1949000;2028000;2036000;2266000;2342000;2164000;2289000;2278000;2256000;2289000;2524000;2613000;2658000;2658000;2508000;2658000;2933000;3243686;3095796;3328096;3504378;3647437;4654000;5183000;5537524;6053986;7006005;7893159;8681789;9061255;8688951;8436456;7762539;8910407;8915000;10078000;10585000;10410000;9874000;10337000;11052000;11462000;11793000;12879000;14935000;12874000;12566000
-21;'076;Brazil;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;100;200;100;200;200;200;2400;3300;1000;1000;300;500;400;600;400;500;1000;1000;1900;7800;4900;2765;4480;8557;69700;211800;254800;126500;61400;28300;72500;92900;132300;182700;304910;371686;279300;286733;168038;186730;197994;112430;128073;97590;24664;13437;12723;14303;35520;108309;55937.81;19299;32055
-21;'076;Brazil;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;66;163;128;280;358;239;717;938;321;316;156;294;251;343;257;409;203;203;237;1391;1492;880;1543;2822;17643;48451;66558;29355;13419;6287;15725;20324;25001;33639;46576;66950;73657;89450;44954;61713;79030;53445;48939;33414;12610;6998;8275;8971;9454;10148;18978.21;10738;11574
-21;'076;Brazil;1873;Wood-based panels;5916;Export quantity;m3;5200;3400;5800;17800;26400;29100;34800;41700;40500;72600;110800;119700;134200;136300;143400;158800;187700;253500;276000;283900;331000;273400;341700;401200;404000;427400;417600;606400;591700;563200;542500;718675;1012096;1104204;1014700;927300;954300;840000;1388000;1615683;1840906;2330602;2947400;3838664;4403549;3403240;3022062;2435481;1724083;1375909;1235926;1423992;1593440;1826000;2276431;3101097;3716012;4023366;4213454;4162197;4001733.41;3964068;3292416
-21;'076;Brazil;1873;Wood-based panels;5922;Export value;1000 USD;687;407;567;1545;2412;2923;3642;4718;4937;8063;11894;14404;18683;25387;26098;32266;38404;59432;75569;90727;108298;75582;91409;106759;101688;114286;130460;204070;175722;181134;186188;249671;384393;408973;414049;356640;366813;271887;421608;442415;432133;459551;690021;1190605;967839;825067;838892;760000;429258;502668;458995;552561;564910;626080;672720;756042;948640;1127010;1167497;990844;1621785.7;1540701;1072655
-21;'076;Brazil;1640;Plywood and LVL;5516;Production;m3;190000;195000;195000;200000;220000;240000;270000;290000;300000;342000;431000;606000;659000;655000;660000;695000;698000;722000;762000;826000;902000;902000;902000;902000;902000;902000;1200000;1300000;1300000;1300000;1150000;1300000;1575000;1870000;1600000;1670000;1650000;1600000;2200000;2420000;2500000;2700000;3230000;3810000;4457000;4335000;3499000;3084000;2345000;2300000;2250000;2573000;2481000;2200000;2196000;2564000;2885000;3080000;2910000;2917000;3690000;3690000;3512000
-21;'076;Brazil;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;100;200;100;100;100;100;2300;3200;900;900;200;200;100;100;100;100;100;100;800;1700;1600;524;400;400;1300;3500;3200;2000;1400;1300;1500;1500;1400;1400;8000;8000;7000;5201;3876;665;3653;2374;2572;6681;1834;3993;4503;4743;8163;4385;2705;12584;12579
-21;'076;Brazil;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;66;163;128;168;168;168;643;863;247;247;86;86;43;43;43;43;43;43;122;480;880;210;262;191;564;1516;1427;1172;989;784;1022;1228;2391;2391;2287;2695;3171;3272;1617;1117;2983;2406;2707;2041;1519;1947;2206;2789;2844;2810;3205;5897;7749
-21;'076;Brazil;1640;Plywood and LVL;5916;Export quantity;m3;2700;2600;3000;4800;5500;6600;5500;12400;11200;29100;28600;32000;43000;30000;31600;45000;51700;79300;110500;98600;112900;81300;147100;205900;229100;218000;182900;363500;318300;303100;286000;407944;655400;726300;637000;576000;613000;556000;1124000;1372000;1521000;1869000;2387000;3001000;3667563;2868000;2518000;2144000;1495767;1178000;1003000;1108000;1197000;1299000;1491000;1849937;2322000;2521000;2862896;2689759;2504925;2315356;2034788
-21;'076;Brazil;1640;Plywood and LVL;5922;Export value;1000 USD;314;302;342;524;616;675;711;1723;1752;4036;4273;5596;7447;8728;7827;11214;11113;24375;38385;41281;48071;32342;48410;63322;64429;67350;70600;136651;100971;100010;109905;150678;274225;293149;295878;247670;264255;199240;345029;373669;359985;387070;589820;1020448;785770;650482;677460;632173;343453;406138;364429;398977;417912;455550;458241;478097;620431;774735;861215;679932;1210558;1009224;719244
-21;'076;Brazil;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3012;2996
-21;'076;Brazil;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1707;1444
-21;'076;Brazil;1646;Particle board and OSB (1961-1994);5516;Production;m3;6400;6400;7800;7500;9600;19200;41600;41600;81000;112000;162000;265000;313000;360000;407000;461000;541000;541000;550000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;758286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;300;300;500;300;400;900;900;1100;6100;3300;738;900;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;112;190;71;74;75;74;69;70;208;208;300;214;366;160;160;115;911;612;262;397;949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;900;900;1000;200;2800;1800;800;3300;2500;9600;900;2400;4000;3800;17100;13300;11400;9400;8200;9300;26785;45644;65275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;59;100;288;74;1020;370;149;556;730;2447;268;457;477;426;2273;1867;1708;1450;1196;1982;4824;8175;13836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879296;1059056;1224112;1313053;1500000;1762000;1832996;1940620;2108378;2369605;2049000;2198000;2557000;2617000;2489000;3018000;3070000;3261000;3381000;3195000;2700000;2982000;3138000;3244000;3348000;3485000;3810000;3470000;3200000
-21;'076;Brazil;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45600;147800;120600;72700;41000;15000;46000;43000;73500;73500;83000;68000;46000;52000;40172;18548;3934;4901;8733;5522;554;1010;1089;1032;16037;96764;41784.66;2661;16202
-21;'076;Brazil;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10118;29198;27122;17083;8192;3000;9200;9000;10514;10514;15000;14371;12754;16017;8927;5384;1958;2809;3214;1338;345;544;532;456;846;2642;8421.61;981;848
-21;'076;Brazil;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;59000;49000;4000;28000;45683;104906;66202;102000;234000;54150;87000;80212;54251;28949;25000;37385;35082;49672;47538;105581;319540;420000;486000;414000;504277;422013.98;481209;351364
-21;'076;Brazil;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19118;22533;20591;1220;6678;10456;12766;9828;18325;51867;14012;26770;25267;20059;10178;9946;11445;12679;15635;16183;25107;56501;80204;90986;83002;86261;89174.13;110496;80916
-21;'076;Brazil;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;263000;300000;227000;151000;134000;176000;193000;201000;212000;233000;233000;233000;208000;214000;255000;247000;260000;234000;234000
-21;'076;Brazil;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;43;114;198;208;167;65;88;96
-21;'076;Brazil;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;16;64;132;101;107;43;36;58
-21;'076;Brazil;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213000;109000;99000;26000;30048;52000;55488;63244;47190;69044;85762;120350;152000;159945;191125;185600;212860.21;189570;186735
-21;'076;Brazil;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35238;22611;22360;6234;6520;13801;15332;15473;13385;18484;17937;24576;33935;38768;37197;32355;55645.15;48267;50840
-21;'076;Brazil;1874;Fibreboard;5516;Production;m3;55000;51000;53000;69000;70000;147385;148438;191597;208445;268986;323004;367013;350607;393780;504000;630800;710000;765000;724000;780000;780000;602000;727000;716000;694000;727000;664000;653000;698000;698000;698000;698000;698000;615400;616500;599040;630266;734384;954000;1001000;1204528;1413366;1667627;1713554;1912789;2228255;2405951;2584456;2794539;3416407;3402000;4043000;4511000;4782000;4745000;4558000;4821000;4924000;5280000;6230000;7175000;5480000;5620000
-21;'076;Brazil;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;3180;4257;22800;60500;131000;51800;19000;12000;25000;48400;57400;107800;213910;295686;226300;229532;123990;167517;190407;105155;116768;85387;22128;8391;7017;8330;11112;6993;11383.15;3966;3178
-21;'076;Brazil;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;884;1682;6961;17737;38009;11100;4238;2503;5503;10096;12096;20734;29289;49884;57732;70161;34410;55212;74089;48230;43018;30035;10607;4491;5473;5594;5663;4589;7308.61;3824;2919
-21;'076;Brazil;1874;Fibreboard;5916;Export quantity;m3;2500;800;2800;13000;20900;22500;29300;29300;29300;43500;82200;86800;90300;105300;111600;111000;134200;173400;162200;182800;208500;191200;192200;191300;171100;192300;221400;231500;264000;251900;247200;283946;311052;312629;320700;292300;292300;280000;236000;198000;215000;395400;458400;603664;468836;339240;324850;211230;169319;120909;140053;217666;299578;410418;594088;811270;822012;856421;745433;782561;861934.22;977933;719529
-21;'076;Brazil;1874;Fibreboard;5922;Export value;1000 USD;373;105;225;1021;1796;2248;2931;2995;3185;4027;7621;8749;11136;16371;18197;20032;26921;34908;36628;48716;57780;42972;42542;42960;36833;44663;57993;65711;73301;79928;74301;94169;101993;101988;99053;86437;81967;71427;69901;58290;59382;62653;81876;118290;132819;125204;113805;101534;69107;72783;67789;125432;117978;135863;171435;196868;214070;222521;186083;192296;266408.42;372714;221655
-21;'076;Brazil;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555500;538040;539230;506692;536000;559000;534456;506848;511094;508281;505059;532896;526879;510660;399862;380070;362000;365000;358000;349000;347000;317000;287000;276000;284000;280000;330000;300000;300000
-21;'076;Brazil;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;7500;8000;6800;3000;0;0;21600;21600;39000;47000;56000;25000;11632;2437;4972;8711;13345;9965;5827;7817;4770;3028;4103;3266;4091;4437.52;1100;481
-21;'076;Brazil;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1357;3426;2300;2000;1000;0;0;3895;3895;7033;5243;8526;6176;6423;1247;5471;6124;6675;5958;3909;4123;2349;1849;2434;2026;2457;3049.61;1305;340
-21;'076;Brazil;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299700;271000;262000;232000;219000;195000;211000;200000;200000;299032;231760;228940;212660;156430;120481;85994;90140;101789;128195;155067;187601;183800;126357;156492;116194;146671;151534.22;112042;149231
-21;'076;Brazil;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95538;81897;78782;64827;66348;57630;58582;51258;51258;79407;94636;84007;72036;75824;47332;53955;44728;88309;60898;67995;75561;64333;48009;55395;38503;46709;56428.42;42582;38083
-21;'076;Brazil;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30036;166692;357000;381000;609072;845518;1095533;1144273;1407730;1695359;1879072;2073796;2394677;3036337;3040000;3678000;4153000;4433000;4398000;4241000;4534000;4648000;4996000;5950000;6845000;5180000;5320000
-21;'076;Brazil;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;53000;113000;36000;11000;11000;24000;26000;35000;68000;165600;238800;200300;215900;121542;162247;181675;91758;106737;79506;14049;3480;3829;4226;7754;2901;6887;2437;2520
-21;'076;Brazil;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5604;14311;33759;7200;2200;2200;5200;6000;8000;13500;23846;41122;51328;63298;33158;49653;67952;41533;36998;26103;6412;2081;3426;3156;3620;2129;4233;2446;2455
-21;'076;Brazil;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;4900;300;18000;17000;3000;4000;155000;218000;205000;160000;73300;42190;26800;32838;24445;49513;115693;171350;255267;402588;626630;690000;695764;628528;634464;708892;865147;569764
-21;'076;Brazil;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506;2808;167;3600;3553;660;800;7031;26254;25000;25683;28645;14976;14732;16294;14817;22800;36945;57051;67797;95288;132341;165113;166135;147332;144921;209201;329645;182961
-21;'076;Brazil;1650;Other fibreboard;5516;Production;m3;15000;17000;17000;18000;25000;100000;100000;140000;140000;160000;160000;180000;120000;120000;164000;204800;210000;220000;240000;200000;200000;160000;200000;200000;180000;152000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-21;'076;Brazil;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;110;64;0;0;10000;9000;5000;1000;1000;800;800;800;1310;886;1000;2000;11;298;21;52;66;54;262;141;160;1;92;1;58.63;429;177
-21;'076;Brazil;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;47;33;0;0;1950;1900;1038;303;303;201;201;201;200;236;228;440;5;88;13;22;62;23;72;61;198;4;17;3;26;73;124
-21;'076;Brazil;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30692;23250;16673;17500;16400;30000;30000;0;0;0;40400;40400;99632;77076;37000;70000;28000;16000;10470;400;184;33;84;3899;840;5655;4165;711;1426;1508;744;534
-21;'076;Brazil;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9187;7168;5354;2009;1732;3018;3000;0;0;0;4364;4364;13883;12500;12552;26793;10978;5481;4011;261;178;29;71;586;194;948;991;248;666;779;487;611
-21;'076;Brazil;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;40000;34000;36000;51000;45000;47385;48438;51597;68445;108986;163004;187013;230607;273780;340000;426000;500000;545000;484000;580000;580000;442000;527000;516000;514000;575000;603000;592000;637000;637000;637000;637000;637000;554400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1459;3070;4193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;837;1649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;2500;800;2800;13000;20900;22500;29300;29300;29300;43500;82200;86800;90300;105300;111600;111000;134200;173400;162200;182800;208500;191200;192200;191300;171100;192300;221400;231500;264000;251900;247200;253254;287802;295956;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;373;105;225;1021;1796;2248;2931;2995;3185;4027;7621;8749;11136;16371;18197;20032;26921;34908;36628;48716;57780;42972;42542;42960;36833;44663;57993;65711;73301;79928;74301;84982;94825;96634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1879;Total fibre furnish;5510;Production;t;329200;381600;447900;505200;568600;651600;685200;737200;787300;1155100;1132500;1434000;1666000;1808000;1777000;2042000;2360000;2814000;3104000;4456000;4283000;4642000;3880000;4402000;4011000;4476000;5414000;5503000;5976000;5651000;6056000;6588000;6791000;7118000;7196000;7512000;7629000;8007000;9527000;9953000;10002000;10623000;11977000;12402000;13790000;14677000;15640000;16525000;17229000;18183000;18270000;18340000;19610000;21270000;22168000;23424000;24546000;26211000;24623000;25909490;27458000;30099000;28595664
-21;'076;Brazil;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;35000;21700;28200;68600;117500;121600;174200;79600;51500;55000;60400;66800;53600;28200;12500;8600;21000;30500;52300;64000;74800;103500;69900;91200;81271;139607;132458;235100;272000;292300;340800;377900;369500;317400;349128;349172;412550;364340;339551;325300;350300;379429;442215;413618;434123;450907;454531;427993;388865;242918;220149;240650;232637;374169.31;199256;181784
-21;'076;Brazil;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;5193;3477;5773;13757;21403;29846;76871;34557;21577;23210;27627;31991;33173;18519;7544;4355;7969;10968;16634;23479;37295;59888;38314;53888;38395;47998;62930;162271;137476;139149;167978;179256;236983;165990;167411;167432;194998;207641;193802;212245;255545;225518;346129;353075;329462;321942;336266;326437;269021;167096;166041;187579;155226;217299.48;190230;184550
-21;'076;Brazil;1879;Total fibre furnish;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;11900;26700;39300;32600;140700;193800;133700;153300;140600;94600;267900;582400;890450;952700;826300;987900;978300;931100;882900;815700;1063100;1003300;1040200;1381800;1685304;2051318;2063973;1962905;2176700;2390000;2702432;3016200;2920297;3275085;3340704;4470935;4889972;5442489;6163260;6499259;7054020;8234922;8386019;8508303;8542311;9461132;10642729;11614780;12935606;13252750;14643375;14768938;15645780;15789031.78;19187959;18085466
-21;'076;Brazil;1879;Total fibre furnish;5922;Export value;1000 USD;26;269;26;230;602;467;218;1394;3165;5674;4480;13295;23491;36756;30538;26656;19487;57468;181266;364219;365760;278733;310856;396569;278286;322946;397905;625550;687285;599968;592108;745012;720906;847324;1042734;964145;960292;993743;1191189;1538869;1207932;1114293;1693190;1668199;1976148;2434133;2957179;3790010;3079563;4445402;4626670;4332345;4831338;4921583;5365113;5221559;5934559;7890373;7140303;5691680;6450838.66;7919507;7186036
-21;'076;Brazil;1878;Pulp for paper;5510;Production;t;329200;381600;447900;505200;568600;651600;685200;737200;787300;867100;882500;1034000;1216000;1278000;1247000;1432000;1695000;2042000;2270000;3404000;3290000;3656000;2856000;3321000;2853000;3092000;3926000;4054000;4423000;4364000;4769000;5301000;5504000;5831000;5909000;6225000;6342000;6720000;7111000;7341000;7390000;8011000;9104000;9529000;10352000;11180000;11998000;12697000;13315000;14164000;13922000;13977000;15129000;16465000;17426000;18835000;19590000;21148000;19755000;21016000;22568000;25017000;24300000
-21;'076;Brazil;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;35000;21700;28200;68600;117500;121600;174200;79600;51500;55000;60400;66800;53600;28200;12500;8600;13900;25300;36200;39000;49800;69300;48100;69400;56493;111310;109358;185100;242600;271100;318800;344300;345500;305100;335628;335672;397550;351319;326330;297300;331300;366584;422079;402669;425957;440902;429582;422612;376167;227124;195019;219279;208283;185174.31;154575;152514
-21;'076;Brazil;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;5193;3477;5773;13757;21403;29846;76871;34557;21577;23210;27627;31991;33173;18519;7544;4355;7433;10619;15390;21458;35274;56401;35859;51433;34385;45566;61221;153061;133908;136921;163877;175260;233787;164904;165726;165747;193143;205841;192310;208770;253424;224545;343102;350476;327684;319938;331680;325245;266568;163870;161295;183358;150440;165506.48;178754;178838
-21;'076;Brazil;1878;Pulp for paper;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;11900;26700;39300;32600;140700;193800;133700;153300;140600;94600;267900;582400;890400;951000;824600;986100;975600;927700;879500;814400;1062000;1002200;1035900;1377500;1678323;2043397;2060373;1957905;2171700;2387400;2699632;3014100;2916297;3270485;3336904;4466352;4888692;5440787;6161164;6495259;7051020;8233166;8381019;8481373;8513677;9429878;10615281;11536621;12905353;13199600;14598520;14744713;15628375;15767205.16;19150755;18060752
-21;'076;Brazil;1878;Pulp for paper;5922;Export value;1000 USD;26;269;26;230;602;467;218;1394;3165;5674;4480;13295;23491;36756;30538;26656;19487;57468;181266;364211;365531;278504;310744;396412;278043;322703;397785;625401;687102;599263;591403;744030;719948;846872;1041104;962771;959660;993206;1190681;1538068;1207046;1113569;1692360;1667829;1976034;2433768;2956175;3789001;3079126;4443943;4619987;4326913;4825311;4915925;5349865;5216365;5924445;7879267;7136263;5689135;6448008.57;7912413;7180294
-21;'076;Brazil;1875;Wood pulp;5510;Production;t;304200;356600;417900;472200;541600;616600;648100;694000;740400;810700;825600;974000;1149000;1311000;1208000;1415000;1649000;1976000;2158000;3350000;3238000;3590000;2728000;3217000;2771000;3023000;3890000;3981000;4339000;4307000;4714000;5244000;5444000;5795000;5903000;6292000;6421000;6774000;7113000;7338000;7436000;8052000;9149000;9580000;10363000;11275000;12083000;12850000;13625000;14474000;14282000;14318000;15492000;16845000;17813000;19409000;20187000;21695000;20277000;21558000;23095000;25639000;25322000
-21;'076;Brazil;1875;Wood pulp;5610;Import quantity;t;;;;14500;11400;25100;21900;70000;50700;48400;93900;146900;146700;197400;100200;66800;68100;70000;74900;60100;32600;15100;11800;20600;28100;41100;45000;55300;78000;64600;85900;75795;124697;123358;202000;254800;277300;319800;340000;347500;316100;350628;350672;398550;354929;340200;312300;343300;375889;424404;410042;422984;443902;429074;423905;374230;225700;195267;213145;199335;178976.47;150295;147228
-21;'076;Brazil;1875;Wood pulp;5622;Import value;1000 USD;;;;3093;2478;5339;4669;12434;9748;10515;19952;28577;35677;86720;44197;29477;29000;31840;35300;37715;21483;9349;5840;11236;12180;17892;24980;39560;63577;47450;63024;47832;51355;68910;167375;144682;139778;160038;167989;230061;165720;170178;170199;185777;198894;199934;221544;264850;228925;341533;354464;316083;321504;327842;323957;259896;154644;158268;178270;142212;157565.2;167187;165877
-21;'076;Brazil;1875;Wood pulp;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;11900;26700;39300;33300;140700;193800;133700;153300;140600;94600;267900;582400;890400;951000;824600;986100;975600;927700;879500;814300;1061800;1000400;1034100;1375700;1677922;2042931;2077473;1985505;2245800;2502700;2802932;3109050;3010211;3349380;3416263;4565740;4987314;5545236;6238041;6571259;7203020;8585845;8793019;8879788;8911538;9848335;11028410;11970252;13523520;13841746;15190432;15311017;16159048;16343619.11;19800264;19099963
-21;'076;Brazil;1875;Wood pulp;5922;Export value;1000 USD;26;269;26;230;602;467;218;1394;3165;5674;4628;13295;23491;36756;30538;26656;19487;57468;181266;364211;365531;278504;310744;396412;278043;322703;397696;625312;684311;596309;588449;743545;718843;854702;1063693;1003813;1022907;1048898;1241052;1601476;1251299;1158563;1743556;1721854;2033622;2478516;3012126;3901135;3308862;4750531;4984848;4700438;5179426;5290776;5591136;5571500;6345201;8272114;7473657;5984017;6780634.22;8381510;7935386
-21;'076;Brazil;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561000;561000;490000;570000;629000;619000;605000
-21;'076;Brazil;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2399;731;1941;2671;2883.46;2966;3153
-21;'076;Brazil;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257;449;1077;1459;1801;2147;2424
-21;'076;Brazil;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;265;180;680;10601;9568;13376
-21;'076;Brazil;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;146;147;391;6130;5906;7695
-21;'076;Brazil;1654;Mechanical wood pulp (1961-2016);5510;Production;t;94000;103500;128400;150000;160000;160000;163900;178300;173900;180500;176300;180000;212000;110000;110000;117000;140000;120000;141000;270000;240000;250000;275000;237000;324000;329000;332000;390000;455000;418000;425000;421000;475000;448000;466000;492000;443000;466000;444000;502000;460000;485000;449000;473000;500000;497000;521000;508000;428000;431000;435000;523000;517000;496000;478000;501000;;;;;;;
-21;'076;Brazil;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;69;2147;2100;2700;2300;1300;300;1300;600;400;400;400;464;3000;1000;1000;249;0;59;374;720;946;627;1150;;;;;;;
-21;'076;Brazil;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;19;961;963;783;902;476;117;583;300;269;269;269;147;1371;582;582;111;0;32;182;403;535;315;550;;;;;;;
-21;'076;Brazil;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;3900;8100;11700;10200;6500;5000;500;1200;1800;1700;1800;3800;2800;3200;5000;5100;9200;7900;11600;8400;9000;4900;4600;10000;9441;6722;11168;11700;17100;3400;900;700;0;200;1050;1300;450;0;0;175;0;0;0;69;13;5;10;0;0;;;;;;;
-21;'076;Brazil;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;26;269;26;230;602;467;218;294;542;818;711;474;444;76;306;374;328;341;778;607;729;1103;885;1627;1418;1880;1642;2078;1205;952;2100;3122;1743;4741;5041;7556;789;303;94;0;29;152;200;84;0;0;63;0;0;0;21;7;22;36;0;0;;;;;;;
-21;'076;Brazil;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;45000;55000;55000;60000;68500;86400;87600;67400;74800;71200;104000;120000;142000;142000;90000;103000;120000;110000;100000;99000;104000;96000;94000;104000;114000;125000;124000;109000;43000;45000;39000;51000;37000;37000;37000;31000;27000;27000;44000;46000;27000;43000;51000;47000;43000;26000;29000;32000;30000;37000;42000;43000;48000;52000;52000;61000;;;;;;;
-21;'076;Brazil;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;94;18500;18500;500;900;1000;0;0;328;372;629;1000;200;300;300;0;312;3291;4554;3001;3181;5136;5500;;;;;;;
-21;'076;Brazil;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;7993;7993;177;303;378;0;0;102;123;237;355;72;193;193;0;230;1836;2273;1501;1878;2831;2624;;;;;;;
-21;'076;Brazil;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893;550;105;105;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-21;'076;Brazil;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;172;51;51;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-21;'076;Brazil;1656;Chemical wood pulp;5510;Production;t;165200;198100;234500;262200;313100;370200;396600;448300;491700;559000;545300;674000;795000;959000;951000;1132000;1347000;1704000;1879000;2901000;2824000;3181000;2319000;2816000;2273000;2507000;3359000;3399000;3763000;3755000;4180000;4702000;4873000;5240000;5331000;5627000;5795000;6147000;6521000;6689000;6814000;7387000;8506000;8917000;9711000;10650000;11418000;12100000;12800000;13639000;13389000;13354000;14507000;15862000;16840000;18210000;18966000;20524000;19202000;20383000;21876000;24350000;23647000
-21;'076;Brazil;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;35000;21700;28200;68400;117400;121400;173800;79200;50100;54400;59400;65500;52800;26800;11500;7500;13800;25200;36100;38900;49600;67700;46000;67300;53642;106555;102117;160200;217100;258500;303600;327700;333200;295200;325500;325500;381521;333113;315000;292000;326000;358700;412189;391893;410789;429667;416122;407583;355940;209776;180362;200321;183179;162224.14;137541;135289
-21;'076;Brazil;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5193;3477;5773;13688;21350;29783;76667;34297;20577;22800;26940;31000;32473;17095;6511;3329;7340;10557;15337;21405;35174;54478;32986;48560;30491;40102;54365;138989;119373;124103;148011;158518;220071;150484;152285;152285;173592;183086;179621;201750;244586;212676;327383;331386;304214;305449;315018;309039;244412;138944;142471;163697;124884;140043.98;150831;148992
-21;'076;Brazil;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;8000;18600;27600;22400;134200;188800;133200;152100;138800;92900;266100;578600;887600;947800;819600;981000;966400;919800;867900;805900;1052800;995500;1029500;1365700;1664800;2024100;2049000;1945600;2154300;2383700;2698632;3013350;2916211;3269780;3335813;4464946;4888046;5440679;6156041;6485084;7040020;8229191;8375019;8477578;8513658;9429547;10614063;11535298;12904780;13199393;14598246;14744524;15627663;15756596.16;19140678;18047115
-21;'076;Brazil;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;1100;2623;4856;3769;12821;23047;36680;30232;26282;19159;57127;180488;363604;364802;277401;309859;394785;276625;320823;396054;623234;683106;595357;586349;738543;712661;841966;1035479;954794;958497;992783;1190521;1537943;1206208;1113349;1692090;1667605;1975878;2428601;2944999;3773786;3073155;4434268;4609827;4326876;4824776;4914285;5348072;5215592;5924338;7879086;7136073;5688686;6441859.57;7906405;7172557
-21;'076;Brazil;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;41600;48200;62500;84100;103000;125300;122400;136800;154700;186000;189000;267000;315000;422000;472000;520000;588000;728000;728000;1128000;1098000;1237000;1240000;1288000;891000;950000;963000;1010000;1195000;1178000;1177000;1224000;1247000;1227000;1310000;1284000;1353000;1315000;1379000;1376000;1457000;1553000;1607000;1608000;1621000;1659000;1782000;1950000;1888000;1992000;1956000;1802000;1997000;2031000;2143000;2135000;2143000;2145000;2199000;2122000;2232000;2274000;2128000
-21;'076;Brazil;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;11100;6400;4800;5400;16800;41300;46300;4500;9900;19200;13700;19300;12300;7500;3300;3500;3400;3600;3900;4800;2100;6900;4100;4100;2761;1849;2423;4300;2500;4000;8800;9000;11000;5200;1300;1300;6600;10135;7000;4000;8000;5635;8804;12525;8715;11076;17142;17961;15120;15990;10296;16640;11029;7427.54;3577;1451
-21;'076;Brazil;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;1405;820;804;902;2633;9620;12500;1300;2800;5500;4440;8300;6376;4113;1623;1383;1511;1489;1579;2431;1344;4712;2205;2205;1441;745;1258;2741;1244;1566;3062;3738;6208;2116;580;580;3003;4815;3148;2124;4750;2903;5634;8562;5872;7241;12055;11743;9380;10012;8676;13296;6723;6280.85;3771;1418
-21;'076;Brazil;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;1600;12500;11600;122800;172800;127800;144900;126600;72800;131200;130500;119900;182300;79200;45800;26500;600;1200;20200;16900;5500;12100;4000;9300;11900;22600;20500;19700;30000;0;0;0;0;0;0;0;0;0;0;0;0;6000;7358;11404;8277;307;6875;3988;4;0;940;0;0;14870;24951
-21;'076;Brazil;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;225;2273;1868;10887;19711;35029;27508;22465;12847;22250;22102;22714;32873;11329;5841;5106;112;310;8455;6335;2354;4487;1500;3404;3184;6256;10598;7285;10699;0;0;0;0;0;0;0;0;0;0;0;0;3562;4318;5046;3619;154;4818;2227;8;0;675;0;0;5042;9180
-21;'076;Brazil;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;63100;86100;104600;118500;136400;163100;185000;224000;241800;269600;262000;318000;376000;417000;370000;507000;654000;903000;1078000;1660000;1616000;1820000;950000;1399000;1362000;1534000;2371000;2359000;2539000;2557000;2981000;3453000;3606000;3995000;4001000;4326000;4424000;4812000;5120000;5292000;5332000;5807000;6868000;7273000;8061000;8959000;9601000;10119000;10881000;11622000;11407000;11545000;12510000;13831000;14697000;16075000;16823000;18379000;17003000;18261000;19644000;22076000;21519000
-21;'076;Brazil;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;15500;9700;14800;54100;91600;49900;94300;58300;36300;32800;42400;44600;38600;17300;6500;2100;7400;21300;31600;32900;45900;60600;41700;63000;50807;103949;98197;147900;198200;241000;287400;296700;303200;290000;310500;310500;371213;320875;306000;287000;316000;352197;401902;377531;400635;417544;397876;388425;339480;192186;168424;182472;170562;151153.18;131793;132226
-21;'076;Brazil;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2400;1606;3103;10778;16714;12883;49100;24450;15750;16000;20700;21800;24639;11365;3586;911;3615;8925;13432;18304;32790;49611;30626;46200;28953;38896;51982;130358;109348;114934;141227;143181;201315;148368;144757;144757;168902;176434;175217;198670;238023;208447;319470;320000;296201;296224;300913;295385;232814;126442;131141;148329;115583;128896.26;142705;143698
-21;'076;Brazil;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;4900;7200;7800;5700;5800;13600;3500;6800;11600;19000;133300;445700;765800;762300;735300;932500;936100;912400;859800;780200;1027200;980200;1012000;1355000;1644800;2007600;2021800;1922000;2133900;2352000;2653000;2969400;2893500;3253600;3324080;4448623;4887120;5440625;6156000;6485000;7040000;8229176;8369000;8470190;8502243;9421268;10613756;11528423;12900790;13199312;14598246;14743584;15627663;15756573.16;19125794;18022164
-21;'076;Brazil;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;695;1140;1524;1120;1105;2932;1189;2578;3617;5944;34378;157352;339988;330306;263962;303131;388241;273761;318245;385054;611846;673832;587563;581500;730824;707823;833473;1022664;947054;947054;979834;1176326;1526219;1200812;1109304;1686516;1667382;1975839;2428551;2944934;3773767;3073141;4430675;4605381;4321795;4821148;4914131;5343254;5213361;5924285;7879086;7135398;5688686;6441801.57;7901317;7163377
-21;'076;Brazil;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-21;'076;Brazil;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1642;1209;1588;3643.42;2171;1612
-21;'076;Brazil;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2490;2654;2072;2578;4866.88;4355;3876
-21;'076;Brazil;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;0;23;14;0
-21;'076;Brazil;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;0;0;0;58;46;0
-21;'076;Brazil;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;31000;35900;41300;35700;43200;52500;61700;63000;69600;56800;41700;40000;47000;63000;46000;41000;42000;33000;33000;51000;50000;56000;58000;58000;4000;4000;3000;4000;1000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-21;'076;Brazil;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;1100;600;1200;1400;1000;4400;3700;200;200;;;;;;;;;;;;;;;;;135;5;0;0;0;0;6000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-21;'076;Brazil;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;162;99;221;266;204;1072;1468;97;82;;;;;;;;;;;;;;;;;30;2;0;0;0;0;3141;2039;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-21;'076;Brazil;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;3100;9800;7300;5100;5600;2300;1800;300;500;500;800;500;700;1000;2200;500;700;4000;1300;800;700;700;700;700;0;0;0;0;0;0;45132;43850;22711;16180;11733;16320;923;13;0;0;0;0;0;15;0;0;0;0;1;;;;;;;
-21;'076;Brazil;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;405;1258;1059;781;829;372;427;111;157;160;237;165;286;441;698;142;221;1741;331;317;349;349;349;349;0;0;0;0;0;0;12740;14155;11724;5396;4045;5572;221;1;0;0;0;0;0;64;0;0;0;0;3;;;;;;;
-21;'076;Brazil;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;29500;27900;26100;23900;30500;29300;27500;24500;25600;46600;52600;49000;57000;57000;63000;64000;63000;40000;40000;62000;60000;68000;71000;71000;16000;19000;22000;26000;28000;17000;19000;22000;17000;18000;20000;17000;18000;20000;22000;21000;25000;27000;31000;36000;29000;32000;35000;31000;31000;25000;26000;7000;0;0;0;0;;;;;;;
-21;'076;Brazil;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;7300;5000;7400;7500;8000;25800;29500;16200;3700;2400;3300;1600;1900;2000;1700;1900;3000;300;600;1200;1600;200;200;200;74;622;1492;8000;16400;13500;7400;16000;16000;0;13700;13700;3708;2103;2000;1000;2000;868;1483;1837;1439;1047;1104;1197;1340;;;;;;;
-21;'076;Brazil;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1226;952;1645;1742;1799;6208;13599;8450;1945;1300;1800;900;1458;1617;1302;1035;2214;143;326;670;1040;155;155;155;97;431;1123;5890;8781;7603;3722;8458;10509;0;6948;6948;1687;1837;1256;956;1813;1326;2279;2824;2141;1984;2050;1911;2218;;;;;;;
-21;'076;Brazil;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;100;100;100;100;600;800;1900;1200;2200;2900;2200;3100;2800;5600;4700;8000;9100;4700;6000;10700;4600;4600;3100;700;1700;500;100;0;0;0;3;3;41;41;84;20;15;19;15;11;2;0;0;1;;;;;;;
-21;'076;Brazil;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;32;35;35;43;208;262;869;616;1182;1412;745;1217;1011;1937;2228;4704;6571;2958;3000;4315;1654;2237;2217;455;744;209;40;0;0;0;2;2;38;50;65;19;14;31;64;35;9;0;0;1;;;;;;;
-21;'076;Brazil;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;100000;57000;63000;42000;42000;38000;80000;70000;63000;40000;60000;60000;62000;75000;83000;78000;89000;70000;70000;59000;70000;69000;142000;156000;134000;104000;101000;135000;137000;143000;143000;109000;102000;115000;210000;367000;367000;416000;398000;420000;435000;443000;637000;660000;610000;585000;605000;590000;670000;1070000
-21;'076;Brazil;1667;Dissolving wood pulp;5610;Import quantity;t;;;;14500;11400;25100;21900;35000;29000;20200;25500;29500;25300;23600;21000;16700;13700;10600;9400;7300;5800;3600;4300;6800;2900;5000;6100;5700;10300;18600;18600;22033;17979;19000;21200;16500;16000;14000;11000;13000;20300;24400;24400;16000;20352;22000;19000;16000;16940;11903;14799;7267;10514;8825;10559;11640;13525;14174;10883;13485;13868.86;9788;8786
-21;'076;Brazil;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;3093;2478;5339;4669;7241;6271;4742;6264;7227;5894;10053;9900;8900;6200;4900;4300;5242;4388;2838;2511;3896;1623;2555;3575;4386;9099;14464;14464;17276;11184;13534;19430;16533;14596;11248;8976;9407;14936;17522;17522;11679;15306;18870;19019;19489;16138;13920;21210;9414;14151;10411;11772;12310;14443;15348;13496;15869;15720.22;14209;14461
-21;'076;Brazil;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2788;11559;17200;28100;74400;115600;103400;95000;94000;79400;79400;99494;98818;104557;82000;86000;163000;356654;418000;402141;397867;418783;414337;434954;618740;642153;591921;566313;530705;576421.95;650018;1039472
-21;'076;Brazil;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;148;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1370;4267;7944;23122;41463;63621;55812;50437;63533;45062;45062;51266;54165;57744;49915;67064;127349;235707;316263;375000;373555;354628;376455;243064;355908;420781;392882;337437;294940;332644.66;469199;755134
-21;'076;Brazil;1668;Pulp from fibres other than wood;5510;Production;t;25000;25000;30000;33000;27000;35000;37100;43200;46900;56400;56900;60000;67000;67000;96000;80000;88000;108000;150000;134000;122000;129000;168000;164000;142000;131000;111000;156000;162000;146000;125000;127000;119000;106000;75000;75000;77000;80000;102000;104000;89000;96000;98000;92000;98000;7000;30000;57000;57000;57000;56000;57000;57000;55000;56000;63000;63000;63000;63000;63000;63000;48000;48000
-21;'076;Brazil;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;200;100;200;400;400;1400;600;1000;1300;800;1400;1000;1100;100;100;100;100;200;1600;2100;2100;2731;4592;5000;4300;4300;9800;13000;15300;11000;9300;9400;9400;15000;16742;8130;4000;4000;7635;9578;7426;10240;7514;9333;9266;13577;14949;13926;17017;22433;20066.7;14068;14072
-21;'076;Brazil;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;69;53;63;204;260;1000;410;687;991;700;1424;1033;1026;93;62;53;53;100;1923;2873;2873;3829;5395;5845;5116;5759;11739;15087;16247;13133;14120;13070;13070;19045;22253;11246;6245;8063;11758;15489;17222;21015;12585;14249;13060;18982;23669;18375;18584;24097;23661.49;25776;27422
-21;'076;Brazil;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;1800;1800;1800;3189;12025;100;500;300;300;100;50;86;505;41;106;196;108;5123;10000;11000;3975;6000;3726;6;326;1208;1323;573;7;9;9;32;8;509;261
-21;'076;Brazil;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;2791;2954;2954;1855;5372;114;533;421;374;120;66;125;809;68;70;140;156;5167;11113;15215;5971;9675;10139;30;513;1604;1793;773;25;35;43;58;19;102;42
-21;'076;Brazil;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;96;344;457;448;445;700;580;546;1124;1563;928.13;1456;2834
-21;'076;Brazil;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;91;304;575;577;502;471;374;315;445;883;622.18;1148;2674
-21;'076;Brazil;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;3;3;94;93;2;3;17;38;19;35;148
-21;'076;Brazil;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;15;31;20;27;46;87;17;10;38;17;41;53;84
-21;'076;Brazil;1669;Recovered paper;5510;Production;t;;;;;;;;;;288000;250000;400000;450000;530000;530000;610000;665000;772000;834000;1052000;993000;986000;1024000;1081000;1158000;1384000;1488000;1449000;1553000;1287000;1287000;1287000;1287000;1287000;1287000;1287000;1287000;1287000;2416000;2612000;2612000;2612000;2873000;2873000;3438000;3497000;3642000;3828000;3914000;4019000;4348000;4363000;4481000;4805000;4742000;4589000;4956000;5063000;4868000;4893490;4890000;5082000;4295664
-21;'076;Brazil;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;7100;5200;16100;25000;25000;34200;21800;21800;24778;28297;23100;50000;29400;21200;22000;33600;24000;12300;13500;13500;15000;13021;13221;28000;19000;12845;20136;10949;8166;10005;24949;5381;12698;15794;25130;21371;24354;188995;44681;29270
-21;'076;Brazil;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;536;349;1244;2021;2021;3487;2455;2455;4010;2432;1709;9210;3568;2228;4101;3996;3196;1086;1685;1685;1855;1800;1492;3475;2121;973;3027;2599;1778;2004;4586;1192;2453;3226;4746;4221;4786;51793;11476;5712
-21;'076;Brazil;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;50;1700;1700;1800;2700;3400;3400;1300;1100;1100;4300;4300;6981;7921;3600;5000;5000;2600;2800;2100;4000;4600;3800;4583;1280;1702;2096;4000;3000;1756;5000;26930;28634;31254;27448;78159;30253;53150;44855;24225;17405;21826.62;37204;24714
-21;'076;Brazil;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;8;229;229;112;157;243;243;120;149;183;705;705;982;958;452;1630;1374;632;537;508;801;886;724;830;370;114;365;1004;1009;437;1459;6683;5432;6027;5658;15248;5194;10114;11106;4040;2545;2830.09;7094;5742
-21;'076;Brazil;1876;Paper and paperboard;5510;Production;t;533100;601700;656300;718300;750700;813200;822600;886900;952200;1098600;1237300;1345700;1587900;1853700;1687800;2044900;2235500;2534100;2979000;3361000;3102000;3329000;3426000;3768000;4022000;4525000;4712000;4685000;4806000;4844000;4888000;4913000;5352000;5730000;5856000;5885000;6475000;6524000;6889000;7116000;7354000;7661000;7811000;8221000;8597000;8725000;9009000;9409000;9428000;9978000;10159000;10260000;10444000;10398000;10477000;10335000;10471000;10433000;10534000;10184000;10666000;10083000;10836000
-21;'076;Brazil;1876;Paper and paperboard;5610;Import quantity;t;131800;106600;101000;58700;39100;42400;105700;173600;159600;180900;222200;264300;302200;480200;217100;260300;267500;276900;299400;261400;235600;259300;206700;216000;137100;281816;323400;215600;258100;233800;365100;265422;364900;540200;931900;866200;1171400;854400;722700;800800;598500;508800;514635;654019;805525;930459;1046296;1201200;1005832;1388909;1314502;1281470;1219750;1222713;775314;617451;672601;633762;595940;475312;501492.38;469757;448441
-21;'076;Brazil;1876;Paper and paperboard;5622;Import value;1000 USD;25700;21279;20846;13069;8699;10970;29494;46123;43032;51503;57616;70534;104284;249536;109673;154217;137450;133690;159228;191085;223890;259216;133280;138735;109487;178224;222794;215630;202200;151941;230199;236315;292625;404282;988178;782854;964349;707883;555555;630994;498776;396078;370340;533733;612506;749350;884622;1104857;869866;1215237;1292745;1252918;1190192;1149041;697788;543365;607171;642166;651731;515659;568563.99;735426;653328
-21;'076;Brazil;1876;Paper and paperboard;5910;Export quantity;t;;100;;100;300;500;300;200;300;1400;3000;9700;41100;30200;7400;29600;43000;105800;143900;197600;337000;264300;440700;702700;543400;692200;609400;1003100;830200;839700;1039000;1129952;1274820;1435000;1223200;1046700;1043300;1242606;959716;839505;939174;1082450;1631693;1702285;1909631;1810412;1838574;1855402;1910000;1970020;1942038;1764273;1749055;1718421;1920561;1938847;1960735;1853546;1968135;1920760;1868959.53;2263834;1955881
-21;'076;Brazil;1876;Paper and paperboard;5922;Export value;1000 USD;;27;;27;71;135;71;28;103;353;769;2617;12754;17125;4673;14403;21391;54044;94048;160862;224833;170431;208434;345560;262587;346811;364779;684102;516253;501577;657608;609381;673067;822551;1024682;824306;685592;809093;563952;525604;517345;655263;874294;962164;1182496;1259066;1436829;1663941;1480177;1764148;1916306;1723052;1735693;1683707;1777534;1617880;1663788;1715826;1711833;1492626;1563997.77;2278684;1918564
-21;'076;Brazil;2042;Graphic papers;5510;Production;t;194400;199000;220600;260300;266600;289200;291000;311000;343000;357000;422000;470000;497000;553000;541000;581000;684000;754000;873000;975000;981000;1020000;1058000;1184000;1354000;1524000;1542000;1566000;1559000;1567000;1601000;1620000;1938000;2121000;2073000;2084000;2261000;2239000;2312000;2366000;2380000;2412000;2435000;2502000;2614000;2686000;2719000;2674000;2749000;2857000;2874000;2799000;2749000;2721000;2710000;2603000;2590000;2605000;2497000;2088000;2380000;2311000;2238000
-21;'076;Brazil;2042;Graphic papers;5610;Import quantity;t;129000;103900;98100;56600;36600;39400;99800;163600;148200;166800;197500;238400;251300;340900;176000;227800;248000;257300;286500;235100;216000;243400;194200;199900;122400;267800;297000;194600;227200;191500;314000;160322;220100;350300;433200;425700;512000;461000;589700;653600;500900;441600;417170;511123;675987;831250;909312;1064000;881135;1213348;1123379;1070121;964582;965000;562229;441609;458638;397405;355008;190555;157646.96;202362;195297
-21;'076;Brazil;2042;Graphic papers;5622;Import value;1000 USD;24379;19278;18780;11361;7244;8176;25500;39390;35128;40877;43382;52715;69338;160608;64652;102092;97054;102800;143900;154200;179400;218938;106200;104754;73210;143034;176881;162708;167973;105405;171000;92507;112818;170891;412587;305622;256487;263240;353053;430891;355858;277786;243299;362393;456490;617297;708447;892598;686536;969055;990305;930167;795191;763673;416025;305311;324674;313410;307069;168719;145672.18;268653;224239
-21;'076;Brazil;2042;Graphic papers;5910;Export quantity;t;;100;;;200;200;200;100;200;1100;2400;8400;25400;17300;6300;26200;35000;82300;109600;135500;209700;181800;256500;326500;243400;325100;297100;418500;408600;434200;516000;530852;642020;598200;572500;520000;574500;920037;525325;396025;408941;597130;814247;849546;993020;915552;956551;1024020;1167403;1355020;1297179;1222025;1237943;1155093;1245703;1240666;1321324;1236684;1351917;1239309;1201313.99;1246581;1207697
-21;'076;Brazil;2042;Graphic papers;5922;Export value;1000 USD;;27;;;44;40;45;11;70;274;596;2215;7753;10037;3808;12242;16940;38965;67593;102369;140710;115211;123291;186470;133921;181853;198337;317043;334524;333837;400400;336178;373788;370332;484931;481040;393189;618301;328326;289712;279940;400563;525999;563612;688547;708294;817314;971506;961132;1209706;1267608;1164113;1183583;1110913;1141885;1012740;1046218;1064365;1096836;898316;925879.52;1216783;1160680
-21;'076;Brazil;1671;Newsprint;5510;Production;t;62000;62000;73000;108000;115000;118000;101000;100000;104000;103000;105000;107000;118000;113000;125000;127000;107000;116000;109000;105000;105000;107000;106000;109000;208000;218000;232000;247000;230000;246000;253000;226000;268000;263000;282000;277000;265000;273000;242000;266000;230000;248000;163000;133000;133000;135000;144000;140000;127000;124000;129000;132000;128000;105000;98000;96000;83000;101000;83000;80000;77000;88000;94000
-21;'076;Brazil;1671;Newsprint;5610;Import quantity;t;115400;95400;88400;48700;33400;31700;49800;93600;88200;108800;118500;144400;117300;117900;116000;142800;174000;172300;218500;167100;170000;161400;158200;163900;95400;217800;240000;155600;128800;123100;211000;105222;152000;287600;379500;384000;471000;413000;378800;398000;297000;250000;250000;271123;390215;409894;399000;512000;367951;462660;406247;387654;318202;293315;211892;138953;101956;109195;74806;30879;25222.82;21304;12922
-21;'076;Brazil;1671;Newsprint;5622;Import value;1000 USD;20600;17100;16177;9200;6312;6054;9400;17130;16228;20345;21815;27147;24046;41972;40252;57977;64554;65500;83000;98000;106400;98938;68800;67354;45210;92034;117881;103708;69694;62677;107000;60488;68019;126746;351111;259047;219548;218686;170316;200876;173150;108255;108255;178700;218846;253051;243027;331686;214360;246868;253122;240775;186821;168218;107455;60904;44326;54164;44203;14355;14266.34;16207;9691
-21;'076;Brazil;1671;Newsprint;5910;Export quantity;t;;100;;;;;;;;200;500;1600;1100;500;300;100;;300;2600;500;700;800;1200;2900;4400;10600;24400;16000;9600;20200;12000;34352;39220;16900;17500;20000;13500;16000;22300;14000;8300;1800;1476;1749;5284;1102;1102;0;0;1000;2350;1264;1241;1712;1705;11348;13235;35125;21383;25462;15463.85;27491;42370
-21;'076;Brazil;1671;Newsprint;5922;Export value;1000 USD;;27;;;;;;;;35;82;260;228;123;108;18;;265;1793;469;510;511;626;1815;2334;5541;13581;10382;5369;9049;5400;13109;20071;8149;11829;11040;6820;8607;9855;7296;4943;903;689;1041;4268;978;978;0;0;750;1489;890;817;1117;995;5054;6138;21062;9676;8553;8795.18;22328;26283
-21;'076;Brazil;1674;Printing and writing papers;5510;Production;t;132400;137000;147600;152300;151600;171200;190000;211000;239000;254000;317000;363000;379000;440000;416000;454000;577000;638000;764000;870000;876000;913000;952000;1075000;1146000;1306000;1310000;1319000;1329000;1321000;1348000;1394000;1670000;1858000;1791000;1807000;1996000;1966000;2070000;2100000;2150000;2164000;2272000;2369000;2481000;2551000;2575000;2534000;2622000;2733000;2745000;2667000;2621000;2616000;2612000;2507000;2507000;2504000;2414000;2008000;2303000;2223000;2144000
-21;'076;Brazil;1674;Printing and writing papers;5610;Import quantity;t;13600;8500;9700;7900;3200;7700;50000;70000;60000;58000;79000;94000;134000;223000;60000;85000;74000;85000;68000;68000;46000;82000;36000;36000;27000;50000;57000;39000;98400;68400;103000;55100;68100;62700;53700;41700;41000;48000;210900;255600;203900;191600;167170;240000;285772;421356;510312;552000;513184;750688;717132;682467;646380;671685;350337;302656;356682;288210;280202;159676;132424.14;181058;182375
-21;'076;Brazil;1674;Printing and writing papers;5622;Import value;1000 USD;3779;2178;2603;2161;932;2122;16100;22260;18900;20532;21567;25568;45292;118636;24400;44115;32500;37300;60900;56200;73000;120000;37400;37400;28000;51000;59000;59000;98279;42728;64000;32019;44799;44145;61476;46575;36939;44554;182737;230015;182708;169531;135044;183693;237644;364246;465420;560912;472176;722187;737183;689392;608370;595455;308570;244407;280348;259246;262866;154364;131405.84;252446;214548
-21;'076;Brazil;1674;Printing and writing papers;5910;Export quantity;t;;;;;200;200;200;100;200;900;1900;6800;24300;16800;6000;26100;35000;82000;107000;135000;209000;181000;255300;323600;239000;314500;272700;402500;399000;414000;504000;496500;602800;581300;555000;500000;561000;904037;503025;382025;400641;595330;812771;847797;987736;914450;955449;1024020;1167403;1354020;1294829;1220761;1236702;1153381;1243998;1229318;1308089;1201559;1330534;1213847;1185850.15;1219090;1165327
-21;'076;Brazil;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;44;40;45;11;70;239;514;1955;7525;9914;3700;12224;16940;38700;65800;101900;140200;114700;122665;184655;131587;176312;184756;306661;329155;324788;395000;323069;353717;362183;473102;470000;386369;609694;318471;282416;274997;399660;525310;562571;684279;707316;816336;971506;961132;1208956;1266119;1163223;1182766;1109796;1140890;1007686;1040080;1043303;1087160;889763;917084.34;1194455;1134397
-21;'076;Brazil;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21946;30000;25000;24000;31000;32000;36000;31000;36000;35000;35000;30000;28000;28000;26000;28000;164000;149000;44000;50000;64000;24000;9000;40000;30000;33000
-21;'076;Brazil;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14666;35900;57300;62300;51300;51300;70000;56131;72312;72312;9000;4925;5074;3137;2907;74892;83255;57150;42997;51251;46439;41693;20911;17994.14;11298;9636
-21;'076;Brazil;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11401;26604;43348;46754;35885;35885;44480;41278;54914;54914;8521;5701;6197;3814;3206;60827;64550;40236;26584;30700;30912;30309;14284;12475.84;12606;10416
-21;'076;Brazil;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;28;37;29;51;3;38;486;1007;84;20;20;20;20;698;0;1;9;38;1;212;74;26;102;892;201
-21;'076;Brazil;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;27;54;33;32;4;49;370;784;74;59;60;70;71;586;0;1;16;30;5;167;77;23;86;1014;171
-21;'076;Brazil;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513363;1672000;1633000;1655000;1666000;1754000;1784000;1893000;1964000;2037000;2012000;2163000;2256000;2302000;2181000;2158000;2107000;2053000;2024000;2041000;2024000;2051000;1692000;1955000;1882000;1860000
-21;'076;Brazil;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730;10000;2300;3100;1800;13135;30000;80289;110044;132000;159000;174653;221015;213848;156894;158787;170931;36649;36798;62023;51463;44378;22964;18520;18073;46936
-21;'076;Brazil;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1313;12203;5534;5386;3078;13718;22507;62149;92229;126107;152994;155954;207159;211352;152680;149777;149633;40113;36517;57019;54601;48887;26042;21970;34207;54063
-21;'076;Brazil;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452471;414997;243788;279012;517415;685913;667338;810070;743443;811365;813000;958398;1054000;1001394;928989;901347;844405;930767;913203;943350;916042;961398;826993;794635;804959;804866
-21;'076;Brazil;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305197;255248;181655;186009;351415;451924;449895;561199;584277;706797;778092;789880;934292;979900;862824;836002;783904;819410;701122;707681;777781;756412;544613;552935;755902;745677
-21;'076;Brazil;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430691;368000;442000;471000;467000;486000;549000;557000;551000;503000;487000;429000;449000;415000;460000;435000;345000;410000;439000;416000;416000;339000;307000;308000;311000;251000
-21;'076;Brazil;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32604;165000;196000;138500;138500;102735;140000;149352;239000;306000;384000;333606;524599;500147;522666;412701;417499;256538;222861;243408;190308;194131;115801;95910;151687;125803
-21;'076;Brazil;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31840;143930;181133;130568;130568;85441;116706;134217;217103;284399;399397;310521;508831;522017;533506;397766;381272;228221;181306;192629;173733;183670;114038;96960;205633;150069
-21;'076;Brazil;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451515;88000;138200;121600;77864;126855;180421;177180;170000;144000;211000;208985;300000;293415;291074;335355;308975;313222;316077;364738;285305;369062;386828;391113.15;413239;360260
-21;'076;Brazil;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304455;63196;100707;88955;48213;73382;112627;122710;122255;109465;193355;171192;274594;286148;299813;346764;325891;321464;306534;332394;265355;330671;345127;364063.34;437539;388549
-21;'076;Brazil;1675;Other paper and paperboard;5510;Production;t;338700;402700;435700;458000;484100;524000;531600;575900;609200;741600;815300;875700;1090900;1300700;1146800;1463900;1551500;1780100;2106000;2386000;2121000;2309000;2368000;2584000;2668000;3001000;3170000;3119000;3247000;3277000;3287000;3293000;3414000;3609000;3783000;3801000;4214000;4285000;4577000;4750000;4974000;5249000;5376000;5719000;5983000;6039000;6290000;6735000;6679000;7121000;7285000;7461000;7695000;7677000;7767000;7732000;7881000;7828000;8037000;8096000;8286000;7772000;8598000
-21;'076;Brazil;1675;Other paper and paperboard;5610;Import quantity;t;2800;2700;2900;2100;2500;3000;5900;10000;11400;14100;24700;25900;50900;139300;41100;32500;19500;19600;12900;26300;19600;15900;12500;16100;14700;14016;26400;21000;30900;42300;51100;105100;144800;189900;498700;440500;659400;393400;133000;147200;97600;67200;97465;142896;129538;99209;136984;137200;124697;175561;191123;211349;255168;257713;213085;175842;213963;236357;240932;284757;343845.42;267395;253144
-21;'076;Brazil;1675;Other paper and paperboard;5622;Import value;1000 USD;1321;2001;2066;1708;1455;2794;3994;6733;7904;10626;14234;17819;34946;88928;45021;52125;40396;30890;15328;36885;44490;40278;27080;33981;36277;35190;45913;52922;34227;46536;59199;143808;179807;233391;575591;477232;707862;444643;202502;200103;142918;118292;127041;171340;156016;132053;176175;212259;183330;246182;302440;322751;395001;385368;281763;238054;282497;328756;344662;346940;422891.8;466773;429089
-21;'076;Brazil;1675;Other paper and paperboard;5910;Export quantity;t;;;;100;100;300;100;100;100;300;600;1300;15700;12900;1100;3400;8000;23500;34300;62100;127300;82500;184200;376200;300000;367100;312300;584600;421600;405500;523000;599100;632800;836800;650700;526700;468800;322569;434391;443480;530233;485320;817446;852739;916611;894860;882023;831382;742597;615000;644859;542248;511112;563328;674858;698181;639411;616862;616218;681451;667645.54;1017253;748184
-21;'076;Brazil;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;27;27;95;26;17;33;79;173;402;5001;7088;865;2161;4451;15079;26455;58493;84123;55220;85143;159090;128666;164958;166442;367059;181729;167740;257208;273203;299279;452219;539751;343266;292403;190792;235626;235892;237405;254700;348295;398552;493949;550772;619515;692435;519045;554442;648698;558939;552110;572794;635649;605140;617570;651461;614997;594310;638118.25;1061901;757884
-21;'076;Brazil;1676;Household and sanitary papers;5510;Production;t;47900;53200;46000;48500;53400;54500;36700;38100;45000;57500;59200;61500;87900;97100;107000;125000;143200;167000;201000;232000;228000;245000;263000;271000;288000;294000;334000;365000;373000;376000;406000;414000;452000;458000;496000;517000;565000;576000;571000;597000;619000;671000;681000;732000;778000;788000;812000;850000;868000;905000;961000;1040000;1096000;1122000;1114000;1146000;1190000;1234000;1310000;1330000;1321000;459000;1396000
-21;'076;Brazil;1676;Household and sanitary papers;5610;Import quantity;t;300;300;300;200;200;300;600;1000;1300;1900;3800;6300;6300;100;100;100;700;700;700;700;200;100;100;100;100;100;100;100;100;100;100;100;100;300;2900;4000;1100;400;12000;3400;1800;1400;1400;7426;7241;10203;12000;3000;3855;4595;6454;9041;8554;5782;2207;1755;415;350;303;272;341.71;943;3848
-21;'076;Brazil;1676;Household and sanitary papers;5622;Import value;1000 USD;185;280;289;239;204;391;559;960;1383;2008;3019;4309;4309;321;321;97;1943;1943;1943;2745;353;99;99;99;99;99;99;99;99;99;99;99;99;256;3153;4643;1281;563;24183;5229;2264;3124;3124;6074;6470;7877;9739;6576;6679;7993;11498;14699;15327;14660;4086;2488;731;840;714;555;480;2656;7732
-21;'076;Brazil;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;100;100;100;100;200;200;900;900;2700;2400;3200;4800;4200;3700;3000;1900;1900;2000;2300;24800;9600;10000;10000;15500;40700;25100;18000;14000;10500;25000;10000;20900;25600;44651;42996;39000;20100;6023;5382;2635;5000;1651;1807;3068;7354;8949;17070;19267;14828;21836;29256;43056;60617;45847
-21;'076;Brazil;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;12;12;28;28;133;133;820;820;1847;1764;3869;5861;4364;2754;2113;1732;2063;2472;2489;15838;9515;9600;10015;11813;30895;26487;20641;15608;10615;34207;8361;15869;24716;32335;31883;34100;18800;6100;7500;3339;7535;2810;3069;4835;10882;12560;20845;24927;20174;30162;30726;47718;77120;64338
-21;'076;Brazil;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3401000;3668000;3786000;3981000;4132000;4263000;4552000;4776000;4850000;5069000;5488000;5397000;5793000;5922000;5997000;6162000;6093000;6183000;6104000;6206000;6110000;6261000;6313000;6514000;6859000;6750000
-21;'076;Brazil;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334000;107000;133000;81800;51800;82065;109470;101097;62216;97984;107200;100853;142702;164039;176487;222118;226741;193137;158839;199295;221379;225720;272702;332696.71;256527;239356
-21;'076;Brazil;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315641;140396;170900;111976;80233;88982;130266;126283;97340;141069;174209;152255;207222;262043;273095;346551;335571;254199;214445;263432;309344;323766;326673;405859.8;443824;400992
-21;'076;Brazil;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307769;401391;423880;504133;451020;767005;801857;867511;862760;862000;808000;718042;589000;622157;519182;486577;535988;647805;663494;602727;586061;576171;633763;583253.54;938230;687411
-21;'076;Brazil;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169313;188547;211567;217512;211696;305821;350777;439267;504598;580922;643807;464096;499009;594518;502878;496581;515800;583923;549046;557682;596638;545492;523136;549064.25;939026;648051
-21;'076;Brazil;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;230300;290900;324900;353500;331000;391500;374700;397500;415900;509400;560000;603300;752000;869300;770700;966700;1053200;1193300;1415000;1616000;1479000;1624000;1733000;1911000;1807000;2066000;2174000;2183000;2246000;2267000;2680000;2683000;2779000;2923000;3057000;3070000;3386000;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;200;200;300;200;200;300;500;900;1300;900;1600;2000;18300;6500;3000;2300;3800;1300;3100;17000;300;200;100;100;100;116;600;1800;10000;7800;19000;46900;69100;88300;273900;248000;331000;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;106;160;165;137;116;224;320;524;684;727;1485;1780;7401;7411;4700;4941;3987;2790;3674;13020;321;199;137;137;137;170;938;1700;13290;10550;25700;52638;69322;86858;254506;242508;312503;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;100;100;800;300;9700;100;400;1200;3300;2700;5700;7300;5500;6000;4400;7300;8100;7800;11300;19000;16000;469000;531100;530600;636400;493900;504000;450500;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;23;35;224;103;4957;32;234;684;1431;1543;6084;8491;5395;5345;3095;5146;6142;7498;11364;13077;10418;219008;216390;223536;313306;378035;309949;265411;;;;;;;;;;;;;;;;;;;;;;;;;;
-21;'076;Brazil;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2496964;2540000;2578000;2801000;2919000;2943000;3167000;3504000;3418000;3588000;3571000;3646000;3740000;3861000;4055000;4314000;4298000;4428000;4427000;4630000;4525000;4630000;4645000;4821000;5233000;5181000
-21;'076;Brazil;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12486;4000;7600;7400;5900;18865;30000;20314;13152;9000;14000;21121;40583;43426;42965;48536;48067;52505;36257;49168;43759;54612;97360;123748;63343;39641
-21;'076;Brazil;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7606;3383;8227;4278;3133;10795;14400;13000;12531;14644;21983;23478;42778;56980;56911;68079;73676;65496;51749;65167;70961;75315;91621;139588;112736;82778
-21;'076;Brazil;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217220;284000;312000;380700;269400;512413;565788;577350;566850;528000;449000;349361;279000;298035;230532;255478;272181;320886;346252;312476;308944;290013;306040;348191.02;639170;428652
-21;'076;Brazil;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94986;108806;133012;129202;115006;172600;203394;214196;240226;245423;235816;144544;150837;174680;124581;154625;163039;181976;174565;173306;203753;173929;159621;242393.11;530211;269865
-21;'076;Brazil;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666634;510000;515000;513000;545000;533000;562000;596000;619000;645000;713000;748000;799000;754000;787000;764000;720000;713000;666000;721000;742000;761000;798000;784000;728000;674000
-21;'076;Brazil;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296542;95000;109000;64000;32700;50000;60000;53940;26000;59000;58000;50896;69104;83756;106709;131962;136092;103493;85291;105582;127259;123220;115565;142673;145542;160457
-21;'076;Brazil;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281933;125403;137190;94726;59913;61000;88472;83700;54000;88300;98917;85937;113110;144837;172968;218094;199966;133550;111183;139108;166610;173693;149286;177578;229499;238656
-21;'076;Brazil;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58129;76000;79000;94200;138259;186390;160552;206911;213100;241000;259000;247351;216000;226655;210818;156182;134343;157649;161817;142006;124439;141792;144211;88417;104490;91981
-21;'076;Brazil;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44345;50797;52936;65780;70877;96034;105166;176717;211290;269172;327103;249054;264870;325568;302934;265143;245301;273428;262146;265276;256631;250709;236977;181850;216987;233639
-21;'076;Brazil;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227864;493000;498000;458000;542000;663000;711000;595000;603000;589000;585000;566000;603000;587000;611000;596000;618000;599000;573000;551000;548000;553000;537000;559000;556000;524000
-21;'076;Brazil;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18729;6000;11000;10200;12300;12300;18270;24859;21080;28000;35000;28209;30976;34917;24736;40631;41429;36431;36720;43707;49870;47432;59296;61740;46441;38079
-21;'076;Brazil;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18206;8098;19709;12564;15613;15613;25857;27680;28906;36222;53081;42062;49940;58523;41418;59529;60743;54384;50845;58212;71045;74170;85130;85078;99888;78203
-21;'076;Brazil;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31655;40391;31480;27833;40584;64231;69859;72216;73710;87000;97000;118990;91000;95661;75728;72749;127587;166397;152303;144559;149334;140687;180224;141865.97;185747;162404
-21;'076;Brazil;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29142;27982;24349;21261;24370;35069;39477;42643;48492;63332;78872;69179;81262;92564;73531;75102;105949;126542;110384;116752;134035;118355;124349;121070.19;185113;141168
-21;'076;Brazil;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9538;125000;195000;209000;126000;124000;112000;81000;210000;247000;619000;437000;651000;720000;544000;488000;457000;443000;438000;304000;295000;317000;333000;350000;342000;371000
-21;'076;Brazil;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6243;2000;5400;200;900;900;1200;1984;1984;1984;200;627;2039;1940;2077;989;1153;708;571;838;491;456;481;4535.71;1201;1179
-21;'076;Brazil;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7896;3512;5774;408;1574;1574;1537;1903;1903;1903;228;778;1394;1703;1798;849;1186;769;668;945;728;588;636;3615.8;1701;1355
-21;'076;Brazil;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;765;1000;1400;1400;2777;3971;5658;11034;9100;6000;3000;2340;3000;1806;2104;2168;1877;2873;3122;3686;3344;3679;3288;4779.55;8823;4374
-21;'076;Brazil;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;962;1270;1269;1443;2118;2740;5711;4590;2995;2016;1319;2040;1706;1832;1711;1511;1977;1951;2348;2219;2499;2189;3750.95;6715;3379
-21;'076;Brazil;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;60500;58600;64800;56000;99700;78000;120200;140300;148300;174700;196100;210900;251000;334300;269100;372200;355100;419800;490000;538000;414000;440000;372000;402000;573000;641000;662000;571000;628000;634000;201000;196000;183000;228000;230000;214000;263000;308000;338000;367000;374000;446000;432000;435000;429000;401000;409000;397000;414000;423000;402000;424000;437000;462000;470000;482000;485000;484000;466000;453000;451000;454000;452000
-21;'076;Brazil;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;2300;2200;2300;1700;2100;2400;4800;8100;8800;11300;19300;17600;26300;132700;38000;30100;15000;17600;9100;8600;19100;15600;12300;15900;14500;13800;25700;19100;20800;34400;32000;58100;75600;101300;221900;188500;327300;59000;14000;10800;14000;14000;14000;26000;21200;26790;27000;27000;19989;28264;20630;25821;24496;25190;17741;15248;14253;14628;14909;11783;10807;9925;9940
-21;'076;Brazil;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1030;1561;1612;1332;1135;2179;3115;5249;5837;7891;9730;11730;23236;81196;40000;47087;34466;26157;9711;21120;43816;39980;26844;33745;36041;34921;44876;51123;20838;35887;33400;91071;110386;146277;317932;230081;394078;128439;37923;23974;28678;34935;34935;35000;23263;26836;25367;31474;24396;30967;28899;34957;33123;35137;23478;21121;18334;18572;20182;19712;16552;20293;20365
-21;'076;Brazil;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;100;100;300;100;100;100;100;400;400;15300;3000;800;2100;5900;17500;29200;53200;115200;72800;174500;368800;290800;357100;302500;571000;377800;379900;44000;58000;86700;159700;131700;4700;4300;4300;8000;9600;5200;8700;5790;7886;10100;12000;14000;18000;21920;21000;21051;21259;21467;19986;18104;17617;17417;15973;18211;18432;41336;18406;14926
-21;'076;Brazil;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;27;27;95;26;17;33;44;126;150;4870;1998;700;1107;2947;11801;23148;48540;69771;45461;77044;153882;121788;156753;156472;353206;152814;147807;28600;46798;63930;108018;135229;12676;11384;10864;12872;15964;4024;18288;10139;15892;20582;27374;32493;41128;51610;47898;51370;52992;50694;46112;39166;35249;34961;34649;39343;40448;41336;45755;45495
-21;'076;Brazil;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81603;94232;80348;62682;93959;56437;63723
-21;'076;Brazil;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414016;1524886;1597016;1682309;2316239;2466349;1804590
-21;'076;Brazil;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;305;391;916;624;759;578
-21;'076;Brazil;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482138;495338;554847;569046;713187;962367;617711
-21;'076;Brazil;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;130;190;716;345;484;316
-21;'076;Brazil;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230359;214269;233271;261522;394135;513084;370707
-21;'076;Brazil;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;175;201;200;279;275;262
-21;'076;Brazil;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251779;281069;321576;307524;319052;449283;247004
-21;'076;Brazil;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717;1806;1955;2164;2932;3639;3852
-21;'076;Brazil;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17321;34508;37471;33641;42478;65003;41104
-21;'076;Brazil;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11784;12934;13989;10011;15736;11290;12769
-21;'076;Brazil;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25294;23399;24044;24245;41125;33263;5330
-21;'076;Brazil;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979;2418;2808;2405;3684;4334;5522
-21;'076;Brazil;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319878;318172;336382;417377;571259;570451;425004
-21;'076;Brazil;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000
-21;'076;Brazil;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0
-21;'076;Brazil;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0
-21;'076;Brazil;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2467;3732
-21;'076;Brazil;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386;2136
-21;'076;Brazil;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;162
-21;'076;Brazil;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;258
-21;'076;Brazil;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49923;59489;46852;35402;53830;21054;23032
-21;'076;Brazil;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492908;563119;572094;568350;859774;749914;653488
-21;'076;Brazil;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;140;82;135;447;80;182
-21;'076;Brazil;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;3551;1270;2116;325;257;627
-21;'076;Brazil;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14805;17140;14271;11649;16706;15281;17788
-21;'076;Brazil;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76272;86799;70908;67534;88091;85094;61326
-21;'076;Brazil;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251719;262993;257255;233612;316722;252440;275820
-21;'076;Brazil;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249293;281022;295149;255455;351235;421037;450235
-21;'076;Brazil;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3229;2794;2754;2874;2873;2956;5576
-21;'076;Brazil;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;7;2;22;47;149
-21;'076;Brazil;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91214;99596;91279;74415;88538;87475;104483
-21;'076;Brazil;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71915;82712;76308;65328;115900;150797;180331
-21;'076;Brazil;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22701;28002;28016;25861;31961;32328;24971
-21;'076;Brazil;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23395;24133;25766;31178;32969;39567;50983
-21;'076;Brazil;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63619;56195;62177;66438;99306;51690;61219
-21;'076;Brazil;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104809;114614;144712;120988;158725;177147;173311
-21;'076;Brazil;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70956;76406;73029;64024;94044;77991;79571
-21;'076;Brazil;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49126;59563;48356;37959;43619;53479;45461
-239;'092;British Virgin Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20394;41517;35180;17892;18922;35344;21760
-239;'092;British Virgin Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;610;609;373;323;297;618
-239;'092;British Virgin Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;912;1273;1273;1273;1273;1273;1187;1187;1187;1187;1187;1187;1187;1187;1187;1187;1187;6304;6881;6321;5609;6821;7129;7035;6249;5259;9005;8261;7662;9725;9352;7490
-239;'092;British Virgin Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;4480;4930;389;836;406;814;557;368;273;196;196;104;290;122;312
-239;'092;British Virgin Islands;1861;Roundwood;5516;Production;m3;436;443;450;457;464;471;479;487;494;502;522;525;546;542;541;541;548;569;576;587;597;705;655;748;757;770;818;831;882;896;966;888;955;887;950;905;984;984;1008;1032;1070;1110;1151;1194;1239;1267;1296;1325;1355;1355;1416;1445;1476;1507;1539;1568;1598;1628;1659;1690;1723;1756;1790
-239;'092;British Virgin Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;372;347;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;2641;1481;2087;3976;10614;3719;1461;670;948;556;9054;5869;10228;3245;1318
-239;'092;British Virgin Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;22;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;184;249;305;497;1130;539;405;106;338;247;65;288;287;1304;546
-239;'092;British Virgin Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;67;10
-239;'092;British Virgin Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;1
-239;'092;British Virgin Islands;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8807;5561;9144;1033;911
-239;'092;British Virgin Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;266;376
-239;'092;British Virgin Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;67;0
-239;'092;British Virgin Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;0
-239;'092;British Virgin Islands;1863;Roundwood, non-coniferous;5516;Production;m3;436;443;450;457;464;471;479;487;494;502;522;525;546;542;541;541;548;569;576;587;597;705;655;748;757;770;818;831;882;896;966;888;955;887;950;905;984;984;1008;1032;1070;1110;1151;1194;1239;1267;1296;1325;1355;1355;1416;1445;1476;1507;1539;1568;1598;1628;1659;1690;1723;1756;1790
-239;'092;British Virgin Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;948;556;247;308;1084;2212;407
-239;'092;British Virgin Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;247;65;288;287;1038;170
-239;'092;British Virgin Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10
-239;'092;British Virgin Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1
-239;'092;British Virgin Islands;1864;Wood fuel;5516;Production;m3;436;443;450;457;464;471;479;487;494;502;522;525;546;542;541;541;548;569;576;587;597;705;655;748;757;770;818;831;882;896;966;888;955;887;950;905;984;984;1008;1032;1070;1110;1151;1194;1239;1267;1296;1325;1355;1355;1416;1445;1476;1507;1539;1568;1598;1628;1659;1690;1723;1756;1790
-239;'092;British Virgin Islands;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-239;'092;British Virgin Islands;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-239;'092;British Virgin Islands;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1628;Wood fuel, non-coniferous;5516;Production;m3;436;443;450;457;464;471;479;487;494;502;522;525;546;542;541;541;548;569;576;587;597;705;655;748;757;770;818;831;882;896;966;888;955;887;950;905;984;984;1008;1032;1070;1110;1151;1194;1239;1267;1296;1325;1355;1355;1416;1445;1476;1507;1539;1568;1598;1628;1659;1690;1723;1756;1790
-239;'092;British Virgin Islands;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-239;'092;British Virgin Islands;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-239;'092;British Virgin Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;372;347;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;2641;1481;2087;3976;10614;3719;1461;670;948;556;9054;5869;10228;3245;1318
-239;'092;British Virgin Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;22;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;184;249;305;497;1130;539;405;106;338;247;65;288;287;1304;546
-239;'092;British Virgin Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;67;10
-239;'092;British Virgin Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;1
-239;'092;British Virgin Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;372;347;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;287;1477;410;1912;7581;686;463;605;0;0;8807;5561;9144;1033;911
-239;'092;British Virgin Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;22;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;42;246;122;190;646;55;160;94;0;0;0;0;0;266;376
-239;'092;British Virgin Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;67;0
-239;'092;British Virgin Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;0
-239;'092;British Virgin Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;372;347;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;287;1477;410;1912;7581;686;463;605;0;0;8807;5561;9144;1033;911
-239;'092;British Virgin Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;22;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;42;246;122;190;646;55;160;94;0;0;0;0;0;266;376
-239;'092;British Virgin Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;67;0
-239;'092;British Virgin Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;0
-239;'092;British Virgin Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2354;4;1677;2064;3033;3033;998;65;948;556;247;308;1084;2212;407
-239;'092;British Virgin Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;142;3;183;307;484;484;245;12;338;247;65;288;287;1038;170
-239;'092;British Virgin Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10
-239;'092;British Virgin Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1
-239;'092;British Virgin Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2105;4;1001;1781;2048;2048;54;0;337;58;135;29;4;0;0
-239;'092;British Virgin Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;3;141;240;249;249;24;0;123;25;13;13;4;0;0
-239;'092;British Virgin Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10
-239;'092;British Virgin Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1
-239;'092;British Virgin Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;249;0;676;283;985;985;944;65;611;498;112;279;1080;2212;407
-239;'092;British Virgin Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;42;67;235;235;221;12;215;222;52;275;283;1038;170
-239;'092;British Virgin Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1630;Wood charcoal;5510;Production;t;8;8;9;9;10;10;10;11;11;12;12;12;15;15;15;15;15;17;17;18;18;19;21;21;21;21;24;24;27;27;28;25;19;21;22;24;25;26;29;44;46;49;51;54;57;58;60;62;63;63;67;68;70;72;74;75;77;78;80;82;83;85;87
-239;'092;British Virgin Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;25;43;31;40;40;40;40;40;40;40;58;45;41;116;48
-239;'092;British Virgin Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;26;20;24;28;28;28;28;28;28;28;52;37;27;99;36
-239;'092;British Virgin Islands;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;148;148;148;148;148;0;0;0;0
-239;'092;British Virgin Islands;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;119;119;119;119;0;0;0;0
-239;'092;British Virgin Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;1;1;1
-239;'092;British Virgin Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0
-239;'092;British Virgin Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;1;1;1
-239;'092;British Virgin Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0
-239;'092;British Virgin Islands;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600
-239;'092;British Virgin Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;3747;6757;11350;6248;8576;9324;13166;12980;14661;1870;9696;13120;11433;14595;15726;15142
-239;'092;British Virgin Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;693;693;693;693;693;693;693;693;693;693;693;693;693;693;693;693;3499;3001;2675;2820;3178;3957;4014;3613;734;3138;4510;4311;5389;4843;3601
-239;'092;British Virgin Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;179;254;481;356;1087;1045;312;209;0;0;0;72;0;0
-239;'092;British Virgin Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;238;325;661;184;595;342;135;78;0;0;27;62;0;0
-239;'092;British Virgin Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3183;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;3214;6447;11050;5665;8105;6904;12091;12440;14227;1175;7972;11619;10045;13503;12456;14559
-239;'092;British Virgin Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;485;485;485;485;485;485;485;485;485;485;485;485;485;485;485;485;3080;2627;1779;2372;2234;3076;3520;3167;241;1891;3705;3541;4612;3767;3202
-239;'092;British Virgin Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;87;87;1016;237;148;0;0;0;0;0;0
-239;'092;British Virgin Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;48;183;330;61;41;0;0;0;0;0;0
-239;'092;British Virgin Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600
-239;'092;British Virgin Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764;533;533;533;533;533;533;533;533;533;533;533;533;533;533;533;533;310;300;583;471;2420;1075;540;434;695;1724;1501;1388;1092;3270;583
-239;'092;British Virgin Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;419;374;896;448;944;881;494;446;493;1247;805;770;777;1076;399
-239;'092;British Virgin Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;179;254;472;269;1000;29;75;61;0;0;0;72;0;0
-239;'092;British Virgin Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;238;325;656;136;412;12;74;37;0;0;27;62;0;0
-239;'092;British Virgin Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;26;20;11;3;12;12;22;8;2;135;240;18;22;17;6
-239;'092;British Virgin Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;74;53;27;23;70;242;17;21;6;252;304;15;74;83;29
-239;'092;British Virgin Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;2445;5605;5507;2908.16;3133;3215;3863;3967;6534;8570;5147;5815;7891;3408;3408
-239;'092;British Virgin Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;379;379;379;379;379;379;379;379;379;379;379;379;379;379;379;379;2109;2917;2737;1831;1829;1777;1985;1895;3567;4754;2566;2252;3309;2182;2210
-239;'092;British Virgin Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;47;56;2;23;23;21;90;0;3;2;0;3;0;0
-239;'092;British Virgin Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;43;43;9;27;24;20;38;0;1;1;1;1;5;0
-239;'092;British Virgin Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1035;1801;5241;4642;2807;3100;3182;3830;3934;6501;8537;5050;4627;4488;3265;3227
-239;'092;British Virgin Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;379;379;379;379;379;379;379;379;379;379;379;379;379;379;379;379;2012;2855;2594;1774;1814;1762;1970;1880;3552;4739;2513;2069;2755;2110;2172
-239;'092;British Virgin Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;47;56;2;23;23;21;90;0;3;2;0;3;0;0
-239;'092;British Virgin Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;43;43;9;27;24;20;38;0;1;1;1;1;5;0
-239;'092;British Virgin Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;364;865;0.16;18;18;18;18;18;18;32;120;2260;3;94
-239;'092;British Virgin Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;62;143;9;9;9;9;9;9;9;13;62;408;3;1
-239;'092;British Virgin Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;15;15;15;15;15;15;65;1068;1143;140;87
-239;'092;British Virgin Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;6;6;6;6;6;6;40;121;146;69;37
-239;'092;British Virgin Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;1053;1053;8;8
-239;'092;British Virgin Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;115;103;10;10
-239;'092;British Virgin Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;15;15;15;15;15;15;15;15;90;90;37
-239;'092;British Virgin Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;6;6;6;6;6;6;6;6;43;43;11
-239;'092;British Virgin Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42
-239;'092;British Virgin Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16
-239;'092;British Virgin Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;124
-239;'092;British Virgin Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21
-239;'092;British Virgin Islands;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4523;3415;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4123;4567;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4523;3415;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4123;4567;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;124
-239;'092;British Virgin Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21
-239;'092;British Virgin Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;228;228;228;228;228;111;111;111;111;111;111;111;111;111;111;111;249;471;294;222.4;336;336;336;336;336;336;511;558;465;515;732
-239;'092;British Virgin Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;167;167;167;167;167;81;81;81;81;81;81;81;81;81;81;81;406;635;547;404;580;580;580;580;580;580;758;753;639;791;1047
-239;'092;British Virgin Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;156;56;21;64;67.23;67.23;67.23;67.23;67.23;67.23;67.23;67.23;276.23;70.23;334
-239;'092;British Virgin Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;213;82;21;166;76;76;76;76;76;76;76;76;227;94;311
-239;'092;British Virgin Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;117;117;117;117;117;;;;;;;;;;;;144;277;160;130.4;148;148;148;148;148;148;367;302;332;307;383
-239;'092;British Virgin Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;86;86;86;86;86;;;;;;;;;;;;198;352;275;190;233;233;233;233;233;233;400;249;299;339;466
-239;'092;British Virgin Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;;;;;;;;;;;;156;56;21;20;43.23;43.23;43.23;43.23;43.23;43.23;43.23;43.23;252.23;46.23;310
-239;'092;British Virgin Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;;;;;;;;;;;;213;82;21;19;50;50;50;50;50;50;50;50;201;68;285
-239;'092;British Virgin Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;206;206;206;206
-239;'092;British Virgin Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;91;91;91;91
-239;'092;British Virgin Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;117;117;117;117;117;;;;;;;;;;;;144;277;160;130.4;148;148;148;148;148;148;161;96;126;101;177
-239;'092;British Virgin Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;86;86;86;86;86;;;;;;;;;;;;198;352;275;190;233;233;233;233;233;233;298;158;208;248;375
-239;'092;British Virgin Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;;;;;;;;;;;;156;56;21;20;43.23;43.23;43.23;43.23;43.23;43.23;43.23;43.23;252.23;46.23;310
-239;'092;British Virgin Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;;;;;;;;;;;;213;82;21;19;50;50;50;50;50;50;50;50;201;68;285
-239;'092;British Virgin Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;6;5;5
-239;'092;British Virgin Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;13;8;8
-239;'092;British Virgin Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;46;39;0.4;8;8;8;8;8;8;121;75;83;63;92
-239;'092;British Virgin Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;87;79;2;12;12;12;12;12;12;195;106;124;136;142
-239;'092;British Virgin Islands;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;252;46;264
-239;'092;British Virgin Islands;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;48;48;48;199;66;242
-239;'092;British Virgin Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;231;121;130;140;140;140;140;140;140;39;21;37;33;80
-239;'092;British Virgin Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;265;196;188;221;221;221;221;221;221;99;45;71;104;225
-239;'092;British Virgin Islands;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;56;21;20;0.23;0.23;0.23;0.23;0.23;0.23;0.23;0.23;0.23;0.23;46
-239;'092;British Virgin Islands;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;82;21;19;2;2;2;2;2;2;2;2;2;2;43
-239;'092;British Virgin Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;105;194;134;92;188;188;188;188;188;188;144;256;133;208;349
-239;'092;British Virgin Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;208;283;272;214;347;347;347;347;347;347;358;504;340;452;581
-239;'092;British Virgin Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;44;24;24;24;24;24;24;24;24;24;24;24
-239;'092;British Virgin Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;147;26;26;26;26;26;26;26;26;26;26;26
-239;'092;British Virgin Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;2;35;23;50;50;50;50;50;50;136;211;124;166;210
-239;'092;British Virgin Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;12;77;50;93;93;93;93;93;93;334;431;325;399;464
-239;'092;British Virgin Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;111;74;192;98;68;137;137;137;137;137;137;4;41;8;40;139
-239;'092;British Virgin Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;81;81;81;81;81;81;81;130;271;174;161;247;247;247;247;247;247;8;58;10;44;105
-239;'092;British Virgin Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;44;24;24;24;24;24;24;24;24;24;24;24
-239;'092;British Virgin Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;147;26;26;26;26;26;26;26;26;26;26;26
-239;'092;British Virgin Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;111;31;60;8;0;2;2;2;2;2;2;0;0;0;1;1
-239;'092;British Virgin Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;81;81;81;81;81;81;81;52;22;7;0;5;5;5;5;5;5;0;0;0;4;4
-239;'092;British Virgin Islands;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-239;'092;British Virgin Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;62;17;32;63;63;63;63;63;63;0;5;5;23;6
-239;'092;British Virgin Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;112;36;100;109;109;109;109;109;109;0;3;3;17;4
-239;'092;British Virgin Islands;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;24;24;24;24;24;24;24;24;24;24
-239;'092;British Virgin Islands;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;26;26;26;26;26;26;26;26;26;26;26
-239;'092;British Virgin Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;70;73;36;69;69;69;69;69;69;1;33;0;13;30
-239;'092;British Virgin Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;137;131;61;129;129;129;129;129;129;4;51;3;19;31
-239;'092;British Virgin Islands;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;102
-239;'092;British Virgin Islands;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;66
-239;'092;British Virgin Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;4;4;1;2;0
-239;'092;British Virgin Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;3;7;7;7;7;7;7;16;15;5;9;12
-239;'092;British Virgin Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13835;30979;24738;7831;7220;22974;10605
-239;'092;British Virgin Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;373;303;160;19;132;216
-239;'092;British Virgin Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1749;2368;2699;958;1456;1291;989
-239;'092;British Virgin Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84
-239;'092;British Virgin Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;1284;1065;501;331;638;432
-239;'092;British Virgin Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027;1084;1634;457;1125;653;557
-239;'092;British Virgin Islands;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84
-239;'092;British Virgin Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;14;12;4;11;7;52
-239;'092;British Virgin Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;380;451;206;381;144;562
-239;'092;British Virgin Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2621;13594;8843;998;1817;1167;1414
-239;'092;British Virgin Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;194;1;0;0;0;116
-239;'092;British Virgin Islands;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-239;'092;British Virgin Islands;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9
-239;'092;British Virgin Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5593;9525;10827;3354;3293;11449;7432
-239;'092;British Virgin Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;170;302;157;19;132;16
-239;'092;British Virgin Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1234;2449;1221;2054;104;8465;14
-239;'092;British Virgin Islands;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2373;2649;685;257;158;451;142
-239;'092;British Virgin Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;0;3;0;0;0
-239;'092;British Virgin Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1533;2181;2399;1977;3018;3665
-239;'092;British Virgin Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;41;110;109;14;43;90
-239;'092;British Virgin Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;14;70;12;55;7;45
-239;'092;British Virgin Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-239;'092;British Virgin Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;400;406;411;430;493;807
-239;'092;British Virgin Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;8;6;1;1;1;0
-239;'092;British Virgin Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;180;167;112;162;161;193
-239;'092;British Virgin Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;62;14;0;5;89
-239;'092;British Virgin Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711;939;1538;1864;1330;2357;2620
-239;'092;British Virgin Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;26;42;94;13;37;1
-26;'096;Brunei Darussalam;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53139;52697;50833;57816;54522.06;52462.84;54689.9
-26;'096;Brunei Darussalam;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4022;3243;4174;1860;3469;3546.04;35459.04
-26;'096;Brunei Darussalam;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;85;131;167;300;399;597;554;598;853;848;670;1012;1497;1076;1099;1188;1278;2642;3177;3571;5585;5813;6484;6535;6016;5549;11378;12375;7440;18259;17222;10946;1076;7966;28101;22310;8816;8550;8428;4313;8400;2584;5956;8690;8690;6120;10077;8789;8201;9463;14288;17073;18332;17243;15009;12521;15043;14990;13177;11994;12342.06;11627.84;21968.9
-26;'096;Brunei Darussalam;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;51;40;52;72;78;57;47;73;37;68;68;68;241;227;139;241;250;109;137;14;70;75;90;90;155;38;173;70;181;181;181;49;90;270;355;109;109;22;207;187;508;313;525;547;547;508;2484;3571;2473;5010;5502;1183;1259;2704;1283;3128;1895;1050;812;634;1047;1346.04;34029.04
-26;'096;Brunei Darussalam;1861;Roundwood;5516;Production;m3;78000;72000;76000;91000;117000;115000;136000;144000;150000;106327;111506;93342;94226;94452;127831;161889;158088;138302;149784;144022;211379;222524;222659;223843;224015;224145;224320;225454;225581;104393;104442;105690;105798;104724;104798;106989;107058;107072;119235;126232;129750;127269;123690;123713;134137;134143;134200;119000;118968;118979;118972;118966;118961;118957;96654;91650;77192;91033;100036;82956;82198;70421;75387
-26;'096;Brunei Darussalam;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;455;597;597;1154;1717;700;700;327;1704;189;257;121;1544;259;259;259;324;266;292;243;243;177;930;170;72;5;23;63;1;155;1;12;4953
-26;'096;Brunei Darussalam;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;16;18;18;57;104;147;147;153;362;67;69;12;152;61;61;61;25;49;31;28;28;21;68;15;104;1;4;16;1;245;0;2;1095
-26;'096;Brunei Darussalam;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;1724;1834;0;0;0;1035;1035;1035;1035;303;303;303;303;303;289;289;289;289;4;28;67;12;12;0;0;0;0;0;0;21535
-26;'096;Brunei Darussalam;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;124;138;0;0;0;130;130;130;130;107;107;107;107;107;126;126;126;126;59;58;118;0;0;0;0;0;0;0;0;3675
-26;'096;Brunei Darussalam;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;2;0;1;1;8;40
-26;'096;Brunei Darussalam;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;0;0;2;5
-26;'096;Brunei Darussalam;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1863;Roundwood, non-coniferous;5516;Production;m3;78000;72000;76000;91000;117000;115000;136000;144000;150000;106327;111506;93342;94226;94452;127831;161889;158088;138302;149784;144022;211379;222524;222659;223843;224015;224145;224320;225454;225581;104393;104442;105690;105798;104724;104798;106989;107058;107072;119235;126232;129750;127269;123690;123713;134137;134143;134200;119000;118968;118979;118972;118966;118961;118957;96654;91650;77192;91033;100036;82956;82198;70421;75387
-26;'096;Brunei Darussalam;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;61;1;154;0;4;4913
-26;'096;Brunei Darussalam;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;0;245;0;0;1090
-26;'096;Brunei Darussalam;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;21535
-26;'096;Brunei Darussalam;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3675
-26;'096;Brunei Darussalam;1864;Wood fuel;5516;Production;m3;45000;45000;45000;50000;50000;50000;55000;55000;60000;7327;7506;7342;7226;7452;7831;7889;8088;8302;8384;8822;9379;9524;9659;9843;10015;10145;10320;10454;10581;10693;10742;10990;11098;10024;10098;11289;11358;11372;11435;11532;11550;11569;11590;11613;11637;11643;11700;11700;11668;11679;11672;11666;11661;11657;11654;11650;11646;11643;11642;11641;11637;11633;11631
-26;'096;Brunei Darussalam;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;1154;0;0;32;32;32;100;100;3;3;3;3;68;68;68;68;68;2;2;2;2;2;21;0;0;1;1;0;0
-26;'096;Brunei Darussalam;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;0;0;1;1;1;3;3;43;43;43;43;7;7;7;7;7;0;0;0;0;0;2;0;1;0;0;2;2
-26;'096;Brunei Darussalam;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;12;12;12;;;;;;;
-26;'096;Brunei Darussalam;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;1;1;0;0
-26;'096;Brunei Darussalam;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;0;0;2;2
-26;'096;Brunei Darussalam;1628;Wood fuel, non-coniferous;5516;Production;m3;45000;45000;45000;50000;50000;50000;55000;55000;60000;7327;7506;7342;7226;7452;7831;7889;8088;8302;8384;8822;9379;9524;9659;9843;10015;10145;10320;10454;10581;10693;10742;10990;11098;10024;10098;11289;11358;11372;11435;11532;11550;11569;11590;11613;11637;11643;11700;11700;11668;11679;11672;11666;11661;11657;11654;11650;11646;11643;11642;11641;11637;11633;11631
-26;'096;Brunei Darussalam;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;1154;0;0;32;32;32;100;100;3;3;3;3;68;68;68;68;68;2;2;2;2;2;;;;;;;
-26;'096;Brunei Darussalam;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;0;0;1;1;1;3;3;43;43;43;43;7;7;7;7;7;0;0;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;12;12;12;;;;;;;
-26;'096;Brunei Darussalam;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1865;Industrial roundwood;5516;Production;m3;33000;27000;31000;41000;67000;65000;81000;89000;90000;99000;104000;86000;87000;87000;120000;154000;150000;130000;141400;135200;202000;213000;213000;214000;214000;214000;214000;215000;215000;93700;93700;94700;94700;94700;94700;95700;95700;95700;107800;114700;118200;115700;112100;112100;122500;122500;122500;107300;107300;107300;107300;107300;107300;107300;85000;80000;65546;79390;88394;71315;70561;58788;63756
-26;'096;Brunei Darussalam;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;455;597;597;0;563;700;700;295;1672;157;157;21;1541;256;256;256;256;198;224;175;175;175;928;168;70;3;2;63;1;154;0;12;4953
-26;'096;Brunei Darussalam;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;16;18;18;0;47;147;147;152;361;66;66;9;109;18;18;18;18;42;24;21;21;21;68;15;104;1;2;16;0;245;0;0;1093
-26;'096;Brunei Darussalam;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;1724;1834;0;0;0;1035;1035;1035;1035;303;303;303;303;303;289;289;289;289;4;16;55;0;0;0;0;0;0;0;0;21535
-26;'096;Brunei Darussalam;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;124;138;0;0;0;130;130;130;130;107;107;107;107;107;126;126;126;126;59;58;118;0;0;0;0;0;0;0;0;3675
-26;'096;Brunei Darussalam;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;100;100;10;7;7;7;7;587;23;23;23;23;23;49;0;0;0;749;0;0;0;0;2;0;0;0;8;40
-26;'096;Brunei Darussalam;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;10;1;0;0;0;0;36;1;1;1;1;1;3;0;0;0;46;0;0;0;0;1;0;0;0;0;3
-26;'096;Brunei Darussalam;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;100;100;10;7;7;7;7;587;23;23;23;23;23;49;0;0;0;749;0;0;0;0;2;0;0;0;8;40
-26;'096;Brunei Darussalam;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;10;1;0;0;0;0;36;1;1;1;1;1;3;0;0;0;46;0;0;0;0;1;0;0;0;0;3
-26;'096;Brunei Darussalam;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1867;Industrial roundwood, non-coniferous;5516;Production;m3;33000;27000;31000;41000;67000;65000;81000;89000;90000;99000;104000;86000;87000;87000;120000;154000;150000;130000;141400;135200;202000;213000;213000;214000;214000;214000;214000;215000;215000;93700;93700;94700;94700;94700;94700;95700;95700;95700;107800;114700;118200;115700;112100;112100;122500;122500;122500;107300;107300;107300;107300;107300;107300;107300;85000;80000;65546;79390;88394;71315;70561;58788;63756
-26;'096;Brunei Darussalam;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;455;597;597;0;542;600;600;285;1665;150;150;14;954;233;233;233;233;175;175;175;175;175;179;168;70;3;2;61;1;154;0;4;4913
-26;'096;Brunei Darussalam;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;16;18;18;0;45;137;137;151;361;66;66;9;73;17;17;17;17;41;21;21;21;21;22;15;104;1;2;15;0;245;0;0;1090
-26;'096;Brunei Darussalam;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;1724;1752;0;0;0;1035;1035;1035;1035;303;303;303;303;303;289;289;289;289;4;16;55;0;0;0;0;0;0;0;0;21535
-26;'096;Brunei Darussalam;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;124;128;0;0;0;130;130;130;130;107;107;107;107;107;126;126;126;126;59;58;118;0;0;0;0;0;0;0;0;3675
-26;'096;Brunei Darussalam;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;455;597;597;0;0;600;600;0;0;0;0;0;166;166;166;166;166;166;166;166;166;166;166;166;15;3;1;15;1;0;0;0;0
-26;'096;Brunei Darussalam;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;16;18;18;0;0;137;137;0;0;0;0;0;13;13;13;13;13;13;13;13;13;13;13;13;30;1;0;4;0;0;0;0;0
-26;'096;Brunei Darussalam;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;1724;1724;0;0;0;1019;1019;1019;1019;287;287;287;287;287;287;287;287;287;2;2;2;0;0;0;0;0;0;0;0;21535
-26;'096;Brunei Darussalam;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;124;124;0;0;0;128;128;128;128;105;105;105;105;105;105;105;105;105;38;38;38;0;0;0;0;0;0;0;0;3675
-26;'096;Brunei Darussalam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;542;0;0;285;1665;150;150;14;788;67;67;67;67;9;9;9;9;9;13;2;55;0;1;46;0;154;0;4;4913
-26;'096;Brunei Darussalam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;45;0;0;151;361;66;66;9;60;4;4;4;4;28;8;8;8;8;9;2;74;0;2;11;0;245;0;0;1090
-26;'096;Brunei Darussalam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;16;16;16;16;16;16;16;16;16;2;2;2;2;2;14;53;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;2;2;2;2;2;2;2;2;2;21;21;21;21;21;20;80;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1868;Sawlogs and veneer logs;5516;Production;m3;30000;24000;28000;38000;64000;62000;77000;85000;86000;95000;99000;81000;82000;82000;115000;148000;144000;124000;135400;128200;195000;206000;206000;206000;206000;206000;206000;206000;206000;84700;84700;84700;84700;84700;84700;84700;84700;84700;96800;103700;107200;104700;101100;101100;111500;111500;111500;96300;96300;96300;96300;96300;96300;96300;74000;69000;54546;68390;77394;60315;59561;47788;52756
-26;'096;Brunei Darussalam;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;30000;24000;28000;38000;64000;62000;77000;85000;86000;95000;99000;81000;82000;82000;115000;148000;144000;124000;135400;128200;195000;206000;206000;206000;206000;206000;206000;206000;206000;84700;84700;84700;84700;84700;84700;84700;84700;84700;96800;103700;107200;104700;101100;101100;111500;111500;111500;96300;96300;96300;96300;96300;96300;96300;74000;69000;54546;68390;77394;60315;59561;47788;52756
-26;'096;Brunei Darussalam;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1871;Other industrial roundwood;5516;Production;m3;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;5000;5000;5000;5000;5000;6000;6000;6000;6000;7000;7000;7000;7000;8000;8000;8000;8000;9000;9000;9000;9000;10000;10000;10000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-26;'096;Brunei Darussalam;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;5000;5000;5000;5000;5000;6000;6000;6000;6000;7000;7000;7000;7000;8000;8000;8000;8000;9000;9000;9000;9000;10000;10000;10000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-26;'096;Brunei Darussalam;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1630;Wood charcoal;5510;Production;t;86;87;88;89;90;90;91;92;93;94;96;91;88;91;97;95;97;98;96;103;116;120;125;130;136;144;149;156;164;170;176;175;192;175;175;175;175;175;175;237;243;249;255;261;267;272;300;300;287;292;297;302;306;311;316;320;324;328;332;336;341;307;311
-26;'096;Brunei Darussalam;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;325;300;300;326;334;417;400;301;406;406;406;286;286;121;293;729;260;783;665;512;499;337;380;340;281;338;312;195;415
-26;'096;Brunei Darussalam;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;120;136;136;102;95;138;129;112;181;181;181;124;124;39;160;303;192;392;563;439;375;247;287;268;205;283;255;187;330
-26;'096;Brunei Darussalam;1630;Wood charcoal;5910;Export quantity;t;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;87;244;218;142;60;1;1;1;1;1
-26;'096;Brunei Darussalam;1630;Wood charcoal;5922;Export value;1000 USD;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;99;215;81;34;1;1;1;1;1
-26;'096;Brunei Darussalam;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;93;23;122;122;266;118;118;28;11;366;155;577;33;94;899;3971;3119;2306;3027;1032;1188;1558;1632;824;827
-26;'096;Brunei Darussalam;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;0;3;3;7;4;4;2;6;180;41;162;21;33;47;261;248;235;244;309;281;313;286.67;125;126
-26;'096;Brunei Darussalam;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;21;21;3917;65;117;36;36;36;23;36;23
-26;'096;Brunei Darussalam;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;17;17;78;36;67;18;18;18;17;17;17
-26;'096;Brunei Darussalam;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;521;521;0;0;5;16;22;22;22;22;22;22;22;6;207;14;14;14;14;200;2297;2297;2297;2297;29;1;19;1;1;4
-26;'096;Brunei Darussalam;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;0;0;0;0;0;0;0;0;0;0;0;3;136;10;10;10;10;3;231;231;231;231;15;1;36;3;4;5
-26;'096;Brunei Darussalam;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;0;13;0
-26;'096;Brunei Darussalam;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;0;0;0
-26;'096;Brunei Darussalam;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;77;1;100;100;244;96;96;6;5;159;141;563;19;80;699;1674;822;9;730;1003;1187;1539;1631;823;823
-26;'096;Brunei Darussalam;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;0;3;3;7;4;4;2;3;44;31;152;11;23;44;30;17;4;13;294;280;277;283.67;121;121
-26;'096;Brunei Darussalam;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;8;8;3904;52;104;23;23;23;23;23;23
-26;'096;Brunei Darussalam;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;16;77;35;66;17;17;17;17;17;17
-26;'096;Brunei Darussalam;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;500;648;379;277;276;276;276;276
-26;'096;Brunei Darussalam;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;28;289;1010
-26;'096;Brunei Darussalam;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;8;87;261
-26;'096;Brunei Darussalam;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;300;167;49;0;0;0;0;0
-26;'096;Brunei Darussalam;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;286;100;30;11;11;0;0.04;0.04
-26;'096;Brunei Darussalam;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20
-26;'096;Brunei Darussalam;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7
-26;'096;Brunei Darussalam;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;500;648;379;277;276;276;276;276
-26;'096;Brunei Darussalam;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;28;289;990
-26;'096;Brunei Darussalam;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;8;87;254
-26;'096;Brunei Darussalam;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;300;167;49;0;0;0;0;0
-26;'096;Brunei Darussalam;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;286;100;30;11;11;0;0.04;0.04
-26;'096;Brunei Darussalam;1872;Sawnwood;5516;Production;m3;11000;9000;11000;14000;28000;23000;31000;35000;36000;40000;45000;43000;49000;45000;51000;65000;72000;63000;66700;60400;95000;99000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;67300;56000;51300;54200;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;38435;29179;29191;24660;27890
-26;'096;Brunei Darussalam;1872;Sawnwood;5616;Import quantity;m3;1400;1900;2400;5100;6300;10100;6900;4800;4500;400;400;300;200;100;200;200;200;200;200;600;900;100;600;1500;700;700;700;2700;4000;51200;47000;10294;245;1222;17849;35100;30800;15365;5645;669;683;142;893;154;154;109;462;807;87;143;140;492;298;557;225;202;3980;7316;1168;1018;834;2918;4816
-26;'096;Brunei Darussalam;1872;Sawnwood;5622;Import value;1000 USD;31;64;46;125;140;250;207;170;164;30;30;32;54;14;20;20;20;20;52;150;230;25;200;500;172;213;207;687;877;2806;4175;1734;52;822;3953;3959;2215;1228;654;344;294;56;164;36;36;31;318;468;79;105;104;423;214;402;98;68;1124;1834;549;324;273;1059;2379
-26;'096;Brunei Darussalam;1872;Sawnwood;5916;Export quantity;m3;1800;1200;1800;2100;2200;900;1300;5000;1300;1500;1500;1500;3500;3100;1700;3100;3000;1000;800;100;500;500;600;600;200;100;500;100;200;200;200;11;65;65;266;200;200;9;4849;10;700;17;859;657;657;657;129;68;265;222;211;73;87;130;88;1;20;76;435;0;0;55;6764
-26;'096;Brunei Darussalam;1872;Sawnwood;5922;Export value;1000 USD;51;40;52;72;78;57;47;73;37;68;68;68;241;227;139;241;250;109;137;14;70;75;90;90;155;38;173;70;181;181;181;15;44;44;91;56;56;5;58;24;345;17;112;199;199;199;181;100;257;220;212;103;88;126;13;1;3;10;89;0;60;18;7173
-26;'096;Brunei Darussalam;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;36;470;800;800;83;83;83;83;83;83;83;83;83;83;591;9;96;99;143;104;218;114;37;3453;2866;892;923;821;2899;2899
-26;'096;Brunei Darussalam;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;11;89;115;115;14;14;14;14;14;14;14;14;14;14;271;4;51;47;51;82;104;38;14;955;824;390;279;250;1009;1009
-26;'096;Brunei Darussalam;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;47;47;47;0;0;0;0;357;0;0;42;0
-26;'096;Brunei Darussalam;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;0;0;0;0;0;0;0;71;0;0;18;0
-26;'096;Brunei Darussalam;1633;Sawnwood, non-coniferous;5516;Production;m3;11000;9000;11000;14000;28000;23000;31000;35000;36000;40000;45000;43000;49000;45000;51000;65000;72000;63000;66700;60400;95000;99000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;67300;56000;51300;54200;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;50900;38435;29179;29191;24660;27890
-26;'096;Brunei Darussalam;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1400;1900;2400;5100;6300;10100;6900;4800;4500;400;400;300;200;100;200;200;200;200;200;600;900;100;600;1500;700;700;700;2700;4000;51200;47000;10294;33;1186;17379;34300;30000;15282;5562;586;600;59;810;71;71;26;379;216;78;47;41;349;194;339;111;165;527;4450;276;95;13;19;1917
-26;'096;Brunei Darussalam;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;31;64;46;125;140;250;207;170;164;30;30;32;54;14;20;20;20;20;52;150;230;25;200;500;172;213;207;687;877;2806;4175;1734;17;811;3864;3844;2100;1214;640;330;280;42;150;22;22;17;304;197;75;54;57;372;132;298;60;54;169;1010;159;45;23;50;1370
-26;'096;Brunei Darussalam;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1800;1200;1800;2100;2200;900;1300;5000;1300;1500;1500;1500;3500;3100;1700;3100;3000;1000;800;100;500;500;600;600;200;100;500;100;200;200;200;11;65;65;266;200;200;9;4849;10;700;17;859;657;657;657;129;68;265;222;164;26;40;83;88;1;20;76;78;0;0;13;6764
-26;'096;Brunei Darussalam;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;51;40;52;72;78;57;47;73;37;68;68;68;241;227;139;241;250;109;137;14;70;75;90;90;155;38;173;70;181;181;181;15;44;44;91;56;56;5;58;24;345;17;112;199;199;199;181;100;257;220;187;103;88;126;13;1;3;10;18;0;60;0;7173
-26;'096;Brunei Darussalam;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000
-26;'096;Brunei Darussalam;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;7;231;100;100;41;34;34;34;21;21;124;124;49;26;5;18;5;31;23;10;36;42;31;48;4;11;21;0;0;1311
-26;'096;Brunei Darussalam;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;22;78;97;97;31;45;21;21;84;84;97;97;89;66;16;66;15;103;71;12;83;33;119;56;11;20;53;26;32;6871
-26;'096;Brunei Darussalam;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;25;513;2131;483;483;483;483;14;0;0;0;0;0;0;0;1170
-26;'096;Brunei Darussalam;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;12;325;1436;19;1;0;3;27;0;0;0;0;0;0;0;3707
-26;'096;Brunei Darussalam;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5000
-26;'096;Brunei Darussalam;1873;Wood-based panels;5616;Import quantity;m3;500;500;400;800;1200;1737;1837;4659;2511;2005;2005;4216;6232;5800;3900;3900;3900;7800;10000;11100;18100;12000;13600;14500;12700;15000;25000;27100;24600;36600;24700;19068;2335;8816;51332;37000;8500;22202;47011;3166;13300;855;749;14849;14849;5527;3453;1762;1833;4922;14184;16443;18111;15746;14374;12730;14627;11956;18561;16991;10982;8362.05;7517.05
-26;'096;Brunei Darussalam;1873;Wood-based panels;5622;Import value;1000 USD;54;54;108;100;124;220;225;296;293;399;399;400;690;296;271;350;430;1774;2077;2373;4307;3531;3795;3546;3600;3413;7200;7697;3727;12696;10329;6587;611;4070;20726;16006;3343;4465;4702;963;4137;206;381;4039;4039;2125;3814;2068;1583;2647;5448;6103;9116;6957;6173;5632;5964;5474;4945;5237;4531;4033.9;4601.9
-26;'096;Brunei Darussalam;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;32;10;140;100;100;0;13;13;13;13;39;61;61;61;61;61;61;61;61;222;79;728;57;110;55;36;353;9;9;162;8085
-26;'096;Brunei Darussalam;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;12;6;78;27;27;0;2;2;2;2;45;52;52;52;52;52;52;45;266;178;87;983;62;62;59;55;199;7;7;135;18553
-26;'096;Brunei Darussalam;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5000
-26;'096;Brunei Darussalam;1640;Plywood and LVL;5616;Import quantity;m3;200;200;100;300;400;600;700;1100;1900;1500;1500;1500;1600;100;400;400;400;4300;4900;6000;13000;7800;8500;9400;10000;11500;20000;22000;20000;9400;11000;17127;35;7085;49473;35400;6000;20672;13988;2152;6900;50;50;7875;7875;1696;2023;1018;520;2336;11850;15416;15738;13435;12107;12027;14025;10807;18030;16116;10237;7780;6992
-26;'096;Brunei Darussalam;1640;Plywood and LVL;5622;Import value;1000 USD;24;24;78;38;78;110;125;161;235;213;213;259;448;30;130;130;130;1426;1311;1607;3541;2524;2767;2518;2600;2113;5300;6257;2587;3736;4026;6011;33;3511;20212;15522;2253;4068;3966;672;2994;46;46;2795;2795;1126;2531;1162;614;935;4053;5453;7929;5729;5080;4986;5409;4903;4638;4848;4212;3810;4387
-26;'096;Brunei Darussalam;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;140;100;100;0;0;0;0;0;0;22;22;22;22;22;22;22;22;38;20;680;9;62;20;1;318;0;0;153;8076
-26;'096;Brunei Darussalam;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;78;27;27;0;0;0;0;0;0;7;7;7;7;7;7;0;221;31;18;931;10;10;9;5;149;0;0;128;18546
-26;'096;Brunei Darussalam;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131
-26;'096;Brunei Darussalam;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124
-26;'096;Brunei Darussalam;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707;1293;843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;277;249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;100;800;386;109;454;800;50;50;519;519;1240;9;7;254;376;921;391;104;40;90;19;14;14;118;315;220;145;118
-26;'096;Brunei Darussalam;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;15;430;74;156;77;153;12;12;85;85;129;19;14;170;202;408;228;105;86;152;19;69;69;55;81;101;51;60
-26;'096;Brunei Darussalam;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;13;68;68;25;25;25;0;0;0;0;0;1;1.04;1.04
-26;'096;Brunei Darussalam;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;7;35;35;7;7;7;0;0;0;0;0;2;1.9;1.9
-26;'096;Brunei Darussalam;1874;Fibreboard;5616;Import quantity;m3;300;300;300;500;800;1137;1137;3559;611;505;505;2716;4632;5700;3500;3500;3500;3500;5100;5100;5100;4200;5100;5100;2700;3500;5000;5100;4600;27200;13700;1234;1007;888;945;1500;1700;1144;32914;560;5600;755;649;6455;6455;2591;1421;737;1046;2197;1345;568;2244;2246;2152;684;588;1135;413;560;524;436;406
-26;'096;Brunei Darussalam;1874;Fibreboard;5622;Import value;1000 USD;30;30;30;62;46;110;100;135;58;186;186;141;242;266;141;220;300;348;766;766;766;1007;1028;1028;1000;1300;1900;1440;1140;8960;6303;384;301;310;338;469;660;323;580;214;990;148;323;1159;1159;870;1264;892;792;1503;952;387;1075;1135;934;627;486;502;252;308;216;171;153
-26;'096;Brunei Darussalam;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;;;;;;;;;26;26;26;26;26;26;26;26;26;171;46;35;35;35;35;35;35;9;9;9;9
-26;'096;Brunei Darussalam;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;;;;;;43;43;43;43;43;43;43;43;43;145;67;50;50;50;50;50;50;7;7;7;7
-26;'096;Brunei Darussalam;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;5034;77;100;136;30;255;255;217;40;95;153;497;136;64;60;24;76;165;18;377;7;202;18;3;3
-26;'096;Brunei Darussalam;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;116;110;38;56;231;118;118;156;31;79;141;384;149;55;53;34;69;112;13;159;4;124;21;4;4
-26;'096;Brunei Darussalam;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;0
-26;'096;Brunei Darussalam;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;0;0;0
-26;'096;Brunei Darussalam;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;1000;1000;571;27241;33;5100;36;36;5779;5779;2338;1226;487;818;1625;1206;457;2149;2017;2067;480;525;737;387;317;441;406;364
-26;'096;Brunei Darussalam;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;371;371;163;327;6;875;14;14;988;988;702;1107;687;594;1062;794;297;997;956;858;475;435;328;246;170;172;143;137
-26;'096;Brunei Darussalam;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;20;7;7;7;7;7;7;7;7;7;7
-26;'096;Brunei Darussalam;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;24;6;6;6;6;6;6;6;6;6;6
-26;'096;Brunei Darussalam;1650;Other fibreboard;5616;Import quantity;m3;;;;;100;400;400;400;400;400;400;2400;4000;3200;3200;3200;3200;3200;3400;3400;3400;2400;4300;4300;1200;1500;2000;1800;2000;14500;3400;316;26;174;660;500;700;479;639;450;400;583;583;421;421;36;155;155;75;75;3;47;35;205;9;39;45;21;19;41;65;27;39
-26;'096;Brunei Darussalam;1650;Other fibreboard;5622;Import value;1000 USD;;;;;7;30;25;35;35;35;35;90;151;81;81;160;240;288;384;384;384;540;698;698;450;600;800;240;240;3336;2102;120;26;66;197;98;289;80;137;98;77;78;78;53;53;12;126;126;57;57;9;35;25;145;7;40;38;15;2;14;23;24;12
-26;'096;Brunei Darussalam;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2
-26;'096;Brunei Darussalam;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;300;300;500;700;737;737;3159;211;105;105;316;632;2500;300;300;300;300;1700;1700;1700;1800;800;800;1500;2000;3000;3300;2600;12700;10300;918;981;714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;30;30;30;62;39;80;75;100;23;151;151;51;91;185;60;60;60;60;382;382;382;467;330;330;550;700;1100;1200;900;5624;4201;264;275;244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;16000;14000;17000;21000;3000;4000;7000;5000;13000;13000;13000;13000;13000;13000;13000;13000
-26;'096;Brunei Darussalam;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;55;63;68;20;5;27;46;48;24;62;43;43;43;14;594;65;67;50;113;968;268;372;429;142;289;173;119;166;19;67.16;38
-26;'096;Brunei Darussalam;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;34;38;42;11;4;1;12;18;15;12;31;30;30;26;167;87;105;95;118;342;357;494;508;80;495;241;164;133;128;168.95;21
-26;'096;Brunei Darussalam;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;558;475;340;340;25;11335;15600;13487;17176;21153;2021;4110;6317;4241;12609;6851;3769;4745;1340;3252;5600;5100
-26;'096;Brunei Darussalam;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;145;128;58;58;4;1740;3135;1520;2990;4650;459;551;824;553;2225;1310;694;399;126;381;628;412
-26;'096;Brunei Darussalam;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;53;5;5;0;22;24;24;22;13;13;13;13;13;63;65;48;111;50;50;120;120;120;96;23;1;1;13;13.16;1
-26;'096;Brunei Darussalam;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;35;4;4;0;9;15;15;9;25;25;25;25;25;87;105;95;118;101;68;77;77;77;119;34;5;4;115;111.95;1
-26;'096;Brunei Darussalam;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;51;25;25;25;25;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;72;49;49;49;49;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;53;5;5;0;21;21;21;21;12;15;15;13;13;43;45;28;91;30;49;99;99;99;75;2;2;2;14;14.16;2
-26;'096;Brunei Darussalam;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;35;4;4;0;8;8;8;8;24;26;26;25;25;40;58;48;71;54;59;45;45;45;87;2;11;14;125;121.95;11
-26;'096;Brunei Darussalam;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;0;3;3;0;0
-26;'096;Brunei Darussalam;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;21;21;21;21;12;12;12;12;12;39;39;19;82;20;39;97;97;97;;;;;;;
-26;'096;Brunei Darussalam;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;8;8;8;8;24;24;24;24;24;18;18;8;31;13;18;43;43;43;;;;;;;
-26;'096;Brunei Darussalam;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;0;0;0;0;0;0;0;0;0;0;0;0;3;5;8;8;9;9;1;1;1;1;1;1;1;13;13.16;1
-26;'096;Brunei Darussalam;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;21;39;39;39;40;40;1;1;1;1;1;1;1;112;111.95;1
-26;'096;Brunei Darussalam;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12.16;0
-26;'096;Brunei Darussalam;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;110.95;0
-26;'096;Brunei Darussalam;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;0;0;0;0;0;0;0;0;0;0;0;0;3;5;8;8;8;8;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;21;39;39;39;39;39;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;0;0;0;;;;;;;
-26;'096;Brunei Darussalam;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;1;1;1;1;1;1;1;1;1;1;10;10;10;10;10
-26;'096;Brunei Darussalam;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;1;1;1;1;1;1;21;21;21;21;21;2;22;22;22;22;22;0;0;0;0;0
-26;'096;Brunei Darussalam;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;1;1;1;1;1;1;48;48;48;48;48;10;33;33;33;33;33;4;0;0;0;0
-26;'096;Brunei Darussalam;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;1;1;1;1;1;1
-26;'096;Brunei Darussalam;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;14;3;6;4;2;1;1;1;1;1;2;0;0;0;0
-26;'096;Brunei Darussalam;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;9;2;4;3;4;3;3;3;3;3;7;0;0;1;1
-26;'096;Brunei Darussalam;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-26;'096;Brunei Darussalam;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3
-26;'096;Brunei Darussalam;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;16000;14000;17000;21000;3000;4000;7000;5000;13000;13000;13000;13000;13000;13000;13000;13000
-26;'096;Brunei Darussalam;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;15;15;15;0;27;24;24;0;40;30;30;30;1;581;2;2;2;2;918;218;252;309;22;193;150;118;165;6;54;37
-26;'096;Brunei Darussalam;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;7;7;7;0;1;3;3;0;3;6;5;5;1;142;0;0;0;0;241;289;417;431;3;376;207;159;129;13;57;20
-26;'096;Brunei Darussalam;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;558;475;340;340;25;11335;15574;13461;17150;21127;1995;4059;6292;4216;12584;6826;3768;4744;1339;3251;5599;5099
-26;'096;Brunei Darussalam;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;145;128;58;58;4;1740;3112;1497;2967;4627;436;479;775;504;2176;1261;694;399;126;381;628;412
-26;'096;Brunei Darussalam;1876;Paper and paperboard;5610;Import quantity;t;0;100;100;250;300;300;300;500;400;500;500;700;600;600;600;600;600;600;800;800;800;1700;2000;2000;1800;1800;5600;5100;2900;2500;2500;1925;329;2200;1408;1200;2100;2267;4465;3287;4726;1629;23007;5600;5600;3627;8202;5582;5910;5997;7232;9497;5263;6331;5623;4960;4473;5131;4633;3473;4773.14;3149;3884
-26;'096;Brunei Darussalam;1876;Paper and paperboard;5622;Import value;1000 USD;0;13;13;75;135;127;122;132;396;419;241;580;753;766;808;818;828;848;1048;1048;1048;2257;2489;2489;2244;1923;3971;3991;2836;2702;2702;2559;283;2914;3045;1954;2874;2562;2555;2760;3730;2097;4954;4238;4238;3659;5554;5879;6126;6105;8269;9684;7950;8588;7466;6135;6865;6833;6989;5392;6824.38;5922;6273
-26;'096;Brunei Darussalam;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;51;162;88;53;53;31;31;54;54;36;559;583;583;599;601;601;705;705;727;807;889;788;566;550;242;175;209;741;757;739;763
-26;'096;Brunei Darussalam;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;23;96;48;26;26;17;17;31;31;19;133;131;131;146;146;146;193;193;229;381;458;587;305;303;275;209;92;468;578;544;488
-26;'096;Brunei Darussalam;2042;Graphic papers;5610;Import quantity;t;0;0;0;100;100;200;200;400;200;300;400;400;400;400;400;400;400;400;700;700;700;1600;1800;1800;1600;1600;4700;4200;2300;2000;2000;1222;216;1762;646;600;1400;1395;3660;2234;3221;663;19996;3968;3968;2742;6349;4602;5078;4897;5958;6457;4353;4552;4883;4067;3440;4427;3731;2722;3709.14;2242;2940
-26;'096;Brunei Darussalam;2042;Graphic papers;5622;Import value;1000 USD;0;0;0;38;62;75;70;80;80;103;111;126;235;248;290;300;310;330;817;817;817;1957;2095;2095;1850;1529;3301;3079;1988;1834;1834;1554;193;2217;2297;1134;1674;1572;1392;1660;2045;542;2998;3095;3095;2636;3634;4652;4936;4550;6315;6542;5956;5924;5901;4172;3958;4420;4324;3708;4215.38;3191;3569
-26;'096;Brunei Darussalam;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;27;109;35;0;0;0;0;0;0;0;128;115;115;131;131;131;131;131;155;218;300;213;93;91;93;26;142;668;685;671;694
-26;'096;Brunei Darussalam;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;17;70;22;0;0;0;0;0;0;0;77;49;49;64;64;64;64;64;100;226;303;310;75;93;94;28;50;420;534;421;423
-26;'096;Brunei Darussalam;1671;Newsprint;5610;Import quantity;t;0;0;0;0;0;100;100;100;100;100;100;200;200;200;200;200;200;200;200;200;200;400;300;300;400;400;1400;1000;800;500;500;233;20;2;6;0;0;80;365;1273;900;349;1451;118;118;18;1822;1746;1654;1882;1587;2674;1959;2048;1791;1066;777;903;661;547;528.62;432;275
-26;'096;Brunei Darussalam;1671;Newsprint;5622;Import value;1000 USD;0;0;0;0;0;20;21;26;24;22;31;47;75;113;150;150;150;150;152;152;152;294;265;265;350;350;801;579;488;334;334;123;9;1;7;0;0;40;190;697;444;140;655;60;60;16;1002;1274;902;1124;1091;1929;2492;2690;2853;1203;821;962;672;579;503;460;300
-26;'096;Brunei Darussalam;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;0;115;102;102;102;102;102;102;102;102;3;3;3;3;3;5;5;0;668;668;668;668
-26;'096;Brunei Darussalam;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;76;48;48;48;48;48;48;48;48;2;2;2;2;2;3;3;0;420;420;420;420
-26;'096;Brunei Darussalam;1674;Printing and writing papers;5610;Import quantity;t;;;;100;100;100;100;300;100;200;300;200;200;200;200;200;200;200;500;500;500;1200;1500;1500;1200;1200;3300;3200;1500;1500;1500;989;196;1760;640;600;1400;1315;3295;961;2321;314;18545;3850;3850;2724;4527;2856;3424;3015;4371;3783;2394;2504;3092;3001;2663;3524;3070;2175;3180.51;1810;2665
-26;'096;Brunei Darussalam;1674;Printing and writing papers;5622;Import value;1000 USD;;;;38;62;55;49;54;56;81;80;79;160;135;140;150;160;180;665;665;665;1663;1830;1830;1500;1179;2500;2500;1500;1500;1500;1431;184;2216;2290;1134;1674;1532;1202;963;1601;402;2343;3035;3035;2620;2632;3378;4034;3426;5224;4613;3464;3234;3048;2969;3137;3458;3652;3129;3712.38;2731;3269
-26;'096;Brunei Darussalam;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;8;109;35;0;0;;;;;;13;13;13;29;29;29;29;29;53;215;297;210;90;88;88;21;142;0;17;3;26
-26;'096;Brunei Darussalam;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;7;70;22;0;0;;;;;;1;1;1;16;16;16;16;16;52;224;301;308;73;91;91;25;50;0;114;1;3
-26;'096;Brunei Darussalam;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;321;321;321;64;10;285;285;157;2121;649;1033;629;406;834;496;601;522;1211;986;986;777;1014;834.27;470;657
-26;'096;Brunei Darussalam;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;232;232;232;69;93;224;224;144;85;762;1251;861;634;982;848;910;733;1244;1235;1235;1094;1432;986;787;936
-26;'096;Brunei Darussalam;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;14;0;0
-26;'096;Brunei Darussalam;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;112;0;0
-26;'096;Brunei Darussalam;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;2614;120;1600;103;3116;2354;2354;1726;1806;1766;1795;2052;3385;1680;1543;1423;1689;1182;1379;2201;1468;772;1608.25;1059;1720
-26;'096;Brunei Darussalam;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;516;158;1008;109;1716;1856;1856;1562;1764;2010;2161;2164;3850;2089;2037;1686;1312;1203;1300;1726;1665;996;1681.62;1263;1623
-26;'096;Brunei Darussalam;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;1;195;277;190;70;68;68;1;0;0;0;0;0
-26;'096;Brunei Darussalam;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;204;281;288;53;71;71;5;1;0;1;0;0
-26;'096;Brunei Darussalam;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;360;520;400;147;15419;1211;1211;841;600;441;596;334;580;1269;355;480;881;608;298;337;825;389;738;281;288
-26;'096;Brunei Darussalam;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854;454;573;361;224;534;955;955;914;783;606;622;401;740;1542;579;638;1003;522;602;497;893;701;1044.76;681;710
-26;'096;Brunei Darussalam;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;19;19;19;19;19;52;20;20;20;20;20;20;20;88;0;3;3;26
-26;'096;Brunei Darussalam;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;16;16;16;16;16;49;20;20;20;20;20;20;20;27;0;1;1;3
-26;'096;Brunei Darussalam;1675;Other paper and paperboard;5610;Import quantity;t;;100;100;150;200;100;100;100;200;200;100;300;200;200;200;200;200;200;100;100;100;100;200;200;200;200;900;900;600;500;500;703;113;438;762;600;700;872;805;1053;1505;966;3011;1632;1632;885;1853;980;832;1100;1274;3040;910;1779;740;893;1033;704;902;751;1064;907;944
-26;'096;Brunei Darussalam;1675;Other paper and paperboard;5622;Import value;1000 USD;;13;13;37;73;52;52;52;316;316;130;454;518;518;518;518;518;518;231;231;231;300;394;394;394;394;670;912;848;868;868;1005;90;697;748;820;1200;990;1163;1100;1685;1555;1956;1143;1143;1023;1920;1227;1190;1555;1954;3142;1994;2664;1565;1963;2907;2413;2665;1684;2609;2731;2704
-26;'096;Brunei Darussalam;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;24;53;53;53;53;31;31;54;54;36;431;468;468;468;470;470;574;574;572;589;589;575;473;459;149;149;67;73;72;68;69
-26;'096;Brunei Darussalam;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;26;26;26;26;17;17;31;31;19;56;82;82;82;82;82;129;129;129;155;155;277;230;210;181;181;42;48;44;123;65
-26;'096;Brunei Darussalam;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;27;100;7;132;66;66;92;71;244;82;79;111;99;101;112;114;136;201;199;188;211;280;222;337
-26;'096;Brunei Darussalam;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;36;109;24;178;72;72;149;147;357;191;199;265;157;375;362;280;383;505;689;480;575;713;633;995
-26;'096;Brunei Darussalam;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;2;2;2;0;0;0;0;0
-26;'096;Brunei Darussalam;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;5;5;5;0;0;0;0;0
-26;'096;Brunei Darussalam;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;523;905;338;2073;1265;1265;673;1299;636;649;901;827;2785;661;1522;622;744;720;483;712;531;702;680;598
-26;'096;Brunei Darussalam;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;416;973;504;886;784;784;642;1042;558;619;973;850;2466;1307;1936;1196;1516;1822;1636;2161;1065;1681;2061;1649
-26;'096;Brunei Darussalam;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;5;400;467;467;467;467;467;571;571;571;571;571;546;444;445;135;135;67;73;72;68;69
-26;'096;Brunei Darussalam;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;2;39;80;80;80;80;80;127;127;127;127;127;126;79;80;51;51;42;48;44;123;65
-26;'096;Brunei Darussalam;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-26;'096;Brunei Darussalam;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;79;400;82;746;95;95;61;40;91;23;19;3;525;79;76;123;110;88;221;71;132;167;173;135
-26;'096;Brunei Darussalam;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;55;247;74;3;59;59;63;28;74;43;61;7;468;560;155;189;196;165;239;116;197;279;297;215
-26;'096;Brunei Darussalam;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;104;104;104;104;104;2;2;2;2;0;0;0;0;0
-26;'096;Brunei Darussalam;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;47;47;0;0;0;0;1;1;0;1;1
-26;'096;Brunei Darussalam;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;342;300;28;252;442;442;255;1137;467;445;476;486;796;399;237;1;2;26;45;123;38;246;182;91
-26;'096;Brunei Darussalam;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;222;563;225;156;274;274;158;705;289;276;295;301;494;248;147;6;10;71;28;159;72;382;458;89
-26;'096;Brunei Darussalam;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;5;5;0;0
-26;'096;Brunei Darussalam;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;3;3;0;0
-26;'096;Brunei Darussalam;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;97;200;223;1000;543;543;172;121;77;180;405;307;1419;182;1207;497;611;599;211;472;352;271;320;362
-26;'096;Brunei Darussalam;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;128;152;194;636;336;336;306;304;190;295;612;522;1466;480;1626;982;1265;1573;1345;1835;772;980;1295;1334
-26;'096;Brunei Darussalam;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;5;400;400;400;400;400;400;400;400;400;400;400;375;375;375;65;65;0;1;0;1;2
-26;'096;Brunei Darussalam;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;2;39;39;39;39;39;39;39;39;39;39;39;38;38;38;9;9;0;3;0;81;23
-26;'096;Brunei Darussalam;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;75;185;185;185;1;1;1;1;31;45;1;2;1;21;7;6;46;9;18;5;10
-26;'096;Brunei Darussalam;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;91;115;115;115;5;5;5;5;20;38;19;8;19;45;13;24;51;24;40;11;11
-26;'096;Brunei Darussalam;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67
-26;'096;Brunei Darussalam;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41
-26;'096;Brunei Darussalam;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;100;100;150;200;100;100;100;200;200;100;300;200;200;200;200;200;200;100;100;100;100;200;200;200;200;900;900;600;500;500;703;113;438;762;600;700;872;374;503;500;621;806;301;301;120;483;100;101;120;336;156;148;145;4;13;112;22;2;9;82;5;9
-26;'096;Brunei Darussalam;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;13;13;37;73;52;52;52;316;316;130;454;518;518;518;518;518;518;231;231;231;300;394;394;394;394;670;912;848;868;868;1005;90;697;748;820;1200;990;512;648;603;1027;892;287;287;232;731;312;380;383;839;519;312;366;89;64;580;88;24;44;215;37;60
-26;'096;Brunei Darussalam;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;24;53;53;53;53;31;31;31;31;31;31;1;1;1;3;3;3;3;1;1;1;12;12;12;12;12;0;0;0;0;0
-26;'096;Brunei Darussalam;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;26;26;26;26;17;17;17;17;17;17;2;2;2;2;2;2;2;2;2;2;125;125;125;125;125;0;0;0;0;0
-26;'096;Brunei Darussalam;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17180;17750;16400;18647;17109;16965;11337
-26;'096;Brunei Darussalam;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1434;1564;2424;740;1739;1699;759
-26;'096;Brunei Darussalam;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;36;89;117;43;100;12
-26;'096;Brunei Darussalam;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;519;960;630;488;281;257
-26;'096;Brunei Darussalam;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;26;26;26;26;0;0
-26;'096;Brunei Darussalam;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-26;'096;Brunei Darussalam;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;10;63;91;17;100;12
-26;'096;Brunei Darussalam;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;519;960;630;488;281;257
-26;'096;Brunei Darussalam;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;37;247;288;32;31;71
-26;'096;Brunei Darussalam;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;0;1;2;2;1
-26;'096;Brunei Darussalam;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;282;361;404;402;394;417
-26;'096;Brunei Darussalam;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;5;0;2;0;0
-26;'096;Brunei Darussalam;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2289;2460;1716;1652;1636;1033;1344
-26;'096;Brunei Darussalam;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;965;957;1382;73;1202;1396;469
-26;'096;Brunei Darussalam;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-26;'096;Brunei Darussalam;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235
-26;'096;Brunei Darussalam;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13981;14517;13503;15820;14374;14561;9036
-26;'096;Brunei Darussalam;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;69;66;25;42;18;26
-26;'096;Brunei Darussalam;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;62;226;127;79;302;28
-26;'096;Brunei Darussalam;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;2;2
-26;'096;Brunei Darussalam;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;356;258;239;543;544;429
-26;'096;Brunei Darussalam;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;9;9;9;1;0;4
-26;'096;Brunei Darussalam;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20916;19957;21256;27175;25071;23870;21384
-26;'096;Brunei Darussalam;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;629;938;486;683;501;671
-26;'096;Brunei Darussalam;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;15;9;9;2;7
-26;'096;Brunei Darussalam;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-26;'096;Brunei Darussalam;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;659;527;658;418;432;406
-26;'096;Brunei Darussalam;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;1;12;1;2;1
-26;'096;Brunei Darussalam;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6172;6247;7218;11175;9826;7378;6771
-26;'096;Brunei Darussalam;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;46;166;81;19
-26;'096;Brunei Darussalam;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6698;6263;5669;5635;7414;8406;6246
-26;'096;Brunei Darussalam;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;261;740;42;147;76;196
-26;'096;Brunei Darussalam;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7152;6786;7827;9698;7404;7652;7954
-26;'096;Brunei Darussalam;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;363;187;382;365;338;451
-27;'100;Bulgaria;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706115.66;846519;862860;831036;1135246;1411536;1279808
-27;'100;Bulgaria;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;796743.54;862559;844281;844729;1122885;1215847;1016639
-27;'100;Bulgaria;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;15720;16980;15150;15574;18816;21970;28387;45130;49510;55700;56100;55890;72760;120270;112890;124000;110540;128476;112323;140928;140365;142130;158170;162135;165342;172465;179700;144250;139271;97740;84387;33126;35339;43336;31869;79908;77741;83347;109834;126132;133445;154472;155105;251170;294324;325189;466689;521317;354356;366296;427690;434997;451608;470532;420923;430833;422585.74;502196;479381;436844;603045;773548;650145
-27;'100;Bulgaria;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;7092;13508;7128;6706;6805;5647;6084;9937;11390;10095;8590;9710;9450;14965;13962;19023;23168;23805;26939;22484;19409;20570;16804;24535;24520;22554;25954;40729;42099;43983;45569;68716;42510;37325;32652;63652;77780;58955;128057;130459;118945;139294;139867;258615;267982;262838;347420;315045;210988;372743;481866;476866;526843;582115;490543;468462;482036.74;510094;466157;430031;593231;678592;517204
-27;'100;Bulgaria;1861;Roundwood;5516;Production;m3;5071000;5583000;5583000;5733000;5621000;5421000;5421000;5126000;5216000;5050000;4881000;4904000;4615000;4871000;4711000;4415000;4357000;4350000;4265000;4104000;4946000;4844000;4732000;4770000;4795000;4462000;3560000;3438000;4203000;4089000;3650000;3545000;3547000;2685000;2844000;3205000;3041000;3231000;4351667;4783890;3991890;4832890;4832890;5985670;5861670;5992000;5696000;6071000;4599000;5668000;6205000;5972510;5804272;5570040;6372102;6409662;6405268;6529115;6163699;5404161;5528875;5977875;4861185
-27;'100;Bulgaria;1861;Roundwood;5616;Import quantity;m3;64500;87400;48000;38700;82200;163200;341000;425500;357500;435700;428900;376000;394500;379700;394000;369100;407200;404100;219000;321700;330700;319200;381900;374600;279200;405800;336500;223500;134800;;711;129185;210;1900;1900;2500;1000;0;51000;105000;124068;71000;71000;78000;48037;52211;135536;205489;44829;39815;60132;60230;44224;32380;15313;13558;15631;18354;18609;13899;36130;62010;46685
-27;'100;Bulgaria;1861;Roundwood;5622;Import value;1000 USD;1371;1880;1067;859;1820;3360;7387;8330;7130;9010;8800;7790;10510;14170;13840;17470;19400;20640;11700;18400;19650;18900;23000;22700;16286;26600;23800;16500;16421;;47;5197;13;164;164;166;86;166;2172;4274;4067;3088;3100;4111;2931;4075;8817;13679;2932;3351;3699;3522;2944;2739;1087;1183;1603.65;1628;1489;1199;3870;7198;7315
-27;'100;Bulgaria;1861;Roundwood;5916;Export quantity;m3;;23800;36500;15600;9900;19600;63600;54000;50800;45000;14500;16700;9500;37500;37400;20200;27900;46700;43900;26700;21300;20000;4200;7300;29800;35500;34800;125400;135500;160484;64530;123917;201600;50800;92200;243900;256100;256100;227000;360000;308045;224273;224270;460000;556310;516000;892635;413075;278217;679366;919314;1031185;665788;1159870;525358;494462;466840;463883;370675;247209;197279;79757;41652
-27;'100;Bulgaria;1861;Roundwood;5922;Export value;1000 USD;;310;485;311;196;427;1572;1241;1070;1015;320;365;275;1425;1330;848;1283;1763;1759;1199;1049;1020;202;330;2005;2640;3200;10000;10200;7108;4094;6737;14644;3021;2875;6289;5004;2694;10599;9692;8054;5658;5682;19385;23669;28618;37719;26118;18975;40476;56759;65325;47532;79620;33042;34749;33817.29;35273;24209;18408;13944;7517;5677
-27;'100;Bulgaria;1862;Roundwood, coniferous;5516;Production;m3;1384000;1514000;1514000;1644000;1628000;1588000;1588000;1498000;1543000;1490000;1511000;1498000;1116000;1346000;1308000;1232000;1254000;1338000;1223000;1170000;1199000;1172000;1150000;1177000;1132000;936000;1016000;987000;1138000;1101000;970000;798000;885000;875000;996000;1013000;913000;891000;1374500;1607500;1407500;1605500;1605500;2096500;2246500;2125000;2067000;2281000;1300000;1960000;2310000;2134888;2199998;2465520;3031153;3229155;3205365;3474105;3080221;2836149;2836036;2835622;2294540
-27;'100;Bulgaria;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12206;11320;11505;6959;27248;29377;23677
-27;'100;Bulgaria;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178.08;941;765;405;2266;3252;4279
-27;'100;Bulgaria;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343772;350526;240464;166858;134244;54346;27305
-27;'100;Bulgaria;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23924.9;25182;15820;13490;8551;3691;2343
-27;'100;Bulgaria;1863;Roundwood, non-coniferous;5516;Production;m3;3687000;4069000;4069000;4089000;3993000;3833000;3833000;3628000;3673000;3560000;3370000;3406000;3499000;3525000;3403000;3183000;3103000;3012000;3042000;2934000;3747000;3672000;3582000;3593000;3663000;3526000;2544000;2451000;3065000;2988000;2680000;2747000;2662000;1810000;1848000;2192000;2128000;2340000;2977167;3176390;2584390;3227390;3227390;3889170;3615170;3867000;3629000;3790000;3299000;3708000;3895000;3837622;3604274;3104520;3340949;3180507;3199903;3055010;3083478;2568012;2692839;3142253;2566645
-27;'100;Bulgaria;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3425;7034;7104;6940;8882;32633;23008
-27;'100;Bulgaria;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425.56;687;724;794;1604;3946;3036
-27;'100;Bulgaria;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123068;113357;130211;80351;63035;25411;14347
-27;'100;Bulgaria;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9892.39;10091;8389;4918;5393;3826;3334
-27;'100;Bulgaria;1864;Wood fuel;5516;Production;m3;1381000;1381000;1381000;1440000;1278000;1303000;1303000;1196000;1113000;1100000;1117000;1061000;1001000;994000;991000;1054000;995000;903000;853000;824000;1722000;1718000;1715000;1709000;1751000;1731000;886000;795000;1527000;1503000;1450000;1870000;1710000;887000;874000;1185000;1179000;1388333;1101000;2107000;1635000;2187000;2187000;2909000;2678000;2885000;2526000;2692000;2375000;2657000;2841000;2915785;2778358;2533660;2848199;2928212;2989255;2849214;2709256;2332449;2356632;2661594;2165972
-27;'100;Bulgaria;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;37;211;18653;5037;3282;2021;5530;6203;4358;440;2276;3408;1139;751;649;27;366;54;238
-27;'100;Bulgaria;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;3;2;16;637;183;182;330;524;844;777;76;158;268;8.98;35;74;12;35;8;65
-27;'100;Bulgaria;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64209;100300;32800;24600;58900;56000;56000;1000;73000;27045;29273;29270;88000;123000;147000;104215;74375;73136;194396;411528;488146;372746;616560;301271;325661;171893;174540;208118;105615;135816;58069;29498
-27;'100;Bulgaria;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682;3235;2300;414;1342;1250;153;2317;1730;595;644;647;3271;4931;6336;5970;5356;5030;11347;25364;33175;25423;37821;16637;21263;10601.05;10994;11363;7502;7498;3537;2586
-27;'100;Bulgaria;1627;Wood fuel, coniferous;5516;Production;m3;110000;110000;110000;115000;103000;105000;105000;96000;89000;80000;80000;80000;80000;100000;100000;90000;85000;80000;75000;72000;151000;152000;152000;151000;155000;153000;154000;71000;100000;100000;200000;106000;100000;17000;35000;48000;49000;58000;165000;314000;281000;328000;328000;330000;318000;270000;267000;302000;223000;278000;305000;313029;348764;465100;603627;792901;875117;850358;696507;642795;607655;614757;494437
-27;'100;Bulgaria;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1076;15;35;27;298;0;132
-27;'100;Bulgaria;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63;3;32;12;27;0;32
-27;'100;Bulgaria;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85360;96710;117261;49427;93318;44842;21760
-27;'100;Bulgaria;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5758.79;6655;6305;4300;4815;2685;1726
-27;'100;Bulgaria;1628;Wood fuel, non-coniferous;5516;Production;m3;1271000;1271000;1271000;1325000;1175000;1198000;1198000;1100000;1024000;1020000;1037000;981000;921000;894000;891000;964000;910000;823000;778000;752000;1571000;1566000;1563000;1558000;1596000;1578000;732000;724000;1427000;1403000;1250000;1764000;1610000;870000;839000;1137000;1130000;1330333;936000;1793000;1354000;1859000;1859000;2579000;2360000;2615000;2259000;2390000;2152000;2379000;2536000;2602756;2429594;2068560;2244572;2135311;2114138;1998856;2012749;1689654;1748977;2046837;1671535
-27;'100;Bulgaria;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;736;614;0;68;54;106
-27;'100;Bulgaria;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35;32;42;0;8;8;33
-27;'100;Bulgaria;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86533;77830;90857;56188;42498;13227;7738
-27;'100;Bulgaria;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4842.26;4339;5058;3202;2683;852;860
-27;'100;Bulgaria;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;37;211;18653;5037;3282;2021;5530;6203;4358;440;2276;3408;;;;;;;
-27;'100;Bulgaria;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;3;2;16;637;183;182;330;524;844;777;76;158;268;;;;;;;
-27;'100;Bulgaria;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64209;100300;32800;24600;58900;56000;56000;1000;73000;27045;29273;29270;88000;123000;147000;104215;74375;73136;194396;411528;488146;372746;616560;301271;325661;;;;;;;
-27;'100;Bulgaria;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682;3235;2300;414;1342;1250;153;2317;1730;595;644;647;3271;4931;6336;5970;5356;5030;11347;25364;33175;25423;37821;16637;21263;;;;;;;
-27;'100;Bulgaria;1865;Industrial roundwood;5516;Production;m3;3690000;4202000;4202000;4293000;4343000;4118000;4118000;3930000;4103000;3950000;3764000;3843000;3614000;3877000;3720000;3361000;3362000;3447000;3412000;3280000;3224000;3126000;3017000;3061000;3044000;2731000;2674000;2643000;2676000;2586000;2200000;1675000;1837000;1798000;1970000;2020000;1862000;1842667;3250667;2676890;2356890;2645890;2645890;3076670;3183670;3107000;3170000;3379000;2224000;3011000;3364000;3056725;3025914;3036380;3523903;3481450;3416013;3679901;3454443;3071712;3172243;3316281;2695213
-27;'100;Bulgaria;1865;Industrial roundwood;5616;Import quantity;m3;64500;87400;48000;38700;82200;163200;341000;425500;357500;435700;428900;376000;394500;379700;394000;369100;407200;404100;219000;321700;330700;319200;381900;374600;279200;405800;336500;223500;134800;;711;129185;210;1900;1900;2500;1000;0;51000;105000;124068;71000;71000;78000;48000;52000;116883;200452;41547;37794;54602;54027;39866;31940;13037;10150;14492;17603;17960;13872;35764;61956;46447
-27;'100;Bulgaria;1865;Industrial roundwood;5622;Import value;1000 USD;1371;1880;1067;859;1820;3360;7387;8330;7130;9010;8800;7790;10510;14170;13840;17470;19400;20640;11700;18400;19650;18900;23000;22700;16286;26600;23800;16500;16421;;47;5197;13;164;164;166;86;166;2171;4274;4067;3088;3100;4108;2929;4059;8180;13496;2750;3021;3175;2678;2167;2663;929;915;1594.67;1593;1415;1187;3835;7190;7250
-27;'100;Bulgaria;1865;Industrial roundwood;5916;Export quantity;m3;;23800;36500;15600;9900;19600;63600;54000;50800;45000;14500;16700;9500;37500;37400;20200;27900;46700;43900;26700;21300;20000;4200;7300;29800;35500;34800;125400;135500;160484;64530;59708;101300;18000;67600;185000;200100;200100;226000;287000;281000;195000;195000;372000;433310;369000;788420;338700;205081;484970;507786;543039;293042;543310;224087;168801;294947;289343;162557;141594;61463;21688;12154
-27;'100;Bulgaria;1865;Industrial roundwood;5922;Export value;1000 USD;;310;485;311;196;427;1572;1241;1070;1015;320;365;275;1425;1330;848;1283;1763;1759;1199;1049;1020;202;330;2005;2640;3200;10000;10200;7108;4094;5055;11409;721;2461;4947;3754;2541;8282;7962;7459;5014;5035;16114;18738;22282;31749;20762;13945;29129;31395;32150;22109;41799;16405;13486;23216.24;24279;12846;10906;6446;3980;3091
-27;'100;Bulgaria;1866;Industrial roundwood, coniferous;5516;Production;m3;1274000;1404000;1404000;1529000;1525000;1483000;1483000;1402000;1454000;1410000;1431000;1418000;1036000;1246000;1208000;1142000;1169000;1258000;1148000;1098000;1048000;1020000;998000;1026000;977000;783000;862000;916000;1038000;1001000;770000;692000;785000;858000;961000;965000;864000;833000;1209500;1293500;1126500;1277500;1277500;1766500;1928500;1855000;1800000;1979000;1077000;1682000;2005000;1821859;1851234;2000420;2427526;2436254;2330248;2623747;2383714;2193354;2228381;2220865;1800103
-27;'100;Bulgaria;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;118311;210;0;0;0;0;0;1000;15000;74068;15000;15000;39000;24000;3000;42535;55216;11257;3970;7230;9690;9551;8260;4455;3725;11130;11305;11470;6932;26950;29377;23545
-27;'100;Bulgaria;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;3530;13;0;0;0;0;2;73;750;1954;551;553;2054;1465;257;2235;3562;880;589;676;738;534;1724;559;493;1175.46;938;733;393;2239;3252;4247
-27;'100;Bulgaria;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116220;20798;35873;72700;4000;19000;40800;77500;77500;69000;111000;181000;116000;116000;161000;154590;129000;100872;98676;91843;172116;163974;121612;112697;111460;59416;126798;258412;253816;123203;117431;40926;9504;5545
-27;'100;Bulgaria;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4910;1782;3007;5174;343;1483;1305;1556;343;3021;2898;4775;2930;2942;7040;6757;7808;6205;7013;6077;11341;12577;9673;10210;11569;4834;9081;18166.11;18527;9515;9190;3736;1006;617
-27;'100;Bulgaria;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;118311;210;0;0;0;0;0;1000;15000;74068;15000;15000;39000;24000;3000;42535;55216;11257;3970;7230;9690;9551;8260;4455;3725;11130;11305;11470;6932;26950;29377;23545
-27;'100;Bulgaria;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;3530;13;0;0;0;0;2;73;750;1954;551;553;2054;1465;257;2235;3562;880;589;676;738;534;1724;559;493;1175.46;938;733;393;2239;3252;4247
-27;'100;Bulgaria;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116220;20798;35873;72700;4000;19000;40800;77500;77500;69000;111000;181000;116000;116000;161000;154590;129000;100872;98676;91843;172116;163974;121612;112697;111460;59416;126798;258412;253816;123203;117431;40926;9504;5545
-27;'100;Bulgaria;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4910;1782;3007;5174;343;1483;1305;1556;343;3021;2898;4775;2930;2942;7040;6757;7808;6205;7013;6077;11341;12577;9673;10210;11569;4834;9081;18166.11;18527;9515;9190;3736;1006;617
-27;'100;Bulgaria;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2416000;2798000;2798000;2764000;2818000;2635000;2635000;2528000;2649000;2540000;2333000;2425000;2578000;2631000;2512000;2219000;2193000;2189000;2264000;2182000;2176000;2106000;2019000;2035000;2067000;1948000;1812000;1727000;1638000;1585000;1430000;983000;1052000;940000;1009000;1055000;998000;1009667;2041167;1383390;1230390;1368390;1368390;1310170;1255170;1252000;1370000;1400000;1147000;1329000;1359000;1234866;1174680;1035960;1096377;1045196;1085765;1056154;1070729;878358;943862;1095416;895110
-27;'100;Bulgaria;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;10874;0;1900;1900;2500;1000;0;50000;90000;50000;56000;56000;39000;24000;49000;74348;145236;30290;33824;47372;44337;30315;23680;8582;6425;3362;6298;6490;6940;8814;32579;22902
-27;'100;Bulgaria;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1667;0;164;164;166;86;164;2098;3524;2113;2537;2547;2054;1464;3802;5945;9934;1870;2432;2499;1940;1633;939;370;422;419.21;655;682;794;1596;3938;3003
-27;'100;Bulgaria;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44264;43732;23835;28600;14000;48600;144200;122600;122600;157000;176000;100000;79000;79000;211000;278720;240000;687548;240024;113238;312854;343812;421427;180345;431850;164671;42003;36535;35527;39354;24163;20537;12184;6609
-27;'100;Bulgaria;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198;2312;2048;6235;378;978;3642;2198;2198;5261;5064;2684;2084;2093;9074;11981;14474;25544;13749;7868;17788;18818;22477;11899;30230;11571;4405;5050.12;5752;3331;1716;2710;2974;2474
-27;'100;Bulgaria;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;49000;89000;0;0;750;1000;2000;1000;314;181;155;1080;500;515;127;10;504;4;0;21;86;1;0;52;0
-27;'100;Bulgaria;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1987;3344;8;60;60;80;108;108;120;112;56;468;234;75;21;10;65;5;0;33;44;1;0;47;0
-27;'100;Bulgaria;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;26000;7000;6000;6000;2900;5160;0;15;0;43;43;43;43;0;14;13;0;0;0;0;0;0;0;343
-27;'100;Bulgaria;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1109;1055;283;213;214;1184;2101;0;73;0;6;6;6;6;0;2;2;0;0;0;0;0;0;0;2
-27;'100;Bulgaria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;10874;0;1900;1900;2500;1000;0;1000;1000;50000;56000;55250;38000;22000;48000;74034;145055;30135;32744;46872;43822;30188;23670;8078;6421;3362;6277;6404;6939;8814;32527;22902
-27;'100;Bulgaria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1667;0;164;164;166;86;164;111;180;2105;2477;2487;1974;1356;3694;5825;9822;1814;1964;2265;1865;1612;929;305;417;419.21;622;638;793;1596;3891;3003
-27;'100;Bulgaria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44264;43732;23835;28600;14000;48600;144200;122600;122600;130000;150000;93000;73000;73000;208100;273560;240000;687533;240024;113195;312811;343769;421384;180345;431836;164658;42003;36535;35527;39354;24163;20537;12184;6266
-27;'100;Bulgaria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198;2312;2048;6235;378;978;3642;2198;2198;4152;4009;2401;1871;1879;7890;9880;14474;25471;13749;7862;17782;18812;22471;11899;30228;11569;4405;5050.12;5752;3331;1716;2710;2974;2472
-27;'100;Bulgaria;1868;Sawlogs and veneer logs;5516;Production;m3;2111000;2383000;2383000;2467000;2495000;2389000;2389000;2172000;2303000;2195000;1929000;1900000;1569000;1730000;1684000;1455000;1474000;1517000;1477000;1538000;1418000;1316000;1262000;1287000;1219000;1070000;1040000;1088000;1033000;1041000;950000;778000;802000;870000;877000;869000;810000;785000;2218000;1626000;1292000;1581000;1581000;1334000;1367000;1300000;1495000;1579000;952000;1320000;1520000;1381160;1382850;1432160;1648039;1502119;1409120;1613447;1559964;1417255;1524052;1560421;1289589
-27;'100;Bulgaria;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;21000;64500;142200;315400;404900;327300;398200;388300;336000;354400;344300;352800;328900;366400;365900;180000;281900;298600;279000;341700;335300;248900;374600;305300;203500;115600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;415;1376;3110;7080;8100;6800;8600;8300;7300;9900;13500;13100;16700;18500;19800;10800;17300;18550;17500;21600;21300;15126;25300;22500;15500;15421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;4600;18600;63200;45900;34100;39800;10600;10800;4700;32000;35400;17600;21400;18500;18500;18500;18500;17300;1900;3100;18300;26500;19800;43300;13300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;104;410;1565;1101;790;925;250;255;140;1240;1270;788;1088;953;953;953;953;928;128;180;1430;2140;2200;4000;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;863000;941000;941000;1010000;1026000;991000;991000;904000;967000;963000;965000;935000;589000;765000;698000;677000;682000;749000;703000;674000;579000;556000;516000;556000;504000;416000;409000;455000;466000;479000;450000;355000;403000;459000;449000;449000;403000;387667;784000;868000;701000;852000;852000;854000;920000;858000;1019000;1103000;622000;923000;1101000;1000432;1013904;1074920;1266364;1153107;1047016;1239131;1185315;1114081;1178001;1177116;965072
-27;'100;Bulgaria;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;21000;57700;124100;243600;359100;299000;370100;374300;327200;341100;328300;334800;307800;346900;340900;159000;255500;268600;251000;316000;306800;230900;350000;280300;180200;89200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;415;1157;2530;4780;7200;5950;7800;7900;6800;8900;12300;11700;15000;16900;17700;9000;15000;15850;15000;19300;18700;13506;23000;20000;13000;6500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;4600;18600;5000;17100;21300;24100;5700;5900;2100;4400;12400;15200;19000;17000;17000;17000;17000;17000;1500;3000;6800;17700;6200;28800;9700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;104;410;110;376;470;530;130;135;60;140;370;700;1000;900;900;900;900;900;90;170;330;1000;400;2000;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1248000;1442000;1442000;1457000;1469000;1398000;1398000;1268000;1336000;1232000;964000;965000;980000;965000;986000;778000;792000;768000;774000;864000;839000;760000;746000;731000;715000;654000;631000;633000;567000;562000;500000;423000;399000;411000;428000;420000;407000;397333;1434000;758000;591000;729000;729000;480000;447000;442000;476000;476000;330000;397000;419000;380728;368946;357240;381675;349012;362104;374316;374649;303174;346051;383305;324517
-27;'100;Bulgaria;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;6800;18100;71800;45800;28300;28100;14000;8800;13300;16000;18000;21100;19500;25000;21000;26400;30000;28000;25700;28500;18000;24600;25000;23300;26400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;219;580;2300;900;850;800;400;500;1000;1200;1400;1700;1600;2100;1800;2300;2700;2500;2300;2600;1620;2300;2500;2500;8921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;58200;28800;12800;15700;4900;4900;2600;27600;23000;2400;2400;1500;1500;1500;1500;300;400;100;11500;8800;13600;14500;3600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;1455;725;320;395;120;120;80;1100;900;88;88;53;53;53;53;28;38;10;1100;1140;1800;2000;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947000;939000;957223;971223;971223;971220;1649000;1723000;1717000;1595000;1706000;1225000;1613000;1754000;1593786;1573364;1544340;1816879;1918689;1952049;2007362;1841907;1612422;1605806;1714939;1370505
-27;'100;Bulgaria;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369333;360000;360000;360000;360000;360000;847000;943000;927000;721000;803000;425000;701000;834000;757821;783429;876180;1114075;1235289;1241384;1337428;1159281;1047465;1019014;1016147;810271
-27;'100;Bulgaria;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577667;579000;597223;611223;611223;611220;802000;780000;790000;874000;903000;800000;912000;920000;835965;789935;668160;702804;683400;710665;669934;682626;564957;586792;698792;560234
-27;'100;Bulgaria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;17000;13700;7200;2200;2200;2200;2200;11500;9000;15000;82100;122200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;450;400;210;70;70;70;70;575;500;1000;6000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1870;Pulpwood and particles (1961-1997);5516;Production;m3;82000;168000;159000;227000;262000;210000;210000;225000;252000;274000;562000;648000;822000;991000;993000;944000;956000;1085000;1095000;1067000;1145000;1150000;1118000;653000;572000;553000;575000;629000;666000;623000;450000;618000;679000;798000;934000;1001000;927000;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;17000;13700;7200;2200;2200;2200;2200;11500;9000;15000;82100;122200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;450;400;210;70;70;70;70;575;500;1000;6000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;82000;161000;148000;217000;253000;157000;157000;158000;148000;164000;195000;234000;257000;303000;351000;311000;323000;364000;300000;292000;337000;296000;324000;316000;314000;199000;286000;311000;403000;359000;220000;227000;217000;319000;406000;416000;376000;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;7000;11000;10000;9000;53000;53000;67000;104000;110000;367000;414000;565000;688000;642000;633000;633000;721000;795000;775000;808000;854000;794000;337000;258000;354000;289000;318000;263000;264000;230000;391000;462000;479000;528000;585000;551000;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1871;Other industrial roundwood;5516;Production;m3;1497000;1651000;1660000;1599000;1586000;1519000;1519000;1533000;1548000;1481000;1273000;1295000;1223000;1156000;1043000;962000;932000;845000;840000;675000;661000;660000;637000;1121000;1253000;1108000;1059000;926000;977000;922000;800000;279000;356000;130000;159000;150000;125000;110667;93667;93667;93667;93667;93670;93670;93670;90000;80000;94000;47000;78000;90000;81779;69700;59880;58985;60642;54844;59092;52572;42035;42385;40921;35119
-27;'100;Bulgaria;1871;Other industrial roundwood;5616;Import quantity;m3;64500;87400;48000;17700;17700;21000;25600;20600;30200;37500;40600;40000;40100;35400;41200;40200;40800;38200;39000;39800;32100;40200;40200;39300;30300;31200;31200;20000;19200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1871;Other industrial roundwood;5622;Import value;1000 USD;1371;1880;1067;444;444;250;307;230;330;410;500;490;610;670;740;770;900;840;900;1100;1100;1400;1400;1400;1160;1300;1300;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1871;Other industrial roundwood;5916;Export quantity;m3;;23800;36500;15600;5300;1000;400;8100;16700;5200;3900;5900;4800;5500;2000;2600;6500;11200;11700;1000;600;500;100;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1871;Other industrial roundwood;5922;Export value;1000 USD;;310;485;311;92;17;7;140;280;90;70;110;135;185;60;60;195;360;406;36;26;22;4;80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;329000;302000;315000;302000;246000;335000;335000;340000;339000;283000;271000;249000;190000;178000;159000;154000;164000;145000;145000;132000;132000;168000;158000;154000;159000;168000;167000;150000;169000;163000;100000;110000;165000;80000;106000;100000;85000;76000;65500;65500;65500;65500;65500;65500;65500;70000;60000;73000;30000;58000;70000;63606;53901;49320;47087;47858;41848;47188;39118;31808;31366;27602;24760
-27;'100;Bulgaria;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1168000;1349000;1345000;1297000;1340000;1184000;1184000;1193000;1209000;1198000;1002000;1046000;1033000;978000;884000;808000;768000;700000;695000;543000;529000;492000;479000;967000;1094000;940000;892000;776000;808000;759000;700000;169000;191000;50000;53000;50000;40000;34667;28167;28167;28167;28167;28170;28170;28170;20000;20000;21000;17000;20000;20000;18173;15799;10560;11898;12784;12996;11904;13454;10227;11019;13319;10359
-27;'100;Bulgaria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;64500;87400;48000;17700;17700;21000;25600;20600;30200;37500;40600;40000;40100;35400;41200;40200;40800;38200;39000;39800;32100;40200;40200;39300;30300;31200;31200;20000;19200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;1371;1880;1067;444;444;250;307;230;330;410;500;490;610;670;740;770;900;840;900;1100;1100;1400;1400;1400;1160;1300;1300;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;23800;36500;15600;5300;1000;400;8100;16700;5200;3900;5900;4800;5500;2000;2600;6500;11200;11700;1000;600;500;100;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;310;485;311;92;17;7;140;280;90;70;110;135;185;60;60;195;360;406;36;26;22;4;80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1630;Wood charcoal;5510;Production;t;24085;23997;23910;23824;23538;23452;23066;23481;23397;23312;22926;22286;22521;21982;21360;21336;21409;20821;20973;20487;20031;19751;19587;19784;19683;19575;19036;18447;18634;20010;20878;22851;22633;20584;19911;20654;21118;3000;3000;8000;21000;25000;25000;24000;24000;43000;25000;18000;17200;17171;15242;3877;4861;5743;4626;3772;2441;2040;3295;2298;2899;2899;2899
-27;'100;Bulgaria;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;160;100;64;19;144;110;216;402;1515;1197;1130;1667;3484;4651;5605;6470;5184;5425;5597;6511
-27;'100;Bulgaria;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;4;28;28;28;55;35;8;18;80;56;91;223;764;485;478;622;1190;1464.58;2177;2392;2148;2322;2972;3424
-27;'100;Bulgaria;1630;Wood charcoal;5910;Export quantity;t;3000;3000;3000;3000;2800;2800;2500;3000;3000;3000;2600;2000;2300;1800;1300;1400;1600;1100;1400;1000;600;200;200;400;400;500;400;500;600;1400;1400;3600;2500;500;0;0;0;0;10000;13000;21000;25000;25000;37000;41000;43000;25383;10227;10574;14477;14395;2429;1981;1910;2711;1746;1827;1760;2104;2154;1930;1270;134
-27;'100;Bulgaria;1630;Wood charcoal;5922;Export value;1000 USD;187;188;188;147;115;115;102;156;120;120;120;95;100;100;72;75;85;58;80;65;40;15;16;35;35;40;40;55;65;155;155;857;487;134;0;0;0;0;1968;2379;3737;4479;4497;8898;10189;10342;6849;3876;3944;4453;4888;1577;947;1050;1139;748;668.18;989;1188;1469;1345;914;139
-27;'100;Bulgaria;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1800;5600;5600;5600;21000;21000;38000;73000;78500;99464;112323;117509;117509;278880;228880;678880;438880;388610;213000;145224;93369;62108;62108;62108
-27;'100;Bulgaria;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;12449;5000;5833;6333;6330;3610;6000;2564;2703;6123;2890;3238;11763;14041;8383;5800;1837;1026;5857;5280;3877;3782;6232;984;1238
-27;'100;Bulgaria;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;532;259;203;215;216;241;384;402;482;832;608;609;738;836;1283;402;450;412;318.7;293;242;209;890;350;480
-27;'100;Bulgaria;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;4000;0;13009;21583;21580;24330;23000;29000;75315;84586;73675;115245;63787;132323;214868;153590;570089;322226;361700;214339;86267;50049;23432;15016;21679
-27;'100;Bulgaria;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;162;146;308;511;513;1372;1323;1983;4559;9467;5777;8527;5000;7862;9713;8047;23754;12277;18617.28;8392;3526;3224;1992;1563;2066
-27;'100;Bulgaria;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;500;500;500;3000;3000;9000;32000;25500;46464;57280;38628;38628;200000;150000;600000;360000;388610;213000;145224;93369;62108;62108;62108
-27;'100;Bulgaria;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;700;700;700;300;1800;1800;0;0;0;0;0;1000;2000;1564;917;4518;1062;1096;11152;13949;8290;5720;926;847;5157;5114;3656;3770;6160;939;1150
-27;'100;Bulgaria;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;38;38;20;85;38;44;63;63;63;63;136;223;184;186;614;379;259;594;699;1144;303;191;212;287.85;276;198;204;876;251;330
-27;'100;Bulgaria;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;2600;100;100;7500;2700;2700;4000;0;1238;2333;2330;2330;7000;4000;32583;29540;47526;58060;49304;96323;179231;137610;559989;321114;361000;214004;86198;49990;23325;14975;21383
-27;'100;Bulgaria;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;108;4;4;215;91;91;91;43;26;49;49;49;135;123;1141;1289;2110;2286;2614;5219;7118;6600;22908;11789;18600.85;8338;3500;3193;1953;1521;2040
-27;'100;Bulgaria;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1300;5100;5100;5100;18000;18000;29000;41000;53000;53000;55043;78881;78881;78880;78880;78880;78880;0;0;0;0;0;0;0
-27;'100;Bulgaria;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1695;300;100;100;100;0;0;12449;5000;5833;6333;6330;2610;4000;1000;1786;1605;1828;2142;611;92;93;80;911;179;700;166;221;12;72;45;88
-27;'100;Bulgaria;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;13;4;4;4;0;4;488;196;140;152;153;105;161;218;296;218;229;350;144;137;139;99;259;200;30.85;17;44;5;14;99;150
-27;'100;Bulgaria;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;500;700;700;8900;4700;1000;0;0;11771;19250;19250;22000;16000;25000;42732;55046;26149;57185;14483;36000;35637;15980;10100;1112;700;335;69;59;107;41;296
-27;'100;Bulgaria;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;19;29;29;212;168;29;71;103;282;462;464;1323;1188;1860;3418;8178;3667;6241;2386;2643;2595;1447;846;488;16.43;54;26;31;39;42;26
-27;'100;Bulgaria;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;37
-27;'100;Bulgaria;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;24
-27;'100;Bulgaria;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2
-27;'100;Bulgaria;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;4
-27;'100;Bulgaria;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-27;'100;Bulgaria;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1284;29;28;24;42
-27;'100;Bulgaria;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;88;104;87;126
-27;'100;Bulgaria;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;150;112;13;243
-27;'100;Bulgaria;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;17;41;27;22
-27;'100;Bulgaria;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122000;122000;142000;114000;149334;224239;269543;259507;228950;227413;227413;227413
-27;'100;Bulgaria;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22415;8261;20410;47700;61089;35985;54923;91556;105305;133828;170116;84271
-27;'100;Bulgaria;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3997;1890;4380;7689;8566;6536.97;9984;15541;17345;25113;48124;23297
-27;'100;Bulgaria;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38766;71389;156160;158313;130896;158424;170269;200070;190455;162477;153567;112983
-27;'100;Bulgaria;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8448;15753;34721;28815;23756;28848.08;35612;39228;35757;34094;56522;33391
-27;'100;Bulgaria;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;120000;140000;112000;149334;224239;269543;249507;218950;207413;207413;207413
-27;'100;Bulgaria;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22255;8096;20240;47257;59285;34524;49323;84925;98385;132314;168159;83366
-27;'100;Bulgaria;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3959;1851;4347;7631;8137;5735.41;9235;14648;16413;24189;47400;22904
-27;'100;Bulgaria;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37766;70372;154900;156565;127686;153706;161393;185318;175157;145577;141046;94846
-27;'100;Bulgaria;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8288;15597;34547;28601;22821;27783.08;33701;37181;33492;31717;53705;30113
-27;'100;Bulgaria;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;0;0;0;10000;10000;20000;20000;20000
-27;'100;Bulgaria;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;165;170;443;1804;1461;5600;6631;6920;1514;1957;905
-27;'100;Bulgaria;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;39;33;58;429;801.55;749;893;932;924;724;393
-27;'100;Bulgaria;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1017;1260;1748;3210;4718;8876;14752;15298;16900;12521;18137
-27;'100;Bulgaria;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;156;174;214;935;1065;1911;2047;2265;2377;2817;3278
-27;'100;Bulgaria;1872;Sawnwood;5516;Production;m3;1660000;1672000;1577000;1663000;1715000;1699000;1638000;1643000;1639000;1675000;1709000;1737000;1819000;1764000;1778000;1711000;1484000;1537000;1715000;1433000;1473000;1511000;1504000;1483000;1515000;1338000;1490000;1459000;1402000;1108000;1114000;324000;253000;253000;253000;253000;253000;253000;325000;312000;332000;332000;332000;569000;569000;683000;731000;643000;450200;554215;728272;697982;800935;830570;938301;826915;783059;761335;715545;680831;694603;694603;694603
-27;'100;Bulgaria;1872;Sawnwood;5616;Import quantity;m3;130500;117200;79500;83700;105500;96900;113700;166000;175200;189700;200800;188500;178200;231300;210600;193700;172000;181300;152000;169000;184000;149000;170000;170000;260000;260000;170000;130000;110000;85000;72000;31129;22000;600;5700;26700;17900;2500;8000;18000;11000;7000;7000;20000;75840;28000;39559;60579;23986;14145;15941;30202;21333;19960;23963;29615;31412;56036;58958;50198;46519;93178;105864
-27;'100;Bulgaria;1872;Sawnwood;5622;Import value;1000 USD;5681;5200;3487;3675;4597;4170;4800;7100;7500;8100;8500;8000;9000;22000;19000;18000;17000;19900;17500;19800;21500;17600;20500;21000;32000;32500;22000;17000;14400;11000;9500;2870;2172;300;661;3046;2028;300;1015;1991;1603;1877;1885;6497;8935;9741;14384;16863;6917;6472;6803;9861;8700;8409;9127;10337;10814.56;14538;19056;17454;22897;32073;32242
-27;'100;Bulgaria;1872;Sawnwood;5916;Export quantity;m3;81700;220600;119900;90500;81700;65600;49800;85600;88000;39800;48700;38200;24100;33800;60000;38800;44100;61800;54600;55100;54200;18700;20100;17400;20700;26400;21000;25700;20900;37200;37000;114899;24700;35500;56800;159900;247000;196500;275000;265000;264000;273000;273000;253000;524000;234000;321826;161747;194884;238339;380556;321275;377530;403740;376044;290528;275065;211054;159097;157830;164735;84611;128912
-27;'100;Bulgaria;1872;Sawnwood;5922;Export value;1000 USD;4922;11140;4839;3937;3981;3115;2350;3800;3950;1830;2100;1630;1225;2140;3660;3400;3850;5336;4800;4870;4770;1685;2013;1748;2140;2700;2140;2800;2130;4100;4000;20435;8735;10615;14750;20333;29796;19546;35894;31726;29556;32192;32324;39862;36043;36756;34752;27273;24691;36404;61662;53398;68167;73143;62935;50119;52086.52;43822;32386;32876;40967;30286;25364
-27;'100;Bulgaria;1632;Sawnwood, coniferous;5516;Production;m3;676500;755500;725500;758000;827000;862000;884500;922500;946500;962500;1084000;1135000;1177000;1145000;1189500;1216000;1043000;1110000;1216000;1018000;999000;1074000;1059000;1064000;1092000;985500;1107500;1079000;1069000;860000;930000;214000;186000;186000;186000;186000;186000;186000;290000;258000;253000;253000;253000;431000;431000;498000;526000;465000;338400;436650;570293;566898;663773;699832;775142;712324;660476;637896;606247;602183;619007;619007;619007
-27;'100;Bulgaria;1632;Sawnwood, coniferous;5616;Import quantity;m3;130500;117200;79500;83700;105500;96900;113700;166000;175200;189700;200800;188500;178200;231300;210600;193700;172000;181300;152000;169000;184000;149000;170000;170000;260000;260000;170000;130000;110000;85000;72000;30570;21500;500;5400;25100;16400;1000;5000;11000;7000;2000;2000;6000;7840;5000;6399;31951;11052;6145;7941;16202;9333;6960;8963;11096;12527;16030;16298;23017;24835;65136;76110
-27;'100;Bulgaria;1632;Sawnwood, coniferous;5622;Import value;1000 USD;5681;5200;3487;3675;4597;4170;4800;7100;7500;8100;8500;8000;9000;22000;19000;18000;17000;19900;17500;19800;21500;17600;20500;21000;32000;32500;22000;17000;14400;11000;9500;2744;1901;218;505;2624;1645;218;516;1121;632;233;234;1104;1442;1716;2375;5332;1955;1465;1998;3616;3291;2232;2872;2603;2940.3;4153;4136;5548;9128;13512;20232
-27;'100;Bulgaria;1632;Sawnwood, coniferous;5916;Export quantity;m3;800;120200;70300;43700;35800;33300;24600;61200;60900;22200;38300;33500;20100;31700;52900;34300;41500;59600;52800;52800;52800;18000;20000;17100;18300;23400;20000;20000;20000;29000;30000;69565;9700;10600;6600;82800;127000;171500;167000;162000;170000;194000;194000;157000;295000;114000;182003;61901;82397;159824;301669;262016;323813;343130;319987;242568;221388;159577;126562;122075;135025;70140;109502
-27;'100;Bulgaria;1632;Sawnwood, coniferous;5922;Export value;1000 USD;34;5110;2543;1716;1637;1500;1100;2600;2600;930;1600;1400;1000;2000;3200;3000;3600;5125;4600;4600;4600;1600;2000;1710;1830;2300;2000;2000;2000;2900;3000;10410;2601;1430;922;8800;11400;15400;17980;15858;16492;18702;18779;20045;15215;15915;14664;11879;14224;24780;48951;42369;55607;58955;50577;38413;38080.95;29304;23415;22691;29392;22157;18744
-27;'100;Bulgaria;1633;Sawnwood, non-coniferous;5516;Production;m3;983500;916500;851500;905000;888000;837000;753500;720500;692500;712500;625000;602000;642000;619000;588500;495000;441000;427000;499000;415000;474000;437000;445000;419000;423000;352500;382500;380000;333000;248000;184000;110000;67000;67000;67000;67000;67000;67000;35000;54000;79000;79000;79000;138000;138000;185000;205000;178000;111800;117565;157979;131084;137162;130738;163159;114591;122583;123439;109298;78648;75596;75596;75596
-27;'100;Bulgaria;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;500;100;300;1600;1500;1500;3000;7000;4000;5000;5000;14000;68000;23000;33160;28628;12934;8000;8000;14000;12000;13000;15000;18519;18885;40006;42660;27181;21684;28042;29754
-27;'100;Bulgaria;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;271;82;156;422;383;82;499;870;971;1644;1651;5393;7493;8025;12009;11531;4962;5007;4805;6245;5409;6177;6255;7734;7874.26;10385;14920;11906;13769;18561;12010
-27;'100;Bulgaria;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;80900;100400;49600;46800;45900;32300;25200;24400;27100;17600;10400;4700;4000;2100;7100;4500;2600;2200;1800;2300;1400;700;100;300;2400;3000;1000;5700;900;8200;7000;45334;15000;24900;50200;77100;120000;25000;108000;103000;94000;79000;79000;96000;229000;120000;139823;99846;112487;78515;78887;59259;53717;60610;56057;47960;53677;51477;32535;35755;29710;14471;19410
-27;'100;Bulgaria;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;4888;6030;2296;2221;2344;1615;1250;1200;1350;900;500;230;225;140;460;400;250;211;200;270;170;85;13;38;310;400;140;800;130;1200;1000;10025;6134;9185;13828;11533;18396;4146;17914;15868;13064;13490;13545;19817;20828;20841;20088;15394;10467;11624;12711;11029;12560;14188;12358;11706;14005.57;14518;8971;10185;11575;8129;6620
-27;'100;Bulgaria;1634;Veneer sheets;5516;Production;m3;;19600;19600;19500;22500;25700;31100;31100;33500;35300;36200;39600;47700;48200;51700;50000;52000;48000;48000;53000;55000;55000;51000;49000;46000;47000;47000;43000;41000;30000;30000;30000;20000;20000;20000;20000;20000;20000;1883;3264;7000;7000;7000;19000;19000;18000;18000;17000;14500;22100;23180;23180;22000;21425;19000;19265;20682;18810;19584;17642;17317;17317;17317
-27;'100;Bulgaria;1634;Veneer sheets;5616;Import quantity;m3;1300;200;200;100;300;700;2100;2800;3900;3100;3800;5000;5200;6000;4800;7000;6600;6700;8000;6100;6800;5000;4200;6000;5000;5000;4500;5000;3400;2800;1800;785;400;4700;2500;1400;1500;5000;1000;1804;2000;2337;2340;21330;142460;15706;37600;60622;47413;19048;29390;30866;34971;34170;39424;41908;38393;35275;34991;18714;23800;27168;45255
-27;'100;Bulgaria;1634;Veneer sheets;5622;Import value;1000 USD;314;50;66;44;109;200;600;800;1000;800;900;1200;1400;2400;1900;3500;3500;3551;4600;3700;4100;3500;3000;4300;3500;3550;3600;4000;2700;2500;1600;1128;1243;2162;1190;1520;1151;2160;625;829;1053;1120;1125;4082;7003;8401;14963;16357;7997;6937;10426;10336;11240;11914;11324;12701;14867.66;14973;15270;11754;15067;20070;18701
-27;'100;Bulgaria;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;904;1200;3400;200;1200;3200;3200;8000;8000;7000;10000;10000;13000;79000;14000;17567;9092;10552;11429;11892;10111;14875;13670;10859;10827;8424;9997;11582;10297;10379;7162;21306
-27;'100;Bulgaria;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;520;1438;88;737;1613;1440;3111;2408;2044;2994;3006;4946;5553;5732;4775;4771;4076;5344;5187;4550;4683;4341;4003;5685;6378.09;9661;14067;13967;12355;12917;8558
-27;'100;Bulgaria;1873;Wood-based panels;5516;Production;m3;143000;170000;188700;191700;206400;208000;217000;272000;305000;348000;334000;364000;399000;443000;416000;429000;471000;479000;508000;524000;503000;583000;546000;544000;556000;544000;496000;492000;459000;385000;317000;202000;213000;213000;213000;213000;213000;213000;214000;466979;525970;525970;512070;398020;328000;481000;906000;828000;748655;853630;929910;961152;917745;925243;974355;969092;1007745;1099421;1028796;1137604;1453432;1453432;1453432
-27;'100;Bulgaria;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;120;140;70;60;100;400;100;100;100;100;100;100;100;100;100;100;7943;1064;3676;3800;6500;18700;14379;24000;40070;65413;134584;134580;127200;165730;225000;699770;746126;455306;293126;233258;222061;213069;230380;243925;252629;279834;340891;359250;291870;308130;431431;380116
-27;'100;Bulgaria;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;30;40;20;23;28;115;30;30;35;40;45;50;50;50;50;50;1301;283;607;586;1458;4800;926;7829;10471;13368;18307;18382;49643;68304;93312;144489;161867;84789;87024;91969;97222;99513;108932;95494;96062;103705.01;136588;129625;107018;150316;193572;151840
-27;'100;Bulgaria;1873;Wood-based panels;5916;Export quantity;m3;31400;19700;19200;29100;28400;21600;21500;31169;51402;70529;57877;65266;52329;66897;67096;65600;68700;59300;92900;86300;69800;74300;58000;55900;67600;69500;57800;41000;34600;48700;41100;43090;23065;14875;6100;46000;35000;30700;161000;173912;150477;269602;269600;409810;450363;490187;807045;421958;692601;501772;586776;566293;527809;505960;537813;491522;507213;449241;501529;559844;617597;587285;584342
-27;'100;Bulgaria;1873;Wood-based panels;5922;Export value;1000 USD;1983;1870;1616;2311;2493;1870;1940;2600;3300;4050;3550;3820;3500;4500;4400;7800;8750;7288;10800;10700;8850;9700;7573;7722;8922;9940;8040;6540;5470;9540;9540;11223;6863;4838;2362;11904;15288;8645;32849;32448;30054;42784;42959;84791;88243;92219;136715;96426;103419;128070;151533;150757;145811;139778;123272;115022;119045.05;130045;127953;128339;198371;228351;197642
-27;'100;Bulgaria;1640;Plywood and LVL;5516;Production;m3;66000;74000;74700;77700;81400;81000;82000;81000;74000;71000;67000;70000;70000;71000;65000;63000;64000;62000;58000;56000;53000;57000;55000;53000;51000;48000;45000;46000;51000;49000;25000;22000;23000;23000;23000;23000;23000;23000;44000;53000;51000;51000;37100;58000;58000;43000;54000;48000;26700;29190;35427;35427;35420;55694;67026;71068;70379;54761;46000;37234;38668;38668;38668
-27;'100;Bulgaria;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;0;100;100;200;8200;8200;0;2000;3000;9000;9000;10200;21840;49000;141263;151516;69348;30274;37444;38226;40469;49510;52517;56397;53625;78239;76800;60833;63940;72427;63441
-27;'100;Bulgaria;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;0;64;64;69;2761;64;214;431;1011;1183;1188;6149;13933;20016;30936;37074;10073;11426;15764;18335;18458;21207;18314;20173;17593.15;32575;30678;17772;33920;44510;32520
-27;'100;Bulgaria;1640;Plywood and LVL;5916;Export quantity;m3;21400;13700;10500;16100;16600;12200;12900;15100;12400;13000;9700;12600;10800;6300;8900;10300;8000;5600;4300;2200;1400;900;700;2800;1200;3600;1200;3500;2700;10700;10700;14000;9800;9100;4600;9800;18300;9000;21000;43000;37000;33000;33000;33000;33000;27000;80150;74026;23534;30672;38446;47591;44289;49660;58766;57400;54882;54076;43315;31551;44226;39464;33725
-27;'100;Bulgaria;1640;Plywood and LVL;5922;Export value;1000 USD;1533;1450;1226;1721;1963;1440;1500;1700;1400;1450;1100;1500;1400;1050;1450;2500;2300;1607;1300;700;450;300;233;930;396;1200;400;1200;930;3700;3700;5782;3916;3318;1984;4700;9751;3320;11739;12500;10313;9331;9369;9364;9339;9731;16801;16655;8331;15463;22136;27666;26353;28626;27391;27319;24226.03;28756;25541;14598;29265;34700;25920
-27;'100;Bulgaria;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;168
-27;'100;Bulgaria;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;149
-27;'100;Bulgaria;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;21
-27;'100;Bulgaria;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;50
-27;'100;Bulgaria;1646;Particle board and OSB (1961-1994);5516;Production;m3;77000;96000;114000;114000;125000;127000;135000;165000;171000;200000;199000;210000;251000;274000;249000;265000;280000;291000;313000;327000;324000;383000;376000;377000;389000;379000;361000;330000;300000;231000;205000;128000;124000;124000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5966;1000;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;256;313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;10000;6000;8700;13000;11800;9400;8600;13900;13400;15800;15100;13000;10200;13900;10300;8200;3600;2900;21000;21000;21100;37200;38300;32100;40800;33000;28700;9000;9100;500;400;5284;1400;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;450;420;390;590;530;430;440;720;700;800;750;650;600;1100;800;800;350;281;2000;2500;2550;4600;4700;3852;4896;4000;3500;1100;1200;100;100;685;368;16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124000;124000;124000;124000;104000;180000;193000;103000;93000;93000;0;189000;516483;482010;451000;378732;520042;551284;628325;612549;634867;629037;666003;752166;707100;773098;997531;997531;997531
-27;'100;Bulgaria;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;5900;7900;3000;12000;21000;39000;95000;95000;63000;74890;86000;403830;416054;245555;89604;70888;93130;89897;97680;92291;97767;113053;135636;149976;111178;117713;187988;117496
-27;'100;Bulgaria;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;1330;1720;313;2902;3344;5590;8890;8926;19187;22211;28400;43039;48815;27120;26382;25673;29246;32282;37643;29116;30616;34096.41;41078;39672;34492;42979;64606;48078
-27;'100;Bulgaria;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4900;8000;8000;81000;75000;89000;107000;107000;153430;173810;186000;370074;140184;444217;258341;290464;327627;295684;269630;263352;238963;261846;227896;287454;330509;403480;348956;328554
-27;'100;Bulgaria;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;935;1688;16;9490;9821;9402;11621;11669;48512;53186;35147;55584;23178;39217;45507;57617;65562;58191;54815;45160;41984;46205.52;48811;56560;64087;101288;107211;96199
-27;'100;Bulgaria;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;90000;100000;100000;160000;170000;220517;214990;200000;393023;311902;311902;200000;200000;207134;205227;217293;245399;230696;252233;252233;252233;252233
-27;'100;Bulgaria;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;1000;2000;750;37202;22746;20874;8848;11328;9647;8160;13112;21090;22828;18691;14415;11985;8362;11329;8152
-27;'100;Bulgaria;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;179;228;106;215;231;634;3930;6381;2684;3124;2898;2205;2551;4018;4854.24;4921;3246;2473;2692;3265;2459
-27;'100;Bulgaria;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;102000;102000;102000;172000;221104;100368;132904;148029;151106;130426;129080;129660;155273;148732;146049;117058;119229;141904;85131;74738;121417
-27;'100;Bulgaria;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10305;10347;10319;10316;29314;33719;28899;33446;43758;43793;33604;38125;33416;30460;28569;31443.61;32151;25140;27481;31427;24484;29840
-27;'100;Bulgaria;1874;Fibreboard;5516;Production;m3;;;;;;;;26000;60000;77000;68000;84000;78000;98000;102000;101000;127000;126000;137000;141000;126000;143000;115000;114000;116000;117000;90000;116000;108000;105000;87000;52000;66000;66000;66000;66000;66000;66000;66000;233979;281970;281970;281970;147020;110000;79000;115000;83000;70955;52685;62539;62539;54000;57000;65328;63760;54070;47095;45000;75039;165000;165000;165000
-27;'100;Bulgaria;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;120;140;70;60;100;400;100;100;100;100;100;100;100;100;100;100;1237;64;376;300;400;2600;3179;12000;17070;23413;29584;29580;51000;68000;88000;153927;141354;117657;152374;116078;79377;73056;75030;86005;77375;90328;108325;118059;107874;118115;159687;191027
-27;'100;Bulgaria;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;30;40;20;23;28;115;30;30;35;40;45;50;50;50;50;50;238;27;230;19;59;319;549;4713;6696;6767;8056;8089;24079;32054;44681;70283;75344;43666;42835;47848;46517;45875;47877;45513;41255;47161.21;58014;56029;52281;70725;81191;68783
-27;'100;Bulgaria;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;2169;25602;41729;33077;39666;31329;46697;47896;47100;57100;50800;67600;63100;47300;36200;19000;21000;25600;32900;27900;28500;22800;37500;30000;23806;11865;5675;500;31300;8700;13700;59000;55912;24477;27602;27600;121380;141553;105187;135717;107380;91946;64730;106760;60649;58756;57010;60422;46427;44436;50211;51531;55880;84760;124127;100646
-27;'100;Bulgaria;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;180;1200;1800;1700;1670;1500;2350;2150;4500;6100;5400;7500;7500;5850;4800;2640;2940;3630;4740;4140;4240;3340;5740;5740;4756;2579;1504;161;6269;3849;5309;11620;10127;10339;11527;11574;16596;15402;18027;30611;27694;22425;23342;27987;23925;23142;22921;20261;17150;17169.9;20327;20712;22173;36391;61956;45683
-27;'100;Bulgaria;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;39000;39000;39000;29000;77993;93990;93990;93990;147020;110000;79000;84000;71257;64122;48426;54446;54446;48000;50000;57305;55933;47430;41312;40000;51502;113030;113030;113030
-27;'100;Bulgaria;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;10000;13007;12183;12739;12740;18000;23000;35000;30775;28864;18329;51551;22752;34224;25536;23270;25598;26936;29091;29814;34023;33473;39627;46555;36221
-27;'100;Bulgaria;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;3968;5645;4800;5019;5040;15048;20610;30744;30367;32350;17799;20128;24301;23224;19352;18306;16552;17097;18375.53;19622;19205;18773;25882;32332;25858
-27;'100;Bulgaria;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;59000;55912;24423;27092;27090;121000;141000;104000;97473;100064;82451;58776;100002;57947;56397;54320;54207;42666;39397;43733;42625;44554;45916;41778;27817
-27;'100;Bulgaria;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1460;11591;10120;10331;11460;11507;16451;15257;17832;19786;24962;19465;21929;25532;22023;21404;20676;17482;14395;13761.7;15687;15193;16247;19563;22772;15674
-27;'100;Bulgaria;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;30000;77993;93990;93990;93990;0;0;0;31000;11743;6833;4259;8093;8093;6000;7000;8023;7827;6640;5783;5000;23537;51970;51970;51970
-27;'100;Bulgaria;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2997;8553;13693;13690;25000;33000;38000;111955;101272;93664;94556;85640;43259;46076;50130;58323;36404;43545;73700;79173;70387;75418;105616;138398
-27;'100;Bulgaria;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;938;1702;2725;2736;7185;8865;11095;36362;39338;24670;21692;22437;22446;25810;28700;28303;20154;23954.49;36878;35432;32268;43987;46163;38088
-27;'100;Bulgaria;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11700;4700;4700;0;0;28;117;120;0;173;300;37078;7302;9446;5865;6631;2658;2327;2670;6186;3292;4658;6438;8901;11286;38776;82281;72761
-27;'100;Bulgaria;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5406;3598;3598;16;0;5;21;21;58;58;135;10736;2726;2959;1393;2412;1877;1733;2239;2767;2550;3278.17;4626;5515;5890;16767;39123;29948
-27;'100;Bulgaria;1650;Other fibreboard;5516;Production;m3;;;;;;;;1000;20000;34000;24000;33000;25000;41000;44000;42000;39000;34000;39000;36000;25000;20000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;77993;93990;93990;93990;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;0;0;300;400;2600;2600;0;1066;2677;3152;3150;8000;12000;15000;11197;11218;5664;6267;7686;1894;1444;1630;2084;14035;17692;4811;4863;4014;3070;7516;16408
-27;'100;Bulgaria;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;19;59;319;319;101;113;265;312;313;1846;2579;2842;3554;3656;1197;1015;1110;847;713;871;658;4004;4831.19;1514;1392;1240;856;2696;4837
-27;'100;Bulgaria;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;800;19600;33200;23600;32400;24800;40800;44000;41600;39000;33700;38900;36000;25000;20000;7000;7000;7000;7000;7000;7000;7000;7000;7000;6611;5900;200;500;19600;4000;4000;0;0;26;393;390;380;380;887;1166;14;49;89;127;44;32;20;29;469;381;40;5;40;68;68;68
-27;'100;Bulgaria;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;20;500;800;600;820;720;1500;1600;3700;3500;3000;3500;3500;2500;2400;840;840;840;840;840;840;840;840;840;1228;1171;42;161;863;251;251;13;7;3;46;46;87;87;60;89;6;1;20;43;25;5;6;12;205;130.02;14;4;36;61;61;61
-27;'100;Bulgaria;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;25000;40000;43000;44000;51000;53000;57000;58000;59000;88000;92000;98000;105000;101000;123000;108000;107000;109000;110000;83000;109000;101000;98000;80000;45000;59000;59000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;120;140;70;60;100;400;100;100;100;100;100;100;100;100;100;100;1151;64;376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;30;40;20;23;28;115;30;30;35;40;45;50;50;50;50;50;215;27;230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;1369;6002;8529;9477;7266;6529;5897;3896;5500;18100;17100;28700;27100;22300;16200;12000;14000;18600;25900;20900;21500;15800;30500;23000;17195;5965;5475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;160;700;1000;1100;850;780;850;550;800;2600;2400;4000;4000;3350;2400;1800;2100;2790;3900;3300;3400;2500;4900;4900;3528;1408;1462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1879;Total fibre furnish;5510;Production;t;34300;44000;54200;73200;82900;88000;100000;120000;117000;203000;231200;232400;251700;346400;368000;385000;376000;404000;413000;410000;417000;407000;399000;310000;315000;299000;299000;342000;320000;290000;276000;235000;235000;235000;235000;235000;235000;187000;168000;175000;182000;182000;182000;215000;215000;215000;215000;157923;164407;172870;166026;177487;185111;184900;204900;214900;315771;332884;328785;299949;309949;319949;319949
-27;'100;Bulgaria;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;73600;67800;82900;76000;74300;77500;71600;82700;107500;104100;111300;98000;139600;128800;129000;158100;157700;157300;150600;154800;138000;124700;90400;90400;29323;25109;3700;1700;25900;42500;15567;38000;43000;25000;34000;34000;70030;72494;22885;43816;43789;15265;10703;31376;35621;53352;44890;39768;51897;36507;23585;30242;23590;14275;10611;6642
-27;'100;Bulgaria;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;11400;10530;13280;11700;11400;15650;24000;26850;37000;36000;38895;34300;48900;45200;52700;64140;64400;65118;63070;65050;60100;56000;41540;41540;14385;7471;1388;1215;8979;6573;4618;11464;12965;8307;9139;9177;16777;17897;10763;17453;16580;8938;8970;20973;18772;29034;22539;15480;21495;16088.77;10832;10821;9469;7113;6319;8360
-27;'100;Bulgaria;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;10100;17400;15600;15300;22500;22500;14800;13500;21300;19900;27100;22900;15200;9900;10900;10300;11700;7700;3300;9500;27500;31100;29600;29600;49890;29500;34900;6600;22000;42400;41962;59933;59925;62850;63850;63850;59850;60568;51160;53334;97208;38815;135375;146630;138347;175133;178097;177903;199477;213287;215808;222386;168516;190057;198602;226076
-27;'100;Bulgaria;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;2100;2600;2330;2300;3400;3400;6200;3900;5400;4800;6560;5700;3750;2700;5050;3800;4400;3498;1434;4534;14234;16234;15780;15780;20333;9189;14250;4350;10429;17494;17438;24951;24957;25156;25232;25335;24987;25023;26223;28290;48873;8085;76767;75561;58278;74617;72880;63655;65229;82302.38;100272;80100;45581;83649;104887;70823
-27;'100;Bulgaria;1878;Pulp for paper;5510;Production;t;34300;44000;54200;73200;82900;88000;100000;120000;117000;118000;146200;146400;165700;246400;240000;257000;248000;276000;285000;282000;289000;279000;271000;260000;235000;219000;219000;262000;240000;162000;148000;107000;107000;107000;107000;107000;107000;107000;88000;95000;102000;102000;102000;135000;135000;135000;135000;136923;136923;135173;134772;135157;135111;134900;134900;134900;235771;242884;238785;209949;209949;209949;209949
-27;'100;Bulgaria;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;73600;67800;82900;76000;74300;77500;71600;82700;107500;104100;111300;98000;139600;128800;129000;158100;157700;157300;150600;154800;138000;124700;90400;90400;26555;15509;2100;1300;16600;5800;5800;16000;14000;11000;13000;13000;18030;19494;15885;15158;13381;12593;8627;19646;22443;35177;25530;18019;29614;14254;8392;10556;11645;5571;3845;4370
-27;'100;Bulgaria;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;11400;10530;13280;11700;11400;15650;24000;26850;37000;36000;38895;34300;48900;45200;52700;64140;64400;65118;63070;65050;60100;56000;41540;41540;14290;7173;1132;1128;7672;2985;1030;9801;9786;6832;7056;7085;10086;11084;9702;11134;10080;8230;8196;17163;16119;25528;19290;12367;18111;12183.83;7965;7841;7058;4996;4187;7616
-27;'100;Bulgaria;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;10100;17400;15600;15300;22500;22500;14800;13500;21300;19900;27100;22900;15200;9900;10900;10300;11700;7700;3300;9500;27500;31100;29600;29600;39917;26300;32400;6000;21900;41900;41900;59850;59850;59850;59850;59850;59850;59850;48160;44943;67846;8659;95602;103431;83033;107180;111317;88272;101991;107585;111792;112663;65822;91663;90404;72505
-27;'100;Bulgaria;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;2100;2600;2330;2300;3400;3400;6200;3900;5400;4800;6560;5700;3750;2700;5050;3800;4400;3498;1434;4534;14234;16234;15780;15780;19349;8816;13931;4223;10378;17436;17436;24946;24946;24918;24918;25020;24965;24944;25823;27276;44553;4752;69836;65156;47554;63582;62029;50475;48791;62532.38;83391;64180;32096;60247;80866;46615
-27;'100;Bulgaria;1875;Wood pulp;5510;Production;t;34300;44000;54200;73200;82900;88000;88000;94000;90000;91000;116200;116400;140700;216400;217000;232000;228000;256000;265000;262000;269000;259000;251000;240000;215000;199000;199000;242000;220000;142000;138000;97000;97000;97000;97000;97000;97000;97000;78000;85000;92000;92000;92000;135000;135000;135000;135000;136923;136923;135173;134772;135157;135111;134900;134900;134900;235771;242884;238785;209949;209949;209949;209949
-27;'100;Bulgaria;1875;Wood pulp;5610;Import quantity;t;;;;;;;;73600;67800;82900;76000;74300;77500;71600;82700;107500;104100;111300;98000;139600;128800;129000;158100;157700;157300;150600;154800;138000;124700;90400;90400;26249;14409;2000;1200;16600;5600;5600;16000;14000;10000;12000;12000;17990;19139;16002;19507;13934;12256;8624;19962;22024;34663;25040;18603;30237;13587;9224;11032;12453;6722;5883;3827
-27;'100;Bulgaria;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;11400;10530;13280;11700;11400;15650;24000;26850;37000;36000;38895;34300;48900;45200;52700;64140;64400;65118;63070;65050;60100;56000;41540;41540;14085;6620;1008;1004;7672;2897;942;9602;9601;6679;6903;6931;9774;10740;9406;15757;10274;7603;7698;18004;15352;24611;18437;12667;18316;9783.11;8617;7922;7938;5924;5929;4570
-27;'100;Bulgaria;1875;Wood pulp;5910;Export quantity;t;;;;;;;;10100;17400;15600;15300;22500;22500;14800;13500;21300;19900;27100;22900;15200;9900;10900;10300;11700;7700;3300;9500;27500;31100;29600;29600;35121;26100;32400;6000;21900;41900;41900;59850;59850;59850;59850;59850;59850;59850;48160;44941;67845;8658;95602;103431;83033;107180;111314;88270;101989;107718;111973;112661;65820;91660;90393;72496
-27;'100;Bulgaria;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;2100;2600;2330;2300;3400;3400;6200;3900;5400;4800;6560;5700;3750;2700;5050;3800;4400;3498;1434;4534;14234;16234;15780;15780;16877;8716;13931;4223;10378;17436;17452;24946;24946;24918;24918;25020;24965;24944;25823;27274;44540;4750;69836;65156;47554;63581;62026;50471;48787;62678.03;83592;64175;32091;60234;80837;46593
-27;'100;Bulgaria;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10479;10796;10614;9329;9329;9329;9329
-27;'100;Bulgaria;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;77;335;48;142;149;22
-27;'100;Bulgaria;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.36;43;216;30;90;41;29
-27;'100;Bulgaria;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;0;0;124
-27;'100;Bulgaria;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.14;0;1;0;1;1;2
-27;'100;Bulgaria;1654;Mechanical wood pulp (1961-2016);5510;Production;t;13000;15000;16100;14700;17000;18000;18000;18000;15000;14000;13200;13100;13000;12800;12000;10000;18000;18000;19000;18000;19000;19000;18000;17000;16000;14000;14000;18000;17000;12000;8000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;196;196;56;71;90;106;0;0;0;;;;;;;
-27;'100;Bulgaria;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;330;94;194;83;85;490;6;3;1;7;20;0;10;;;;;;;
-27;'100;Bulgaria;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;42;42;31;64;63;361;15;20;3;6;11;0;6;;;;;;;
-27;'100;Bulgaria;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;271;86;4;0;1;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;93;29;6;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;51900;48700;47600;49900;49000;41000;31000;29000;25000;28000;27000;28000;30000;28000;25000;23000;23000;34000;28000;20000;20000;16000;16000;16000;16000;16000;16000;16000;4000;8000;3000;3000;3000;5000;5000;5000;5000;6791;6791;5662;5803;6170;6105;6000;6000;6000;;;;;;;
-27;'100;Bulgaria;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;700;800;400;600;600;600;0;0;0;0;0;330;0;2;12;8;0;0;0;0;0;0;0;21;;;;;;;
-27;'100;Bulgaria;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;257;319;270;315;315;257;10;0;0;0;0;42;0;4;41;26;0;0;0;0;0;0;0;9;;;;;;;
-27;'100;Bulgaria;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;9;4;2;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;5;3;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1656;Chemical wood pulp;5510;Production;t;21300;29000;38100;58500;65900;70000;70000;76000;75000;77000;51100;54600;80100;153700;156000;181000;179000;209000;221000;216000;223000;212000;203000;195000;174000;162000;162000;190000;175000;110000;110000;79000;79000;79000;79000;79000;79000;79000;74000;77000;89000;89000;89000;130000;130000;130000;130000;129936;129936;129455;128898;128897;128900;128900;128900;128900;225292;232088;228171;200620;200620;200620;200620
-27;'100;Bulgaria;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;73600;67800;82900;76000;74300;77500;71600;82700;107500;104100;111300;98000;139600;128800;129000;158100;157700;157300;150600;154800;138000;124700;90400;90400;26077;13709;1200;800;16000;5000;5000;16000;14000;10000;12000;12000;17000;19000;15000;14882;13072;11691;7715;19162;22007;34634;25000;17548;28831;12538;7708;9310;11346;5222;3288;1771
-27;'100;Bulgaria;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;11400;10530;13280;11700;11400;15650;24000;26850;37000;36000;38895;34300;48900;45200;52700;64140;64400;65118;63070;65050;60100;56000;41540;41540;13975;6363;689;734;7357;2582;685;9592;9601;6679;6903;6931;9648;10656;9284;10653;9478;7062;6285;16072;15290;24526;18368;11567;16801;8586.99;7007;6246;6690;4583;3359;1941
-27;'100;Bulgaria;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;10100;17400;15600;15300;22500;22500;14800;13500;21300;19900;27100;22900;15200;9900;10900;10300;11700;7700;3300;9500;27500;31100;29600;29600;34879;26100;32400;6000;21900;41900;41900;59850;59850;59850;59850;59850;59850;59850;48151;44666;67755;8654;95602;103430;83033;107179;111314;88270;101989;107581;111789;112660;65820;91660;90393;72372
-27;'100;Bulgaria;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;2100;2600;2330;2300;3400;3400;6200;3900;5400;4800;6560;5700;3750;2700;5050;3800;4400;3498;1434;4534;14234;16234;15780;15780;16762;8716;13931;4223;10378;17436;17436;24946;24946;24918;24918;25020;24965;24944;25822;27176;44504;4744;69836;65156;47554;63581;62026;50471;48787;62518.89;83384;64174;32091;60233;80836;46591
-27;'100;Bulgaria;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;21300;29000;38100;58500;65900;70000;70000;76000;75000;77000;51100;54600;80100;153700;156000;181000;129000;151000;156000;156000;154000;145000;147000;137000;117000;109000;109000;133000;117000;65000;65000;49000;49000;44000;39000;39000;39000;39000;0;0;0;0;0;20000;20000;20000;20000;18174;18174;18096;17901;17901;17900;17900;17900;17900;31436;32379;31832;27986;27986;27986;27986
-27;'100;Bulgaria;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;27900;27200;34200;26400;27100;11400;11100;14500;21700;13400;7700;6200;8200;9800;14000;15500;16100;11700;11800;17900;12300;12300;10900;10900;10900;10900;0;0;0;0;0;1000;0;0;0;0;500;1000;2000;1889;1549;414;0;0;0;0;60;0;20;21;0;757;100;0;21;0
-27;'100;Bulgaria;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;4300;4200;4000;3200;3300;1750;3700;4350;6500;4000;2295;1900;2600;3100;5000;5540;5700;4095;4200;6400;5000;5500;4900;4900;4900;4900;0;0;0;0;0;472;0;0;0;0;221;334;685;903;625;61;0;0;0;0;40;0;11;10.74;0;550;59;0;16;0
-27;'100;Bulgaria;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;2900;9100;11500;14100;9700;8900;2000;200;5000;5400;900;900;900;900;900;1000;1000;5000;5100;1400;0;0;0;0;0;0;0;0;0;0;0;0;18;0;0;77;0;0;1211;2470;189;3118;0;0;0;0;0;21;0
-27;'100;Bulgaria;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;700;2000;2500;3060;2100;2000;500;50;1300;1400;234;234;234;234;234;280;280;2469;1735;509;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;18;0;0;730;1322;91;1423;0;0;0;0;0;20;0
-27;'100;Bulgaria;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;50000;58000;65000;60000;69000;67000;56000;58000;57000;53000;53000;57000;58000;45000;45000;30000;30000;35000;40000;40000;40000;40000;74000;77000;89000;89000;89000;110000;110000;110000;110000;111762;111762;111359;110997;110996;111000;111000;111000;111000;193856;199709;196339;172634;172634;172634;172634
-27;'100;Bulgaria;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;10100;3900;3900;500;4500;15800;14800;17300;33900;43800;55000;46900;79500;72700;69800;88800;89000;105300;93100;90100;87700;90100;71100;71100;9489;1600;1100;700;16000;5000;5000;8000;6000;1000;4000;4000;3000;3000;2000;10148;8580;9030;5000;14734;20778;33281;23430;17195;28516;12233;7457;8301;11038;4893;3037;1499
-27;'100;Bulgaria;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;1560;1080;1080;100;900;3500;4900;5500;12500;16000;20000;17100;29000;26600;30000;38200;38300;45279;41000;40000;39000;41000;33000;33000;5011;518;616;661;7357;2582;685;4199;3707;492;1560;1566;1506;1449;1155;7455;6055;4848;4018;11409;13467;22571;16335;11148;16367;8173.03;6631;5320;6292;4032;2907;1441
-27;'100;Bulgaria;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;10100;17400;15600;15300;22500;22500;14800;10600;12200;8400;13000;13200;6300;7900;10700;5300;6300;6800;2400;8600;26600;30200;28600;28600;29879;21000;31000;6000;21900;41900;41900;59850;59850;59850;59850;59850;59850;59850;48000;44648;67691;8654;95441;103273;83030;105968;108840;88080;98871;107581;111788;112660;65820;91659;90372;72353
-27;'100;Bulgaria;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;2100;2600;2330;2300;3400;3400;6200;3200;3400;2300;3500;3600;1750;2200;5000;2500;3000;3264;1200;4300;14000;16000;15500;15500;14293;6981;13422;4223;10378;17436;17436;24918;24918;24918;24918;25020;24953;24944;25797;27171;44489;4744;69737;64878;47550;62851;60703;50379;47364;62518.89;83368;64174;32091;60217;80816;46529
-27;'100;Bulgaria;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-27;'100;Bulgaria;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;251;252;208;329;230;272
-27;'100;Bulgaria;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403.22;376;376;339;551;436;500
-27;'100;Bulgaria;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;1;0;19
-27;'100;Bulgaria;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;0;0;16;0;62
-27;'100;Bulgaria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;13000;9800;8700;8800;9700;7800;11500;12100;13600;8400;8300;6300;8000;7000;4200;12000;7300;1200;2800;5000;3200;2000;100;100;1109;1109;0;0;0;0;0;0;0;0;0;0;500;1000;0;0;3;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2000;1500;1900;1400;1600;1400;3800;4000;5000;3000;3000;2300;2300;2000;1300;3700;2300;384;870;1650;1100;700;40;40;885;885;0;0;0;0;0;0;0;0;0;0;221;334;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;4;0;0;;;;;;;
-27;'100;Bulgaria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;1;0;0;;;;;;;
-27;'100;Bulgaria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-27;'100;Bulgaria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;22600;26900;36100;40300;33000;42500;34200;38800;38300;38500;40300;38600;43900;39300;41000;41800;45300;39100;42900;41800;34800;20300;8300;8300;4579;100;100;100;0;0;0;7000;8000;9000;8000;8000;13000;14000;11000;2845;2940;2247;2715;4428;1229;1353;1510;353;295;;;;;;;
-27;'100;Bulgaria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3540;3750;6300;7000;5600;9000;11600;13000;13000;13000;13600;13000;15000;13500;16400;16700;18100;15360;17000;17000;15000;8800;3600;3600;3179;60;73;73;0;0;0;4921;5894;6187;5343;5365;7700;8539;7444;2295;2798;2153;2267;4663;1823;1955;1993;419;423;;;;;;;
-27;'100;Bulgaria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;151;0;64;0;84;152;3;0;0;1;0;;;;;;;
-27;'100;Bulgaria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;28;28;0;0;0;12;0;25;0;15;0;81;274;4;0;0;1;0;;;;;;;
-27;'100;Bulgaria;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;330;45;806;4530;769;75;903;797;16;22;20;1055;1375;1023;1439;1387;1059;1358;2446;2034
-27;'100;Bulgaria;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;42;42;87;4999;707;180;1398;1912;59;79;58;1100;1500;1180.76;1567;1460;1218;1251;2529;2600
-27;'100;Bulgaria;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;1;0;0;0;136;184;0;0;0;0;0
-27;'100;Bulgaria;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;0;0;0;0;0;16;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;157;208;0;0;0;0;0
-27;'100;Bulgaria;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;12000;26000;27000;27000;30000;30000;25000;30000;23000;25000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;1100;100;100;0;200;200;0;0;1000;1000;1000;370;400;689;181;216;412;906;481;435;536;510;471;752;1690;607;911;251;207;408;2577
-27;'100;Bulgaria;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;553;124;124;0;88;88;199;185;153;153;154;354;386;383;376;513;807;1896;1071;826;996;911;800;1295;3581.48;915;1379;338;323;787;5646
-27;'100;Bulgaria;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5038;200;0;0;0;0;0;0;0;0;0;0;0;0;0;2;3;1;0;0;0;1;3;2;2;3;3;2;2;3;11;9
-27;'100;Bulgaria;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;100;0;0;0;0;0;0;0;0;0;0;0;0;0;2;17;2;0;0;0;1;3;4;4;11.35;7;5;5;13;29;22
-27;'100;Bulgaria;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;50;60;1000;360;227;176;320;190;660;1093;40;535;112;63;28;17;177;300;325;371
-27;'100;Bulgaria;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;63;213;213;214;18;20;408;235;134;55;195;161;425;304;32;228;63;40.56;23;11;110;214;250;308
-27;'100;Bulgaria;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1450;1340;0;0;6;7;5;394;159;68;5;201;198
-27;'100;Bulgaria;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;245;146;0;0;5;5;4.01;30;43;54;4;125;40
-27;'100;Bulgaria;1669;Recovered paper;5510;Production;t;;;;;;;;;;85000;85000;86000;86000;100000;128000;128000;128000;128000;128000;128000;128000;128000;128000;50000;80000;80000;80000;80000;80000;128000;128000;128000;128000;128000;128000;128000;128000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;21000;27484;37697;31254;42330;50000;50000;70000;80000;80000;90000;90000;90000;100000;110000;110000
-27;'100;Bulgaria;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2768;9600;1600;400;9300;36700;9767;22000;29000;14000;21000;21000;52000;53000;7000;28658;30408;2672;2076;11730;13178;18175;19360;21749;22283;22253;15193;19686;11945;8704;6766;2272
-27;'100;Bulgaria;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;298;256;87;1307;3588;3588;1663;3179;1475;2083;2092;6691;6813;1061;6319;6500;708;774;3810;2653;3506;3249;3113;3384;3904.94;2867;2980;2411;2117;2132;744
-27;'100;Bulgaria;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9973;3200;2500;600;100;500;62;83;75;3000;4000;4000;0;718;3000;8391;29362;30156;39773;43199;55314;67953;66780;89631;97486;105702;104016;109723;102694;98394;108198;153571
-27;'100;Bulgaria;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;373;319;127;51;58;2;5;11;238;314;315;22;79;400;1014;4320;3333;6931;10405;10724;11035;10851;13180;16438;19770;16881;15920;13485;23402;24021;24208
-27;'100;Bulgaria;1876;Paper and paperboard;5510;Production;t;84100;90000;103700;115000;125600;169000;187000;222000;225000;232000;252000;255000;261000;304000;343000;497000;513000;363000;382000;395000;427000;435000;442000;445000;454000;458000;456000;477000;438000;322000;258000;153000;138800;147500;149500;149500;149500;109000;126000;136000;171000;171000;171000;326000;326000;313000;367000;326190;216900;248028;290585;304504;336764;345440;351288;362705;383648;372706;363971;391488;394061;394067;394067
-27;'100;Bulgaria;1876;Paper and paperboard;5610;Import quantity;t;37800;44200;46500;47900;50900;59100;64900;73800;97200;101500;112400;116900;124500;129400;124700;118300;88900;118400;115400;128000;118700;113400;108000;114400;111900;104600;136800;100400;100000;84500;51700;7022;29500;47000;24600;69400;91100;95100;111000;130000;144000;160000;160000;185550;212000;224000;269234;277911;256212;263499;274873;289471;296203;316620;325152;329798;307112;326847;325964;320736;364526;374296;372739
-27;'100;Bulgaria;1876;Paper and paperboard;5622;Import value;1000 USD;8354;9850;10530;10996;12290;14240;15600;17500;23350;24510;26200;27500;36200;57700;51300;48000;34600;45470;44200;50100;49800;49400;47500;49700;48398;46700;65200;46600;49700;42650;31650;8141;24111;38673;28011;64715;63018;75135;86193;95276;104603;120485;120978;169704;188773;197992;260849;294218;241884;251249;290786;289203;296136;310649;278322;277324;265964.53;309593;283130;268832;373888;460004;401452
-27;'100;Bulgaria;1876;Paper and paperboard;5910;Export quantity;t;;;;;100;600;600;200;1900;4200;900;1700;4200;1900;2000;4500;13200;8400;11200;5500;5000;6800;7100;22700;17600;12900;15000;13300;14900;13600;24000;12726;3700;5800;13800;25200;13700;25700;41000;54997;41000;52000;52000;137530;139681;95344;117797;104386;51183;77086;115024;128805;161150;172510;170406;173851;156889;146948;153006;193829;176750;165244;115235
-27;'100;Bulgaria;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;20;120;120;40;350;750;200;400;950;600;600;1500;4400;2800;3800;1900;2000;3100;3200;10300;7920;5800;8000;7100;8000;7300;12000;8603;1945;2996;8194;13533;8326;9056;18523;26703;20036;25444;25551;74374;77939;60965;93761;98237;42021;72702;121031;126525;159620;168535;149923;160872;140112.85;145790;143443;150339;206469;235483;173482
-27;'100;Bulgaria;2042;Graphic papers;5510;Production;t;14900;15500;16800;20700;22900;29000;32100;38000;41000;41000;42900;43600;41800;38000;42000;42000;49000;33000;35000;36000;39000;40000;79000;76000;81000;79000;78000;86000;75000;52000;47000;8000;3800;4500;4500;4500;4500;8000;1000;6000;3000;3000;3000;3000;3000;3000;3000;5958;3300;1816;3427;3427;5000;5185;5281;5502;1219;1143;1110;607;8453;8453;8453
-27;'100;Bulgaria;2042;Graphic papers;5610;Import quantity;t;26300;31200;31100;30700;31900;34400;37500;37600;42700;44900;55000;54600;57200;63200;67400;63700;62200;66000;60400;59600;56600;54400;54200;53800;52300;48800;52900;52100;47600;37500;34700;3388;22700;32900;16400;52700;62000;33000;65000;76000;83000;89000;89000;100000;107000;115000;139473;139226;123194;126780;132573;133267;126626;129220;130115;112749;104558;99591;93627;80215;88664;97809;78534
-27;'100;Bulgaria;2042;Graphic papers;5622;Import value;1000 USD;4422;5350;5231;5276;5505;6245;6940;6590;7000;7560;9100;9500;13900;22600;22800;26000;23900;24470;22200;22600;22800;21400;21500;20400;19790;19700;22200;21600;21700;16650;16650;3619;16400;25192;15928;45198;38714;25150;45758;47906;55494;60937;61186;84969;89805;100046;135705;151699;118240;114446;129931;119103;116926;121407;110554;92605;89514.96;100681;95875;87228;99659;123374;109334
-27;'100;Bulgaria;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1877;1400;1500;1000;1300;700;700;4000;5000;5000;4000;4000;3000;7251;5988;7406;11545;7599;11592;12522;10019;15410;19000;17357;15117;14495;13636;13354;20739;8206;8724;5072
-27;'100;Bulgaria;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1468;671;698;542;933;515;698;2930;3297;3558;2925;2938;3172;4376;2382;5497;8786;6264;9025;11251;8631;12485;20610;15587;19518;16689.86;15561;18244;21424;18785;13989;10363
-27;'100;Bulgaria;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1671;Newsprint;5610;Import quantity;t;18900;22200;20900;21000;22900;25200;28900;28200;34500;35400;44100;40200;39700;44600;49000;41400;43500;49000;47500;46200;41500;41200;41500;43700;42300;39400;43000;43800;37200;30700;30700;330;4500;7000;7600;30500;32000;7000;29000;31000;36000;41000;41000;40000;39000;38000;47333;44179;45550;47248;50018;51148;46756;48400;44105;41010;31875;28365;23234;19346;18153;19950;12060
-27;'100;Bulgaria;1671;Newsprint;5622;Import value;1000 USD;2658;3150;2888;2951;3268;3580;4050;3980;4800;4960;6100;5600;5400;9100;9800;10000;10500;12300;13000;13000;12000;12000;12500;13200;12690;13000;15000;15500;14000;11600;11600;189;2324;3048;4765;18748;15000;3050;13024;12607;17678;19656;19736;21267;21960;23545;32799;31688;30109;25674;33893;30790;29531;30984;22427;20676;16499.47;18384;13802;9328;9852;16597;9287
-27;'100;Bulgaria;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;800;800;800;500;200;200;1000;1000;1000;2000;2000;1000;1000;1671;811;4154;4812;7901;8288;6852;8219;10890;10699;8536;6950;5540;5845;5152;4471;4418;2220
-27;'100;Bulgaria;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;205;205;205;253;144;205;399;317;528;803;806;572;442;255;603;2847;3246;4875;6047;4705;5781;7473;6209;4859;4013.14;4176;4014;3071;3034;4377;2105
-27;'100;Bulgaria;1674;Printing and writing papers;5510;Production;t;14900;15500;16800;20700;22900;29000;32100;38000;41000;41000;42900;43600;41800;38000;42000;42000;49000;33000;35000;36000;39000;40000;79000;76000;81000;79000;78000;86000;75000;52000;47000;8000;3800;4500;4500;4500;4500;8000;1000;6000;3000;3000;3000;3000;3000;3000;3000;2958;3300;1816;3427;3427;5000;5185;5281;5502;1219;1143;1110;607;8453;8453;8453
-27;'100;Bulgaria;1674;Printing and writing papers;5610;Import quantity;t;7400;9000;10200;9700;9000;9200;8600;9400;8200;9500;10900;14400;17500;18600;18400;22300;18700;17000;12900;13400;15100;13200;12700;10100;10000;9400;9900;8300;10400;6800;4000;3058;18200;25900;8800;22200;30000;26000;36000;45000;47000;48000;48000;60000;68000;77000;92140;95047;77644;79532;82555;82119;79870;80820;86010;71739;72683;71226;70393;60869;70511;77859;66474
-27;'100;Bulgaria;1674;Printing and writing papers;5622;Import value;1000 USD;1764;2200;2343;2325;2237;2665;2890;2610;2200;2600;3000;3900;8500;13500;13000;16000;13400;12170;9200;9600;10800;9400;9000;7200;7100;6700;7200;6100;7700;5050;5050;3430;14076;22144;11163;26450;23714;22100;32734;35299;37816;41281;41450;63702;67845;76501;102906;120011;88131;88772;96038;88313;87395;90423;88127;71929;73015.5;82297;82073;77900;89807;106777;100047
-27;'100;Bulgaria;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1825;600;700;200;800;500;500;3000;4000;4000;2000;2000;2000;6251;4317;6595;7391;2787;3691;4234;3167;7191;8110;6658;6581;7545;8096;7509;15587;3735;4306;2852
-27;'100;Bulgaria;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453;466;493;337;680;371;493;2531;2980;3030;2122;2132;2600;3934;2127;4894;5939;3018;4150;5204;3926;6704;13137;9378;14659;12676.73;11385;14230;18353;15751;9612;8258
-27;'100;Bulgaria;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;1000;1000;1000;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;15000;15000;4000;4000;3000;4000;5000;6042;7469;6041;6226;5838;8473;6827;7920;8258;9630;7723;9980;9302;6813;8309;7855;7240
-27;'100;Bulgaria;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9391;8644;9044;2891;2903;2541;3075;4091;5005;7013;5418;5345;5063;7098;6025;7296;6546;7044;5764.95;7996;10716;5288;6661;8507;7808
-27;'100;Bulgaria;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;251;1317;5044;5768;735;622;672;527;533;460;605;510;448;436;376;376;453;427;310
-27;'100;Bulgaria;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;94;114;130;131;128;195;273;2914;3772;689;633;773;742;618;523;543;545;417.48;410;343;344;421;514;370
-27;'100;Bulgaria;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3000;3000;3000;3000;1958;3300;1816;3427;3427;5000;5185;5281;5502;1219;1143;1110;607;8453;8453;8453
-27;'100;Bulgaria;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;10000;18000;18000;25000;27000;32000;39498;41675;39133;40512;40538;42027;40802;37020;38342;39160;42247;40430;41665;38192;44160;41516;34276
-27;'100;Bulgaria;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8520;7821;8694;15788;15853;26219;26225;30534;46977;55437;44021;46559;48097;46861;44902;41978;45040;43621;45273.64;52135;51886;57116;62727;58635;59044
-27;'100;Bulgaria;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;2000;1000;1000;1000;1000;1000;1001;1148;996;2384;2443;1940;5229;5440;3491;4505;5828;6326;6178;14456;2452;2514;1255
-27;'100;Bulgaria;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1748;880;1061;876;880;1001;658;833;1097;1379;1122;2569;2730;2283;4168;9310;5843;11694;10048.12;7977;11263;16491;13284;5991;4633
-27;'100;Bulgaria;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;1000;3000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;14000;20000;22000;26000;26000;32000;37000;40000;46600;45903;32470;32794;36179;31619;32241;35880;39410;22949;22713;20816;19426;15864;18042;28488;24958
-27;'100;Bulgaria;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22100;14823;18834;20078;22602;22694;34942;38545;41876;50924;57561;38692;36868;42878;34354;36468;41149;36541;21264;21976.91;22166;19471;15496;20419;39635;33195
-27;'100;Bulgaria;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1000;3000;2000;1000;1000;1000;5000;2000;550;475;1056;685;1119;700;1429;2210;2562;1566;1269;1334;955;755;830;1365;1287
-27;'100;Bulgaria;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;551;2006;1855;1116;1121;1471;3081;1021;883;788;1207;948;1701;901;1918;3304;2992;2420;2211.13;2998;2624;1518;2046;3107;3255
-27;'100;Bulgaria;1675;Other paper and paperboard;5510;Production;t;69200;74500;86900;94300;102700;140000;154900;184000;184000;191000;209100;211400;219200;266000;301000;455000;464000;330000;347000;359000;388000;395000;363000;369000;373000;379000;378000;391000;363000;270000;211000;145000;135000;143000;145000;145000;145000;101000;125000;130000;168000;168000;168000;323000;323000;310000;364000;320232;213600;246212;287158;301077;331764;340255;346007;357203;382429;371563;362861;390881;385608;385614;385614
-27;'100;Bulgaria;1675;Other paper and paperboard;5610;Import quantity;t;11500;13000;15400;17200;19000;24700;27400;36200;54500;56600;57400;62300;67300;66200;57300;54600;26700;52400;55000;68400;62100;59000;53800;60600;59600;55800;83900;48300;52400;47000;17000;3634;6800;14100;8200;16700;29100;62100;46000;54000;61000;71000;71000;85550;105000;109000;129761;138685;133018;136719;142300;156204;169577;187400;195037;217049;202554;227256;232337;240521;275862;276487;294205
-27;'100;Bulgaria;1675;Other paper and paperboard;5622;Import value;1000 USD;3932;4500;5299;5720;6785;7995;8660;10910;16350;16950;17100;18000;22300;35100;28500;22000;10700;21000;22000;27500;27000;28000;26000;29300;28608;27000;43000;25000;28000;26000;15000;4522;7711;13481;12083;19517;24304;49985;40435;47370;49109;59548;59792;84735;98968;97946;125144;142519;123644;136803;160855;170100;179210;189242;167768;184719;176449.56;208912;187255;181604;274229;336630;292118
-27;'100;Bulgaria;1675;Other paper and paperboard;5910;Export quantity;t;;;;;100;600;600;200;1900;4200;900;1700;4200;1900;2000;4500;13200;8400;11200;5500;5000;6800;7100;22700;17600;12900;15000;13300;14900;13600;24000;10849;2300;4300;12800;23900;13000;25000;37000;49997;36000;48000;48000;134530;132430;89356;110391;92841;43584;65494;102502;118786;145740;153510;153049;158734;142394;133312;139652;173090;168544;156520;110163
-27;'100;Bulgaria;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;20;120;120;40;350;750;200;400;950;600;600;1500;4400;2800;3800;1900;2000;3100;3200;10300;7920;5800;8000;7100;8000;7300;12000;7135;1274;2298;7652;12600;7811;8358;15593;23406;16478;22519;22613;71202;73563;58583;88264;89451;35757;63677;109780;117894;147135;147925;134336;141354;123422.99;130229;125199;128915;187684;221494;163119
-27;'100;Bulgaria;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;10000;9000;9000;10000;10000;10000;10000;29000;16000;16000;16000;16000;28000;28000;27000;27000;28000;22900;24084;29127;41179;50937;49022;51810;50658;29429;26778;30350;30883;25856;25856;25856
-27;'100;Bulgaria;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;3000;4000;4000;3000;3000;5000;6911;11134;14612;13920;14323;14282;14728;16180;17771;21597;25483;24959;26321;30180;33386;33520;33532
-27;'100;Bulgaria;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;1517;1464;2026;2034;2209;2942;4703;7393;13470;16534;17945;19440;17481;19615;21810;21433;23616;28016.13;31338;29595;32125;38160;56085;45920
-27;'100;Bulgaria;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;8000;11000;11000;10000;9000;8000;7823;9205;7370;6605;12487;25146;33216;29440;31722;30942;16597;14666;18506;23397;22941;13963;7094
-27;'100;Bulgaria;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173;6371;4323;6597;6624;8163;7350;7412;8904;11778;8278;8162;15884;29913;42098;37026;34620;31812;17434.44;15669;19139;23452;23887;19243;7445
-27;'100;Bulgaria;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91000;91000;104000;147000;147000;147000;295000;295000;283000;337000;292232;190700;222128;258031;259898;280827;291233;294197;306545;353000;344785;332511;359752;359752;359758;359758
-27;'100;Bulgaria;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;33000;41000;46000;55000;55000;69550;87000;97000;119699;124452;115350;118943;123685;134782;149327;165900;170816;187311;175090;199802;203752;208798;233085;233361;251329
-27;'100;Bulgaria;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25681;25681;33877;32371;34746;34889;54593;66213;79566;106080;117435;95668;103979;124137;124967;137404;148090;126246;136589;142268.56;169601;151444;143842;204080;244796;205438
-27;'100;Bulgaria;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;34997;26000;36000;36000;124000;123000;81000;102485;83569;36121;58200;88725;92269;111012;122940;119032;124636;125207;117806;120484;149067;139028;136027;97394
-27;'100;Bulgaria;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8358;8358;15287;11577;15058;15121;62224;65155;50620;78823;77238;26832;51700;89667;80225;99569;105162;86869;91401;103739.93;110518;103266;101506;123095;162680;117049
-27;'100;Bulgaria;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197000;135000;126000;134000;135000;135000;135000;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;13300;14900;13600;24000;10849;2300;4300;12800;23900;13000;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;7100;8000;7300;12000;7135;1274;2298;7652;12600;7811;;;;;;;;;;;;;;;;;;;;;;;;;;
-27;'100;Bulgaria;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;43000;31000;31000;31000;78000;78000;84000;87000;74000;48290;66243;90674;91073;90000;93133;96000;91029;106000;102381;103017;136299;95294;95300;95300
-27;'100;Bulgaria;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;9000;16000;21000;21000;36000;53000;53000;68889;73818;61319;56536;54258;59833;69169;80510;86620;92686;77781;96652;107910;114166;129897;128638;160074
-27;'100;Bulgaria;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4116;4116;4658;6913;7117;7146;13868;19665;22218;35185;42004;25453;28944;34904;34719;41524;47162;43291;45153;46146.39;59540;54831;51479;82023;98891;87311
-27;'100;Bulgaria;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;10000;6000;7000;7000;9000;6000;5000;8326;7719;5470;6552;16899;14072;15417;21560;23814;15431;13887;12750;32026;75326;34233;22496;9536
-27;'100;Bulgaria;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2817;2817;3744;1917;2111;2120;2778;1969;1685;3608;4001;3236;5718;12776;10523;12993;16713;15088;10604;11946.81;13041;18765;41486;24148;18662;5558
-27;'100;Bulgaria;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;9000;9000;9000;9000;45000;45000;3000;42000;28232;18423;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;14000;14000;28000;28000;29000;29000;37000;39822;40032;37620;45030;53405;60219;63876;65620;63889;71587;73676;77517;71222;72533;79772;79912;72083
-27;'100;Bulgaria;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13566;13566;19183;16895;23341;23437;36284;42316;50028;59540;62493;52176;58084;70593;74623;79063;81108;65047;71078;75579.09;84747;72790;71541;95347;115974;94452
-27;'100;Bulgaria;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;5997;1000;2000;2000;57500;58500;3000;18632;14154;571;556;825;1012;1659;1470;2428;3498;3659;3273;3612;3686;4672;5307;5987
-27;'100;Bulgaria;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646;646;1823;304;641;644;29723;31593;1279;12277;11185;1022;758;1412;1907;2856;2375;2980;4817;7733.95;5350;6371;5875;8453;12405;14425
-27;'100;Bulgaria;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;17000;18000;71000;71000;71000;172000;172000;196000;206000;190000;123987;155885;167357;168825;190827;198100;198197;215516;247000;242404;229494;223453;264458;264458;264458
-27;'100;Bulgaria;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;17000;15000;6000;6000;4000;4000;6000;9140;8113;13090;13695;11415;10622;11687;14820;15616;18880;19040;20363;19541;16631;18536;18021;13193
-27;'100;Bulgaria;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7526;7526;9403;8273;4140;4157;4269;3917;6840;9691;10519;15799;14701;15361;12945;14128;16912;15440;18237;18023.01;22208;21082;18409;23391;24613;19434
-27;'100;Bulgaria;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;12000;9500;25000;25000;57500;58500;72000;72017;59472;29847;50981;70825;76497;93629;99690;92534;105470;107452;101591;84511;69841;99883;107880;81533
-27;'100;Bulgaria;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3362;3362;5477;4678;11665;11713;29723;31593;47169;61167;60796;22433;45126;75269;67257;83432;85786;68419;75748;83789.14;91829;77723;53875;90179;131159;96624
-27;'100;Bulgaria;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;27000;34000;36000;36000;36000;0;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-27;'100;Bulgaria;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;0;0;550;1000;1000;1848;2489;3321;3682;4607;4108;4595;4950;4691;4158;4593;5270;5079;5468;4880;6790;5979
-27;'100;Bulgaria;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;473;633;290;148;149;172;315;480;1664;2419;2240;2250;3279;2680;2689;2908;2468;2121;2520.07;3106;2741;2413;3319;5318;4241
-27;'100;Bulgaria;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;7000;9500;2000;2000;0;0;1000;3510;2224;233;111;176;688;307;220;256;237;209;192;335;214;240;344;338
-27;'100;Bulgaria;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1533;1533;4243;4678;641;644;0;0;487;1771;1256;141;98;210;538;288;288;382;232;270.03;298;407;270;315;454;442
-27;'100;Bulgaria;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363000;270000;;;;;;;;;5000;10000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;246;0;0;0
-27;'100;Bulgaria;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;11500;13000;15400;17200;19000;24700;27400;36200;54500;56600;57400;62300;67300;66200;57300;54600;26700;52400;55000;68400;62100;59000;53800;60600;59600;55800;83900;48300;52400;47000;17000;3634;6800;14100;8200;16700;29100;29100;11000;10000;12000;12000;12000;13000;15000;7000;3151;3099;3056;3856;4292;7140;5522;5320;6450;8141;1981;2495;2264;1543;9391;9606;9344
-27;'100;Bulgaria;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;3932;4500;5299;5720;6785;7995;8660;10910;16350;16950;17100;18000;22300;35100;28500;22000;10700;21000;22000;27500;27000;28000;26000;29300;28608;27000;43000;25000;28000;26000;15000;4522;7711;13481;12083;19517;24304;24304;13713;11976;15274;22776;22869;27933;29813;13677;11671;11614;11442;14879;17278;27652;22191;19342;20089;24514;6164.87;7973;6216;5637;31989;35749;40760
-27;'100;Bulgaria;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;100;600;600;200;1900;4200;900;1700;4200;1900;;;;;;;;;;;;;;;;;;;;;;;;0;2000;5000;2000;1000;1000;530;430;356;83;67;93;689;1290;1371;1512;1130;2295;3156;590;840;662;626;6575;6530;5675
-27;'100;Bulgaria;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;20;120;120;40;350;750;200;400;950;600;;;;;;;;;;;;;;;;;;;;;;;;0;1062;1748;578;864;868;815;1058;551;537;435;647;3815;4229;7756;5468;5737;12847;18141;2248.62;4042;2794;3957;40702;39571;38625
-27;'100;Bulgaria;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118895.52;153339;183598;192518;293727;361352;356392
-27;'100;Bulgaria;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218351.08;243359;264992;290084;393910;386451;357015
-27;'100;Bulgaria;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2647.97;5871;5918;6677;11608;13668;12872
-27;'100;Bulgaria;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2897.21;4685;4732;3870;4737;4800;4918
-27;'100;Bulgaria;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508.48;3250;3270;4130;8134;9570;8870
-27;'100;Bulgaria;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2894.72;2172;2485;2357;3030;2723;3169
-27;'100;Bulgaria;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139.5;2621;2648;2547;3474;4098;4002
-27;'100;Bulgaria;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.49;2513;2247;1513;1707;2077;1749
-27;'100;Bulgaria;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13432.72;16248;17292;19192;35052;53423;53456
-27;'100;Bulgaria;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26398.7;25703;26533;30405;48842;64162;58759
-27;'100;Bulgaria;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2671.82;3363;2985;2904;5055;7111;7268
-27;'100;Bulgaria;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523.95;2099;1532;2256;2987;2002;2310
-27;'100;Bulgaria;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24513.31;30134;32563;27712;41900;50806;42916
-27;'100;Bulgaria;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12140.56;15698;19257;22319;28161;27259;25252
-27;'100;Bulgaria;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;1526
-27;'100;Bulgaria;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;1240
-27;'100;Bulgaria;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;0
-27;'100;Bulgaria;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;0
-27;'100;Bulgaria;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-27;'100;Bulgaria;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-27;'100;Bulgaria;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-27;'100;Bulgaria;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-27;'100;Bulgaria;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;119
-27;'100;Bulgaria;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;132
-27;'100;Bulgaria;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;0
-27;'100;Bulgaria;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0
-27;'100;Bulgaria;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68775.7;88397;115037;125334;184905;218999;221877
-27;'100;Bulgaria;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159375.71;172606;185612;203624;275511;264136;247417
-27;'100;Bulgaria;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149.15;3926;2803;3038;4733;4970;5965
-27;'100;Bulgaria;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1105.14;850;760;614;1330;1236;938
-27;'100;Bulgaria;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4704.85;5400;7000;7661;10474;12375;12038
-27;'100;Bulgaria;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14909.81;21718;26566;26996;32342;22856;17421
-27;'100;Bulgaria;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164634.4;190984;199881;201674;238474;276636;273271
-27;'100;Bulgaria;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96355.72;109106;113132;124614;135744;150804;142420
-27;'100;Bulgaria;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242.4;1703;1612;2714;4817;4629;4690
-27;'100;Bulgaria;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61;1;61;789;612;1402;1098
-27;'100;Bulgaria;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27382.17;29286;32690;34802;38588;41798;42732
-27;'100;Bulgaria;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2919.53;2603;2041;2405;4388;3412;3065
-27;'100;Bulgaria;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31655.85;38793;43217;44329;46689;63043;73001
-27;'100;Bulgaria;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25012.89;28229;32618;41517;34524;35954;33876
-27;'100;Bulgaria;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48933.86;59245;62573;63696;79900;93704;86940
-27;'100;Bulgaria;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50652.67;58425;58943;61065;69758;82679;77017
-27;'100;Bulgaria;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55420.12;61957;59789;56133;68480;73462;65908
-27;'100;Bulgaria;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17769.01;19848;19469;18838;26462;27357;27364
-233;'854;Burkina Faso;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60956;53255;55758;58860;79724.22;93403.18;78755.18
-233;'854;Burkina Faso;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3025;3326;2049;1736;2984;4196.36;3122.72
-233;'854;Burkina Faso;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;49;49;49;270;1001;920;574;507;594;568;517;517;517;1427;1805;1805;2259;2313;3551;4446;5234;5355;4889;2225;2427;2427;8968;9409;5677;5477;5477;5349;4840;2036;952;9972;10528;13956;7282;6525;7595;7855;6504;11779;11779;12378;13263;17580;14664;19261;24575;16544;16712;24781;11676;16227;25984;13324;14434;17677;26042.22;22611.18;17530.18
-233;'854;Burkina Faso;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;9;15;0;0;335;326;613;1505;1505;1505;1505;802;274;695;558;900;2123;1684;1258;1159;1164;1222;1124;1144;2331;1632.36;1370.72
-233;'854;Burkina Faso;1861;Roundwood;5516;Production;m3;6233141;6318626;6406238;6493994;6585908;6677996;6770275;6864760;6960469;7058418;7209052;7294902;7458740;7492218;7628582;7632897;7773741;7862432;7907441;8117949;8230371;8196688;8385200;8646251;8678400;8791334;9027705;9152314;9349690;9641399;9767353;10046590;10341319;10636187;10819323;10964460;11124823;11282456;7820000;7996000;7996000;7192000;7337000;9211000;11704000;12231000;12744000;13589300;13770731;13955959;14134077;14315921;14501580;14691146;14884710;15041233;15200882;15363725;15529830;15699271;15870877;16046001;16224721
-233;'854;Burkina Faso;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;29;29;8;8;8;8;0;0;3404;3404;3404;3404;1559;57;138;407;1040;1961;2509;1860;1859;103;77;11;7;84;0;2
-233;'854;Burkina Faso;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;1;1;1;1;0;0;375;375;375;375;278;0;4;991;186;225;208;163;163;22;22;8;2;22;0;0
-233;'854;Burkina Faso;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1098;1098;3496;3496;3496;3496;2760;2140;669;492;17866;15223;11887;16;14;68;136;0;0;1994;88;0
-233;'854;Burkina Faso;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;326;326;329;329;329;329;688;128;46;28;552;835;418;3;2;48;99;0;0;1162;14;0
-233;'854;Burkina Faso;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;7;28;0;0
-233;'854;Burkina Faso;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;2;3;0;0
-233;'854;Burkina Faso;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1863;Roundwood, non-coniferous;5516;Production;m3;6233141;6318626;6406238;6493994;6585908;6677996;6770275;6864760;6960469;7058418;7209052;7294902;7458740;7492218;7628582;7632897;7773741;7862432;7907441;8117949;8230371;8196688;8385200;8646251;8678400;8791334;9027705;9152314;9349690;9641399;9767353;10046590;10341319;10636187;10819323;10964460;11124823;11282456;7820000;7996000;7996000;7192000;7337000;9211000;11704000;12231000;12744000;13589300;13770731;13955959;14134077;14315921;14501580;14691146;14884710;15041233;15200882;15363725;15529830;15699271;15870877;16046001;16224721
-233;'854;Burkina Faso;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;76;11;0;56;0;2
-233;'854;Burkina Faso;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;22;8;0;19;0;0
-233;'854;Burkina Faso;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;136;0;0;1994;88;0
-233;'854;Burkina Faso;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;99;0;0;1162;14;0
-233;'854;Burkina Faso;1864;Wood fuel;5516;Production;m3;6034141;6116626;6200238;6284994;6370908;6457996;6546275;6635760;6726469;6818418;6964052;7043902;7201740;7229218;7358582;7356897;7490741;7571432;7608441;7809949;7914371;7872688;8053200;8308251;8331000;8434934;8661305;8774914;8961290;9241999;9356953;9625190;9907919;10186787;10356823;10489460;10634823;10781856;7228000;7402000;7402000;6009000;6152000;8040000;10533000;11060000;11573000;12418300;12599731;12784959;12963077;13144921;13330580;13520146;13713710;13870233;14029882;14192725;14358830;14528271;14699877;14875001;15053721
-233;'854;Burkina Faso;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;934;1855;1855;1855;1855;;;;;;;
-233;'854;Burkina Faso;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;124;162;162;162;162;;;;;;;
-233;'854;Burkina Faso;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16927;11650;11650;14;14;;;;;;;
-233;'854;Burkina Faso;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;388;388;2;2;;;;;;;
-233;'854;Burkina Faso;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1628;Wood fuel, non-coniferous;5516;Production;m3;6034141;6116626;6200238;6284994;6370908;6457996;6546275;6635760;6726469;6818418;6964052;7043902;7201740;7229218;7358582;7356897;7490741;7571432;7608441;7809949;7914371;7872688;8053200;8308251;8331000;8434934;8661305;8774914;8961290;9241999;9356953;9625190;9907919;10186787;10356823;10489460;10634823;10781856;7228000;7402000;7402000;6009000;6152000;8040000;10533000;11060000;11573000;12418300;12599731;12784959;12963077;13144921;13330580;13520146;13713710;13870233;14029882;14192725;14358830;14528271;14699877;14875001;15053721
-233;'854;Burkina Faso;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;934;1855;1855;1855;1855;;;;;;;
-233;'854;Burkina Faso;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;124;162;162;162;162;;;;;;;
-233;'854;Burkina Faso;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16927;11650;11650;14;14;;;;;;;
-233;'854;Burkina Faso;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;388;388;2;2;;;;;;;
-233;'854;Burkina Faso;1865;Industrial roundwood;5516;Production;m3;199000;202000;206000;209000;215000;220000;224000;229000;234000;240000;245000;251000;257000;263000;270000;276000;283000;291000;299000;308000;316000;324000;332000;338000;347400;356400;366400;377400;388400;399400;410400;421400;433400;449400;462500;475000;490000;500600;592000;594000;594000;1183000;1185000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000
-233;'854;Burkina Faso;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;29;29;8;8;8;8;0;0;3404;3404;3404;3404;1559;57;132;401;106;106;654;5;4;103;77;11;7;84;0;2
-233;'854;Burkina Faso;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;1;1;1;1;0;0;375;375;375;375;278;0;4;991;62;63;46;1;1;22;22;8;2;22;0;0
-233;'854;Burkina Faso;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1098;1098;3496;3496;3496;3496;2760;2140;669;492;939;3573;237;2;0;68;136;0;0;1994;88;0
-233;'854;Burkina Faso;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;326;326;329;329;329;329;688;128;46;28;208;447;30;1;0;48;99;0;0;1162;14;0
-233;'854;Burkina Faso;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;0;0;0;0;0;0;0;0;0;0;0;0;17;17;1;1;555;0;0;0;1;0;7;28;0;0
-233;'854;Burkina Faso;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;34;0;0;3;0;0;2;3;0;0
-233;'854;Burkina Faso;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;242;242;2876;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;11;250;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;0;0;0;0;0;0;0;0;0;0;0;0;17;17;1;1;555;0;0;0;1;0;7;28;0;0
-233;'854;Burkina Faso;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;34;0;0;3;0;0;2;3;0;0
-233;'854;Burkina Faso;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;242;242;2876;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;11;250;0;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1867;Industrial roundwood, non-coniferous;5516;Production;m3;199000;202000;206000;209000;215000;220000;224000;229000;234000;240000;245000;251000;257000;263000;270000;276000;283000;291000;299000;308000;316000;324000;332000;338000;347400;356400;366400;377400;388400;399400;410400;421400;433400;449400;462500;475000;490000;500600;592000;594000;594000;1183000;1185000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000;1171000
-233;'854;Burkina Faso;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;8;0;0;3404;3404;3404;3404;1559;57;115;384;105;105;99;5;4;103;76;11;0;56;0;2
-233;'854;Burkina Faso;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;0;0;375;375;375;375;278;0;4;991;62;62;12;1;1;19;22;8;0;19;0;0
-233;'854;Burkina Faso;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1098;1098;3496;3496;3496;3496;2760;2140;423;250;697;697;237;2;0;68;136;0;0;1994;88;0
-233;'854;Burkina Faso;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;326;326;329;329;329;329;688;128;33;15;197;197;30;1;0;48;99;0;0;1162;14;0
-233;'854;Burkina Faso;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535;1535;1535;1535;1535;28;90;90;90;90;90;5;4;0;0;0;0;56;0;2
-233;'854;Burkina Faso;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;252;252;252;252;0;3;3;3;3;3;1;1;0;0;0;0;19;0;0
-233;'854;Burkina Faso;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1098;1098;1409;1409;1409;1409;673;53;398;225;225;225;225;2;0;68;136;0;0;1994;87;0
-233;'854;Burkina Faso;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;326;326;206;206;206;206;565;5;31;13;13;13;13;1;0;48;99;0;0;1162;14;0
-233;'854;Burkina Faso;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;8;0;0;1869;1869;1869;1869;24;29;25;294;15;15;9;0;0;103;76;11;0;0;0;0
-233;'854;Burkina Faso;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;0;0;123;123;123;123;26;0;1;988;59;59;9;0;0;19;22;8;0;0;0;0
-233;'854;Burkina Faso;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2087;2087;2087;2087;2087;2087;25;25;472;472;12;0;0;0;0;0;0;0;1;0
-233;'854;Burkina Faso;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123;123;2;2;184;184;17;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;4000;5000;5000;5000;5000;2000;1400;1400;1400;1400;1400;1400;1400;1400;1400;5400;5500;6000;8000;4600;83000;85000;85000;85000;87000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000
-233;'854;Burkina Faso;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;4000;5000;5000;5000;5000;2000;1400;1400;1400;1400;1400;1400;1400;1400;1400;5400;5500;6000;8000;4600;83000;85000;85000;85000;87000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000;73000
-233;'854;Burkina Faso;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1871;Other industrial roundwood;5516;Production;m3;199000;202000;206000;209000;213000;218000;222000;227000;232000;238000;243000;249000;255000;261000;268000;274000;281000;288000;295000;303000;311000;319000;327000;336000;346000;355000;365000;376000;387000;398000;409000;420000;432000;444000;457000;469000;482000;496000;509000;509000;509000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000
-233;'854;Burkina Faso;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;199000;202000;206000;209000;213000;218000;222000;227000;232000;238000;243000;249000;255000;261000;268000;274000;281000;288000;295000;303000;311000;319000;327000;336000;346000;355000;365000;376000;387000;398000;409000;420000;432000;444000;457000;469000;482000;496000;509000;509000;509000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000;1098000
-233;'854;Burkina Faso;1630;Wood charcoal;5510;Production;t;154748;158311;161956;165686;169501;173404;177396;181481;185660;189935;195362;198676;204553;206280;211366;213366;220011;225080;228895;238491;245217;247028;256978;270080;275076;281623;293003;300267;310615;325000;332843;347226;362501;378012;389389;399191;409855;421019;110000;112000;456659;469366;482427;495851;509649;524126;539000;554300;570070;586262;602645;619487;636798;654594;672887;689661;706853;724474;742534;761044;780233;799905;820073
-233;'854;Burkina Faso;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;0;0;0;0;0;0;0;0;0;0;0;39;11;11;1642;5000;5000;8;8;8;1;50;104;104;3;0
-233;'854;Burkina Faso;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;0;0;0;0;10;51;51;473;1043;1043;18;18;18;1;55;16;16;2;0
-233;'854;Burkina Faso;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-233;'854;Burkina Faso;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;857;857;857;857;857;857;857;857;857;857;857
-233;'854;Burkina Faso;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;23;50;50;50;50;50;50;50;50;2;50;13;11;11
-233;'854;Burkina Faso;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;20;20;20;20;20;20;20;20;1;20;9;8.18;8.18
-233;'854;Burkina Faso;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10
-233;'854;Burkina Faso;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2
-233;'854;Burkina Faso;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;48;48;48;48;48;48;48;48;0;48;11;11;11
-233;'854;Burkina Faso;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;19;19;19;19;19;19;19;19;0;19;8;8.18;8.18
-233;'854;Burkina Faso;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;2;2;2;2;2;2;2;2;2;2;2;0;0
-233;'854;Burkina Faso;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;0;0
-233;'854;Burkina Faso;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10
-233;'854;Burkina Faso;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2
-233;'854;Burkina Faso;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0
-233;'854;Burkina Faso;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1
-233;'854;Burkina Faso;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0
-233;'854;Burkina Faso;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1
-233;'854;Burkina Faso;1872;Sawnwood;5516;Production;m3;;;;;600;700;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1300;1300;2000;2000;2000;2000;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1300;1300;1200;1700;1300;1300;1300;1300;1800;1500;1200;1100;709;5200;5200;5200;5200;5200;5200;5200;5200;5500;5200;5200;5200;5200;5200;5200;5200;5200
-233;'854;Burkina Faso;1872;Sawnwood;5616;Import quantity;m3;;;;;8200;7700;4300;5900;8200;8200;8200;8200;8200;9800;10600;10600;15400;14900;15400;17600;20900;16300;17000;11500;14100;14100;20200;24400;24400;20800;20800;20819;20868;68;161;2268;2268;2768;2100;19600;19100;19100;10000;20772;20772;35116;8506;8212;3353;2855;2860;2550;3194;3623;760;559;1169;2553;15321;16489;16803;13831;14120
-233;'854;Burkina Faso;1872;Sawnwood;5622;Import value;1000 USD;;;;;731;650;347;247;244;244;244;244;244;554;670;670;1262;1194;2083;2626;3100;3700;3700;851;828;828;1710;2481;2481;2754;2754;2757;2771;17;46;633;637;917;800;1186;1117;1241;1000;2720;2720;2720;3418;3579;2314;1869;1643;1801;2239;2576;563;311;1298;2406;2496;2666;1879;1412;1374
-233;'854;Burkina Faso;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;47;0;0;0;0;995;4055;4055;4055;4055;43;43;38;25;17;17;47;313;57;0;0;0;0;0;81;0
-233;'854;Burkina Faso;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;15;0;0;0;0;165;1088;1088;1088;1088;23;23;3;0;3;50;58;102;19;0;0;0;3;0;70;0
-233;'854;Burkina Faso;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;68;68;68;68;68;68;0;0;0;0;0;4316;4316;4316;4316;4316;236;151;105;105;105;25;44;18;0;1;130;16;0;2;291
-233;'854;Burkina Faso;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;17;17;17;17;17;17;0;0;0;0;0;751;751;751;751;751;14;12;4;4;18;20;14;5;0;0;2;19;0;69;31
-233;'854;Burkina Faso;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;938;938;938;938;938;25;25;25;25;12;12;12;244;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;140;140;140;140;140;15;15;0;0;2;0;18;60;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;600;700;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1300;1300;2000;2000;2000;2000;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1300;1300;1200;1700;1300;1300;1300;1300;1800;1500;1200;1100;709;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200;5200
-233;'854;Burkina Faso;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;8200;7700;4300;5900;8200;8200;8200;8200;8200;9800;10600;10600;15400;14900;15400;17600;20900;16300;17000;11500;14100;14100;20200;24400;24400;20800;20800;20800;20800;0;93;2200;2200;2700;2100;19600;19100;19100;10000;16456;16456;30800;4190;3896;3117;2704;2755;2445;3089;3598;716;541;1169;2552;15191;16473;16803;13829;13829
-233;'854;Burkina Faso;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;731;650;347;247;244;244;244;244;244;554;670;670;1262;1194;2083;2626;3100;3700;3700;851;828;828;1710;2481;2481;2754;2754;2754;2754;0;29;616;620;900;800;1186;1117;1241;1000;1969;1969;1969;2667;2828;2300;1857;1639;1797;2221;2556;549;306;1298;2406;2494;2647;1879;1343;1343
-233;'854;Burkina Faso;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;47;0;0;0;0;57;3117;3117;3117;3117;18;18;13;0;5;5;35;69;57;0;0;0;0;0;81;0
-233;'854;Burkina Faso;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;15;0;0;0;0;25;948;948;948;948;8;8;3;0;1;50;40;42;19;0;0;0;3;0;70;0
-233;'854;Burkina Faso;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;200;100;200;200;500;700;700;721;162;162;162;162;186;6;102;23;1114;8;218;9015;1708;256;43;43;8;298;213;313
-233;'854;Burkina Faso;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;70;33;77;53;125;157;157;117;127;127;127;127;46;6;23;59;1054;221;136;1192;1346;259;14;14;18;91;62;53
-233;'854;Burkina Faso;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;0;85;13;3;0;0;0;0;0
-233;'854;Burkina Faso;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;2;0;0;9;7;15;0;20;0;0;0
-233;'854;Burkina Faso;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;300;500;800;800;800;800;800;1400;1200;1200;1100;1100;1200;1400;1800;1800;1200;2000;2000;2000;3300;1800;1800;300;300;264;181;52;165;4825;5048;4625;5000;1500;1100;1950;1211;1985;1985;4762;5562;3337;9877;4737;9096;8475;8399;5627;4804;13588;27799;23257;21835;25879;26716;23331;21236
-233;'854;Burkina Faso;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;77;80;110;110;110;110;110;351;340;340;330;426;480;450;555;555;385;570;570;570;1894;1101;1101;128;128;108;100;50;110;1866;1710;1746;1797;627;398;526;285;434;434;1033;1220;9267;1796;4320;6824;6482;6438;4089;3421;8973;17819;1997;2091;3434;4597;4796;4497
-233;'854;Burkina Faso;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;5;21;21;21;21;128;0;39;2;1;76;76;77;69;69
-233;'854;Burkina Faso;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;48;1;4;49;68;0;20;0;1;20;21;19;98;98
-233;'854;Burkina Faso;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;300;500;800;800;800;800;800;1400;1200;1200;1100;1100;1200;1400;1800;1800;1200;2000;2000;2000;2600;1400;1400;100;100;100;22;22;40;4700;5000;4500;5000;1500;1100;1100;1000;641;641;1700;2100;3233;9758;4564;8834;8286;8210;5546;4687;13516;27750;23173;21745;25578;26312;22947;20843
-233;'854;Burkina Faso;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;77;80;110;110;110;110;110;351;340;340;330;426;480;450;555;555;385;570;570;570;1678;906;906;45;45;45;31;31;44;1800;1700;1690;1797;627;398;398;177;228;228;599;742;9174;1638;4065;6591;6281;6237;3919;3327;8897;17784;1971;1981;3275;4422;4691;4417
-233;'854;Burkina Faso;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;5;21;21;21;21;128;0;39;2;1;0;0;1;0;0
-233;'854;Burkina Faso;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;48;1;4;49;68;0;20;0;1;1;2;0;0;0
-233;'854;Burkina Faso;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;400;200;200;129;129;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;216;195;195;83;83;50;50;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;39;116;0;0;0;300;209;739;739;739;739;37;52;79;46;1;1;24;25;25;25;25;24;60;91;89;77
-233;'854;Burkina Faso;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;9;55;0;0;0;58;104;121;121;121;121;26;73;174;33;6;6;34;7;7;7;7;74;103;35;26;20
-233;'854;Burkina Faso;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;2;2
-233;'854;Burkina Faso;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;53;53
-233;'854;Burkina Faso;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;3;1;1;1;1;11;17;3;17;0
-233;'854;Burkina Faso;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;2;1;1;1;1;21;1;1;1;1
-233;'854;Burkina Faso;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;67;67
-233;'854;Burkina Faso;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;45;45
-233;'854;Burkina Faso;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;30;30;9;9;9;9;0;0;0;550;2;605;605;2323;2723;64;64;91;213;188;188;54;91;46;23;58;55;224;310;278;316
-233;'854;Burkina Faso;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;19;1;1;1;1;0;0;0;70;4;85;85;313;357;64;82;78;197;195;195;134;86;68;27;18;15;55;139;78;59
-233;'854;Burkina Faso;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;2;8;8;19;19;19;19;19;19;19;27;27;27;27;27;27
-233;'854;Burkina Faso;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;3;19;19;16;16;16;16;16;16;16;5;5;5;10;10;23
-233;'854;Burkina Faso;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;39;35;144;144;144;10;47;2;3;30;16;102;281;242;128
-233;'854;Burkina Faso;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;48;17;129;129;129;68;20;2;5;7;7;17;127;55;27
-233;'854;Burkina Faso;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;30;30;9;9;9;9;0;0;0;550;2;582;582;2300;2700;49;17;48;50;25;25;25;25;25;1;1;12;95;2;9;161
-233;'854;Burkina Faso;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;19;1;1;1;1;0;0;0;70;4;74;74;302;346;51;15;42;52;50;50;50;50;50;6;6;3;33;2;13;9
-233;'854;Burkina Faso;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;27;27;27;4;4;4;4;4;6;127;127;127;127;127;162;150;67;120;95;86;103;127;137;137;143;114;118;132;114
-233;'854;Burkina Faso;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;16;16;16;6;6;6;6;6;21;48;48;48;48;48;240;226;29;51;49;49;46;61;79;79;75;79;139;100;91
-233;'854;Burkina Faso;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;284;284;284;284;284;284;64;52;52;128;150;128;128;128;128;52;97;97;97;97
-233;'854;Burkina Faso;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;79;79;79;86;100;86;86;86;86;90;79;79;79;79
-233;'854;Burkina Faso;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;12;12;12;4;4;4;4;4;4;90;90;90;90;90;90;90;42;82;82;82;81;86;96;96;89;101;115;108;105
-233;'854;Burkina Faso;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;15;15;15;6;6;6;6;6;6;44;44;44;44;44;44;44;29;48;48;48;41;50;68;68;56;78;106;92;91
-233;'854;Burkina Faso;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;71;49;49;49;49;49;49;49;49;49
-233;'854;Burkina Faso;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;92;78;78;78;78;78;78;78;78;78
-233;'854;Burkina Faso;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;86;86;86;86;86;86;87;39;79;79;79;103;108;118;118;111;123;137;130;127
-233;'854;Burkina Faso;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;0;0;0;0;0;0;38;38;38;38;38;38;40;25;44;44;42;36;45;63;63;51;73;101;87;86
-233;'854;Burkina Faso;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;71;49;49;49;49;49;49;49;49;49
-233;'854;Burkina Faso;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;92;78;78;78;78;78;78;78;78;78
-233;'854;Burkina Faso;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;86;86;86;86;86;86;86;38;78;78;78;77;82;92;92;85;97;111;104;101
-233;'854;Burkina Faso;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;0;0;0;0;0;0;38;38;38;38;38;38;38;23;42;42;42;35;44;62;62;50;72;100;86;85
-233;'854;Burkina Faso;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;71;49;49;49;49;49;49;49;49;49
-233;'854;Burkina Faso;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;92;78;78;78;78;78;78;78;78;78
-233;'854;Burkina Faso;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;40;40
-233;'854;Burkina Faso;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19
-233;'854;Burkina Faso;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36
-233;'854;Burkina Faso;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;0;0;0;0;0;0;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-233;'854;Burkina Faso;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;49
-233;'854;Burkina Faso;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;78;78;78;78;78;78;78;78
-233;'854;Burkina Faso;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;9;21;35;28;25
-233;'854;Burkina Faso;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;16;38;66;52;51
-233;'854;Burkina Faso;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;2;2;2;2;1;6;;;;;;;
-233;'854;Burkina Faso;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;8;8;8;8;1;10;;;;;;;
-233;'854;Burkina Faso;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;;;;;;;
-233;'854;Burkina Faso;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;;;;;;;
-233;'854;Burkina Faso;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;26;26;26;26;26;26;26;26;26
-233;'854;Burkina Faso;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;1;1;1;1;1;1;1;1;1
-233;'854;Burkina Faso;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-233;'854;Burkina Faso;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6
-233;'854;Burkina Faso;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;0;0;0;0;0;2;37;37;37;37;37;72;60;25;38;13;4;22;41;41;41;54;13;3;24;9
-233;'854;Burkina Faso;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;15;4;4;4;4;4;196;182;0;3;1;1;5;11;11;11;19;1;33;8;0
-233;'854;Burkina Faso;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;284;284;284;284;284;284;15;3;3;79;79;79;79;79;79;3;48;48;48;48
-233;'854;Burkina Faso;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;1;1;1;8;8;8;8;8;8;12;1;1;1;1
-233;'854;Burkina Faso;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;944;944;944;944;944;944;944;944;944;944;944
-233;'854;Burkina Faso;1876;Paper and paperboard;5610;Import quantity;t;200;200;200;900;900;900;500;600;800;700;500;500;500;800;600;600;800;900;1000;1200;1600;1100;800;800;1600;1600;3400;4700;1500;2200;2200;2203;1954;1954;489;8355;9300;11300;4250;3800;8250;8250;3628;11319;11319;11319;11319;3455;7735;9650;11651;3036;3036;14759;7408;5747;6543;7903;12193;15487;18701.76;13656;11878
-233;'854;Burkina Faso;1876;Paper and paperboard;5622;Import value;1000 USD;49;49;49;270;270;270;150;180;240;214;163;163;163;522;795;795;667;693;988;1370;1579;1100;804;804;1029;1029;5364;5827;2095;2595;2595;2484;1959;1959;769;7377;8122;11209;4625;4580;5916;5925;5081;8075;8075;8075;8075;4362;10298;12765;14956;6475;6475;16660;6252;5334;6468;8784;9693;11441;19288.22;16230;11505
-233;'854;Burkina Faso;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;65;65;65;65;54;93;478;402;264;264;181;195;154;154;156;160;153;148;211.67;198.05
-233;'854;Burkina Faso;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;60;60;60;60;60;94;508;450;244;244;183;210;164;164;162;155;162;212;512.36;334.72
-233;'854;Burkina Faso;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084;680;680;375;3655;3800;3900;2300;2000;5500;5500;2163;4318;4318;4318;4318;1642;4146;6665;8183;2332;2332;10895;6366;4513;4948;6041;9131;12232;14656.88;10938;9603
-233;'854;Burkina Faso;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;828;828;574;3477;3546;3709;1815;1829;3431;3431;2266;3047;3047;3047;3047;1933;4437;6791;8017;3548;3548;9037;4786;3867;4728;6554;5428;6582;10105.79;8786;5818
-233;'854;Burkina Faso;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;10;10;10;10;4;43;336;298;160;160;40;72;31;31;33;37;30;28;17.05;38.05
-233;'854;Burkina Faso;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;7;7;7;7;6;40;380;359;153;153;71;87;41;41;39;32;39;23;38.72;24.72
-233;'854;Burkina Faso;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;600;700;900;1000;1000;1000;166;1290;1290;1290;1290;452;1364;1551;2160;595;595;3419;2035;459;585;750;2119;2143;3194.63;2384;778
-233;'854;Burkina Faso;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;546;609;517;583;583;583;86;658;658;658;658;383;1410;1449;2014;378;378;3178;1597;281;347;511;1865;1869;3333.28;3141;944
-233;'854;Burkina Faso;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;24;24;10;60;22;22;22;11;22;2;2.05;2.05
-233;'854;Burkina Faso;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;30;30;20;61;15;15;15;10;15;1;0.72;0.72
-233;'854;Burkina Faso;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084;680;680;320;3600;3200;3200;1400;1000;4500;4500;1997;3028;3028;3028;3028;1190;2782;5114;6023;1737;1737;7476;4331;4054;4363;5291;7012;10089;11462.25;8554;8825
-233;'854;Burkina Faso;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;828;828;497;3400;3000;3100;1298;1246;2848;2848;2180;2389;2389;2389;2389;1550;3027;5342;6003;3170;3170;5859;3189;3586;4381;6043;3563;4713;6772.51;5645;4874
-233;'854;Burkina Faso;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;10;10;10;10;4;43;180;142;136;136;30;12;9;9;11;26;8;26;15;36
-233;'854;Burkina Faso;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;7;7;7;7;6;40;273;252;123;123;51;26;26;26;24;22;24;22;38;24
-233;'854;Burkina Faso;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829;800;600;200;200;177;462;462;462;462;229;30;284;13;19;19;39;226;7;85;85;97;11;250;118;82
-233;'854;Burkina Faso;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667;698;858;159;159;203;364;364;364;364;261;42;318;32;41;41;24;201;27;194;194;55;17;139;253;119
-233;'854;Burkina Faso;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;41;41;3;3;3;3;3;3;3;3;3;3;3;3;3
-233;'854;Burkina Faso;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;40;40;19;19;19;19;19;19;19;19;19;19;19;19;19
-233;'854;Burkina Faso;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;200;200;700;700;1090;1383;1383;1383;1383;403;1477;3372;4770;1520;1520;6328;2642;3466;3293;3148;6162;8921;9568.01;6152;7232
-233;'854;Burkina Faso;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;97;116;724;724;1066;1092;1092;1092;1092;585;1471;3247;4525;2869;2869;4829;2243;3051;2909;3366;3260;4151;5270.9;3230;3555
-233;'854;Burkina Faso;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;3;7;4;4;4;4;4;4;5;5
-233;'854;Burkina Faso;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;82;4;3;3;3;3;3;3;3;5;5
-233;'854;Burkina Faso;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;400;200;3600;3600;730;1183;1183;1183;1183;558;1275;1458;1240;198;198;1109;1463;581;985;2058;753;1157;1644.24;2284;1511
-233;'854;Burkina Faso;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201;503;272;1965;1965;911;933;933;933;933;704;1514;1777;1446;260;260;1006;745;508;1278;2483;248;545;1362.61;2162;1200
-233;'854;Burkina Faso;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;10;10;10;10;2;2;30;30;24;24;24;2;2;2;4;19;1;19;7;28
-233;'854;Burkina Faso;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;7;7;7;7;0;0;151;151;22;22;28;4;4;4;2;0;2;0;14;0
-233;'854;Burkina Faso;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;944;944;944;944;944;944;944;944;944;944;944
-233;'854;Burkina Faso;1675;Other paper and paperboard;5610;Import quantity;t;200;200;200;900;900;900;500;600;800;700;500;500;500;800;600;600;800;900;1000;1200;1600;1100;800;800;1600;1600;3400;4700;1500;2200;2200;1119;1274;1274;114;4700;5500;7400;1950;1800;2750;2750;1465;7001;7001;7001;7001;1813;3589;2985;3468;704;704;3864;1042;1234;1595;1862;3062;3255;4044.88;2718;2275
-233;'854;Burkina Faso;1675;Other paper and paperboard;5622;Import value;1000 USD;49;49;49;270;270;270;150;180;240;214;163;163;163;522;795;795;667;693;988;1370;1579;1100;804;804;1029;1029;5364;5827;2095;2595;2595;1063;1131;1131;195;3900;4576;7500;2810;2751;2485;2494;2815;5028;5028;5028;5028;2429;5861;5974;6939;2927;2927;7623;1466;1467;1740;2230;4265;4859;9182.43;7444;5687
-233;'854;Burkina Faso;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;55;55;55;55;50;50;142;104;104;104;141;123;123;123;123;123;123;120;194.62;160
-233;'854;Burkina Faso;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;53;53;53;53;54;54;128;91;91;91;112;123;123;123;123;123;123;189;473.64;310
-233;'854;Burkina Faso;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;87;87;87;87;13;23;13;10;6;6;21;31;10;9;59;64;57;64;9;19
-233;'854;Burkina Faso;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;385;441;441;441;441;95;95;95;95;60;41;16;68;13;13;42;30;19;23;73;35;13;32;27;23
-233;'854;Burkina Faso;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;300;650;650;762;4956;4956;4956;4956;1770;3331;2628;2901;141;141;3265;973;1195;1575;1797;2736;2954;3648.88;2339;1947
-233;'854;Burkina Faso;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;622;851;860;1114;3072;3072;3072;3072;2164;4317;3891;4240;283;283;4647;1376;1237;1686;2063;2310;2585;5838.98;4476;3267
-233;'854;Burkina Faso;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;15;15;15;10;10;102;102;102;102;139;121;121;121;121;121;121;114;189;159
-233;'854;Burkina Faso;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;9;9;9;10;10;84;84;84;84;105;116;116;116;116;116;116;125;410;300
-233;'854;Burkina Faso;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;303;153;153;153;153;153;948;69;7;27;27;63;138;34;12;91;317;152;103;27;78
-233;'854;Burkina Faso;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;107;95;95;95;95;95;625;34;16;49;49;91;106;25;12;91;115;49;88;32;76
-233;'854;Burkina Faso;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;251;1554;1554;1554;1554;23;604;189;114;33;33;268;288;181;45;116;183;93;131;161;125
-233;'854;Burkina Faso;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;422;422;476;963;963;963;963;46;1273;887;513;152;152;738;600;215;143;149;163;182;187;518;302
-233;'854;Burkina Faso;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-233;'854;Burkina Faso;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;79;79;79;79;79;79;79;79;79;79;79;79;79;79
-233;'854;Burkina Faso;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;100;150;150;208;3233;3233;3233;3233;1578;1766;2357;2767;68;68;2921;534;967;1393;1099;2149;2345;3212.88;1948;1596
-233;'854;Burkina Faso;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;200;248;257;531;2004;2004;2004;2004;2013;2415;2966;3707;78;78;3814;666;993;1463;1506;1941;2060;5371.98;3673;2600
-233;'854;Burkina Faso;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;7;7;2;2;2;2;2;2;39;21;21;21;21;21;21;14;89;59
-233;'854;Burkina Faso;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;4;4;4;5;5;5;5;5;5;26;37;37;37;37;37;37;46;331;221
-233;'854;Burkina Faso;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;13;13;13;13;13;13;13;13;125;491;87;364;202;203;148
-233;'854;Burkina Faso;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;4;4;4;4;4;4;4;4;68;317;91;294;192;253;289
-233;'854;Burkina Faso;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;944;944;944;944;944;944;944;944;944;944;944
-233;'854;Burkina Faso;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5500;7400;1000;1100;1700;1700;303;1958;1958;1958;1958;30;235;344;557;557;557;578;38;29;11;6;262;244;332;370;309
-233;'854;Burkina Faso;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;4576;7500;1325;1688;1193;1193;1260;1861;1861;1861;1861;205;1503;2067;2631;2631;2631;2934;60;211;31;94;1920;2261;3311.44;2941;2397
-233;'854;Burkina Faso;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;2;2;2;2;2;2;2;2;2;2;6;5.62;1
-233;'854;Burkina Faso;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;7;7;7;7;7;7;7;7;7;7;64;63.64;10
-233;'854;Burkina Faso;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8250;9681;8856;7587;10087;14964;18174
-233;'854;Burkina Faso;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1788;1930;762;281;165;155;1377
-233;'854;Burkina Faso;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;27;16;6;18;31
-233;'854;Burkina Faso;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;10;7;7;7
-233;'854;Burkina Faso;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;10;10
-233;'854;Burkina Faso;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6
-233;'854;Burkina Faso;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;27;16;2;8;21
-233;'854;Burkina Faso;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;4;1;1;1
-233;'854;Burkina Faso;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;74;199;87;138;148;192
-233;'854;Burkina Faso;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;130;31;31;0;6;9
-233;'854;Burkina Faso;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;86;58;89;144;182;114
-233;'854;Burkina Faso;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;4;18;14;16;30
-233;'854;Burkina Faso;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606;521;526;1190;565;973;388
-233;'854;Burkina Faso;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0
-233;'854;Burkina Faso;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-233;'854;Burkina Faso;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-233;'854;Burkina Faso;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54
-233;'854;Burkina Faso;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-233;'854;Burkina Faso;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6072;8399;7545;5702;8722;10851;9406
-233;'854;Burkina Faso;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765;1770;716;218;143;116;661
-233;'854;Burkina Faso;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;36;3;6;6;9;5
-233;'854;Burkina Faso;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-233;'854;Burkina Faso;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1359;560;498;497;506;2783;8038
-233;'854;Burkina Faso;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;8;4;4;1;10;670
-233;'854;Burkina Faso;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26722;30250;32468;33596;43595;55828;43051
-233;'854;Burkina Faso;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;174;163;311;488;2409;375
-233;'854;Burkina Faso;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;1;1;1;1
-233;'854;Burkina Faso;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-233;'854;Burkina Faso;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610;419;119;365;340;479;337
-233;'854;Burkina Faso;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;3;3;3;3;3
-233;'854;Burkina Faso;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1532;1707;1609;1582;2178;2114;2343
-233;'854;Burkina Faso;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;13;4;4;4;3
-233;'854;Burkina Faso;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14490;16682;21136;20841;27852;38501;25417
-233;'854;Burkina Faso;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;147;134;232;451;2372;274
-233;'854;Burkina Faso;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10090;11442;9602;10807;13224;14733;14953
-233;'854;Burkina Faso;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;19;13;72;30;30;95
-29;'108;Burundi;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14882;13092;18886;19646;18219.08;23065;11316
-29;'108;Burundi;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;246;339;159;288;156.4;355.4
-29;'108;Burundi;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;35;29;29;128;128;128;176;176;160;374;317;1820;1137;900;1342;1342;1342;1568;2355;2727;5460;601;561;2008;10562;6991;1620;1636;2555;2727;870;819;954;2466;2466;1314;3156;3839;5359;6580;5734;12176;20348.24;4547;4414;3072;5246;4997;7097;4747;4146.08;6631;3822
-29;'108;Burundi;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;212;37;72;72;0;0;0;141;640;667;667;687;864;674;786;1314;1269;1592;1551;992;793;560;190;179;282;131;210;104.4;261.4
-29;'108;Burundi;1861;Roundwood;5516;Production;m3;3539519;3582875;3627766;3673198;3719179;3764714;3811811;3858777;3906718;3954142;3881755;3977876;3949092;3999413;4058163;4078808;4093663;4223215;4340541;4471463;4520868;4693216;4829993;5013195;5592578;5760028;5908342;6065872;6249829;6458576;6529528;6612578;6798635;7090167;7371918;7711125;7893032;8078207;5940000;6187000;8718615;8862237;9086433;9235247;9424727;9563678;9705000;9848300;9994143;10142292;10279845;6359896;6632000;6624000;6624000;6624000;6624000;6624000;6624000;6624000;6624000;6624000;6624000
-29;'108;Burundi;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;235;1464;44;635;341;247;247;2153;1140;0;1;179;60;0;0;4;0;0
-29;'108;Burundi;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;15;90;4;100;88;82;76;1228.24;777;0;0;6;1;0;0;1;0;0
-29;'108;Burundi;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;0;0;0;3602;4505;6856;6856;6856;3201;3210;3270;2845;2777;3754;3658;3667;3037;1037;20;2;0;0;0;0;1990
-29;'108;Burundi;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;114;392;541;541;541;538;503;514;425;421;633;628;629;406;261;6;0;0;0;0;0;76
-29;'108;Burundi;1862;Roundwood, coniferous;5516;Production;m3;1000;1000;1000;2000;2000;2000;2000;2300;2000;1600;1400;1300;1200;1500;1500;1500;1900;2000;2000;2000;2000;2000;2000;8000;157000;157000;157000;157000;157000;174000;174000;174000;174000;174000;198000;198000;198000;198000;198000;220000;220000;220000;242000;242000;253000;253000;253000;253000;253000;253000;253000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000
-29;'108;Burundi;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-29;'108;Burundi;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-29;'108;Burundi;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;177
-29;'108;Burundi;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;76
-29;'108;Burundi;1863;Roundwood, non-coniferous;5516;Production;m3;3538519;3581875;3626766;3671198;3717179;3762714;3809811;3856477;3904718;3952542;3880355;3976576;3947892;3997913;4056663;4077308;4091763;4221215;4338541;4469463;4518868;4691216;4827993;5005195;5435578;5603028;5751342;5908872;6092829;6284576;6355528;6438578;6624635;6916167;7173918;7513125;7695032;7880207;5742000;5967000;8498615;8642237;8844433;8993247;9171727;9310678;9452000;9595300;9741143;9889292;10026845;6221896;6494000;6486000;6486000;6486000;6486000;6486000;6486000;6486000;6486000;6486000;6486000
-29;'108;Burundi;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;60;0;0;4;0;0
-29;'108;Burundi;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;0;0;1;0;0
-29;'108;Burundi;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;2;0;0;0;0;1813
-29;'108;Burundi;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0
-29;'108;Burundi;1864;Wood fuel;5516;Production;m3;3514519;3557875;3601766;3646198;3691179;3736714;3782811;3829477;3876718;3924542;3851355;3947576;3918892;3968913;4026663;4047308;4060763;4189215;4306541;4436463;4484868;4656216;4791993;4968195;5042578;5210028;5358342;5515872;5699829;5843576;5914528;5997578;6183635;6475167;6683918;7023125;7205032;7390207;5252000;5420000;7951615;8095237;8241433;8390247;8541727;8680678;8822000;8965300;9111143;9259292;9396845;5742896;6007000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000
-29;'108;Burundi;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;2;0;0;0;;;;;;;
-29;'108;Burundi;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0.24;0;0;0;;;;;;;
-29;'108;Burundi;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;363;363;12;12;922;922;922;922;922;;;;;;;
-29;'108;Burundi;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;0;0;228;228;228;228;228;;;;;;;
-29;'108;Burundi;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1628;Wood fuel, non-coniferous;5516;Production;m3;3514519;3557875;3601766;3646198;3691179;3736714;3782811;3829477;3876718;3924542;3851355;3947576;3918892;3968913;4026663;4047308;4060763;4189215;4306541;4436463;4484868;4656216;4791993;4968195;5042578;5210028;5358342;5515872;5699829;5843576;5914528;5997578;6183635;6475167;6683918;7023125;7205032;7390207;5252000;5420000;7951615;8095237;8241433;8390247;8541727;8680678;8822000;8965300;9111143;9259292;9396845;5742896;6007000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000;5999000
-29;'108;Burundi;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;2;0;0;0;;;;;;;
-29;'108;Burundi;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0.24;0;0;0;;;;;;;
-29;'108;Burundi;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;363;363;12;12;922;922;922;922;922;;;;;;;
-29;'108;Burundi;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;0;0;228;228;228;228;228;;;;;;;
-29;'108;Burundi;1865;Industrial roundwood;5516;Production;m3;25000;25000;26000;27000;28000;28000;29000;29300;30000;29600;30400;30300;30200;30500;31500;31500;32900;34000;34000;35000;36000;37000;38000;45000;550000;550000;550000;550000;550000;615000;615000;615000;615000;615000;688000;688000;688000;688000;688000;767000;767000;767000;845000;845000;883000;883000;883000;883000;883000;883000;883000;617000;625000;625000;625000;625000;625000;625000;625000;625000;625000;625000;625000
-29;'108;Burundi;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;1463;43;634;340;246;246;2151;1140;0;1;179;60;0;0;4;0;0
-29;'108;Burundi;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;89;3;99;87;81;75;1228;777;0;0;6;1;0;0;1;0;0
-29;'108;Burundi;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;0;0;0;3602;4505;6856;6856;6856;2838;2847;2907;2833;2765;2832;2736;2745;2115;115;20;2;0;0;0;0;1990
-29;'108;Burundi;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;114;392;541;541;541;440;405;416;425;421;405;400;401;178;33;6;0;0;0;0;0;76
-29;'108;Burundi;1866;Industrial roundwood, coniferous;5516;Production;m3;1000;1000;1000;2000;2000;2000;2000;2300;2000;1600;1400;1300;1200;1500;1500;1500;1900;2000;2000;2000;2000;2000;2000;8000;157000;157000;157000;157000;157000;174000;174000;174000;174000;174000;198000;198000;198000;198000;198000;220000;220000;220000;242000;242000;253000;253000;253000;253000;253000;253000;253000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000
-29;'108;Burundi;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;1463;43;389;94;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;89;3;24;6;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3601;3601;3601;3601;3601;68;68;68;68;0;96;0;0;0;0;0;0;0;0;0;0;177
-29;'108;Burundi;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;4;4;4;4;0;5;0;0;0;0;0;0;0;0;0;0;76
-29;'108;Burundi;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;1463;43;389;94;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;89;3;24;6;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3601;3601;3601;3601;3601;68;68;68;68;0;96;0;0;0;0;0;0;0;0;0;0;177
-29;'108;Burundi;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;4;4;4;4;0;5;0;0;0;0;0;0;0;0;0;0;76
-29;'108;Burundi;1867;Industrial roundwood, non-coniferous;5516;Production;m3;24000;24000;25000;25000;26000;26000;27000;27000;28000;28000;29000;29000;29000;29000;30000;30000;31000;32000;32000;33000;34000;35000;36000;37000;393000;393000;393000;393000;393000;441000;441000;441000;441000;441000;490000;490000;490000;490000;490000;547000;547000;547000;603000;603000;630000;630000;630000;630000;630000;630000;630000;479000;487000;487000;487000;487000;487000;487000;487000;487000;487000;487000;487000
-29;'108;Burundi;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;246;246;246;2151;1140;0;1;179;60;0;0;4;0;0
-29;'108;Burundi;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;81;81;75;1228;777;0;0;6;1;0;0;1;0;0
-29;'108;Burundi;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;0;0;0;1;904;3255;3255;3255;2770;2779;2839;2765;2765;2736;2736;2745;2115;115;20;2;0;0;0;0;1813
-29;'108;Burundi;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;2;280;429;429;429;436;401;412;421;421;400;400;401;178;33;6;0;0;0;0;0;0
-29;'108;Burundi;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;161;60;0;0;4;0;0
-29;'108;Burundi;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;5;1;0;0;1;0;0
-29;'108;Burundi;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;0;0;0;1;743;2729;2729;2729;2729;2729;2729;2729;2729;2729;2729;2729;2115;115;20;2;0;0;0;0;1813
-29;'108;Burundi;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;2;233;398;398;398;398;398;398;398;398;398;398;398;178;33;6;0;0;0;0;0;0
-29;'108;Burundi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;245;245;245;2150;1139;0;1;18;0;0;0;0;0;0
-29;'108;Burundi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;1228;777;0;0;1;0;0;0;0;0;0
-29;'108;Burundi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;526;526;526;41;50;110;36;36;7;7;16;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;31;31;31;38;3;14;23;23;2;2;3;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;2000;2000;2000;2000;2300;2000;1600;1400;1300;1200;1500;1500;1500;1900;2000;2000;2000;2000;2000;2000;8000;191000;191000;191000;191000;191000;218000;218000;218000;218000;218000;239000;239000;239000;239000;239000;267000;267000;267000;294000;294000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000;307000
-29;'108;Burundi;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1000;1000;1000;2000;2000;2000;2000;2300;2000;1600;1400;1300;1200;1500;1500;1500;1900;2000;2000;2000;2000;2000;2000;8000;86000;86000;86000;86000;86000;95000;95000;95000;95000;95000;108000;108000;108000;108000;108000;120000;120000;120000;132000;132000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000
-29;'108;Burundi;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;105000;105000;105000;105000;105000;123000;123000;123000;123000;123000;131000;131000;131000;131000;131000;147000;147000;147000;162000;162000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000;169000
-29;'108;Burundi;1871;Other industrial roundwood;5516;Production;m3;24000;24000;25000;25000;26000;26000;27000;27000;28000;28000;29000;29000;29000;29000;30000;30000;31000;32000;32000;33000;34000;35000;36000;37000;359000;359000;359000;359000;359000;397000;397000;397000;397000;397000;449000;449000;449000;449000;449000;500000;500000;500000;551000;551000;576000;576000;576000;576000;576000;576000;576000;310000;318000;318000;318000;318000;318000;318000;318000;318000;318000;318000;318000
-29;'108;Burundi;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;71000;71000;71000;71000;71000;79000;79000;79000;79000;79000;90000;90000;90000;90000;90000;100000;100000;100000;110000;110000;115000;115000;115000;115000;115000;115000;115000;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;24000;24000;25000;25000;26000;26000;27000;27000;28000;28000;29000;29000;29000;29000;30000;30000;31000;32000;32000;33000;34000;35000;36000;37000;288000;288000;288000;288000;288000;318000;318000;318000;318000;318000;359000;359000;359000;359000;359000;400000;400000;400000;441000;441000;461000;461000;461000;461000;461000;461000;461000;310000;318000;318000;318000;318000;318000;318000;318000;318000;318000;318000;318000
-29;'108;Burundi;1630;Wood charcoal;5510;Production;t;104731;106029;107343;108674;110020;111384;112764;114162;115577;117009;113055;117171;115589;117506;119545;119639;119045;123746;127738;132346;132318;137972;141766;147439;148213;153159;157161;161504;167259;171475;174010;177477;185945;199434;208846;223291;229619;236753;57000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;269000;264000;264000;264000;264000;264000;264000;264000;373394;379560;385828
-29;'108;Burundi;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;3;2;1;1;1;1;0;0
-29;'108;Burundi;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;1;1
-29;'108;Burundi;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;5;5;5;5;5;5;5;28;0;0;1;1
-29;'108;Burundi;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;1;1;1;1;9;0;0;0;0
-29;'108;Burundi;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2
-29;'108;Burundi;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56
-29;'108;Burundi;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-29;'108;Burundi;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35
-29;'108;Burundi;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-29;'108;Burundi;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2
-29;'108;Burundi;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-29;'108;Burundi;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1872;Sawnwood;5516;Production;m3;;;1200;1100;1100;800;800;800;700;1000;800;800;4000;600;600;600;1400;1400;1000;1000;1000;1000;1000;4000;3000;3000;3000;3000;3000;2000;3300;3300;19700;21400;42500;33000;33000;33000;80000;83000;83000;83000;83000;83000;83000;82800;83300;83300;83300;83300;83300;37817;39706;34113;34113;34113;34113;34113;34113;34113;34113;34113;34113
-29;'108;Burundi;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;0;0;0;0;0;0;0;0;0;1;1;1;20;22;150;38;71;637;303;148;146;86;51;85;86;44;52;11;21
-29;'108;Burundi;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;4;27;6;150;47;760;26;8;33;28;53;43;30;35;12;12
-29;'108;Burundi;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;357;100;142;142;0;0;0;11;1013;154;154;108;99;91;1154;230;94;95;95;28;30;120;0;3;279;0;0;0;81
-29;'108;Burundi;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;212;37;54;54;0;0;0;10;171;38;38;36;36;39;82;47;4;41;3;7;6;45;0;3;44;8;2;0;86
-29;'108;Burundi;1632;Sawnwood, coniferous;5516;Production;m3;;;1000;800;800;800;800;800;700;1000;800;800;4000;600;600;600;1400;1400;1000;1000;1000;1000;1000;4000;3000;3000;3000;3000;3000;2000;3300;3300;10700;9400;20500;7000;7000;7000;17000;18000;18000;18000;18000;18000;18000;17800;18300;18300;18300;18300;18300;18300;20923;20923;20923;20923;20923;20923;20923;20923;20923;20923;20923
-29;'108;Burundi;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;11;14;4;6;3;1;85;39;41;67;44;49;0;0
-29;'108;Burundi;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;6;1;10;5;2;33;21;21;28;21;35;0;0
-29;'108;Burundi;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;0;0;0;0;926;66;66;76;76;76;76;76;76;27;27;27;30;20;0;0;279;0;0;0;0
-29;'108;Burundi;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;0;0;148;11;11;6;6;6;6;0;0;17;2;0;6;4;0;0;44;0;2;0;0
-29;'108;Burundi;1633;Sawnwood, non-coniferous;5516;Production;m3;;;200;300;300;;;;;;;;;;;;;;;;;;;;;;0;;;;;;9000;12000;22000;26000;26000;26000;63000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;19517;18783;13190;13190;13190;13190;13190;13190;13190;13190;13190;13190
-29;'108;Burundi;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;0;0;0;0;0;0;0;0;0;1;1;1;20;20;142;27;57;633;297;145;145;1;12;44;19;0;3;11;21
-29;'108;Burundi;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;26;4;144;46;750;21;6;0;7;32;15;9;0;12;12
-29;'108;Burundi;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;357;100;100;100;0;0;0;11;87;88;88;32;23;15;1078;154;18;68;68;1;0;100;0;3;0;0;0;0;81
-29;'108;Burundi;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;212;37;37;37;0;0;0;10;23;27;27;30;30;33;76;47;4;24;1;7;0;41;0;3;0;8;0;0;86
-29;'108;Burundi;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1;1;1;22;44;10;43;43;5;15;81;188;222;152;75;145;0;0;0;705
-29;'108;Burundi;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;1;1;1;25;33;4;19;54;3;6;64;106;91;73;12;73;36;0;0;210
-29;'108;Burundi;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;79;10;10;10;10;10;10;41;0;0;0;0;0;0;0;0
-29;'108;Burundi;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;3;0;0;0;3;0;36;0;0;0;0;0;0;4;0
-29;'108;Burundi;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;200;200;200;400;400;400;500;500;500;500;500;1100;500;400;600;600;600;400;200;240;700;32;68;36;800;200;200;200;100;600;600;600;629;878;878;438;1468;1375;1411;3084;5654;2196;3894;1436;1332;1700;2001;2760;2919;2666;3938;1558;1097
-29;'108;Burundi;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;35;29;29;128;128;128;176;176;160;374;317;752;431;246;436;436;436;423;156;156;403;22;33;11;232;64;64;64;70;638;638;638;286;224;224;191;1172;1090;820;2172;3204;1228;1753;930;702;881;1087;1202;1215;1067;1470.33;953;1057
-29;'108;Burundi;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;39;39;39;39;39;46;61;23;23;23;25;25;25;3;8;3;3;3;3;2;1.53;1.53
-29;'108;Burundi;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5;5;5;5;5;11;7;3;1;1;9;8;8;8;12;8;8;8;22;3;3.17;3.17
-29;'108;Burundi;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-29;'108;Burundi;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;200;200;200;200;200;200;300;300;200;400;300;500;400;200;400;400;400;400;200;240;700;32;32;0;400;100;100;100;100;600;600;600;298;36;36;241;481;667;1001;1274;3923;1109;2807;400;409;1023;916;1608;2013;1586;2352;117;327
-29;'108;Burundi;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;35;29;29;78;78;78;143;143;100;351;205;443;362;141;320;320;320;423;156;156;403;22;22;0;185;49;49;49;70;638;638;638;200;13;13;141;508;619;559;788;1920;552;1077;451;208;559;499;581;832;709;917;272;230
-29;'108;Burundi;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;22;22;22;22;22;22;22;0;5;0;0;0;0;0;0;0
-29;'108;Burundi;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;2;0;0;1;0;0;0;4;0;0;0;14;0;0;0
-29;'108;Burundi;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;200;200;200;200;200;300;100;200;600;100;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;50;50;50;33;33;60;23;112;309;69;105;116;116;116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;67;418;418;1;312;46;113;97;18;31;31;5;4;4;5;5;57;89;10;1;0
-29;'108;Burundi;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;16;69;69;2;161;33;60;111;11;100;100;4;15;15;17;17;37;62;14;1;0
-29;'108;Burundi;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;39;39;39;39;39;39;39;1;1;1;3;3;3;3;3;3;3;3;3;2;1.53;1.53
-29;'108;Burundi;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5;5;5;5;5;5;5;1;1;1;8;8;8;8;8;8;8;8;8;3;3.17;3.17
-29;'108;Burundi;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;2;2;2;34;34;34;34;34;0;0;0;7;7;0;0;0;47;47
-29;'108;Burundi;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;11;11;11;11;11;0;0;0;8;8;0;0;0;11;11
-29;'108;Burundi;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;400;100;100;100;0;0;0;0;264;412;412;194;673;660;263;1679;1679;1022;1022;1031;919;673;1073;1140;849;991;1576;1393;723
-29;'108;Burundi;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;47;15;15;15;0;0;0;0;70;140;140;47;502;437;190;1262;1262;565;565;475;479;307;563;596;346;296;539.33;669;816
-29;'108;Burundi;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;237;237;19;625;78;145;575;575;996;996;815;628;628;290;111;152;131;132;141;32
-29;'108;Burundi;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;110;110;17;462;65;88;794;794;553;553;389;296;296;118;49;69;57;57;67;18
-29;'108;Burundi;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;175;175;175;48;582;118;1104;1104;26;26;216;291;45;783;1029;687;454;759;1038;477
-29;'108;Burundi;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;30;30;30;40;372;102;468;468;12;12;86;183;11;445;547;270;190;389.32;577;773
-29;'108;Burundi;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;406;685;214;214
-29;'108;Burundi;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;15;15;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;49;93;25;25
-29;'108;Burundi;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;0;46;240;240;278;118;141;141;138;138;78;78;53;53;53;56;56;60;55;54;54;54
-29;'108;Burundi;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;33;120;120;148;110;172;172;167;167;97;97;66;65;65;60;60;61;60;60;61;61
-29;'108;Burundi;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;520;520;520;520;30;28;28;28;46;46;40;40;40;40;40;105;110;131;117;114
-29;'108;Burundi;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;6;21;21;21;22;22;2;2;2;2;2;62;63;63;63;62
-29;'108;Burundi;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;0;46;240;240;240;113;137;137;137;137;74;74;51;51;51;54;54;54;54;54;54;54
-29;'108;Burundi;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;33;120;120;120;101;156;156;156;156;90;90;60;59;59;60;60;60;60;60;60;60
-29;'108;Burundi;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;104;104;104;104;104
-29;'108;Burundi;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;61;61;61;61;61
-29;'108;Burundi;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;0;46;174;174;174;47;71;71;71;71;48;48;25;25;25;28;28;28;28;28;28;28
-29;'108;Burundi;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;33;67;67;67;48;103;103;103;103;61;61;31;30;30;31;31;31;31;31;31;31
-29;'108;Burundi;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86
-29;'108;Burundi;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60
-29;'108;Burundi;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;;;;;;;
-29;'108;Burundi;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;;;;;;;
-29;'108;Burundi;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;0;46;174;174;174;47;71;71;71;71;47;47;25;25;25;28;28;28;28;28;28;28
-29;'108;Burundi;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;33;67;67;67;48;103;103;103;103;60;60;30;30;30;31;31;31;31;31;31;31
-29;'108;Burundi;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86
-29;'108;Burundi;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60
-29;'108;Burundi;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24
-29;'108;Burundi;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29
-29;'108;Burundi;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;0;46;75;75;75;23;47;47;47;47;23;23;1;1;1;4;4;4;4;4;4;4
-29;'108;Burundi;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;33;32;32;32;19;74;74;74;74;31;31;1;1;1;2;2;2;2;2;2;2
-29;'108;Burundi;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86
-29;'108;Burundi;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60
-29;'108;Burundi;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;66;66;66;26;26;26;26;26;26;26;26;26;26;26;26
-29;'108;Burundi;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53;53;29;29;29;29;29;29;29;29;29;29;29;29
-29;'108;Burundi;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18
-29;'108;Burundi;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1
-29;'108;Burundi;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;5;4;4;1;1;4;4;2;2;2;2;2;6;1;0;0;0
-29;'108;Burundi;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;9;16;16;11;11;7;7;6;6;6;0;0;1;0;0;1;1
-29;'108;Burundi;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;520;520;520;520;30;28;28;28;28;28;22;22;22;22;22;1;6;27;13;10
-29;'108;Burundi;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;6;21;21;21;21;21;1;1;1;1;1;1;2;2;2;1
-29;'108;Burundi;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;700;600;600;700;700;700;700;1400;1200;2400;615;493;1600;4800;3000;1111;1160;1900;1600;202;228;711;2681;2681;1148;1261;2004;5880;4029;3064;8779;9749;3734;3746;2889;5242;4811;7265;7269;2748.79;5112;1099
-29;'108;Burundi;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1068;706;654;906;906;906;1145;2199;2571;5057;557;528;1997;10330;6927;1461;1477;2485;2089;232;181;609;2107;2107;959;1756;2536;4236;4128;2077;10725;16504;2683;3532;2001;3992;3669;5705;3554;2579.75;5604;2481
-29;'108;Burundi;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;0;0;0;0;0;0;0;0;12;12;22;22;23;89;120;153;321;321;322;322;193;169;112;118;103;120;21;98;23.11;23.11
-29;'108;Burundi;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;0;0;0;0;0;0;12;12;23;23;25;195;95;153;810;810;876;876;335;324;229;163;155;149;28;132;24.22;24.22
-29;'108;Burundi;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;600;500;400;400;400;400;400;1000;700;700;277;249;400;1100;700;311;560;900;200;102;90;345;1583;1583;694;537;1210;629;940;357;1917;1917;787;996;240;2344;2026;4384;3445;2381.79;4606;888
-29;'108;Burundi;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1034;672;433;562;562;562;799;1729;1609;1613;384;237;604;2618;1615;561;784;1000;205;156;75;320;1230;1230;577;601;1181;602;1448;413;1780;1780;773;1673;190;2307;2071;4050;2813;2099;4859;1571
-29;'108;Burundi;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;0;0;0;0;;;;;;;;;;5;5;5;35;35;36;36;39;15;15;21;9;33;6;7;7.1;7.1
-29;'108;Burundi;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;0;0;;;;;;;;;;3;3;3;18;18;84;84;87;76;76;10;6;13;4;2;5.01;5.01
-29;'108;Burundi;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;0;200;200;200;200;0;0;0;0;31;67;67;204;85;37;17;122;122;252;252;156;209;2;110;22;52;120;56;48;100
-29;'108;Burundi;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;578;404;404;404;0;0;0;0;26;34;34;134;80;30;11;108;108;136;136;104;142;1;75;33;58;75;50;127;103
-29;'108;Burundi;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0
-29;'108;Burundi;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0
-29;'108;Burundi;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;600;500;400;400;400;400;400;1000;700;700;259;249;400;900;500;111;360;900;200;102;90;314;1516;1516;490;452;1173;612;818;235;1665;1665;631;787;238;2234;2004;4332;3325;2325.79;4558;788
-29;'108;Burundi;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1034;672;433;562;562;562;799;1729;1609;1613;363;237;604;2040;1211;157;380;1000;205;156;75;294;1196;1196;443;521;1151;591;1340;305;1644;1644;669;1531;189;2232;2038;3992;2738;2049;4732;1468
-29;'108;Burundi;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;0;0;0;0;;;;;;;;;;5;5;5;35;35;35;35;38;14;14;20;8;32;6;7;7.1;7.1
-29;'108;Burundi;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;0;0;;;;;;;;;;3;3;3;18;18;83;83;86;75;75;9;5;12;4;2;5.01;5.01
-29;'108;Burundi;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;3;3;3;4;8;21;93;1;80;80;8;178;178;109;109;24;100;108;139;0
-29;'108;Burundi;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;3;3;3;6;22;49;158;1;72;72;10;141;141;169;169;24;79;119;141;2
-29;'108;Burundi;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;1;3;0;0.1;0.1
-29;'108;Burundi;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;1;3;0;0.01;0.01
-29;'108;Burundi;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356;890;198;100;89;218;1258;1258;483;334;889;440;538;207;1498;1498;567;473;47;630;1362;3494;2352;1762.18;3539;580
-29;'108;Burundi;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;960;197;148;72;175;991;991;431;341;821;401;888;266;1440;1440;578;1232;37;669;1194;3109;1936;1563.85;3764;842
-29;'108;Burundi;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;11;2;31;0;4;6;6
-29;'108;Burundi;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;68;68;68;68;68;2;1;11;0;1;4;4
-29;'108;Burundi;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;2;2;1;63;255;255;4;114;276;151;187;27;87;87;56;136;13;1495;533;814;873;455.61;880;208
-29;'108;Burundi;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;40;8;8;3;60;202;202;9;174;308;141;294;38;132;132;81;158;11;1394;675;859;723;366.15;827;624
-29;'108;Burundi;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;6;6;6;3;0;3;3;1;1
-29;'108;Burundi;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;4;4;4;1;0;1;1;1;1
-29;'108;Burundi;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;100;200;300;300;300;300;400;500;1700;338;244;1200;3700;2300;800;600;1000;1400;100;138;366;1098;1098;454;724;794;5251;3089;2707;6862;7832;2947;2750;2649;2898;2785;2881;3824;367;506;211
-29;'108;Burundi;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;34;34;221;344;344;344;346;470;962;3444;173;291;1393;7712;5312;900;693;1485;1884;76;106;289;877;877;382;1155;1355;3634;2680;1664;8945;14724;1910;1859;1811;1685;1598;1655;741;480.75;745;910
-29;'108;Burundi;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;12;12;22;22;23;84;115;148;286;286;286;286;154;154;97;97;94;87;15;91;16.02;16.02
-29;'108;Burundi;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;12;12;23;23;25;192;92;150;792;792;792;792;248;248;153;153;149;136;24;130;19.21;19.21
-29;'108;Burundi;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;138;138;6;153;130;66;154;12;219;1378;130;125;67;18;45;59;26;7;32;9
-29;'108;Burundi;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;151;151;11;190;164;87;485;15;125;913;190;174;100;19;60;78;45;8;31;18
-29;'108;Burundi;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;0;72;0;0
-29;'108;Burundi;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;112;112;112;112;0;112;1;1
-29;'108;Burundi;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;500;100;128;342;559;559;413;257;410;3976;2758;2620;2455;2398;2291;2527;2554;2723;2685;2739;3669;299;327;201
-29;'108;Burundi;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;463;76;92;237;347;347;272;358;505;2372;1696;1419;1250;1308;1191;1602;1618;1450;1402;1387;462;334.75;295;876
-29;'108;Burundi;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;13;20;20;20;20;20;20;20;20;20;20;20;20;15;15;17;14.02;14.02
-29;'108;Burundi;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;14;31;31;31;31;31;31;31;31;31;31;31;31;22;22;12;12.21;12.21
-29;'108;Burundi;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;500;100;100;84;206;206;60;61;177;177;7;7;130;73;73;29;56;236;253;227;3370;110;44;0
-29;'108;Burundi;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;463;76;76;29;128;128;53;97;238;238;25;25;102;160;160;25;41;135;144;115;211;112;46;0
-29;'108;Burundi;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;2;2.02;2.02
-29;'108;Burundi;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0.21;0.21
-29;'108;Burundi;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;137;137;137;92;137;454;266;128;92;92;3;274;274;90;64;51;152;6;61;199
-29;'108;Burundi;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;89;85;85;85;103;164;309;355;78;62;62;4;530;530;124;99;63;102;6;79;863
-29;'108;Burundi;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12
-29;'108;Burundi;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12
-29;'108;Burundi;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;55;168;168;168;16;8;1143;283;283;31;31;13;22;22;195;166;259;144;180;214;1
-29;'108;Burundi;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;42;105;105;105;29;14;814;305;305;75;75;16;36;36;180;148;198;145;212.75;169;7
-29;'108;Burundi;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;2;2;3;0;0
-29;'108;Burundi;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;0;0;0;0;0
-29;'108;Burundi;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;48;48;48;88;88;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202;3;3;8;1
-29;'108;Burundi;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;29;29;29;129;89;1011;1011;1011;1011;1011;1011;1011;1011;1011;1011;1011;4;4;1;6
-29;'108;Burundi;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;1200;3700;2300;800;600;900;900;0;0;19;401;401;35;314;254;1209;177;75;4188;4056;526;98;28;157;55;83;129;61;147;1
-29;'108;Burundi;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;1393;7712;5312;900;693;1421;1421;0;0;45;379;379;99;607;686;1175;499;230;7570;12503;529;83;93;216;136;190;234;138;419;16
-29;'108;Burundi;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;64;95;128;194;194;194;194;62;62;5;5;2;0;0;2;2;2
-29;'108;Burundi;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;11;11;11;161;61;119;649;649;649;649;105;105;10;10;6;2;2;6;6;6
-29;'108;Burundi;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2478;1074;1568;2035;2380;2393;901
-29;'108;Burundi;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;44;50;26;72;50;93
-29;'108;Burundi;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;9;6;6;3;3
-29;'108;Burundi;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;9;6;6;3;3
-29;'108;Burundi;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;54;5;6;19;52;3
-29;'108;Burundi;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;26;22;96;32;59;1
-29;'108;Burundi;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;68;37;156;240;91;103
-29;'108;Burundi;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2052;913;1420;1617;1741;1997;703
-29;'108;Burundi;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;44;50;26;72;50;93
-29;'108;Burundi;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;94;283;142;34
-29;'108;Burundi;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;66;60;59;49;54
-29;'108;Burundi;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7158;7021;10221;12864;11693;14041;6593
-29;'108;Burundi;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;23;7;2;6;2;1
-29;'108;Burundi;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;101;8;5;3
-29;'108;Burundi;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;24;80;53;123;290;53
-29;'108;Burundi;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;331;555;577;1072;606;655
-29;'108;Burundi;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-29;'108;Burundi;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1675;2027;2996;4944;4503;6283;505
-29;'108;Burundi;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;0;1;1;0;0
-29;'108;Burundi;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4980;4637;6589;7189;5987;6857;5377
-29;'108;Burundi;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;7;1;5;2;1
-35;'132;Cabo Verde;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30669;29818;32560;33159;27691;33170;35099
-35;'132;Cabo Verde;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;296;223;233;274;229;151
-35;'132;Cabo Verde;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;136;146;131;189;106;173;213;217;270;254;274;333;548;582;829;829;830;771;859;1632;1801;1439;1482;1492;1666;2528;2785;2455;2109;1528;2041;2089;2008;4862;4223;3058;2936;3617;3760;1682;4734;1612;1414;5028;5028;2994;14209;17554;17608;10755;10936;9237;7836;9125;7966;10408;10026;10179;9426;13779;9582;12823;11712
-35;'132;Cabo Verde;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;77;77;77;77;155;355;355;355;355;359;364;364;889;745;745;891;710;829;835;322;337;138;112;131;117;56;109;99;54;55
-35;'132;Cabo Verde;1861;Roundwood;5516;Production;m3;80927;82121;82216;80811;80507;81502;82597;82693;82788;82884;86412;89049;89816;91127;91460;92483;93475;91873;90282;83847;83967;84864;84559;86390;87300;89519;91207;93102;95804;99811;103434;108027;112658;117665;122258;127142;132053;136823;141870;147181;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;227572;230404;233268
-35;'132;Cabo Verde;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;200;200;200;300;800;800;800;200;200;500;200;200;200;200;;;0;;;176;296;1200;764;3600;3600;1600;100;349;471;471;604;604;459;2921;2921;1952;2349;3910;8914;1020;779;1389;559;1233;142;162;169;2027;363;794;715;281;622
-35;'132;Cabo Verde;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;12;10;10;26;70;70;70;13;14;85;42;42;42;42;;;0;;;42;57;323;180;798;798;240;33;101;141;141;130;130;73;219;219;226;431;591;645;269;335;415;309;362;16;58;38;357;179;376;381;85;294
-35;'132;Cabo Verde;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;409;409;409;409;409;409;409;409;409;530;530;530;530;530;530;17;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;71;71;71;71;71;217;217;217;217;217;217;5;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;741;45;741;479;278;99
-35;'132;Cabo Verde;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;233;30;331;227;85;48
-35;'132;Cabo Verde;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1863;Roundwood, non-coniferous;5516;Production;m3;80927;82121;82216;80811;80507;81502;82597;82693;82788;82884;86412;89049;89816;91127;91460;92483;93475;91873;90282;83847;83967;84864;84559;86390;87300;89519;91207;93102;95804;99811;103434;108027;112658;117665;122258;127142;132053;136823;141870;147181;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;227572;230404;233268
-35;'132;Cabo Verde;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;1286;318;53;236;3;523
-35;'132;Cabo Verde;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;124;149;45;154;0;246
-35;'132;Cabo Verde;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1864;Wood fuel;5516;Production;m3;80927;82121;82216;80811;80507;81502;82597;82693;82788;82884;86412;89049;89816;91127;91460;92483;93475;91873;90282;83847;83967;84864;84559;86390;87300;89519;91207;93102;95804;99811;103434;108027;112658;117665;122258;127142;132053;136823;141870;147181;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;227572;230404;233268
-35;'132;Cabo Verde;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;3;6;;;;;;;
-35;'132;Cabo Verde;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;4;5;;;;;;;
-35;'132;Cabo Verde;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1628;Wood fuel, non-coniferous;5516;Production;m3;80927;82121;82216;80811;80507;81502;82597;82693;82788;82884;86412;89049;89816;91127;91460;92483;93475;91873;90282;83847;83967;84864;84559;86390;87300;89519;91207;93102;95804;99811;103434;108027;112658;117665;122258;127142;132053;136823;141870;147181;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;186000;227572;230404;233268
-35;'132;Cabo Verde;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;3;6;;;;;;;
-35;'132;Cabo Verde;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;4;5;;;;;;;
-35;'132;Cabo Verde;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;200;200;200;300;800;800;800;200;200;500;200;200;200;200;;;0;;;176;296;1200;764;3600;3600;1600;100;294;416;416;549;549;404;2866;2866;1897;2294;3855;8859;965;724;1334;504;1178;139;156;169;2027;363;794;715;281;622
-35;'132;Cabo Verde;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;12;10;10;26;70;70;70;13;14;85;42;42;42;42;;;0;;;42;57;323;180;798;798;240;33;84;124;124;113;113;56;202;202;209;414;574;628;252;318;398;292;345;12;53;38;357;179;376;381;85;294
-35;'132;Cabo Verde;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;409;409;409;409;409;409;409;409;409;530;530;530;530;530;530;17;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;71;71;71;71;71;217;217;217;217;217;217;5;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;9;400;400;100;11;123;179;179;100;100;100;1575;1575;1575;1609;2996;8000;588;150;608;14;654;0;18;63;741;45;741;479;278;99
-35;'132;Cabo Verde;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;3;173;173;44;4;37;34;34;10;10;10;96;96;96;98;183;237;67;16;34;37;36;0;5;4;233;30;331;227;85;48
-35;'132;Cabo Verde;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;9;400;400;100;11;123;179;179;100;100;100;1575;1575;1575;1609;2996;8000;588;150;608;14;654;0;18;63;741;45;741;479;278;99
-35;'132;Cabo Verde;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;3;173;173;44;4;37;34;34;10;10;10;96;96;96;98;183;237;67;16;34;37;36;0;5;4;233;30;331;227;85;48
-35;'132;Cabo Verde;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;296;997;755;3200;3200;1500;89;171;237;237;449;449;304;1291;1291;322;685;859;859;377;574;726;490;524;139;138;106;1286;318;53;236;3;523
-35;'132;Cabo Verde;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;57;266;177;625;625;196;29;47;90;90;103;103;46;106;106;113;316;391;391;185;302;364;255;309;12;48;34;124;149;45;154;0;246
-35;'132;Cabo Verde;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;409;409;409;409;409;409;409;409;409;530;530;530;530;530;530;17;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;71;71;71;71;71;217;217;217;217;217;217;5;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;88;300;300;300;300;300;300;470;811;811;352;527;661;425;392;0;45;0;954;219;53;236;0;469
-35;'132;Cabo Verde;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;41;41;41;41;41;41;133;343;343;154;239;312;203;222;0;21;0;68;94;45;154;0;240
-35;'132;Cabo Verde;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;296;997;755;3200;3200;1500;1;83;149;149;149;149;4;991;991;22;215;48;48;25;47;65;65;132;139;93;106;332;99;0;0;3;54
-35;'132;Cabo Verde;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;57;266;177;625;625;196;1;19;62;62;62;62;5;65;65;72;183;48;48;31;63;52;52;87;12;27;34;56;55;0;0;0;6
-35;'132;Cabo Verde;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;409;409;409;409;409;409;409;409;409;530;530;530;530;530;530;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;71;71;71;71;71;217;217;217;217;217;217;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;200;200;200;300;800;800;800;200;200;500;200;200;200;200;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;12;10;10;26;70;70;70;13;14;85;42;42;42;42;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;200;200;200;300;800;800;800;200;200;500;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;12;10;10;26;70;70;70;13;14;85;42;42;42;42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1630;Wood charcoal;5510;Production;t;8803;8824;8846;8868;8889;8911;8933;8954;8976;8998;9458;9816;9926;10106;10176;10303;10457;10282;10050;9220;9354;9573;9630;10004;10251;10671;11002;11404;11914;12621;13133;13779;14466;15203;15893;16650;17409;18163;18953;19778;20474;21195;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921;921
-35;'132;Cabo Verde;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;14;17;17;12;20;12;12;13;16;11;10;22;30;3;5;1;5
-35;'132;Cabo Verde;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4;8;8;65;17;11;26;9;10;9;9;19;22;4;7;2;8
-35;'132;Cabo Verde;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-35;'132;Cabo Verde;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-35;'132;Cabo Verde;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86;50;1582;1582;112;76;76;76;76;76;76;59;81;202;159;48;110;16;3;3;0;0
-35;'132;Cabo Verde;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;14;84;84;39;60;60;60;60;60;60;60;71;113;55;15;17;15;1;2;0;0
-35;'132;Cabo Verde;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;31;1563;1563;93;57;57;57;57;57;57;57;57;57;25;33;95;1;3;0;0;0
-35;'132;Cabo Verde;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;13;83;83;38;59;59;59;59;59;59;59;59;59;7;1;3;1;1;1;0;0
-35;'132;Cabo Verde;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;2;24;145;134;15;15;15;0;3;0;0
-35;'132;Cabo Verde;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;12;54;48;14;14;14;0;1;0;0
-35;'132;Cabo Verde;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;105;3140;1298;0;0;0;1;1
-35;'132;Cabo Verde;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;36;592;280;14;9;5;8;5
-35;'132;Cabo Verde;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;105;1739;700;0;0;0;1;0
-35;'132;Cabo Verde;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;36;440;220;1;2;3;2;1
-35;'132;Cabo Verde;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1401;598;0;0;0;0;1
-35;'132;Cabo Verde;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;60;13;7;2;6;4
-35;'132;Cabo Verde;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1872;Sawnwood;5616;Import quantity;m3;2500;3000;2300;2000;2200;3600;3800;4400;4900;4700;3300;3400;6100;4500;5900;5900;5900;5400;6400;7800;6000;4000;4000;4000;4200;8100;6400;3300;5000;3900;3100;4156;6503;11000;6300;6800;6878;6430;9335;2264;26200;675;818;7453;7453;918;9281;17277;17277;10315;9401;6311;6597;8148;10010;9675;9373;7092;9645;7830;8401;8040;8510
-35;'132;Cabo Verde;1872;Sawnwood;5622;Import value;1000 USD;90;100;85;86;80;142;182;181;223;209;200;240;436;425;629;629;629;443;534;1185;1354;990;1030;1040;846;1326;1119;534;906;638;1136;932;1022;2818;2159;1539;1340;1367;1957;503;2622;259;422;1455;1455;843;10051;10706;10706;5580;4698;4149;3213;3840;3773;4786;4215;3358;2653;3494;2571;3484;3488
-35;'132;Cabo Verde;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;147;147;147;147;1174;287;287;287;287;271;271;271;271;54;54;54;17;17;17;13;21;166;0;29;6;0;0;0;0;0
-35;'132;Cabo Verde;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;77;77;77;77;152;281;281;281;281;285;285;285;285;37;37;37;25;28;4;4;19;21;0;19;5;0;0;0;0;0
-35;'132;Cabo Verde;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1632;Sawnwood, coniferous;5616;Import quantity;m3;2500;3000;2300;1500;1800;1900;2200;2300;3000;2800;1700;1900;2700;2400;3600;3600;3600;2300;3400;4800;2000;1000;1000;1000;900;4800;3100;2800;4500;1700;900;3074;4278;4400;2300;3800;5812;4818;3797;1964;25900;280;681;6243;6243;730;4181;3762;3762;6009;5747;3108;4412;5421;3639;4675;5627;4924;4199;4793;5831;7160;7160
-35;'132;Cabo Verde;1632;Sawnwood, coniferous;5622;Import value;1000 USD;90;100;85;57;62;68;116;87;133;134;85;104;195;213;366;366;366;157;291;652;265;140;180;190;118;598;391;447;819;321;819;645;593;961;1111;758;1018;970;698;353;2472;46;329;1086;1086;505;2576;2652;2652;1585;1609;959;1242;1615;883;1203;1401;1781;1204;1342;1697;2902;2902
-35;'132;Cabo Verde;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;1145;258;258;258;258;258;258;258;258;41;41;41;4;4;4;0;0;64;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;139;268;268;268;268;268;268;268;268;20;20;20;9;16;4;0;0;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;500;400;1700;1600;2100;1900;1900;1600;1500;3400;2100;2300;2300;2300;3100;3000;3000;4000;3000;3000;3000;3300;3300;3300;500;500;2200;2200;1082;2225;6600;4000;3000;1066;1612;5538;300;300;395;137;1210;1210;188;5100;13515;13515;4306;3654;3203;2185;2727;6371;5000;3746;2168;5446;3037;2570;880;1350
-35;'132;Cabo Verde;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;29;18;74;66;94;90;75;115;136;241;212;263;263;263;286;243;533;1089;850;850;850;728;728;728;87;87;317;317;287;429;1857;1048;781;322;397;1259;150;150;213;93;369;369;338;7475;8054;8054;3995;3089;3190;1971;2225;2890;3583;2814;1577;1449;2152;874;582;586
-35;'132;Cabo Verde;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;147;147;29;29;29;29;29;13;13;13;13;13;13;13;13;13;13;13;21;102;0;29;6;0;0;0;0;0
-35;'132;Cabo Verde;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;13;13;13;13;13;17;17;17;17;17;17;17;16;12;0;4;19;21;0;19;5;0;0;0;0;0
-35;'132;Cabo Verde;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;100;33;12;36;85;98;100;100;41;8;8;8;26;203;203;111;82;29;41;7;6;42;69;259;27;19;36;0;20
-35;'132;Cabo Verde;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;0;24;27;20;10;38;49;66;66;37;6;6;6;21;161;161;74;74;45;30;37;8;31;67;114;25;29;38;40;33
-35;'132;Cabo Verde;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;155;155;155;155;155;155;155;155;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;629;629;629;414;522;519;0;0;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1873;Wood-based panels;5616;Import quantity;m3;;;;100;100;100;100;100;100;205;205;205;205;205;300;300;300;800;600;700;900;900;900;900;1900;2000;3800;3800;1900;900;900;2181;1459;2186;2300;2300;3054;2592;9217;1803;11400;9849;1218;11040;11040;689;2148;4631;4631;4300;4667;4207;2623;3164;3495;5764;5332;5906;9161;9615;10752;21617;13304
-35;'132;Cabo Verde;1873;Wood-based panels;5622;Import value;1000 USD;;;;7;7;12;12;12;12;24;25;33;40;57;69;69;69;136;132;183;332;332;332;332;360;632;1091;1104;569;242;242;804;395;859;815;818;885;816;880;394;1238;726;366;2015;2015;415;1906;3854;3854;2925;3408;2717;2192;2642;2376;3496;3301;3770;4687;8301;4814;7437;5370
-35;'132;Cabo Verde;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;36;36;36;36;36;36;36;36;36;36;36;46;31;31;31;31;31;31;31;31
-35;'132;Cabo Verde;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;8;8;8;8;8;8;7;15;12;5;5;5;5;5;5;5;5;5;5;5
-35;'132;Cabo Verde;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;363;1800;800;500;499;619;666;44;900;26;224;705;705;162;1057;1332;1332;1272;1689;1082;398;469;584;2069;1136;1246;1244;2362;2529;13448;2190
-35;'132;Cabo Verde;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;122;747;345;274;183;229;251;21;432;6;153;250;250;107;1177;1522;1522;726;906;551;468;609;455;1074;563;573;1074;5414;1060;3094;580
-35;'132;Cabo Verde;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;15;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;2;10;7;0;0;0;0;0;0;0;0;0;0;0
-35;'132;Cabo Verde;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;100;100;100;100;100;100;100;100;100;100;100;100;100;100;600;400;500;700;700;700;700;1800;1900;3700;3700;1800;800;800;1539;958;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;7;7;12;12;12;12;12;12;16;15;32;29;29;29;94;90;141;239;239;239;239;321;593;1052;1065;530;203;203;454;221;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1800;2317;1735;1973;1545;4272;4272;211;4445;4445;242;27;1014;1014;716;455;815;236;232;280;280;1345;1345;2973;2669;3071;1903;1914
-35;'132;Cabo Verde;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;544;603;487;519;202;560;560;159;729;729;184;14;960;960;516;379;539;103;138;149;161;770;770;1205;1058;1239;956;988
-35;'132;Cabo Verde;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31
-35;'132;Cabo Verde;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-35;'132;Cabo Verde;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287;28;28;28;28;19;19;28;0;0;0;13;13;13;80;77;57;75;78;78;24;24;9;37;24
-35;'132;Cabo Verde;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;5;5;5;3;3;17;0;0;0;11;11;11;37;74;51;101;38;38;13;9;6;14;14
-35;'132;Cabo Verde;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;105;105;105;105;105;200;200;200;200;200;200;200;200;200;200;100;100;100;100;100;100;100;381;138;86;0;0;238;238;5291;186;6200;5523;755;5871;5871;257;1064;2285;2285;2299;2510;2297;1909;2386;2574;3340;2773;3237;4920;4560;5143;6229;9176
-35;'132;Cabo Verde;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;12;13;17;25;25;40;40;40;42;42;42;93;93;93;93;39;39;39;39;39;39;39;171;52;31;0;0;99;100;97;166;241;155;49;1033;1033;107;715;1372;1372;1672;2112;1616;1584;1821;1721;2160;1930;2389;2395;1820;2509;3373;3788
-35;'132;Cabo Verde;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;199;2447;80;700;23;23;192;192;192;588;52;52;45;22;30;66;108;124;431;447;869;276;513;734;357;443
-35;'132;Cabo Verde;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;90;56;154;100;14;14;89;89;89;307;52;52;45;28;16;52;109;73;258;286;522;135;253;396;285;277
-35;'132;Cabo Verde;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;18;2750;12;4800;4800;32;5058;5058;31;329;910;910;871;1060;1019;1091;1368;729;955;828;1140;2863;2286;2685;3226;3206
-35;'132;Cabo Verde;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;8;33;4;110;110;4;865;865;9;189;659;659;699;809;759;964;1037;613;700;659;1020;1682;1039;1433;2074;1924
-35;'132;Cabo Verde;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8;0;0;0;76;21;94;94;700;700;700;621;621;34;147;1323;1323;1383;1428;1248;752;910;1721;1954;1498;1228;1781;1761;1724;2646;5527
-35;'132;Cabo Verde;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;0;0;0;12;2;8;8;31;31;31;79;79;9;219;661;661;928;1275;841;568;675;1035;1202;985;847;578;528;680;1014;1587
-35;'132;Cabo Verde;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;105;105;105;105;105;200;200;200;200;200;200;200;200;200;200;100;100;100;100;100;100;100;376;130;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;12;13;17;25;25;40;40;40;42;42;42;93;93;93;93;39;39;39;39;39;39;39;168;48;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-35;'132;Cabo Verde;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;10;10;10;10;10;33;33;33;33;33;33;35;41;10;8;6;6;6;22;22;9;12;12;11;11
-35;'132;Cabo Verde;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;1;1;1;4;4;4;4;4;4;8;15;50;11;7;7;7;15;15;11;12;19;17;17
-35;'132;Cabo Verde;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;197;197;197;197;197;197;197;197;197;197;197
-35;'132;Cabo Verde;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36
-35;'132;Cabo Verde;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;8;8;6;6;6;9;9;9;9;9;9;9
-35;'132;Cabo Verde;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;11;11;11;7;7;7;11;11;11;11;11;11;11
-35;'132;Cabo Verde;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;8;8;6;6;6;6;6;6;6;6;6;6
-35;'132;Cabo Verde;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;11;11;11;7;7;7;7;7;7;7;7;7;7
-35;'132;Cabo Verde;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;8;8;6;6;6;6;6;6;6;6;6;6
-35;'132;Cabo Verde;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;11;11;11;7;7;7;7;7;7;7;7;7;7
-35;'132;Cabo Verde;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6
-35;'132;Cabo Verde;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7
-35;'132;Cabo Verde;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;;;;;;;
-35;'132;Cabo Verde;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;;;;;;;
-35;'132;Cabo Verde;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3
-35;'132;Cabo Verde;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-35;'132;Cabo Verde;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;44;44;44;1;1;1;1;1;1;1;1
-35;'132;Cabo Verde;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;62;62;62;2;2;2;2;2;2;2;2
-35;'132;Cabo Verde;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;10;10;10;10;10;33;33;33;33;33;33;33;33;2;0;0;0;0;13;13;0;3;3;2;2
-35;'132;Cabo Verde;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;1;1;1;4;4;4;4;4;4;4;4;39;0;0;0;0;4;4;0;1;8;6;6
-35;'132;Cabo Verde;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;197;197;197;197;197;197;197;197;197;197;197
-35;'132;Cabo Verde;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36
-35;'132;Cabo Verde;1876;Paper and paperboard;5610;Import quantity;t;100;100;100;300;100;100;100;100;100;100;100;100;100;100;100;100;100;300;300;300;100;100;100;100;400;500;500;700;400;400;400;26;301;331;250;230;386;1470;499;399;1042;586;542;1598;1598;1935;1470;1250;1250;873;1040;768;897;997;948;1097;1046;1223;978;917;1017;943;1272
-35;'132;Cabo Verde;1876;Paper and paperboard;5622;Import value;1000 USD;46;46;46;96;19;19;19;24;35;21;37;50;62;74;61;61;62;179;179;179;73;75;78;78;460;570;575;817;634;606;606;27;401;387;427;434;636;1300;725;576;659;412;501;1245;1245;1461;1732;2170;2170;1774;2329;1789;1933;2095;1548;1928;1772;2247;1818;1551;1743;1748;2495
-35;'132;Cabo Verde;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;41;41;41;47;47;72;72;72;72;25;70;45;6;6
-35;'132;Cabo Verde;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;47;47;60;60;71;71;71;71;15;68;58;13;14
-35;'132;Cabo Verde;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;196;131;150;130;286;235;374;266;700;244;413;1039;1039;980;713;830;830;689;897;636;809;814;773;839;859;892;867;827;943;850;1105
-35;'132;Cabo Verde;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;281;201;249;306;423;382;494;337;486;239;408;795;795;764;1021;1489;1489;1322;1855;1297;1620;1477;1192;1371;1326;1495;1477;1332;1490;1457;2033
-35;'132;Cabo Verde;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;39;39;39;45;45;45;45;45;45;0;45;45;6;6
-35;'132;Cabo Verde;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;44;44;44;57;57;57;57;57;57;4;57;57;13;14
-35;'132;Cabo Verde;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;50;50;30;75;22;9;9;100;100;100;90;90;90;200;90;90;72;55;6;15;16;32;15;18;15;17;17;1;1;17
-35;'132;Cabo Verde;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;45;55;51;74;24;10;10;64;64;64;46;46;46;213;145;145;89;76;14;35;21;37;27;51;33;30;26;1;1;30
-35;'132;Cabo Verde;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;165;81;100;100;211;213;365;257;600;144;313;949;949;890;513;740;740;617;842;630;794;798;741;824;841;877;850;810;942;849;1088
-35;'132;Cabo Verde;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;233;156;194;255;349;358;484;327;422;175;344;749;749;718;808;1344;1344;1233;1779;1283;1585;1456;1155;1344;1275;1462;1447;1306;1489;1456;2003
-35;'132;Cabo Verde;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;39;39;39;45;45;45;45;45;45;0;45;45;6;6
-35;'132;Cabo Verde;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;44;44;44;57;57;57;57;57;57;4;57;57;13;14
-35;'132;Cabo Verde;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;100;100;100;100;123;123;48;76;230;230;404;445;333;403;295;318;234;280;280;325;250;331;321;402
-35;'132;Cabo Verde;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;130;130;97;97;32;110;398;398;725;792;546;583;465;426;331;412;412;522;394;491;515;655
-35;'132;Cabo Verde;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-35;'132;Cabo Verde;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-35;'132;Cabo Verde;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;400;41;171;440;440;456;268;157;157;67;160;140;233;300;217;341;306;411;376;401;425;357;456
-35;'132;Cabo Verde;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;212;42;135;347;347;381;313;257;257;118;202;184;386;471;287;440;376;635;626;607;664;598;876
-35;'132;Cabo Verde;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;39;39;39;39;39;39;39;39;39;0;39;39;0;0
-35;'132;Cabo Verde;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;44;44;44;44;44;44;44;44;44;0;44;44;0;0
-35;'132;Cabo Verde;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;126;10;100;3;42;386;386;386;169;353;353;146;237;157;158;203;206;249;255;186;149;159;186;171;230
-35;'132;Cabo Verde;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;163;6;80;3;79;305;305;305;385;689;689;390;785;553;616;520;442;573;487;415;299;305;334;343;472
-35;'132;Cabo Verde;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;0;6;6;6;6
-35;'132;Cabo Verde;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;4;13;13;13;13
-35;'132;Cabo Verde;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;300;100;100;100;100;100;100;100;100;100;100;100;100;100;300;300;300;100;100;100;100;400;500;500;700;400;400;400;8;105;200;100;100;100;1235;125;133;342;342;129;559;559;955;757;420;420;184;143;132;88;183;175;258;187;331;111;90;74;93;167
-35;'132;Cabo Verde;1675;Other paper and paperboard;5622;Import value;1000 USD;46;46;46;96;19;19;19;24;35;21;37;50;62;74;61;61;62;179;179;179;73;75;78;78;460;570;575;817;634;606;606;13;120;186;178;128;213;918;231;239;173;173;93;450;450;697;711;681;681;452;474;492;313;618;356;557;446;752;341;219;253;291;462
-35;'132;Cabo Verde;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;27;27;27;27;25;25;0;0;0
-35;'132;Cabo Verde;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;14;14;14;14;11;11;1;0;0
-35;'132;Cabo Verde;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;10;10;9;6;6;1;11;19;19;7;13;28;42;53;72;67;50;178;1;13;6;1;81
-35;'132;Cabo Verde;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;10;10;20;6;6;1;46;40;40;16;42;122;176;224;81;101;43;312;2;9;11;2;131
-35;'132;Cabo Verde;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;132;132;109;245;245;953;687;244;244;52;56;44;25;54;83;115;104;123;86;58;45;72;66
-35;'132;Cabo Verde;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;71;71;58;153;153;448;491;329;329;177;155;168;74;177;207;250;284;333;238;146;150;212;243
-35;'132;Cabo Verde;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;27;27;27;27;25;25;0;0;0
-35;'132;Cabo Verde;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;14;14;14;14;11;11;1;0;0
-35;'132;Cabo Verde;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;2;18;18;791;495;20;20;6;2;30;10;7;18;10;4;3;11;9;2;3;1
-35;'132;Cabo Verde;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;2;11;11;329;223;56;56;28;9;128;29;19;60;24;10;12;20;18;5;3;7
-35;'132;Cabo Verde;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;0;0;0
-35;'132;Cabo Verde;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;0;0;0
-35;'132;Cabo Verde;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;100;100;100;125;151;151;5;8;5;7;14;36;43;39;34;34;20;21;22;31
-35;'132;Cabo Verde;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;63;63;63;181;161;161;10;25;10;22;54;70;61;127;120;106;50;68;96;127
-35;'132;Cabo Verde;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;100;100;100;92;92;27;32;44;44;35;43;6;3;29;27;43;42;67;39;29;22;47;34
-35;'132;Cabo Verde;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;46;46;46;57;57;34;65;107;107;131;112;17;11;84;57;101;83;137;105;78;73;112;108
-35;'132;Cabo Verde;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;0;0;0;0;0
-35;'132;Cabo Verde;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;0;0;1;0;0
-35;'132;Cabo Verde;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;35;35;35;35;29;29;6;3;3;5;4;2;19;19;19;2;0;0;0;0
-35;'132;Cabo Verde;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;22;22;22;22;5;5;8;9;13;12;20;20;64;64;64;7;0;4;1;1
-35;'132;Cabo Verde;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;100;100;100;100;100;100;100;100;300;300;300;100;100;100;100;400;500;500;700;400;400;400;8;105;200;100;100;100;1235;60;60;200;200;11;308;308;1;59;157;157;125;74;60;21;76;20;76;33;30;24;19;23;20;20
-35;'132;Cabo Verde;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;21;37;50;62;74;61;61;62;179;179;179;73;75;78;78;460;570;575;817;634;606;606;13;120;186;178;128;213;918;148;148;92;92;15;291;291;248;174;312;312;259;277;202;63;217;68;206;119;107;101;64;92;77;88
-35;'132;Cabo Verde;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-35;'132;Cabo Verde;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-35;'132;Cabo Verde;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11196;9313;11939;9090;8407;7235;8182
-35;'132;Cabo Verde;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;163;70;46;153;93;68
-35;'132;Cabo Verde;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;248;332;9;55;3;14
-35;'132;Cabo Verde;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;17;23;23;23;23
-35;'132;Cabo Verde;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;224;19;5;38;1;1
-35;'132;Cabo Verde;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;6;6;6;6
-35;'132;Cabo Verde;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;313;4;17;2;13
-35;'132;Cabo Verde;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17
-35;'132;Cabo Verde;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;138;264;200;296;442;398
-35;'132;Cabo Verde;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;2;5;3
-35;'132;Cabo Verde;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;271;185;61;51;61;144
-35;'132;Cabo Verde;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;16;0;5;2
-35;'132;Cabo Verde;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2029;1471;2780;1951;1397;891;1175
-35;'132;Cabo Verde;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;3;3;53;23;14
-35;'132;Cabo Verde;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7
-35;'132;Cabo Verde;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17
-35;'132;Cabo Verde;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22
-35;'132;Cabo Verde;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32
-35;'132;Cabo Verde;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8707;7016;7755;6153;5950;5253;5676
-35;'132;Cabo Verde;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;124;30;0;74;15;10
-35;'132;Cabo Verde;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;93;85;58;2
-35;'132;Cabo Verde;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;169;468;623;573;527;773
-35;'132;Cabo Verde;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;22;16
-35;'132;Cabo Verde;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9447;10326;11195;10290;9702;13112;15205
-35;'132;Cabo Verde;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;16;97;78;22;82;28
-35;'132;Cabo Verde;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;28;40;28;33;24;22
-35;'132;Cabo Verde;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3
-35;'132;Cabo Verde;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;189;170;148;187;155;315
-35;'132;Cabo Verde;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0
-35;'132;Cabo Verde;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3450;3697;3581;3430;2707;4615;5269
-35;'132;Cabo Verde;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;41;41;10;14;13
-35;'132;Cabo Verde;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3387;4056;4728;4389;4447;5596;6680
-35;'132;Cabo Verde;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;16;0;6;52;9
-35;'132;Cabo Verde;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2444;2356;2676;2295;2328;2722;2919
-35;'132;Cabo Verde;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;34;34;3;13;3
-115;'116;Cambodia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492587;612932;742268;754917;918201.91;928352.07;793634.07
-115;'116;Cambodia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302388;227899;258733;324413;522039;613120;711627
-115;'116;Cambodia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;993;1184;1286;1445;1953;444;444;3050;3590;929;2192;1885;1885;1885;1885;1885;1885;1885;1885;1885;200;100;100;100;104;104;99;99;99;99;99;790;765;1097;1465;1671;1574;2924;7301;6031;14192;14192;18938;21314;21101;17008;30033;38252;38215;54819;56952.2;76721;83016;145890;115664;210971;271388;360892;431538;444824;551480.91;495144.07;402501.07
-115;'116;Cambodia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1792;1700;1956;1135;1415;1568;1997;2187;4703;2248;452;173;173;173;173;173;173;173;173;173;173;128;128;128;128;321;565;1407;3570;6341;15470;104076;89177;144069;171139;113131;100137;105530;41764;28185;14155;12877;18356;14493;11911;74253;108405;71351;56773;72887;93715;77186;168113;425920;465955;257050;248558;165449;206187;205775;323141;297122;233220
-115;'116;Cambodia;1861;Roundwood;5516;Production;m3;14885810;14698366;14717651;14563646;14416333;14295692;14196706;14009357;14068625;13499494;13682021;13884297;14375208;14366625;14131062;13593049;13333806;12683021;12440753;12189438;11820977;11735461;11781765;11845068;11944559;12058970;12139272;11884983;11818703;11795231;11916523;11842757;11756842;12056631;12026632;11863082;11807747;11560538;11236636;10298409;10047319;9862332;9683046;9511078;9334072;9165642;9009000;8853400;8704007;8730343;8583490;8446025;8313699;8186280;8101547;7959390;7822297;7690039;7562400;7439174;7319588;7204058;7092410
-115;'116;Cambodia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1452;5;0;0;61;184;10;2;47;26;4640;1611;2184;8985;23195;30165;20996;18293;49652;21290
-115;'116;Cambodia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;240;1;0;0;20;82;0;0.2;16;6;1103;357;577;3517;11686;7428;5887;7962;19303;4042
-115;'116;Cambodia;1861;Roundwood;5916;Export quantity;m3;127000;82800;75200;66100;56600;65600;85700;95700;124400;61600;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;2900;2900;2900;2900;800;800;9200;17600;32930;84665;499089;350000;458000;459100;300000;100000;7000;3000;100;0;234;84;3376;2406;421;15883;3921;5451;5648;13607;15532;32625;62020;113283;198958;80117;43591;28108;13618;101200;44432;32447
-115;'116;Cambodia;1861;Roundwood;5922;Export value;1000 USD;1465;1160;1127;1010;969;1046;1503;1706;3641;1853;94;94;94;94;94;94;94;94;94;94;94;49;49;49;49;195;195;1014;2650;5063;14356;86324;61944;113000;131000;62000;21000;1800;800;22;0;142;685;347;323;127;20343;5197;5907;6172;26094;19171;80814;143044;51384;59855;51432;17888;18438;4038;34736;9753;7680
-115;'116;Cambodia;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;20000;30000;30000;55000;30000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;10000;13000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;5000;5000;5000;10000;10000;10000;10000;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-115;'116;Cambodia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;525;90;1283;1384;591;6199
-115;'116;Cambodia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;171;25;170;147;124;723
-115;'116;Cambodia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;27;0;0;0;0;0
-115;'116;Cambodia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;39;0;0;0;0;0
-115;'116;Cambodia;1863;Roundwood, non-coniferous;5516;Production;m3;14885810;14698366;14717651;14563646;14416333;14275692;14166706;13979357;14013625;13469494;13677021;13879297;14370208;14361625;14126062;13588049;13328806;12678021;12435753;12184438;11815977;11730461;11776765;11840068;11939559;12053970;12134272;11879983;11813703;11785231;11906523;11829757;11747842;12056631;12026632;11863082;11807747;11560538;11236636;10298409;10047319;9862332;9683046;9511078;9334072;9165642;9004000;8848400;8699007;8720343;8573490;8436025;8303699;8176280;8088547;7946390;7809297;7677039;7549400;7426174;7306588;7191058;7079410
-115;'116;Cambodia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8983;22670;30075;19713;16909;49061;15091
-115;'116;Cambodia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3515;11515;7403;5717;7815;19179;3319
-115;'116;Cambodia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80098;43564;28108;13618;101200;44432;32447
-115;'116;Cambodia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51431;17849;18438;4038;34736;9753;7680
-115;'116;Cambodia;1864;Wood fuel;5516;Production;m3;14335810;14178366;14022651;13868646;13716333;13565692;13416706;13269357;13123625;12979494;13212021;13394297;13882208;13862625;13616062;13066049;12793806;12130021;11873753;11622438;11253977;11168461;11214765;11278068;11377559;11491970;11572272;11317983;11251703;11228231;11176523;11107757;11061842;11097631;10986632;10823082;10767747;10520538;10315636;10119409;9924319;9737332;9558046;9386078;9221072;9052642;8891000;8735400;8586007;8442343;8299490;8162025;8029699;7902280;7779547;7637390;7500297;7368039;7240400;7117174;6997588;6882058;6770410
-115;'116;Cambodia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666;666;;;;;;;
-115;'116;Cambodia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;;;;;;;
-115;'116;Cambodia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;20;52;52;;;620;200;200;200;200
-115;'116;Cambodia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;10;8;8;;;58;22;22;22;22
-115;'116;Cambodia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1628;Wood fuel, non-coniferous;5516;Production;m3;14335810;14178366;14022651;13868646;13716333;13565692;13416706;13269357;13123625;12979494;13212021;13394297;13882208;13862625;13616062;13066049;12793806;12130021;11873753;11622438;11253977;11168461;11214765;11278068;11377559;11491970;11572272;11317983;11251703;11228231;11176523;11107757;11061842;11097631;10986632;10823082;10767747;10520538;10315636;10119409;9924319;9737332;9558046;9386078;9221072;9052642;8891000;8735400;8586007;8442343;8299490;8162025;8029699;7902280;7779547;7637390;7500297;7368039;7240400;7117174;6997588;6882058;6770410
-115;'116;Cambodia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;200;200;200;200
-115;'116;Cambodia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;22;22;22;22
-115;'116;Cambodia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666;666;;;;;;;
-115;'116;Cambodia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;;;;;;;
-115;'116;Cambodia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;20;52;52;;;;;;;
-115;'116;Cambodia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;10;8;8;;;;;;;
-115;'116;Cambodia;1865;Industrial roundwood;5516;Production;m3;550000;520000;695000;695000;700000;730000;780000;740000;945000;520000;470000;490000;493000;504000;515000;527000;540000;553000;567000;567000;567000;567000;567000;567000;567000;567000;567000;567000;567000;567000;740000;735000;695000;959000;1040000;1040000;1040000;1040000;921000;179000;123000;125000;125000;125000;113000;113000;118000;118000;118000;288000;284000;284000;284000;284000;322000;322000;322000;322000;322000;322000;322000;322000;322000
-115;'116;Cambodia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1452;5;0;0;61;184;10;2;47;26;4640;945;1518;8985;23195;30165;20996;18293;49652;21290
-115;'116;Cambodia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;240;1;0;0;20;82;0;0.2;16;6;1103;263;483;3517;11686;7428;5887;7962;19303;4042
-115;'116;Cambodia;1865;Industrial roundwood;5916;Export quantity;m3;127000;82800;75200;66100;56600;65600;85700;95700;124400;61600;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;2900;2900;2900;2900;800;800;9200;17600;32930;84665;499089;350000;458000;459100;300000;100000;7000;3000;100;0;234;84;3376;2406;421;15883;3921;5451;5648;13607;15509;32602;62000;113231;198906;80117;43591;27488;13418;101000;44232;32247
-115;'116;Cambodia;1865;Industrial roundwood;5922;Export value;1000 USD;1465;1160;1127;1010;969;1046;1503;1706;3641;1853;94;94;94;94;94;94;94;94;94;94;94;49;49;49;49;195;195;1014;2650;5063;14356;86324;61944;113000;131000;62000;21000;1800;800;22;0;142;685;347;323;127;20343;5197;5907;6172;26094;19154;80797;143034;51376;59847;51432;17888;18380;4016;34714;9731;7658
-115;'116;Cambodia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;20000;30000;30000;55000;30000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;10000;13000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;5000;5000;5000;10000;10000;10000;10000;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-115;'116;Cambodia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;92;10;2;13;0;0;15;970;2;525;90;1283;1384;591;6199
-115;'116;Cambodia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;0;0.2;2;0;0;2;66;2;171;25;170;147;124;723
-115;'116;Cambodia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;95;0;0;0;6;0;0;0;19;27;0;0;0;0;0
-115;'116;Cambodia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;0;0;3;0;0;0;1;39;0;0;0;0;0
-115;'116;Cambodia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;92;10;2;13;0;0;15;970;2;525;90;1283;1384;591;6199
-115;'116;Cambodia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;0;0.2;2;0;0;2;66;2;171;25;170;147;124;723
-115;'116;Cambodia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;95;0;0;0;6;0;0;0;19;27;0;0;0;0;0
-115;'116;Cambodia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;0;0;3;0;0;0;1;39;0;0;0;0;0
-115;'116;Cambodia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;550000;520000;695000;695000;700000;710000;750000;710000;890000;490000;465000;485000;488000;499000;510000;522000;535000;548000;562000;562000;562000;562000;562000;562000;562000;562000;562000;562000;562000;557000;730000;722000;686000;959000;1040000;1040000;1040000;1040000;921000;179000;123000;125000;125000;125000;113000;113000;113000;113000;113000;278000;274000;274000;274000;274000;309000;309000;309000;309000;309000;309000;309000;309000;309000
-115;'116;Cambodia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1452;5;0;0;53;92;0;0;34;26;4640;930;548;8983;22670;30075;19713;16909;49061;15091
-115;'116;Cambodia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;240;1;0;0;19;70;0;0;14;6;1103;261;417;3515;11515;7403;5717;7815;19179;3319
-115;'116;Cambodia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930;84665;499089;350000;458000;459100;300000;100000;7000;3000;100;0;234;84;3376;2406;421;15883;3921;5356;5648;13607;15509;32596;62000;113231;198906;80098;43564;27488;13418;101000;44232;32247
-115;'116;Cambodia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5063;14356;86324;61944;113000;131000;62000;21000;1800;800;22;0;142;685;347;323;127;20343;5197;5895;6172;26094;19154;80794;143034;51376;59847;51431;17849;18380;4016;34714;9731;7658
-115;'116;Cambodia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1452;5;0;0;6;92;0;0;23;26;4390;902;452;1725;4680;3951;0;0;2294;100
-115;'116;Cambodia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;240;1;0;0;5;70;0;0;7;6;1074;253;270;455;1827;1452;0;0;506;20
-115;'116;Cambodia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930;84665;499089;350000;458000;459100;300000;100000;7000;3000;100;0;0;0;84;2406;421;15883;3921;5356;5648;13607;15509;32596;62000;113231;198906;80098;43564;27488;13418;101000;44232;32247
-115;'116;Cambodia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5063;14356;86324;61944;113000;131000;62000;21000;1800;800;22;0;0;0;16;323;127;20343;5197;5895;6172;26094;19154;80794;143034;51376;59847;51431;17849;18380;4016;34714;9731;7658
-115;'116;Cambodia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;47;0;0;0;11;0;250;28;96;7258;17990;26124;19713;16909;46767;14991
-115;'116;Cambodia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;0;0;0;7;0;29;8;147;3060;9688;5951;5717;7815;18673;3299
-115;'116;Cambodia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;234;84;3292;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;142;685;331;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1868;Sawlogs and veneer logs;5516;Production;m3;270000;230000;400000;390000;390000;410000;450000;400000;595000;160000;100000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;105000;65000;329000;410000;410000;410000;410000;291000;143000;100000;100000;100000;100000;100000;100000;105000;105000;105000;275000;275000;275000;275000;275000;313000;313000;313000;313000;313000;313000;313000;313000;313000
-115;'116;Cambodia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;127000;82800;75200;66100;56600;65600;85700;95700;124400;61600;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;2900;2900;2900;2900;800;800;9200;17600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1465;1160;1127;1010;969;1046;1503;1706;3641;1853;94;94;94;94;94;94;94;94;94;94;94;49;49;49;49;195;195;1014;2650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;20000;30000;30000;55000;30000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;10000;13000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;5000;5000;5000;10000;10000;10000;10000;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-115;'116;Cambodia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;31700;24100;50300;28900;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;100;100;100;100;100;100;100;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;463;392;1472;825;60;60;60;60;60;60;60;60;60;60;60;15;15;15;15;15;15;15;364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;270000;230000;400000;390000;390000;390000;420000;370000;540000;130000;95000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;100000;100000;92000;56000;329000;410000;410000;410000;410000;291000;143000;100000;100000;100000;100000;100000;100000;100000;100000;100000;265000;265000;265000;265000;265000;300000;300000;300000;300000;300000;300000;300000;300000;300000
-115;'116;Cambodia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;127000;82800;75200;66100;56600;65600;54000;71600;74100;32700;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;700;700;9100;15600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1465;1160;1127;1010;969;1046;1040;1314;2169;1028;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;180;180;999;2286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1871;Other industrial roundwood;5516;Production;m3;280000;290000;295000;305000;310000;320000;330000;340000;350000;360000;370000;380000;383000;394000;405000;417000;430000;443000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;630000;630000;630000;630000;630000;630000;630000;630000;630000;36000;23000;25000;25000;25000;13000;13000;13000;13000;13000;13000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-115;'116;Cambodia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;280000;290000;295000;305000;310000;320000;330000;340000;350000;360000;370000;380000;383000;394000;405000;417000;430000;443000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;630000;630000;630000;630000;630000;630000;630000;630000;630000;36000;23000;25000;25000;25000;13000;13000;13000;13000;13000;13000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-115;'116;Cambodia;1630;Wood charcoal;5510;Production;t;11259;11449;11643;11840;12040;12244;12451;12662;12876;13094;13523;13919;14987;15193;15054;14808;15212;14800;15199;15487;15732;16523;17575;18686;19976;21380;22764;23001;23920;25036;25624;30421;31568;35768;36275;41794;31749;32006;32372;31042;31441;31845;32255;32669;33090;33467;33800;34200;34624;35019;35418;35822;36231;36645;37063;37371;37681;37994;38309;38628;38951;39278;39607
-115;'116;Cambodia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;15;15;15;15;62;9;9;64;151;11;93;0
-115;'116;Cambodia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;16;16;16;16;45;6;6;47;87;39;34;1
-115;'116;Cambodia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4240;4700;7800;7800;12800;1700;1700;0;0;0;0;0;0;0;186;186;8;282;7931;7931;23296;23296;29026;25775;6025;9900;39611;94;98;20;120;22189
-115;'116;Cambodia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;361;580;601;996;107;107;0;0;0;0;0;0;0;25;25;1;130;699;699;2273;2273;2801;2579;655;1948;7285;37;42;10;47;2935
-115;'116;Cambodia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;800;800;800;800;800;12;12;25;25;25;25;16;16;229;477;308;279;285;44;22;22;221;2780
-115;'116;Cambodia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;20;20;20;20;2;2;9;9;11;11;26;26;59;291;138;81;67;11;6;6;144;1395
-115;'116;Cambodia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;0;4718;6712;64412;68012;28819;34284;4028;1948;447;447;2087;2087;9777;11730;14502;18177
-115;'116;Cambodia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;0;281;446;4612;2721;3068;1432;431;315;59;59;84;84;363;438;543;677
-115;'116;Cambodia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;4;4;4;4;4;4;10;0;2;2;2;3
-115;'116;Cambodia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;9;9;24;24;24;24;24;24;10;3;2;2;2;4
-115;'116;Cambodia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;0;4700;6700;64400;68000;13758;19223;4000;1802;400;400;1760;1760;9450;11403;14175;17850
-115;'116;Cambodia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;0;280;445;4611;2720;2405;769;426;207;50;50;81;81;360;435;540;674
-115;'116;Cambodia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;800;800;800;800;800;12;12;12;12;12;12;12;12;225;473;304;275;275;44;20;20;219;2777
-115;'116;Cambodia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;20;20;20;20;20;2;2;2;2;2;2;2;2;35;267;114;57;57;8;4;4;142;1391
-115;'116;Cambodia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;12;12;12;15061;15061;28;146;47;47;327;327;327;327;327;327
-115;'116;Cambodia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;663;663;5;108;9;9;3;3;3;3;3;3
-115;'116;Cambodia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5015;1289;1466.97;807;14
-115;'116;Cambodia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1584;343;439;243;9
-115;'116;Cambodia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;160;160;0;0
-115;'116;Cambodia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;22;22;0;0
-115;'116;Cambodia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-115;'116;Cambodia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-115;'116;Cambodia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;160;160;0;0
-115;'116;Cambodia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;22;22;0;0
-115;'116;Cambodia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5015;1289;1466.97;795;2
-115;'116;Cambodia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1584;343;439;238;4
-115;'116;Cambodia;1872;Sawnwood;5516;Production;m3;66800;70500;161000;157000;163700;158400;178700;145800;226400;35200;41200;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;71000;122000;132000;155000;195000;140000;80000;90000;60000;26000;20000;5000;82000;82000;82000;74000;74000;162000;112000;102000;102000;102000;102000;202000;352000;452000;302000;352000;202000;152000;100000;100000;100000;100000
-115;'116;Cambodia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;5;0;0;200;200;300;100;0;0;0;56;264;913;186;628;2147;650;450;105;1570;522;260;1087;2775;5780;10602;13948;39566;48450;42038;48633
-115;'116;Cambodia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;3;0;0;48;48;64;33;0;0;0;39;78;383;46;288;1064;496;278;73;447;156;335;354;819;1891;4696;5274;8832;13774;15076;20465
-115;'116;Cambodia;1872;Sawnwood;5916;Export quantity;m3;7000;11600;19400;5200;5200;6800;7900;7800;9200;2900;2900;;;;;;;;;;;;;;;200;100;200;3300;4800;2700;80293;152510;164900;155700;97700;81500;39600;10300;3000;5000;89822;79834;76559;26844;178245;145598;94081;57780;89580;77379;63535;90580;301978;438136;244345;319885;162452;56670;21367;24023;11627;25000
-115;'116;Cambodia;1872;Sawnwood;5922;Export value;1000 USD;327;540;829;105;328;419;402;380;867;279;279;;;;;;;;;;;;;;;47;14;37;564;922;758;17071;26516;29488;35753;43947;31541;14948;3586;1043;1629;8919;7399;8063;8156;72162;84325;60718;41948;55184;58700;43463;66576;269288;392989;164448;188867;104852;34073;10133;12386;5694;12243
-115;'116;Cambodia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;5000;5000;0;0;0;0;0;0;0;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0
-115;'116;Cambodia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;100;100;200;0;0;0;0;10;141;131;126;105;485;14;0;36;1296;22;107;796;2695;2805;6986;8876;31517;41062;35828;41969
-115;'116;Cambodia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;15;15;31;0;0;0;0;5;17;16;16;18;147;3;0;9;175;8;226;183;756;721;1630;2484;5643;8826;9867;16360
-115;'116;Cambodia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7588;4210;1300;700;300;0;0;0;0;0;0;0;19;169;586;498;1836;1450;1058;315;1;0;24;40;0;3;0;0;0;0;0;0
-115;'116;Cambodia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1489;1516;488;271;47;0;0;0;0;0;0;0;61;47;202;211;557;440;239;54;2;0;7;20;0;1;0;0;0;0;0;0
-115;'116;Cambodia;1633;Sawnwood, non-coniferous;5516;Production;m3;66800;70500;161000;157000;163700;158400;178700;145800;226400;35200;41200;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;71000;122000;122000;150000;190000;140000;80000;90000;60000;26000;20000;5000;80000;80000;80000;72000;72000;160000;110000;100000;100000;100000;100000;200000;350000;450000;300000;350000;200000;150000;100000;100000;100000;100000
-115;'116;Cambodia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;0;0;0;100;100;100;100;0;0;0;46;123;782;60;523;1662;636;450;69;274;500;153;291;80;2975;3616;5072;8049;7388;6210;6664
-115;'116;Cambodia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;0;0;33;33;33;33;0;0;0;34;61;367;30;270;917;493;278;64;272;148;109;171;63;1170;3066;2790;3189;4948;5209;4105
-115;'116;Cambodia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;7000;11600;19400;5200;5200;6800;7900;7800;9200;2900;2900;;;;;;;;;;;;;;;200;100;200;3300;4800;2700;72705;148300;163600;155000;97400;81500;39600;10300;3000;5000;89822;79834;76540;26675;177659;145100;92245;56330;88522;77064;63534;90580;301954;438096;244345;319882;162452;56670;21367;24023;11627;25000
-115;'116;Cambodia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;327;540;829;105;328;419;402;380;867;279;279;;;;;;;;;;;;;;;47;14;37;564;922;758;15582;25000;29000;35482;43900;31541;14948;3586;1043;1629;8919;7399;8002;8109;71960;84114;60161;41508;54945;58646;43461;66576;269281;392969;164448;188866;104852;34073;10133;12386;5694;12243
-115;'116;Cambodia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;29000;29000;182000;181000;68000;40000;30000;23000;21000;24000;20000;20000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000
-115;'116;Cambodia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;300;300;300;100;100;0;0;0;0;0;20;1238;118;67;152;154;1530;2189;6966;2611;8029;26021;26934;35614;15220;36517;117948;118582;151044;70982;60128
-115;'116;Cambodia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;88;88;88;45;45;0;0;0;0;0;5;300;70;33;89;78;833;1044;1661;1156;4099;12749;13250;18292;24667;45013;70831;82073;131555;76945;72701
-115;'116;Cambodia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;17800;29100;182000;181000;68200;45000;24000;7000;2495;6030;374;361;1820;285;5423;8708;7127;7027;9189;2270;9600;1965;2051;5571;4487;12420;13109;5170;5170
-115;'116;Cambodia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;3785;6188;47100;81287;30687;15192;7898;2494;279;1037;383;449;864;736;3303;5500;5074;6308;6616;1851;5796;1654;1059;1925;2473;1560;1423;993;993
-115;'116;Cambodia;1873;Wood-based panels;5516;Production;m3;1900;1300;1400;2900;2500;2700;3000;3400;4300;3400;2200;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;9000;29000;29000;20000;16000;15000;27000;14000;6000;27000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;12000;12000;27000;27000;32000;152000;202000;202000;452000;452000
-115;'116;Cambodia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;33;33;300;300;0;0;200;200;250;250;3933;1048;923;3342;1810;5320;4422;5295;5907;6614;11002;14460;33777;140042;210700;252662;312265;204365;189706.95;144342;146613
-115;'116;Cambodia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;11;11;97;97;0;0;46;46;59;59;908;268;219;821;694;2838;2138;2507;4228;3774;7451;9786;20276;72594;119722;150218;135941;87554;89505.17;63718;64957
-115;'116;Cambodia;1873;Wood-based panels;5916;Export quantity;m3;;;;400;1800;1200;800;900;1400;800;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;2300;2300;2300;2300;2300;2300;2300;0;0;0;700;16000;15000;27000;14000;4000;19814;8993;5256;1417;858;263;1339;38;59;1473;12057;10341;8420;21655;4324;29137;119742;125049;178540;168581;137040
-115;'116;Cambodia;1873;Wood-based panels;5922;Export value;1000 USD;;;;20;118;103;92;101;195;116;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;356;356;356;356;356;356;356;0;0;0;389;7388;6691;11928;4628;1322;9567;4995;2998;404;274;145;550;13;92;1483;8038;7606;12492;29423;4237;33085;150492;188689;273471;278909;204845
-115;'116;Cambodia;1640;Plywood and LVL;5516;Production;m3;1900;1300;1400;2900;2500;2700;3000;3400;4300;3400;2200;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;9000;29000;29000;20000;16000;15000;27000;14000;6000;27000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;12000;12000;27000;27000;32000;152000;202000;202000;452000;452000
-115;'116;Cambodia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;652;375;250;649;916;2323;1333;3420;4032;3119;7507;10442;25285;124194;206581;236297;261190;138462;112026;80696;77413
-115;'116;Cambodia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;197;144;95;284;455;1251;728;1488;3209;1842;5519;7422;15216;64075;117203;143560;116996;63344;54201;40988;33440
-115;'116;Cambodia;1640;Plywood and LVL;5916;Export quantity;m3;;;;400;1800;1200;800;900;1400;800;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;2300;2300;2300;2300;2300;2300;2300;0;0;0;700;16000;15000;27000;14000;4000;19814;8993;5256;1417;858;263;1339;38;59;1473;12057;10337;8217;21649;4310;29123;119728;125035;178526;168581;134827
-115;'116;Cambodia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;20;118;103;92;101;195;116;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;356;356;356;356;356;356;356;0;0;0;389;7388;6691;11928;4628;1322;9567;4995;2998;404;274;145;550;13;92;1483;8038;7602;12432;29417;4235;33083;150490;188687;273469;278909;202021
-115;'116;Cambodia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;200;250;250;362;157;157;503;45;823;1542;639;639;2208;2208;2026;1827;2094;1907;1907;21622;22571;22823.78;10946;11907
-115;'116;Cambodia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;59;59;104;26;26;173;59;460;775;556;556;1308;1308;1247;1230;1294;943;943;8316;7411;8323.7;5010;7215
-115;'116;Cambodia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;203;6;14;14;14;14;14;0;1
-115;'116;Cambodia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;60;6;2;2;2;2;2;0;0
-115;'116;Cambodia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;222;222;222;222;222;222;108;108;390;667;2074;16;2;8555;5873;3290;3049;479
-115;'116;Cambodia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;0;0;39;39;39;39;39;39;78;78;314;375;1165;6;7;2914;1972;1405.83;1050;509
-115;'116;Cambodia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;33;33;300;300;0;0;0;0;0;0;2838;516;516;1968;627;1952;1325;1014;1014;1179;1179;1602;5998;11680;2196;14456;20898;37459;51567.17;49651;56814
-115;'116;Cambodia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;11;11;97;97;0;0;0;0;0;0;464;98;98;325;141;1088;596;424;424;546;546;803;3455;6060;1570;5708;7715;14827;25574.65;16670;23793
-115;'116;Cambodia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212
-115;'116;Cambodia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2824
-115;'116;Cambodia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2068;35;35;1758;147;1404;784;735;735;735;735;620;732;56;155;782;255;141;121;112;480
-115;'116;Cambodia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;16;16;279;61;821;365;290;290;290;290;256;361;66;101;329;131;191;400;196;244
-115;'116;Cambodia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49
-115;'116;Cambodia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37
-115;'116;Cambodia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;479;142;400;527;535;275;275;441;441;978;5265;7784;2039;13629;19621;35992;51356.17;49397;56190
-115;'116;Cambodia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;18;50;259;221;123;123;250;250;538;3092;4025;1467;5351;7287;13843;25116.65;16428;23442
-115;'116;Cambodia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2163
-115;'116;Cambodia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2787
-115;'116;Cambodia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;300;0;0;0;0;0;0;770;2;2;68;80;21;6;4;4;3;3;4;1;3840;2;45;1022;1326;90;142;144
-115;'116;Cambodia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;97;97;0;0;0;0;0;0;42;0;0;28;30;8;10;11;11;6;6;9;2;1969;2;28;297;793;58;46;107
-115;'116;Cambodia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;33;33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;5000;5000;5000;6000;17000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000
-115;'116;Cambodia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;76;76;76;95;136;323;323;342;342;287;99;100;318;571;917;1737;280;77;78;691;1168
-115;'116;Cambodia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;19;19;19;26;73;188;188;159;159;155;131;128;259;411;588;1364;155;34;36;1790;1303
-115;'116;Cambodia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3735;58;58;6135;16562;19787;23680;5751;1951;9831;14225;4928;900;1200;4853;915;500;1899;306;0;25497
-115;'116;Cambodia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;6;6;609;2477;3988;2944;528;156;1235;2179;817;111;145;846;139;40;266;89;0;3041
-115;'116;Cambodia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3;3;3;22;74;99;99;99;99;99;99;100;100;102;448;1268;155;7;8;691;1167
-115;'116;Cambodia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;4;4;11;53;131;131;131;131;131;131;128;128;137;314;1090;143;31;33;1790;1303
-115;'116;Cambodia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;111;111;111;111;111;111;111;25;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;18;18;18;18;18;18;2;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;28;67;67;67;67;67;67;67;68;68;70;416;1236;224;82;8;689.48;1166.48
-115;'116;Cambodia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;27;47;47;47;47;47;47;47;44;44;53;230;1006;248;144;22;1786.07;1295.07
-115;'116;Cambodia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;111;111;111;111;111;111;111;25;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;18;18;18;18;18;18;2;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;7;7;7
-115;'116;Cambodia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;20;20;20;20
-115;'116;Cambodia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;;;;;;;
-115;'116;Cambodia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;;;;;;;
-115;'116;Cambodia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;12;51;51;51;51;51;51;51;52;52;52;400;1220;145;0;1;682;1159
-115;'116;Cambodia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;8;28;28;28;28;28;28;28;25;25;25;211;987;112;0;2;1766;1275
-115;'116;Cambodia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;111;111;111;111;111;111;111;25;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;18;18;18;18;18;18;2;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522
-115;'116;Cambodia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462
-115;'116;Cambodia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;;;;;;;;;
-115;'116;Cambodia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;;;;;;;;;
-115;'116;Cambodia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;49;49;49;49;49;49;49;52;52;52;400;1220;145;0;1;682;637
-115;'116;Cambodia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;26;26;26;26;26;26;26;25;25;25;211;987;112;0;2;1766;813
-115;'116;Cambodia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-115;'116;Cambodia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-115;'116;Cambodia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-115;'116;Cambodia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-115;'116;Cambodia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86;86;86;0;0;0;;;;;;;
-115;'116;Cambodia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;0;0;0;;;;;;;
-115;'116;Cambodia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16;16;75;75;0;0.48;0.48
-115;'116;Cambodia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;124;124;0;0.07;0.07
-115;'116;Cambodia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;10;23;48;48;48;48;48;48;48;48;48;48;48;6;0;0;2;1
-115;'116;Cambodia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;3;25;103;103;103;103;103;103;103;103;103;103;103;19;11;11;4;8
-115;'116;Cambodia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;1;1;1;8;8;8;596;90;3;0;0;0
-115;'116;Cambodia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;9;9;9;9;9;9;236;52;13;0;0;0
-115;'116;Cambodia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;6000;17000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000
-115;'116;Cambodia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;73;62;224;224;243;243;188;0;0;218;469;469;469;125;70;70;0;1
-115;'116;Cambodia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;20;57;57;28;28;24;0;0;131;274;274;274;12;3;3;0;0
-115;'116;Cambodia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3735;58;58;6110;16451;19676;23569;5640;1840;9720;14114;4903;900;1200;4853;915;500;1899;306;0;25497
-115;'116;Cambodia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;6;6;607;2459;3970;2926;510;138;1217;2161;815;111;145;846;139;40;266;89;0;3041
-115;'116;Cambodia;1876;Paper and paperboard;5510;Production;t;500;900;1000;1300;600;1200;600;1000;500;500;;;0;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1876;Paper and paperboard;5610;Import quantity;t;2700;3400;4000;4800;6200;800;800;5500;6500;1700;4000;3400;3400;3400;3400;3400;3400;3400;3400;3400;400;200;200;200;200;200;200;200;200;200;200;1131;1100;1800;1600;1800;1800;4299;10200;10000;30000;30000;37079;28393;28393;28325;41196;44179;52841;71393;71393;111773;111773;169990;91866;140897;129312;173872;269827;290362;295676.09;297795;189685
-115;'116;Cambodia;1876;Paper and paperboard;5622;Import value;1000 USD;993;1184;1286;1445;1953;444;444;3050;3590;929;2192;1885;1885;1885;1885;1885;1885;1885;1885;1885;200;100;100;100;104;104;99;99;99;99;99;670;663;998;1280;1481;1481;2860;7222;5985;14113;14113;17947;20389;20389;16061;28868;34036;34450;50732;50732;71103;71103;121686;80833;118067;120888;147587;210091;259871;308164.74;317891;237628
-115;'116;Cambodia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;70;70;251;239;250;492;288;288;266;266;51;124;202;82;142;277;593;320;1746;333
-115;'116;Cambodia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;45;45;111;97;285;1545;179;179;185;185;82;289;811;110;191;547;662;566;1183;806
-115;'116;Cambodia;2042;Graphic papers;5510;Production;t;500;900;1000;1300;600;1200;600;1000;500;500;;;0;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;2042;Graphic papers;5610;Import quantity;t;1500;2200;3000;3900;5400;;;;;;;;;;;;;;;;;;;;;;0;;;;;331;500;1000;700;700;700;2399;4200;4900;8800;8800;11217;9480;9480;8130;16690;20894;21513;27345;27345;61884;61884;80551;47690;48930;59436;72184;35451;41379;55819.53;43267;65464
-115;'116;Cambodia;2042;Graphic papers;5622;Import value;1000 USD;400;566;755;970;1509;;;;;;;;;;;;;;;;;;;;;;0;;;;;259;360;528;626;545;545;1500;2672;3359;5612;5612;7466;7356;7356;6216;11337;15281;14609;22704;22704;44154;44154;63953;54949;60378;68919;81996;28969;33024;46184.2;37080;93661
-115;'116;Cambodia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;8;8;49;16;16;41;41;41;19;19;16;33;48;30;85;23;232;21;107;12
-115;'116;Cambodia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;5;5;40;19;19;41;41;41;47;47;36;63;146;68;145;110;201;78;234;122
-115;'116;Cambodia;1671;Newsprint;5510;Production;t;500;900;1000;1300;600;1200;600;1000;500;500;;;0;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1671;Newsprint;5610;Import quantity;t;1500;2200;3000;3900;5400;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;600;500;200;200;500;600;600;1000;1000;817;443;443;1957;1757;3136;2554;1769;1769;3913;3913;1883;1677;1489;1757;837;4691;3694;6140.64;5420;6305
-115;'116;Cambodia;1671;Newsprint;5622;Import value;1000 USD;400;566;755;970;1509;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;288;438;86;86;190;301;301;457;457;488;226;226;1332;1199;2192;1444;1079;1079;2440;2440;1439;1378;1342;845;686;3243;3183;4449.72;5180;6715
-115;'116;Cambodia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0
-115;'116;Cambodia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0
-115;'116;Cambodia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;500;400;200;500;500;1899;3600;4300;7800;7800;10400;9037;9037;6173;14933;17758;18959;25576;25576;57971;57971;78668;46013;47441;57679;71347;30760;37685;49678.89;37847;59159
-115;'116;Cambodia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;360;240;188;459;459;1310;2371;3058;5155;5155;6978;7130;7130;4884;10138;13089;13165;21625;21625;41714;41714;62514;53571;59036;68074;81310;25726;29841;41734.48;31900;86946
-115;'116;Cambodia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;6;6;47;2;2;27;27;27;5;5;2;19;34;16;71;9;218;7;93;12
-115;'116;Cambodia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;4;4;39;5;5;27;27;27;33;33;22;49;132;54;131;96;187;64;220;122
-115;'116;Cambodia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;46;55;100;100;1357;1975;1975;132;462;333;433;16827;16827;32717;32717;32717;32855;31750;31750;31750;6498;9530;3444.62;1758;1733
-115;'116;Cambodia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;21;27;45;45;562;1559;1559;139;347;323;478;15088;15088;25304;25304;25304;43814;44724;44724;44724;3754;5671;2947.12;2040;1967
-115;'116;Cambodia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;6;47;0
-115;'116;Cambodia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;19;27;10;125;1
-115;'116;Cambodia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047;1985;2371;4300;4300;5807;4177;4177;5154;7202;7049;8778;4672;4672;4940;4940;24783;2898;9229;7814;25841;14257;18209;27984.54;29658;44847
-115;'116;Cambodia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;1398;1803;3040;3040;4170;3295;3295;3914;6061;6914;8237;3444;3444;4367;4367;21921;2562;8624;6717;25743;12977;15167;24164.79;23525;60078
-115;'116;Cambodia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;26;26;26;4;4;1;18;33;15;69;7;217;1;30;12
-115;'116;Cambodia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;25;25;25;31;31;20;47;129;52;26;76;155;16;88;120
-115;'116;Cambodia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;1569;1874;3400;3400;3236;2885;2885;887;7269;10376;9748;4077;4077;20314;20314;21168;10260;6462;18115;13756;10005;9946;18249.73;6431;12579
-115;'116;Cambodia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;952;1228;2070;2070;2246;2276;2276;831;3730;5852;4450;3093;3093;12043;12043;15289;7195;5688;16633;10843;8995;9003;14622.58;6335;24901
-115;'116;Cambodia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;6;6;46;1;1;1;1;1;1;1;1;1;1;1;2;1;0;0;16;0
-115;'116;Cambodia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;4;4;36;2;2;2;2;2;2;2;2;2;2;2;105;1;5;38;7;1
-115;'116;Cambodia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1675;Other paper and paperboard;5610;Import quantity;t;1200;1200;1000;900;800;800;800;5500;6500;1700;4000;3400;3400;3400;3400;3400;3400;3400;3400;3400;400;200;200;200;200;200;200;200;200;200;200;800;600;800;900;1100;1100;1900;6000;5100;21200;21200;25862;18913;18913;20195;24506;23285;31328;44048;44048;49889;49889;89439;44176;91967;69876;101688;234376;248983;239856.56;254528;124221
-115;'116;Cambodia;1675;Other paper and paperboard;5622;Import value;1000 USD;593;618;531;475;444;444;444;3050;3590;929;2192;1885;1885;1885;1885;1885;1885;1885;1885;1885;200;100;100;100;104;104;99;99;99;99;99;411;303;470;654;936;936;1360;4550;2626;8501;8501;10481;13033;13033;9845;17531;18755;19841;28028;28028;26949;26949;57733;25884;57689;51969;65591;181122;226847;261980.54;280811;143967
-115;'116;Cambodia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;62;62;202;223;234;451;247;247;247;247;35;91;154;52;57;254;361;299;1639;321
-115;'116;Cambodia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;71;78;266;1504;138;138;138;138;46;226;665;42;46;437;461;488;949;684
-115;'116;Cambodia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;290;509;509;167;428;67;16;790;790;2511;2511;2645;1943;2401;3674;6278;10265;8368;7402.11;11910;11631
-115;'116;Cambodia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;439;336;561;561;327;402;156;59;820;820;2617;2617;2545;2053;2764;4297;6933;11749;9543;8351;14678;16667
-115;'116;Cambodia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;16;16;16;16;11;91;96;23;18
-115;'116;Cambodia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;25;25;25;25;13;107;123;20;119
-115;'116;Cambodia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13600;13600;21701;15191;15191;16769;17598;19177;28268;39269;39269;46489;46489;83095;37910;79864;65105;94440;219270;237682;228366.9;238863;111321
-115;'116;Cambodia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4081;4081;7189;9418;9418;6755;10573;12615;15009;22253;22253;23452;23452;46367;21173;45491;44788;56841;164384;214760;249973.62;262729;123935
-115;'116;Cambodia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;197;197;197;197;197;197;197;197;32;37;114;29;29;231;261;194;1611;293
-115;'116;Cambodia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;65;65;65;65;65;65;65;65;15;20;555;13;13;416;345;356;921;543
-115;'116;Cambodia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;10900;16674;3681;3681;11470;7857;6919;13101;18814;18814;28092;28092;44618;11437;19709;41301;90436;154841;149306;142633.65;150658;48270
-115;'116;Cambodia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3288;3288;5072;2282;2282;3955;3384;3460;5444;9545;9545;13438;13438;22920;6156;10480;21643;50977;87407;81311;82243.43;88675;28980
-115;'116;Cambodia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;140;140;140;140;140;3;21;21;21;21;209;261;192;224;224
-115;'116;Cambodia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;2;9;9;9;9;402;345;323;406;406
-115;'116;Cambodia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;1712;3537;3537;3303;8386;10213;14559;5104;5104;6110;6110;36972;20635;37805;18391;2125;19139;29487;27455.62;32707;43298
-115;'116;Cambodia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;720;2192;2192;1550;6121;7327;9017;5478;5478;3583;3583;21334;10851;21077;16394;4059;38445;87831;121556.28;127272;69623
-115;'116;Cambodia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57;57;57;57;29;16;93;8;8;0;0;2;0;0
-115;'116;Cambodia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;13;11;546;4;4;1;0;33;0;1
-115;'116;Cambodia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;800;3078;7731;7731;1754;1306;1874;521;15234;15234;12034;12034;1215;5786;22283;3051;1773;44694;58658;57942.64;55127;14942
-115;'116;Cambodia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;304;1305;4794;4794;1100;1036;1684;473;7120;7120;6172;6172;1711;4076;13837;4049;1703;37890;44961;45223.71;45694;19020
-115;'116;Cambodia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;58
-115;'116;Cambodia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;134
-115;'116;Cambodia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1700;237;242;242;242;49;171;87;117;117;253;253;290;52;67;2362;106;596;231;335;371;4811
-115;'116;Cambodia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;396;92;150;150;150;32;144;75;110;110;259;259;402;90;97;2702;102;642;657;950.2;1088;6312
-115;'116;Cambodia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;11;11
-115;'116;Cambodia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;2;2
-115;'116;Cambodia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-115;'116;Cambodia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1200;1200;1000;900;800;800;800;5500;6500;1700;4000;3400;3400;3400;3400;3400;3400;3400;3400;3400;400;200;200;200;200;200;200;200;200;200;200;800;600;800;900;1100;1100;1900;6000;5100;7000;7000;3871;3213;3213;3259;6480;4041;3044;3989;3989;889;889;3699;4323;9702;1097;970;4841;2933;4087.55;3755;1269
-115;'116;Cambodia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;593;618;531;475;444;444;444;3050;3590;929;2192;1885;1885;1885;1885;1885;1885;1885;1885;1885;200;100;100;100;104;104;99;99;99;99;99;411;303;470;654;936;936;1360;4550;2626;3981;3981;2956;3054;3054;2763;6556;5984;4773;4955;4955;880;880;8821;2658;9434;2884;1817;4989;2544;3655.92;3404;3365
-115;'116;Cambodia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;5;5;5;26;37;252;48;48;48;48;1;38;24;7;12;12;9;9;5;10
-115;'116;Cambodia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;6;6;6;13;201;1434;68;68;68;68;26;181;85;4;8;8;9;9;8;22
-115;'116;Cambodia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30898;28252;43342;50616;46202;133680;115259
-115;'116;Cambodia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42320;51777;38051;105768;175719;281098;432071
-115;'116;Cambodia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;252;1685;5220;4372;3863;946
-115;'116;Cambodia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36940;42353;16357;16992;27922;31187;49932
-115;'116;Cambodia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;47;133;109;109;35
-115;'116;Cambodia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;13719;23146;27468;48345
-115;'116;Cambodia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;244;1638;5087;4263;3754;911
-115;'116;Cambodia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36904;42317;16321;3273;4776;3719;1587
-115;'116;Cambodia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;1090;1915;2031;2183;8977;2282
-115;'116;Cambodia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;24;202;9;107;2;90
-115;'116;Cambodia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289;2265;5679;3281;3339;8817;5698
-115;'116;Cambodia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;35;61;40;12;26;26
-115;'116;Cambodia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7127;4862;6318;18970;15295;7408;14668
-115;'116;Cambodia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;574;1989;8335;8218;8218
-115;'116;Cambodia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;1003
-115;'116;Cambodia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;790
-115;'116;Cambodia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18848;18055;25843;17055;16656;98226;85484
-115;'116;Cambodia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5294;9326;20814;86726;127181;214717;356610
-115;'116;Cambodia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2019;1114;660;307;556;301;93
-115;'116;Cambodia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-115;'116;Cambodia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;614;1242;3752;3801;6088;6088
-115;'116;Cambodia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;21;43;12;12162;26948;17195
-115;'116;Cambodia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190301;223788;267388;259477;320519;299528;275874
-115;'116;Cambodia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11510;10673;14495;12870;23179;34900;46336
-115;'116;Cambodia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;100;80;193;28;300;531
-115;'116;Cambodia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-115;'116;Cambodia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6057;12196;9363;11098;19377;22355;24865
-115;'116;Cambodia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;288;515;147;226;230;903
-115;'116;Cambodia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12149;14318;20123;15412;16027;12245;25181
-115;'116;Cambodia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3997;2984;3161;1649;1802;3355;693
-115;'116;Cambodia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65075;65003;96935;93634;108609;102591;52033
-115;'116;Cambodia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4745;4559;7395;8256;17950;26362;31767
-115;'116;Cambodia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106916;132171;140887;139140;176478;162037;173264
-115;'116;Cambodia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565;2842;3424;2818;3201;4953;12973
-32;'120;Cameroon;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164792;100205;116819;118400;138868;225293;260501
-32;'120;Cameroon;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847190;967898;854546;634497;772984;785349;914056
-32;'120;Cameroon;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;422;585;589;656;791;1162;2151;2728;3192;3350;2922;4161;4932;4826;4826;11346;14264;14164;12464;11464;9564;8362;5702;6172;16317;48487;44691;35789;36084;56756;60758;17932;18502;20800;24181;22101;22804;22842;18207;18395;27640;43430;37213;36826;37627;40881;39081;51797;30660;49401.3;50363;46330;46344;59844;53759;46289;107596;45620;59710;61074;60266;65786;99090
-32;'120;Cameroon;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;6148;6304;7416;9602;9899;12121;13732;18330;20150;21305;22369;24533;55225;63928;44288;73315;56535;108463;144583;167628;93848;76696;58143;60055;97701;63443;77162;116073;103233;265451;234532;295604;209340;299061;434121;424069;436161;268232;401790;448658;298725;350824;387813;384173;504669;661965;632242;619107;530857;663518;815321;801085;767443;801230;904985;854961;834730;962224;844527;630179;769373;770890;898396
-32;'120;Cameroon;1861;Roundwood;5516;Production;m3;7507640;7509921;7531213;7626516;7631830;7700155;7700492;7752840;7749199;7866569;7970295;8020218;8095998;8158681;8101399;8507678;8652507;8750497;8824755;8781883;8779827;8935583;9074795;9305706;9527765;9556715;9789817;9972701;10260187;10783650;10971508;11014641;11317785;11935359;12310352;12551516;12169826;11064452;10865388;11005347;10452669;10555659;10980353;11206789;11285004;11861824;12542000;11898500;11693344;12253983;12433570;12135710;12870432;13508763;13925903;14257524;14329688;14403106;14477798;13939958;14171543;14252356;14334489
-32;'120;Cameroon;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;437;75;9;9;0;0;5842;4319;6832;630;811;5154;953;0;739;4;12;5694;0;0;8042;1331;37;304
-32;'120;Cameroon;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;86;17;3;3;0;0;1155;455;2450;495;197.3;832;129;0;216;1;1;1366;0;0;871;259;45;50
-32;'120;Cameroon;1861;Roundwood;5916;Export quantity;m3;164700;156800;206600;228300;218400;285900;279300;364400;425500;511200;546300;515000;703000;647000;472000;598600;396700;654300;843400;743300;443700;447800;391000;496000;745700;411200;442000;537600;456700;756000;770825;679864;791500;1255000;1236000;1307000;1706000;1604000;975000;894000;233000;144844;70081;29350;237271;502461;524891;363848;450331;702349;780731;852232;804465;1051235;1152600;1390052;1420041;1290041;945753;481000;883039;467109;726660
-32;'120;Cameroon;1861;Roundwood;5922;Export value;1000 USD;4780;4931;6204;7454;7733;9274;10528;13850;14220;15437;16839;17628;45526;49043;30756;48554;32500;78516;101208;113873;55518;45811;34431;33347;64300;37000;47663;74611;71733;180492;156748;205029;137534;161426;303844;266627;237136;118326;164250;101182;28424;17612;9106;5005;90408;179868;193299;163504;168662;249342;291527;269312;272161;308024;384982;331094;323324;394003;280633;130859;248325;122987;195363
-32;'120;Cameroon;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5694;0;0;7927;1330;4;280
-32;'120;Cameroon;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1366;0;0;838;253;18;33
-32;'120;Cameroon;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;0;0;39;54;250
-32;'120;Cameroon;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;40;27;68;68;68
-32;'120;Cameroon;1863;Roundwood, non-coniferous;5516;Production;m3;7507640;7509921;7531213;7626516;7631830;7700155;7700492;7752840;7749199;7866569;7970295;8020218;8095998;8158681;8101399;8507678;8652507;8750497;8824755;8781883;8779827;8935583;9074795;9305706;9527765;9556715;9789817;9972701;10260187;10783650;10971508;11014641;11317785;11935359;12310352;12551516;12169826;11064452;10865388;11005347;10452669;10555659;10980353;11206789;11285004;11861824;12542000;11898500;11693344;12253983;12433570;12135710;12870432;13508763;13925903;14257524;14329688;14403106;14477798;13939958;14171543;14252356;14334489
-32;'120;Cameroon;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;115;1;33;24
-32;'120;Cameroon;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;33;6;27;17
-32;'120;Cameroon;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1420000;1290000;945753;481000;883000;467055;726410
-32;'120;Cameroon;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323304;393983;280593;130832;248257;122919;195295
-32;'120;Cameroon;1864;Wood fuel;5516;Production;m3;6749640;6740921;6732213;6723516;6714830;6706155;6697492;6688840;6680199;6671569;6694295;6733218;6730998;6665681;6594399;6786678;6737507;6596497;6630755;6585883;6479827;6611583;6663795;6729706;6762765;6777715;6986817;7264701;7388187;7647650;7886508;8086641;8381785;8624359;8722352;8818516;8914826;8957452;9033388;9111347;9182669;9255659;9330353;9406789;9485004;9565824;9648000;9732500;9818344;9905983;9992570;10080710;10170432;10261763;10354732;10425659;10497823;10571241;10645933;10721915;10801425;10882238;10964371
-32;'120;Cameroon;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-32;'120;Cameroon;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-32;'120;Cameroon;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;45;40;32;;;;;;;
-32;'120;Cameroon;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;7;23;4;;;;;;;
-32;'120;Cameroon;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1628;Wood fuel, non-coniferous;5516;Production;m3;6749640;6740921;6732213;6723516;6714830;6706155;6697492;6688840;6680199;6671569;6694295;6733218;6730998;6665681;6594399;6786678;6737507;6596497;6630755;6585883;6479827;6611583;6663795;6729706;6762765;6777715;6986817;7264701;7388187;7647650;7886508;8086641;8381785;8624359;8722352;8818516;8914826;8957452;9033388;9111347;9182669;9255659;9330353;9406789;9485004;9565824;9648000;9732500;9818344;9905983;9992570;10080710;10170432;10261763;10354732;10425659;10497823;10571241;10645933;10721915;10801425;10882238;10964371
-32;'120;Cameroon;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-32;'120;Cameroon;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-32;'120;Cameroon;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;45;40;32;;;;;;;
-32;'120;Cameroon;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;7;23;4;;;;;;;
-32;'120;Cameroon;1865;Industrial roundwood;5516;Production;m3;758000;769000;799000;903000;917000;994000;1003000;1064000;1069000;1195000;1276000;1287000;1365000;1493000;1507000;1721000;1915000;2154000;2194000;2196000;2300000;2324000;2411000;2576000;2765000;2779000;2803000;2708000;2872000;3136000;3085000;2928000;2936000;3311000;3588000;3733000;3255000;2107000;1832000;1894000;1270000;1300000;1650000;1800000;1800000;2296000;2894000;2166000;1875000;2348000;2441000;2055000;2700000;3247000;3571171;3831865;3831865;3831865;3831865;3218043;3370118;3370118;3370118
-32;'120;Cameroon;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;437;75;9;9;0;0;5842;4319;6832;630;811;5154;953;0;739;4;12;5694;0;0;8042;1331;37;281
-32;'120;Cameroon;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;86;17;3;3;0;0;1155;455;2450;495;197.3;832;129;0;216;1;1;1366;0;0;871;259;45;33
-32;'120;Cameroon;1865;Industrial roundwood;5916;Export quantity;m3;164700;156800;206600;228300;218400;285900;279300;364400;425500;511200;546300;515000;703000;647000;472000;598600;396700;654300;843400;743300;443700;447800;391000;496000;745700;411200;442000;537600;456700;756000;770825;679864;791500;1255000;1236000;1307000;1706000;1604000;975000;894000;233000;144844;70081;29350;237271;502461;524891;363848;450331;702265;780647;852148;804381;1051190;1152560;1390020;1420041;1290041;945753;481000;883039;467109;726660
-32;'120;Cameroon;1865;Industrial roundwood;5922;Export value;1000 USD;4780;4931;6204;7454;7733;9274;10528;13850;14220;15437;16839;17628;45526;49043;30756;48554;32500;78516;101208;113873;55518;45811;34431;33347;64300;37000;47663;74611;71733;180492;156748;205029;137534;161426;303844;266627;237136;118326;164250;101182;28424;17612;9106;5005;90408;179868;193299;163504;168662;249326;291511;269296;272145;308017;384959;331090;323324;394003;280633;130859;248325;122987;195363
-32;'120;Cameroon;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437;11;0;0;0;0;45;33;200;0;3;0;272;0;0;4;12;5694;0;0;7927;1330;4;280
-32;'120;Cameroon;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;4;0;0;0;0;2;4;9;0;0.3;0;36;0;0;1;1;1366;0;0;838;253;18;33
-32;'120;Cameroon;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;293;0;0;0;0;0;0;0;0;3524;148;2381;190;560;20;41;41;0;0;39;54;250
-32;'120;Cameroon;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;137;0;0;0;0;0;0;0;0;435;93;267;74;191;32;20;20;40;27;68;68;68
-32;'120;Cameroon;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437;11;0;0;0;0;45;33;200;0;3;0;272;0;0;4;12;5694;0;0;7927;1330;4;280
-32;'120;Cameroon;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;4;0;0;0;0;2;4;9;0;0.3;0;36;0;0;1;1;1366;0;0;838;253;18;33
-32;'120;Cameroon;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;293;0;0;0;0;0;0;0;0;3524;148;2381;190;560;20;41;41;0;0;39;54;250
-32;'120;Cameroon;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;137;0;0;0;0;0;0;0;0;435;93;267;74;191;32;20;20;40;27;68;68;68
-32;'120;Cameroon;1867;Industrial roundwood, non-coniferous;5516;Production;m3;758000;769000;799000;903000;917000;994000;1003000;1064000;1069000;1195000;1276000;1287000;1365000;1493000;1507000;1721000;1915000;2154000;2194000;2196000;2300000;2324000;2411000;2576000;2765000;2779000;2803000;2708000;2872000;3136000;3085000;2928000;2936000;3311000;3588000;3733000;3255000;2107000;1832000;1894000;1270000;1300000;1650000;1800000;1800000;2296000;2894000;2166000;1875000;2348000;2441000;2055000;2700000;3247000;3571171;3831865;3831865;3831865;3831865;3218043;3370118;3370118;3370118
-32;'120;Cameroon;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;64;9;9;0;0;5797;4286;6632;630;808;5154;681;0;739;0;0;0;0;0;115;1;33;1
-32;'120;Cameroon;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;3;3;0;0;1153;451;2441;495;197;832;93;0;216;0;0;0;0;0;33;6;27;0
-32;'120;Cameroon;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756000;770825;679864;791500;1255000;1236000;1307000;1706000;1604000;975000;894000;233000;144551;70081;29350;237271;502461;524891;363848;450331;702265;777123;852000;802000;1051000;1152000;1390000;1420000;1290000;945753;481000;883000;467055;726410
-32;'120;Cameroon;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180492;156748;205029;137534;161426;303844;266627;237136;118326;164250;101182;28424;17475;9106;5005;90408;179868;193299;163504;168662;249326;291076;269203;271878;307943;384768;331058;323304;393983;280593;130832;248257;122919;195295
-32;'120;Cameroon;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;9;0;0;5712;4283;6082;496;59;5154;602;0;118;0;0;0;0;0;0;0;31;1
-32;'120;Cameroon;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;0;0;1121;450;1841;452;56;832;80;0;67;0;0;0;0;0;0;0;27;0
-32;'120;Cameroon;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756000;770825;679864;791500;1255000;1236000;1307000;1706000;1604000;975000;894000;233000;143500;69716;29350;237017;501899;522898;363773;449682;700881;775076;852000;802000;1051000;1152000;1390000;1420000;1290000;945753;481000;883000;467055;726410
-32;'120;Cameroon;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180492;156748;205029;137534;161426;303844;266627;237136;118326;164250;101182;28424;17000;9000;5000;90245;179557;192581;163469;168376;249000;290477;269203;271878;307943;384768;331058;323304;393983;280593;130832;248257;122919;195295
-32;'120;Cameroon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;64;0;0;0;0;85;3;550;134;749;0;79;0;621;0;0;0;0;0;115;1;2;0
-32;'120;Cameroon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;0;0;0;0;32;1;600;43;141;0;13;0;149;0;0;0;0;0;33;6;0;0
-32;'120;Cameroon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1051;365;0;254;562;1993;75;649;1384;2047;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;475;106;5;163;311;718;35;286;326;599;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1868;Sawlogs and veneer logs;5516;Production;m3;394000;398000;420000;516000;521000;589000;589000;640000;635000;750000;820000;819000;885000;1000000;1000000;1200000;1380000;1603000;1627000;1613000;1700000;1707000;1776000;1923000;2093000;2088000;2092000;1977000;2120000;2363000;2290000;2111000;2096000;2447000;2700000;2820000;2317000;2016000;1767000;1809000;1190000;1250000;1400000;1450000;1450000;1946000;2544000;1816000;1525000;1998000;2091000;1580000;2200000;2747000;3071171;3331865;3331865;3331865;3331865;2718043;2870118;2870118;2870118
-32;'120;Cameroon;1868;Sawlogs and veneer logs;5916;Export quantity;m3;164700;156800;206600;228300;218400;285900;279300;364400;425500;511200;546300;515000;703000;647000;472000;598600;396700;654300;843400;743300;443700;447800;391000;496000;745700;411200;442000;537600;456700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4780;4931;6204;7454;7733;9274;10528;13850;14220;15437;16839;17628;45526;49043;30756;48554;32500;78516;101208;113873;55518;45811;34431;33347;64300;37000;47663;74611;71733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;394000;398000;420000;516000;521000;589000;589000;640000;635000;750000;820000;819000;885000;1000000;1000000;1200000;1380000;1603000;1627000;1613000;1700000;1707000;1776000;1923000;2093000;2088000;2092000;1977000;2120000;2363000;2290000;2111000;2096000;2447000;2700000;2820000;2317000;2016000;1767000;1809000;1190000;1250000;1400000;1450000;1450000;1946000;2544000;1816000;1525000;1998000;2091000;1580000;2200000;2747000;3071171;3331865;3331865;3331865;3331865;2718043;2870118;2870118;2870118
-32;'120;Cameroon;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;164700;156800;206600;228300;218400;285900;279300;364400;425500;511200;546300;515000;703000;647000;472000;598600;396700;654300;843400;743300;443700;447800;391000;496000;745700;411200;442000;537600;456700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;4780;4931;6204;7454;7733;9274;10528;13850;14220;15437;16839;17628;45526;49043;30756;48554;32500;78516;101208;113873;55518;45811;34431;33347;64300;37000;47663;74611;71733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1871;Other industrial roundwood;5516;Production;m3;364000;371000;379000;387000;396000;405000;414000;424000;434000;445000;456000;468000;480000;493000;507000;521000;535000;551000;567000;583000;600000;617000;635000;653000;672000;691000;711000;731000;752000;773000;795000;817000;840000;864000;888000;913000;938000;91000;65000;85000;80000;50000;250000;350000;350000;350000;350000;350000;350000;350000;350000;475000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000
-32;'120;Cameroon;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;364000;371000;379000;387000;396000;405000;414000;424000;434000;445000;456000;468000;480000;493000;507000;521000;535000;551000;567000;583000;600000;617000;635000;653000;672000;691000;711000;731000;752000;773000;795000;817000;840000;864000;888000;913000;938000;91000;65000;85000;80000;50000;250000;350000;350000;350000;350000;350000;350000;350000;350000;475000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000
-32;'120;Cameroon;1630;Wood charcoal;5510;Production;t;87760;89995;92287;94638;97048;99520;102055;104654;107320;110053;114153;119142;123304;125854;128539;137239;138165;136140;140123;141525;140191;147416;152020;157348;161681;165164;176596;191532;200571;216042;230574;243911;262523;279272;289373;298559;10000;12000;21000;21000;344121;353082;362278;371712;381393;390530;400000;409500;419275;429319;438493;447862;457431;467205;477188;485887;494746;503766;512950;522301;531605;541075;550714
-32;'120;Cameroon;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;4;4;4;1;1;6;1;15;13;15;17;65
-32;'120;Cameroon;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;7;7;4;3;3;6;1;42;17;21;45;74
-32;'120;Cameroon;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;8;13;13;52;52;89;258;56;46;18;1;70;46;156;123
-32;'120;Cameroon;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;7;7;10;10;24;101;20;10;11;1;12;9;26;21
-32;'120;Cameroon;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;12000;15000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-32;'120;Cameroon;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;84;110;495;495;44;44;117;41;41;43;109;5;40;0;11;10
-32;'120;Cameroon;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;15;19;57;57;51;51;61;54;54;51;108;5;50;0;40;29
-32;'120;Cameroon;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;17;187;197;197;2589;2589;2800;228;191;808;16360;58;10;10;10;208
-32;'120;Cameroon;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;14;40;60;60;1530;1530;1102;589;51;3392;1121;11;2;2;2;15
-32;'120;Cameroon;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;77;484;484;4;4;77;1;1;3;69;1;0;0;3;2
-32;'120;Cameroon;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;47;47;1;1;11;4;4;1;58;2;0;0;31;20
-32;'120;Cameroon;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;16;26;26;2418;2418;2629;57;20;803;16350;48;0;0;0;186
-32;'120;Cameroon;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;13;33;33;1503;1503;1075;562;24;3391;1119;9;0;0;0;14
-32;'120;Cameroon;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11000;11000;11000;11000;12000;15000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-32;'120;Cameroon;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3465;542;80;80;80;0;0;0;0;0;0;0;0;0;0;0;13;33;11;11;40;40;40;40;40;40;40;4;40;0;8;8
-32;'120;Cameroon;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;21;3;3;3;0;0;0;0;0;0;0;0;0;0;0;7;11;10;10;50;50;50;50;50;50;50;3;50;0;9;9
-32;'120;Cameroon;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;689;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;171;171;171;171;171;171;171;171;5;10;10;10;10;10;22
-32;'120;Cameroon;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;27;27;27;27;27;27;27;1;2;2;2;2;2;1
-32;'120;Cameroon;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20
-32;'120;Cameroon;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8
-32;'120;Cameroon;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;177
-32;'120;Cameroon;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46
-32;'120;Cameroon;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20
-32;'120;Cameroon;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-32;'120;Cameroon;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177
-32;'120;Cameroon;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46
-32;'120;Cameroon;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0
-32;'120;Cameroon;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0
-32;'120;Cameroon;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-32;'120;Cameroon;1872;Sawnwood;5516;Production;m3;88500;87500;75000;91000;83300;86000;88000;103000;139000;154000;167000;163000;172000;236000;307000;333000;301000;520000;416000;410000;468000;468000;508000;423000;454000;552000;580000;492000;489000;591000;563000;577000;579000;647000;676000;685000;560000;588000;600000;1154000;800000;652300;658100;702000;660000;601000;773000;860000;860000;922000;1003000;1015000;1022000;1022000;1022000;1022000;1022000;1122000;1322000;1222000;1222000;1372000;1372000
-32;'120;Cameroon;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11932;119;995;900;171;22;0;0;604;189;200;90;25;2464;11217;574;2223;4;34;741;57;174;202;176;425;305;78;2579;324;88;942;337
-32;'120;Cameroon;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3741;57;991;1042;50;3;0;0;47;15;12;10;6;807;2765;225;1717;5;32;233;25;94;138;167;206;187;33;1349;203;147;108;95
-32;'120;Cameroon;1872;Sawnwood;5916;Export quantity;m3;16300;16700;15700;17000;17000;30700;30800;42200;46400;50800;62900;69300;80700;96000;94800;151500;104600;129400;137900;162600;106900;105600;69600;91000;128800;70000;63000;93300;65600;183000;252800;180000;187000;286466;222100;316200;356000;242000;476000;768000;638500;431544;479682;682140;661000;601000;613000;632557;505490;614354;822402;748625;601988;591436;664608;810771;801971;893707;1036959;938358;905441;1217230;1029760
-32;'120;Cameroon;1872;Sawnwood;5922;Export value;1000 USD;1368;1373;1212;1333;1349;2018;1929;2680;2573;2567;3082;3619;5337;8686;10423;18574;13891;19305;25616;34373;20499;15938;9827;13732;19100;11536;14870;21778;17000;59716;57600;58459;53376;109190;104898;130646;176576;123420;195750;303925;230000;276442;314483;314468;346410;411862;354989;378209;313697;358335;465833;476914;447805;449673;479757;484763;463110;516604;502138;452696;471545;581763;637974
-32;'120;Cameroon;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000
-32;'120;Cameroon;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;24;900;900;22;22;0;0;561;189;0;0;0;0;3;4;13;0;0;658;24;4;126;17;179;100;0;86;13;29;803;322
-32;'120;Cameroon;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;938;1042;3;3;0;0;38;15;0;0;0;0;2;1;4;0;0;161;6;1;71;4;103;22;0;36;3;23;12;86
-32;'120;Cameroon;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666;500;0;0;0;0;0;0;0;31;0;0;0;0;0;0;7374;9402;20125;11938;2250;11098;9771;1971;1862;1415;1495;4441;2230;1760
-32;'120;Cameroon;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;254;0;0;0;0;0;0;0;15;0;0;0;0;0;0;2038;2423;6303;3497;810;2695;2561;710;627;602;480;2124;993;614
-32;'120;Cameroon;1633;Sawnwood, non-coniferous;5516;Production;m3;88500;87500;75000;91000;83300;86000;88000;103000;139000;154000;167000;163000;172000;236000;307000;333000;301000;520000;416000;410000;468000;468000;508000;423000;454000;552000;580000;492000;489000;591000;563000;577000;579000;647000;676000;685000;560000;588000;600000;1154000;800000;652300;658100;702000;660000;601000;773000;860000;860000;912000;993000;993000;1000000;1000000;1000000;1000000;1000000;1100000;1300000;1200000;1200000;1350000;1350000
-32;'120;Cameroon;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11920;95;95;0;149;0;0;0;43;0;200;90;25;2464;11214;570;2210;4;34;83;33;170;76;159;246;205;78;2493;311;59;139;15
-32;'120;Cameroon;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3739;53;53;0;47;0;0;0;9;0;12;10;6;807;2763;224;1713;5;32;72;19;93;67;163;103;165;33;1313;200;124;96;9
-32;'120;Cameroon;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;16300;16700;15700;17000;17000;30700;30800;42200;46400;50800;62900;69300;80700;96000;94800;151500;104600;129400;137900;162600;106900;105600;69600;91000;128800;70000;63000;93300;65600;183000;252800;180000;187000;285800;221600;316200;356000;242000;476000;768000;638500;431544;479651;682140;661000;601000;613000;632557;505490;606980;813000;728500;590050;589186;653510;801000;800000;891845;1035544;936863;901000;1215000;1028000
-32;'120;Cameroon;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1368;1373;1212;1333;1349;2018;1929;2680;2573;2567;3082;3619;5337;8686;10423;18574;13891;19305;25616;34373;20499;15938;9827;13732;19100;11536;14870;21778;17000;59716;57600;58459;53376;108966;104644;130646;176576;123420;195750;303925;230000;276442;314468;314468;346410;411862;354989;378209;313697;356297;463410;470611;444308;448863;477062;482202;462400;515977;501536;452216;469421;580770;637360
-32;'120;Cameroon;1634;Veneer sheets;5516;Production;m3;12000;12500;18400;24600;20400;19000;24000;30000;30000;30000;30000;50300;62800;62800;62800;63000;63000;63000;63000;63000;50000;50000;50000;50000;44000;45000;31000;29000;32000;32000;32000;32000;31000;31000;31000;31000;61000;59000;53000;70000;55000;53200;49900;47300;68000;61000;85000;79000;62000;52949;44400;37710;32733;29147;36000;44978;55872;76140;96000;71000;71000;91000;91000
-32;'120;Cameroon;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;108;67;10;148;1;17;69;4;17;25;88;0;18;11;41;10;3;0;1;8;0;38
-32;'120;Cameroon;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;64;56;6;91;4;35;53;11;29;34;131;14;24;12;47;3;6;49;14;10;0;42
-32;'120;Cameroon;1634;Veneer sheets;5916;Export quantity;m3;;;;17200;19400;15400;24000;30000;29000;24400;13500;17600;19100;13900;4100;14100;21500;17500;25800;19800;22800;19100;23400;28300;26600;18200;15700;21500;16400;26900;21600;23264;17243;25231;24700;47000;37000;41000;47500;70300;32000;23644;29715;32144;39381;36522;35269;34524;20457;25133;28135;28706;27102;25602;28085;40377;46942;60880;90910;54577;56976;85132;71520
-32;'120;Cameroon;1634;Veneer sheets;5922;Export value;1000 USD;;;;815;817;829;1162;1500;2554;2581;1728;2566;3642;3469;1046;3993;7944;8142;15059;13779;13264;9822;9429;10449;10901;11507;11229;16284;11100;22680;18135;24301;16068;22576;21750;20166;10434;12751;26790;33937;30342;39686;49508;42100;56148;60670;71034;72798;45290;49532;50834;45149;36097;32173;35113;36087;38024;43327;56974;43809;46417;62799;62251
-32;'120;Cameroon;1873;Wood-based panels;5516;Production;m3;;;;;;;1000;3000;5000;7000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;18000;20000;30000;45000;55000;57000;58000;42000;48000;48000;48000;48000;43000;43000;43000;43000;90000;89000;92000;37000;35000;42000;39400;40200;23000;18000;32000;24000;23000;22000;18000;23119;23642;18164;18164;18164;18000;18000;18000;18000;18000;18000;23000
-32;'120;Cameroon;1873;Wood-based panels;5616;Import quantity;m3;500;1000;1000;1100;1100;1300;1500;2000;2000;2500;1800;1800;1800;1800;1800;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;625;181;244;533;1149;1549;800;100;203;1916;629;673;461;170;680;442;987;324;760;549;746;1198;1506;1037;1155;1750;2567;1653;1589;1973;4064;2414
-32;'120;Cameroon;1873;Wood-based panels;5622;Import value;1000 USD;122;230;234;252;269;367;394;545;505;608;479;479;479;479;479;672;672;672;672;672;672;672;672;672;672;672;672;672;672;672;672;184;69;170;234;514;717;498;54;109;160;161;158;141;56;284;288;651;258;235;356;411;602;1350;850;796;1080;1150;883;938;1222;1952;1269
-32;'120;Cameroon;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;900;3000;4800;4300;4300;4300;4300;8300;7500;7200;7200;7200;7200;8200;18100;12000;12200;7500;10000;10000;10000;10000;10000;4000;3300;3626;3268;11231;4631;11831;45031;41000;50000;34600;21181;15134;12444;18960;23000;18000;22000;9122;4802;9247;10432;15262;14028;11219;7387;5104;5922;7045;12186;7532;7713;9536;10659
-32;'120;Cameroon;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;113;300;803;720;720;720;720;2730;2063;2194;2200;2500;2700;5603;4567;5125;4456;2527;3400;3400;3400;3400;3400;2563;2049;2531;2178;5713;3629;6630;12015;13735;15000;9614;9959;17084;14716;22600;11703;9565;12920;4522;3049;4822;5640;6468;8138;7293;4132;2273;2987;3687;4022;2539;2917;2812;2488
-32;'120;Cameroon;1640;Plywood and LVL;5516;Production;m3;;;;;;;1000;3000;5000;7000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;18000;20000;30000;45000;55000;57000;58000;42000;48000;48000;48000;48000;43000;43000;43000;43000;90000;89000;92000;37000;35000;42000;39400;40200;23000;18000;32000;24000;23000;22000;18000;23119;23642;18164;18164;18164;18000;18000;18000;18000;18000;18000;23000
-32;'120;Cameroon;1640;Plywood and LVL;5616;Import quantity;m3;500;1000;1000;1100;1100;1300;1500;2000;2000;2500;1800;1800;1800;1800;1800;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;64;11;11;300;400;800;800;100;203;1916;629;673;461;170;680;442;667;305;751;540;639;1091;1145;837;954;1216;2138;989;962;1320;3026;1506
-32;'120;Cameroon;1640;Plywood and LVL;5622;Import value;1000 USD;122;230;234;252;269;367;394;545;505;608;479;479;479;479;479;672;672;672;672;672;672;672;672;672;672;672;672;672;672;672;672;34;12;12;76;292;495;498;54;109;160;161;158;141;56;284;288;470;220;206;327;324;515;978;467;523;540;824;481;556;819;1213;851
-32;'120;Cameroon;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;900;3000;4800;4300;4300;4300;4300;8300;7500;7200;7200;7200;7200;8200;18100;12000;12200;7500;10000;10000;10000;10000;10000;4000;3300;3577;3237;11200;4600;11800;45000;41000;50000;34600;21181;15134;12444;18960;23000;18000;22000;9024;4800;9226;10411;15241;14007;11021;7189;4906;5724;6847;11988;7442;7623;9535;10095
-32;'120;Cameroon;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;113;300;803;720;720;720;720;2730;2063;2194;2200;2500;2700;5603;4567;5125;4456;2527;3400;3400;3400;3400;3400;2563;2049;2492;2163;5698;3614;6615;12000;13735;15000;9614;9959;17084;14716;22600;11703;9565;12920;4163;3049;4754;5572;6400;8070;7164;4003;2144;2858;3558;3893;2467;2845;2809;2315
-32;'120;Cameroon;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;37;230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;8;156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;600;600;0;0;0;0;0;0;0;0;0;0;42;4;3;3;50;50;55;55;55;285;285;230;156;117;720;164
-32;'120;Cameroon;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;177;177;0;0;0;0;0;0;0;0;0;0;27;20;12;12;48;48;76;76;76;229;229;110;70;60;549;105
-32;'120;Cameroon;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;0;0;0;0;0;0;0;0;0;0;98;2;21;21;21;21;198;198;198;198;198;198;90;90;1;317
-32;'120;Cameroon;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;0;0;0;0;0;0;0;0;0;0;359;0;68;68;68;68;129;129;129;129;129;129;72;72;3;20
-32;'120;Cameroon;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;0;0;0;0;0;0;0;0;10;10;10;1;0;1;2
-32;'120;Cameroon;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;0;0;0;0;0;0;0;0;8;8;8;1;0;10;1
-32;'120;Cameroon;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;3;3;149;149;0;0;0;0;0;0;0;0;0;0;44;15;6;6;57;57;306;145;146;239;134;424;470;536;317;742
-32;'120;Cameroon;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;2;2;45;45;0;0;0;0;0;0;0;0;0;0;36;18;17;17;39;39;296;307;197;303;89;284;311;343;180;312
-32;'120;Cameroon;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247
-32;'120;Cameroon;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153
-32;'120;Cameroon;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;15;6;6;57;57;306;145;146;239;134;236;349;536;119;577
-32;'120;Cameroon;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;18;17;17;39;39;296;307;197;303;89;125;185;343;88;230
-32;'120;Cameroon;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247
-32;'120;Cameroon;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153
-32;'120;Cameroon;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;3;3;149;149;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;188;121;0;198;165
-32;'120;Cameroon;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;2;2;45;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;159;126;0;92;82
-32;'120;Cameroon;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;324;227;156;156;1024;800;800;800;1600;1700;690;695;695;695;695;1824;851;1424;1424;953;953;305;367;1147;512;367;413;530;2284;4778;6090
-32;'120;Cameroon;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;167;134;178;178;293;300;209;209;1052;488;425;437;437;437;437;1421;547;1183;1183;784;784;340;407;531;637;415;242;325;1846;5766;6448
-32;'120;Cameroon;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;138;138;284;284;284;47;47;73;73;198;198;45;574;575
-32;'120;Cameroon;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;39;39;39;13;13;14;14;36;36;10;122;123
-32;'120;Cameroon;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;305;215;144;144;424;300;300;300;1500;500;500;500;500;500;500;1604;752;1213;1213;868;868;241;327;499;490;323;167;299;2248;4768;6005
-32;'120;Cameroon;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;164;129;173;173;264;270;179;179;1030;347;347;347;347;347;347;1333;518;1042;1042;759;759;324;391;394;582;321;199;283;1837;5757;6440
-32;'120;Cameroon;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-32;'120;Cameroon;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-32;'120;Cameroon;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;305;215;144;144;424;300;300;300;1500;500;500;500;500;500;500;1592;728;1204;1204;871;871;244;330;502;487;361;205;285;2230;4822;6059
-32;'120;Cameroon;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;164;129;173;173;264;270;179;179;1030;347;347;347;347;347;347;1308;472;1013;1013;758;758;323;390;393;574;355;233;268;1818;5807;6490
-32;'120;Cameroon;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;24;24;24;24;0;0;0;0;0;0;0;0;0;0;530;530;530;530;530;530;0;0;6;;;;;;;
-32;'120;Cameroon;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;10;10;10;10;0;0;0;0;0;0;0;0;0;0;299;299;299;299;299;299;0;0;15;;;;;;;
-32;'120;Cameroon;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;218;191;120;120;400;300;300;300;1500;500;500;500;500;500;500;1062;198;659;659;326;326;229;315;481;472;305;149;281;2230;4766;6003
-32;'120;Cameroon;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;128;119;163;163;254;270;179;179;1030;347;347;347;347;347;347;1009;173;702;702;447;447;311;378;366;562;301;179;263;1817;5753;6436
-32;'120;Cameroon;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;23;2;567;302
-32;'120;Cameroon;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;14;1;493;214
-32;'120;Cameroon;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-32;'120;Cameroon;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;213;191;120;120;400;300;300;300;1500;500;500;500;500;500;500;1019;155;365;365;180;180;229;315;417;407;287;130;203;2173;4144;5646
-32;'120;Cameroon;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;126;119;163;163;254;270;179;179;1030;347;347;347;347;347;347;963;127;315;315;244;244;311;378;299;493;288;164;210;1777;5221;6183
-32;'120;Cameroon;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;1;55;55;55;55
-32;'120;Cameroon;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;2;39;39;39;39
-32;'120;Cameroon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;43;294;294;146;146;0;0;46;;;;;;;
-32;'120;Cameroon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;46;387;387;203;203;0;0;54;;;;;;;
-32;'120;Cameroon;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;15;15;15;15;15;15;15;56;56;4;0;56;56
-32;'120;Cameroon;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;12;12;12;12;12;12;12;54;54;5;1;54;54
-32;'120;Cameroon;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;24;24;24;12;12;12;12;12;18;18;18;18;18;2;2
-32;'120;Cameroon;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;46;41;41;13;13;13;13;13;20;20;20;20;20;4;4
-32;'120;Cameroon;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-32;'120;Cameroon;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-32;'120;Cameroon;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;28;43;43;43;43;43;43;43;43;43;43;43;43;43;43
-32;'120;Cameroon;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;33;33;33;33;33;33;33;33;33;33;33;33;33;33
-32;'120;Cameroon;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;19;12;12;12;600;500;500;500;100;1200;190;195;195;195;195;220;99;211;211;85;85;64;40;648;22;44;246;231;36;10;85
-32;'120;Cameroon;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3;5;5;5;29;30;30;30;22;141;78;90;90;90;90;88;29;141;141;25;25;16;16;137;55;94;43;42;9;9;8
-32;'120;Cameroon;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;138;138;284;284;284;47;47;73;73;198;198;45;574;574
-32;'120;Cameroon;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;39;39;39;13;13;14;14;36;36;10;122;122
-32;'120;Cameroon;1876;Paper and paperboard;5510;Production;t;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1876;Paper and paperboard;5610;Import quantity;t;800;900;900;1100;1200;2500;5500;7500;9900;12200;9700;14400;15100;14700;14700;21800;19500;17500;15500;13500;11500;10000;6900;8200;14000;29800;35600;44300;44700;41400;43200;24944;35472;28206;25200;31000;33000;30901;31100;31100;43100;46203;39783;38530;38530;38530;44497;51894;39489;49493;49493;50622;50622;57998;72087;57572;124513;54021;65451;70371;60444;46140;89867
-32;'120;Cameroon;1876;Paper and paperboard;5622;Import value;1000 USD;300;355;355;404;522;795;1757;2183;2687;2742;2443;3682;4453;4347;4347;10674;13592;13492;11792;10792;8892;7690;5030;5500;15645;47815;44019;35117;35412;56084;60086;13653;18184;19498;22720;21356;21791;22044;17944;17944;26396;42702;36561;36236;36236;36236;37641;45486;29318;47615;47615;44747;44747;57666;52220;44606;104221;43820;57053;58618;56727;57730;90988
-32;'120;Cameroon;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7912;255;255;0;0;0;0;0;0;0;0;0;0;0;0;0;29;93;1788;1788;1982;1982;2708;252;596;3191;2817;519;299;141;171;114
-32;'120;Cameroon;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5256;156;156;0;0;0;0;0;0;0;0;0;0;0;0;0;25;93;1396;1396;1663;1663;2902;298;660;3869;3457;712;226;148;379;115
-32;'120;Cameroon;2042;Graphic papers;5610;Import quantity;t;;;;;;500;900;900;800;1400;1900;1900;2400;2000;2000;4500;4500;4500;4500;4500;4500;5000;3400;4700;6700;12600;5800;7600;8000;7200;11200;6141;9982;6806;3700;6800;10900;12900;10200;10200;9000;22057;16151;14898;14898;14898;14348;21173;18252;18444;18444;18446;18446;24100;21879;29165;54031;20809;28221;29296;25900;19312;32490
-32;'120;Cameroon;2042;Graphic papers;5622;Import value;1000 USD;;;;;;169;327;328;320;529;585;853;1081;975;975;2959;3292;3592;3492;3792;3692;3790;2330;2800;6071;13345;8294;8419;8714;11439;13702;5138;6408;5074;4706;6033;9267;10226;7149;7149;7346;23194;16000;15675;15675;15675;14446;21855;15569;17797;17797;17913;17913;23026;21383;22754;46298;19772;26563;25585;23766;26139;40814
-32;'120;Cameroon;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;23;23;73;73;171;114;114;63;52;15;20;20;2;4
-32;'120;Cameroon;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;116;116;92;92;164;83;83;66;44;18;8;8;3;2
-32;'120;Cameroon;1671;Newsprint;5610;Import quantity;t;;;;;;100;100;100;100;100;800;100;400;;;500;500;500;500;500;500;1000;1100;2400;2100;2200;3100;1400;1800;4000;2900;6;2727;426;400;4000;2500;2900;1700;1700;2100;5191;3464;2211;2211;2211;2211;3115;4618;4578;4578;3719;3719;4542;5425;2371;10436;1478;4050;4461;2461;1330;3966
-32;'120;Cameroon;1671;Newsprint;5622;Import value;1000 USD;;;;;;11;17;27;29;22;150;36;106;;;192;192;192;192;192;192;390;430;900;800;1403;2122;1005;1300;3830;2427;5;1147;219;398;2091;988;1226;807;807;1147;2123;1728;1403;1403;1403;1403;1966;2563;3463;3463;2892;2892;3523;3956;1538;6646;1047;3200;2647;1819;1277;3566
-32;'120;Cameroon;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;4;12;12;12;12;0;2;0;0;0
-32;'120;Cameroon;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;3;5;5;5;5;0;2;0;0;0
-32;'120;Cameroon;1674;Printing and writing papers;5610;Import quantity;t;;;;;;400;800;800;700;1300;1100;1800;2000;2000;2000;4000;4000;4000;4000;4000;4000;4000;2300;2300;4600;10400;2700;6200;6200;3200;8300;6135;7255;6380;3300;2800;8400;10000;8500;8500;6900;16866;12687;12687;12687;12687;12137;18058;13634;13866;13866;14727;14727;19558;16454;26794;43595;19331;24171;24835;23439;17982;28524
-32;'120;Cameroon;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;158;310;301;291;507;435;817;975;975;975;2767;3100;3400;3300;3600;3500;3400;1900;1900;5271;11942;6172;7414;7414;7609;11275;5133;5261;4855;4308;3942;8279;9000;6342;6342;6199;21071;14272;14272;14272;14272;13043;19889;13006;14334;14334;15021;15021;19503;17427;21216;39652;18725;23363;22938;21947;24862;37248
-32;'120;Cameroon;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;23;23;61;61;167;102;102;51;40;15;18;20;2;4
-32;'120;Cameroon;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;116;116;82;82;161;78;78;61;39;18;6;8;3;2
-32;'120;Cameroon;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4918;4180;4180;1100;10231;6251;6251;6251;6251;6251;769;673;474;474;395;395;948;1013;1660;1189;1189;79;92;63;419;1359
-32;'120;Cameroon;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;2770;2770;1303;12909;6764;6764;6764;6764;6764;1022;490;490;490;661;661;727;713;1359;805;805;192;115;71;1186;2242
-32;'120;Cameroon;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;4;0;0;0
-32;'120;Cameroon;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;1;0;0;0
-32;'120;Cameroon;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623;2230;2230;3700;1409;1086;1086;1086;1086;1086;13028;8749;9473;9473;11344;11344;13544;11244;20463;32409;14318;20032;18604;19361;12165;23526
-32;'120;Cameroon;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2336;1646;1646;3027;1546;1215;1215;1215;1215;1215;14079;7703;9255;9255;10937;10937;13385;10196;15773;28148;13231;18508;16604;17465;16101;29660
-32;'120;Cameroon;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;7;7;12;12;5;95;95;44;1;11;12;0;0;3
-32;'120;Cameroon;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;35;35;29;29;13;59;59;52;1;13;4;1;0;1
-32;'120;Cameroon;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2459;2090;2090;2100;5226;5350;5350;5350;5350;4800;4261;4212;3919;3919;2988;2988;5066;4197;4671;9997;3824;4060;6139;4015;5398;3639
-32;'120;Cameroon;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2733;1926;1926;1869;6616;6293;6293;6293;6293;5064;4788;4813;4589;4589;3423;3423;5391;6518;4084;10699;4689;4663;6219;4411;7575;5346
-32;'120;Cameroon;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;16;16;49;49;162;6;6;6;38;3;2;20;2;1
-32;'120;Cameroon;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;81;81;53;53;148;16;16;6;35;2;1;7;3;1
-32;'120;Cameroon;1675;Other paper and paperboard;5510;Production;t;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1675;Other paper and paperboard;5610;Import quantity;t;800;900;900;1100;1200;2000;4600;6600;9100;10800;7800;12500;12700;12700;12700;17300;15000;13000;11000;9000;7000;5000;3500;3500;7300;17200;29800;36700;36700;34200;32000;18803;25490;21400;21500;24200;22100;18001;20900;20900;34100;24146;23632;23632;23632;23632;30149;30721;21237;31049;31049;32176;32176;33898;50208;28407;70482;33212;37230;41075;34544;26828;57377
-32;'120;Cameroon;1675;Other paper and paperboard;5622;Import value;1000 USD;300;355;355;404;522;626;1430;1855;2367;2213;1858;2829;3372;3372;3372;7715;10300;9900;8300;7000;5200;3900;2700;2700;9574;34470;35725;26698;26698;44645;46384;8515;11776;14424;18014;15323;12524;11818;10795;10795;19050;19508;20561;20561;20561;20561;23195;23631;13749;29818;29818;26834;26834;34640;30837;21852;57923;24048;30490;33033;32961;31591;50174
-32;'120;Cameroon;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7912;255;255;0;0;0;0;0;0;0;0;0;0;0;0;0;29;28;1765;1765;1909;1909;2537;138;482;3128;2765;504;279;121;169;110
-32;'120;Cameroon;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5256;156;156;0;0;0;0;0;0;0;0;0;0;0;0;0;25;31;1280;1280;1571;1571;2738;215;577;3803;3413;694;218;140;376;113
-32;'120;Cameroon;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2408;2849;2849;2849;2849;2849;1435;1570;3233;3233;2408;2408;2979;3770;3577;6128;2029;3171;3458;3495;1874;4895
-32;'120;Cameroon;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2320;4311;5364;5364;5364;5364;5364;1841;1866;5799;5799;3760;3760;4528;5015;3929;8314;2352;4128;4584;5079;3321;8671
-32;'120;Cameroon;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;2;2;2;15;15;22;138;2;0;30
-32;'120;Cameroon;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;1;1;1;11;11;52;75;2;0;9
-32;'120;Cameroon;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18001;20900;20900;30700;19938;18983;18983;18983;18983;25500;26919;17967;26344;26344;28946;28946;29162;44987;23047;64027;30691;33636;37054;30611;24566;52345
-32;'120;Cameroon;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11818;10795;10795;15214;12529;12529;12529;12529;12529;15163;18358;9224;20998;20998;22270;22270;25161;24609;14302;48564;21026;25807;27898;27393;26895;40669
-32;'120;Cameroon;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;1740;1740;1878;1878;2510;111;455;3088;2725;482;129;119;113;59
-32;'120;Cameroon;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;1184;1184;1463;1463;2641;118;480;3696;3306;638;136;134;105;71
-32;'120;Cameroon;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;29800;36700;36700;34200;32000;18803;25490;21400;21500;24200;22100;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;35725;26698;26698;44645;46384;8515;11776;14424;18014;15323;12524;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7912;255;255;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5256;156;156;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-32;'120;Cameroon;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11375;13207;13207;19400;10138;9183;9183;9183;9183;15700;19394;11907;19314;19314;21118;21118;19257;20865;14698;48370;23351;26625;27412;20854;17052;43736
-32;'120;Cameroon;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6405;5850;5850;8245;6000;6000;6000;6000;6000;8634;10786;4589;13203;13203;14698;14698;14190;13977;7577;33970;14886;18757;17062;15540;16007;26071
-32;'120;Cameroon;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032;1032;995;995;995;38;18;18;18;1;0;0;0;0
-32;'120;Cameroon;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;580;679;679;679;40;14;14;14;1;1;1;1;1
-32;'120;Cameroon;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2873;3336;3336;4900;4900;4900;4900;4900;4900;4900;2337;2890;2199;2199;3471;3471;3077;3782;3743;4540;2930;1917;3777;1687;5594;4119
-32;'120;Cameroon;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2540;2320;2320;3270;3270;3270;3270;3270;3270;3270;2564;2259;3057;3057;2946;2946;3533;2677;2737;4622;2072;2259;5605;3563;7775;9805
-32;'120;Cameroon;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;24;24;7;7;7;3;367;367;4;4;69;69;51;0
-32;'120;Cameroon;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;42;42;14;14;14;4;392;392;2;2;92;92;48;3
-32;'120;Cameroon;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3518;4085;4085;6000;4800;4800;4800;4800;4800;4800;5169;3169;4830;4830;4326;4326;6771;20315;4509;10776;3960;4878;5700;7885;1338;3478
-32;'120;Cameroon;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2311;2111;2111;2975;2881;2881;2881;2881;2881;2881;5000;2374;4736;4736;4593;4593;7374;7902;3924;9744;3769;4632;5115;8133;2331;3738
-32;'120;Cameroon;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684;684;871;871;1504;20;20;2653;2653;427;10;0;12;9
-32;'120;Cameroon;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;562;764;764;1945;33;33;3249;3249;594;2;0;15;26
-32;'120;Cameroon;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;272;272;400;100;100;100;100;100;100;19;1;1;1;31;31;57;25;97;341;450;216;165;185;582;1012
-32;'120;Cameroon;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;514;514;724;378;378;378;378;378;378;8;2;2;2;33;33;64;53;64;228;299;159;116;157;782;1055
-32;'120;Cameroon;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;4;50;50;50;50;50;50;50;50;50
-32;'120;Cameroon;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;3;41;41;41;41;41;41;41;41;41
-32;'120;Cameroon;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1800;1800;1800;1800;1800;1800;2367;1700;1472;1472;822;822;1757;1451;1783;327;492;423;563;438;388;137
-32;'120;Cameroon;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;2668;2668;2668;2668;2668;2668;3432;2659;3021;3021;804;804;4951;1213;3621;1045;670;555;551;489;1375;834
-32;'120;Cameroon;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;3;25;25;25;25;25;25;25;25;25;0;12;0;56;21
-32;'120;Cameroon;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;11;96;96;96;96;96;96;96;96;96;4;7;4;271;33
-32;'120;Cameroon;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13107;16733;19355;16448;18368;57206;56282
-32;'120;Cameroon;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;3333;2179;1553;916;11386;14827
-32;'120;Cameroon;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;377;255;17;34;142
-32;'120;Cameroon;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;9;9;15;15;5227;5881
-32;'120;Cameroon;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;250;250;2;13;6
-32;'120;Cameroon;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;392;152
-32;'120;Cameroon;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;127;5;15;21;136
-32;'120;Cameroon;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;1;1;7;7;4835;5729
-32;'120;Cameroon;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;232;147;117;159;176;465
-32;'120;Cameroon;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;3;2;29;45;19;21
-32;'120;Cameroon;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;80;267;157;361;205;190
-32;'120;Cameroon;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;24;29;11;37;1694;1081
-32;'120;Cameroon;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129;1165;2476;1402;1602;3630;1426
-32;'120;Cameroon;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;39;16;94;10;1722;4583
-32;'120;Cameroon;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8
-32;'120;Cameroon;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16
-32;'120;Cameroon;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;3134
-32;'120;Cameroon;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649;4221
-32;'120;Cameroon;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45
-32;'120;Cameroon;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42
-32;'120;Cameroon;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-32;'120;Cameroon;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-32;'120;Cameroon;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11433;15090;14969;14131;15696;51887;52827
-32;'120;Cameroon;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;90;165;132;164;611;499
-32;'120;Cameroon;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;27;67;77;172
-32;'120;Cameroon;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;33;33;33
-32;'120;Cameroon;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;160;1103;359;466;1197;1060
-32;'120;Cameroon;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4177;3168;1958;1272;612;2080;2729
-32;'120;Cameroon;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44089;37852;37754;40878;60234;102301;105129
-32;'120;Cameroon;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7560;2341;7840;2765;2695;3073;833
-32;'120;Cameroon;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;18;5;31;2;83;191
-32;'120;Cameroon;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;4;4;4
-32;'120;Cameroon;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3435;5245;2664;3004;4498;8940;6080
-32;'120;Cameroon;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1
-32;'120;Cameroon;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3531;3433;3155;3593;3605;10408;12241
-32;'120;Cameroon;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;328;355;268;144;108;96
-32;'120;Cameroon;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18563;10537;14902;18099;28292;35856;31582
-32;'120;Cameroon;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6081;1247;6170;890;804;1834;507
-32;'120;Cameroon;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18507;18619;17028;16151;23837;47014;55035
-32;'120;Cameroon;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151;718;1267;1559;1742;1126;225
-33;'124;Canada;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10949378.24;11273424;11018804;10539455;12814089;14696592;13222740
-33;'124;Canada;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29068143.84;31318716;26597327;26161508;37417210;37088976;28962049
-33;'124;Canada;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;102485;108929;109442;128635;139323;136794;154035;172860;178601;165698;209979;301961;388123;507175;612512;660167;573463;644106;790115;753240;904923;681034;884445;1086601;1044183;1221851;1420618;1965006;2032164;2023511;1865075;2056178;2059609;2385608;3012790;2901827;3976891;3374670;3762751;4222166;3855354;3992631;4285249;4739120;4932347;5140477;4972671;5358959;4393384;4931641;4845028;4923104;4988651;5066255;4849387;4852795;5103444.67;5301559;5031290;4679796;5906657;6544919;5712638
-33;'124;Canada;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1268410;1297580;1362755;1506798;1559664;1641647;1654040;2340117;2622101;2745347;2951027;3525333;4358814;5450439;4889627;6307278;7187977;8158480;9751111;10543548;10408510;9425368;10241503;11527868;11225397;12223417;15144069;17465145;18313566;17895450;16858688;17871013;19193964;21995096;27801060;25542643;25664459;23706097;25938729;27703962;24369002;23301590;24031304;29512889;29441318;28224001;25980478;24007018;17103821;21260399;22750540;21747972;24054418;24322184;21879080;22056036;23635186.01;25752472;21013803;20796600;30964327;29639617;21703979
-33;'124;Canada;1861;Roundwood;5516;Production;m3;93480008;97164008;99756008;102706008;103670008;111422508;109950016;114230500;121830000;121625000;119819000;124288000;144729000;138070000;115511000;139397000;145538000;156150000;161994000;155624000;144736000;127472000;155983000;167824000;168722000;177190000;191685000;190616000;188254000;162127000;160168000;169895000;176193000;183224000;188432000;189884000;191058000;176942000;193890000;201845000;185853000;198077000;179642000;208073000;203121000;183931000;164599000;139236000;116306000;142013000;148178150;148183000;152076046;153464371;155996540;156744000;156717000;156802812;141690443;142634060;145642474;145642474;130918641
-33;'124;Canada;1861;Roundwood;5616;Import quantity;m3;1291400;1463200;1395600;1742200;2030400;1673900;1989100;2070300;2000500;2116600;2291400;3328900;3316800;3450400;2918400;3136600;2742200;3045500;3730300;2998800;2677800;2529700;3193800;3835000;4400000;4747900;4758500;4977000;4650000;1548777;2281285;5151335;4468935;5315055;6623100;6156000;6775300;7011600;6201235;6539938;7594072;6995307;6653064;6027072;6345655;5877350;5172068;4739185;4728170;4839948;4376425;4588000;4941105;4346930;4648766;6192080;4295958;5132670;4745205;4364257;3469820;3170029;3049542
-33;'124;Canada;1861;Roundwood;5622;Import value;1000 USD;13353;15897;17553;20324;26160;20864;25321;26953;27169;28800;32922;52132;52998;64929;57707;61865;57706;70496;92282;77774;76500;73299;93379;118498;126830;145229;149713;174732;181178;172677;201098;197318;194983;242764;345980;282456;337866;363291;362197;383830;393524;379696;380276;408771;426953;415646;355381;311888;305562;313908;279272;301752;314380;317300;332529;290331;272907.36;317241;298830;256889;296786;312542;308920
-33;'124;Canada;1861;Roundwood;5916;Export quantity;m3;3501500;3599800;3362200;3513100;3783000;4050100;3909600;3516500;3277600;4166600;2872500;1959900;1705200;2099300;1522000;1650400;1822200;1668900;1755800;2319700;1972600;1635500;2840300;3875000;2985400;3356800;4508800;4107000;2649000;1196591;1355948;2291685;1546329;1653000;1386800;1179300;801400;2067100;2247595;3048104;4004105;4636853;5243544;4060733;5932499;4858207;3819375;2951833;2792065;4069069;5771163;6137000;7061531;6758295;6129593;8235467;7469436;8529295;7670289;6066426;4301123;3851143;3558999
-33;'124;Canada;1861;Roundwood;5922;Export value;1000 USD;38481;38076;36106;37861;43062;44815;47011;45639;41133;60033;42810;29896;27233;44727;40937;45043;60660;53556;68769;89390;74918;88731;142150;193556;137506;203151;273494;265691;165649;120516;121313;170089;161321;129931;127983;106865;91165;170959;253317;313203;314834;410135;405554;391069;521858;497020;414693;306616;254753;401140;630082;615140;814679;753021;567188;634214;725654.9;687381;615713;355313;524024;540107;486682
-33;'124;Canada;1862;Roundwood, coniferous;5516;Production;m3;84734008;89491008;87937008;92886008;94327008;99534508;98255016;102796000;112143000;110883000;109255000;112788000;131648000;125992000;104888000;128602000;133908000;144112000;149095000;142743000;132193000;116023000;142897000;153556000;154557000;161938000;176218000;174330000;171575000;142087000;139526000;147933000;151775000;155263000;158310000;159778000;161165000;143238000;159913000;164001000;150431000;161994000;142033000;168799000;165623000;149431000;137813000;114708000;94005000;116581729;121815425;121815000;125233417;125091592;127406800;127006148;125787202;128278528;115231745;116373916;117452904;117452904;105550867
-33;'124;Canada;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2726492;3696620;3379145;3311243;2266974;2026270;2026308
-33;'124;Canada;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156283.46;190281;186009;170474;183612;194330;213481
-33;'124;Canada;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747284;8048784;7220827;5605548;3966058;3458796;3223434
-33;'124;Canada;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;692341.47;641929;565328;315659;482084;495141;449006
-33;'124;Canada;1863;Roundwood, non-coniferous;5516;Production;m3;8746000;7673000;11819000;9820000;9343000;11888000;11695000;11434500;9687000;10742000;10564000;11500000;13081000;12078000;10623000;10795000;11630000;12038000;12899000;12881000;12543000;11449000;13086000;14268000;14165000;15252000;15467000;16286000;16679000;20040000;20642000;21962000;24418000;27961000;30122000;30106000;29893000;33704000;33977000;37844000;35422000;36083000;37609000;39274000;37498000;34500000;26786000;24528000;22301000;25431271;26362725;26368000;26842629;28372779;28589740;29737852;30929798;28524284;26458698;26260144;28189570;28189570;25367774
-33;'124;Canada;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569466;1436050;1366060;1053014;1202846;1143759;1023234
-33;'124;Canada;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116623.9;126960;112821;86415;113174;118212;95439
-33;'124;Canada;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722152;480511;449462;460878;335065;392347;335565
-33;'124;Canada;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33313.43;45452;50385;39654;41940;44966;37676
-33;'124;Canada;1864;Wood fuel;5516;Production;m3;6882000;6457000;6031000;5632000;5222000;7408500;7254000;7108500;4285000;4133000;3651000;3383000;4205000;3480000;3783000;3928000;3720000;4254000;4710000;4840000;5560000;5751000;6308000;6662000;6708000;6902000;6629000;6289000;6150000;6169000;6681000;6388000;6423000;5878000;5319000;5425000;5199000;3041000;2902000;2927000;2908000;2866000;2843000;2800000;2874000;2921000;3209000;3140000;3000000;3211000;1442824;1442000;4324773;4638986;4638980;2050000;1534000;1173756;1750383;1383847;1486050;1486050;1461080
-33;'124;Canada;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28335;40680;60000;68000;67000;94000;57100;44235;32460;37072;54307;38064;66072;71655;90350;72068;131185;92170;94948;101659;93000;69288;84653;32594;6942;2858;163;1376;96;4;3;40
-33;'124;Canada;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149;1401;2196;2478;2713;3973;3274;7626;2077;2373;3476;2436;2907;3153;3975;4878;8879;6238;6426;6881;6805;5058;6180;2381;499;205;180;157;73;11;10;72
-33;'124;Canada;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188685;371329;400000;200000;224000;100000;38200;34595;145144;169105;165853;239544;161733;340499;218207;259375;112833;69065;50069;64945;43000;38733;62000;69621;63537;67717;35320;123932;72730;81354;100691;109752
-33;'124;Canada;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8909;15518;20748;10349;12322;5273;3730;3390;3629;4228;4146;5989;5822;12258;7855;13384;5822;3564;2584;3351;2636;2401;3581;4037;3684;3927;3872;5103;4659;5793;7536;8417
-33;'124;Canada;1627;Wood fuel, coniferous;5516;Production;m3;2719000;3823000;2475000;2215000;2051000;2854500;2793000;2352000;1624000;1522000;1251000;1196000;1145000;1149000;1219000;1275000;1038000;1130000;1356000;1313000;1453000;1588000;1655000;1880000;1839000;1762000;1652000;1560000;1480000;998000;1147000;1233000;1281000;1129000;1068000;1190000;1177000;472000;559000;528000;537000;521000;423000;455000;530000;494000;685000;671000;641000;685729;626205;626000;1049851;1317442;1317440;796148;627202;526223;804834;600426;686409;686409;762442
-33;'124;Canada;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2858;122;1338;27;1;1;39
-33;'124;Canada;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;115;146;30;1;3;68
-33;'124;Canada;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67717;32844;109141;57594;66700;73700;75434
-33;'124;Canada;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3927;3598;4048;3421;4253;4699;4810
-33;'124;Canada;1628;Wood fuel, non-coniferous;5516;Production;m3;4163000;2634000;3556000;3417000;3171000;4554000;4461000;4756500;2661000;2611000;2400000;2187000;3060000;2331000;2564000;2653000;2682000;3124000;3354000;3527000;4107000;4163000;4653000;4782000;4869000;5140000;4977000;4729000;4670000;5171000;5534000;5155000;5142000;4749000;4251000;4235000;4022000;2569000;2343000;2399000;2371000;2345000;2420000;2345000;2344000;2427000;2524000;2469000;2359000;2525271;816619;816000;3274922;3321544;3321540;1253852;906798;647533;945549;783421;799641;799641;698638
-33;'124;Canada;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;38;69;3;2;1
-33;'124;Canada;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;11;43;10;7;4
-33;'124;Canada;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2476;14791;15136;14654;26991;34318
-33;'124;Canada;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;1055;1238;1540;2837;3607
-33;'124;Canada;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28335;40680;60000;68000;67000;94000;57100;44235;32460;37072;54307;38064;66072;71655;90350;72068;131185;92170;94948;101659;93000;69288;84653;32594;6942;;;;;;;
-33;'124;Canada;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149;1401;2196;2478;2713;3973;3274;7626;2077;2373;3476;2436;2907;3153;3975;4878;8879;6238;6426;6881;6805;5058;6180;2381;499;;;;;;;
-33;'124;Canada;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188685;371329;400000;200000;224000;100000;38200;34595;145144;169105;165853;239544;161733;340499;218207;259375;112833;69065;50069;64945;43000;38733;62000;69621;63537;;;;;;;
-33;'124;Canada;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8909;15518;20748;10349;12322;5273;3730;3390;3629;4228;4146;5989;5822;12258;7855;13384;5822;3564;2584;3351;2636;2401;3581;4037;3684;;;;;;;
-33;'124;Canada;1865;Industrial roundwood;5516;Production;m3;86598008;90707008;93725008;97074008;98448008;104014008;102696016;107122000;117545000;117492000;116168000;120905000;140524000;134590000;111728000;135469000;141818000;151896000;157284000;150784000;139176000;121721000;149675000;161162000;162014000;170288000;185056000;184327000;182104000;155958000;153487000;163507000;169770000;177346000;183113000;184459000;185859000;173901000;190988000;198918000;182945000;195211000;176799000;205273000;200247000;181010000;161390000;136096000;113306000;138802000;146735326;146741000;147751273;148825385;151357560;154694000;155183000;155629056;139940060;141250213;144156424;144156424;129457561
-33;'124;Canada;1865;Industrial roundwood;5616;Import quantity;m3;1291400;1463200;1395600;1742200;2030400;1673900;1989100;2070300;2000500;2116600;2291400;3328900;3316800;3450400;2918400;3136600;2742200;3045500;3730300;2998800;2677800;2529700;3193800;3835000;4400000;4747900;4758500;4977000;4650000;1548777;2281285;5123000;4428255;5255055;6555100;6089000;6681300;6954500;6157000;6507478;7557000;6941000;6615000;5961000;6274000;5787000;5100000;4608000;4636000;4745000;4274766;4495000;4871817;4262277;4616172;6185138;4293100;5132507;4743829;4364161;3469816;3170026;3049502
-33;'124;Canada;1865;Industrial roundwood;5622;Import value;1000 USD;13353;15897;17553;20324;26160;20864;25321;26953;27169;28800;32922;52132;52998;64929;57707;61865;57706;70496;92282;77774;76500;73299;93379;118498;126830;145229;149713;174732;181178;172677;201098;196169;193582;240568;343502;279743;333893;360017;354571;381753;391151;376220;377840;405864;423800;411671;350503;303009;299324;307482;272391;294947;309322;311120;330148;289832;272702.36;317061;298673;256816;296775;312532;308848
-33;'124;Canada;1865;Industrial roundwood;5916;Export quantity;m3;3501500;3599800;3362200;3513100;3783000;4050100;3909600;3516500;3277600;4166600;2872500;1959900;1705200;2099300;1522000;1650400;1822200;1668900;1755800;2319700;1972600;1635500;2840300;3875000;2985400;3356800;4508800;4107000;2649000;1196591;1355948;2103000;1175000;1253000;1186800;955300;701400;2028900;2213000;2902960;3835000;4471000;5004000;3899000;5592000;4640000;3560000;2839000;2723000;4019000;5706218;6094000;7022798;6696295;6059972;8171930;7401719;8493975;7546357;5993696;4219769;3750452;3449247
-33;'124;Canada;1865;Industrial roundwood;5922;Export value;1000 USD;38481;38076;36106;37861;43062;44815;47011;45639;41133;60033;42810;29896;27233;44727;40937;45043;60660;53556;68769;89390;74918;88731;142150;193556;137506;203151;273494;265691;165649;120516;121313;161180;145803;109183;117634;94543;85892;167229;249927;309574;310606;405989;399565;385247;509600;489165;401309;300794;251189;398556;626731;612504;812278;749440;563151;630530;721727.9;683509;610610;350654;518231;532571;478265
-33;'124;Canada;1866;Industrial roundwood, coniferous;5516;Production;m3;82015008;85668008;85462008;90671008;92276008;96680008;95462016;100444000;110519000;109361000;108004000;111592000;130503000;124843000;103669000;127327000;132870000;142982000;147739000;141430000;130740000;114435000;141242000;151676000;152718000;160176000;174566000;172770000;170095000;141089000;138379000;146700000;150494000;154134000;157242000;158588000;159988000;142766000;159354000;163473000;149894000;161473000;141610000;168344000;165093000;148937000;137128000;114037000;93364000;115896000;121189220;121189000;124183566;123774150;126089360;126210000;125160000;127752305;114426911;115773490;116766495;116766495;104788425
-33;'124;Canada;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936546;1322385;4121000;3473000;3816000;5084000;4772000;4840300;5414200;4418000;4520998;5339000;4362000;4530000;3560000;4265000;3885000;3483000;3037000;3190000;2974000;2561584;2730000;3275891;2669141;2872013;4509939;2723634;3696498;3377807;3311216;2266973;2026269;2026269
-33;'124;Canada;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115933;135058;121251;113247;146529;239715;186007;209568;219430;204424;205465;216450;196332;184445;187206;222051;234383;204416;171045;196956;178711;176150;183840;202585;183501;196788;165286;156078.46;190166;185863;170444;183611;194327;213413
-33;'124;Canada;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084864;1129948;1986000;1048000;946000;729000;607300;394400;1736500;1931000;2594846;3542000;4108000;4688000;3568000;5158000;4339000;3365000;2659000;2475000;3753000;5450724;5673000;6652355;6258474;5575934;7615376;6679567;8015940;7111686;5547954;3899358;3385096;3148000
-33;'124;Canada;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103309;96423;150838;133556;87141;84618;55743;42910;120301;204278;253807;261820;354873;347436;335819;455110;444031;357970;273240;231010;371154;599371;581958;784372;718468;529499;598366;688414.47;638331;561280;312238;477831;490442;444196
-33;'124;Canada;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936546;1322385;4121000;3473000;3816000;5084000;4772000;4840300;5414200;4418000;4520998;5339000;4362000;4530000;3560000;4265000;3885000;3483000;3037000;3190000;2974000;2561584;2730000;3275891;2669141;2872013;4509939;2723634;3696498;3377807;3311216;2266973;2026269;2026269
-33;'124;Canada;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115933;135058;121251;113247;146529;239715;186007;209568;219430;204424;205465;216450;196332;184445;187206;222051;234383;204416;171045;196956;178711;176150;183840;202585;183501;196788;165286;156078.46;190166;185863;170444;183611;194327;213413
-33;'124;Canada;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084864;1129948;1986000;1048000;946000;729000;607300;394400;1736500;1931000;2594846;3542000;4108000;4688000;3568000;5158000;4339000;3365000;2659000;2475000;3753000;5450724;5673000;6652355;6258474;5575934;7615376;6679567;8015940;7111686;5547954;3899358;3385096;3148000
-33;'124;Canada;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103309;96423;150838;133556;87141;84618;55743;42910;120301;204278;253807;261820;354873;347436;335819;455110;444031;357970;273240;231010;371154;599371;581958;784372;718468;529499;598366;688414.47;638331;561280;312238;477831;490442;444196
-33;'124;Canada;1867;Industrial roundwood, non-coniferous;5516;Production;m3;4583000;5039000;8263000;6403000;6172000;7334000;7234000;6678000;7026000;8131000;8164000;9313000;10021000;9747000;8059000;8142000;8948000;8914000;9545000;9354000;8436000;7286000;8433000;9486000;9296000;10112000;10490000;11557000;12009000;14869000;15108000;16807000;19276000;23212000;25871000;25871000;25871000;31135000;31634000;35445000;33051000;33738000;35189000;36929000;35154000;32073000;24262000;22059000;19942000;22906000;25546106;25552000;23567707;25051235;25268200;28484000;30023000;27876751;25513149;25476723;27389929;27389929;24669136
-33;'124;Canada;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612231;958900;1002000;955255;1439055;1471100;1317000;1841000;1540300;1739000;1986480;2218000;2579000;2085000;2401000;2009000;1902000;1617000;1571000;1446000;1771000;1713182;1765000;1595926;1593136;1744159;1675199;1569466;1436009;1366022;1052945;1202843;1143757;1023233
-33;'124;Canada;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56744;66040;74918;80335;94039;103787;93736;124325;140587;150147;176288;174701;179888;193395;218658;201749;177288;146087;131964;102368;128771;96241;111107;106737;127619;133360;124546;116623.9;126895;112810;86372;113164;118205;95435
-33;'124;Canada;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111727;226000;117000;127000;307000;457800;348000;307000;292400;282000;308114;293000;363000;316000;331000;434000;301000;195000;180000;248000;266000;255494;421000;370443;437821;484038;556554;722152;478035;434671;445742;320411;365356;301247
-33;'124;Canada;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17207;24890;10342;12247;22042;33016;38800;42982;46928;45649;55767;48786;51116;52129;49428;54490;45134;43339;27554;20179;27402;27360;30546;27906;30972;33652;32164;33313.43;45178;49330;38416;40400;42129;34069
-33;'124;Canada;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;11900;13000;1255;1255;1000;1000;0;700;1610;1300;4000;4000;4000;6000;6000;2000;2005;441;1000;338;493;188;113;351;44;353;433;710;5110;281;843;305;220
-33;'124;Canada;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;2000;3000;239;239;292;292;0;168;317;522;773;1135;312;374;474;267;263;180;179;200;206;95;53;106;11;74;34.9;220;136;62;70;14;35
-33;'124;Canada;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;282;0;2000;4000;5000;6000;7000;8300;6135;5000;4000;3000;1000;0;46;27;40;0;180;759;1824;1333;1890;554;668
-33;'124;Canada;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;43;0;293;991;737;2228;1708;1303;1064;867;417;393;321;1;27;17;5;0;112.1;858;1900;829;1366;438;412
-33;'124;Canada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611643;947000;989000;954000;1437800;1470100;1316000;1841000;1539600;1737390;1985180;2214000;2575000;2081000;2395000;2003000;1900000;1614995;1570559;1445000;1770662;1712689;1764812;1595813;1592785;1744115;1674846;1569033;1435299;1360912;1052664;1202000;1143452;1023013
-33;'124;Canada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56591;64040;71918;80096;93800;103495;93444;124325;140419;149830;175766;173928;178753;193083;218284;201275;177021;145824;131784;102189;128571;96035;111012;106684;127513;133349;124472;116589;126675;112674;86310;113094;118191;95400
-33;'124;Canada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111727;226000;117000;127000;307000;457800;348000;307000;292200;281718;308114;291000;359000;311000;325000;427000;292700;188865;175000;244000;263000;254494;421000;370397;437794;483998;556554;721972;477276;432847;444409;318521;364802;300579
-33;'124;Canada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17207;24890;10342;12247;22042;33016;38800;42982;46886;45606;55767;48493;50125;51392;47200;52782;43831;42275;26687;19762;27009;27039;30545;27879;30955;33647;32164;33201.33;44320;47430;37587;39034;41691;33657
-33;'124;Canada;1868;Sawlogs and veneer logs;5516;Production;m3;47719008;53666008;59999008;61924008;62624008;63667000;63325008;67446000;73456000;75645000;77949000;81213000;96887000;85296000;73543000;97143000;103718000;111549000;114420000;109952000;96282000;89143000;111250000;117225000;119317000;125337000;140910000;138838000;138130000;117262000;118539000;129568000;137740000;142526000;148836000;150182000;151582000;142269000;161859000;166654000;154417000;164387000;146849000;173108000;172478000;153803000;135077000;110689000;89132000;112540000;118035777;118036000;126087861;126608674;129140850;136443000;136636000;138490465;121500000;123800000;126800000;126800000;112600000
-33;'124;Canada;1868;Sawlogs and veneer logs;5616;Import quantity;m3;709000;1039300;1028200;1417400;1745300;1335700;1536600;1722900;1599900;1608400;1821600;2668000;2260900;1881600;1658400;1947000;1763500;2013600;2357200;2039000;1630900;1576800;2359400;2806800;2963500;3115800;3093000;3387000;3170000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;8629;12658;14505;18013;22946;16997;20608;23104;22907;22771;27181;41902;40784;44725;37023;42826;40720;50747;65520;56347;51891;50544;76675;93063;97175;108802;116092;138408;143478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1868;Sawlogs and veneer logs;5916;Export quantity;m3;402100;268600;423000;304400;292000;528700;842400;712500;499300;1266700;769000;313800;206800;725500;405000;554700;889300;642600;841100;1146900;947300;1241700;2284900;3370400;2512500;2662800;3510800;3045000;1793000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;5944;4090;5883;5515;5825;8599;15113;13971;10731;26437;16683;7659;6717;23995;22369;24800;42837;32880;49310;57468;44746;73310;116406;172571;119842;184285;239290;232000;138000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;45369008;51231008;54599008;57961008;58741008;59222000;58919008;63368000;69746000;71266000;73508000;76320000;91855000;80640000;69313000;92779000;98590000;106749000;109075000;104753000;91886000;85178000;106900000;112375000;114252000;119703000;135122000;132601000;131846000;110698000;112107000;122150000;128532000;131289000;136554000;137900000;139300000;127760000;146696000;149636000;138517000;148722000;130749000;155725000;154534000;139341000;126008000;103257000;83148000;104984050;111437977;111438000;116214995;115760436;118075650;120209000;119510000;122952449;109000000;111000000;112000000;112000000;100000000
-33;'124;Canada;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;709000;1039300;1028200;1164700;1496100;1047800;1144200;1397100;1312600;1303600;1535000;2336000;1915500;1530100;1417200;1720000;1538000;1685000;1921700;1628900;1277000;1324500;2038000;2357700;2515700;2590000;2399000;2806000;2457000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;8629;12658;14505;13456;17605;11737;12943;16507;16601;16489;20452;33935;31549;34198;29121;35144;32437;36755;48853;42015;34757;35319;56768;65123;71322;77309;73582;101805;98578;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;318500;185600;340200;215200;212600;445000;760000;634900;430200;1210800;703000;244100;158000;668300;377200;512900;862100;622800;794600;1050200;908000;1157800;2035400;3178200;2413900;2513300;3276800;2805000;1659000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;3764;2224;3969;3361;3640;6368;12609;11178;8254;24427;14768;5697;5074;21761;21077;22978;41607;31488;46934;53531;42116;68455;107284;162981;115285;176818;228600;220000;130000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;2350000;2435000;5400000;3963000;3883000;4445000;4406000;4078000;3710000;4379000;4441000;4893000;5032000;4656000;4230000;4364000;5128000;4800000;5345000;5199000;4396000;3965000;4350000;4850000;5065000;5634000;5788000;6237000;6284000;6564000;6432000;7418000;9208000;11237000;12282000;12282000;12282000;14509000;15163000;17018000;15900000;15665000;16100000;17383000;17944000;14462000;9069000;7432000;5984000;7555950;6597800;6598000;9872866;10848238;11065200;16234000;17126000;15538016;12500000;12800000;14800000;14800000;12600000
-33;'124;Canada;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;252700;249200;287900;392400;325800;287300;304800;286600;332000;345400;351500;241200;227000;225500;328600;435500;410100;353900;252300;321400;449100;447800;525800;694000;581000;713000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;4557;5341;5260;7665;6597;6306;6282;6729;7967;9235;10527;7902;7682;8283;13992;16667;14332;17134;15225;19907;27940;25853;31493;42510;36603;44900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;83600;83000;82800;89200;79400;83700;82400;77600;69100;55900;66000;69700;48800;57200;27800;41800;27200;19800;46500;96700;39300;83900;249500;192200;98600;149500;234000;240000;134000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2180;1866;1914;2154;2185;2231;2504;2793;2477;2010;1915;1962;1643;2234;1292;1822;1230;1392;2376;3937;2630;4855;9122;9590;4557;7467;10690;12000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27875000;25980000;28699000;23079000;27526000;26635000;28583000;23443000;23423000;23919000;23199000;21766000;23409000;25920663;25921000;19802449;20338898;20338900;16453000;16527000;15502595;16586801;15405205;15247150;15247150;14825329
-33;'124;Canada;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14196000;12259000;13453000;9335000;12502000;10677000;12386000;9834000;8799000;10985000;10655000;10080000;10751039;9612803;9613000;7820920;7915261;7915260;5789000;5454000;4678194;5286801;4505205;4447150;4447150;4525329
-33;'124;Canada;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13679000;13721000;15246000;13744000;15024000;15958000;16197000;13609000;14624000;12934000;12544000;11686000;12657961;16307860;16308000;11981529;12423637;12423640;10664000;11073000;10824401;11300000;10900000;10800000;10800000;10300000
-33;'124;Canada;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;560500;406400;351700;308100;254900;295000;366600;278000;262700;304200;281400;444900;339300;651800;556000;495000;585000;672500;897300;559800;591100;500400;456700;459100;572700;771000;745700;790000;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;3417;2556;2254;1884;1913;2376;3257;2630;2460;2952;2919;4872;3548;8099;8903;8039;10286;12586;17872;12424;13906;12255;10355;9851;12078;20248;16852;19744;20500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;2775000;2952100;2684000;2977400;3283600;3323900;2790100;2432800;2495000;2634500;1857200;1397800;1267400;1177800;947000;905000;764000;889000;797200;1066000;903200;287300;442200;405800;377800;611100;874300;985000;800000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;26043;26767;23960;26523;31555;30069;25427;23488;22652;25707;18768;14112;12326;12690;11044;11448;11354;12727;12785;22271;20558;6621;9370;8280;6149;8917;16295;22000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1870;Pulpwood and particles (1961-1997);5516;Production;m3;37223000;35222000;32057000;33602000;34193000;38366008;37681008;38432000;42830000;40553000;37105000;38586000;42558000;48208000;37270000;37048000;36934000;38982000;41061000;38909000;41342000;31170000;37042000;42344000;40620000;42694000;41753000;43210000;41651000;35864000;31280000;30839000;29375000;32011000;31089000;31089000;31089000;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;560500;406400;351700;308100;254900;295000;366600;278000;262700;304200;281400;444900;339300;651800;556000;495000;585000;672500;897300;559800;591100;500400;456700;459100;572700;771000;745700;790000;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;3417;2556;2254;1884;1913;2376;3257;2630;2460;2952;2919;4872;3548;8099;8903;8039;10286;12586;17872;12424;13906;12255;10355;9851;12078;20248;16852;19744;20500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;2775000;2952100;2684000;2977400;3283600;3323900;2790100;2432800;2495000;2634500;1857200;1397800;1267400;1177800;947000;905000;764000;889000;797200;1066000;903200;287300;442200;405800;377800;611100;874300;985000;800000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;26043;26767;23960;26523;31555;30069;25427;23488;22652;25707;18768;14112;12326;12690;11044;11448;11354;12727;12785;22271;20558;6621;9370;8280;6149;8917;16295;22000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;34990000;32618000;29194000;31162000;31904000;35477008;34853008;35832000;39514000;36801000;33382000;34166000;37569000;43117000;33441000;33270000;33114000;34868000;36861000;34754000;37302000;27849000;32959000;37708000;36389000;38216000;37051000;37890000;35926000;28816000;24332000;23157000;20578000;21189000;19751000;19751000;19751000;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;2233000;2604000;2863000;2440000;2289000;2889000;2828000;2600000;3316000;3752000;3723000;4420000;4989000;5091000;3829000;3778000;3820000;4114000;4200000;4155000;4040000;3321000;4083000;4636000;4231000;4478000;4702000;5320000;5725000;7048000;6948000;7682000;8797000;10822000;11338000;11338000;11338000;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1871;Other industrial roundwood;5516;Production;m3;1656000;1819000;1669000;1548000;1631000;1981000;1690000;1244000;1259000;1294000;1114000;1106000;1079000;1086000;915000;1278000;1166000;1365000;1803000;1923000;1552000;1408000;1383000;1593000;2077000;2257000;2393000;2279000;2323000;2832000;3668000;3100000;2655000;2809000;3188000;3188000;3188000;3757000;3149000;3565000;5449000;3298000;3315000;3582000;4326000;3784000;2394000;2208000;2408000;2853000;2778886;2784000;1860963;1877813;1877810;1798000;2020000;1635996;1853259;2045008;2109274;2109274;2032232
-33;'124;Canada;1871;Other industrial roundwood;5616;Import quantity;m3;21900;17500;15700;16700;30200;43200;85900;69400;137900;204000;188400;216000;716600;917000;704000;694600;393700;359400;475800;400000;455800;452500;377700;569100;863800;861100;919800;800000;780000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1871;Other industrial roundwood;5622;Import value;1000 USD;1307;683;794;427;1301;1491;1456;1219;1802;3077;2822;5358;8666;12105;11781;11000;6700;7163;8890;9003;10703;10500;6349;15584;17577;16179;16769;16580;17200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1871;Other industrial roundwood;5916;Export quantity;m3;324400;379100;255200;231300;207400;197500;277100;371200;283300;265400;246300;248300;231000;196000;170000;190700;168900;137300;117500;106800;122100;106500;113200;98800;95100;82900;123700;77000;56000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1871;Other industrial roundwood;5922;Export value;1000 USD;6494;7219;6263;5823;5682;6147;6471;8180;7750;7889;7359;8125;8190;8042;7524;8795;6469;7949;6674;9651;9614;8800;16374;12705;11515;9949;17909;11691;8649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1656000;1819000;1669000;1548000;1631000;1981000;1690000;1244000;1259000;1294000;1114000;1106000;1079000;1086000;915000;1278000;1166000;1365000;1803000;1923000;1552000;1408000;1383000;1593000;2077000;2257000;2393000;2279000;2323000;1575000;1940000;1393000;1384000;1656000;937000;937000;937000;810000;399000;384000;2042000;249000;184000;233000;725000;797000;135000;125000;136000;160911;138440;138000;147651;98453;98450;212000;196000;121662;140110;268285;319345;319345;263096
-33;'124;Canada;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257000;1728000;1707000;1271000;1153000;2251000;2251000;2251000;2947000;2750000;3181000;3407000;3049000;3131000;3349000;3601000;2987000;2259000;2083000;2272000;2692089;2640446;2646000;1713312;1779360;1779360;1586000;1824000;1514334;1713149;1776723;1789929;1789929;1769136
-33;'124;Canada;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;21900;17500;15700;16700;30200;43200;85900;69400;137900;204000;188400;216000;716600;917000;704000;694600;393700;359400;475800;400000;455800;452500;377700;569100;863800;861100;919800;800000;780000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;1307;683;794;427;1301;1491;1456;1219;1802;3077;2822;5358;8666;12105;11781;11000;6700;7163;8890;9003;10703;10500;6349;15584;17577;16179;16769;16580;17200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;324400;379100;255200;231300;207400;197500;277100;371200;283300;265400;246300;248300;231000;196000;170000;190700;168900;137300;117500;106800;122100;106500;113200;98800;95100;82900;123700;77000;56000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;6494;7219;6263;5823;5682;6147;6471;8180;7750;7889;7359;8125;8190;8042;7524;8795;6469;7949;6674;9651;9614;8800;16374;12705;11515;9949;17909;11691;8649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1630;Wood charcoal;5610;Import quantity;t;5000;4300;4400;7600;6900;9900;9100;11600;12200;11600;11300;14000;13100;14800;27000;21000;36200;23000;28700;7300;14800;12000;9500;8800;6500;7200;3800;6000;4000;8600;9300;5567;5336;6200;6100;5400;4600;8000;7000;6400;5000;8000;10000;11000;14000;13000;11000;16000;15000;39000;44976;26000;25906;24545;21392;24516;17791;45777;29001;90006;170383;88506;32160
-33;'124;Canada;1630;Wood charcoal;5622;Import value;1000 USD;517;410;417;625;613;788;862;1190;1240;1276;1364;1654;1635;2345;5228;3651;6300;4439;4556;1879;4269;3563;3312;2822;2225;1838;1100;1360;968;3093;3252;1730;2001;2196;1894;1679;1733;2019;2521;2072;1654;2705;3452;4889;6526;7648;6435;8309;9736;8845;10206;11054;11813;11193;9759;10832;9517.23;12151;14118;19362;24298;15605;18217
-33;'124;Canada;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2439;2302;1600;1600;1400;1300;2300;2000;2670;3000;3000;2000;2000;1000;1000;700;610;1000;1000;660;1000;970;950;946;1788;1018;1365;1357;1638;1052;2523;4568
-33;'124;Canada;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181;856;512;583;584;505;594;601;1120;1100;1111;987;806;579;409;411;414;526;505;549;564;648;666;777;850;837.81;958;1046;1134;1168;2585;3122
-33;'124;Canada;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67506691;82136001;85645776;84137000;84137000;84137000;84137000;84137000;84137000;84137000;84137000;84137000;84137000;84137000;84137000;34548400;34234000;36389840;38062000;26115000;25303300;23174000;22374000;22974000;22474000;23374000
-33;'124;Canada;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1816100;1112300;2008930;2002634;1778000;1864000;2075000;2180000;2386000;3831000;3891000;3073000;2994000;2833608;2756000;3775394;3522710;3334542;2927124;3445311;2998668;3120232;2993495;2668897;2215829;1861229
-33;'124;Canada;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64335;64742;79292;64804;62843;66133;78581;79294;88676;152854;156800;110341;110182;103935;92438;105113;102814;104732;81842;85331.22;107538;107207;102649;85387;72471;102133
-33;'124;Canada;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498000;1575093;1735424;1834038;1794000;1575000;1464228;2180000;1473417;3038000;2774000;2723000;3330000;3547243;1580000;1162813;1140948;1124818;1226569;775505;618158;296443;226626;593418;542424;407544
-33;'124;Canada;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93836;99709;120962;136996;128640;143543;171173;195566;54175;269788;280579;273362;362100;370368;104432;77737;76061;75426;81328;64547.53;54231;25483;23163;46089;50999;48270
-33;'124;Canada;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66906691;73913601;77021488;75363000;75363000;75363000;75363000;75363000;75363000;75363000;75363000;75363000;75363000;75363000;75363000;25774400;25460000;27615840;29288000;17341000;16529300;14400000;13600000;14200000;13700000;14600000
-33;'124;Canada;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;161100;176900;106000;95700;56900;97800;130600;174300;477500;120100;194300;147000;185500;242900;548373;546138;1143000;1295000;889000;1601200;1748800;1007000;1956218;1917000;1704000;1804000;1850000;1772000;1997000;3282000;3160000;2099000;2195000;2169608;2170000;3231192;2805119;2576098;2215000;2554189;2774888;2895915;2771384;2211592;1787112;1553604
-33;'124;Canada;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;5466;5038;2098;2764;2964;5274;7078;6515;18559;4660;6818;6747;9127;12578;17740;17828;34417;46062;31099;43994;59459;57117;71469;57331;53894;56584;66786;68742;76742;136612;135041;78903;86925;76499;79496;91697;88421;91399;69826;74912.22;100829;100482;95990;76116;65659;94586
-33;'124;Canada;1619;Wood chips and particles;5916;Export quantity;m3;;;;1135800;839000;985100;1204800;1216000;777700;976000;852000;753000;800000;652000;522000;780000;1015000;1231000;1290800;1488400;1449700;1254000;1536700;1312400;1238400;1121300;1002000;1701700;1901600;1581200;1276900;1147000;903000;935000;977000;1174000;1274000;913000;906093;1222325;1116000;1116000;1033000;404000;629000;1217000;1154000;881000;709000;918000;1068243;1336000;943213;892957;865099;970000;504488;374202;182339;104443;456819;393384;260456
-33;'124;Canada;1619;Wood chips and particles;5922;Export value;1000 USD;;;;7760;6504;7738;10018;10364;7382;10305;16629;12697;15693;14300;14142;21216;32643;43382;45497;77757;81558;79406;72498;65951;60928;55282;55398;105000;139131;120334;97840;93711;80149;61219;67782;71293;73684;50557;49835;57068;52931;45564;38072;29102;30522;46309;52708;45952;31654;45633;59549;70159;45846;40123;37635;42995;24948.53;18613;8984;4644;23138;19830;16111
-33;'124;Canada;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600000;600000;600000;600000;600000;600000;8222400;8624288;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000;8774000
-33;'124;Canada;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57148;42468;48000;49000;44000;61000;67300;105300;52712;85634;74000;60000;225000;408000;389000;549000;731000;974000;799000;664000;586000;544202;717591;758444;712124;891122;223780;224317;222111;457305;428717;307625
-33;'124;Canada;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5593;4108;4174;4591;4620;5201;4876;7625;7823;7473;8949;9549;11795;10552;11934;16242;21759;31438;23257;27436;12942;13416;14393;13333;12016;10419;6709;6725;6659;9271;6812;7547
-33;'124;Canada;1620;Wood residues;5916;Export quantity;m3;275000;275000;275000;254500;328000;457400;479100;438800;327000;455200;647000;652000;534600;498100;357500;556500;641000;381000;284800;440500;507700;674100;644800;550000;525800;590200;645900;386200;275600;154100;108000;117098;274000;453000;511000;543000;489000;585000;669000;513099;718038;678000;542000;1060228;1551000;256417;1884000;1893000;2014000;2412000;2479000;244000;219600;247991;259719;256569;271017;243956;114104;122183;136599;149040;147088
-33;'124;Canada;1620;Wood residues;5922;Export value;1000 USD;292;292;292;270;238;349;408;433;415;1124;1714;2020;2802;2533;2549;3794;3358;2974;3442;4612;5328;6714;7340;8226;8746;9193;13219;18890;16388;21514;16102;14570;19068;26142;33526;35866;43488;43279;49874;63894;84065;83076;105471;142071;165044;7866;217080;234627;241708;316467;310819;34273;31891;35938;37791;38333;39599;35618;16499;18519;22951;31169;32159
-33;'124;Canada;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118455;85657
-33;'124;Canada;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3203;3394
-33;'124;Canada;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;1032
-33;'124;Canada;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;336
-33;'124;Canada;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500000;1800000;1900000;2100000;3038700;3055736;3198347;3350000;3980000;3980000;3980000;3600000
-33;'124;Canada;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50473;30624;41085;34467;25036;33734;74136;69211;49067;60943;52806;65794
-33;'124;Canada;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13372;13558;17544;14278;11601;11921.25;15949;16391;20512;22477;20340;21348
-33;'124;Canada;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1459241;1679992;1753926;1675094;2420752;2385895;2721905;2791535;3043884;3319169;3651415;3418469
-33;'124;Canada;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227572;262771;271315;234481;317930;353048.97;395350;415992;443401;473507;576480;527210
-33;'124;Canada;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500000;1800000;1900000;2100000;2888700;2905736;3048347;3200000;3830000;3830000;3830000;3450000
-33;'124;Canada;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;22615;30108;29938;20257;19612;19938;27211;28536;29267;30737;39297
-33;'124;Canada;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8232;5466;6603;10662;7450;7429.24;8719;10768;13678;15430;14606;15888
-33;'124;Canada;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1369000;1640231;1637393;1627784;2373109;2171504;2651441;2634241;2900687;3153192;3492510;3262749
-33;'124;Canada;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208310;252429;250080;222769;308965;305562.49;377762;376891;405779;429592;532378;484077
-33;'124;Canada;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;150000;150000;150000;150000;150000;150000
-33;'124;Canada;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5473;8009;10977;4529;4779;14122;54198;42000;20531;31676;22069;26497
-33;'124;Canada;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5140;8092;10941;3616;4151;4492;7230;5623;6834;7047;5734;5460
-33;'124;Canada;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90241;39761;116533;47310;47643;214391;70464;157294;143197;165977;158905;155720
-33;'124;Canada;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19262;10342;21235;11712;8965;47486.48;17588;39101;37622;43915;44102;43133
-33;'124;Canada;1872;Sawnwood;5516;Production;m3;14453321;15469742;17087348;18029698;18850545;18338298;18084935;19770739;20151980;19755915;22098990;24219077;26696434;23431804;19925534;26840051;30284858;32720793;33983749;32779337;29218411;27282989;35216567;35651072;39637993;39916300;44912446;44230092;42907872;39740770;37481153;40137982;43218773;45104528;45444032;47025009;47664584;47185265;50411779;50464607;53707600;58481276;56891762;60951910;60186632;58709208;52284433;41547622;32819530;38667000;38879780;40564043;42813453;43351000;47114860;49723699;47861400;47603420;41832100;40397200;41080100;37258800;35075600
-33;'124;Canada;1872;Sawnwood;5616;Import quantity;m3;509887;464846;474557;561727;572550;534915;597898;619768;602453;506850;608319;778161;964469;960542;1164077;1402696;1189348;1063849;1366796;1328321;1800134;819710;1237092;1169308;1138959;1318118;1477322;1239297;1387231;1281859;1220484;1176267;1189594;1340727;1439828;1483911;1602821;1398945;1619183;1736025;1432700;1484360;1537291;2149643;2226270;1545769;1635302;1754278;1157960;1410876;1264663;1258000;1262000;1295000;1280000;1258049;1770341;1616783;1525066;1358097;1526166;1425227;1426505
-33;'124;Canada;1872;Sawnwood;5622;Import value;1000 USD;30597;29321;29635;35334;36284;35529;38041;42464;48863;39046;47085;72018;106549;123711;117176;165076;162248;181367;271060;240035;248867;154410;237315;239610;225357;278356;342663;442032;411749;372137;359594;316669;351138;378145;386101;391004;493286;431780;503462;561458;452823;473024;527526;560579;549749;560955;540598;477960;349590;473426;440409;478895;516242;549265;461575;452298;594819.8;616352;588135;533072;793450;772229;656930
-33;'124;Canada;1872;Sawnwood;5916;Export quantity;m3;8853234;9772472;11132531;11548042;11594287;10975187;11214135;12412383;11919394;12861420;14656360;16832152;17133483;14197652;11215973;16576498;21034644;22967615;22852275;21230094;19956443;20136420;24681836;27026199;28122666;27711291;30205621;29818276;29292201;27192149;26420884;28771246;31581004;33161757;35029349;36599209;35350978;35160281;36191436;36455979;36368700;37356579;37983248;41099748;41184912;38983669;33190408;24218605;19000617;22375147;24171918;25368000;28017296;29504539;30304926;33163462;31637534;30207986;27998092;26695254;27170186;24643724;23105051
-33;'124;Canada;1872;Sawnwood;5922;Export value;1000 USD;365832;398611;451157;480089;489753;472395;477543;614065;657418;645923;826547;1194966;1609511;1318834;958577;1671421;2244611;2832040;3330593;2880630;2510844;2372917;3228578;3301023;3375820;3597995;4436903;4426894;4682895;4640968;4523327;5495132;7326264;8340786;7971730;9202129;9411560;7901514;8947692;8205679;7496294;6995051;6454101;8960246;8708489;8208389;6976830;5059406;3464362;4900872;5426070;5917578;7424688;7848259;6916045;7783556;8328870.58;8241057;6321315;7744589;13435374;10833872;6512373
-33;'124;Canada;1632;Sawnwood, coniferous;5516;Production;m3;13366071;14392492;15970848;16705198;17491045;17042298;16553935;18292739;18680980;18330915;20863490;22850077;25339434;22098804;18952534;25670051;29239858;31387793;32819749;31350337;28262411;26192989;34303567;34364072;38494993;38463300;43425446;42767092;41662872;38536770;36478153;39331982;42095773;44102528;44351032;46025009;46829584;46158265;49361079;49381607;52613600;56750276;55131762;59135910;58469632;57067208;50883433;40436922;32006530;37712000;37408780;39288043;41424453;41891000;45360460;48160699;46292400;46352520;40800000;39400000;40200000;36400000;34200000
-33;'124;Canada;1632;Sawnwood, coniferous;5616;Import quantity;m3;258587;217746;220807;270977;274650;256715;298348;336668;296403;287400;329969;387161;507019;542242;616577;754946;610598;449899;565796;483321;869834;364760;556792;450908;477559;571918;533022;617297;746231;718859;634584;545267;464594;497727;547428;553911;579121;445145;535183;554137;394700;385360;411291;488363;648270;502769;532302;666278;678960;814876;636663;610000;612000;595000;700000;662000;929341;791588;645928;626602;741226;640234;657111
-33;'124;Canada;1632;Sawnwood, coniferous;5622;Import value;1000 USD;15623;13739;13882;17093;17074;16069;17688;23006;25098;21054;26738;38386;59995;72595;69802;96346;90272;82408;108415;92369;108432;58360;99804;83393;82022;102915;104827;157633;186657;165414;150124;131544;119373;125948;129696;129082;161777;126422;151214;159703;108389;106902;111313;117998;123802;141230;147282;157103;138796;199645;190011;213090;241903;238757;205636;206288;259808;250585;191099;196408;347691;315758;260515
-33;'124;Canada;1632;Sawnwood, coniferous;5916;Export quantity;m3;8538184;9394872;10760381;11150892;11134037;10413737;10776985;12003583;11429144;12460470;14271160;16418302;16723133;13907552;11027073;16303198;20755444;22629665;22532425;20897344;19648343;19855070;24408086;26697199;27817266;27372841;29751271;29187276;28861701;26720249;25940884;28345246;30934004;32358757;34260349;35749209;34328778;33981881;34852436;35011299;35075700;35964579;36609248;39731748;39836912;37908669;32385408;23734605;18671617;21866147;23797309;24886000;27567209;28943000;29783821;32634273;31056320;29629993;27400000;26200000;26700000;24200000;22700000
-33;'124;Canada;1632;Sawnwood, coniferous;5922;Export value;1000 USD;343492;372578;425287;451343;456672;433022;441475;578894;617054;610579;791254;1139471;1558875;1282165;932990;1633833;2198505;2768548;3260999;2790749;2432209;2307636;3160449;3229169;3312388;3521411;4334120;4252830;4549025;4500459;4387634;5279966;7115893;8069477;7665909;8880283;9020525;7494109;8521249;7753963;7099989;6596604;6033204;8464784;8187128;7736737;6612313;4806757;3309742;4700996;5226924;5725935;7195225;7562933;6646444;7520525;8040514.2;7931717;6001095;7483156;13100000;10500000;6267363
-33;'124;Canada;1633;Sawnwood, non-coniferous;5516;Production;m3;1087250;1077250;1116500;1324500;1359500;1296000;1531000;1478000;1471000;1425000;1235500;1369000;1357000;1333000;973000;1170000;1045000;1333000;1164000;1429000;956000;1090000;913000;1287000;1143000;1453000;1487000;1463000;1245000;1204000;1003000;806000;1123000;1002000;1093000;1000000;835000;1027000;1050700;1083000;1094000;1731000;1760000;1816000;1717000;1642000;1401000;1110700;813000;955000;1471000;1276000;1389000;1460000;1754400;1563000;1569000;1250900;1032100;997200;880100;858800;875600
-33;'124;Canada;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;251300;247100;253750;290750;297900;278200;299550;283100;306050;219450;278350;391000;457450;418300;547500;647750;578750;613950;801000;845000;930300;454950;680300;718400;661400;746200;944300;622000;641000;563000;585900;631000;725000;843000;892400;930000;1023700;953800;1084000;1181888;1038000;1099000;1126000;1661280;1578000;1043000;1103000;1088000;479000;596000;628000;648000;650000;700000;580000;596049;841000;825195;879138;731495;784940;784993;769394
-33;'124;Canada;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;14974;15582;15753;18241;19210;19460;20353;19458;23765;17992;20347;33632;46554;51116;47374;68730;71976;98959;162645;147666;140435;96050;137511;156217;143335;175441;237836;284399;225092;206723;209470;185125;231765;252197;256405;261922;331509;305358;352248;401755;344434;366122;416213;442581;425947;419725;393316;320857;210794;273781;250398;265805;274339;310508;255939;246010;335011.8;365767;397036;336664;445759;456471;396415
-33;'124;Canada;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;315050;377600;372150;397150;460250;561450;437150;408800;490250;400950;385200;413850;410350;290100;188900;273300;279200;337950;319850;332750;308100;281350;273750;329000;305400;338450;454350;631000;430500;471900;480000;426000;647000;803000;769000;850000;1022200;1178400;1339000;1444680;1293000;1392000;1374000;1368000;1348000;1075000;805000;484000;329000;509000;374609;482000;450087;561539;521105;529189;581214;577993;598092;495254;470186;443724;405051
-33;'124;Canada;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;22340;26033;25870;28746;33081;39373;36068;35171;40364;35344;35293;55495;50636;36669;25587;37588;46106;63492;69594;89881;78635;65281;68129;71854;63432;76584;102783;174064;133870;140509;135693;215166;210371;271309;305821;321846;391035;407405;426443;451716;396305;398447;420897;495462;521361;471652;364517;252649;154620;199876;199146;191643;229463;285326;269601;263031;288356.38;309340;320220;261433;335374;333872;245010
-33;'124;Canada;1634;Veneer sheets;5516;Production;m3;93200;122200;154100;163400;141600;231900;217400;227600;186000;220000;174000;209000;197000;226000;353000;474000;474000;474000;474000;474000;474000;650000;750000;700000;700000;750000;474000;474000;474000;501000;501000;501000;501000;501000;501000;501000;501000;501000;501000;600000;600000;700000;700000;860000;880000;900000;600000;500000;450000;450000;500000;550000;600000;520000;610000;670000;760000;638760;581479;581479;581479;581479;581479
-33;'124;Canada;1634;Veneer sheets;5616;Import quantity;m3;13800;16700;17700;22800;20600;22000;24900;29000;39000;35000;43000;65000;65000;54000;49700;53000;34000;36000;32300;30300;34300;24200;41300;44900;44300;59600;56400;44800;36300;37800;30600;81000;95000;118000;125000;155000;193000;236900;426602;290178;306000;298000;226000;275000;267000;271000;305000;208000;164000;148000;159471;182700;167492;154094;141671;69969;72335;169268;186920;145089;182871;211872;206110
-33;'124;Canada;1634;Veneer sheets;5622;Import value;1000 USD;4063;5180;5538;6227;6317;6489;10355;12070;14862;13569;17235;25934;31187;21044;20092;21319;15796;18862;21170;22527;27550;16248;26733;29097;26656;28975;33740;37353;40087;40553;33277;36101;45965;59241;60056;74447;101063;117531;140431;161969;152683;172879;181834;194763;187454;197845;201068;160268;124771;126985;129401;132145;130243;132602;125317;118918;129591.08;141039;128659;117703;153095;183693;189335
-33;'124;Canada;1634;Veneer sheets;5916;Export quantity;m3;66000;80600;90700;99700;113600;119400;119600;121900;108800;119000;136300;172600;165000;125700;120400;153700;166400;180600;182500;162300;214600;155500;176300;152000;133800;139800;157800;198900;194700;266900;179200;229912;262000;318000;312000;296000;307000;661100;780696;816347;843000;876000;835000;1047000;1045000;953000;656000;514000;403000;163891;184008;243350;554433;572493;632602;573208;669818;623266;564111;548948;619942;589731;535770
-33;'124;Canada;1634;Veneer sheets;5922;Export value;1000 USD;17410;19574;22761;26823;29376;29306;28179;30656;27093;26688;31384;43840;51027;43389;38222;52790;60269;79049;110695;77227;74879;73701;93745;94375;71414;83815;101705;117821;121662;136160;122110;161053;184017;222393;247000;251580;274150;277356;315391;343886;331633;339124;326878;425100;427768;407220;320192;243615;172906;190555;184525;214907;243221;253229;274103;267197;292169.19;328697;267421;263917;412867;448256;325733
-33;'124;Canada;1873;Wood-based panels;5516;Production;m3;1399800;1578100;1723200;1936400;2172500;2847200;2951700;3111200;3282400;3068200;3443200;3804700;4147000;3576000;3380800;4131000;4336000;4791000;4656000;4328000;4237000;3484000;4574000;4774000;5363000;5171000;6026000;5750000;6443000;5857000;5047000;6067000;6747000;7154000;7856000;9462000;10840000;11915028;14099162;14440440;14671000;15393000;15791000;15759000;16701000;16733000;17037000;11820000;8427000;9046000;9615000;10130000;10651433;11328000;11779000;12012983;12379830;12295828;12795426;11007000;11934675;11774613;11136217
-33;'124;Canada;1873;Wood-based panels;5616;Import quantity;m3;77100;87100;78000;110400;101500;126159;165955;182683;310916;207765;352203;591674;647912;891399;866805;665120;419000;341600;300300;202700;417500;144800;272900;231700;254300;400600;450700;528800;555400;483900;538700;563539;669160;676400;754300;942500;899500;762700;855120;1248994;1176231;1595000;1408000;1336556;1904000;2291977;3325222;3481262;2231000;2802805;2751037;2738000;2630727;3382551;3174836;2967022;3374547;3112089;2785623;2549694;3126857;2669234;2332843
-33;'124;Canada;1873;Wood-based panels;5622;Import value;1000 USD;9755;12397;10474;14378;13798;15670;19452;21573;33529;22478;33780;55165;77598;119786;122488;97934;73686;69685;76914;53322;101575;37524;68268;69587;73499;105707;123260;157648;166546;143860;153821;161908;227071;233377;204691;233784;261488;225187;252860;283913;317103;423162;468959;589305;633346;767935;775267;751859;664925;821932;803095;906266;904781;911390;839015;866245;980361.39;965955;891692;886405;1301901;1280699;973748
-33;'124;Canada;1873;Wood-based panels;5916;Export quantity;m3;143600;203200;224400;335400;353900;405798;466915;527379;513453;460770;450978;565414;620875;415294;362000;311600;741400;868600;1005200;1181200;1003300;1015400;1089100;1467100;1684700;1447300;1428600;2037700;1929000;2172600;1761600;2749385;3636226;4316200;5485300;6565000;7659000;8663200;9883760;10018147;10994541;11178000;11904000;12336000;12422000;12064000;9530000;5639000;4247000;3951923;4719875;5048000;5819908;6436370;7153629;7876697;8328027;10163280;8113197;7384779;8000088;8028326;7449456
-33;'124;Canada;1873;Wood-based panels;5922;Export value;1000 USD;17482;24070;29447;39530;40825;42509;48021;54957;54007;50012;45584;65399;76143;71817;55412;51755;106980;141938;164821;196358;180597;177304;206763;254659;283531;244256;261071;322725;369673;371033;317668;532621;725440;934364;1192764;1265784;1330701;1779687;2400667;2181979;1975821;2065813;2977018;4102466;3871909;3083523;2299770;1480384;1097017;1287419;1200263;1480632;1915066;1802959;1904893;2197264;2458310.82;2731797;2134646;2699583;5069632;4492751;3049270
-33;'124;Canada;1640;Plywood and LVL;5516;Production;m3;1103500;1244300;1359700;1512800;1701800;1803000;1867600;1958600;2004000;1851000;2066000;2202000;2451000;2085000;2051000;2442000;2660000;2807000;2510000;2338000;2086000;1850000;2270000;2050000;2190000;1877000;2221000;2162000;2165000;1971000;1705000;1838000;1824000;1834000;1831000;1814000;1830000;2049000;2228480;2243734;2026000;2176000;2206000;2344000;2322000;2252000;2639000;2225000;1810000;2005000;1794000;1824000;1792000;1810000;1929000;2204769;2253362;1742370;1922000;1672000;1698230;1603540;1604000
-33;'124;Canada;1640;Plywood and LVL;5616;Import quantity;m3;54800;66200;55700;88300;77600;90900;121900;123800;214900;131200;215600;367200;345600;552500;621600;427000;235000;176600;150800;81400;246000;64300;131600;94900;101400;187800;225100;228400;288400;230500;261800;242044;288260;288000;354000;424000;428000;273400;222000;230440;520000;489000;509000;350013;690000;684977;1827000;2149000;861000;1909000;1553562;1621000;1469265;1586513;1491749;1227543;1744036;1561913;1406220;1174427;1405883;1220473;1142729
-33;'124;Canada;1640;Plywood and LVL;5622;Import value;1000 USD;7302;10122;7874;11635;9931;12033;16010;17076;27365;17633;26023;43125;56425;92954;101637;74304;52537;47923;54314;32507;71383;20870;40429;39348;39483;62590;69249;85685;87480;71613;71180;79772;97391;82162;90813;106133;124108;83748;70697;71099;100520;124221;131188;187320;176349;213199;239956;248365;197500;294404;313405;372524;369679;354146;333917;342212;415911.86;414729;373691;365173;623938;590054;417808
-33;'124;Canada;1640;Plywood and LVL;5916;Export quantity;m3;121900;181800;194300;297200;292200;330000;401300;428900;400400;368600;342200;428900;471200;341000;312600;249000;387500;499100;493200;548400;408100;413200;434300;474200;473000;336800;329700;478600;400300;391100;287900;412196;415626;510500;818500;872000;863000;754700;956000;941295;1030000;1056000;1017000;1027000;1118000;950000;964000;583000;306000;301000;359433;287000;426329;482366;647314;625262;669699;733087;655327;542843;634284;653627;599755
-33;'124;Canada;1640;Plywood and LVL;5922;Export value;1000 USD;15380;21807;26305;35367;34892;38309;44008;48970;46975;43250;38836;53485;60500;61396;50122;46593;79093;108237;117471;125145;109752;100439;114782;114129;109039;87498;98876;121054;125194;118715;92872;130161;141608;149801;284830;283779;312582;282609;382542;368435;376076;400854;409371;494825;530478;485050;511846;298551;194244;180186;169189;163708;213783;243073;347687;314395;341223.89;384195;364906;368351;519513;542940;487735
-33;'124;Canada;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198000;198000
-33;'124;Canada;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62459;57322
-33;'124;Canada;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56943;50540
-33;'124;Canada;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94366;65430
-33;'124;Canada;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66411;64253
-33;'124;Canada;1646;Particle board and OSB (1961-1994);5516;Production;m3;53900;66500;84700;112600;152300;178600;195500;211300;252400;283000;390000;508000;562000;530000;566000;808000;880000;1089000;1279000;1267000;1411000;1054000;1581000;2034000;2380000;2487000;2969000;2872000;3447000;3112000;2650000;3557000;4173000;4493000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;1800;1800;1800;1800;14300;20600;47900;40200;89900;151200;197200;238400;173700;135000;94000;68000;55500;49900;76800;39500;67200;65600;76400;115100;94400;162200;129000;130400;145900;174002;194900;211400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;134;191;338;338;1016;1555;2814;2052;4045;6600;13630;16993;11010;10448;8303;8287;6888;7111;12116;6108;9046;10368;11904;15636;16106;27125;27017;27355;30997;31895;34648;42106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;9100;800;300;400;300;300;300;300;300;300;300;300;274000;280000;445000;540000;512000;500000;531900;857600;1022600;888800;936000;1408900;1305700;1554500;1239700;2063562;2968000;3447000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;345;107;20;19;19;19;19;19;19;19;19;19;21900;26300;41800;59400;59000;65000;74272;119561;147312;130998;126996;162545;199293;203219;173611;352065;530191;718658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623000;2066000;2294000;2347003;2436200;2516875;2781000;2889000;2867000;2947000;2640000;2393000;2048000;1858000;1718000;1734000;1709000;1704000;1700269;1710000;1722000;1761000;1745000;1803150;1718426;1416000;1646738;1624577;1608000
-33;'124;Canada;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;221000;201000;218500;264000;379295;305000;528000;262000;153543;377000;622000;509222;389262;581000;120895;507726;369000;502957;901829;761655;590075;683656;499595;465050;480492;587867;552792;495958
-33;'124;Canada;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29481;35405;40050;46277;58455;78246;52629;68389;60376;52395;46354;94950;82537;67586;39574;44607;47158;53228;57025;67058;65923;64927;99091.86;106488;118824;130388;177647;205179;182687
-33;'124;Canada;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202000;1069000;1124000;1073300;1054000;1111888;1204000;1273000;1311000;1202000;1060000;770000;786000;649000;570000;342805;686404;812000;878413;874301;917051;943325;886987;2279688;891023;759415;753597;709917;623959
-33;'124;Canada;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233437;192752;194877;170972;172008;197891;210878;204840;214862;223924;212519;161931;191099;174680;143362;168272;160566;200999;230275;257821;256630;272248;272177.25;259722;266768;221604;258011;285949;247284
-33;'124;Canada;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3685000;4688000;5660000;6274107;7693800;7847112;7937000;8361000;8756000;8338000;9827000;10141000;10363000;6218000;3968000;4423000;5265000;5742000;6268000;6877000;7074000;7002214;7152647;7428745;7631000;6629000;7240710;7269910;6820000
-33;'124;Canada;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;80000;60000;58700;123000;110705;112000;144000;114000;209000;130000;164000;127000;135000;97000;121910;110000;83000;102026;134000;183000;131951;148234;130500;148501;131564;123849;77733;78000
-33;'124;Canada;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10858;15233;17506;18996;34805;30778;27855;33629;30393;32803;32024;34956;29411;37937;24839;32100;29955;33568;38774;35936;28383;29172;38753.15;34305;41179;43308;57911;50178;58523
-33;'124;Canada;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100000;4127000;4928000;5952300;6727000;6931898;7308000;7477000;7926000;8557000;8776000;8925000;6522000;3542000;2696000;2731118;3073596;3380000;3892418;4404000;4790000;5438199;5937270;6273000;5697755;5250405;5745883;5806108;5486264
-33;'124;Canada;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;595200;689209;680064;1116545;1572782;1361573;1091759;1128475;1970061;2908199;2641974;1993235;1187901;668884;483807;704502;643796;884042;1236611;1038699;1009930;1313977;1537899.16;1738040;1158905;1772939;3851675;3089031;1867969
-33;'124;Canada;1874;Fibreboard;5516;Production;m3;242400;267300;278800;311000;318400;865600;888600;941300;1026000;934200;987200;1094700;1134000;961000;763800;881000;796000;895000;867000;723000;740000;580000;723000;690000;793000;807000;836000;716000;831000;774000;692000;672000;750000;827000;717000;894000;1056000;1244918;1740682;1832719;1927000;1967000;1962000;2130000;1912000;1947000;1987000;1519000;931000;884000;847000;860000;891164;931000;1054000;1045000;1228821;1321563;1524000;1290000;1348997;1276586;1104217
-33;'124;Canada;1874;Fibreboard;5616;Import quantity;m3;22300;20900;20500;20300;22100;33459;29755;38283;48116;36365;46703;73274;105112;100499;71505;103120;90000;97000;94000;71400;94700;41000;74100;71200;76500;97700;131200;138200;138000;123000;131000;147493;186000;177000;171300;217500;210500;212100;246120;528554;239231;434000;523000;624000;707000;821000;862000;808000;692000;651000;579749;665000;556479;760209;738432;1017453;798621;920081;765852;763211;1009258;818236;616156
-33;'124;Canada;1874;Fibreboard;5622;Import value;1000 USD;2453;2275;2466;2552;3529;3299;2426;2942;3350;2793;3712;5440;7543;9839;9841;13182;12846;13475;15712;13704;18076;10546;18793;19871;22112;27481;37905;44838;52049;44892;51644;50241;95032;109109;73539;77013;79824;76166;88903;103790;136099;196923;247002;316787;378619;424830;423363;397971;403012;450821;412577;446946;439303;454250;410792;429934;426604.52;410433;357998;347536;442405;435288;314730
-33;'124;Canada;1874;Fibreboard;5916;Export quantity;m3;21700;21400;30100;38200;52600;74998;65315;98079;112753;91870;108478;136214;149375;73994;49100;62300;79900;89500;67000;92800;83200;102200;122900;135300;189100;221700;162900;150200;223000;227000;234000;273627;252600;358700;364800;497000;744000;882900;1146760;1033066;1452541;1372000;1650000;1550000;1468000;1419000;1258000;865000;675000;577000;600442;569000;622748;675703;799264;869911;834071;877505;869092;832116;866324;858674;739478
-33;'124;Canada;1874;Fibreboard;5922;Export value;1000 USD;2102;2263;3142;4163;5588;4093;3993;5968;7013;6743;6729;11895;15624;10402;5271;5143;5987;7401;5550;11813;11845;11865;17709;20969;27180;25760;35199;39126;45186;49099;51185;50395;53641;65905;79297;100044;143178;209561;273335;254080;297108;331644;382724;475518;486938;443307;408924;338269;275604;234459;226712;231883;234397;263366;290646;296644;307010.52;349840;344067;336689;440433;574831;446282
-33;'124;Canada;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158000;254000;342000;107916;135682;140719;173000;186000;205000;146000;134000;120000;136000;81000;88000;91000;80000;80000;80000;82000;84000;90000;90000;90000;90000;90000;90000;90000;90000
-33;'124;Canada;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61800;69500;74000;78000;67698;210608;104801;220000;191000;263000;349000;341000;235000;169000;146000;161000;148145;158000;154269;128760;43067;106077;130797;76751;64488;64919;68008;52298;14615
-33;'124;Canada;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44386;50389;56925;53787;51789;54758;85704;118074;146914;213020;277964;317812;256398;199978;180982;189549;174845;184948;158234;139562;52858;50510;71507.67;69061;66194;69168;70530;65758;39437
-33;'124;Canada;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136700;213000;276000;221300;244000;282766;344000;316000;583000;395000;441000;451000;429000;249000;130000;94000;58963;36000;43502;17156;26427;85949;128561;103433;98046;92277;111718;108991;61704
-33;'124;Canada;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29882;40487;52807;66823;77242;83264;90679;135871;167687;207590;226886;187391;198468;157073;124138;92675;54871;35338;29415;18074;20299;49310;74928.64;66602;62986;66585;90011;107773;60909
-33;'124;Canada;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134000;215000;289000;712002;1180000;1267000;1329000;1356000;1332000;1554000;1348000;1397000;1421000;1008000;843000;793000;767000;780000;811164;849000;970000;955000;1038821;1131563;1334000;1100000;1158997;1086586;914217
-33;'124;Canada;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82200;112000;95000;91900;113121;260596;84000;178000;251000;225000;215000;218000;254000;305000;317000;300000;240264;264000;172210;451085;530081;851256;617527;705252;573638;570473;779300;608161;497376
-33;'124;Canada;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25800;21564;18132;16151;26470;38308;38200;62608;76120;56053;55968;57831;106242;141974;176961;219111;195150;205182;224597;266147;314886;343482;328297.13;307990;259251;250910;337299;319030;239628
-33;'124;Canada;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114300;157000;338000;552000;774000;746923;885000;845000;893000;1006000;903000;836000;465000;366000;450000;408000;444683;429000;509129;581957;703795;676214;609723;635140;663688;627670;637114;641426;592589
-33;'124;Canada;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35713;42614;72167;126342;176929;170280;185734;175552;196804;251265;243305;238495;130238;120238;131614;127805;138882;143496;179833;217196;249174;220220;205700.04;241316;248728;247687;324172;430797;358923
-33;'124;Canada;1650;Other fibreboard;5516;Production;m3;148400;159200;164800;178300;169400;725600;737200;751200;813200;730800;759200;826400;838800;714500;572800;673000;611000;684000;661000;518000;573000;462000;553000;529000;636000;675000;699000;587000;526000;486000;384000;382000;430000;474000;425000;425000;425000;425000;425000;425000;425000;425000;425000;430000;430000;430000;430000;430000;0;0;0;0;0;0;0;0;100000;100000;100000;100000;100000;100000;100000
-33;'124;Canada;1650;Other fibreboard;5616;Import quantity;m3;8900;4500;5100;5100;3800;14400;8800;12800;18000;17200;22800;42000;55200;58800;43600;61000;51400;52300;35700;26200;41000;17700;35500;37300;35100;40700;58000;56100;37000;36000;41000;40000;34000;23000;27300;36000;41500;42200;65301;57350;50430;36000;81000;136000;143000;262000;373000;334000;229000;190000;191340;243000;230000;180364;165284;60120;50297;138078;127726;127819;161950;157777;104165
-33;'124;Canada;1650;Other fibreboard;5622;Import value;1000 USD;1150;734;906;991;760;780;390;599;830;850;1209;2221;3033;3427;4336;4919;4938;5272;4116;2740;4278;1956;4146;4565;3934;4167;5263;7128;5481;5515;7826;4340;4031;3295;3353;5060;4767;6228;10644;10724;12195;16241;23968;47714;44687;49187;60723;56019;45069;42161;42582;56816;56472;48541;43048;35942;26799.72;33382;32553;27458;34576;50500;35665
-33;'124;Canada;1650;Other fibreboard;5916;Export quantity;m3;10500;10600;14300;20000;14900;51200;37200;52800;66000;42800;65200;66400;70400;30400;22900;42600;62600;67600;50600;56000;54700;81200;93600;100400;145100;184100;92700;70300;153000;88000;84000;69000;88000;101000;113800;127000;130000;109600;128760;3377;223541;211000;174000;149000;124000;132000;364000;250000;95000;75000;96796;104000;70117;76590;69042;107748;95787;138932;107358;112169;117492;108257;85185
-33;'124;Canada;1650;Other fibreboard;5922;Export value;1000 USD;1256;1291;1551;2111;1651;1400;1229;1388;1813;1308;1942;2211;2196;1172;1175;1935;2736;3254;2450;2978;3171;4767;6358;6821;9356;10487;6039;6802;3437;8226;7734;8128;8838;11350;13702;16943;18204;16396;19164;536;20695;20221;18233;16663;16747;17421;80218;60958;19852;13979;32959;53049;25149;28096;21173;27114;26381.84;41922;32353;22417;26250;36261;26450
-33;'124;Canada;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;94000;108100;114000;132700;149000;140000;151400;190100;212800;203400;228000;268300;295200;246500;191000;208000;185000;211000;206000;205000;167000;118000;170000;161000;157000;132000;137000;129000;305000;288000;308000;290000;320000;353000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;13400;16400;15400;15200;18300;19059;20955;25483;30116;19165;23903;31274;49912;41699;27905;42120;38600;44700;58300;45200;53700;23300;38600;33900;41400;57000;73200;82100;101000;87000;90000;107493;152000;154000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1303;1541;1560;1561;2769;2519;2036;2343;2520;1943;2503;3219;4510;6412;5505;8263;7908;8203;11596;10964;13798;8590;14647;15306;18178;23314;32642;37710;46568;39377;43818;45901;91001;105814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;11200;10800;15800;18200;37700;23798;28115;45279;46753;49070;43278;69814;78975;43594;26200;19700;17300;21900;16400;36800;28500;21000;29300;34900;44000;37600;70200;79900;70000;139000;150000;204627;164600;257700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;846;972;1591;2052;3937;2693;2764;4580;5200;5435;4787;9684;13428;9230;4096;3208;3251;4147;3100;8835;8674;7098;11351;14148;17824;15273;29160;32324;41749;40873;43451;42267;44803;54555;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1879;Total fibre furnish;5510;Production;t;10250400;10586600;10945500;12485500;13221900;14499000;14448700;15240600;16857000;16865000;16847000;17857000;19068000;20083000;15247000;18216000;18314000;19661000;20020000;20526000;20214000;17659000;19946000;21267000;21073000;22407000;23698000;24306000;25255000;24149000;24740000;24107000;25027000;27203000;28136000;27097000;27568000;26267000;27805000;29119000;27770000;28423000;28703000;28922000;28050000;26332000;25272000;23605000;20889000;22020000;21066000;19840000;19993000;19169000;19190000;19247000;19037000;18910000;19111000;16714000;17054000;16374000;15354000
-33;'124;Canada;1879;Total fibre furnish;5610;Import quantity;t;;;;3100;2900;2900;3000;28300;23300;115200;193400;239200;198500;239600;188200;321200;379500;660800;743900;601100;569600;513900;519000;748500;696000;859300;895500;713300;616200;707900;688100;967502;1370546;1932000;2449000;1512000;1961200;2508700;2463400;3056505;2445000;2600149;2820114;2660105;2537000;2358000;2278243;2101436;1586000;1307000;1041804;977000;975753;921927;1070592;1079041;1145653;1753912;1499904;1258295;1382559;1168170;1270340
-33;'124;Canada;1879;Total fibre furnish;5622;Import value;1000 USD;;;;831;782;796;872;4248;3941;11309;18679;21119;23405;39119;31039;50420;49958;64688;116415;111139;95980;98008;90084;156535;138377;151990;190180;230813;232811;267098;205984;268565;269718;362631;615063;298592;307798;322320;344054;464054;325901;357917;367469;420786;422927;356042;456799;505301;306011;367530;362725;310808;273533;299801;311559;300520;358891.93;412735;379365;370304;459886;509390;504575
-33;'124;Canada;1879;Total fibre furnish;5910;Export quantity;t;217300;238500;228200;262500;287800;230300;206500;4176300;4915600;4851500;4957000;5380000;5808000;6290000;4938700;6123100;6112700;6541400;6962000;7122600;6647300;6099900;6744200;6958400;6944500;7638700;8288700;8398800;8374300;7912100;8829800;8947782;9377566;10588200;11063000;10703000;11563300;11002000;11951204;12284524;11464000;12497000;12081421;12406276;11701000;11744000;11609000;10637000;9708587;10855866;11209186;11574045;11236794;11140297;11740582;12082425;12029412;11262278;10924140;9992690;9763604;9575243;8839586
-33;'124;Canada;1879;Total fibre furnish;5922;Export value;1000 USD;15327;16566;15622;17302;19349;15926;14056;517164;632132;697923;712928;774327;1015941;1786556;1745929;2104502;1995475;1868417;2532159;3205757;3086372;2559850;2407692;2942398;2410738;2897286;4069865;5156431;5795574;5107998;4235024;4137170;3494126;4849080;7854634;5004902;4948392;4466411;4970857;6587589;4575467;4435141;4855765;5520857;5277600;5727978;6582482;6477162;4386008;6668002;6848499;6000287;6120907;6220789;5844874;5379512;5970769.79;7029697;5613659;4699548;5751656;6424312;5169709
-33;'124;Canada;1878;Pulp for paper;5510;Production;t;10250400;10586600;10945500;12083500;12819900;14167000;14079700;14874600;16448000;16235000;16157000;17125000;18308000;19363000;14645000;17506000;17545000;18905000;19188000;19672000;19344000;16827000;19044000;20270000;20040000;21330000;22602000;23072000;23601000;22839000;23262000;22629000;22911000;24692000;25442000;24403000;24874000;23643000;25181000;26495000;24909000;25562000;26003000;26222000;25350000;23481000;22421000;20405000;17137000;18576000;17782000;17189000;17293000;16592000;16590000;16547000;16337000;16210000;16235000;13960000;14300000;13620000;12600000
-33;'124;Canada;1878;Pulp for paper;5610;Import quantity;t;;;;3100;2900;2900;3000;28300;23300;42200;66400;79200;57500;46900;49300;62000;50000;42600;115700;91500;80900;97700;102800;143300;176300;224900;166400;163900;156400;220400;174800;258765;269891;322000;323000;267000;261200;274500;259400;279125;273000;271149;470114;281105;325000;313000;332243;337436;271000;249000;239317;277000;253841;292641;333314;315521;345954;356189;407366;413012;443783;437844;501886
-33;'124;Canada;1878;Pulp for paper;5622;Import value;1000 USD;;;;831;782;796;872;4248;3941;7640;11796;13117;11411;14821;18321;23136;18830;15631;48710;46648;37669;49723;47799;74640;76238;76100;88178;118281;124675;155671;109679;153026;134232;148610;217044;149478;124410;119024;120570;154567;138237;127538;129627;140386;176159;136281;167531;188500;160860;184696;183941;195957;170148;189880;213545;192460;210910.8;254604;256374;243867;290973;351698;380266
-33;'124;Canada;1878;Pulp for paper;5910;Export quantity;t;217300;238500;228200;262500;287800;230300;206500;4176300;4915600;4761500;4829000;5253000;5704000;6181500;4860100;5967500;5961600;6428100;6856300;7009700;6530700;5948800;6646100;6858400;6850800;7405900;8028100;8228900;8059500;7651900;8571300;8702300;9146000;10274700;10518000;10135000;10873300;10423900;11448204;11652744;11069000;11944000;11392421;11380276;10538000;10727000;10356000;9343000;8009587;8990866;9159166;9233045;9109889;9055183;9396036;9505633;9506995;9266688;9238588;8494749;8036964;7836960;7296167
-33;'124;Canada;1878;Pulp for paper;5922;Export value;1000 USD;15327;16566;15622;17302;19349;15926;14056;517164;632132;692435;704739;765970;1007779;1771741;1738737;2085723;1976042;1853728;2515117;3181755;3064282;2530501;2396596;2927944;2399256;2828350;4009573;5115191;5710152;5061007;4187716;4093900;3465648;4804686;7749827;4935810;4866806;4399713;4901041;6484753;4520049;4363954;4771888;5399980;5144161;5598716;6397614;6276422;4205989;6406022;6521645;5681089;5844224;5958602;5567282;5078946;5623004.94;6754256;5417472;4527740;5488574;6151106;4940243
-33;'124;Canada;1875;Wood pulp;5510;Production;t;10573900;11007100;11316500;12466700;13220600;14517000;14434900;15261100;16864000;16609000;16508000;17455000;18561000;19656000;14831000;17688000;17773000;19216000;19516000;19945000;19578000;17007000;19221000;20451000;20222000;21512000;22804000;23298000;23834000;23020000;23441000;22830000;22871000;24679000;25429000;24604000;25075000;23844000;25382000;26696000;25110000;25763000;26204000;26423000;25440000;23671000;22611000;20645000;17377000;18936000;18342000;17849000;18053000;17277000;17180000;17037000;16837000;16790000;16815000;14540000;14880000;14200000;13180000
-33;'124;Canada;1875;Wood pulp;5610;Import quantity;t;11600;16000;22900;19600;25000;14300;15200;41500;35100;45100;72200;86300;68900;50700;81200;84000;81600;126100;174500;141200;138000;146200;153000;194900;220200;267400;198600;171200;172700;232000;185900;259694;275251;325000;317000;258000;257200;256900;257400;273925;263000;266149;476114;286105;319000;313000;311243;316455;246000;227000;222178;268000;250496;288902;331271;312898;342871;351786;399997;408402;439504;434022;498082
-33;'124;Canada;1875;Wood pulp;5622;Import value;1000 USD;2093;2926;3843;3524;4449;2499;2370;5951;5170;7982;12814;14402;13894;15305;27549;30250;30528;42377;66101;64438;60683;68260;65918;93709;90591;89737;106383;122402;137909;164150;119243;153707;138249;150147;212234;143097;133773;124812;124312;155096;139215;133237;137713;150148;181869;148911;157016;173822;144829;168586;170824;188042;168055;188442;212614;190955;208876.73;252078;253573;240774;288341;349349;377756
-33;'124;Canada;1875;Wood pulp;5910;Export quantity;t;496000;560800;565700;626900;636900;560900;525100;4510000;5256800;5063400;5140400;5535900;5912400;6424500;4985600;6114500;6091600;6637700;7104500;7244300;6752000;6122500;6823000;7040100;7024400;7622000;8241400;8405500;8241300;7883500;8775800;8921924;9379124;10510000;10750000;10318000;11021300;10604800;11649000;11879443;11302000;12106000;11516421;11497335;10611000;10900000;10619000;9605000;8275000;9305000;9675360;9913000;9822319;9680017;9911924;9903648;9911767;9749391;9675655;8842817;8379694;8186988;7699360
-33;'124;Canada;1875;Wood pulp;5922;Export value;1000 USD;65153;73984;75437;83518;84042;75933;73553;581203;696975;753685;768806;825099;1054164;1861235;1792328;2145937;2026535;1932902;2621595;3310645;3185906;2622088;2481087;3018817;2484256;2932218;4128148;5233754;5861597;5233660;4315577;4225741;3593314;4945459;7958785;5064901;4969892;4514419;5018155;6646766;4668552;4457628;4851857;5484817;5216524;5730674;6641183;6589550;4464860;6804448;7285628;6430607;6543021;6532166;6005192;5434218;6015889.78;7225155;5803935;4787135;5819785;6513809;5301278
-33;'124;Canada;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7225000;7209000;7174000;5805000;6140000;5800000;5200000
-33;'124;Canada;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4884;7910;7435;10288;15614;40333;34741
-33;'124;Canada;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2344.24;3797;4023;5566;7811;10631;9470
-33;'124;Canada;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2055669;2049644;2162422;2135820;1980008;1916731;1791512
-33;'124;Canada;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1099669.5;1270954;1015678;938638;964487;1201287;965846
-33;'124;Canada;1654;Mechanical wood pulp (1961-2016);5510;Production;t;5480000;5502200;5490400;6042800;6377800;6918000;6650800;6709400;7284000;7226000;7052000;7326000;7563000;7938000;6017000;7049000;6856000;7545000;7414000;7510000;7631000;6832000;7793000;8800000;8542000;9069000;9603000;10069000;10504000;10537000;10630000;10212000;10589000;11000000;11550000;10979000;11355000;10481000;11222000;12340000;11385000;11621000;11968000;12139000;12010000;11363000;10588000;9653000;8106000;8859000;7719000;7665000;7755000;7054000;7050000;6980135;;;;;;;
-33;'124;Canada;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11106;17000;24000;19000;16000;18000;18500;24000;20515;10000;6000;4000;2000;3000;0;200;436;1000;1000;1656;2000;1795;5015;3070;2920;;;;;;;
-33;'124;Canada;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5226;6976;8934;8673;6894;8524;8479;10274;11129;5718;2533;2011;1034;1350;37;59;214;363;526;694;897;759;2393;1474;1214;;;;;;;
-33;'124;Canada;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;217300;238500;228200;262500;287800;230300;205600;203400;238200;265400;221500;259300;261500;268500;189500;286000;276600;291400;317400;311700;269900;275500;350500;530300;459700;510100;532500;329000;311900;291500;276600;255000;307000;348000;306000;246000;281300;239400;302000;248062;262000;246000;232000;145000;97000;101000;84000;66000;38000;41000;33247;34000;33074;30405;30823;27579;;;;;;;
-33;'124;Canada;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;15327;16566;15622;17302;19349;15926;13662;12702;14894;16995;14910;17094;20084;34380;29792;47772;48465;50628;63779;69988;64357;69720;87888;156420;131649;151310;186510;115813;120361;113766;124886;101411;105418;131664;135054;86109;94995;74747;94002;92088;85222;74231;75291;51735;34519;40609;37717;35884;15316;22258;17139;17556;16244;14509;13063;10571;;;;;;;
-33;'124;Canada;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;118200;127000;140600;175100;284000;186000;192600;222200;260000;295000;301000;337000;349000;329000;233000;269000;287000;367000;323000;333000;322000;252000;305000;331000;259000;322000;353000;335000;580000;650000;630000;511000;434000;373000;356000;381000;404000;482000;551000;562000;505000;520000;559000;592000;538000;477000;493000;488000;459000;447000;463000;386000;379000;384000;400000;398865;;;;;;;
-33;'124;Canada;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;800;600;1000;300;500;900;9500;3100;1200;8000;14000;5300;5300;2000;2400;6700;2300;2500;5200;700;400;6800;3700;1800;1600;3921;2130;6000;9000;4000;200;200;400;77;0;149;89;105;0;0;43;1000;1000;1000;998;1000;1077;568;794;333;;;;;;;
-33;'124;Canada;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;86;86;125;46;30;126;1101;841;455;2800;5772;1874;1874;715;863;1780;625;730;1701;230;155;4575;3179;1703;1465;2286;1008;2124;5320;1760;88;79;162;24;19;60;82;44;55;26;25;971;297;465;748;1030;794;425;467;385;;;;;;;
-33;'124;Canada;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;900;1000;;1600;;;;;8700;500;;;;;;;;;;;0;307000;581100;638500;628400;843081;966000;1185000;1284000;1266000;1354000;1392100;1554000;1558166;1301000;1762000;1928000;1995000;1684000;1829000;1875000;1760000;1743000;2138000;1849252;2162000;2068411;2027834;2012855;2017627;;;;;;;
-33;'124;Canada;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;394;438;;700;;;;;3808;219;;;;;;;;;;;;134362;267929;270308;226813;297510;302336;460823;800922;463553;482202;473235;584210;810049;500144;657148;792842;868097;765008;932246;1053851;1146177;886419;1387054;1094680;1166319;1117056;1081749;910991;858104;;;;;;;
-33;'124;Canada;1656;Chemical wood pulp;5510;Production;t;4637200;4942400;5294500;5840600;6128100;7023000;7196300;7903000;8864000;8674000;8764000;9422000;10356000;11056000;8355000;10148000;10362000;10953000;11411000;11789000;11351000;9703000;10906000;11099000;11199000;11899000;12606000;12628000;12477000;11612000;11962000;11866000;11848000;13279000;13496000;13003000;13075000;12640000;13368000;13553000;12979000;13381000;13436000;13451000;12762000;11601000;11300000;10224000;8532000;9230000;9560000;9098000;9119000;9114000;9100000;9128000;9072000;8961000;9021000;8115000;8120000;7780000;7360000
-33;'124;Canada;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;24500;18200;38300;62100;74500;43900;38900;44600;48000;31300;34000;106800;85700;75200;87600;96600;136100;167200;219100;160200;151500;147200;215300;172900;235722;246812;288000;288000;232000;216000;225600;216000;233268;222000;241000;454025;265000;294000;292000;309000;315000;244000;225000;219501;265000;247531;283265;327395;309624;337488;343747;392286;398022;423669;393511;463145
-33;'124;Canada;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;3263;2632;6478;10571;11810;9023;11554;15801;18186;10954;11713;44388;42889;33847;44737;42913;67776;68601;69062;80447;108496;116556;149849;108018;139042;123099;134183;197804;131656;105613;105261;99470;126813;115389;114266;120865;132186;159846;125186;153722;172613;144160;167551;169354;186068;166374;185558;210661;189334;206001.07;248143;249262;235113;280286;338531;368146
-33;'124;Canada;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;3971900;4677400;4494500;4607500;4993700;5442500;5913000;4661900;5681000;5685000;6136700;6538900;6698000;6260800;5673300;6295600;6328100;6391100;6895800;7495600;7550500;7124100;6712000;7661400;7602219;7871000;8738000;8924000;8605000;9186000;8786900;9592000;9837242;9505000;9931000;9230421;9238335;8735000;8787000;8391000;7507000;6226000;6810000;7276415;7037000;7008331;6996808;7339432;7431940;7417038;7177687;7043959;6326721;6024956;5900229;5488655
-33;'124;Canada;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;504024;617238;674740;689829;748876;987695;1737361;1705137;2037732;1927577;1803100;2451338;3111767;2999925;2460781;2308708;2771524;2267607;2677040;3823063;4834859;5291705;4670060;3833470;3694179;3057094;4210471;6812102;4379254;4273644;3850497;4222783;5582221;3934286;3630839;3902927;4479161;4341229;4623961;5304514;5093179;3303948;4995340;5409509;4497150;4710845;4862197;4640009;4204055;4518141.06;5475676;4391342;3581202;4515696;4944280;3970452
-33;'124;Canada;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;1142100;1337000;1345700;1328500;1293000;1348000;1467000;1648000;1933000;1951000;1314000;1563000;1635000;1649000;1690000;1690000;1790000;1142000;1486000;1512000;1512000;1410000;1494000;1497000;1350000;1256000;1417000;1328000;1372000;1492000;1438000;1440000;1407000;1323000;1399000;1324000;1336000;1369000;1313000;1379000;1236000;1060000;994000;746000;771000;485000;419000;396000;434000;409000;400000;439000;630000;672000;672000;537000;741000;901000;730000
-33;'124;Canada;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6630;4143;6000;6000;4000;3000;2000;2000;3008;2000;1000;25;11000;17000;13000;23000;8000;2000;1000;833;2000;349;20529;5288;4027;527;1770;65048;12687;22501;22359;5511
-33;'124;Canada;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615;1860;2197;3425;2200;1300;847;768;1857;1099;472;14;5646;10222;7495;15201;5061;1129;746;585;1316;231;12612;2960;2147;266.75;1040;18795;5133;11002;13431;5164
-33;'124;Canada;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;327800;387000;327600;342500;377000;448100;371200;330800;262000;295000;243100;240700;210300;286800;230700;505100;504100;496700;483200;464300;107800;95500;136200;143200;120512;150000;181000;102000;98000;130000;113300;91000;91214;239000;337000;232000;170000;133000;203000;242000;171000;174000;176000;155471;157000;235317;209421;220725;247756;247161;270012;263643;254112;369263;517609;369866
-33;'124;Canada;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;34209;41366;39985;43607;47418;74327;106529;109849;85813;82112;63360;85503;93318;131263;98553;170786;207702;161273;176770;225490;60875;53805;68043;62327;51254;54931;86722;61441;39534;57286;45333;29044;32500;55010;77791;74866;69531;60624;95192;147839;102076;88847;123421;117645;95926;144524;142553;132626;131506;142888.11;201638;147046;131948;255852;373601;233209
-33;'124;Canada;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;3201500;2333100;2870000;3258800;4152700;5014000;4744000;5004000;5518000;6146000;6506000;5082000;6322000;6520000;7037000;7481000;7859000;7312000;6836000;7762000;7899000;7999000;8812000;9336000;9352000;9500000;8841000;9413000;9685000;9661000;10965000;11154000;10797000;10986000;10858000;11423000;11694000;11232000;11598000;11708000;11695000;11168000;10262000;10036000;9194000;7586000;8467000;8877000;8430000;8420000;8483000;8500000;8475000;8215000;8081000;8141000;7371000;7172000;6672000;6423000
-33;'124;Canada;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;15900;13300;33700;56000;69000;39100;32800;40700;42000;24000;31300;99600;84400;74200;86300;94900;132600;150800;200600;145100;111900;122200;151400;118200;169387;175293;257000;247000;191000;184000;196500;188000;209440;202000;209000;417000;214000;252000;260000;266000;297000;235000;216000;204832;236000;231541;253612;312181;294363;319246;320787;314506;379974;393665;362177;451664
-33;'124;Canada;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2098;1927;5722;9623;10979;8056;9707;14279;15611;7776;10692;41412;42208;33313;44165;42110;66265;62396;62203;73811;79722;96177;100820;68540;92823;79831;117411;169163;104519;90950;91843;84059;110419;102061;95696;99013;107295;136382;104965;125960;158537;136722;158509;158784;167193;156716;166433;202605;181460;198573.12;238539;225320;224817;265007;319983;359579
-33;'124;Canada;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;3067400;3698400;3564200;3764600;4148100;4502700;4871400;3541600;4414000;4373000;5302300;5283800;5984500;5065400;5046400;5457800;5449200;5553800;5976600;6596300;7018200;6640900;6133500;7097800;7078209;7341100;8204000;8443000;8145000;8732000;8448400;9269000;9468921;9034000;9350000;8730000;8826000;8383000;8317000;7907000;7107000;5886000;6391000;6901155;6660000;6558249;6561594;6855148;6847947;6899846;6636228;6509823;5979247;5503772;5174411;4935363
-33;'124;Canada;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;396635;496204;544412;571366;634510;825123;1419019;1315345;1613267;1515589;1562020;1996308;2793417;2445968;2185485;2001133;2402089;1970966;2324570;3374466;4505500;4965158;4304962;3534062;3438105;2829811;3952810;6481720;4162882;4078164;3703290;4096843;5398077;3769041;3454737;3709389;4285350;4138069;4387459;5005612;4827424;3120644;4689844;5153734;4264542;4442532;4598000;4386203;3903701;4263050.84;5164611;4129346;3327814;4086771;4333481;3528278
-33;'124;Canada;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227000;208000;208000;207000;207000;207000;207000
-33;'124;Canada;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17715;21190;12732;5361;7503;8975;5970
-33;'124;Canada;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7161.2;8564;5147;5163;4277;5117;3403
-33;'124;Canada;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270031;271447;270493;93362;151921;208209;183426
-33;'124;Canada;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112202.11;109427;114950;121440;173073;237198;208965
-33;'124;Canada;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;2639100;1836400;2001000;1853800;1740500;1874000;1898000;1706000;1730000;1770000;1865000;1443000;1654000;1633000;1805000;1833000;1833000;1819000;1444000;1353000;1377000;1377000;1248000;1322000;1324000;1212000;1128000;720000;519000;511000;508000;534000;435000;376000;268000;362000;344000;214000;218000;202000;166000;152000;68000;66000;65000;34000;50000;29000;0;0;0;0;0;;;;;;;
-33;'124;Canada;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;100;;;;;;;;;;;;;;;105;604;7000;11000;11000;11000;15900;17000;10668;1000;12000;18000;20000;6000;3000;6000;2000;1000;1000;1210;4000;5755;1315;1240;1359;;;;;;;
-33;'124;Canada;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;25;;;;;;;;;;;;;;;59;299;3735;6923;6087;6212;6866;9350;7120;449;6347;9536;7228;649;1092;1116;1376;1157;1299;1749;2161;2446;2122;1631;1833;;;;;;;
-33;'124;Canada;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;119000;133500;162600;115400;99900;106500;138500;82500;91000;81000;82800;104000;108200;85800;101400;50200;61500;49100;47800;39600;46500;40500;41600;18300;25428;5900;4000;10000;16000;8000;1100;2000;19208;0;1000;421;335;16000;19000;28000;2000;0;0;0;3000;834;4449;23;0;;;;;;;
-33;'124;Canada;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12554;15054;21506;15643;12599;18162;42513;26829;24259;21800;20879;33025;43516;36442;40296;18783;23870;20582;17429;18255;23719;21573;20452;7631;10600;2061;1464;4445;5867;2456;268;1172;6996;78;550;179;132;5497;7065;14545;935;12;11;0;1736;491;2304;9;0;;;;;;;
-33;'124;Canada;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;816500;815000;738000;681300;683000;684000;587000;526000;507000;734000;516000;609000;574000;462000;407000;407000;430000;281000;305000;311000;311000;429000;454000;455000;415000;387000;412000;334000;304000;314000;370000;331000;306000;191000;184000;191000;197000;196000;213000;211000;206000;211000;204000;219000;141000;228000;235000;272000;265000;222000;200000;214000;;;;;;;
-33;'124;Canada;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;8600;4900;4600;6100;5500;4800;6100;3900;6000;7200;2700;7200;1300;1000;1300;1700;3500;16400;18500;15100;39600;25000;63900;54700;59600;66772;18000;24000;26000;18000;11200;9000;10152;17000;19000;19000;20000;19000;16000;14000;8000;6000;7000;12626;23000;9886;7809;8686;9875;;;;;;;
-33;'124;Canada;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1165;705;756;948;831;967;1847;1522;2575;3153;1021;2976;681;534;572;803;1511;6205;6859;6636;28774;20379;49029;39478;42545;41109;10840;18293;18850;7151;5705;5293;7417;11780;11751;12302;12017;12593;11634;11445;7639;5152;6997;8236;15398;6981;4391;3465;3894;;;;;;;
-33;'124;Canada;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;457700;458500;440100;385000;368700;385200;531900;707000;914000;936000;508500;910400;395000;822800;294800;282500;313300;291500;388200;395400;378000;347200;400700;402100;378070;374000;349000;369000;346000;316000;224100;230000;257899;232000;243000;268000;242000;203000;248000;214000;227000;166000;243000;219789;217000;213931;221344;263536;336237;;;;;;;
-33;'124;Canada;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;60626;64614;68837;59213;54349;70083;169300;253114;314393;308076;156841;336502;181516;386252;136447;118006;137863;114786;158271;204852;244765;251169;276603;229450;194220;170291;169475;264496;170971;135738;101606;95724;144648;110157;97761;118493;124148;137039;134245;136518;162744;94445;182064;138130;134946;123298;119340;121171;168848;;;;;;;
-33;'124;Canada;1667;Dissolving wood pulp;5510;Production;t;338500;435500;391000;408200;430700;390000;395200;426500;456000;414000;391000;370000;293000;333000;226000;222000;268000;351000;368000;313000;274000;220000;217000;221000;222000;222000;242000;266000;273000;221000;219000;241000;0;27000;27000;241000;241000;241000;241000;241000;241000;241000;241000;241000;130000;230000;230000;280000;280000;400000;600000;700000;800000;725000;630000;530000;540000;620000;620000;620000;620000;620000;620000
-33;'124;Canada;1667;Dissolving wood pulp;5610;Import quantity;t;11600;16000;22900;19600;25000;14300;14400;16400;15900;6500;9600;10900;15500;8700;35400;28000;36300;86800;62400;53500;60400;51900;54100;56300;47800;47600;38000;12900;21800;14900;11400;8945;9309;7000;1000;6000;23000;12600;17000;20065;31000;19000;18000;19000;22000;21000;2000;19;0;0;23;0;93;54;12;21;499;129;276;92;221;178;196
-33;'124;Canada;1667;Dissolving wood pulp;5622;Import value;1000 USD;2093;2926;3843;3524;4449;2499;2284;2602;2413;1458;2213;2466;3770;2910;11293;9264;13802;28790;19839;20834;25973;21743;22380;25203;20289;20445;25781;9331;18174;12598;9760;7153;7166;4906;437;2787;19548;10993;14406;17130;18089;16378;14755;16884;20618;23662;3210;24;9;44;28;47;128;66;12;22;531.42;138;288;95;244;187;140
-33;'124;Canada;1667;Dissolving wood pulp;5910;Export quantity;t;278700;322300;337500;364400;349100;330600;318600;333700;341200;301900;311400;282900;208400;243000;125500;147000;130000;209600;248200;234600;221300;173700;176900;181700;173600;216100;213300;219000;224200;241500;209400;221624;235124;239000;236000;201000;200000;186400;201000;235973;234000;167000;126000;119000;95000;183000;269000;272000;268000;316000;516446;680000;712503;624970;528814;426502;439060;522060;469274;380276;374730;370028;419193
-33;'124;Canada;1667;Dissolving wood pulp;5922;Export value;1000 USD;49826;57418;59815;66216;64693;60007;59497;64039;64843;61250;64067;59129;46385;89494;53591;60214;50493;79174;106478;128890;121624;91587;84491;90873;85000;103868;118575;148720;181602;179526;130408;132641;128466;142501;210707;135985;119051;115940;117160;162408;148900;95410;80797;85824;75768;133858;245101;314310;259177;399796;764300;749582;698876;573711;441129;361488;398079.21;478525;396915;267295;339602;368242;364980
-33;'124;Canada;1668;Pulp from fibres other than wood;5510;Production;t;15000;15000;20000;25000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-33;'124;Canada;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3100;2900;2900;2200;3200;4100;3600;3800;3800;4100;4900;3500;6000;4700;3300;3600;3800;3300;3400;3900;4700;3900;5100;5800;5600;5500;3300;300;8016;3949;4000;7000;15000;27000;30200;19000;25265;41000;24000;12000;14000;28000;21000;23000;21000;25000;22000;17162;9000;3438;3793;2055;2644;3582;4532;7645;4702;4500;4000;4000
-33;'124;Canada;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;831;782;796;786;899;1184;1116;1195;1181;1287;2426;2065;2150;2104;2044;2448;3044;2959;3206;4261;6134;5936;6808;7576;5210;4940;4119;196;6472;3149;3369;5247;9168;10185;5205;10664;16601;17111;10679;6669;7122;14908;11032;13725;14702;16040;16154;13145;7962;2221;1504;943;1527;2565.49;2664;3089;3188;2876;2536;2650
-33;'124;Canada;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;42400;42400;9900;4900;2000;2000;3700;4000;18000;52000;5500;204;9274;1000;5000;2000;1941;22000;10000;6000;10000;2587;1866;252;45;73;136;12926;28487;34288;39357;32207;32208;32000;20000;16000
-33;'124;Canada;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;30157;30157;6873;2547;800;800;1728;1749;6894;15965;1234;46;395;397;1736;828;987;3405;1900;1532;1182;306;1370;317;64;79;147;3219;6216;5194.38;7626;10452;7900;8391;5539;3945
-33;'124;Canada;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500;15000;14040;14000;14000;15000;24000;27000;17000;5000;4000;2000;4000;8329;22000;34434;28996;27515;19115;18539;15736;55932;131405;247492;161052;156979
-33;'124;Canada;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4953;6355;7112;5932;5887;6618;8449;11481;7949;2038;2207;1638;2910;5344;14569;23202;18959;16677;10557;10190.33;6994;26787;15679;35745;49831;14022
-33;'124;Canada;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44200;39858;38704;19000;4000;4000;4000;2000;2000;7000;13000;3000;11000;22259;16000;10279;7024;3377;6092;3040;4795;14710;31004;43955;36623;5784
-33;'124;Canada;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13831;12515;10065;6778;1087;1375;1773;1003;1137;1353;1536;1320;2208;4375;3360;1768;1562;810;1765;1137.53;2700;9564;13663;22471;18103;2020
-33;'124;Canada;1669;Recovered paper;5510;Production;t;;;;402000;402000;332000;369000;366000;409000;630000;690000;732000;760000;720000;602000;710000;769000;756000;832000;854000;870000;832000;902000;997000;1033000;1077000;1096000;1234000;1654000;1310000;1478000;1478000;2116000;2511000;2694000;2694000;2694000;2624000;2624000;2624000;2861000;2861000;2700000;2700000;2700000;2851000;2851000;3200000;3752000;3444000;3284000;2651000;2700000;2577000;2600000;2700000;2700000;2700000;2876000;2754000;2754000;2754000;2754000
-33;'124;Canada;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;73000;127000;160000;141000;192700;138900;259200;329500;618200;628200;509600;488700;416200;416200;605200;519700;634400;729100;549400;459800;487500;513300;708737;1100655;1610000;2126000;1245000;1700000;2234200;2204000;2777380;2172000;2329000;2350000;2379000;2212000;2045000;1946000;1764000;1315000;1058000;802487;700000;721912;629286;737278;763520;799699;1397723;1092538;845283;938776;730326;768454
-33;'124;Canada;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3669;6883;8002;11994;24298;12718;27284;31128;49057;67705;64491;58311;48285;42285;81895;62139;75890;102002;112532;108136;111427;96305;115539;135486;214021;398019;149114;183388;203296;223484;309487;187664;230379;237842;280400;246768;219761;289268;316801;145151;182834;178784;114851;103385;109921;98014;108060;147981.14;158131;122991;126437;168913;157692;124309
-33;'124;Canada;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;90000;128000;127000;104000;108500;78600;155600;151100;113300;105700;112900;116600;151100;98100;100000;93700;232800;260600;169900;314800;260200;258500;245482;231566;313500;545000;568000;690000;578100;503000;631780;395000;553000;689000;1026000;1163000;1017000;1253000;1294000;1699000;1865000;2050020;2341000;2126905;2085114;2344546;2576792;2522417;1995590;1685552;1497941;1726640;1738283;1543419
-33;'124;Canada;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;5488;8189;8357;8162;14815;7192;18779;19433;14689;17042;24002;22090;29349;11096;14454;11482;68936;60292;41240;85422;46991;47308;43270;28478;44394;104807;69092;81586;66698;69816;102836;55418;71187;83877;120877;133439;129262;184868;200740;180019;261980;326854;319198;276683;262187;277592;300566;347764.86;275441;196187;171808;263082;273206;229466
-33;'124;Canada;1876;Paper and paperboard;5510;Production;t;7975400;8055100;8218200;8960800;9758000;10563000;10316400;10397500;11354000;11253000;11161000;12038000;12578000;13218000;10067000;11791000;12151000;13286000;13486000;13390000;13835000;12674000;13619000;14488000;14714000;15525000;16310000;16905000;16821000;16732000;16825000;16851000;17823000;18614000;18979000;18564000;19119000;18875000;20280000;20920896;19834000;20073000;19964000;20462000;19498000;18189000;17367000;15789000;12823000;12755000;12057000;10756000;11174000;10775000;10300000;9911000;9958000;10142000;9473000;8665400;9195400;8994400;8138400
-33;'124;Canada;1876;Paper and paperboard;5610;Import quantity;t;146000;133300;123500;136300;143700;141300;151300;171200;162200;167300;204700;248000;271600;359700;530500;553700;349800;318600;296400;259800;378200;330000;424500;538100;539700;628600;686200;933100;925600;961600;968400;1158804;1184742;1301000;1449000;1864000;2529000;2170100;2484858;3810106;3636000;2825037;2866000;3709000;3745000;2895000;2324000;2914000;2648510;2647000;2566930;2603000;2636266;2640581;2670282;2860800;2680421;2622688;2433866;2316369;2449166;2569792;2322446
-33;'124;Canada;1876;Paper and paperboard;5622;Import value;1000 USD;42107;42798;41982;47392;50920;54159;56848;61760;46584;47762;56701;71473;90981;133331;247489;250638;193967;200313;182841;223632;321445;273275;337700;438171;424435;470752;549521;904919;973904;1002368;885711;1043401;939631;1063757;1347915;1581359;2404914;1832261;2071723;2261336;2122841;2098140;2268227;2456113;2593999;2714119;2479021;2984343;2520801;2705879;2710613;2661758;2695658;2705321;2633934;2709629;2649381.66;2705467;2579818;2357126;2733388;3327932;2923270
-33;'124;Canada;1876;Paper and paperboard;5910;Export quantity;t;5880700;5815400;5917100;6510400;6871000;7563600;7294500;7315000;8087500;8073400;7873100;8329300;8715000;9094300;7157600;8066400;8590300;9425900;9495200;9555400;9557800;8642400;9340800;9902500;10156700;10762800;11337900;11513500;11283500;11874500;11944800;12392059;12858000;13749000;13856000;13555000;14833900;14173700;14395000;15612761;14345000;15244746;15262000;16122000;15484000;14200000;12178664;12289000;9526274;9464000;9175197;7865000;8233207;8412257;7617603;7271651;7210629;7529986;6698214;5961910;6268491;6104493;5385842
-33;'124;Canada;1876;Paper and paperboard;5922;Export value;1000 USD;763760;742973;747555;830947;865864;968602;969307;1002800;1137678;1192089;1209364;1343059;1514079;2078789;1980268;2296543;2633488;3057950;3388657;3882927;4272390;3975158;3998246;4576807;4791714;5028571;5813839;6902973;6840992;7197401;7294896;7132845;7074257;7288168;10094351;9467655;9371763;8885969;8820820;9777071;9381179;8830078;8785286;9853575;10360778;10110292;8869858;9842996;7194390;7047802;7321509;6433918;6494057;6520612;5619354;5030932;5041759.69;5802079;5212049;4284994;4887937;5883910;5214610
-33;'124;Canada;2042;Graphic papers;5510;Production;t;6475600;6443900;6461000;7073000;7487900;8329000;8018200;8043400;8797000;8817000;8577000;8960000;9243000;9767000;7689000;8904000;9263000;10128000;10234000;10136000;10377000;9597000;10212000;10957000;11132000;11688000;12320000;12883000;12868000;12668000;12541000;12498000;13359000;13765000;14108000;13704000;14171000;13736000;14884000;15533896;14510000;14786000;14943000;15200000;14476000;13236000;12587000;11259000;8807000;8703000;8153000;7185000;7438000;7059000;6550000;6337000;6031000;6061000;5274000;4212000;4413000;4497000;3766000
-33;'124;Canada;2042;Graphic papers;5610;Import quantity;t;12300;11200;12200;11300;12600;15400;17200;22300;35000;35000;42700;58200;64000;65400;146700;195700;115800;118000;103100;126800;207900;147100;185200;255200;242300;290900;318700;415800;418200;443700;256700;536916;520742;570000;609000;770000;746600;851300;935000;984690;976000;975037;1186000;1640000;1749000;1371000;1111000;1294000;1025025;1069000;1018552;946000;934498;863616;821165;715572;696683;670911;594190;442890;478052;585540;310120
-33;'124;Canada;2042;Graphic papers;5622;Import value;1000 USD;6612;6213;6941;5298;5797;8159;9175;10737;14868;15366;18202;25363;33294;38800;73900;100878;77301;84727;87381;111472;195383;145269;181547;251606;233848;263058;310608;471455;488307;501069;268220;502854;479908;533172;687660;663789;774123;816261;874793;965883;896820;902868;1148110;1213165;1303293;1467772;1250005;1524686;1153699;1202992;1191299;1108680;1055298;953980;872276;736817;750969.86;759368;692440;506840;569521;833280;527621
-33;'124;Canada;2042;Graphic papers;5910;Export quantity;t;5734000;5644400;5710200;6283200;6641100;7250800;6935900;6931300;7690800;7639400;7378300;7694000;7934200;8281800;6624400;7329400;7682300;8392600;8411500;8359500;8550900;7733100;8188200;8775300;9005900;9399600;9936800;10365800;10195400;10587100;10131000;10634629;11146000;11808000;11906000;11322000;11944000;11488400;11498000;12594720;11866000;12529746;12797000;13223000;12885000;11656000;10857664;10126000;7625100;7533000;7225069;6179000;6472970;6526478;5755387;5449050;5110813;5240067;4568764;3833434;3910246;3914426;3365910
-33;'124;Canada;2042;Graphic papers;5922;Export value;1000 USD;742876;718488;717926;797058;832056;923770;916264;945375;1086107;1128858;1140134;1242820;1369287;1835888;1802274;2085306;2390891;2767978;3041443;3480212;3912042;3677049;3637873;4183417;4396365;4557968;5266880;6289934;6226066;6490786;6240275;6168115;6203007;6275777;8688130;8080371;7479736;7444746;7265514;8070459;7880510;7252335;7312328;8002229;8631924;8283713;7598394;7958259;5615282;5293018;5433986;4747440;4741217;4656050;3828507;3357973;3115250.02;3614705;3209879;2444570;2661070;3427428;2960326
-33;'124;Canada;1671;Newsprint;5510;Production;t;6094900;6044700;6039200;6623800;7003300;7739000;7432400;7432300;8108000;7996000;7733000;8079000;8351000;8711000;7010000;8062000;8154000;8812000;8709000;8625000;8946000;8117000;8486000;9014000;8991000;9289000;9660000;9970000;9678000;9069000;8977000;8931000;9165000;9321000;9226000;9015000;9205000;8581000;9204000;9221000;8373000;8455000;8487000;8180000;7770000;7122000;6640000;5993000;4378000;4639000;4382000;3874000;3972000;4018000;3500000;3342000;3056000;3001000;2570000;1960000;1979000;1899000;1763000
-33;'124;Canada;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32082;14576;10000;14000;7000;19000;39700;36000;41162;47000;54000;65000;62000;75000;51000;57000;74000;63333;73000;63033;67000;75878;66317;59850;49708;34751;26556;26813;27358;15526;8010;2373
-33;'124;Canada;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16795;7334;5492;8163;4987;11630;24674;20818;22948;23762;24509;33581;34866;42445;34618;37464;55920;38156;43228;43096;49113;58498;46150;38473;24822;24230;21430;19051;14474;11293;4208;3388
-33;'124;Canada;1671;Newsprint;5910;Export quantity;t;5673400;5577700;5635500;6183100;6522600;7095300;6771200;6784900;7470600;7339300;7074100;7349800;7616900;7892000;6348800;6997000;7266000;7868300;7778000;7706800;7986800;7078000;7475100;7949000;8274700;8591000;8771600;8553900;8185000;8722300;8561300;8695745;9029000;9424000;9162000;8608000;8792000;7710200;8264000;8496836;7783000;8139000;8289000;7705000;7324000;6704000;6019000;5762000;3942834;4228000;4168204;3494000;3657688;3846829;3310194;3106377;2854399;2845009;2413447;1987080;1994671;1906894;1829958
-33;'124;Canada;1671;Newsprint;5922;Export value;1000 USD;730099;704864;702990;777056;808888;893380;883617;915594;1041366;1064867;1073764;1168505;1285928;1721768;1714118;1969408;2238389;2560072;2751313;3143380;3608038;3308600;3249932;3695199;3958193;4078690;4547184;5037221;4785638;5043800;5113641;4773927;4711960;4582455;6059210;5638797;4886971;4518730;4335169;4729727;4526182;4033374;4027126;4081701;4342739;4321776;3726882;4021508;2466151;2575627;2811257;2321910;2313924;2350605;1824881;1661558;1525833.89;1750984;1401661;961667;1080157;1404623;1260153
-33;'124;Canada;1674;Printing and writing papers;5510;Production;t;380700;399200;421800;449200;484600;590000;585800;611100;689000;821000;844000;881000;892000;1056000;679000;842000;1109000;1316000;1525000;1511000;1431000;1480000;1726000;1943000;2141000;2399000;2660000;2913000;3190000;3599000;3564000;3567000;4194000;4444000;4882000;4689000;4966000;5155000;5680000;6312896;6137000;6331000;6456000;7020000;6706000;6114000;5947000;5266000;4429000;4064000;3771000;3311000;3466000;3041000;3050000;2995000;2975000;3060000;2704000;2252000;2434000;2598000;2003000
-33;'124;Canada;1674;Printing and writing papers;5610;Import quantity;t;12300;11200;12200;11300;12600;15400;17200;22300;35000;35000;42700;58200;64000;65400;146700;195700;115800;118000;103100;126800;207900;147100;185200;255200;242300;290900;318700;415800;418200;443700;256700;504834;506166;560000;595000;763000;727600;811600;899000;943528;929000;921037;1121000;1578000;1674000;1320000;1054000;1220000;961692;996000;955519;879000;858620;797299;761315;665864;661932;644355;567377;415532;462526;577530;307747
-33;'124;Canada;1674;Printing and writing papers;5622;Import value;1000 USD;6612;6213;6941;5298;5797;8159;9175;10737;14868;15366;18202;25363;33294;38800;73900;100878;77301;84727;87381;111472;195383;145269;181547;251606;233848;263058;310608;471455;488307;501069;268220;486059;472574;527680;679497;658802;762493;791587;853975;942935;873058;878359;1114529;1178299;1260848;1433154;1212541;1468766;1115543;1159764;1148203;1059567;996800;907830;833803;711995;726739.86;737938;673389;492366;558228;829072;524233
-33;'124;Canada;1674;Printing and writing papers;5910;Export quantity;t;60600;66700;74700;100100;118500;155500;164700;146400;220200;300100;304200;344200;317300;389800;275600;332400;416300;524300;633500;652700;564100;655100;713100;826300;731200;808600;1165200;1811900;2010400;1864800;1569700;1938884;2117000;2384000;2744000;2714000;3152000;3778200;3234000;4097884;4083000;4390746;4508000;5518000;5561000;4952000;4838664;4364000;3682266;3305000;3056865;2685000;2815282;2679649;2445193;2342673;2256414;2395058;2155317;1846354;1915575;2007532;1535952
-33;'124;Canada;1674;Printing and writing papers;5922;Export value;1000 USD;12777;13624;14936;20002;23168;30390;32647;29781;44741;63991;66370;74315;83359;114120;88156;115898;152502;207906;290130;336832;304004;368449;387941;488218;438172;479278;719696;1252713;1440428;1446986;1126634;1394188;1491047;1693322;2628920;2441574;2592765;2926016;2930345;3340732;3354328;3218961;3285202;3920528;4289185;3961937;3871512;3936751;3149131;2717391;2622729;2425530;2427293;2305445;2003626;1696415;1589416.13;1863721;1808218;1482903;1580913;2022805;1700173
-33;'124;Canada;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2582000;3026000;3455375;3537000;3648000;3820000;4129000;4231000;3961000;4134000;3875000;3276000;2929000;2670000;2186000;2385000;1939000;1950000;1879000;1851000;1937000;1581000;1314000;1440000;1538000;1148000
-33;'124;Canada;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66900;70000;80947;84000;222037;222000;231000;136000;100000;107000;93000;58540;54000;44210;33000;39302;34216;37714;29238;19795;21818;20211;16136;46430;75763;22330
-33;'124;Canada;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59294;57713;71746;70312;185845;230417;198523;106209;104844;98199;89386;57610;59216;53623;40812;46362;40091;42874;33599;25948.11;29136;28723;25874;31976;52178;34746
-33;'124;Canada;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074400;2074000;2303277;2432000;2679000;2792000;3391000;3546000;3249000;3469000;3353000;2907163;2527000;2228778;1893000;2029775;1926462;1631539;1460876;1440147;1513829;1258485;1052547;1111864;1176231;851777
-33;'124;Canada;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1527750;1524145;1666666;1835766;1809289;1753994;2261429;2610206;2458296;2642842;2887116;2386065;1959857;1854469;1582999;1654931;1539746;1197025;879837;862652.44;1058643;960114;743641;802616;1075562;838299
-33;'124;Canada;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1345000;1411000;1484272;1466000;1476000;1421000;1472000;1352000;1043000;862000;816000;678000;694000;675000;670000;640000;643000;650000;658000;669000;667000;667000;624000;652000;698000;569000
-33;'124;Canada;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212000;238000;241063;246000;220000;231000;360000;461000;469000;409000;369000;292231;306000;303210;281000;285964;255414;237312;221255;227673;223422;211843;153107;163818;198410;116989
-33;'124;Canada;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206506;234334;248125;230113;208150;233934;290008;406121;514308;499272;505921;396929;419297;407553;386580;372986;329171;300231;269979;281474.7;282272;274301;201864;224050;310320;213090
-33;'124;Canada;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724500;666000;657071;673000;809000;960000;1011000;1022000;707000;523000;501000;337364;372000;398306;381000;382773;354108;390634;455163;419401;433489;423641;470174;459096;481949;405172
-33;'124;Canada;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490554;525103;594386;643680;679351;755584;785088;815818;615537;498016;528208;370292;405642;401228;457702;400183;391317;415326;452651;420078.25;440042;473991;495223;507333;587427;552720
-33;'124;Canada;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1228000;1243000;1373249;1134000;1207000;1215000;1419000;1123000;1110000;951000;575000;475000;441000;426000;455000;441000;459000;450000;458000;455000;456000;456000;314000;342000;362000;286000
-33;'124;Canada;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532700;591000;621518;599000;479000;668000;987000;1077000;751000;538000;758000;610921;636000;608099;565000;533354;507669;486289;415371;414464;399115;335323;246289;252278;303357;168428
-33;'124;Canada;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525787;561928;623064;572633;484364;650178;689768;748518;814002;615070;873459;661004;681251;687027;632175;577452;538568;490698;408417;419317.05;426530;370365;264628;302202;466574;276397
-33;'124;Canada;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;979300;494000;1137536;978000;902746;756000;1116000;993000;996000;846664;510000;437739;406000;429781;411000;402734;399079;423020;426634;396866;447740;473191;323633;344615;349352;279003
-33;'124;Canada;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;907712;881097;1079680;874882;730321;775624;874011;863161;888104;730654;521427;392774;351892;367032;384829;372179;374382;391275;363927;306685.43;365036;374113;244039;270964;359816;309154
-33;'124;Canada;1675;Other paper and paperboard;5510;Production;t;1499800;1611200;1757200;1887800;2270100;2234000;2298200;2354100;2557000;2436000;2584000;3078000;3335000;3451000;2378000;2887000;2888000;3158000;3252000;3254000;3458000;3077000;3407000;3531000;3582000;3837000;3990000;4022000;3953000;4064000;4284000;4353000;4464000;4849000;4871000;4860000;4948000;5139000;5396000;5387000;5324000;5287000;5021000;5262000;5022000;4953000;4780000;4530000;4016000;4052000;3904000;3571000;3736000;3716000;3750000;3574000;3927000;4081000;4199000;4453400;4782400;4497400;4372400
-33;'124;Canada;1675;Other paper and paperboard;5610;Import quantity;t;133700;122100;111300;125000;131100;125900;134100;148900;127200;132300;162000;189800;207600;294300;383800;358000;234000;200600;193300;133000;170300;182900;239300;282900;297400;337700;367500;517300;507400;517900;711700;621888;664000;731000;840000;1094000;1782400;1318800;1549858;2825416;2660000;1850000;1680000;2069000;1996000;1524000;1213000;1620000;1623485;1578000;1548378;1657000;1701768;1776965;1849117;2145228;1983738;1951777;1839676;1873479;1971114;1984252;2012326
-33;'124;Canada;1675;Other paper and paperboard;5622;Import value;1000 USD;35495;36585;35041;42094;45123;46000;47673;51023;31716;32396;38499;46110;57687;94531;173589;149760;116666;115586;95460;112160;126062;128006;156153;186565;190587;207694;238913;433464;485597;501299;617491;540547;459723;530585;660255;917570;1630791;1016000;1196930;1295453;1226021;1195272;1120117;1242948;1290706;1246347;1229016;1459657;1367102;1502887;1519314;1553078;1640360;1751341;1761658;1972812;1898411.8;1946099;1887378;1850286;2163867;2494652;2395649
-33;'124;Canada;1675;Other paper and paperboard;5910;Export quantity;t;146700;171000;206900;227200;229900;312800;358600;383700;396700;434000;494800;635300;780800;812500;533200;737000;908000;1033300;1083700;1195900;1006900;909300;1152600;1127200;1150800;1363200;1401100;1147700;1088100;1287400;1813800;1757430;1712000;1941000;1950000;2233000;2889900;2685300;2897000;3018041;2479000;2715000;2465000;2899000;2599000;2544000;1321000;2163000;1901174;1931000;1950128;1686000;1760237;1885779;1862216;1822601;2099816;2289919;2129450;2128476;2358245;2190067;2019932
-33;'124;Canada;1675;Other paper and paperboard;5922;Export value;1000 USD;20884;24485;29629;33889;33808;44832;53043;57425;51571;63231;69230;100239;144792;242901;177994;211237;242597;289972;347214;402715;360348;298109;360373;393390;395349;470603;546959;613039;614926;706615;1054621;964730;871250;1012391;1406221;1387284;1892027;1441223;1555306;1706612;1500669;1577743;1472958;1851346;1728854;1826579;1271464;1884737;1579108;1754784;1887523;1686478;1752840;1864562;1790847;1672959;1926509.67;2187374;2002170;1840424;2226867;2456482;2254284
-33;'124;Canada;1676;Household and sanitary papers;5510;Production;t;;;;;175300;209000;225700;230000;255000;218000;263000;283000;294000;327000;241000;304000;331000;356000;315000;324000;344000;375000;385000;400000;406000;431000;449000;455000;462000;467000;515000;530000;542000;584000;617000;605000;617000;624000;664000;652000;685000;713000;717000;747000;741000;755000;754000;748000;721000;730000;723000;707000;711000;696000;700000;700000;738000;739000;744000;1123000;1497000;1347000;1190000
-33;'124;Canada;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;9100;8400;7400;9400;17900;22100;33600;39200;27000;16000;17200;16700;16400;18200;7100;7400;7700;8100;11000;13300;16000;15200;19100;32800;26400;32200;41000;37000;39000;30000;28000;28000;47617;69000;75000;104000;103000;108000;60000;67000;62000;62530;72000;66632;52000;79834;82629;126397;100032;108712;102467;112868;115802;96887;102987;126000
-33;'124;Canada;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;6815;7056;6927;7585;12019;14549;23062;29272;26911;21735;23589;29323;28418;33788;12761;11634;11796;12080;15042;16815;18038;17148;21166;35026;26132;30784;41236;40523;43348;29817;30460;29458;48096;69445;72819;79475;78397;93236;70456;84318;83947;76059;89662;84629;69093;113942;118776;146284;123125;124493.16;120799;134694;136607;124483;155280;177596
-33;'124;Canada;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;16400;14700;16300;12000;16100;18100;13200;6800;10000;42000;51900;57600;44200;38100;29500;51300;73000;93300;91600;86600;65100;62000;85500;73300;92600;101000;97000;85000;82000;112000;104700;118000;94798;109000;110000;104000;132000;137000;151000;136000;141000;127218;140000;148685;151000;113959;118751;142191;131861;134962;130646;104778;76231;93380;94058;84692
-33;'124;Canada;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;3855;3812;4589;3338;4823;6155;7576;4780;6298;22988;31130;38167;34236;33964;27068;43775;60597;73351;75156;77086;60525;62808;89946;79434;81757;84676;84158;96279;90950;145844;112034;126112;112437;119896;113963;79475;149561;165869;184823;183990;197550;170017;210547;220376;214505;164196;172466;196922;182190;189724.68;187092;155604;111255;142337;167134;144314
-33;'124;Canada;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4365000;4582000;4585000;4489000;4173000;3957000;4089000;3852000;3783000;3685000;3414000;2934000;2961000;3181000;2864000;3025000;3020000;3050000;2874000;3189000;3342000;3455000;3314400;3265400;3130400;3162400
-33;'124;Canada;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1046200;1201000;1547532;2339000;1511000;1475000;1831000;1718000;1418000;948000;1434000;1455346;1393000;1385889;1512000;1536412;1609410;1651046;1965879;1801690;1821314;1707400;1740259;1858627;1859893;1871857
-33;'124;Canada;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676256;804903;878156;884564;890205;945444;1073764;1032674;1093087;961367;1275554;1188989;1305367;1324081;1385873;1440223;1543521;1533652;1768720;1688721.99;1772177;1694010;1655515;1965404;2244210;2141825
-33;'124;Canada;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127700;2326000;2471116;2295000;2315000;2114000;2543000;2253000;2196000;1163000;2005000;1762388;1777000;1703616;1522000;1634836;1754765;1707967;1677216;1953794;2150231;2019213;2046451;2258871;2090422;1930764
-33;'124;Canada;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169059;1267470;1428807;1328660;1329489;1274035;1613877;1471843;1542379;1050557;1662188;1370176;1508434;1576206;1430970;1551140;1654480;1558882;1457956;1706890.77;1961736;1808461;1690147;2042089;2244383;2065655
-33;'124;Canada;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;1418800;1727000;1792400;1931000;2072000;2010000;2094000;2514000;2759000;2741000;1798000;2390000;2407000;2560000;2708000;2680000;2848000;2436000;2756000;2865000;2910000;3140000;3275000;3301000;3225000;3331000;3503000;3557000;3656000;3999000;3988000;4105000;4181000;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;66700;67200;77400;97100;75500;94000;121100;170400;278000;174000;137100;133100;68300;101100;122400;166500;186600;190100;205100;241700;272900;257700;284600;533700;282000;620600;674000;790000;1041000;1263400;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;12311;11815;14110;17458;18070;23444;34256;50166;83361;57810;49850;42393;33693;56707;67191;89036;103474;104410;110318;136357;167410;173591;197153;466676;173353;415192;473895;599689;841656;990884;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;325400;342500;383800;412500;537200;680500;722200;405600;579000;710000;737000;730100;770600;661400;539000;697700;645100;652000;827400;874400;915600;852700;887700;1268700;1089000;1559000;1787000;1804000;2075000;2306500;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;40565;42809;52188;56502;82120;125429;202849;129490;161661;173666;184774;215391;299972;264928;200087;227690;236997;218796;290964;369821;437586;419701;498965;814652;508320;771438;911534;1286620;1270590;1278327;;;;;;;;;;;;;;;;;;;;;;;;;;
-33;'124;Canada;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2828000;3025000;3014000;2961000;2990000;2786000;2901000;2669000;2549000;1040000;897000;1962000;1942000;1882000;1664000;1742000;1865000;1900000;1882000;2114000;2250000;2340000;2278000;2241000;2123000;2229000
-33;'124;Canada;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427400;515000;698893;851000;720000;611000;530000;649000;682000;94000;582000;629147;498000;500094;609000;626083;719214;732528;740285;737568;724774;688886;706837;876690;847838;878039
-33;'124;Canada;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204078;241957;294278;305784;301149;280119;255888;307665;373229;73015;352157;345808;316369;322360;377803;425565;476687;466610;455349;501787.42;532317;508277;512105;735027;787179;753078
-33;'124;Canada;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1278200;1434000;1560014;1455000;1290000;1123000;1199000;1196000;1157000;140000;1065000;844268;871000;866336;715000;781778;918282;922403;911874;1093850;1265668;1185579;1250469;1403795;1259694;1185728
-33;'124;Canada;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510611;609487;737905;675675;566361;498216;581027;586052;629250;92699;673495;458718;532665;619919;528279;618347;709548;678461;588777;751193.11;923566;813648;807011;1025331;1070849;994083
-33;'124;Canada;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001000;1023000;1040000;1003000;1046000;1045000;1053000;1052000;1103000;2442000;2342000;802000;849000;863000;774000;839000;812000;800000;778000;804000;811000;827000;734000;722000;705000;631000
-33;'124;Canada;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459800;426000;595926;1102000;418000;480000;657000;502000;422000;523000;524000;536801;592000;560714;569000;544968;531764;551683;591977;668949;677780;610810;610146;569571;609299;606051
-33;'124;Canada;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365358;390001;417097;396760;361553;421468;470134;413411;451615;602533;616098;588381;686764;668559;668256;641541;681923;690838;687601;762989.06;761281;711449;687636;714041;868054;838346
-33;'124;Canada;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415600;418000;406211;381000;571000;548000;512000;508000;508000;490000;450000;434275;493000;463824;423000;451266;426380;409790;378936;406792;391363;398971;362938;441706;419602;376304
-33;'124;Canada;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343496;334487;346255;342686;447631;447411;422129;463060;499843;510103;501194;490488;541599;546474;505833;520434;514790;486529;459005;493254.43;495290;492190;440905;531915;600244;564157
-33;'124;Canada;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536000;534000;531000;525000;101000;95000;100000;100000;100000;180000;154000;149000;149000;436000;426000;444000;343000;350000;214000;271000;281000;288000;302400;302400;302400;302400
-33;'124;Canada;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96700;176000;197043;341000;261000;271000;440000;432000;243000;273000;283000;252479;277000;296348;301000;333675;345854;346423;605067;364657;390649;390620;411242;398322;393941;369603
-33;'124;Canada;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66074;123758;144222;162858;171928;191380;239186;249412;228525;252359;274975;228879;281007;309952;315987;351428;372423;359345;601344;396654.51;453731;460052;444379;499865;576691;530911
-33;'124;Canada;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362800;408000;440233;386000;378000;363000;737000;453000;428000;452000;425000;419295;358000;323855;326000;341470;365373;328058;338232;398561;428697;374445;376080;337743;333627;304509
-33;'124;Canada;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273198;287493;313617;276322;276306;286727;559865;371191;355727;402782;447140;381433;395939;373483;358170;372584;399675;361274;378001;426161.55;498795;456623;401911;424842;496794;448279
-33;'124;Canada;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;36000;31000;35000;31000;31000;23000;21000;21000;21000;0;0;0;0;0;0;0;0;0;0;0;0;0
-33;'124;Canada;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62300;84000;55670;45000;112000;113000;204000;135000;71000;58000;45000;36919;26000;28733;33000;31686;12578;20412;28550;30516;28111;17084;12034;14044;8815;18164
-33;'124;Canada;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40746;49187;22559;19162;55575;52477;108556;62186;39718;33460;32324;25921;21227;23210;23827;21689;12488;16859;24426;27291;24848;14232;11395;16471;12286;19490
-33;'124;Canada;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71100;66000;64658;73000;76000;80000;95000;96000;103000;81000;65000;64550;55000;49601;58000;60322;44730;47716;48174;54591;64503;60218;56964;75627;77499;64223
-33;'124;Canada;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41754;36003;31030;33977;39191;41681;50856;51540;57559;44973;40359;39537;38231;36330;38688;39775;30467;32618;32173;36281.68;44085;46000;40320;60001;76496;59136
-33;'124;Canada;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;676000;298000;280100;193100;230000;208000;227000;281000;282000;383000;339000;193000;150000;242000;229000;250000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;266000;150000;150000;150000;150000;150000;150000;401000;347000;426000;429000;415000;341000;368000;361000;361000;0;0;0;0;0;0;0;0;0;16000;20000;20000;20000
-33;'124;Canada;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;73100;51600;47500;55500;96400;91500;139600;174200;53000;44000;46300;43500;48300;51000;53400;65400;88600;99200;121600;112500;228400;234500;214200;145200;313488;11200;16000;13000;14000;489000;244600;320858;1230267;252000;264000;101000;135000;170000;46000;198000;124000;105609;113000;95857;93000;85522;84926;71674;79317;73336;27996;19408;17418;15600;21372;14469
-33;'124;Canada;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;31897;12845;11359;13456;16021;19694;37213;94151;39488;37121;42147;23744;50049;35567;48054;55483;71295;74097;82334;85741;248016;294858;282980;115789;341062;13747;15454;20043;32566;610090;309284;362569;369201;272012;232248;95198;90787;164796;82804;183331;100156;102054;107858;110604;98112;86195;89044;81722;80967;85196.65;53123;58674;58164;73980;95162;76228
-33;'124;Canada;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;41900;39500;33900;70300;82000;82200;77100;120800;148000;156000;244400;296000;381100;307400;340800;403600;409100;405500;444200;440100;167000;173400;314200;471800;575830;52000;57000;61000;76000;471400;452900;453000;452127;75000;290000;247000;224000;209000;197000;22000;17000;11568;14000;97827;13000;11442;12263;12058;13524;11060;9042;5459;5794;5994;5587;4476
-33;'124;Canada;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;13005;4950;6454;9390;13296;13208;32476;43724;43278;45943;74068;93656;68507;61456;70954;88908;95796;103202;104483;100052;114928;132417;117704;160535;374653;15136;16699;23322;25744;467856;160130;161724;165368;52113;134291;119448;87908;91142;99377;36917;24999;38915;35803;90941;41003;37504;37616;35043;32813;29894.22;38546;38105;39022;42441;44965;44315
-33;'124;Canada;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3025653.25;3046913;3023815;2846676;3703373;4384506;3763157
-33;'124;Canada;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3358644.53;3395169;3466307;3239419;4128378;4872909;4551593
-33;'124;Canada;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184611.49;162636;150773;139256;204012;194836;146499
-33;'124;Canada;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163437.32;138874;137591;148275;213708;203229;178877
-33;'124;Canada;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72389.75;69344;66584;65420;104365;103255;83024
-33;'124;Canada;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113274.04;82272;76058;79497;109375;98577;82412
-33;'124;Canada;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112221.74;93292;84189;73836;99647;91581;63475
-33;'124;Canada;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50163.28;56602;61533;68778;104333;104652;96465
-33;'124;Canada;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86001.81;89619;97472;74458;89458;113601;115213
-33;'124;Canada;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100842.46;104336;98630;96227;158810;144624;124244
-33;'124;Canada;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104494;109104;107024;89117;126154;138793;124127
-33;'124;Canada;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23837;22343;18690;16543;30800;35579;31687
-33;'124;Canada;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369380.35;374866;367483;371898;564828;655732;563311
-33;'124;Canada;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123485.68;1142921;1209760;1244709;1688199;1951357;1677784
-33;'124;Canada;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23186;19000
-33;'124;Canada;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5698;9627
-33;'124;Canada;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5904;10542
-33;'124;Canada;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16042;15573
-33;'124;Canada;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33559;31782
-33;'124;Canada;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000
-33;'124;Canada;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3537;2305
-33;'124;Canada;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;595
-33;'124;Canada;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39067;22318
-33;'124;Canada;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22132;17458
-33;'124;Canada;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204000;204000
-33;'124;Canada;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42454;36536
-33;'124;Canada;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97858;86567
-33;'124;Canada;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190847;185929
-33;'124;Canada;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296683;257226
-33;'124;Canada;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095347.11;2124975;2120396;2006863;2495261;3002634;2569300
-33;'124;Canada;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1660615.43;1649620;1625529;1382411;1590558;2067614;2057916
-33;'124;Canada;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16981;13413;14684;13079;26905;32588;26475
-33;'124;Canada;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56292;59875;94257;57223;81890;107723;143047
-33;'124;Canada;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168837.49;172300;165983;152005;196755;246322;218232
-33;'124;Canada;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230134.62;277200;281850;294031;364413;362783;338038
-33;'124;Canada;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2820280.32;2924952;2963699;3012983;3204059;3767167;3746945
-33;'124;Canada;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074313.3;2171075;2117217;2125489;2324505;2576450;2706477
-33;'124;Canada;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14966.69;14034;15007;13140;15619;21104;20458
-33;'124;Canada;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22559.53;21522;23336;19981;24885;28937;22433
-33;'124;Canada;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402708.35;434257;467657;447390;532136;643215;580816
-33;'124;Canada;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250547.58;246452;253751;249146;268902;274430;297488
-33;'124;Canada;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649009.31;645594;651358;783585;598499;684656;744469
-33;'124;Canada;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504488.3;512204;487437;533301;565139;618648;771612
-33;'124;Canada;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863932.33;916525;911687;914621;1114377;1268215;1186470
-33;'124;Canada;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847861.89;901531;885863;866642;938311;1064113;1028099
-33;'124;Canada;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;889663.64;914542;917990;854247;943428;1149977;1214732
-33;'124;Canada;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448856;489366;466830;456419;527268;590322;586845
-36;'136;Cayman Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36527;39583;56611;71222;99797;65025;66008
-36;'136;Cayman Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1374;1187;823;384;150;526;786
-36;'136;Cayman Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;424;3545;3640;4954;4954;4954;4954;4964;4964;4964;4964;4964;4964;4964;4964;4964;4964;4964;18526;51492;36891;25112;23319;14388;15459;15656;10558;12175;18552;19678;34707;17727;15980
-36;'136;Cayman Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;165;165;165;165;165;165;165;165;165;165;165;165;165;165;165;295;0;0;25;0;1;0;4;3;1;17;15;23;45;104
-36;'136;Cayman Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3140;8030;4692;1595;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1159;1927;1553;838;1150;2848;2012;1640;165;3464;7925;41912;43009;11530;6267
-36;'136;Cayman Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;424;391;127;116;116;116;116;116;116;116;116;116;116;116;116;116;116;116;166;199;175;91;126;250;197;397;71;516;2056;4315;5878;3345;2218
-36;'136;Cayman Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;275;5092;30534;40808;5592;3151
-36;'136;Cayman Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;96;1309;3391;5321;2132;1186
-36;'136;Cayman Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;3189;2833;11378;2201;5938;3116
-36;'136;Cayman Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;420;747;924;557;1213;1032
-36;'136;Cayman Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;23;9;10;25;25;25;25;;;9;1066;1066;1066;1066
-36;'136;Cayman Islands;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;1;1;3;3;3;3;;;5;113;113;113;113
-36;'136;Cayman Islands;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-36;'136;Cayman Islands;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-36;'136;Cayman Islands;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1066;1066;1066;1066
-36;'136;Cayman Islands;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;113;113;113;113
-36;'136;Cayman Islands;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;23;9;10;25;25;25;25;;;;;;;
-36;'136;Cayman Islands;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;1;1;3;3;3;3;;;;;;;
-36;'136;Cayman Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3140;8030;4692;1595;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1738;1084;1904;1544;828;1125;2823;1987;1615;165;3464;7916;40846;41943;10464;5201
-36;'136;Cayman Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;424;391;127;116;116;116;116;116;116;116;116;116;116;116;116;116;116;116;161;197;174;90;123;247;194;394;71;516;2051;4202;5765;3232;2105
-36;'136;Cayman Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3140;7342;4004;1506;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1042;1854;1417;713;624;2322;1836;1215;0;275;5092;30534;40808;5592;3151
-36;'136;Cayman Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;287;254;118;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;123;174;143;70;62;186;156;256;0;96;1309;3391;5321;2132;1186
-36;'136;Cayman Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3140;7342;4004;1506;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1042;1854;1417;713;624;2322;1836;1215;0;275;5092;30534;40808;5592;3151
-36;'136;Cayman Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;287;254;118;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;123;174;143;70;62;186;156;256;0;96;1309;3391;5321;2132;1186
-36;'136;Cayman Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688;688;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;42;50;127;115;501;501;151;400;165;3189;2824;10312;1135;4872;2050
-36;'136;Cayman Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;38;23;31;20;61;61;38;138;71;420;742;811;444;1100;919
-36;'136;Cayman Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;50;30;114;501;501;0;11;152;972;1108;1308;1;1;0
-36;'136;Cayman Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;14;14;61;61;0;7;59;347;407;477;1;18;0
-36;'136;Cayman Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688;688;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;30;0;97;1;0;0;151;389;13;2217;1716;9004;1134;4871;2050
-36;'136;Cayman Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;7;0;17;6;0;0;38;131;12;73;335;334;443;1082;919
-36;'136;Cayman Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;24;10;8;8;8;8;8;8;0;181;86;3;18
-36;'136;Cayman Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;21;5;6;6;6;6;6;6;0;105;55;6;34
-36;'136;Cayman Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;83;160;1522;203;203;203;203;203;203;417;417;532;275;67
-36;'136;Cayman Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;22;14;53;23;23;23;23;23;23;30;30;33;41;6
-36;'136;Cayman Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;80;160;1522;203;203;203;203;203;203;392;392;392;250;42
-36;'136;Cayman Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;11;14;53;23;23;23;23;23;23;27;27;27;38;3
-36;'136;Cayman Islands;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;25;25;140;25;25
-36;'136;Cayman Islands;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;3;3;6;3;3
-36;'136;Cayman Islands;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;15;62;10;2
-36;'136;Cayman Islands;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;3;11;17;4
-36;'136;Cayman Islands;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;15;62;10;2
-36;'136;Cayman Islands;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;3;11;17;4
-36;'136;Cayman Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12649;11779;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;13629;7972;15141;9659;10956;11777;13271;10240;8846;980;2701;12116;9288;18310;17620;15002
-36;'136;Cayman Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1733;1945;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;2473;4146;3378;2707;2918;4058;3353;3476;3350;253;858;4079;3338;6895;6813;5434
-36;'136;Cayman Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2;0;0;0;0;3;10
-36;'136;Cayman Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;1;1;8
-36;'136;Cayman Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12398;11259;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;13535;7693;14929;9561;10836;11553;13047;8791;8376;336;1256;11738;9095;17805;17112;12596
-36;'136;Cayman Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668;1834;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;2412;3731;3176;2592;2803;3827;3257;2707;2958;71;434;3816;3219;6666;6477;4305
-36;'136;Cayman Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;0
-36;'136;Cayman Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;0
-36;'136;Cayman Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;520;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;279;212;98;120;224;224;1449;470;644;1445;378;193;505;508;2406
-36;'136;Cayman Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;111;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;415;202;115;115;231;96;769;392;182;424;263;119;229;336;1129
-36;'136;Cayman Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;3;10
-36;'136;Cayman Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;1;8
-36;'136;Cayman Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495;1650;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;35;46;48;43;54;54;674;642;102;126;193;1931;3744;112;131
-36;'136;Cayman Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571;630;541;541;541;541;541;541;541;541;541;541;541;541;541;541;541;132;123;110;139;203;314;1688;1789;212;251;427;4248;12087;296;526
-36;'136;Cayman Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;0;0;0;0;0;0;0;0;1;1;0;0;2;0;0
-36;'136;Cayman Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;0;0;1;0;0;0;0;0;0;1;0;0
-36;'136;Cayman Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020;1659;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;1963;3990;3231;4448;2588;3195;2488;3365;2519;3545;6126;7921;10916;8550;10091
-36;'136;Cayman Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;504;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;2012;1551;1365;2083;1514;2193;1820;1842;1732;2272;3362;3608;6322;4786;4605
-36;'136;Cayman Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;3;4;0;9;1;31
-36;'136;Cayman Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;1;3;1;13;35;35
-36;'136;Cayman Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020;1659;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;4827;1904;3772;3194;4376;2475;3082;2375;3252;2406;3432;5813;7367;10460;8354;8797
-36;'136;Cayman Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;504;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1279;1972;1426;1302;1955;1305;1984;1611;1633;1523;2063;3282;3329;6118;4719;4459
-36;'136;Cayman Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;3;4;0;8;0;29
-36;'136;Cayman Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;1;3;1;13;35;35
-36;'136;Cayman Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;218;37;72;85;85;85;85;85;85;299;220;335;78;1042
-36;'136;Cayman Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;125;63;128;193;193;193;193;193;193;68;68;120;63;66
-36;'136;Cayman Islands;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;2
-36;'136;Cayman Islands;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-36;'136;Cayman Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;14;334;121;118;252
-36;'136;Cayman Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;12;211;84;4;80
-36;'136;Cayman Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;14;334;121;118;118
-36;'136;Cayman Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;12;211;84;4;4
-36;'136;Cayman Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38
-36;'136;Cayman Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-36;'136;Cayman Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96
-36;'136;Cayman Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53
-36;'136;Cayman Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;903;954;5290;2602;16494;0;0;0;0;0;520;520;520;520;520
-36;'136;Cayman Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;475;635;3360;1502;9113;0;0;0;0;0;306;306;306;306;307
-36;'136;Cayman Islands;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;120;36;41;41
-36;'136;Cayman Islands;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;14;8;9;9
-36;'136;Cayman Islands;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;954;5290;2602;16494;0;0;0;0;0;520;520;520;520;520
-36;'136;Cayman Islands;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;635;3360;1502;9113;0;0;0;0;0;306;306;306;306;306
-36;'136;Cayman Islands;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;954;5290;2602;16494;0;0;0;0;0;520;520;520;520;520
-36;'136;Cayman Islands;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;635;3360;1502;9113;0;0;0;0;0;306;306;306;306;306
-36;'136;Cayman Islands;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;954;5290;2602;16494;0;0;0;0;0;520;520;520;520;520
-36;'136;Cayman Islands;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;635;3360;1502;9113;0;0;0;0;0;306;306;306;306;306
-36;'136;Cayman Islands;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;954;5290;2602;16494;0;0;0;0;0;520;520;520;520;520
-36;'136;Cayman Islands;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;635;3360;1502;9113;0;0;0;0;0;306;306;306;306;306
-36;'136;Cayman Islands;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1
-36;'136;Cayman Islands;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;120;36;41;41
-36;'136;Cayman Islands;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;8;9;9
-36;'136;Cayman Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;644;937;937;937;937;937;937;937;937;937;937;937;937;937;937;937;14125;50903;31241;20014;7969;7948;7948;7948;7963;7948;9009;3027;2365;967;1298
-36;'136;Cayman Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;434;533;533;533;533;543;543;543;543;543;543;543;543;543;543;543;11569;45572;29139;18321;8259;8232;8232;8232;8244;8232;8275;3725;3120;2117;2846
-36;'136;Cayman Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;287;0;0;21;0;0;0;0;0;0;0;0;0;0;47
-36;'136;Cayman Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;295;0;0;25;0;0;0;0;0;0;0;0;0;0;52
-36;'136;Cayman Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;292;563;563;563;563;563;563;563;563;563;563;563;563;563;563;563;11230;42356;24424;16011;6062;6041;6041;6041;6056;6041;5972;953;762;413;575
-36;'136;Cayman Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;171;269;269;269;269;269;269;269;269;269;269;269;269;269;269;269;8935;38134;22839;14560;5893;5866;5866;5866;5878;5866;5540;982;870;794;935
-36;'136;Cayman Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;287;0;0;21;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;295;0;0;25;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;191;292;292;292;292;292;292;292;292;292;292;292;292;292;292;292;2;0;0;0;2;2;2;2;2;2;2;270;341;1;1
-36;'136;Cayman Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;90;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;6;0;0;0;4;4;4;4;4;4;4;139;182;3;3
-36;'136;Cayman Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;101;271;271;271;271;271;271;271;271;271;271;271;271;271;271;271;11228;42356;24424;16011;6060;6039;6039;6039;6054;6039;5970;683;421;412;574
-36;'136;Cayman Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;81;147;147;147;147;147;147;147;147;147;147;147;147;147;147;147;8929;38134;22839;14560;5889;5862;5862;5862;5874;5862;5536;843;688;791;932
-36;'136;Cayman Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;287;0;0;21;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;295;0;0;25;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;100;73;22;21;0;0;0;15;0;2;60;33;36;4
-36;'136;Cayman Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;112;95;26;27;0;0;0;12;0;18;64;38;80;8
-36;'136;Cayman Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;271;271;271;271;271;271;271;9030;41199;23446;15362;5338;5338;5338;5338;5338;5338;5338;526;323;316;535
-36;'136;Cayman Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;147;147;147;147;147;147;147;147;147;7231;36897;21590;13551;4899;4899;4899;4899;4899;4899;4899;684;580;579;808
-36;'136;Cayman Islands;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;155;155;155;155;155;155;155;155;155;155;287;0;0;21;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;134;134;134;134;134;134;134;134;134;134;295;0;0;25;0;0;0;0;0;0;0;0;0;0;0
-36;'136;Cayman Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985;1057;905;627;701;701;701;701;701;701;630;97;65;60;35
-36;'136;Cayman Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1462;1125;1154;983;963;963;963;963;963;963;619;95;70;132;116
-36;'136;Cayman Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;352;374;374;374;374;374;374;374;374;374;374;374;374;374;374;374;2895;8547;6817;4003;1907;1907;1907;1907;1907;1907;3037;2074;1603;554;723
-36;'136;Cayman Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;263;264;264;264;264;274;274;274;274;274;274;274;274;274;274;274;2634;7438;6300;3761;2366;2366;2366;2366;2366;2366;2735;2743;2250;1323;1911
-36;'136;Cayman Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47
-36;'136;Cayman Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-36;'136;Cayman Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;374;374;374;374;374;374;374;374;374;374;272;191;71;76;177;177;177;177;177;177;249;1767;1213;349;401
-36;'136;Cayman Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;274;274;274;274;274;274;274;274;274;274;688;459;212;220;435;435;435;435;435;435;481;2134;1581;844;1183
-36;'136;Cayman Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2622;8344;6742;3926;1724;1724;1724;1724;1724;1724;2776;262;350;203;303
-36;'136;Cayman Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;6935;6055;3535;1905;1905;1905;1905;1905;1905;2194;390;471;431;665
-36;'136;Cayman Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47
-36;'136;Cayman Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-36;'136;Cayman Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;101;2157;5;0;0;0;0;0;0;18;36;5;21;49
-36;'136;Cayman Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;55;1098;19;0;0;0;0;0;0;17;25;6;68;76
-36;'136;Cayman Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2490;8207;4529;3897;1692;1692;1692;1692;1692;1692;2695;75;78;121;117
-36;'136;Cayman Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690;6799;4783;3452;1833;1833;1833;1833;1833;1833;2029;144;87;212;145
-36;'136;Cayman Islands;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47
-36;'136;Cayman Islands;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-36;'136;Cayman Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;36;51;15;32;32;32;32;32;32;63;151;255;61;130
-36;'136;Cayman Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;81;167;53;72;72;72;72;72;72;148;221;370;149;413
-36;'136;Cayman Islands;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;5;9;0;0;0;0;0;0;0;0;12;0;7
-36;'136;Cayman Islands;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;7;11;0;0;0;0;0;0;0;0;8;2;31
-36;'136;Cayman Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;4;1;6;6;6;6;6;6;12;45;40;2;19
-36;'136;Cayman Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;44;33;6;26;26;26;26;26;26;60;219;198;48;63
-36;'136;Cayman Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20294;20025;28298;39905;51391;38733;40806
-36;'136;Cayman Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1347;1171;540;103;120;391;647
-36;'136;Cayman Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1162;1529;2596;1830;187;2522;2107
-36;'136;Cayman Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;0;0;0;0;1
-36;'136;Cayman Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855;678;711;241;25;1492;1034
-36;'136;Cayman Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-36;'136;Cayman Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;851;1885;1589;162;1030;1073
-36;'136;Cayman Islands;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;1
-36;'136;Cayman Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;56;103;106;115;84;110
-36;'136;Cayman Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;202
-36;'136;Cayman Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;638;502;630;481;504;416
-36;'136;Cayman Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;3;0;0;3;15
-36;'136;Cayman Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788;3048;4136;5397;6422;4703;6577
-36;'136;Cayman Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;6;3;2;8;7;1
-36;'136;Cayman Islands;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;66
-36;'136;Cayman Islands;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;132
-36;'136;Cayman Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14458;13810;18769;31305;43586;29152;30279
-36;'136;Cayman Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1324;1159;533;100;109;376;427
-36;'136;Cayman Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;22;69;69;69;249;67
-36;'136;Cayman Islands;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-36;'136;Cayman Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1127;922;2123;568;531;1519;1250
-36;'136;Cayman Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;1;1;3;5;1
-36;'136;Cayman Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5675;7383;9761;11639;13699;8565;9222
-36;'136;Cayman Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;15;266;266;7;90;35
-36;'136;Cayman Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;37;2;7;7
-36;'136;Cayman Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;147;286;194;239;539;392
-36;'136;Cayman Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;1;1;6;0
-36;'136;Cayman Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1572;1631;1804;5415;5630;2295;2146
-36;'136;Cayman Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;246;246;0;2;0
-36;'136;Cayman Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;765;969;1549;1980;1336;1041
-36;'136;Cayman Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;2;2;0;14;2
-36;'136;Cayman Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3320;4833;6695;4444;5848;4388;5636
-36;'136;Cayman Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;8;17;17;6;68;33
-37;'140;Central African Republic;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7155;6497;5747;7068;8246;8955;8665
-37;'140;Central African Republic;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87236;79266;53788;70550;52608;47916;113649
-37;'140;Central African Republic;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;28;28;44;346;346;449;271;707;404;41;44;95;162;114;114;1206;114;114;570;700;1000;2165;1626;1626;113;193;200;193;288;144;144;259;258;258;258;258;159;205;224;224;224;401;1337;1087;1227;1274;1118;1297;813;1397;1436;753;620;1122;1449;1678;1722;4190;1679;1829;1930;1880;3073
-37;'140;Central African Republic;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;382;485;367;552;541;564;709;1208;2154;3900;5660;7500;15518;16266;13677;14228;13353;19280;33059;38036;36272;23895;22188;20786;20251;23085;18389;15839;20273;24253;12177;20858;16361;40319;29020;21828;28202;45082;46522;56009;101275;50693;61820;51146;47670;61240;69264;103042;104919;82379;99364;84051;76019;61264;66570;74425;86572;79141;53654;70421;52471;47484;113225
-37;'140;Central African Republic;1861;Roundwood;5516;Production;m3;1775000;1826000;1849000;1897000;1978000;2014000;2051000;2125000;2313000;2418000;2552000;2650000;2829000;2677000;2719000;2771000;2826000;2932000;2919000;3011000;3089000;3114000;3149000;3340000;3419000;3419000;3445000;3449000;3530000;3480000;3434000;3734000;3691000;3578000;3611000;3202000;3445000;3518000;2861000;2955000;2998000;2919000;2783000;2832000;2762402;2934861;2845998;2863143;2656779;2632283;2732447;2731122;2649977;2545489;2623154;2726250;2844713;2844713;2844713;2844713;2844713;2844713;7170960
-37;'140;Central African Republic;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;2;2
-37;'140;Central African Republic;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;1;1
-37;'140;Central African Republic;1861;Roundwood;5916;Export quantity;m3;11200;17500;10000;9400;10200;11000;11300;18900;38800;86000;101000;109000;155000;131000;82800;127700;125500;111000;125000;137400;122500;90000;65000;84000;95000;62600;41000;55000;54700;35836;16342;41700;36600;84200;72800;41600;109500;117000;154000;249900;313000;91958;126149;93171;86417;95394;78314;155301;110842;147893;152278;158178;144615;113993;110015;232562;328000;169240;116840;196342;110131;235089;209000
-37;'140;Central African Republic;1861;Roundwood;5922;Export value;1000 USD;115;262;123;95;103;112;136;472;939;2600;3500;4400;10618;11266;9677;10086;7942;12200;29159;27449;25947;14141;12355;13610;11664;13696;9000;8032;14173;11679;4748;9168;7475;25135;17425;9957;12121;21321;28302;39559;78250;27264;40614;44909;42106;44469;44960;53301;69305;51420;67532;51104;42129;44800;49546;65648;74784;66826;41446;59746;42435;36016;87989
-37;'140;Central African Republic;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2
-37;'140;Central African Republic;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1
-37;'140;Central African Republic;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;0;0;52;0;0
-37;'140;Central African Republic;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;27;0;0
-37;'140;Central African Republic;1863;Roundwood, non-coniferous;5516;Production;m3;1775000;1826000;1849000;1897000;1978000;2014000;2051000;2125000;2313000;2418000;2552000;2650000;2829000;2677000;2719000;2771000;2826000;2932000;2919000;3011000;3089000;3114000;3149000;3340000;3419000;3419000;3445000;3449000;3530000;3480000;3434000;3734000;3691000;3578000;3611000;3202000;3445000;3518000;2861000;2955000;2998000;2919000;2783000;2832000;2762402;2934861;2845998;2863143;2656779;2632283;2732447;2731122;2649977;2545489;2623154;2726250;2844713;2844713;2844713;2844713;2844713;2844713;7170960
-37;'140;Central African Republic;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-37;'140;Central African Republic;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-37;'140;Central African Republic;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328000;169218;116840;196342;110079;235089;209000
-37;'140;Central African Republic;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74784;66824;41446;59746;42408;36016;87989
-37;'140;Central African Republic;1864;Wood fuel;5516;Production;m3;1550000;1560000;1590000;1620000;1660000;1690000;1730000;1770000;1850000;1890000;1930000;1980000;2074000;2172000;2220000;2268000;2319000;2371000;2427000;2485000;2547000;2613000;2680000;2860000;2925000;2990000;3055000;3055000;3055000;3055000;3055000;3250000;3250000;3000000;3000000;2606000;2687000;2687000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;6326247
-37;'140;Central African Republic;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1628;Wood fuel, non-coniferous;5516;Production;m3;1550000;1560000;1590000;1620000;1660000;1690000;1730000;1770000;1850000;1890000;1930000;1980000;2074000;2172000;2220000;2268000;2319000;2371000;2427000;2485000;2547000;2613000;2680000;2860000;2925000;2990000;3055000;3055000;3055000;3055000;3055000;3250000;3250000;3000000;3000000;2606000;2687000;2687000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;6326247
-37;'140;Central African Republic;1865;Industrial roundwood;5516;Production;m3;225000;266000;259000;277000;318000;324000;321000;355000;463000;528000;622000;670000;755000;505000;499000;503000;507000;561000;492000;526000;542000;501000;469000;480000;494000;429000;390000;394000;475000;425000;379000;484000;441000;578000;611000;596000;758000;831000;861000;955000;998000;919000;783000;832000;762402;934861;845998;863143;656779;632283;732447;731122;649977;545489;623154;726250;844713;844713;844713;844713;844713;844713;844713
-37;'140;Central African Republic;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;2;2
-37;'140;Central African Republic;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;1;1
-37;'140;Central African Republic;1865;Industrial roundwood;5916;Export quantity;m3;11200;17500;10000;9400;10200;11000;11300;18900;38800;86000;101000;109000;155000;131000;82800;127700;125500;111000;125000;137400;122500;90000;65000;84000;95000;62600;41000;55000;54700;35836;16342;41700;36600;84200;72800;41600;109500;117000;154000;249900;313000;91958;126149;93171;86417;95394;78314;155301;110842;147893;152278;158178;144615;113993;110015;232562;328000;169240;116840;196342;110131;235089;209000
-37;'140;Central African Republic;1865;Industrial roundwood;5922;Export value;1000 USD;115;262;123;95;103;112;136;472;939;2600;3500;4400;10618;11266;9677;10086;7942;12200;29159;27449;25947;14141;12355;13610;11664;13696;9000;8032;14173;11679;4748;9168;7475;25135;17425;9957;12121;21321;28302;39559;78250;27264;40614;44909;42106;44469;44960;53301;69305;51420;67532;51104;42129;44800;49546;65648;74784;66826;41446;59746;42435;36016;87989
-37;'140;Central African Republic;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2
-37;'140;Central African Republic;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-37;'140;Central African Republic;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;0;0;52;0;0
-37;'140;Central African Republic;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;168;90;0;0;0;0;0;0;2;0;0;27;0;0
-37;'140;Central African Republic;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2
-37;'140;Central African Republic;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-37;'140;Central African Republic;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;0;0;52;0;0
-37;'140;Central African Republic;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;168;90;0;0;0;0;0;0;2;0;0;27;0;0
-37;'140;Central African Republic;1867;Industrial roundwood, non-coniferous;5516;Production;m3;225000;266000;259000;277000;318000;324000;321000;355000;463000;528000;622000;670000;755000;505000;499000;503000;507000;561000;492000;526000;542000;501000;469000;480000;494000;429000;390000;394000;475000;425000;379000;484000;441000;578000;611000;596000;758000;831000;861000;955000;998000;919000;783000;832000;762402;934861;845998;863143;656779;632283;732447;731122;649977;545489;623154;726250;844713;844713;844713;844713;844713;844713;844713
-37;'140;Central African Republic;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35836;16342;41700;36600;84200;72800;41600;109500;117000;154000;249900;313000;91958;126149;93171;86417;95394;78314;155301;110842;147893;152278;158178;144615;113993;110015;232562;328000;169218;116840;196342;110079;235089;209000
-37;'140;Central African Republic;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11679;4748;9168;7475;25135;17425;9957;12121;21321;28302;39559;78250;27264;40614;44909;42106;44469;44960;53301;69305;51252;67442;51104;42129;44800;49546;65648;74784;66824;41446;59746;42408;36016;87989
-37;'140;Central African Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35836;16342;41700;36600;84200;72800;41600;109500;117000;154000;249900;313000;91958;126149;93089;86241;95356;78314;155301;110842;147893;152278;158178;144615;113993;110015;232562;328000;169218;116840;196342;110079;234349;209000
-37;'140;Central African Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11679;4748;9168;7475;25135;17425;9957;12121;21321;28302;39559;78250;27264;40614;44855;42016;44448;44960;53301;69305;51252;67442;51104;42129;44800;49546;65648;74784;66824;41446;59746;42408;35701;87989
-37;'140;Central African Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;82;176;38;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;740;0
-37;'140;Central African Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;54;90;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;315;0
-37;'140;Central African Republic;1868;Sawlogs and veneer logs;5516;Production;m3;90000;128000;119000;134000;173000;176000;170000;201000;306000;368000;458000;503000;584000;331000;321000;321000;320000;370000;296000;325000;337000;291000;254000;260000;269000;198000;154000;152000;227000;171000;118000;217000;168000;299000;326000;305000;461000;529000;553000;647000;690000;611000;475000;524000;454402;626861;537998;555143;348779;324283;424447;423122;341977;237489;315154;418250;536713;536713;536713;536713;536713;536713;536713
-37;'140;Central African Republic;1868;Sawlogs and veneer logs;5916;Export quantity;m3;11200;17500;10000;9400;10200;11000;11300;18900;38800;86000;101000;109000;155000;131000;82800;127700;125500;111000;125000;137400;122500;90000;65000;84000;95000;62600;41000;55000;54700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;115;262;123;95;103;112;136;472;939;2600;3500;4400;10618;11266;9677;10086;7942;12200;29159;27449;25947;14141;12355;13610;11664;13696;9000;8032;14173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;90000;128000;119000;134000;173000;176000;170000;201000;306000;368000;458000;503000;584000;331000;321000;321000;320000;370000;296000;325000;337000;291000;254000;260000;269000;198000;154000;152000;227000;171000;118000;217000;168000;299000;326000;305000;461000;529000;553000;647000;690000;611000;475000;524000;454402;626861;537998;555143;348779;324283;424447;423122;341977;237489;315154;418250;536713;536713;536713;536713;536713;536713;536713
-37;'140;Central African Republic;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;11200;17500;10000;9400;10200;11000;11300;18900;38800;86000;101000;109000;155000;131000;82800;127700;125500;111000;125000;137400;122500;90000;65000;84000;95000;62600;41000;55000;54700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;115;262;123;95;103;112;136;472;939;2600;3500;4400;10618;11266;9677;10086;7942;12200;29159;27449;25947;14141;12355;13610;11664;13696;9000;8032;14173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1871;Other industrial roundwood;5516;Production;m3;135000;138000;140000;143000;145000;148000;151000;154000;157000;160000;164000;167000;171000;174000;178000;182000;187000;191000;196000;201000;205000;210000;215000;220000;225000;231000;236000;242000;248000;254000;261000;267000;273000;279000;285000;291000;297000;302000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000
-37;'140;Central African Republic;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;135000;138000;140000;143000;145000;148000;151000;154000;157000;160000;164000;167000;171000;174000;178000;182000;187000;191000;196000;201000;205000;210000;215000;220000;225000;231000;236000;242000;248000;254000;261000;267000;273000;279000;285000;291000;297000;302000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000
-37;'140;Central African Republic;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;38000;38000;21000;21000;21000;21000;21000;21000;21000;21000;182200;185500;185500;192223;195742;199325;202973;206688;210471;213817;217217;220671;224179;227744;231277;234865;238508
-37;'140;Central African Republic;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;31;31;31;31;0;0;0;0
-37;'140;Central African Republic;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;1;1;1;1;2;2;2;2
-37;'140;Central African Republic;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;8;8;8;8;8;8;8;8;8
-37;'140;Central African Republic;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;117;117;117;117;117;117;117;117;117;117;11;11;11;11;11;11;11;11;11
-37;'140;Central African Republic;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1872;Sawnwood;5516;Production;m3;38000;41000;38000;43000;43000;48000;47000;52000;55000;67000;78000;94000;101000;96000;72000;75000;90000;104000;67900;70600;69700;63000;61000;58000;56000;54000;52000;52000;57000;63000;60000;68000;60000;73000;70000;61000;72000;91000;79000;102000;150000;97000;69000;67000;71386;84304;92486;73675;61849;36657;38413;58513;50000;29399;71000;51000;51000;41390;43018;41000;41000;41000;41000
-37;'140;Central African Republic;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;903;29;99;376;83;139;33;45;97;274;55;0;1;169;0;443;1328;54;14;1;0;4
-37;'140;Central African Republic;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;229;12;41;147;149;87;17;16;57;243;54;0;1;68;0;393;1196;12;5;41;0;10
-37;'140;Central African Republic;1872;Sawnwood;5916;Export quantity;m3;3500;3700;3900;7500;7200;7500;9600;10000;20900;22000;36000;48000;70000;55000;38000;29300;36900;48000;23300;36400;37400;38200;38000;35000;21000;29800;29800;23800;55000;30600;19900;37400;25800;38000;29900;31200;48300;72000;64000;66000;76000;77000;58000;11026;15788;18115;43000;62233;40477;36657;38413;38674;39687;27154;17674;10852;17356;20234;19185;16108;13837;17708;42000
-37;'140;Central African Republic;1872;Sawnwood;5922;Export value;1000 USD;267;223;244;457;438;452;573;736;1215;1300;2160;3100;4900;5000;4000;3733;5190;6800;3300;9537;8745;6407;6265;5512;7014;8123;8123;7124;5313;12187;7201;11316;8762;15030;11274;11764;16031;23608;18028;16342;22800;23100;20600;5936;5280;16258;23962;49466;35235;30513;31289;32347;33382;15978;16602;8603;11600;11950;12042;10502;9894;11066;25074
-37;'140;Central African Republic;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-37;'140;Central African Republic;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;10;0;0;45;2;0;0;0;0;0;0;0;0;50;14;0;0;0
-37;'140;Central African Republic;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;3;0;0;16;1;0;0;0;0;0;0;0;0;11;5;0;0;0
-37;'140;Central African Republic;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;274;619;179;0;0;0;0;0;0
-37;'140;Central African Republic;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;42;120;144;0;0;89;154;45;0;0;0;63;41;0
-37;'140;Central African Republic;1633;Sawnwood, non-coniferous;5516;Production;m3;38000;41000;38000;43000;43000;48000;47000;52000;55000;67000;78000;94000;101000;96000;72000;75000;90000;104000;67900;70600;69700;63000;61000;58000;56000;54000;52000;52000;57000;63000;60000;68000;60000;73000;70000;61000;72000;91000;79000;102000;150000;97000;69000;67000;71386;84304;92486;73675;61849;36657;38413;58513;50000;29399;70000;50000;50000;40390;42018;40000;40000;40000;40000
-37;'140;Central African Republic;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;903;29;99;371;73;139;33;0;95;274;55;0;1;169;0;443;1328;4;0;1;0;4
-37;'140;Central African Republic;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;229;12;41;146;146;87;17;0;56;243;54;0;1;68;0;393;1196;1;0;41;0;10
-37;'140;Central African Republic;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;3500;3700;3900;7500;7200;7500;9600;10000;20900;22000;36000;48000;70000;55000;38000;29300;36900;48000;23300;36400;37400;38200;38000;35000;21000;29800;29800;23800;55000;30600;19900;37400;25800;38000;29900;31200;48300;72000;64000;66000;76000;77000;58000;11026;15788;18115;43000;62233;40477;36657;38413;38674;39687;27154;17400;10233;17177;20234;19185;16108;13837;17708;42000
-37;'140;Central African Republic;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;267;223;244;457;438;452;573;736;1215;1300;2160;3100;4900;5000;4000;3733;5190;6800;3300;9537;8745;6407;6265;5512;7014;8123;8123;7124;5313;12187;7201;11316;8762;15030;11274;11764;16031;23608;18028;16342;22800;23100;20600;5936;5280;16258;23962;49466;35235;30471;31169;32203;33382;15978;16513;8449;11555;11950;12042;10502;9831;11025;25074
-37;'140;Central African Republic;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;2600;1100;500;1500;2500;2900;3800;2600;1400;1500;1200;500;500;300;200;200;200;200;200;200;0;0;0;0;0;0;1000;1000;1000;5000;6000;4000;4000;4000;1000;1000;1000;1000;1000;1100;1000;2000;1000;1100;1000;1000;1000;1000
-37;'140;Central African Republic;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;47;0;0;4;81;170;73;122;17;1;15;388;271;374;0;0;0;0;0
-37;'140;Central African Republic;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;27;0;0;4;61;169;54;13;13;2;13;1056;688;1963;0;220;85;12;0
-37;'140;Central African Republic;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;3100;2600;1300;1100;800;500;500;300;0;0;123;0;0;0;0;0;0;0;0;0;5;82;8;3;101;24;3;11;67;114;112;77;17;104;7;6;122;2;2;0;0;5
-37;'140;Central African Republic;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;890;675;376;328;298;298;353;87;0;0;259;0;0;0;0;0;0;0;0;0;29;49;27;4;254;95;24;44;174;272;308;231;130;254;11;12;202;4;9;0;5;19
-37;'140;Central African Republic;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;1400;3900;5600;2900;4200;4900;8500;8400;5200;4700;4200;3400;3400;2800;2200;900;2100;1500;2000;2400;1600;1400;1400;2000;2000;4000;2000;2000;1000;1434;805;740;93;863;0;0;0;0;1353;0;0;0;500;500;1500;1500;1500;1500
-37;'140;Central African Republic;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;33;161;166;323;332;350;275;316;80;218;227;348;826;157;217;1103;55;433;716
-37;'140;Central African Republic;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;7;40;67;136;135;148;116;109;30;64;549;207;264;171;92;229;307;274;204
-37;'140;Central African Republic;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;0;0;1400;1400;1400;2900;3500;4000;8000;7500;4000;3400;2000;2000;400;2800;700;500;200;200;300;600;200;100;300;600;200;450;1000;806;69;114;29;29;16;116;24;16;36;24;16;20;16;51;16;16;19;16;234;16
-37;'140;Central African Republic;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;0;0;409;221;280;600;1050;1580;2457;2893;1288;1245;968;968;330;700;387;228;115;124;154;321;107;50;153;192;108;225;300;319;18;24;5;5;9;78;10;9;30;15;94;12;9;22;9;9;11;9;244;9
-37;'140;Central African Republic;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;1400;3900;5600;2900;4200;4900;8500;8400;5200;4700;4200;3400;3400;2800;2200;900;2100;1500;2000;2400;1600;1400;1400;2000;2000;4000;2000;2000;1000;1434;805;740;93;863;0;0;0;0;1353;0;0;0;500;500;1500;1500;1500;1500
-37;'140;Central African Republic;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;33;161;166;313;326;344;269;310;74;201;210;332;810;141;201;1086;38;0;185
-37;'140;Central African Republic;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;40;67;133;132;145;113;106;27;59;544;202;259;166;87;207;285;157;59
-37;'140;Central African Republic;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;0;0;1400;1400;1400;2900;3500;4000;8000;7500;4000;3400;2000;2000;400;2800;700;500;200;200;300;600;200;100;300;600;200;450;1000;806;40;85;0;0;0;100;8;0;20;8;0;4;0;35;0;0;3;0;218;0
-37;'140;Central African Republic;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;0;0;409;221;280;600;1050;1580;2457;2893;1288;1245;968;968;330;700;387;228;115;124;154;321;107;50;153;192;108;225;300;319;13;19;0;0;0;69;1;0;21;6;85;3;0;13;0;0;2;0;235;0
-37;'140;Central African Republic;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;10;6;6;6;6;6;0;0;0;0;0;0;0;0;416;416
-37;'140;Central African Republic;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;0;0;0;0;0;0;0;0;95;95
-37;'140;Central African Republic;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16
-37;'140;Central African Republic;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-37;'140;Central African Republic;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;16;16;16;16;17;17;17;17
-37;'140;Central African Republic;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;22;22;22;22
-37;'140;Central African Republic;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98
-37;'140;Central African Republic;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28
-37;'140;Central African Republic;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30
-37;'140;Central African Republic;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-37;'140;Central African Republic;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68
-37;'140;Central African Republic;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24
-37;'140;Central African Republic;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-37;'140;Central African Republic;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;240;288;288;447;447;447;382;382;382;382;382;498;498;498;450;1036;846;846;846;828;828
-37;'140;Central African Republic;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;118;134;134;162;162;162;161;161;161;161;161;164;164;164;148;698;676;676;676;668;668
-37;'140;Central African Republic;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;36;36;36;36;36;36;16;16;16;16;16;16;16;16
-37;'140;Central African Republic;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;11;11;11;11;11;11;11;16;16;16;16;16;16;14;14;14;14;14;14;14;14
-37;'140;Central African Republic;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;288;288;288;288;288;288;288;288;288;288;288;288;288;240;826;826;826;826;826;826
-37;'140;Central African Republic;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;134;134;134;134;134;134;134;134;134;134;134;134;134;118;668;668;668;668;668;668
-37;'140;Central African Republic;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-37;'140;Central African Republic;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-37;'140;Central African Republic;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;288;288;288;288;288;288;288;288;288;288;288;288;288;240;826;826;826;826;826;826
-37;'140;Central African Republic;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;134;134;134;134;134;134;134;134;134;134;134;134;134;118;668;668;668;668;668;668
-37;'140;Central African Republic;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;48;48;48;48;48;48;48;48;;;;;;;
-37;'140;Central African Republic;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16;16;;;;;;;
-37;'140;Central African Republic;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;240;240;240;240;240;240;240;240;240;240;240;240;240;240;826;826;826;826;826;826
-37;'140;Central African Republic;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;118;118;118;118;118;118;118;118;118;118;118;118;118;668;668;668;668;668;668
-37;'140;Central African Republic;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-37;'140;Central African Republic;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;240;240;240;240;240;240;240;240;240;240;240;240;240;240;826;826;826;826;826;826
-37;'140;Central African Republic;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;118;118;118;118;118;118;118;118;118;118;118;118;118;668;668;668;668;668;668
-37;'140;Central African Republic;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-37;'140;Central African Republic;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-37;'140;Central African Republic;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;159;159;159;94;94;94;94;94;210;210;210;210;210;20;20;20;2;2
-37;'140;Central African Republic;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;28;28;28;27;27;27;27;27;30;30;30;30;30;8;8;8;0;0
-37;'140;Central African Republic;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;15;15;15;15;15;15;15;15
-37;'140;Central African Republic;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;3;3;3;3;3;3;3;3
-37;'140;Central African Republic;1876;Paper and paperboard;5610;Import quantity;t;100;100;100;400;400;800;400;800;600;100;100;100;100;100;100;1200;100;100;500;500;500;600;600;600;100;200;200;200;400;100;100;180;300;300;300;300;200;240;200;200;200;150;883;1200;1200;814;709;767;381;502;502;312;312;549;298;128;91;123;1149;600;737;697;1628
-37;'140;Central African Republic;1876;Paper and paperboard;5622;Import value;1000 USD;28;28;44;346;346;449;271;707;404;41;44;95;162;114;114;1206;114;114;570;700;1000;2165;1626;1626;113;193;200;193;288;144;144;259;258;258;258;258;159;205;224;224;224;172;1207;912;912;923;802;978;440;859;859;413;413;884;652;250;228;161;898;697;819;923;2188
-37;'140;Central African Republic;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;167;170;170;140;116;116;179;179;179;179;179;179;179;179;179;179;178;178;159;178;99
-37;'140;Central African Republic;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;110;128;128;126;114;114;129;129;129;129;129;129;129;129;129;129;128;128;108;128;109
-37;'140;Central African Republic;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;200;200;200;200;100;100;100;100;100;100;617;465;465;217;46;177;79;65;65;52;52;261;210;53;31;31;844;441;607;516;1052
-37;'140;Central African Republic;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;183;183;183;183;74;86;86;86;86;86;404;366;366;198;44;267;108;197;197;99;99;278;134;56;42;28;380;175;223;367;887
-37;'140;Central African Republic;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;98;98;98;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;24
-37;'140;Central African Republic;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;73;73;73;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;24
-37;'140;Central African Republic;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0
-37;'140;Central African Republic;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;0;0
-37;'140;Central African Republic;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;200;200;200;200;100;100;100;100;100;100;617;465;465;217;46;177;79;65;65;52;52;261;210;51;29;29;844;441;607;516;1052
-37;'140;Central African Republic;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;183;183;183;183;74;86;86;86;86;86;404;366;366;198;44;267;108;197;197;99;99;278;134;55;41;27;379;174;221;367;887
-37;'140;Central African Republic;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;98;98;98;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;24
-37;'140;Central African Republic;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;73;73;73;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;24
-37;'140;Central African Republic;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;17;17;17;45;20;13;13;15;15;95;26;40;3;3;0;0;35;91;168
-37;'140;Central African Republic;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;14;14;14;14;82;29;147;147;30;30;103;22;41;6;6;2;0;20;66;100
-37;'140;Central African Republic;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;82;14
-37;'140;Central African Republic;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;14
-37;'140;Central African Republic;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;469;401;401;197;26;129;46;41;41;20;20;107;174;1;24;24;803;426;526;408;824
-37;'140;Central African Republic;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86;336;316;316;178;24;179;53;44;44;46;46;115;103;5;34;20;217;174;186;253;500
-37;'140;Central African Republic;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-37;'140;Central African Republic;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6
-37;'140;Central African Republic;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;47;47;3;3;3;13;11;11;17;17;59;10;10;2;2;41;15;46;17;60
-37;'140;Central African Republic;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;36;36;6;6;6;26;6;6;23;23;60;9;9;1;1;160;0;15;48;287
-37;'140;Central African Republic;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-37;'140;Central African Republic;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-37;'140;Central African Republic;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;400;400;800;400;800;600;100;100;100;100;100;100;1200;100;100;500;500;500;600;600;600;100;200;200;200;400;100;100;49;100;100;100;100;100;140;100;100;100;50;266;735;735;597;663;590;302;437;437;260;260;288;88;75;60;92;305;159;130;181;576
-37;'140;Central African Republic;1675;Other paper and paperboard;5622;Import value;1000 USD;28;28;44;346;346;449;271;707;404;41;44;95;162;114;114;1206;114;114;570;700;1000;2165;1626;1626;113;193;200;193;288;144;144;66;75;75;75;75;85;119;138;138;138;86;803;546;546;725;758;711;332;662;662;314;314;606;518;194;186;133;518;522;596;556;1301
-37;'140;Central African Republic;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;77;72;72;42;24;24;87;87;87;87;87;87;87;87;87;87;86;86;67;86;75
-37;'140;Central African Republic;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;43;55;55;53;40;40;55;55;55;55;55;55;55;55;55;55;54;54;34;54;85
-37;'140;Central African Republic;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;3;3;3;20;40;40;37;37;25;8;17;8;11;1;53;21;6;247
-37;'140;Central African Republic;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;18;18;6;6;6;31;42;42;86;86;34;15;44;12;16;3;24;16;6;58
-37;'140;Central African Republic;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;468;468;573;616;545;234;348;348;174;174;215;32;52;44;77;246;25;41;108;172
-37;'140;Central African Republic;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;290;290;593;684;619;208;508;508;116;116;147;78;85;99;92;96;256;104;190;427
-37;'140;Central African Republic;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;22;4;4;67;67;67;67;67;67;67;67;67;67;66;66;66;66;66
-37;'140;Central African Republic;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;18;5;5;20;20;20;20;20;20;20;20;20;20;19;19;19;19;19
-37;'140;Central African Republic;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;322;322;157;157;157;157;157;157;19;19;19;19;16;16;0;8;8
-37;'140;Central African Republic;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;374;374;79;79;79;79;79;79;31;31;31;31;7;7;1;5;5
-37;'140;Central African Republic;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;366;366;129;179;179;73;188;188;14;14;56;11;15;24;57;2;5;27;71;145
-37;'140;Central African Republic;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;227;227;217;207;207;119;411;411;34;34;51;30;37;65;58;15;224;75;156;388
-37;'140;Central African Republic;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;21;3;3;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66
-37;'140;Central African Republic;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;17;4;4;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19
-37;'140;Central African Republic;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;102;102;22;115;44;4;3;3;3;3;2;2;18;1;1;228;4;14;29;19
-37;'140;Central African Republic;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;63;63;23;103;38;10;18;18;3;3;17;17;17;3;3;74;25;28;29;34
-37;'140;Central African Republic;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-37;'140;Central African Republic;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-37;'140;Central African Republic;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;100;100;100;50;101;251;251;21;44;42;48;49;49;49;49;48;48;6;8;4;58;81;68;67;157
-37;'140;Central African Republic;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;138;138;138;86;500;238;238;126;68;86;93;112;112;112;112;425;425;65;75;25;419;242;476;360;816
-37;'140;Central African Republic;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;33;28;28;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;1;20;9
-37;'140;Central African Republic;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;18;30;30;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;15;35;66
-37;'140;Central African Republic;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347;438;1355;2144;2313;4327;1824
-37;'140;Central African Republic;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;76;85;80;87;383;373
-37;'140;Central African Republic;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21
-37;'140;Central African Republic;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14
-37;'140;Central African Republic;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-37;'140;Central African Republic;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13
-37;'140;Central African Republic;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21
-37;'140;Central African Republic;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-37;'140;Central African Republic;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;26;200;11;44;1;6
-37;'140;Central African Republic;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0
-37;'140;Central African Republic;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;1;249
-37;'140;Central African Republic;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-37;'140;Central African Republic;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;20;751;423;852;238;17
-37;'140;Central African Republic;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;47;47;47
-37;'140;Central African Republic;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;371;383;1689;1391;3825;1450
-37;'140;Central African Republic;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;549;13;22;17;24;242;242
-37;'140;Central African Republic;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58
-37;'140;Central African Republic;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;241;23
-37;'140;Central African Republic;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;79;69
-37;'140;Central African Republic;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3086;1869;2713;3095;4003;2748;3768
-37;'140;Central African Republic;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;50;49;51
-37;'140;Central African Republic;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-37;'140;Central African Republic;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13
-37;'140;Central African Republic;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;23;9;8;13;13;6
-37;'140;Central African Republic;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30
-37;'140;Central African Republic;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;360;258;533;406;136;350
-37;'140;Central African Republic;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-37;'140;Central African Republic;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;665;1081;1104;1139;1481;1897
-37;'140;Central African Republic;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;2
-37;'140;Central African Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782;820;1364;1449;2444;1117;1514
-37;'140;Central African Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-39;'148;Chad;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11226;9399;12541;11204;15453;10385;18703
-39;'148;Chad;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;304;205;235;345;220;217
-39;'148;Chad;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;801;704;704;769;804;729;1103;1241;1340;1742;1952;1990;1156;1199;1272;1287;1385;1403;1415;1447;1586;1610;751;751;591;1759;2774;3227;1414;2368;3690;581;691;2154;3433;2397;1650;1430;1430;1430;2038;2062;2390;2437;2437;2527;2512;1092;1534;2154;5688;3818;7428;6411;3530;3414;2186;1218;2966;3480;4630;611;2027
-39;'148;Chad;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;116;116;116;116;1038;1038;1138;1162;1162;1162;1162;259;2790;2568;2568;2568;2793;98;107;228;161;139;139;139;144;144;81
-39;'148;Chad;1861;Roundwood;5516;Production;m3;2936881;3005208;3075064;3147485;3221508;3297172;3374517;3453583;3535411;3618046;3697187;3753567;3882960;3912090;3919887;3969827;4040868;4125288;4423296;4578803;4686297;4759158;4737086;4828441;4758653;4912923;5046039;4996060;5054689;5174498;5267285;5423673;5631899;5765095;5884506;6025887;6167676;6335879;6498619;6646198;6761676;6879605;7000038;7123032;7248646;7360653;7474800;7591300;7709988;7831029;7944997;8061182;8179635;8300404;8423541;8527918;8634254;8742591;8852974;8965445;9079618;9195985;9314593
-39;'148;Chad;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;184;184;1165;513;120;1011;926;926;921;5;5;58;0;2;0;0;0;0
-39;'148;Chad;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;72;72;94;48;24;157;195;195;179;1;1;4;0;3;0;0;0;0
-39;'148;Chad;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;0;23;786;70;0;0;0;0;0;0
-39;'148;Chad;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;3;59;5;0;0;0;0;0;0
-39;'148;Chad;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;2;0;0;0;0
-39;'148;Chad;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;3;0;0;0;0
-39;'148;Chad;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;0;0;0
-39;'148;Chad;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0
-39;'148;Chad;1863;Roundwood, non-coniferous;5516;Production;m3;2936881;3005208;3075064;3147485;3221508;3297172;3374517;3453583;3535411;3618046;3697187;3753567;3882960;3912090;3919887;3969827;4040868;4125288;4423296;4578803;4686297;4759158;4737086;4828441;4758653;4912923;5046039;4996060;5054689;5174498;5267285;5423673;5631899;5765095;5884506;6025887;6167676;6335879;6498619;6646198;6761676;6879605;7000038;7123032;7248646;7360653;7474800;7591300;7709988;7831029;7944997;8061182;8179635;8300404;8423541;8527918;8634254;8742591;8852974;8965445;9079618;9195985;9314593
-39;'148;Chad;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-39;'148;Chad;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-39;'148;Chad;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-39;'148;Chad;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-39;'148;Chad;1864;Wood fuel;5516;Production;m3;2624881;2688208;2753064;2819485;2887508;2957172;3028517;3101583;3176411;3253046;3325187;3373567;3495960;3517090;3512887;3555827;3618868;3694288;3983296;4128803;4226297;4288158;4254086;4334441;4253653;4397923;4521039;4461060;4508689;4615498;4670285;4804273;4986899;5099095;5198506;5320887;5443676;5593879;5737619;5885198;6000676;6118605;6239038;6362032;6487646;6599653;6713800;6830300;6948988;7070029;7183997;7300182;7418635;7539404;7662541;7766918;7873254;7981591;8091974;8204445;8318618;8434985;8553593
-39;'148;Chad;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;;;;;;;
-39;'148;Chad;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;;;;;;;
-39;'148;Chad;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;
-39;'148;Chad;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;;
-39;'148;Chad;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1628;Wood fuel, non-coniferous;5516;Production;m3;2624881;2688208;2753064;2819485;2887508;2957172;3028517;3101583;3176411;3253046;3325187;3373567;3495960;3517090;3512887;3555827;3618868;3694288;3983296;4128803;4226297;4288158;4254086;4334441;4253653;4397923;4521039;4461060;4508689;4615498;4670285;4804273;4986899;5099095;5198506;5320887;5443676;5593879;5737619;5885198;6000676;6118605;6239038;6362032;6487646;6599653;6713800;6830300;6948988;7070029;7183997;7300182;7418635;7539404;7662541;7766918;7873254;7981591;8091974;8204445;8318618;8434985;8553593
-39;'148;Chad;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;;;;;;;
-39;'148;Chad;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;;;;;;;
-39;'148;Chad;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;
-39;'148;Chad;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;;
-39;'148;Chad;1865;Industrial roundwood;5516;Production;m3;312000;317000;322000;328000;334000;340000;346000;352000;359000;365000;372000;380000;387000;395000;407000;414000;422000;431000;440000;450000;460000;471000;483000;494000;505000;515000;525000;535000;546000;559000;597000;619400;645000;666000;686000;705000;724000;742000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000
-39;'148;Chad;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;184;184;1160;508;115;1006;921;921;916;0;0;58;0;2;0;0;0;0
-39;'148;Chad;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;72;72;93;47;23;156;194;194;178;0;0;4;0;3;0;0;0;0
-39;'148;Chad;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;0;0;763;70;0;0;0;0;0;0
-39;'148;Chad;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;56;5;0;0;0;0;0;0
-39;'148;Chad;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;967;393;0;0;0;0;0;0;0;58;0;2;0;0;0;0
-39;'148;Chad;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;24;0;0;0;0;0;0;0;4;0;3;0;0;0;0
-39;'148;Chad;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;0;0;763;70;0;0;0;0;0;0
-39;'148;Chad;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;56;5;0;0;0;0;0;0
-39;'148;Chad;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;967;393;0;0;0;0;0;0;0;58;0;2;0;0;0;0
-39;'148;Chad;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;24;0;0;0;0;0;0;0;4;0;3;0;0;0;0
-39;'148;Chad;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;0;0;763;70;0;0;0;0;0;0
-39;'148;Chad;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;56;5;0;0;0;0;0;0
-39;'148;Chad;1867;Industrial roundwood, non-coniferous;5516;Production;m3;312000;317000;322000;328000;334000;340000;346000;352000;359000;365000;372000;380000;387000;395000;407000;414000;422000;431000;440000;450000;460000;471000;483000;494000;505000;515000;525000;535000;546000;559000;597000;619400;645000;666000;686000;705000;724000;742000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000;761000
-39;'148;Chad;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;184;184;193;115;115;1006;921;921;916;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;72;72;34;23;23;156;194;194;178;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891;891;891;891;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;184;184;193;115;115;115;30;30;25;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;72;72;34;23;23;23;61;61;45;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;5000;8400;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-39;'148;Chad;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;5000;8400;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-39;'148;Chad;1871;Other industrial roundwood;5516;Production;m3;312000;317000;322000;328000;334000;340000;346000;352000;359000;365000;372000;380000;387000;395000;403000;412000;420000;429000;438000;448000;458000;469000;481000;492000;503000;513000;523000;533000;544000;556000;592000;611000;631000;652000;672000;691000;710000;728000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000
-39;'148;Chad;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;312000;317000;322000;328000;334000;340000;346000;352000;359000;365000;372000;380000;387000;395000;403000;412000;420000;429000;438000;448000;458000;469000;481000;492000;503000;513000;523000;533000;544000;556000;592000;611000;631000;652000;672000;691000;710000;728000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000;747000
-39;'148;Chad;1630;Wood charcoal;5510;Production;t;87108;91050;95170;99476;103978;108683;113600;118741;124114;129730;135281;139626;148871;151946;153606;157449;162728;169032;190212;201949;208028;211574;208245;213211;206762;216493;224794;220059;222956;229852;232937;241536;253580;260468;266423;274361;282241;291904;301287;310971;319326;327905;336715;345762;355052;364077;373300;382800;392555;402534;412871;423473;434348;445502;456942;468053;479434;491092;503033;515265;527881;540806;554048
-39;'148;Chad;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;2;0;1;1
-39;'148;Chad;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;3;3;3;3;3;3;13;0;4;1
-39;'148;Chad;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2
-39;'148;Chad;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1
-39;'148;Chad;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;2635;2635;2635;861;25;101;101;43;25;716
-39;'148;Chad;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;1079;1079;1079;314;21;50;50;79;21;63
-39;'148;Chad;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2625;2625;2625;851;15;91;91;33;15;706
-39;'148;Chad;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1071;1071;306;13;42;42;71;13;55
-39;'148;Chad;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-39;'148;Chad;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-39;'148;Chad;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1200;1500;1900;2350;2350;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2900;3400;3400;3400;3400;3400;3400
-39;'148;Chad;1872;Sawnwood;5616;Import quantity;m3;7500;6000;6000;8600;8600;6000;5900;7900;6300;9100;9400;8800;8100;7700;6200;6200;6200;6200;6200;6200;6100;6100;;;;;;;;;;93;256;8400;17400;17400;17400;17400;17400;17400;17400;17471;17471;17471;17471;17530;17530;79;79;5038;1057;1009;979;2118;1889;11576;9422;563;10332;26172;16815;214;57
-39;'148;Chad;1872;Sawnwood;5622;Import value;1000 USD;377;300;300;365;365;288;288;368;421;713;754;816;751;656;725;739;751;767;777;807;820;840;;;;;;;;;;15;43;330;1056;1056;1056;1056;1056;1056;1056;1069;1069;1069;1069;1083;1083;62;62;790;765;738;489;1465;1113;1392;1030;132;1129;1774;2374;7;7
-39;'148;Chad;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1100;1100;16;6;0;0;0;0;6;28;11;68;0;0;0;0;0;0
-39;'148;Chad;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;922;922;922;922;922;922;19;6;0;0;0;0;0;6;32;19;0;0;0;0;0;0
-39;'148;Chad;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;500;1000;1000;1000;1000;1000;1000
-39;'148;Chad;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;256;8400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;5;5;1111;17;0;248;182;0;2;0;557;0;0;0;0;2
-39;'148;Chad;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;43;330;1056;1056;1056;1056;1056;1056;1056;1056;1056;1056;1056;1056;1056;3;3;260;79;0;68;53;0;2;0;124;0;0;0;0;2
-39;'148;Chad;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;59;0;0;0;0;0;0
-39;'148;Chad;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;0;0;0;0;0;0
-39;'148;Chad;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1200;1500;1900;2350;2350;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400
-39;'148;Chad;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;7500;6000;6000;8600;8600;6000;5900;7900;6300;9100;9400;8800;8100;7700;6200;6200;6200;6200;6200;6200;6100;6100;;;;;;;;;;;;0;0;0;0;0;0;0;0;71;71;71;71;130;130;74;74;3927;1040;1009;731;1936;1889;11574;9422;6;10332;26172;16815;214;55
-39;'148;Chad;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;377;300;300;365;365;288;288;368;421;713;754;816;751;656;725;739;751;767;777;807;820;840;;;;;;;;;;;;0;0;0;0;0;0;0;0;13;13;13;13;27;27;59;59;530;686;738;421;1412;1113;1390;1030;8;1129;1774;2374;7;5
-39;'148;Chad;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1100;1100;16;6;0;0;0;0;6;28;11;9;0;0;0;0;0;0
-39;'148;Chad;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;922;922;922;922;922;922;19;6;0;0;0;0;0;6;32;6;0;0;0;0;0;0
-39;'148;Chad;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;420;2709;1453;1374;1013;205;418;363;0;0;9;0;0;0
-39;'148;Chad;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;453;3685;1958;1372;930;424;335;299;58;65;104;65;0;0
-39;'148;Chad;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;100;100;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1873;Wood-based panels;5616;Import quantity;m3;800;500;500;500;800;800;600;500;600;600;600;600;600;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;15;16;1400;1200;1500;153;153;153;153;151;151;157;207;207;694;694;638;194;238;47;49;6945;1369;406;193;311;233;111;589;508;78;143
-39;'148;Chad;1873;Wood-based panels;5622;Import value;1000 USD;80;60;60;60;95;97;156;158;201;201;201;201;200;331;335;336;338;340;342;344;346;350;331;331;331;331;331;331;331;331;331;16;14;864;1158;861;21;21;21;21;17;17;44;62;62;168;168;172;64;31;261;57;4434;862;353;164;218;201;99;376;365;30;75
-39;'148;Chad;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;23;23;23;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1640;Plywood and LVL;5616;Import quantity;m3;800;500;500;500;800;800;600;500;600;600;600;600;600;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;15;16;1400;1200;1500;2;2;2;2;0;0;0;50;50;478;478;478;44;88;45;47;6941;1365;403;190;285;207;33;511;430;0;78
-39;'148;Chad;1640;Plywood and LVL;5622;Import value;1000 USD;80;60;60;60;95;97;156;158;201;201;201;201;200;331;335;336;338;340;342;344;346;350;331;331;331;331;331;331;331;331;331;16;14;864;1158;861;4;4;4;4;0;0;0;18;18;151;151;151;47;14;259;55;4421;849;350;161;205;188;91;368;357;22;32
-39;'148;Chad;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;23;23;23;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;3;3;3;3;9;9;9;68;68;12;2;2;2;2;4;4;3;3;26;26;78;78;78;78;11
-39;'148;Chad;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2;2;2;2;29;29;29;2;2;6;2;2;2;2;13;13;3;3;13;13;8;8;8;8;2
-39;'148;Chad;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;148;148;148;148;148;148;148;148;148;148;148;148;;;;;;;;;;;;;54
-39;'148;Chad;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;;;;;;;;41
-39;'148;Chad;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54
-39;'148;Chad;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41
-39;'148;Chad;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;148;148;148;148;148;148;148;148;148;148;148;148;;;;;;;;;;;;;
-39;'148;Chad;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;;;;;;;;
-39;'148;Chad;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;0;0;0;0;0;0;200;200;36;36;36;125;174;545;558;543;543;543;543;731;135;135;135;135;135;21;26;26;87
-39;'148;Chad;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;17;0;0;0;0;0;0;138;138;21;21;21;128;45;104;141;102;102;102;102;108;35;35;35;35;35;29;18;18;31
-39;'148;Chad;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;248;248;248;248;248;248;248;248;248;248;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;116;116;116;116;116;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;0;0;0;0;0;0;0;0;13;13;13;99;24;11;24;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-39;'148;Chad;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;17;0;0;0;0;0;0;0;0;19;19;19;126;27;17;54;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-39;'148;Chad;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;248;248;248;248;248;248;248;248;248;248;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;116;116;116;116;116;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;0;0;0;0;0;0;0;0;0;0;0;86;10;10;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;17;0;0;0;0;0;0;0;0;0;0;0;107;14;15;39;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;248;248;248;248;248;248;248;248;248;248;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;116;116;116;116;116;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;0;0;0;0;0;0;0;0;0;0;0;86;10;10;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;17;0;0;0;0;0;0;0;0;0;0;0;107;14;15;39;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;248;248;248;248;248;248;248;248;248;248;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;116;116;116;116;116;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;248;248;248;248;248;248;248;248;248;248;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;116;116;116;116;116;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;10;10;15;0;0;0;0;0;0;0;;;;;;;
-39;'148;Chad;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;14;15;39;0;0;0;0;0;0;0;;;;;;;
-39;'148;Chad;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;14;1;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-39;'148;Chad;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;13;2;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-39;'148;Chad;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22
-39;'148;Chad;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17
-39;'148;Chad;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;23;23;23;26;150;534;534;534;534;534;534;722;126;126;126;126;126;12;17;17;78
-39;'148;Chad;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;2;2;2;2;18;87;87;87;87;87;87;93;20;20;20;20;20;14;3;3;16
-39;'148;Chad;1876;Paper and paperboard;5610;Import quantity;t;300;300;300;300;300;300;600;800;800;1200;1400;1200;300;200;200;200;300;300;300;300;400;500;500;500;300;2000;3200;3200;1000;1400;1700;423;462;700;900;400;553;353;353;353;900;617;753;1726;1726;420;587;272;819;479;312;366;557;458;296;280;198;727;1019;754;1000;309;1214
-39;'148;Chad;1876;Paper and paperboard;5622;Import value;1000 USD;344;344;344;344;344;344;659;715;718;828;997;973;205;212;212;212;296;296;296;296;420;420;420;420;260;1428;2443;2896;1083;2037;3359;539;617;943;1219;480;573;353;353;353;827;837;1255;1271;1271;1064;1132;648;1182;728;692;742;810;1768;505;388;266;751;1565;1117;1712;514;1833
-39;'148;Chad;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;22;22;22;22;22;163;163;163;163;200;59;59;62;62;63;63;63;65;65;40
-39;'148;Chad;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;2568;2568;2568;2568;2642;98;98;137;137;138;138;138;143;143;80
-39;'148;Chad;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;100;100;100;100;200;200;200;200;200;300;300;300;100;500;1000;1100;400;200;200;160;163;200;500;100;88;88;88;88;200;165;337;524;524;203;405;186;141;168;115;274;443;239;139;183;98;477;604;507;480;84;865
-39;'148;Chad;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;34;54;54;54;176;176;176;176;250;250;250;250;90;428;943;1168;435;337;359;258;263;325;671;179;114;114;114;114;282;169;485;400;400;358;661;396;249;316;273;436;527;307;196;173;120;489;882;785;765;147;1193
-39;'148;Chad;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;106;106;106;106;106;0;0;0;0;1;1;1;1;1;1
-39;'148;Chad;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;1504;1504;1504;1504;1504;0;0;0;0;1;1;1;1;1;1
-39;'148;Chad;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;;0;0;0;0;0;0;0;0;0;19;46;46;19;6;6;6;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;;0;0;0;0;0;0;0;0;0;22;23;23;24;10;10;10;3;3;3;3;0;0;0;2;0;0;0;0;0;0
-39;'148;Chad;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;0;0;0;0;1;1;1;1;1;1
-39;'148;Chad;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1504;1504;1504;1504;1504;0;0;0;0;1;1;1;1;1;1
-39;'148;Chad;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;100;100;100;100;200;200;200;200;200;300;300;300;100;500;1000;1100;400;200;200;127;163;200;500;100;88;88;88;88;200;165;318;478;478;184;399;180;135;167;114;273;442;239;139;183;98;477;604;507;480;84;865
-39;'148;Chad;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;34;54;54;54;176;176;176;176;250;250;250;250;90;428;943;1168;435;337;359;228;263;325;671;179;114;114;114;114;282;169;463;377;377;334;651;386;239;313;270;433;524;307;196;173;118;489;882;785;765;147;1193
-39;'148;Chad;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;130;107;84;25;25;28;52;17;4;20;3;29;18;4;6;6;6;6;7;25;4;1;39
-39;'148;Chad;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;162;97;96;20;20;32;78;28;5;37;4;69;55;18;10;10;10;10;11;192;71;4;97
-39;'148;Chad;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;166;206;206;68;93;61;116;89;53;99;170;181;60;149;49;84;315;375;191;73;800
-39;'148;Chad;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;7;4;270;162;162;92;147;140;212;105;95;188;185;200;114;139;55;103;472;443;375;111;1032
-39;'148;Chad;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;68;56;68;247;247;88;254;102;15;58;58;145;254;54;73;28;43;387;282;107;285;10;26
-39;'148;Chad;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;113;68;97;195;195;210;426;218;22;171;171;176;284;89;72;24;53;376;399;150;319;32;64
-39;'148;Chad;1675;Other paper and paperboard;5610;Import quantity;t;300;300;300;300;300;300;600;800;800;1200;1400;1200;200;100;100;100;100;100;100;100;200;200;200;200;200;1500;2200;2100;600;1200;1500;263;299;500;400;300;465;265;265;265;700;452;416;1202;1202;217;182;86;678;311;197;92;114;219;157;97;100;250;415;247;520;225;349
-39;'148;Chad;1675;Other paper and paperboard;5622;Import value;1000 USD;344;344;344;344;344;344;659;715;718;828;997;973;171;158;158;158;120;120;120;120;170;170;170;170;170;1000;1500;1728;648;1700;3000;281;354;618;548;301;459;239;239;239;545;668;770;871;871;706;471;252;933;412;419;306;283;1461;309;215;146;262;683;332;947;367;640
-39;'148;Chad;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;22;22;22;22;22;57;57;57;57;94;59;59;62;62;62;62;62;64;64;39
-39;'148;Chad;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;1064;1064;1064;1064;1138;98;98;137;137;137;137;137;142;142;79
-39;'148;Chad;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;22;27;27;12;12;12;202;202;19;11;19;9;16;11;34;23;42;47;47;46;50
-39;'148;Chad;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;67;30;30;18;18;18;133;133;66;27;53;35;38;13;35;27;84;94;62;48;106
-39;'148;Chad;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;37;37;37
-39;'148;Chad;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;74;74;74;74;74
-39;'148;Chad;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;408;324;789;789;128;81;57;472;88;158;61;75;201;132;73;61;223;373;185;425;176;294
-39;'148;Chad;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;445;382;475;475;319;291;115;746;238;313;239;190;1348;193;108;65;197;585;210;546;295;492
-39;'148;Chad;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;0;0;0;0;0;0;0;2;2;2
-39;'148;Chad;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1040;1040;1040;1040;1040;0;0;0;0;0;0;0;5;5;5
-39;'148;Chad;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;40;40;40;40;2;1;1;1;1;20;0;0;0;0;14;14;1;0
-39;'148;Chad;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;51;51;51;51;2;8;8;8;8;28;0;0;0;0;11;10;1;0
-39;'148;Chad;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1040;1040;1040;1040;1040;0;0;0;0;0;0;0;0;0;0
-39;'148;Chad;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;137;93;272;272;57;14;12;424;66;126;29;72;35;42;9;11;65;34;11;22;53;51
-39;'148;Chad;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;208;180;169;169;147;49;36;655;139;159;85;151;116;99;21;29;60;95;33;66;137;139
-39;'148;Chad;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2
-39;'148;Chad;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;5;5
-39;'148;Chad;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;31;317;317;30;25;4;7;19;30;30;1;164;21;15;1;21;67;0;33;4;16
-39;'148;Chad;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;92;196;196;115;174;27;14;71;120;120;5;1223;37;58;7;49;198;1;47;8;36
-39;'148;Chad;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;1;2;1;1;1;1;1;1;1;49;49;49;137;272;160;356;118;227
-39;'148;Chad;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;6;17;1;26;26;26;26;26;1;29;29;29;88;292;165;423;149;317
-39;'148;Chad;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;265;265;400;42;70;386;386;77;89;17;4;21;20;20;20;9;9;13;5;4;0;15;48;3;5
-39;'148;Chad;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;239;239;215;214;321;366;366;369;162;119;54;41;40;40;40;78;78;94;46;38;14;28;339;24;42
-39;'148;Chad;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;22;22;22;22;22;22;22;22;22;22;22;22;25;25;25;25;25;25;25;0
-39;'148;Chad;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;24;24;24;24;24;24;24;24;24;24;24;24;63;63;63;63;63;63;63;0
-39;'148;Chad;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3121;970;2512;1962;3696;4057;6104
-39;'148;Chad;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;137;60;54;106;59;136
-39;'148;Chad;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;39;11;34;60;67
-39;'148;Chad;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44
-39;'148;Chad;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40
-39;'148;Chad;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;39;11;34;60;67
-39;'148;Chad;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-39;'148;Chad;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;29;347;339;235;37;33
-39;'148;Chad;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;2;2;2
-39;'148;Chad;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;16;2;5;6;18;45
-39;'148;Chad;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;5;1;0
-39;'148;Chad;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418;158;361;223;721;228;828
-39;'148;Chad;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7
-39;'148;Chad;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2626;739;1695;1072;2602;3697;5113
-39;'148;Chad;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;83;6;0;48;5;83
-39;'148;Chad;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-39;'148;Chad;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;22;68;312;98;17;18
-39;'148;Chad;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0
-39;'148;Chad;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5919;7211;7063;5762;7127;5717;10572
-39;'148;Chad;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;28;6;42;95;17;0
-39;'148;Chad;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;5;5
-39;'148;Chad;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;90;105;165;160;114;8
-39;'148;Chad;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;0;0;0;0;0
-39;'148;Chad;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699;914;635;637;565;462;462
-39;'148;Chad;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0
-39;'148;Chad;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2259;2598;2637;1411;2016;493;684
-39;'148;Chad;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;40;85;16;0
-39;'148;Chad;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2789;3609;3686;3549;4381;4643;9413
-39;'148;Chad;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;24;1;2;9;1;0
-40;'152;Chile;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1282145;1527746;1379998;1096628;1940231.27;1900764;1181188
-40;'152;Chile;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5097878;6514090;5335195;4636335;5735379.69;6066888;5245913
-40;'152;Chile;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3639;3081;4318;6726;5715;1730;3322;3902;4524;5428;6860;8558;11295;6751;4970;10150;24750;25350;43300;45100;43300;24900;49300;32216;41756;38577;45887;45887;67168;77326;77181;152226;153067;136910;200067;205830;283504;281420;224823;237597;240666;262086;280428;409918;353962;508747;598447;622955;465411;720493;751115;758338;798162;760745;745211;707802;727580;912372;807913;637815;1106789.27;1056073;600523
-40;'152;Chile;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;7558;5634;5530;7601;10945;12349;14648;27409;35400;40264;37623;29833;40181;131397;128243;134103;170837;220608;340187;458781;368617;321075;312575;371472;355346;377842;523683;683561;724728;804892;833767;1079557;1076553;1345202;2139866;1471428;1515280;1347612;1526286;1930858;1732566;1772758;1904843;2602090;2735159;3083163;4338288;4674620;3518446;4309739;5234476;4673511;4946286;4998958;4676570;4500222;4656247;6064695;4915443;4206822;5169162.69;5387518;4776325
-40;'152;Chile;1861;Roundwood;5516;Production;m3;5285298;5828721;5442323;6478269;6632728;6960878;6268903;7190991;7220342;8008161;9284000;9235000;8698000;9203000;9206000;10046000;10596414;11399000;13234000;13326000;13304000;12270000;13789000;15194000;15916000;16978000;17701000;18854000;19003000;22085000;24508797;28373000;29855000;31053000;34580011;29831000;29977000;31729000;33973000;36568000;37790000;37817139;37001371;42587709;45642000;46705000;52633000;54833000;51023000;47215000;55148000;55073000;57190789;58702789;59756789;60675789;62108789;63717133;61432334;59685199;59775374;56672789;55871789
-40;'152;Chile;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770;92;591;972;404;404;0;0;0;0;0;0;0;0;0;0;0;0;0;0;165;2998;5941;7130;0;9023;27136;1009;560;2265;560;228;4589;10532
-40;'152;Chile;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;13;42;77;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;318;914;889;61;1520;3656;122;294;550;273;50;1040;2053
-40;'152;Chile;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;6200;17000;147600;679200;965700;1052400;361100;892000;1026300;905600;1275100;1302500;1950300;2799600;1993500;2245416;1837582;1424802;1585300;1842400;2226300;1615900;1728900;415000;915000;681000;512000;522000;300000;347000;149000;111000;85000;44000;10644;36747;46173;11266;7032;28000;16532;30677;172271;289911;281640;192905;219842;129614;116859
-40;'152;Chile;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;603;726;4302;20595;31235;56835;17672;36891;34587;29880;40371;42854;69038;108421;74557;95525;82495;74573;130024;113897;135400;74668;106859;23223;50083;35847;26349;24649;13027;18104;11225;8146;7762;5495;1799;3334;6661;1783;1255;6124;3248;3949;20573;39898;36249;19158;33863;19925;30800
-40;'152;Chile;1862;Roundwood, coniferous;5516;Production;m3;1870356;2059715;2143701;2779339;2749653;3554671;3008420;3536928;3522226;3884343;4108000;4075000;4249000;4824000;4785000;5451000;6347985;6766000;8052000;7944000;7847000;6829000;7982000;8830000;9394000;10230000;10676000;11603000;11597000;13951000;16029903;19066000;20276000;21189000;24417627;19437000;19930000;17971000;19359000;20626000;22201000;22036444;23670364;28069099;27697000;27557000;29628000;29203000;26946000;24787000;28611000;28820000;31396789;33202789;33682789;33370789;33412789;34582789;32648862;30846265;32332789;31003789;28105789
-40;'152;Chile;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;16;381;228;149;4457;10134
-40;'152;Chile;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;58;38;26;914;1996
-40;'152;Chile;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129461;257187;272288;188648;202849;127828;114000
-40;'152;Chile;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15300;35662;35154;18569;31665;19706;30482
-40;'152;Chile;1863;Roundwood, non-coniferous;5516;Production;m3;3414942;3769006;3298622;3698930;3883075;3406207;3260483;3654063;3698116;4123818;5176000;5160000;4449000;4379000;4421000;4595000;4248429;4633000;5182000;5382000;5457000;5441000;5807000;6364000;6522000;6748000;7025000;7251000;7406000;8134000;8478894;9307000;9579000;9864000;10162384;10394000;10047000;13758000;14614000;15942000;15589000;15780695;13331007;14518610;17945000;19148000;23005000;25630000;24077000;22428000;26537000;26253000;25794000;25500000;26074000;27305000;28696000;29134344;28783472;28838934;27442585;25669000;27766000
-40;'152;Chile;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005;544;1884;332;79;132;398
-40;'152;Chile;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;289;492;235;24;126;57
-40;'152;Chile;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42810;32724;9352;4257;16993;1786;2859
-40;'152;Chile;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5273;4236;1095;589;2198;219;318
-40;'152;Chile;1864;Wood fuel;5516;Production;m3;2296298;2398721;2505323;2616269;2731728;2851878;2976903;3106991;3242342;3383161;3987000;3875000;3786000;3987000;4028000;4230000;4574414;4743000;4892000;5125000;5150000;5319000;5845000;6215000;6323000;6586000;6879000;7127000;7169000;7699000;8194797;9016000;9321000;9666000;9700011;10449000;10407000;10415000;10794000;12131000;12108000;12326139;12712371;13110709;13113000;13488000;14216000;14955000;14621000;12655000;15998000;15998000;16121789;16121789;16121789;16121789;16121789;16121789;16121789;16121789;16121789;16121789;15923789
-40;'152;Chile;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520;0;0;0;0;0;2;0;362;156;149;4384;10414
-40;'152;Chile;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;0;0;0;0;0;2;0;44;70;32;919;1969
-40;'152;Chile;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;0
-40;'152;Chile;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-40;'152;Chile;1627;Wood fuel, coniferous;5516;Production;m3;344356;359715;375701;392339;409653;427671;446420;465928;486226;507343;558000;543000;530000;558000;564000;592000;685985;664000;685000;718000;721000;745000;818000;870000;885000;922000;963000;998000;1004000;1078000;1228903;1352000;1398000;1450000;1454627;1567000;1561000;1562000;1619000;1820000;1816000;1848444;1906364;1966099;1967000;2023000;2132000;2243000;2193000;1898000;2400000;2400000;2523789;2523789;2523789;2523789;2523789;2523789;2523789;2523789;2523789;2523789;2325789
-40;'152;Chile;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;355;137;148;4370;10022
-40;'152;Chile;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;40;17;25;884;1934
-40;'152;Chile;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-40;'152;Chile;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-40;'152;Chile;1628;Wood fuel, non-coniferous;5516;Production;m3;1951942;2039006;2129622;2223930;2322075;2424207;2530483;2641063;2756116;2875818;3429000;3332000;3256000;3429000;3464000;3638000;3888429;4079000;4207000;4407000;4429000;4574000;5027000;5345000;5438000;5664000;5916000;6129000;6165000;6621000;6965894;7664000;7923000;8216000;8245384;8882000;8846000;8853000;9175000;10311000;10292000;10477695;10806007;11144610;11146000;11465000;12084000;12712000;12428000;10757000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000;13598000
-40;'152;Chile;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;7;19;1;14;392
-40;'152;Chile;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;4;53;7;35;35
-40;'152;Chile;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-40;'152;Chile;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-40;'152;Chile;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520;0;0;0;0;0;;;;;;;
-40;'152;Chile;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;0;0;0;0;0;;;;;;;
-40;'152;Chile;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;;;;;;;
-40;'152;Chile;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;;;;;;;
-40;'152;Chile;1865;Industrial roundwood;5516;Production;m3;2989000;3430000;2937000;3862000;3901000;4109000;3292000;4084000;3978000;4625000;5297000;5360000;4912000;5216000;5178000;5816000;6022000;6656000;8342000;8201000;8154000;6951000;7944000;8979000;9593000;10392000;10822000;11727000;11834000;14386000;16314000;19357000;20534000;21387000;24880000;19382000;19570000;21314000;23179000;24437000;25682000;25491000;24289000;29477000;32529000;33217000;38417000;39878000;36402000;34560000;39150000;39075000;41069000;42581000;43635000;44554000;45987000;47595344;45310545;43563410;43653585;40551000;39948000
-40;'152;Chile;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770;92;591;972;404;404;0;0;0;0;0;0;0;0;0;0;0;0;0;0;165;478;5941;7130;0;9023;27136;1007;560;1903;404;79;205;118
-40;'152;Chile;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;13;42;77;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;85;914;889;61;1520;3656;120;294;506;203;18;121;84
-40;'152;Chile;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;6200;17000;147600;679200;965700;1052400;361100;892000;1026300;905600;1275100;1302500;1950300;2799600;1993500;2245416;1837582;1424802;1585300;1842400;2226300;1615900;1728900;415000;915000;681000;512000;522000;300000;347000;149000;111000;85000;44000;10644;36747;46173;11266;7032;28000;16532;30667;172271;289911;281640;192905;219842;129614;116859
-40;'152;Chile;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;603;726;4302;20595;31235;56835;17672;36891;34587;29880;40371;42854;69038;108421;74557;95525;82495;74573;130024;113897;135400;74668;106859;23223;50083;35847;26349;24649;13027;18104;11225;8146;7762;5495;1799;3334;6661;1783;1255;6124;3248;3948;20573;39898;36249;19158;33863;19925;30800
-40;'152;Chile;1866;Industrial roundwood, coniferous;5516;Production;m3;1526000;1700000;1768000;2387000;2340000;3127000;2562000;3071000;3036000;3377000;3550000;3532000;3719000;4266000;4221000;4859000;5662000;6102000;7367000;7226000;7126000;6084000;7164000;7960000;8509000;9308000;9713000;10605000;10593000;12873000;14801000;17714000;18878000;19739000;22963000;17870000;18369000;16409000;17740000;18806000;20385000;20188000;21764000;26103000;25730000;25534000;27496000;26960000;24753000;22889000;26211000;26420000;28873000;30679000;31159000;30847000;30889000;32059000;30125073;28322476;29809000;28480000;25780000
-40;'152;Chile;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770;64;568;568;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;281;4770;7130;0;8252;25816;4;16;26;91;1;87;112
-40;'152;Chile;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;4;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;33;614;889;61;717;2801;6;5;18;21;1;30;62
-40;'152;Chile;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1872708;1545056;1305911;1452400;1671300;1938900;1522900;1541000;337000;491000;159000;150000;276000;174000;185000;115000;61000;55000;24000;8732;9747;43771;9466;6432;26000;7830;25407;129461;257187;272288;188648;202849;127828;114000
-40;'152;Chile;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79688;67177;65387;121187;103307;118000;68000;94225;17598;24630;6926;5844;12093;6735;10000;8583;5046;6158;4582;1301;1068;5869;1183;955;5110;830;2372;15300;35662;35154;18569;31665;19706;30482
-40;'152;Chile;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770;64;568;568;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;281;4770;7130;0;8252;25816;4;16;26;91;1;87;112
-40;'152;Chile;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;4;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;33;614;889;61;717;2801;6;5;18;21;1;30;62
-40;'152;Chile;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1872708;1545056;1305911;1452400;1671300;1938900;1522900;1541000;337000;491000;159000;150000;276000;174000;185000;115000;61000;55000;24000;8732;9747;43771;9466;6432;26000;7830;25407;129461;257187;272288;188648;202849;127828;114000
-40;'152;Chile;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79688;67177;65387;121187;103307;118000;68000;94225;17598;24630;6926;5844;12093;6735;10000;8583;5046;6158;4582;1301;1068;5869;1183;955;5110;830;2372;15300;35662;35154;18569;31665;19706;30482
-40;'152;Chile;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1463000;1730000;1169000;1475000;1561000;982000;730000;1013000;942000;1248000;1747000;1828000;1193000;950000;957000;957000;360000;554000;975000;975000;1028000;867000;780000;1019000;1084000;1084000;1109000;1122000;1241000;1513000;1513000;1643000;1656000;1648000;1917000;1512000;1201000;4905000;5439000;5631000;5297000;5303000;2525000;3374000;6799000;7683000;10921000;12918000;11649000;11671000;12939000;12655000;12196000;11902000;12476000;13707000;15098000;15536344;15185472;15240934;13844585;12071000;14168000
-40;'152;Chile;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;23;404;404;404;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;197;1171;0;0;771;1320;1003;544;1877;313;78;118;6
-40;'152;Chile;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;52;300;0;0;803;855;114;289;488;182;17;91;22
-40;'152;Chile;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372708;292526;118891;132900;171100;287400;93000;187900;78000;424000;522000;362000;246000;126000;162000;34000;50000;30000;20000;1912;27000;2402;1800;600;2000;8702;5260;42810;32724;9352;4257;16993;1786;2859
-40;'152;Chile;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15837;15318;9186;8837;10590;17400;6668;12634;5625;25453;28921;20505;12556;6292;8104;2642;3100;1604;913;498;2266;792;600;300;1014;2418;1576;5273;4236;1095;589;2198;219;318
-40;'152;Chile;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;24;0;0;67;118;6
-40;'152;Chile;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;0;0;15;73;7
-40;'152;Chile;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;49;105;431;635;0;128;0;19
-40;'152;Chile;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;23;108;75;130;0;47;0;17
-40;'152;Chile;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;23;404;404;404;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;197;1171;0;0;770;1320;1002;520;1877;313;11;0;0
-40;'152;Chile;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;52;300;0;0;803;855;114;275;488;182;2;18;15
-40;'152;Chile;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372708;292526;118891;132900;171100;287400;93000;187900;78000;424000;522000;362000;246000;126000;162000;34000;50000;30000;20000;1912;27000;2402;1800;600;2000;8607;5211;42705;32293;8717;4257;16865;1786;2840
-40;'152;Chile;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15837;15318;9186;8837;10590;17400;6668;12634;5625;25453;28921;20505;12556;6292;8104;2642;3100;1604;913;498;2266;792;600;300;1014;2375;1553;5165;4161;965;589;2151;219;301
-40;'152;Chile;1868;Sawlogs and veneer logs;5516;Production;m3;2181000;2462000;1820000;2345000;2412000;2237000;1722000;2357000;2216000;2810000;3407000;3364000;3168000;3060000;3000000;3000000;3008000;3268000;4812000;4812000;4000000;3298000;3639000;4537000;5160000;5751000;5568000;5665000;6203000;7801000;7801000;8482000;9238000;10011000;11645000;11024000;12132000;10313000;11783000;12424000;13107000;13962000;13740000;15985000;17921000;18725000;17866000;16475000;13962000;14905000;16147000;16137000;17164000;20028000;21217000;19889000;19229000;21507000;18929432;18584607;19856000;18241000;16381000
-40;'152;Chile;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;6200;17000;147600;679200;965700;1052400;361100;892000;1026300;905600;1275100;1163700;1273700;1404400;862500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;603;726;4302;20595;31235;56835;17672;36891;34587;29880;40371;38899;50396;63461;35076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;848000;926000;759000;1100000;1063000;1269000;999000;1351000;1281000;1620000;1970000;1820000;2173000;2300000;2300000;2300000;2886000;2952000;4075000;4075000;3360000;2772000;3200000;3859000;4417000;5008000;4800000;4884000;5303000;6629000;6629000;7180000;7923000;8704000;10125000;9878000;10982000;9335000;10835000;11498000;12309000;13279000;13300000;15548000;17079000;17954000;17147000;15759000;13330000;14230000;15523000;15425000;16550000;19443000;20513000;19229000;18643000;20884000;18450758;18121146;19631000;18020000;16225000
-40;'152;Chile;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;3000;146600;674500;954000;1003800;359100;888400;1023000;901200;1270700;1161900;1271100;1399700;861100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;84;4219;20265;30070;52862;17311;36032;33798;29440;39931;38686;50073;62842;34914;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1333000;1536000;1061000;1245000;1349000;968000;723000;1006000;935000;1190000;1437000;1544000;995000;760000;700000;700000;122000;316000;737000;737000;640000;526000;439000;678000;743000;743000;768000;781000;900000;1172000;1172000;1302000;1315000;1307000;1520000;1146000;1150000;978000;948000;926000;798000;683000;440000;437000;842000;771000;719000;716000;632000;675000;624000;712000;614000;585000;704000;660000;586000;623000;478674;463461;225000;221000;156000
-40;'152;Chile;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;6200;14000;1000;4700;11700;48600;2000;3600;3300;4400;4400;1800;2600;4700;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;603;642;83;330;1165;3973;361;859;789;440;440;213;323;619;162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10738000;11147000;11802000;12386000;11321000;10365000;13223000;14329000;14283000;20359000;23232000;22279000;19424000;22722000;22673000;23618000;22153000;22127000;24344000;26412000;25752000;26046150;24632136;23144000;22047000;23318000
-40;'152;Chile;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6858000;6665000;7103000;7894000;6708000;8282000;10291000;8382000;7387000;10176000;11040000;11268000;8432000;10412000;10741000;12047000;10843000;10359000;11299000;11903000;10840000;11342475;9856379;9530000;10198000;9307000
-40;'152;Chile;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880000;4482000;4699000;4492000;4613000;2083000;2932000;5947000;6896000;10183000;12192000;11011000;10992000;12310000;11932000;11571000;11310000;11768000;13045000;14509000;14912000;14703675;14775757;13614000;11849000;14011000
-40;'152;Chile;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;138800;676600;1395200;1131000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3955;18642;44960;39481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1870;Pulpwood and particles (1961-1997);5516;Production;m3;608000;679000;900000;1101000;1130000;1732000;1478000;1586000;1610000;1650000;1470000;1607000;1481000;1888000;1826000;2464000;2681000;3055000;3197000;3056000;3500000;3100000;3752000;3889000;3880000;4088000;4701000;5509000;5078000;6032000;7960000;10322000;10743000;10823000;12591000;7765000;7063000;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;138800;676600;1395200;1131000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3955;18642;44960;39481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;608000;679000;900000;1101000;1130000;1732000;1478000;1586000;1610000;1650000;1470000;1607000;1481000;1888000;1826000;2464000;2681000;3055000;3197000;3056000;3500000;3100000;3752000;3889000;3880000;4088000;4701000;5509000;5078000;6032000;7960000;10322000;10743000;10823000;12591000;7765000;7063000;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1871;Other industrial roundwood;5516;Production;m3;200000;289000;217000;416000;359000;140000;92000;141000;152000;165000;420000;389000;263000;268000;352000;352000;333000;333000;333000;333000;654000;553000;553000;553000;553000;553000;553000;553000;553000;553000;553000;553000;553000;553000;644000;593000;375000;263000;249000;211000;189000;208000;184000;269000;279000;209000;192000;171000;161000;231000;281000;265000;287000;400000;291000;321000;346000;336344;334963;346667;653585;263000;249000
-40;'152;Chile;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;70000;95000;109000;186000;147000;126000;85000;134000;145000;107000;110000;105000;65000;78000;95000;95000;95000;95000;95000;95000;266000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;247000;227000;324000;216000;240000;205000;182000;201000;182000;264000;269000;193000;173000;161000;155000;227000;276000;254000;276000;393000;287000;319000;343000;335000;331840;344951;648000;262000;248000
-40;'152;Chile;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;130000;194000;108000;230000;212000;14000;7000;7000;7000;58000;310000;284000;198000;190000;257000;257000;238000;238000;238000;238000;388000;341000;341000;341000;341000;341000;341000;341000;341000;341000;341000;341000;341000;341000;397000;366000;51000;47000;9000;6000;7000;7000;2000;5000;10000;16000;19000;10000;6000;4000;5000;11000;11000;7000;4000;2000;3000;1344;3123;1716;5585;1000;1000
-40;'152;Chile;1630;Wood charcoal;5510;Production;t;149958;153193;156189;159248;162371;165058;169012;172934;176425;179986;180581;186809;195089;197464;214973;218613;218681;219443;219413;219801;221638;235455;244296;244128;244780;246109;246842;247008;245285;248685;248922;246192;246930;249423;248186;247637;246856;248571;250537;252518;252311;252104;251897;251690;251483;250883;250300;250000;249092;248498;247848;247200;246553;245909;245266;244118;242975;241838;240707;239580;238422;237269;236122
-40;'152;Chile;1630;Wood charcoal;5610;Import quantity;t;400;200;300;400;500;1100;500;500;500;500;500;500;800;2800;;;;;;;;;;;;;;;;;;141;248;200;200;200;0;0;0;865;865;2000;4000;2954;4779;7100;26000;26000;29000;37000;37540;40421;41906;39356;39395;37222;36607;40697;41049;46062;82957.36;67000;61000
-40;'152;Chile;1630;Wood charcoal;5622;Import value;1000 USD;67;46;50;73;89;197;92;92;92;92;92;92;150;530;;;;;;;;;;;;;;;;;;29;46;37;37;37;0;0;0;149;149;482;941;1495;2418;3592;4539;5498;6005;8612;12678;13891;14282;13463;13155;12240;12423;13493;13078;11472;20137.9;16591;15448
-40;'152;Chile;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;60;60;60;0;0;0;0;0;0;0;0;0;0;63;19;10;1;3;125;0;23;0;0;0;0;415;19;3;3;0
-40;'152;Chile;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;95;95;95;0;0;0;0;0;0;0;0;0;0;29;10;10;5;2;200;0;11;0;0;0;0;158;5;1;8;0
-40;'152;Chile;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7374000;7756000;8009000;8102000;7414000;8696000;8945000;9485000;12144721;12303823;12473297;11058587;12313346;13116769;12980128;13386897;13723546;14175051;15636365;16045550;17054274;15590714;14685533;14244846;12478513;11409327
-40;'152;Chile;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1000;1000;850;748;501;587;1685;590;408;381;420;871;382;678;732;1022
-40;'152;Chile;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1984;1185;983;2437;2356;1731;2521;2081;2082;2196;2109;2573;1743;2924;2845;3489
-40;'152;Chile;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2357000;2399800;2586200;2839100;2428800;2675200;2531100;2804400;3064000;3316000;4437000;3770202;4583400;4991500;4270515;3739749;3978209;3801466;5293600;5804100;6245801;5904072;5209112;3945757.1;3095001;2859000
-40;'152;Chile;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130506;133021;133708;148118;122642;130114;137323;160420;189543;218751;330638;276882;334372;406877;370583;315150;308357;276108;348800;362500;394102;396498;340392;257175.28;193305;192619
-40;'152;Chile;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5458000;5840000;6093000;6186000;5498000;6780000;7029000;7569000;7727000;8669000;9381000;8337000;9332000;10158000;9799000;9889000;10141200;10207800;11633500;12282100;12709900;11599100;10691800;10211000;8947500;8155300
-40;'152;Chile;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;219;294;378;388;378;408;357;364;740;362;567;616;1000
-40;'152;Chile;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1161;1713;1170;1719;1637;2082;2178;2042;2403;1701;2817;2702;3428
-40;'152;Chile;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;184000;670200;1342000;2685800;3298000;3372400;3552700;2839600;3165200;4561900;3237100;3014800;2357000;2399800;2586200;2839100;2428800;2675200;2531100;2804400;3064000;3316000;4437000;3766800;4580400;4986500;4270500;3739700;3978100;3801100;5293600;5804100;6245800;5904063;5209112;3945632.1;3095000;2859000
-40;'152;Chile;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3494;13019;33588;83847;109280;151500;167046;137658;165514;232829;170900;146938;130506;133021;133708;148118;122642;130114;137323;160420;189543;218751;330638;276251;333671;405990;370510;315073;307700;275700;348800;362500;394100;396486;340390;257143.28;193301;192619
-40;'152;Chile;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976000;2080000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;1916000;4417721;3634823;3092297;2721587;2981346;2958769;3181128;3497897;3582346;3967251;4002865;3763450;4344374;3991614;3993733;4033846;3531013;3254027
-40;'152;Chile;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520;1763;1763;2700;2000;2000;0;0;0;0;0;0;0;0;0;0;1000;1000;850;529;207;209;1297;212;0;24;56;131;20;111;116;22
-40;'152;Chile;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;119;84;84;0;0;0;0;0;0;0;0;0;0;1984;1185;983;1276;643;561;802;444;0;18;67;170;42;107;143;61
-40;'152;Chile;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3135;3621;3621;3400;300;300;0;0;0;0;0;0;0;0;0;0;0;3402;3000;5000;15;49;109;366;0;0;1;9;0;125;1;0
-40;'152;Chile;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;120;120;161;18;18;0;0;0;0;0;0;0;0;0;0;0;631;701;887;73;77;657;408;0;0;2;12;2;32;4;0
-40;'152;Chile;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-40;'152;Chile;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-40;'152;Chile;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-40;'152;Chile;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-40;'152;Chile;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000
-40;'152;Chile;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;30000;30000;30000;30000;78000;121000;121000;176000;214000;205000;236000
-40;'152;Chile;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;64;1071;196;38;361;1464;187;523;616;559;13802
-40;'152;Chile;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;181;338;87;34;750;812;409;781;506;616;4445
-40;'152;Chile;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;1857;774;1342;2565;5752;2273;5487;614;12916.78;1397;6091
-40;'152;Chile;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;349;146;202;329;1754;1274;1461;692;1968.6;951;1732
-40;'152;Chile;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;30000;30000;30000;30000;78000;121000;121000;176000;214000;205000;236000
-40;'152;Chile;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;64;1071;196;38;38;1405;7;173;506;367;13701
-40;'152;Chile;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;181;338;87;34;78;594;33;57;180;145;4310
-40;'152;Chile;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;1857;774;1342;2565;5168;2142;5302;85;12507.78;1180;5796
-40;'152;Chile;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;349;146;202;329;807;356;883;27;1265.63;377;1239
-40;'152;Chile;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;59;180;350;110;192;101
-40;'152;Chile;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672;218;376;724;326;471;135
-40;'152;Chile;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;131;185;529;409;217;295
-40;'152;Chile;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947;918;578;665;702.97;574;493
-40;'152;Chile;1872;Sawnwood;5516;Production;m3;904000;1206000;803300;1057200;1175000;1130000;952000;1140000;1013000;976400;1093000;1113600;1059000;1478000;1320000;1223000;1267000;1478000;2199000;2297000;1735000;1176000;1610000;2001000;2194000;2026000;2677000;2710000;2684000;3327000;3218000;3020000;3113000;3364000;3802000;4140000;4661000;4551000;5253900;5698100;5872000;6438900;7004500;8014800;8298400;8718200;8340400;7306000;5836300;6353900;6785000;7160000;7721000;7999000;8373200;8455100;8150900;8307200;8030433;7873825;8683000;7859000;6887000
-40;'152;Chile;1872;Sawnwood;5616;Import quantity;m3;2400;600;1700;1200;1200;400;400;200;700;3700;1100;1100;1100;400;;;;;;;;;;;;;;;;;;1623;5765;10800;25000;23900;0;0;0;0;34100;39500;24500;49438;29290;38300;35400;20000;8000;29599;26100;26348;18705;30489;22750;23273;34415;40427;26336;20707;17592;10705;9000
-40;'152;Chile;1872;Sawnwood;5622;Import value;1000 USD;132;54;176;97;97;50;48;7;25;136;135;127;127;132;;;;;;;;;;;;;;;;;;543;1654;2850;3302;3150;0;0;0;0;14000;15243;11717;16081;7442;12335;9224;10772;8137;9262;12877;12955;10069;9119;10550;11547;11644;12202;7400;7912;10013;5999;5874
-40;'152;Chile;1872;Sawnwood;5916;Export quantity;m3;68300;49400;46800;76600;101900;69500;55600;95200;167800;214400;191800;62800;69000;133000;260700;357000;684700;798000;1084100;1298300;867600;618700;754800;885800;715100;856500;1010200;1092000;1123000;1287600;1245500;840600;734300;968300;1238200;1087100;1451600;1396200;1622300;1907800;1987600;2312000;2645900;3151900;3444000;3332300;3589700;3246600;2132900;2378646;2814429;2890347;3304622;3521990;3096651;3939596;3733557;4074215;3655757;3383230;3623842;3128585;2848746
-40;'152;Chile;1872;Sawnwood;5922;Export value;1000 USD;3027;2194;1633;2543;3495;3260;2745;3746;7373;8682;6900;3001;4361;12283;23939;22580;43176;51223;92684;149028;95880;63524;65764;74142;57508;69662;92722;129575;134700;176100;180100;112827;135331;158053;223032;185600;296522;251397;295693;334157;325088;390494;427436;609700;686600;700400;787800;703700;392200;562520;691055;715629;828766;998344;822933;844984;829690;945238;808625;738024;927804;1028882;759491
-40;'152;Chile;1632;Sawnwood, coniferous;5516;Production;m3;473000;542500;381150;556100;610000;668500;550500;717500;640000;636900;775000;735300;662000;1157000;1021000;956000;872000;1354500;1871500;1954500;1455500;1014500;1424500;1711500;1877500;1734000;2308000;2336000;2324500;2889000;2751000;2565000;2663000;2927000;3394000;3744000;4274000;4222000;4967100;5399900;5615200;6223900;6795100;7798200;8031700;8462300;8096300;7096300;5662100;6179800;6631000;7004000;7576000;7859000;8209000;8309100;8025300;8168600;7804942;7655088;8594000;7770000;6831000
-40;'152;Chile;1632;Sawnwood, coniferous;5616;Import quantity;m3;1500;400;1000;1000;1000;300;200;100;400;1800;100;300;300;300;;;;;;;;;;;;;;;;;;1139;3366;7600;7300;6000;0;0;0;0;26500;32000;17000;39438;24727;26000;28400;13000;4000;18186;18225;20761;10315;8489;10930;12270;25370;32070;20260;14011;8879;2705;3000
-40;'152;Chile;1632;Sawnwood, coniferous;5622;Import value;1000 USD;87;37;95;70;70;37;45;4;16;79;33;44;44;110;;;;;;;;;;;;;;;;;;315;773;1682;1920;1470;0;0;0;0;9600;10843;7317;10000;4500;4479;4823;4266;1491;3556;5101;5844;2904;1859;2796;3054;4744;7055;2889;3723;3097;1847;2044
-40;'152;Chile;1632;Sawnwood, coniferous;5916;Export quantity;m3;31900;24000;27600;55700;78200;42800;31300;72600;126200;175400;167600;54500;60400;120000;238850;330000;649000;774350;1040450;1259250;848850;605300;739000;862500;691800;833100;989900;1048000;1056000;1196000;1162000;799000;707000;931400;1201800;1062000;1426400;1366200;1587300;1867800;1962600;2294000;2625900;3124100;3409600;3300900;3564600;3223400;2124600;2350576;2782939;2849721;3275452;3501650;3087451;3894291;3654135;4067575;3650993;3378192;3615476;3125143;2846798
-40;'152;Chile;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1286;1125;937;1657;2329;1553;1172;2413;4919;5995;5494;2429;3586;10729;20847;18532;38639;47651;82936;138123;90096;59220;61783;67827;51193;63646;87170;120095;124700;160000;165000;102902;126687;145923;210000;174600;284900;236800;278900;316200;314200;382300;418700;599200;674900;689700;778600;694000;388600;545201;673452;695270;809105;983964;818633;818769;799125;941360;806118;735478;926083;1027324;757997
-40;'152;Chile;1633;Sawnwood, non-coniferous;5516;Production;m3;431000;663500;422150;501100;565000;461500;401500;422500;373000;339500;318000;378300;397000;321000;299000;267000;395000;123500;327500;342500;279500;161500;185500;289500;316500;292000;369000;374000;359500;438000;467000;455000;450000;437000;408000;396000;387000;329000;286800;298200;256800;215000;209400;216600;266700;255900;244100;209700;174200;174100;154000;156000;145000;140000;164200;146000;125600;138600;225491;218737;89000;89000;56000
-40;'152;Chile;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;900;200;700;200;200;100;200;100;300;1900;1000;800;800;100;;;;;;;;;;;;;;;;;;484;2399;3200;17700;17900;0;0;0;0;7600;7500;7500;10000;4563;12300;7000;7000;4000;11413;7875;5587;8390;22000;11820;11003;9045;8357;6076;6696;8713;8000;6000
-40;'152;Chile;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;45;17;81;27;27;13;3;3;9;57;102;83;83;22;;;;;;;;;;;;;;;;;;228;881;1168;1382;1680;0;0;0;0;4400;4400;4400;6081;2942;7856;4401;6506;6646;5706;7776;7111;7165;7260;7754;8493;6900;5147;4511;4189;6916;4152;3830
-40;'152;Chile;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;36400;25400;19200;20900;23700;26700;24300;22600;41600;39000;24200;8300;8600;13000;21850;27000;35700;23650;43650;39050;18750;13400;15800;23300;23300;23400;20300;44000;67000;91600;83500;41600;27300;36900;36400;25100;25200;30000;35000;40000;25000;18000;20000;27800;34400;31400;25100;23200;8300;28070;31490;40626;29170;20340;9200;45305;79422;6640;4764;5038;8366;3442;1948
-40;'152;Chile;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1741;1069;696;886;1166;1707;1573;1333;2454;2687;1406;572;775;1554;3092;4048;4537;3572;9748;10905;5784;4304;3981;6315;6315;6016;5552;9480;10000;16100;15100;9925;8644;12130;13032;11000;11622;14597;16793;17957;10888;8194;8736;10500;11700;10700;9200;9700;3600;17319;17603;20359;19661;14380;4300;26215;30565;3878;2507;2546;1721;1558;1494
-40;'152;Chile;1634;Veneer sheets;5516;Production;m3;;;1200;1800;2400;2200;2100;3000;2300;2300;1100;1700;1400;1700;1800;2800;4600;6200;7300;6900;8300;8000;9000;9400;3000;3000;5000;5000;6000;8900;12700;28300;39700;45500;69100;87500;97500;104100;112000;96650;71840;63710;61100;79400;70690;50210;55930;66290;64300;44380;50400;71100;52800;86100;139300;123500;103500;113900;99108;101249;108000;120000;104000
-40;'152;Chile;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1262;1827;1700;2500;2300;0;0;0;0;0;3000;2000;2000;2000;3042;6000;3000;2700;2600;3284;3280;2699;2414;3139;2547;1885;5935;2080;1004;1597;1658;1000
-40;'152;Chile;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2397;3183;3005;5860;4970;0;0;0;0;0;3395;2589;3147;4747;5910;7223;6374;4355;5236;7489;7991;6689;6149;6194;4628;3708;4313;4146;2146;3272;3726;1980
-40;'152;Chile;1634;Veneer sheets;5916;Export quantity;m3;;;;;200;200;100;500;500;200;100;100;100;100;100;500;1700;2400;1900;2100;1600;2100;1300;1600;1800;1000;600;800;800;1800;5200;13965;23848;23100;22800;53000;65400;54000;61000;52000;44000;28000;36000;28615;26000;24000;30000;24000;27766;19182;27951;31486;26011;34694;57233;54854;54527;47348;42732;46275;46603;76000;63000
-40;'152;Chile;1634;Veneer sheets;5922;Export value;1000 USD;;;;;39;48;42;191;235;80;38;38;29;72;54;274;658;1092;989;1219;1117;1599;849;1277;1657;900;298;452;427;804;1800;3838;8221;8501;11175;19000;24345;18577;20003;17422;13895;8762;11993;9884;10076;11500;13665;11349;10262;9082;13447;16788;15713;18590;24527;22533;21651;20003;16434;15299;18073;17430;14321
-40;'152;Chile;1873;Wood-based panels;5516;Production;m3;20000;23900;25900;26900;34000;44710;38052;53139;52565;55096;66512;65554;65500;63400;42600;57600;69200;88300;106000;107800;134000;112000;131000;174000;199000;215000;246000;256000;292000;340200;360400;451500;569600;671400;749700;839200;954500;867200;951200;1090570;1254920;1478410;1678250;1849060;2040070;2259410;2223600;2589890;2308790;2647050;2839900;2546800;2624000;2853600;3171000;3023500;3072200;3254600;3208000;3280057;3458900;3311600;2796000
-40;'152;Chile;1873;Wood-based panels;5616;Import quantity;m3;2300;2600;400;400;100;105;1264;737;1264;1685;842;948;948;300;;;;;;;;;;;;;;;;;;7870;17052;15447;16300;18000;7069;4000;7846;10907;6878;41000;31151;63221;75778;130120;137000;176000;114000;233648;231084;338502;322848;234355;254845;309049;290552;443913;350293;244658;724615;246219;180680
-40;'152;Chile;1873;Wood-based panels;5622;Import value;1000 USD;411;529;64;82;31;18;187;106;165;244;158;181;181;144;;;;;;;;;;;;;;;;;;2237;5560;4732;8346;9940;3640;2000;2500;2500;1300;8429;6584;16221;27715;60248;58333;85571;40544;90470;97805;140301;136672;134017;120561;121177;113570;184908;137917;102073;407352.61;164441;108795
-40;'152;Chile;1873;Wood-based panels;5916;Export quantity;m3;;;400;1000;1000;1053;105;316;2106;1895;1369;211;211;211;211;19424;13200;18200;23000;30100;23900;35800;36200;49900;48400;53600;56300;60200;76900;117300;148500;122691;176647;236700;308400;381400;318900;256000;341000;383000;484000;624806;760000;1039533;993503;1345493;1613934;1187900;1073344;1345760;1693874;1194204;1121445;1302702;1373634;1197995;1347844;1566380;1451981;1466817;1315808.23;1411075;1268885
-40;'152;Chile;1873;Wood-based panels;5922;Export value;1000 USD;;;25;63;66;74;6;17;114;115;91;20;20;20;20;2526;1503;2513;3770;5700;4778;7763;6892;7575;7464;7700;10500;11473;14259;21450;30600;33651;53208;73434;73241;80107;85459;67944;96444;106122;130605;202436;230990;320802;349530;391800;554386;520860;407182;503539;643966;506156;493940;577282;557622;487496;488299;633480;548180;541111;670612.52;789557;634946
-40;'152;Chile;1640;Plywood and LVL;5516;Production;m3;7200;8000;7300;8000;7700;9000;6800;11600;12100;12900;15500;16600;14500;9700;12600;6600;9200;13300;16000;19800;18000;10000;15000;20000;21000;25000;29000;33000;37000;40400;54700;57200;59400;64200;72700;69200;65500;129200;166200;214300;343170;422600;469240;516340;697050;804360;788850;1023850;1095380;1175680;1291500;941800;860000;1099700;1354900;1355900;1333500;1447300;1363400;1381000;1378900;1376300;1271600
-40;'152;Chile;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513;4856;3500;3500;0;0;0;0;0;0;8000;8000;15000;16000;36300;45000;52000;13000;51632;67050;109243;128080;84601;76538;81876;83503;118906;81649;96333;226483;78062;57000
-40;'152;Chile;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059;2806;1976;1976;0;0;0;0;0;0;3227;2846;6155;7145;16444;20032;27078;5070;19948;31264;52869;60290;54160;42747;34678;32455;51719;35236;36550;137801;48399;33961
-40;'152;Chile;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;100;100;100;100;1700;700;1200;2800;4100;4600;5200;2600;6600;16500;19193;12904;12400;7600;3800;5300;29000;91000;98000;170000;264000;311000;310000;466000;714755;782000;723000;757283;911260;1129371;682859;568563;725702;868834;708395;836324;1011380;887432;896907;714000;872000;732000
-40;'152;Chile;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;37;35;35;35;760;143;327;800;1100;1697;1901;1020;2451;6400;7569;5883;5491;3196;1882;3233;10229;36527;38390;58446;89718;105976;142784;204358;234500;250224;351028;288613;342055;432300;294414;264067;341382;366322;310117;327274;452392;364823;363882;430611;551489;404201
-40;'152;Chile;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39
-40;'152;Chile;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45
-40;'152;Chile;1646;Particle board and OSB (1961-1994);5516;Production;m3;2800;6900;9200;6900;12900;21600;18300;20900;21300;22400;30900;30000;31300;25900;16300;29000;32000;42000;46000;43000;72000;56000;72000;114000;136000;146000;172000;175000;190000;178300;165900;233800;255100;298600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6114;11249;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;2221;2223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;11000;4600;5500;2000;2000;2000;1700;3200;23300;13600;24700;25600;26500;50700;85300;103000;30124;32520;40400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;1532;280;627;221;221;221;626;394;2354;1400;2500;3473;3475;7472;12916;16900;5665;7347;8579;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348000;379000;425000;321000;301000;366130;339910;386100;350520;381850;386540;402720;388500;377900;258220;305640;303400;342000;515000;524500;527500;502400;526700;568300;568000;518717;631000;596000;547000
-40;'152;Chile;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11800;15500;4569;4000;7846;10907;6878;33000;21000;16000;16000;48020;18000;36000;53000;83000;76205;67879;49126;26000;49000;41000;49574;45224;51998;24589;82000;33000;18259
-40;'152;Chile;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;8500;2200;2000;2500;2500;1300;5202;3254;2998;3723;18290;6784;12350;13726;24970;25843;23506;18313;9047;12583;12242;14306;12527;14744;6683;25942;11359;6888
-40;'152;Chile;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67800;61600;62800;24000;25000;42000;71000;82000;88000;78000;100000;78738;86000;75000;53624;74000;71445;93527;189834;202000;175300;196000;195900;225000;191602;204437;217000;254000;239000
-40;'152;Chile;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11820;10000;9761;4589;4194;5944;8921;10469;11224;10838;20000;17100;21873;19982;15666;21632;21938;31791;71574;76700;63295;69400;72430;86700;70898;72143;86821;107337;100667
-40;'152;Chile;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20000;62000;96000;106500;114000;119700;127000;173000;123500;209760;242000;257000;251000;253500;260800;264300;264600;253600;301800;432513;400000;393000;322000
-40;'152;Chile;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;23000;36000;18000;35000;14713;78869;51846;57000;61000;119000;99025;188926;105454;40630;158782;33882;36313
-40;'152;Chile;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010;6589;12061;4629;11840;4605;23400;15852;16372;15792;31419;28631;59442;23669;9913;77955;16481;9735
-40;'152;Chile;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;18000;16180;12000;21158;10718;20048;10000;9700;6600;26820;25700;17316;47099;21000;40000;19000
-40;'152;Chile;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1591;4598;4143;3552;5828;3451;6099;3300;3005;1979;7795;7488;4147;10244;8810;16794;6466
-40;'152;Chile;1874;Fibreboard;5516;Production;m3;10000;9000;9400;12000;13400;14110;12952;20639;19165;19796;20112;18954;19700;27800;13700;22000;28000;33000;44000;45000;44000;46000;44000;40000;42000;44000;45000;48000;65000;121500;139800;160500;255100;308600;329000;391000;464000;417000;484000;510140;551840;607710;762490;844370;842480;932630;919250;1015140;831690;955970;1003000;1006000;998000;975900;1027800;900900;947400;985400;974800;947827;1049000;946300;655400
-40;'152;Chile;1874;Fibreboard;5616;Import quantity;m3;2300;2600;400;400;100;105;1264;737;1264;1685;842;948;948;300;;;;;;;;;;;;;;;;;;243;947;947;1000;2500;2500;0;0;0;0;0;2151;32221;43778;40000;51000;52000;30000;64016;73116;82511;93796;66754;68307;67173;58450;90857;111192;83106;257350;101275;69108
-40;'152;Chile;1874;Fibreboard;5622;Import value;1000 USD;411;529;64;82;31;18;187;106;165;244;158;181;181;144;;;;;;;;;;;;;;;;;;109;533;533;570;1440;1440;0;0;0;0;0;484;7068;16847;23504;24928;34082;17119;33712;36093;40526;42217;54438;49439;42838;38178;61220;64268;48927;165654.61;88202;58211
-40;'152;Chile;1874;Fibreboard;5916;Export quantity;m3;;;400;1000;1000;1053;105;316;2106;1895;1369;211;211;211;211;8424;8600;12600;20900;28000;21800;32400;32300;25400;32000;24800;26100;28500;23600;25400;29000;73374;131223;183900;233000;316000;250800;203000;225000;243000;243000;278806;361000;651533;427503;552000;738934;371900;246257;348500;471900;407100;343000;365000;319800;287000;288800;304300;355631;318374;363808.23;245075;278885
-40;'152;Chile;1874;Fibreboard;5922;Export value;1000 USD;;;25;63;66;74;6;17;114;115;91;20;20;20;20;994;1223;1849;3514;5444;4522;6377;6355;4894;5264;4100;5330;6097;5767;6083;7300;20417;39978;59364;58225;68225;72465;53126;55723;61788;63238;102249;113790;167180;125172;140200;280698;145252;98760;136300;183900;176500;152200;155900;125000;106000;80800;86900;108312;94842;144370.52;113937;123612
-40;'152;Chile;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;52000;56000;55000;75000;77000;87000;84000;85000;94000;95000;95000;91000;84000;81000;87000;86000;93000;86000;84800;87500;38000;29200;29200;29200;0;0;0;0
-40;'152;Chile;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;16000;12000;18000;8000;15000;10981;14301;12228;23642;20626;19874;20494;22600;35167;34699;78216;47275;27108
-40;'152;Chile;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9820;11400;11174;20335;7215;11596;9728;12432;11711;21959;17045;15794;16075;18484;25138;25257;66675.6;40955;26754
-40;'152;Chile;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;28000;28800;26000;29000;28000;34000;39000;37000;113079;84503;89000;58000;66000;55550;31000;32000;24000;26000;26000;26800;23000;9800;8300;32631;30574;27108.23;36075;35885
-40;'152;Chile;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;7300;7458;6774;7512;7095;8498;8968;10134;48277;36696;46600;35860;39094;29277;12100;14300;13700;14800;15800;12800;10100;4800;4200;24912;24742;22270.51;30392;32269
-40;'152;Chile;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;339000;408000;362000;409000;433140;464840;523710;677490;750370;747480;837630;828250;931140;750690;868970;917000;913000;912000;891100;940300;862900;918200;956200;945600;947827;1049000;946300;655400
-40;'152;Chile;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2500;2500;0;0;0;0;0;2151;29666;27778;23000;26000;26000;20000;45000;60272;67969;81402;38639;46308;44948;36251;67127;73775;48037;178583;53000;41000
-40;'152;Chile;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;1440;1440;0;0;0;0;0;484;6668;6873;11654;10975;12819;9464;20993;25893;27901;30337;28912;31270;25220;19927;41515;38123;23473;98462;46135;30641
-40;'152;Chile;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;277000;222000;177000;196000;215000;209000;137000;184000;315000;229000;229000;193000;302000;188107;316000;438000;383000;317000;339000;293000;264000;279000;296000;323000;287800;336700;209000;243000
-40;'152;Chile;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;57000;65007;46352;48211;54693;54740;46969;53656;68286;43000;43000;67730;101958;66683;122500;168300;162700;137400;140100;112200;95900;76000;82700;83400;70100;122100;83545;91343
-40;'152;Chile;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;247;247;0;0;0;0;0;0;0;0;0;2555;1000;1000;13000;8000;2000;4016;1863;241;166;4473;1373;2351;1705;1130;2250;370;551;1000;1000
-40;'152;Chile;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;156;156;0;0;0;0;0;0;0;0;0;400;154;450;2779;928;440;1123;472;193;169;3567;1124;1824;2176;1221;1007;197;517;1112;816
-40;'152;Chile;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9975;3708;3900;11000;11000;0;0;0;0;0;102806;140000;223454;114000;234000;487934;3900;2600;1500;1900;100;0;0;0;0;0;0;0;0;0;0;0
-40;'152;Chile;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508;919;1364;3925;3925;0;0;0;0;0;46312;50000;50617;45476;50600;177108;4200;2800;1700;1300;100;0;0;0;0;0;0;0;0;0;0;0
-40;'152;Chile;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;10000;9000;9400;12000;13400;14110;12952;20639;19165;19796;20112;18954;19700;27800;13700;22000;28000;33000;44000;45000;44000;46000;44000;40000;42000;44000;45000;48000;65000;121500;139800;160500;255100;308600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;2300;2600;400;400;100;105;1264;737;1264;1685;842;948;948;300;;;;;;;;;;;;;;;;;;145;700;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;411;529;64;82;31;18;187;106;165;244;158;181;181;144;;;;;;;;;;;;;;;;;;75;377;377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;400;1000;1000;1053;105;316;2106;1895;1369;211;211;211;211;8424;8600;12600;20900;28000;21800;32400;32300;25400;32000;24800;26100;28500;23600;25400;29000;63399;127515;180000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;25;63;66;74;6;17;114;115;91;20;20;20;20;994;1223;1849;3514;5444;4522;6377;6355;4894;5264;4100;5330;6097;5767;6083;7300;17909;39059;58000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1879;Total fibre furnish;5510;Production;t;145000;146100;151600;172500;199000;310800;307400;338000;320100;386400;372800;373000;387200;465500;496000;541000;634000;714000;752000;809600;799000;720000;843000;916000;913000;964000;1003000;1065000;1008000;1028000;1247000;1816000;2001000;2089000;2248800;2282000;2213000;2346000;2570000;2728000;2804000;2823000;3181000;3760000;3659000;3950000;5141000;5447000;5482000;4591000;5385000;5569000;5646000;5697800;5605600;5634400;5681500;5719800;5574700;5307314;4839600;4657300;5331556
-40;'152;Chile;1879;Total fibre furnish;5610;Import quantity;t;200;200;200;6700;700;900;500;4100;2600;1700;6300;6200;13100;2700;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;9842;7701;7523;7403;11300;6700;6700;13400;13400;37000;69100;95000;137865;125715;73956;133000;114000;133135;138010;130657;95113;115093;132258;93057;83056;51828;30844;68033;91983;80977.27;47215;33998
-40;'152;Chile;1879;Total fibre furnish;5622;Import value;1000 USD;25;25;25;1397;144;226;120;793;500;371;1384;1515;1167;1095;;;;;;;;;;116;156;141;168;168;168;168;168;2687;3003;2506;2663;9163;3538;3538;6222;6222;13822;23030;27321;32193;26266;20009;40378;32358;30999;49958;51999;34104;39992;41935;34612;29050;23523;20195;29715;30333;37737;39708;23474
-40;'152;Chile;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;118200;121200;105300;109300;120800;102000;180900;175100;235000;338150;436950;431150;415800;321600;459800;525700;493600;516000;568000;532500;485100;499700;587100;670200;1326917;1483546;1604100;1645000;1674800;1586500;1759000;1919000;1857000;2189300;2161000;2119000;2553248;2625627;2663838;3876000;4084000;4328995;3407000;4035303;4335423;4562765;4679182;4433080;4662896;4502312;4733244;4661915;4275570;4014277.72;3840199;4243439
-40;'152;Chile;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;13274;15305;16404;16991;17347;21585;78132;59729;68615;82298;107749;166468;197295;203875;171975;156867;200285;182046;193159;263287;309445;333541;320219;309472;588130;502779;720056;1272370;766112;690412;693674;768132;1113848;865842;822925;883027;1212438;1205508;1384668;2349400;2629985;1977616;2398340;2898536;2535962;2799712;2605122;2566849;2405742;2556758;3577790;2671558;2041833;2500572.87;2580956;2412007
-40;'152;Chile;1878;Pulp for paper;5510;Production;t;145000;146100;151600;172500;199000;310800;307400;338000;320100;356400;344800;345000;350200;432500;452000;515000;599000;665000;700000;762600;743000;667000;796000;839000;837000;846000;862000;909000;841000;892000;1111000;1680000;1865000;1953000;2112800;2146000;2077000;2210000;2434000;2592000;2668000;2687000;2759000;3338000;3237000;3484000;4675000;4981000;4993000;4102000;4896000;5080000;5157000;5208800;5116600;5145400;5192500;5362800;5292700;5134500;4613600;4391300;5033000
-40;'152;Chile;1878;Pulp for paper;5610;Import quantity;t;200;200;200;6700;700;900;500;4100;2600;1700;6300;6200;13100;2700;;;;;;;;;;;;;;;;;;1392;3278;3100;2980;11300;6700;6700;13400;13400;37000;29100;15000;17000;16000;13658;13000;10000;10135;20010;35312;20208;20243;17327;20718;19628;19063;18254;18049;18273;20557.27;30215;12998
-40;'152;Chile;1878;Pulp for paper;5622;Import value;1000 USD;25;25;25;1397;144;226;120;793;500;371;1384;1515;1167;1095;;;;;;;;;;;;;;;;;;1256;2229;1732;1889;9163;3538;3538;6222;6222;13822;13232;7321;9039;8958;8512;9159;7307;8034;16896;24845;17157;16777;15480;18988;16145;15514;17176;16271;15194;20652;33230;18880
-40;'152;Chile;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;118200;121200;105300;109300;120800;102000;180000;174400;234000;338100;436900;431100;414800;320600;458800;523700;492600;503000;562000;526500;479100;493700;581100;664200;1321857;1479146;1585200;1625300;1655200;1575500;1745000;1905000;1835000;2173000;2152000;2110000;2545000;2616000;2649984;3859000;4063000;4311585;3381000;4025375;4325315;4556299;4670306;4418843;4652467;4491837;4687609;4624148;4244046;3989171.44;3802199;4136439
-40;'152;Chile;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;13274;15305;16404;16991;17347;21585;77965;59593;68444;82289;107740;166459;197120;203700;171800;156400;200042;180811;192487;262615;308773;332869;319547;308800;585837;502030;717790;1270470;764372;689221;692265;766765;1110420;863220;821825;881927;1211175;1204126;1383318;2347200;2626392;1975229;2393686;2895259;2534113;2798384;2602909;2563314;2403670;2554630;3566929;2663820;2036395;2494871.62;2573742;2397450
-40;'152;Chile;1875;Wood pulp;5510;Production;t;145000;146100;151600;172500;199000;310800;307400;338000;320100;356400;344800;345000;350200;432500;452000;515000;599000;665000;700000;762600;743000;667000;796000;839000;837000;846000;862000;909000;841000;892000;1111000;1685000;1867000;1955000;2112800;2146000;2077000;2210000;2434000;2592000;2668000;2687000;2759000;3338000;3237000;3484000;4675000;4981000;4993000;4102000;4896000;5080000;5157000;5208800;5116600;5145400;5192500;5362800;5292700;5205500;4979600;4655300;5329000
-40;'152;Chile;1875;Wood pulp;5610;Import quantity;t;4600;4400;4700;11200;5200;4400;6000;5500;4500;3600;7600;7400;14100;6700;3000;3500;2600;2800;;;;;;;;;;;;;;1287;3098;2920;2800;11300;6700;6700;13400;13400;37000;29100;15000;17000;16000;13658;14000;12000;12135;19010;37177;22085;21665;17824;20332;19251;18712;17720;17650;17872;20075.27;29838;12626
-40;'152;Chile;1875;Wood pulp;5622;Import value;1000 USD;949;907;970;2342;1089;526;720;1111;890;761;1658;1833;1517;2495;1050;1250;950;1000;;;;;;;;;;;;;;1143;2077;1580;1737;9163;3538;3538;6222;6222;13822;13232;7321;9039;8958;8512;9929;8877;9501;16713;26438;18816;18095;16087;18636;15734;14978;16521;15389;14445;19549;32232;18032
-40;'152;Chile;1875;Wood pulp;5910;Export quantity;t;;;;;;;;118200;121200;105300;109300;120800;102000;180000;174400;234000;338100;436900;431100;414800;320600;458800;523700;492600;503000;562000;526500;479100;493700;581100;664200;1321857;1479146;1585200;1625300;1655200;1575500;1745000;1905000;1835000;2173000;2152000;2110000;2545000;2616000;2649984;3859000;4061000;4310159;3379000;4024934;4325111;4556222;4670256;4418281;4652467;4491837;4687609;4624148;4314589;4355105.44;4065778;4433241
-40;'152;Chile;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;13274;15305;16404;16991;17347;21585;77965;59593;68444;82289;107740;166459;197120;203700;171800;156400;200042;180811;192487;262615;308773;332869;319547;308800;585837;502030;717790;1270470;764372;689221;692265;766765;1110420;863220;821825;881927;1211175;1204126;1383318;2347200;2625712;1974654;2392668;2895044;2534031;2798351;2602888;2563163;2403670;2554630;3566929;2663820;2078822;2822956.62;2814366;2645740
-40;'152;Chile;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271500;309700;304700;258000;217000;256000;276000
-40;'152;Chile;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;146;114;207;352;268;524
-40;'152;Chile;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;204;113;161;344;304;599
-40;'152;Chile;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;503;3388;10152.43;297;555
-40;'152;Chile;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;144;1218;4587.8;307;322
-40;'152;Chile;1654;Mechanical wood pulp (1961-2016);5510;Production;t;66600;62000;68800;83000;102400;112300;103000;106900;109600;119300;112300;102300;108200;119000;126000;121000;125000;129000;130000;131100;125000;115000;140000;157000;158000;154000;153000;182000;161000;160000;179000;181000;183000;184000;183800;214000;209000;230000;370000;372000;386000;409000;445000;507000;479000;513000;494000;495000;503000;458000;485000;448000;364000;314300;310400;285800;;;;;;;
-40;'152;Chile;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;200;200;200;6700;700;900;500;500;800;1300;100;100;500;;;;;;;;;;;;;;;;;;;13;520;520;400;100;100;100;100;100;100;100;1000;2000;2000;2000;2000;2000;135;10;61;38;511;59;41;46;;;;;;;
-40;'152;Chile;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;25;25;25;1397;144;226;120;120;130;266;24;24;126;;;;;;;;;;;;;;;;;;;4;147;147;304;52;52;52;52;52;52;45;281;400;400;400;400;400;27;2;63;32;351;63;41;49;;;;;;;
-40;'152;Chile;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8500;12100;7600;91100;2110;501;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;1;0;0;0;0;;;;;;;
-40;'152;Chile;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6933;11035;6647;42700;939;203;98;98;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;2;0;0;0;0;;;;;;;
-40;'152;Chile;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;
-40;'152;Chile;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15433;32;4;27;32;4;;;;;;;
-40;'152;Chile;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6096;13;14;11;13;16;;;;;;;
-40;'152;Chile;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;0;0;0;0;;;;;;;
-40;'152;Chile;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;0;0;0;0;;;;;;;
-40;'152;Chile;1656;Chemical wood pulp;5510;Production;t;78400;84100;82800;89500;96600;198500;204400;231100;210500;237100;232500;242700;242000;313500;326000;394000;474000;536000;570000;631500;618000;552000;656000;682000;679000;692000;709000;727000;680000;732000;932000;1499000;1682000;1769000;1929000;1932000;1868000;1980000;2064000;2220000;2282000;2278000;2314000;2831000;2758000;2971000;4181000;4486000;4490000;3644000;4411000;4632000;4793000;4894500;4806200;4859600;4921000;5053100;4988000;4876500;4396600;4135300;4757000
-40;'152;Chile;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;3600;1800;400;6200;6100;12600;2700;;;;;;;;;;;;;;;;;;1274;2578;2400;2400;11200;6600;6600;13300;13300;36900;29000;14000;15000;14000;11658;11000;8000;10000;17000;19701;20116;19677;16271;19668;19196;18558;17573;17532;17665;19723.27;29570;12101
-40;'152;Chile;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;673;370;105;1360;1491;1041;1095;;;;;;;;;;;;;;;;;;1139;1930;1433;1433;9111;3486;3486;6170;6170;13770;13187;7040;8639;8558;8112;8759;6907;8007;14512;18405;17068;16287;14477;18018;15657;14776;16314;15267;14284;19205;31928;17427
-40;'152;Chile;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;118200;121200;105300;109300;120800;102000;180000;174400;234000;338100;436900;431100;414800;320600;458800;523700;492600;503000;562000;526500;470600;481600;573500;573100;1319117;1478645;1585000;1625100;1655200;1575500;1745000;1905000;1835000;2173000;2152000;2110000;2545000;2616000;2649984;3859000;4061000;4310159;3379000;4024911;4325072;4556222;4670256;4418281;4652467;4491837;4687591;4623645;4240657;3979019.01;3801884;4135884
-40;'152;Chile;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;13274;15305;16404;16991;17347;21585;77965;59593;68444;82289;107740;166459;197120;203700;171800;156400;200042;180811;192487;262615;301840;321834;312900;266100;584587;501827;717692;1270372;764372;689221;692265;766765;1110420;863220;821825;881927;1211175;1204126;1383318;2347200;2625712;1974654;2392668;2895039;2534015;2798351;2602888;2563163;2403670;2554630;3566913;2663676;2035175;2490283.81;2573407;2397128
-40;'152;Chile;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;143000;115300;104800;113100;81200;90500;91000;120000;112000;131000;190000;233000;243000;299000;288000;222000;291000;289000;290000;278000;282000;290000;263000;290000;324000;330000;330000;336000;357000;335000;288000;364000;366000;413000;426000;435000;394000;389000;391000;377000;407000;394000;434000;373000;441000;467000;490000;489600;482400;461500;467000;545000;488000;483000;496000;503000;347000
-40;'152;Chile;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;1880;240;0;1959;6279;7366;3227;550;0;25;46;5000;1000
-40;'152;Chile;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3303;1768;241;0;1613;5269;5291;2087;532;1;17;28;5458;1952
-40;'152;Chile;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;65000;80000;52200;69000;162700;201800;204700;197900;209000;210600;260100;220900;222000;278000;262200;193600;210200;259800;258800;307758;272914;335900;300300;278100;244500;311000;360000;305000;438000;395000;349000;355000;384000;345300;330000;318000;388909;299000;361281;402199;473731;440756;420443;425512;451770;487817;459495;432993;448464.71;479000;302000
-40;'152;Chile;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;12626;31490;16539;15288;25819;39080;68478;82747;92100;60800;64300;79118;55811;81929;111900;111883;111334;109507;107700;123760;87262;129955;219442;109630;93430;106359;125420;154702;141267;138341;126251;140156;153071;159747;194200;168983;168538;201003;256316;229737;280955;298088;252163;243060;277648;410037;286784;232422;327225.7;383192;196649
-40;'152;Chile;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;49200;102600;91700;110000;135300;139000;138000;180000;199000;244000;269000;283000;308000;314500;314000;314000;343000;370000;366000;392000;408000;413000;393000;420000;589000;1149000;1332000;1418000;1553000;1583000;1580000;1616000;1698000;1807000;1856000;1843000;1920000;2442000;2367000;2594000;3774000;4092000;4056000;3271000;3970000;4165000;4303000;4404900;4323800;4398100;4454000;4508100;4500000;4393500;3900600;3632300;4410000
-40;'152;Chile;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;723;500;1600;1600;11200;6600;6600;13300;13300;36900;29000;14000;15000;14000;11658;10000;7000;8000;11000;12442;10958;10305;12451;13370;11825;15308;17006;17488;17375;19388;24000;11000
-40;'152;Chile;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528;335;1080;1080;9111;3486;3486;6170;6170;13770;13187;7040;8639;8558;8112;8039;5850;6360;9909;11890;9913;9211;11323;12711;10356;12639;15745;15164;13671;18484;25485;15166
-40;'152;Chile;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;37000;100000;122200;165000;175400;235100;226400;216900;111600;248200;263600;271700;281000;284000;264300;277000;271400;313700;314300;1011359;1205731;1249100;1324800;1377100;1331000;1434000;1545000;1530000;1735000;1757000;1761000;2190000;2232000;2304684;3529000;3743000;3921250;3080000;3663630;3922873;4082491;4229500;3997838;4226955;4039995;4199774;4164150;3807664;3530554.29;3322000;3833000
-40;'152;Chile;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;8959;46475;43054;53156;56470;68660;97981;114373;111600;111000;92100;120924;125000;110558;150715;189957;210500;203393;158400;460827;414565;587737;1050930;654742;595791;585906;641345;955718;721953;683484;755676;1071019;1051055;1223571;2153000;2456729;1806116;2191665;2638723;2304278;2517396;2304800;2311000;2160610;2276932;3156876;2376892;1802753;2163058.11;2189759;2200023
-40;'152;Chile;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-40;'152;Chile;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;17;44;265;289.27;570;101
-40;'152;Chile;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;37;102;596;693;985;309
-40;'152;Chile;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;0;884;884
-40;'152;Chile;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;0;0;456;456
-40;'152;Chile;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;12200;13200;14000;14000;16000;13200;13000;13500;15000;19000;15000;20000;19000;18000;16000;16000;22000;23000;23000;22000;19000;24000;24000;22000;19000;20000;20000;15000;19000;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-40;'152;Chile;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;
-40;'152;Chile;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;2078;800;800;0;0;0;0;0;0;0;0;0;0;0;1000;1000;2000;2000;5379;8918;9372;1861;19;5;;;;;;;
-40;'152;Chile;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611;1595;353;353;0;0;0;0;0;0;0;0;0;0;0;720;1057;1647;1300;4747;6914;7076;1541;38;10;;;;;;;
-40;'152;Chile;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;71000;366000;264000;296000
-40;'152;Chile;1667;Dissolving wood pulp;5610;Import quantity;t;4400;4200;4500;4500;4500;3500;5500;1400;1900;1900;1300;1200;1000;4000;3000;3500;2600;2800;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;2000;2000;2000;1982;1899;1473;1467;591;5;9;1;4;0;0;0;1
-40;'152;Chile;1667;Dissolving wood pulp;5622;Import value;1000 USD;924;882;945;945;945;300;600;318;390;390;274;318;350;1400;1050;1250;950;1000;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;770;1570;1467;2199;1874;1703;1443;1536;564;12;10;3;9;0;0;0;6
-40;'152;Chile;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70544;365934;263597;296802
-40;'152;Chile;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42429;328085;240652;248290
-40;'152;Chile;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-40;'152;Chile;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;180;180;180;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3000;117;22;51;970;977;382;360;535;403;401;482;377;373
-40;'152;Chile;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;152;152;152;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2382;281;44;125;929;916;423;546;658;891;749;1103;998;854
-40;'152;Chile;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1426;2000;441;204;77;50;562;0;0;0;0;1;0;18;0
-40;'152;Chile;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;575;1018;215;82;33;21;151;0;0;0;0;2;0;28;0
-40;'152;Chile;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;136;162;145;201;271;191;199;242;287;155;267;147;42
-40;'152;Chile;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;184;213;220;323;364;239;237;309;371;205;403.47;349;100
-40;'152;Chile;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;0;0;0;0;0;0;0;0
-40;'152;Chile;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;0;0;0;0;0;0;0;0
-40;'152;Chile;1669;Recovered paper;5510;Production;t;;;;;;;;;;30000;28000;28000;37000;33000;44000;26000;35000;49000;52000;47000;56000;53000;47000;77000;76000;118000;141000;156000;167000;136000;136000;136000;136000;136000;136000;136000;136000;136000;136000;136000;136000;136000;422000;422000;422000;466000;466000;466000;489000;489000;489000;489000;489000;489000;489000;489000;489000;357000;282000;172814;226000;266000;298556
-40;'152;Chile;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;8450;4423;4423;4423;0;0;0;0;0;0;40000;80000;120865;109715;60298;120000;104000;123000;118000;95345;74905;94850;114931;72339;63428;32765;12590;49984;73710;60420;17000;21000
-40;'152;Chile;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;116;156;141;168;168;168;168;168;1431;774;774;774;0;0;0;0;0;0;9798;20000;23154;17308;11497;31219;25051;22965;33062;27154;16947;23215;26455;15624;12905;8009;3019;13444;15139;17085;6478;4594
-40;'152;Chile;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;900;700;1000;50;50;50;1000;1000;1000;2000;1000;13000;6000;6000;6000;6000;6000;6000;5060;4400;18900;19700;19600;11000;14000;14000;22000;16300;9000;9000;8248;9627;13854;17000;21000;17410;26000;9928;10108;6466;8876;14237;10429;10475;45635;37767;31524;25106.28;38000;107000
-40;'152;Chile;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;167;136;171;9;9;9;175;175;175;467;243;1235;672;672;672;672;672;672;2293;749;2266;1900;1740;1191;1409;1367;3428;2622;1100;1100;1263;1382;1350;2200;3593;2387;4654;3277;1849;1328;2213;3535;2072;2128;10861;7738;5438;5701.26;7214;14557
-40;'152;Chile;1876;Paper and paperboard;5510;Production;t;123300;125300;136900;158500;193700;215100;238800;228900;247400;234300;260000;286000;238000;276000;235000;276000;296000;294000;276000;356000;318000;306000;333000;381000;385000;388000;442000;449000;438000;462000;486000;508000;526000;553000;573000;680000;614000;597822;824000;861000;877000;1016000;1098000;1168000;1215000;1231000;1344000;1379000;1348000;1362000;1437000;1347000;1268000;1231300;1244200;1190700;1106100;1201300;1180200;1125500;1244800;1305000;1292000
-40;'152;Chile;1876;Paper and paperboard;5610;Import quantity;t;8400;5200;10400;10200;11100;2600;6700;7500;9300;11000;10800;11800;18000;7000;7000;13000;36000;32000;54000;54000;51000;29400;58200;39000;35400;30600;42700;42700;65000;73000;73000;174540;177373;193300;239700;268600;361300;373000;308356;309285;342700;322700;348700;451804;357567;468752;545472;505000;455000;601000;550221;581508;612865;568122;611035;603029;644516;713018;647244;590945;667547.66;653499;408858
-40;'152;Chile;1876;Paper and paperboard;5622;Import value;1000 USD;2080;1545;3058;4132;4409;939;2275;2586;3352;4195;4817;6325;9320;3450;3920;8900;23800;24350;43300;45100;43300;24900;49300;32100;41600;38436;45719;45719;67000;77000;77000;144202;139486;123681;179699;178486;276242;275882;216101;228726;211395;211507;231276;340781;285374;406653;477980;478828;372719;553675;563454;543849;585994;551283;555523;523137;559397;673734;611745;480877;624393.3;820758;434859
-40;'152;Chile;1876;Paper and paperboard;5910;Export quantity;t;33700;24900;30500;39100;61400;68700;81700;71900;86000;96500;79100;46900;63800;113400;106400;107500;100300;94600;96800;86600;65300;71200;112600;135600;144300;140600;140000;132100;137200;131000;125100;144452;191389;172500;198000;197100;220000;215001;284600;313400;346200;402200;421400;511171;503268;562695;544920;586420;614025;631780;639533;575046;530955;503528;477003;470146;469238;518892;519945;597291;477342.39;491283;489724
-40;'152;Chile;1876;Paper and paperboard;5922;Export value;1000 USD;4531;3440;3872;4995;7345;8967;11855;10181;12373;14983;13603;9427;14186;40890;43898;39382;38900;37436;45041;48704;45295;39323;47616;58313;66300;60073;74819;90607;83397;81514;77800;99366;109212;105532;191563;174928;164727;162291;162910;189754;222669;200850;208256;293839;311800;397106;406495;472583;452495;498547;573932;526064;491401;484982;425075;386389;375022;452910;436280;467879;431007.42;515852;482119
-40;'152;Chile;2042;Graphic papers;5510;Production;t;87500;78300;87800;103600;120300;130500;133800;135300;141900;124400;150000;145000;150000;204000;161000;181000;176000;188000;168000;179000;183000;161000;208000;231000;235000;236000;244000;250000;233000;231000;246000;243000;271000;284000;276000;281000;300000;300000;383000;388000;387000;397000;425000;381000;455000;463000;424000;411000;361000;308000;349000;261000;173000;118500;114300;115400;116700;122900;103000;50000;0;0;0
-40;'152;Chile;2042;Graphic papers;5610;Import quantity;t;7400;4200;7600;6400;6800;1600;4200;5700;7800;7900;6200;5100;8000;3000;3000;1000;13000;11000;17000;13000;26000;15400;26800;26000;18600;11300;12300;12300;44000;43000;43000;88398;90083;92900;85800;94600;166000;149000;147356;148285;134600;130300;138300;168165;168165;206552;228572;229000;218000;287000;245603;270600;304615;271861;272742;249601;259533;255539;225200;144222;176460;180861;145208
-40;'152;Chile;2042;Graphic papers;5622;Import value;1000 USD;1580;1045;1823;1620;1288;416;1087;1621;2273;2298;2170;1520;3720;1200;1360;500;7200;6600;11800;10100;20800;12300;21000;20400;14600;7436;11847;11847;44000;43000;43000;91093;84764;81677;100699;82877;159634;142302;115920;128545;98348;108457;116481;145317;145317;205673;229022;260087;211920;297399;279902;283673;315415;279920;271059;238272;243485;256330;234982;141228;158318;245545;187111
-40;'152;Chile;2042;Graphic papers;5910;Export quantity;t;33700;24900;30500;39100;61400;64700;66900;61100;71900;78300;63200;34000;53400;95500;92300;102700;99200;94300;95600;78000;56300;63900;100600;124400;126300;136600;133000;127100;130200;118000;118400;119452;151289;154800;137300;139100;165000;146000;182400;200500;197900;237700;247700;269942;270942;281825;244000;223500;236708;213600;214214;163126;98425;55043;54588;57529;58726;67886;58088;41541;4193.89;743;2083
-40;'152;Chile;2042;Graphic papers;5922;Export value;1000 USD;4531;3440;3872;4995;7345;7926;8382;7214;8414;9620;8431;5033;10521;32261;34958;37679;38338;37296;43923;42611;37106;35409;42450;53365;58300;56073;66419;76324;73801;67161;71300;62780;74314;79554;112563;98928;96139;93721;99173;116676;126581;99441;103678;133189;148167;179056;152188;153975;142345;128801;143959;110374;66070;37651;34337;31434;29889;40794;31214;16155;1982.36;1042;2104
-40;'152;Chile;1671;Newsprint;5510;Production;t;62300;54100;59800;77100;97100;107400;108900;112600;115100;124400;115000;95000;105000;118000;120000;133000;132000;132000;134000;131000;131000;124000;155000;170000;172000;169000;180000;184000;167000;171000;171000;161000;185000;186000;206000;198000;184000;163000;225000;244000;276000;275000;344000;273000;362000;334000;306000;289000;292000;252000;282000;245000;167000;112400;96800;97500;116700;113100;93000;45000;0;0;0
-40;'152;Chile;1671;Newsprint;5610;Import quantity;t;6600;3500;6200;4800;5200;;;;;;;;;;;;;;;;;;;;;;0;;;;;8556;7211;17000;19000;35000;22000;24000;3400;3400;0;0;1000;1000;1000;472;472;1000;1000;22000;422;2265;4968;9646;9267;8200;7832;1134;5060;5089;13479;12401;7015
-40;'152;Chile;1671;Newsprint;5622;Import value;1000 USD;1150;612;1113;845;872;;;;;;;;;;;;;;;;;;;;;;0;;;;;4851;3539;7875;8900;16000;10000;14390;1977;1977;0;0;330;330;330;100;100;692;744;14700;337;1604;3497;6664;5823;4960;4348;774;2974;2344;8969;12043;5873
-40;'152;Chile;1671;Newsprint;5910;Export quantity;t;33700;24900;30500;39100;61400;64700;66900;61100;71900;78300;63200;34000;43400;77500;78300;88000;87000;81000;73000;63000;42700;54900;92200;110400;116000;131500;126600;120700;125600;115000;114900;111536;145985;151400;136300;138200;146000;117000;164000;183000;176000;219000;229000;247000;248000;259870;232000;220000;230598;206000;211127;160410;96550;54056;53741;56800;57619;63775;55434;41043;3670.89;103;1666
-40;'152;Chile;1671;Newsprint;5922;Export value;1000 USD;4531;3440;3872;4995;7345;7926;8382;7214;8414;9620;8431;5033;6856;23632;26018;26793;29673;27621;27594;29862;24700;26700;34221;39819;48800;51673;61002;70907;71206;63861;67700;56770;70377;77183;111305;98000;76602;69116;85994;104144;110467;88780;93017;118398;133376;160400;143240;151315;137420;123013;141434;108126;64459;36253;33211;30516;28707;37164;28477;15502;1309.36;71;1127
-40;'152;Chile;1674;Printing and writing papers;5510;Production;t;25200;24200;28000;26500;23200;23100;24900;22700;26800;;35000;50000;45000;86000;41000;48000;44000;56000;34000;48000;52000;37000;53000;61000;63000;67000;64000;66000;66000;60000;75000;82000;86000;98000;70000;83000;116000;137000;158000;144000;111000;122000;81000;108000;93000;129000;118000;122000;69000;56000;67000;16000;6000;6100;17500;17900;0;9800;10000;5000;0;0;0
-40;'152;Chile;1674;Printing and writing papers;5610;Import quantity;t;800;700;1400;1600;1600;1600;4200;5700;7800;7900;6200;5100;8000;3000;3000;1000;13000;11000;17000;13000;26000;15400;26800;26000;18600;11300;12300;12300;44000;43000;43000;79842;82872;75900;66800;59600;144000;125000;143956;144885;134600;130300;137300;167165;167165;206080;228100;228000;217000;265000;245181;268335;299647;262215;263475;241401;251701;254405;220140;139133;162981;168460;138193
-40;'152;Chile;1674;Printing and writing papers;5622;Import value;1000 USD;430;433;710;775;416;416;1087;1621;2273;2298;2170;1520;3720;1200;1360;500;7200;6600;11800;10100;20800;12300;21000;20400;14600;7436;11847;11847;44000;43000;43000;86242;81225;73802;91799;66877;149634;127912;113943;126568;98348;108457;116151;144987;144987;205573;228922;259395;211176;282699;279565;282069;311918;273256;265236;233312;239137;255556;232008;138884;149349;233502;181238
-40;'152;Chile;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;10000;18000;14000;14700;12200;13300;22600;15000;13600;9000;8400;14000;10300;5100;6400;6400;4600;3000;3500;7916;5304;3400;1000;900;19000;29000;18400;17500;21900;18700;18700;22942;22942;21955;12000;3500;6110;7600;3087;2716;1875;987;847;729;1107;4111;2654;498;523;640;417
-40;'152;Chile;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;3665;8629;8940;10886;8665;9675;16329;12749;12406;8709;8229;13546;9500;4400;5417;5417;2595;3300;3600;6010;3937;2371;1258;928;19537;24605;13179;12532;16114;10661;10661;14791;14791;18656;8948;2660;4925;5788;2525;2248;1611;1398;1126;918;1182;3630;2737;653;673;971;977
-40;'152;Chile;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58095;67000;61000;49000;60000;51000;78000;63000;101000;87000;81000;69000;56000;67000;16000;6000;6100;17500;17900;0;9800;10000;5000;0;0;0
-40;'152;Chile;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3993;4443;2672;4300;4300;4300;2212;2212;5379;6100;7000;6000;4000;6929;1375;6593;2786;882;1042;1499;174;353;198;753;660;6910
-40;'152;Chile;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2736;3336;2302;2555;2555;2555;1746;1746;4223;5432;7472;5365;4067;6304;1312;6472;2577;948;979;1803;490;730;397;923;1004;6610
-40;'152;Chile;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26219;16700;15800;19800;16600;16600;15871;15871;12039;10000;2000;5530;6000;2282;2184;1383;10;25;141;298;2813;1045;148;13;6;49
-40;'152;Chile;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21458;11488;10904;14053;8600;8600;9087;9087;9380;7152;1546;4169;4133;1513;1514;921;10;22;91;210;2001;780;106;8;17;62
-40;'152;Chile;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53759;62000;71000;62000;62000;30000;30000;30000;28000;31000;41000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-40;'152;Chile;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48013;48013;48013;51700;53000;40000;56953;56953;73751;80000;92000;106000;126000;115896;146645;153869;143328;146694;142810;150775;169097;139796;85479;105171;111800;96283
-40;'152;Chile;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33966;33966;33966;25993;46042;41812;48202;48202;78550;80966;104846;98235;129335;128250;152318;157672;146670;149038;137728;146333;162524;148360;83967;84591;146784;123581
-40;'152;Chile;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1854;1000;1300;1400;1400;1400;1963;1963;1416;1000;500;178;600;331;401;329;825;427;355;783;839;1494;206;424;465;211
-40;'152;Chile;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1851;840;1137;1212;1212;1212;1774;1774;1600;1144;649;224;736;528;559;531;1266;808;624;859;1034;1806;318;537;717;394
-40;'152;Chile;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25146;29000;12000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-40;'152;Chile;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72994;91500;94200;78600;73000;93000;108000;108000;126950;142000;129000;105000;135000;122356;120315;139185;116101;115899;97549;99427;85134;79991;53456;57057;56000;35000
-40;'152;Chile;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91210;76641;90300;69800;59860;71784;95039;95039;122800;142524;147077;107576;149297;145011;128439;147774;124009;115250;94605;91001;92542;82918;54520;63835;85714;51047
-40;'152;Chile;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927;700;400;700;700;700;5108;5108;8500;1000;1000;402;1000;474;131;163;152;395;233;26;459;115;144;86;169;157
-40;'152;Chile;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1296;851;491;849;849;849;3930;3930;7676;652;465;532;919;484;175;159;122;296;203;113;595;151;229;128;237;521
-40;'152;Chile;1675;Other paper and paperboard;5510;Production;t;35800;47000;49100;54900;73400;84600;105000;93600;105500;109900;110000;141000;88000;72000;74000;95000;120000;106000;108000;177000;135000;145000;125000;150000;150000;152000;198000;199000;205000;231000;240000;265000;255000;269000;297000;399000;314000;297822;441000;473000;490000;619000;673000;787000;760000;768000;920000;968000;987000;1054000;1088000;1086000;1095000;1112800;1129900;1075300;989400;1078400;1077200;1075500;1244800;1305000;1292000
-40;'152;Chile;1675;Other paper and paperboard;5610;Import quantity;t;1000;1000;2800;3800;4300;1000;2500;1800;1500;3100;4600;6700;10000;4000;4000;12000;23000;21000;37000;41000;25000;14000;31400;13000;16800;19300;30400;30400;21000;30000;30000;86142;87290;100400;153900;174000;195300;224000;161000;161000;208100;192400;210400;283639;189402;262200;316900;276000;237000;314000;304618;310908;308250;296261;338293;353428;384983;457479;422044;446723;491087.66;472638;263650
-40;'152;Chile;1675;Other paper and paperboard;5622;Import value;1000 USD;500;500;1235;2512;3121;523;1188;965;1079;1897;2647;4805;5600;2250;2560;8400;16600;17750;31500;35000;22500;12600;28300;11700;27000;31000;33872;33872;23000;34000;34000;53109;54722;42004;79000;95609;116608;133580;100181;100181;113047;103050;114795;195464;140057;200980;248958;218741;160799;256276;283552;260176;270579;271363;284464;284865;315912;417404;376763;339649;466075.3;575213;247748
-40;'152;Chile;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;4000;14800;10800;14100;18200;15900;12900;10400;17900;14100;4800;1100;300;1200;8600;9000;7300;12000;11200;18000;4000;7000;5000;7000;13000;6700;25000;40100;17700;60700;58000;55000;69001;102200;112900;148300;164500;173700;241229;232326;280870;300920;362920;377317;418180;425319;411920;432530;448485;422415;412617;410512;451006;461857;555750;473148.5;490540;487641
-40;'152;Chile;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;1041;3473;2967;3959;5363;5172;4394;3665;8629;8940;1703;562;140;1118;6093;8189;3914;5166;4948;8000;4000;8400;14283;9596;14353;6500;36586;34898;25978;79000;76000;68588;68570;63737;73078;96088;101409;104578;160650;163633;218050;254307;318608;310150;369746;429973;415690;425331;447331;390738;354955;345133;412116;405066;451724;429025.06;514810;480015
-40;'152;Chile;1676;Household and sanitary papers;5510;Production;t;;;;;6900;8100;9200;10100;12700;12600;17000;18000;15000;15000;14000;11000;18000;20000;22000;24000;29000;31000;28000;27000;32000;36000;48000;51000;52000;54000;57000;62000;71000;76000;83000;106000;108000;101000;107000;109000;116000;129000;136000;141000;121000;135000;151000;151000;174000;195000;157000;159000;170000;169700;177600;181800;176500;185300;188400;186900;199700;205000;197000
-40;'152;Chile;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;5400;5400;7298;7298;700;1000;3000;1000;8000;24545;20415;7347;16826;17607;19813;21295;24240;39558;28639;34427.08;25000;22000
-40;'152;Chile;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3700;3700;6383;6383;1000;1400;4084;2243;13247;39515;30347;11615;26605;25735;28986;29911;35664;57208;35725;52827.66;43076;36086
-40;'152;Chile;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;26000;15000;600;3000;3100;3100;2467;2467;11500;12000;9000;6000;6000;5406;4830;6611;7101;8297;11895;25719;19723;16250;19206;8865;13000;8000
-40;'152;Chile;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25932;27828;10749;491;2230;2700;2700;1778;1778;11100;12511;12266;7760;7485;8647;7582;10291;10208;10589;13913;28616;22928;19462;20350;10299;18292;12234
-40;'152;Chile;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188822;323000;359000;371000;476000;534000;643000;636000;630000;766000;814000;783000;799000;884000;916000;920000;939800;928700;874400;797400;877100;872400;872200;1028700;1085000;1056200
-40;'152;Chile;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224000;161000;161000;205600;187000;205000;261644;172648;240600;295000;271000;234000;303000;277921;289215;297318;276473;317702;331535;360852;430196;372986;415144;451275.99;440423;236863
-40;'152;Chile;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133580;100181;100181;111047;99350;111095;152524;110692;152680;200258;206106;150075;232681;234027;223389;245569;232715;247341;244349;272356;367955;303290;286966;393041.84;514994;196044
-40;'152;Chile;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38001;86300;111100;142100;160100;169300;235368;227946;267450;287000;352000;370881;412000;419513;406400;425227;441015;414000;400426;384412;431009;442624;533820;462433.94;471984;479027
-40;'152;Chile;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26789;52348;71598;90455;97676;100845;154415;159001;203950;238796;303342;301982;362097;420935;407400;414385;436436;379715;340308;315530;388599;382853;429066;416989.64;494975;466894
-40;'152;Chile;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;40400;45300;47900;49900;55100;56100;53000;86000;60000;38000;50000;83000;95000;81000;79000;137000;95000;102000;85000;111000;100000;112000;143000;143000;146000;164000;174000;184000;169000;188000;197000;280000;196000;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;4000;12000;23000;21000;37000;41000;25000;14000;31400;13000;16800;19300;30400;30400;21000;30000;30000;86142;87290;100400;153900;174000;195300;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;2560;8400;16600;17750;31500;35000;22500;12600;28300;11700;27000;31000;33872;33872;23000;34000;34000;53109;54722;42004;79000;95609;116608;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;40100;17700;60700;58000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36586;34898;25978;79000;76000;28458;;;;;;;;;;;;;;;;;;;;;;;;;;
-40;'152;Chile;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67758;149000;153000;155000;239000;263000;327000;324000;286000;365000;405000;362000;390000;435000;429000;427000;412700;436300;390600;367700;365200;325700;325700;483700;466000;452000
-40;'152;Chile;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139673;100390;100390;128200;96000;109000;198984;113825;200000;238000;215000;185000;236000;209420;225099;218958;193440;223683;228480;242600;288053;243640;292724;309893.16;242000;116000
-40;'152;Chile;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91810;68855;68855;76323;40053;47417;93392;51873;104895;135723;131871;93704;149921;141508;139255;146747;131274;142852;135413;151450;210724;158641;161576;227862.37;266501;86915
-40;'152;Chile;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220;100;800;8300;8300;3000;3900;3853;27400;25000;48000;54260;74000;82174;53545;65914;63524;64631;63394;55016;41092;45353;67098;23740.89;30646;43627
-40;'152;Chile;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;119;416;2810;2810;1200;1800;1934;14000;13961;28258;27658;44884;57785;35019;45988;42999;42264;37924;34619;30752;30636;41426;17756.51;23198;23922
-40;'152;Chile;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70381;125000;148000;161000;188000;212000;246000;234000;270000;338000;360000;387000;380000;412000;426000;416000;432600;417200;406000;357300;444700;472400;472700;465100;547000;531000
-40;'152;Chile;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50117;36021;36021;46000;23000;28000;42000;42000;20000;24000;29000;28000;34000;36089;30216;41815;47584;53120;57518;66970;80093;73723;73740;82293.82;91281;54000
-40;'152;Chile;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25041;18780;18780;20817;21254;25635;42447;42447;27000;33926;42239;35463;44524;50705;44844;55208;58675;59972;62879;71082;92451;83980;79615;103429.47;138076;58052
-40;'152;Chile;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28721;62600;90300;107400;125400;125400;194848;194848;213700;243000;284000;298315;323000;320170;327149;316851;333851;305383;289479;268583;337323;345548;402275;373044.1;367929;381290
-40;'152;Chile;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21791;39608;60154;73579;80800;80800;137598;137598;172400;211083;257478;261262;304993;345769;349875;332018;356342;303374;270436;244705;313726;309992;350884;353058.55;395080;397708
-40;'152;Chile;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;31000;49000;42000;48000;51000;54000;54000;51000;51000;49000;34000;29000;37000;61000;77000;85000;71200;69600;69200;64200;71900;71400;77500;69000;72000
-40;'152;Chile;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210;24589;24589;31400;68000;68000;20660;16823;14800;28000;24000;18000;25000;24228;20905;25121;22856;27507;30704;33900;42778;41319;32173;41133;86000;54000
-40;'152;Chile;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16729;12546;12546;13907;38043;38043;16685;16372;16900;26844;29110;18855;32646;36052;30554;35534;33934;35805;36792;39078;50686;51987;36139;47723;88554;41267
-40;'152;Chile;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6926;23500;19900;25900;25900;25900;17562;22245;25300;18000;19000;16198;13000;16826;25074;41928;43091;43375;47430;60447;51063;51502;64207;65221.95;73000;54000
-40;'152;Chile;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4067;12555;10991;13731;13731;13731;9375;14569;16500;13329;16647;11540;10793;16990;21765;35835;36508;33420;31853;35916;42860;42032;36549;45820.58;76284;45150
-40;'152;Chile;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5683;18000;9000;13000;1000;8000;16000;24000;23000;12000;0;0;0;0;0;0;9500;4000;8200;3200;3000;2400;2400;2400;3000;1200
-40;'152;Chile;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;5000;3000;3000;8000;8184;12995;11424;12593;13392;14833;17382;19272;14304;16507;17956;21142;12863
-40;'152;Chile;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3885;3765;2886;2053;5590;5762;8736;8080;8832;8712;9265;10746;14094;8682;9636;14027;21863;9810
-40;'152;Chile;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;100;100;500;500;15000;19058;7000;1050;1000;1000;2108;2000;343;632;534;549;611;123;366;1531;221;240;427;409;110
-40;'152;Chile;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;66;37;335;335;5114;5642;4900;1050;423;959;1522;1427;391;741;544;587;657;95;290;1261;193;207;354;413;114
-40;'152;Chile;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;26100;31200;47900;33600;37700;41200;40000;37000;13000;19000;10000;1000;7000;5000;7000;16000;11000;12000;12000;12000;18000;4000;7000;5000;7000;13000;9000;19000;15000;5000;17000;13000;10000;8000;11000;5000;3000;14000;3000;3000;3000;3000;3000;3000;30000;60000;47000;11000;5000;3300;23600;19100;15500;16000;16400;16400;16400;15000;38800
-40;'152;Chile;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1000;1000;2800;3800;4300;1000;2500;1800;1500;3100;4600;6700;10000;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14697;9456;20900;20900;2000;2000;3000;2152;1278;3585;2962;2984;2080;2836;3043;9500;2940;5384.6;7215;4787
-40;'152;Chile;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;500;500;1235;2512;3121;523;1188;965;1079;1897;2647;4805;5600;2250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36557;22982;47300;47300;8551;8481;10348;10010;6440;13395;12043;11388;11530;13645;13785;16265;16958;20205.79;17143;15618
-40;'152;Chile;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;4000;14800;10800;14100;18200;15900;12900;10400;17900;14100;4800;1100;300;1200;8600;9000;7300;12000;11200;18000;4000;7000;5000;7000;13000;6700;0;0;0;0;0;6000;5000;900;1200;3200;1300;1300;3394;1913;1920;1920;1920;436;180;400;690;692;369;118;296;381;274;2983;2724;1849.56;5556;614
-40;'152;Chile;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;1041;3473;2967;3959;5363;5172;4394;3665;8629;8940;1703;562;140;1118;6093;8189;3914;5166;4948;8000;4000;8400;14283;9596;14353;6500;0;0;0;0;0;14198;13953;640;989;3403;1033;1033;4457;2854;3000;3000;3000;408;164;391;708;655;687;434;734;987;589;2751;2308;1736.42;1543;887
-40;'152;Chile;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308049;342439;293821;230889;491383;408499;250438
-40;'152;Chile;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338844;360589;347579;356612;495785;588034;383831
-40;'152;Chile;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1910;1796;2120;1527;2889;3172;3100
-40;'152;Chile;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243277;253384;244368;249149;360859;431285;261329
-40;'152;Chile;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;671;644;1212;2397;2402;2429
-40;'152;Chile;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242477;252746;243728;248923;359691;431256;261323
-40;'152;Chile;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1322;1125;1476;315;492;770;671
-40;'152;Chile;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;638;640;226;1168;29;6
-40;'152;Chile;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25919;32056;28866;21832;25934;32361;28956
-40;'152;Chile;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16069;17163;15436;15509;17274;18729;16283
-40;'152;Chile;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7099;9499;9382;6269;14480;17862;9271
-40;'152;Chile;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;497;490;332;465;993;1336
-40;'152;Chile;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47528;27563;21678;12569;24726;18801;10725
-40;'152;Chile;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62863;71295;70064;75908;99970;111771;84514
-40;'152;Chile;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17167;17167
-40;'152;Chile;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2
-40;'152;Chile;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5
-40;'152;Chile;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;22
-40;'152;Chile;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;32
-40;'152;Chile;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;32
-40;'152;Chile;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;67
-40;'152;Chile;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0
-40;'152;Chile;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0
-40;'152;Chile;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;252
-40;'152;Chile;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;424
-40;'152;Chile;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;118
-40;'152;Chile;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;215
-40;'152;Chile;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211002;255598;217179;176369;398493;317647;185002
-40;'152;Chile;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5014;6108;4719;4550;5321;5116;6261
-40;'152;Chile;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;947;987;265;838;623;421
-40;'152;Chile;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;35;0;43;72;5265;476
-40;'152;Chile;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13291;14980;13609;12058;24023;18033;12963
-40;'152;Chile;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11314;12107;12502;11121;11824;14875;13632
-40;'152;Chile;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246516;272935;278264;227924;342059;436192;330227
-40;'152;Chile;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102787;88806;72173;72901;70432;91336;85757
-40;'152;Chile;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4962;7927;5801;5020;5986;11990;7804
-40;'152;Chile;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;28;28;1;3;5;1
-40;'152;Chile;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73548;72158;65561;59933;77158;86227;71232
-40;'152;Chile;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28550;28773;24105;22881;25963;34859;30523
-40;'152;Chile;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33900;34647;36418;29903;47960;47707;40847
-40;'152;Chile;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18902;4714;4031;4451;4096;6352;6492
-40;'152;Chile;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57304;67822;78956;65587;110471;153358;105473
-40;'152;Chile;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36076;37044;29198;32858;29599;34676;30451
-40;'152;Chile;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76802;90381;91528;67481;100484;136910;104871
-40;'152;Chile;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19227;18247;14811;12710;10771;15444;18290
-351;'159;China;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57592083;63493504;53932668;51136157;60250625.26;59118528;55562697
-351;'159;China;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59560376;61395818;59177461;58104688;71221567.5;75902916.77;70273359.77
-351;'159;China;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;46590;62011;76263;94137;118688;133956;134945;175267;178488;225658;284357;292492;443868;567921;444121;669587;859080;1121484;1522492;2071771;2115485;2030616;2458896;2785463;2868050;3545818;4173641;4756905;5355178;5421920;6390859;7011235;7240483;8955620;10762040;11180973;11841872;11127870;12226836;14935828;13685391;14232102;16129235;18348196;18844179;20436983;24847992;25322487;23745926;32820649;42746084.2;39357629;42856159;46295150;42534777;42574948;51369050;57269011;48097864;45540810;54142010.26;53613153;50582832
-351;'159;China;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;23160;30824;33386;62043;61666;75352;89848;95850;117687;142526;184498;268523;332914;276271;256316;338043;377300;484582;600254;635057;638962;573408;608117;578803;597651;679358;933777;1283898;1280997;1525538;1802406;2180800;2250360;2652799;3366152;3368242;3189550;2946417;2629146;3723926;3207165;3398547;4405157;4614900;5739707;7801721;9957239;9781507;8102708.3;10148646;12836582;13571380;14577379;16236939;15363700.05;15642348;14973853;14883571;13894627;12767785;15750880.5;19359740.77;17185129.77
-351;'159;China;1861;Roundwood;5516;Production;m3;315846493;312558107;317455865;321492173;324342368;327004099;330178087;333057003;335883311;339172876;344383500;352382135;356493114;369135644;387177653;400056523;400603033;395565709;397538563;395644921;393017438;392736065;391672733;393944550;391521246;391896305;389380750;384415403;383606096;378563903;372570590;366184159;363167603;355894998;351991674;353917112;347631712;343135636;331783484;323645681;316881400;312013507;309907568;305931686;302036684;298178141;301628495;321001166;339941511;350632552;346358990;341666115;347523624;338124995;321181826;333695387;329278204;334111668;308800559;324851055;321443063;322702213;319917487
-351;'159;China;1861;Roundwood;5616;Import quantity;m3;797400;1176600;1534000;1755900;2628800;2571900;2544900;2991000;3032500;3449900;4239400;4494400;4857200;4806100;4820800;5977600;7384200;8638500;8664700;8316200;8684000;9309900;12954900;13069500;14148400;12766700;12918300;13963900;11844714;7249907;8059128;8495021;5991205;6409241;6152339;5847800;6740598;6897731;12277194;15742895;18523231;25867001;26738649;27380324;30725712;33142479;38265922;33637374;28851726;36582570;43305810;38684328;45859129;52294839;49967976;51830373;55641341;60188084;61029894;59984868;63676680;44077139;38510834
-351;'159;China;1861;Roundwood;5622;Import value;1000 USD;17431;28283;39822;44027;69720;72318;72649;86170;89601;101648;126218;121414;219076;271526;187633;294498;405536;496441;744746;769142;725492;804768;988394;1065044;1028035;904177;1043332;1238189;1156959;744614;885023;942029;934257;1018414;979924;930687;1107446;939096;1441746;2029780;1993478;2361120;2645770;2880097;3494103;4100175;5664067;4941971;4273227;6321912;8572863.2;7482031;9613640;12300007;8211532;8503560;10024566;11107162;9570403;8482750;11678394.16;8630474;6489074
-351;'159;China;1861;Roundwood;5916;Export quantity;m3;48600;65200;71100;132000;103000;100200;79500;58600;60900;66000;122400;124300;121300;95600;120900;109200;117700;94800;93900;132300;131500;136300;146200;165400;116700;109700;121200;192300;169400;386891;773613;837024;835655;929511;741270;437613;170434;137108;60262;38452;38410;459066;23856;37743;31694;140310;174540;99549;49339;51294;42919;44419;70771;65423;49538;178941;127178;96438;64702;49789;26089.15;96406;44718
-351;'159;China;1861;Roundwood;5922;Export value;1000 USD;1634;2167;2717;5820;4673;8035;7202;4922;6880;7523;17182;27110;30759;22136;23788;19618;23897;17816;23863;35169;32679;31893;33942;32313;26000;32587;40222;79957;43384;37160;66676;72599;90108;132520;151949;141271;77130;39571;19466;14593;14418;85552;10115;16890;13878;71213;100949;65898;25054;28367;29879;32929;36749;44513;23369;51185;61446;38836;26546;15369;12373;28907;10841
-351;'159;China;1862;Roundwood, coniferous;5516;Production;m3;135222022;132798501;135534980;137666459;138912938;140279417;141818896;143254198;144597352;146286391;148544144;151977369;153990755;160651204;171730416;177406290;178124899;176550598;178351052;178101400;175861938;176311212;176630986;179640736;179611440;180467901;179797015;177662154;175622073;174866491;172101433;170133423;170267807;167486033;166422103;168891455;166255543;164240072;157983109;153962062;150435805;148263011;147893860;146278846;144705271;143140890;115427000;112392400;112343969;107938475;104469053;100376211;101917024;96840181;99555111;96554557;93785341;95447902;94217955;93011330;91840546;91392682;90265326
-351;'159;China;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38423411;41896341;45500648;47137773;50202314;31422620;28362490
-351;'159;China;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5163330;5820730;5690116;5494461;7910575;5026561;3806288
-351;'159;China;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6250;9820;8032;7794;4947;33185;33289
-351;'159;China;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3612;3537;3661;1643;1213;4526;4565
-351;'159;China;1863;Roundwood, non-coniferous;5516;Production;m3;180624471;179759606;181920885;183825714;185429430;186724682;188359191;189802805;191285959;192886485;195839356;200404766;202502359;208484440;215447237;222650233;222478134;219015111;219187511;217543521;217155500;216424853;215041747;214303814;211909806;211428404;209583735;206753249;207984023;203697412;200469157;196050736;192899796;188408965;185569571;185025657;181376169;178895564;173800375;169683619;166445595;163750496;162013708;159652840;157331413;155037251;186201495;208608766;227597542;242694077;241889937;241289904;245606600;241284814;221626715;237140830;235492863;238663766;214582604;231839725;229602517;231309531;229652161
-351;'159;China;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17217930;18291743;15529246;12847095;13474366;12654519;10148344
-351;'159;China;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4861236;5286432;3880287;2988289;3767819.16;3603913;2682786
-351;'159;China;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120928;86618;56670;41995;21142.15;63221;11429
-351;'159;China;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57834;35299;22885;13726;11160;24381;6276
-351;'159;China;1864;Wood fuel;5516;Production;m3;280372493;282194107;284035865;285852173;287717368;289502099;291382087;293225003;295058311;297018876;300986500;308035135;310558114;318539644;319699653;330678523;329077025;321779693;319542563;316442905;317269430;314644041;310348717;302937526;296976238;294649305;290472742;286134087;286891788;287335095;282820490;273743251;264815687;256898198;250749074;245585912;240976012;236092536;231822084;227626581;223417000;219284407;215243468;211263286;207367284;203513241;199734995;196028066;192390311;188823052;185430718;182102217;178838839;175626096;172479956;169261619;166102612;163006791;159968682;156988178;154096186;151258336;148473610
-351;'159;China;1864;Wood fuel;5616;Import quantity;m3;160600;114100;86700;63700;49000;64600;52700;50200;37300;44800;43700;44400;25800;20800;14800;9200;7400;4600;3800;3400;3400;3400;3400;3400;200;100;100;100;100;100;100;32761;109336;51400;49267;7800;1904;2612;2915;2904;8600;6620;6812;7254;6231;10601;25515;13656;4010;4804;5456;5721;9894;11811;10013;1817;1409;773;4431;20578;19890;18896;20519
-351;'159;China;1864;Wood fuel;5622;Import value;1000 USD;1790;1300;1206;838;728;800;713;774;574;659;1255;793;406;400;379;322;298;199;157;181;181;181;181;181;7;2;5;3;3;3;3;1762;4295;4894;4677;580;677;645;574;1240;1923;1065;491;957;923;1542;18518;1094;843;1005;2073;1344;3023;1373;1327;546;750;428;539;1658;4879.16;5177;8374
-351;'159;China;1864;Wood fuel;5916;Export quantity;m3;6300;16600;8100;5900;5500;4600;4600;1100;2100;4100;2700;2500;1100;7400;6100;4100;4100;4100;4100;;;;;;;;;;;;;33010;103132;34265;26094;9300;11150;8900;8028;1141;10500;5600;4364;6515;2435;2079;1333;570;1945;1964;1572;2299;789;1128;928;483;384;812;222;1169;1665.15;980;1274
-351;'159;China;1864;Wood fuel;5922;Export value;1000 USD;60;185;79;48;65;49;49;14;19;41;19;20;21;282;192;145;145;145;145;;;;;;;;;;;;;1761;3928;2359;2232;1118;1519;4052;3653;241;1292;827;740;799;621;423;530;517;377;222;672;803;170;758;1018;290;196;548;779;623;837;757;608
-351;'159;China;1627;Wood fuel, coniferous;5516;Production;m3;113357022;114108501;114859980;115611459;116362938;117114417;117865896;118622198;119383352;120149391;121722144;124541369;125562755;128818204;129333416;133788290;133181891;130242590;129337052;128085392;128464930;127401196;125662978;122658720;120242432;119300901;117611007;115852638;116155565;116333783;114503733;110825915;107210099;104008133;101518603;99420355;97552543;95576072;93846709;92147862;90443905;88770511;87136360;85524246;83947471;82386790;80857100;79356100;77882969;76438475;75065401;73718870;72399771;71098014;69826056;68522851;67242589;65989565;64759618;63552993;62382209;61233345;60105989
-351;'159;China;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1261;457;768;17541;17422;17437;17307
-351;'159;China;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684;265;235;1061;1051;1073;1000
-351;'159;China;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;8;18;9;17;55;159
-351;'159;China;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;11;69;8;6;54;93
-351;'159;China;1628;Wood fuel, non-coniferous;5516;Production;m3;167015471;168085606;169175885;170240714;171354430;172387682;173516191;174602805;175674959;176869485;179264356;183493766;184995359;189721440;190366237;196890233;195895134;191537103;190205511;188357513;188804500;187242845;184685739;180278806;176733806;175348404;172861735;170281449;170736223;171001312;168316757;162917336;157605588;152890065;149230471;146165557;143423469;140516464;137975375;135478719;132973095;130513896;128107108;125739040;123419813;121126451;118877895;116671966;114507342;112384577;110365317;108383347;106439068;104528082;102653900;100738768;98860023;97017226;95209064;93435185;91713977;90024991;88367621
-351;'159;China;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;316;3663;3037;2468;1459;3212
-351;'159;China;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;163;304;597;3828.16;4104;7374
-351;'159;China;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;804;204;1160;1648.15;925;1115
-351;'159;China;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;537;710;615;831;703;515
-351;'159;China;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;160600;114100;86700;63700;49000;64600;52700;50200;37300;44800;43700;44400;25800;20800;14800;9200;7400;4600;3800;3400;3400;3400;3400;3400;200;100;100;100;100;100;100;32761;109336;51400;49267;7800;1904;2612;2915;2904;8600;6620;6812;7254;6231;10601;25515;13656;4010;4804;5456;5721;9894;11811;10013;1817;;;;;;;
-351;'159;China;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;1790;1300;1206;838;728;800;713;774;574;659;1255;793;406;400;379;322;298;199;157;181;181;181;181;181;7;2;5;3;3;3;3;1762;4295;4894;4677;580;677;645;574;1240;1923;1065;491;957;923;1542;18518;1094;843;1005;2073;1344;3023;1373;1327;546;;;;;;;
-351;'159;China;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;6300;16600;8100;5900;5500;4600;4600;1100;2100;4100;2700;2500;1100;7400;6100;4100;4100;4100;4100;;;;;;;;;;;;;33010;103132;34265;26094;9300;11150;8900;8028;1141;10500;5600;4364;6515;2435;2079;1333;570;1945;1964;1572;2299;789;1128;928;483;;;;;;;
-351;'159;China;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;60;185;79;48;65;49;49;14;19;41;19;20;21;282;192;145;145;145;145;;;;;;;;;;;;;1761;3928;2359;2232;1118;1519;4052;3653;241;1292;827;740;799;621;423;530;517;377;222;672;803;170;758;1018;290;;;;;;;
-351;'159;China;1865;Industrial roundwood;5516;Production;m3;35474000;30364000;33420000;35640000;36625000;37502000;38796000;39832000;40825000;42154000;43397000;44347000;45935000;50596000;67478000;69378000;71526008;73786016;77996000;79202016;75748008;78092024;81324016;91007024;94545008;97247000;98908008;98281316;96714308;91228808;89750100;92440908;98351916;98996800;101242600;108331200;106655700;107043100;99961400;96019100;93464400;92729100;94664100;94668400;94669400;94664900;101893500;124973100;147551200;161809500;160928272;159563898;168684785;162498899;148701870;164433768;163175592;171104877;148831877;167862877;167346877;171443877;171443877
-351;'159;China;1865;Industrial roundwood;5616;Import quantity;m3;636800;1062500;1447300;1692200;2579800;2507300;2492200;2940800;2995200;3405100;4195700;4450000;4831400;4785300;4806000;5968400;7376800;8633900;8660900;8312800;8680600;9306500;12951500;13066100;14148200;12766600;12918200;13963800;11844614;7249807;8059028;8462260;5881869;6357841;6103072;5840000;6738694;6895119;12274279;15739991;18514631;25860381;26731837;27373070;30719481;33131878;38240407;33623718;28847716;36577766;43300354;38678607;45849235;52283028;49957963;51828556;55639932;60187311;61025463;59964290;63656790;44058243;38490315
-351;'159;China;1865;Industrial roundwood;5622;Import value;1000 USD;15641;26983;38616;43189;68992;71518;71936;85396;89027;100989;124963;120621;218670;271126;187254;294176;405238;496242;744589;768961;725311;804587;988213;1064863;1028028;904175;1043327;1238186;1156956;744611;885020;940267;929962;1013520;975247;930107;1106769;938451;1441172;2028540;1991555;2360055;2645279;2879140;3493180;4098633;5645549;4940877;4272384;6320907;8570790.2;7480687;9610617;12298634;8210205;8503014;10023816;11106734;9569864;8481092;11673515;8625297;6480700
-351;'159;China;1865;Industrial roundwood;5916;Export quantity;m3;42300;48600;63000;126100;97500;95600;74900;57500;58800;61900;119700;121800;120200;88200;114800;105100;113600;90700;89800;132300;131500;136300;146200;165400;116700;109700;121200;192300;169400;386891;773613;804014;732523;895246;715176;428313;159284;128208;52234;37311;27910;453466;19492;31228;29259;138231;173207;98979;47394;49330;41347;42120;69982;64295;48610;178458;126794;95626;64480;48620;24424;95426;43444
-351;'159;China;1865;Industrial roundwood;5922;Export value;1000 USD;1574;1982;2638;5772;4608;7986;7153;4908;6861;7482;17163;27090;30738;21854;23596;19473;23752;17671;23718;35169;32679;31893;33942;32313;26000;32587;40222;79957;43384;37160;66676;70838;86180;130161;149717;140153;75611;35519;15813;14352;13126;84725;9375;16091;13257;70790;100419;65381;24677;28145;29207;32126;36579;43755;22351;50895;61250;38288;25767;14746;11536;28150;10233
-351;'159;China;1866;Industrial roundwood, coniferous;5516;Production;m3;21865000;18690000;20675000;22055000;22550000;23165000;23953000;24632000;25214000;26137000;26822000;27436000;28428000;31833000;42397000;43618000;44943008;46308008;49014000;50016008;47397008;48910016;50968008;56982016;59369008;61167000;62186008;61809516;59466508;58532708;57597700;59307508;63057708;63477900;64903500;69471100;68703000;68664000;64136400;61814200;59991900;59492500;60757500;60754600;60757800;60754100;34569900;33036300;34461000;31500000;29403652;26657341;29517253;25742167;29729055;28031706;26542752;29458337;29458337;29458337;29458337;30159337;30159337
-351;'159;China;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3631346;2873496;2463003;1775068;1356921;1128200;787500;1060251;1584475;4736920;6499115;9280689;16081093;15202956;16186301;18441912;19920463;23471720;21417890;20524605;25769415;31802275;27038143;33249108;36178087;35040474;36759597;38422150;41895884;45499880;47120232;50184892;31405183;28345183
-351;'159;China;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395741;296440;230464;214067;126618;123564;72452;94393;108322;297248;392267;561718;1025842;963444;1193755;1411907;1736236;2430632;2027871;2263417;3271412;4910343.2;3785218;5106340;5498787;3634671;4415098;5162646;5820465;5689881;5493400;7909524;5025488;3805288
-351;'159;China;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28009;211398;264828;178875;260583;87513;45513;66014;30300;4818;4000;3346;3600;3143;5932;6902;4463;9508;4918;7254;2140;1693;11062;12865;11406;4397;9841;6220;9812;8014;7785;4930;33130;33130
-351;'159;China;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2847;8626;19146;19126;24764;32967;10612;24983;4513;2303;1377;1795;1636;944;3055;2589;2074;2851;2340;2790;1634;915;1775;1921;2114;1186;2232;3599;3526;3592;1635;1207;4472;4472
-351;'159;China;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3631346;2873496;2463003;1775068;1356921;1128200;787500;1060251;1584475;4736920;6499115;9280689;16081093;15202956;16186301;18441912;19920463;23471720;21417890;20524605;25769415;31802275;27038143;33249108;36178087;35040474;36759597;38422150;41895884;45499880;47120232;50184892;31405183;28345183
-351;'159;China;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395741;296440;230464;214067;126618;123564;72452;94393;108322;297248;392267;561718;1025842;963444;1193755;1411907;1736236;2430632;2027871;2263417;3271412;4910343.2;3785218;5106340;5498787;3634671;4415098;5162646;5820465;5689881;5493400;7909524;5025488;3805288
-351;'159;China;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28009;211398;264828;178875;260583;87513;45513;66014;30300;4818;4000;3346;3600;3143;5932;6902;4463;9508;4918;7254;2140;1693;11062;12865;11406;4397;9841;6220;9812;8014;7785;4930;33130;33130
-351;'159;China;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2847;8626;19146;19126;24764;32967;10612;24983;4513;2303;1377;1795;1636;944;3055;2589;2074;2851;2340;2790;1634;915;1775;1921;2114;1186;2232;3599;3526;3592;1635;1207;4472;4472
-351;'159;China;1867;Industrial roundwood, non-coniferous;5516;Production;m3;13609000;11674000;12745000;13585000;14075000;14337000;14843000;15200000;15611000;16017000;16575000;16911000;17507000;18763000;25081000;25760000;26583000;27478008;28982000;29186008;28351000;29182008;30356008;34025008;35176000;36080000;36722000;36471800;37247800;32696100;32152400;33133400;35294208;35518900;36339100;38860100;37952700;38379100;35825000;34204900;33472500;33236600;33906600;33913800;33911600;33910800;67323600;91936800;113090200;130309500;131524620;132906557;139167532;136756732;118972815;136402062;136632840;141646540;119373540;138404540;137888540;141284540;141284540
-351;'159;China;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3618461;5185532;5999257;4106801;5000920;4974872;5052500;5678443;5310644;7537359;9240876;9233942;9779288;11528881;11186769;12277569;13211415;14768687;12205828;8323111;10808351;11498079;11640464;12600127;16104941;14917489;15068959;17217782;18291427;15525583;12844058;13471898;12653060;10145132
-351;'159;China;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348870;588580;709803;715895;886902;851683;857655;1012376;830129;1143924;1636273;1429837;1334213;1681835;1685385;2081273;2362397;3214917;2913006;2008967;3049495;3660447;3695469;4504277;6799847;4575534;4087916;4861170;5286269;3879983;2987692;3763991;3599809;2675412
-351;'159;China;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358882;562215;539186;553648;634663;627663;382800;93270;97908;47416;33311;24564;449866;16349;25296;22357;133768;163699;94061;40140;47190;39654;31058;57117;52889;44213;168617;120574;85814;56466;40835;19494;62296;10314
-351;'159;China;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34313;58050;51692;67054;105397;116750;129541;50628;31006;13510;12975;11331;83089;8431;13036;10668;68716;97568;63041;21887;26511;28292;30351;34658;41641;21165;48663;57651;34762;22175;13111;10329;23678;5761
-351;'159;China;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495065;4810558;5373937;3434414;4284759;4258000;4452200;4694057;4397644;6762645;7986452;8290454;8050848;8602736;8357631;8240874;8205069;8741205;8196328;6617335;8759252;8892636;9072380;9913947;12455942;11902649;10432153;10698008;11534755;9853479;8769457;8114659;7483995;5900313
-351;'159;China;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327145;544498;629614;622893;773241;728851;775573;795679;671770;999162;1220565;1183691;1055919;1247497;1379865;1417975;1571773;2126729;2063824;1631129;2526143;3000300;3056945;3855784;5848783;3628971;3025428;3427292;3662432;2770381;2012059;2329296;1961093;1555260
-351;'159;China;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15882;33357;41443;29144;216200;209200;320500;75041;74308;3321;20210;14864;439625;8070;22648;14117;67976;13091;61167;8643;10378;15940;25780;15294;20671;10738;34601;99654;64882;43307;31554;15380;61553;9571
-351;'159;China;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057;4306;6130;5258;64525;75878;103450;43533;21347;1182;8783;5517;77811;4465;10750;7269;47800;14962;46760;9521;11835;16733;21512;15080;21773;9947;16280;46889;27389;17597;10947;8981;23260;5343
-351;'159;China;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123396;374974;625320;672387;716161;716872;600300;984386;913000;774714;1254424;943488;1728440;2926145;2829138;4036695;5006346;6027482;4009500;1705776;2049099;2605443;2568084;2686180;3648999;3014840;4636806;6519774;6756672;5672104;4074601;5357239;5169065;4244819
-351;'159;China;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21725;44082;80189;93002;113661;122832;82082;216697;158359;144762;415708;246146;278294;434338;305520;663298;790624;1088188;849182;377838;523352;660147;638524;648493;951064;946563;1062488;1433878;1623837;1109602;975633;1434695;1638716;1120152
-351;'159;China;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343000;528858;497743;524504;418463;418463;62300;18229;23600;44095;13101;9700;10241;8279;2648;8240;65792;150608;32894;31497;36812;23714;5278;41823;32218;33475;134016;20920;20932;13159;9281;4114;743;743
-351;'159;China;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32256;53744;45562;61796;40872;40872;26091;7095;9659;12328;4192;5814;5278;3966;2286;3399;20916;82606;16281;12366;14676;11559;8839;19578;19868;11218;32383;10762;7373;4578;2164;1348;418;418
-351;'159;China;1868;Sawlogs and veneer logs;5516;Production;m3;19040000;16920000;18475000;19670000;20130000;20507000;21061000;21617000;22115000;22609000;23217000;23637000;24600000;27386000;42147000;42824000;43691008;44835016;47504000;47273016;43020000;43845016;45426016;52872016;53885000;54592000;54517000;53600308;51771300;45728800;44954100;47644908;51392916;52037800;56135600;60036200;58720700;59165100;55183400;53221100;51526400;51191100;52226100;52230400;52231400;52226900;46599500;54403100;68173200;74416500;66877272;63216898;88245785;78086899;79944870;90015768;86468592;85775877;63502877;82533877;82017877;84042877;84042877
-351;'159;China;1868;Sawlogs and veneer logs;5616;Import quantity;m3;610700;1032300;1419800;1661900;2567400;2500500;2489900;2937200;2992200;3405100;4195700;4450000;4831400;4785300;4806000;5456500;6865300;8105000;7798600;7676500;6958700;8360600;11310200;11847000;12643100;10709300;10799500;12863800;10586614;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;14179;25244;37008;41469;68310;71205;71843;85238;88887;100989;124963;120621;218670;271126;187254;285601;395602;485806;727919;746660;674445;780224;952315;1037598;994668;863559;988812;1184977;1039053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1868;Sawlogs and veneer logs;5916;Export quantity;m3;42300;48600;63000;126100;97500;95600;74900;57500;58800;61900;119700;121800;120200;88200;114800;105100;113600;90700;89800;132300;131500;136300;146200;165400;116700;109700;121200;192300;169400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1574;1982;2638;5772;4608;7986;7153;4908;6861;7482;17163;27090;30738;21854;23596;19473;23752;17671;23718;35169;32679;31893;33942;32313;26000;32587;40222;79957;43384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;11890000;10570000;11610000;12360000;12605000;12835000;13123000;13457000;13734000;14057000;14332000;14626000;15218000;16833000;26006000;26437000;26932008;27655008;29316000;29345008;26284000;26803008;27780008;32326008;32952000;33372000;33338000;32758508;30232500;28908700;28429700;30139508;32509708;32929900;35531500;38033100;37758000;38042000;35478400;34416200;33113900;32914500;33579500;33576600;33579800;33576100;15542900;14081300;15583000;14121000;11885652;10237341;15013253;11972167;15563055;14889706;11625752;12956337;12956337;12956337;12956337;13276337;13276337
-351;'159;China;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;139500;228000;465000;487100;1521200;1458000;1469700;1455300;1456000;1455600;1457300;124900;496300;608900;613400;618300;398900;369500;403400;611300;1112200;3052300;5325500;6712400;7510400;5914400;5506500;7523700;6059400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;3930;6426;13083;13676;42576;43661;44096;43654;43683;43681;43725;3165;13621;16731;16359;24036;19415;20924;27449;32329;91399;245022;431553;551159;616854;487569;461168;653546;538625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;16800;23400;39300;96000;66200;69700;55800;32600;36600;31300;81100;68700;62200;43200;67000;59900;59900;28300;23800;17300;29100;29300;37600;34400;4900;1200;1100;400;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;691;1071;1809;4399;3514;6855;6372;4082;5879;6265;14403;20721;23495;15441;14000;11681;12181;4700;4000;3027;4949;5283;7486;6183;2865;1265;1539;914;9492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;7150000;6350000;6865000;7310000;7525000;7672000;7938000;8160000;8381000;8552000;8885000;9011000;9382000;10553000;16141000;16387000;16759000;17180008;18188000;17928008;16736000;17042008;17646008;20546008;20933000;21220000;21179000;20841800;21538800;16820100;16524400;17505400;18883208;19107900;20604100;22003100;20962700;21123100;19705000;18804900;18412500;18276600;18646600;18653800;18651600;18650800;31056600;40321800;52590200;60295500;54991620;52979557;73232532;66114732;64381815;75126062;74842840;72819540;50546540;69577540;69061540;70766540;70766540
-351;'159;China;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;471200;804300;954800;1174800;1046200;1042500;1020200;1481900;1536200;1949500;2738400;4325100;4335100;4176400;4192600;4838200;6466400;7735500;7395200;7065200;5846500;5308300;5984700;5134600;5132700;4794900;5293000;5340100;4527214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;10249;18818;23925;27793;25734;27544;27747;41584;45204;57308;81238;117456;205049;254395;170895;261565;376187;464882;700470;714331;583046;535202;520762;486439;377814;375990;527644;531431;500428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;25500;25200;23700;30100;31300;25900;19100;24900;22200;30600;38600;53100;58000;45000;47800;45200;53700;62400;66000;115000;102400;107000;108600;131000;111800;108500;120100;191900;166200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;883;911;829;1373;1094;1131;781;826;982;1217;2760;6369;7243;6413;9596;7792;11571;12971;19718;32142;27730;26610;26456;26130;23135;31322;38683;79043;33892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7390000;6988000;6718000;6578000;6478000;6678000;6678000;6678000;6678000;12899000;18696000;21087000;20372000;24928000;24527000;35317000;27340000;31733000;33474000;34488000;38315000;38315000;38315000;38315000;39235000;39235000
-351;'159;China;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5278000;5018000;4838000;4778000;4678000;4778000;4778000;4778000;4778000;5018000;5634000;5648000;4737000;5312000;4869000;6897000;5095000;7038000;6433000;6991000;7668000;7668000;7668000;7668000;7831000;7831000
-351;'159;China;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112000;1970000;1880000;1800000;1800000;1900000;1900000;1900000;1900000;7881000;13062000;15439000;15635000;19616000;19658000;28420000;22245000;24695000;27041000;27497000;30647000;30647000;30647000;30647000;31404000;31404000
-351;'159;China;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;511900;511500;528900;862300;636300;1721900;945900;1641300;1219100;1505100;2057300;2118700;1100000;966000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;8575;9636;10436;16670;22301;50866;24363;35898;27265;33360;40616;54515;53209;98186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1555000;1360000;1475000;1485000;1585000;1700000;1920000;2125000;2220000;2550000;2680000;2810000;2930000;4000000;4291000;4476000;4671000;4647000;4991000;5172000;4652000;4786000;4981000;5690000;6610000;6921000;6888000;7178000;7440000;7997000;7887000;7887000;7887000;7887000;7297000;7751000;7751000;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;511900;511500;528900;862300;636300;1721900;945900;1641300;1219100;1505100;2057300;2118700;1100000;966000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;8575;9636;10436;16670;22301;50866;24363;35898;27265;33360;40616;54515;53209;98186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;985000;870000;945000;955000;1015000;1090000;1280000;1435000;1500000;1790000;1880000;1970000;2050000;3000000;3191000;3321000;3458000;3373000;3654000;3825000;3426000;3536000;3688000;4181000;4918000;5221000;5145000;5348000;5531000;5921000;5844000;5844000;5844000;5844000;5472000;5793000;5793000;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;570000;490000;530000;530000;570000;610000;640000;690000;720000;760000;800000;840000;880000;1000000;1100000;1155000;1213000;1274000;1337000;1347000;1226000;1250000;1293000;1509000;1692000;1700000;1743000;1830000;1909000;2076000;2043000;2043000;2043000;2043000;1825000;1958000;1958000;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1871;Other industrial roundwood;5516;Production;m3;14879000;12084000;13470000;14485000;14910000;15295000;15815000;16090000;16490000;16995000;17500000;17900000;18405000;19210000;21040000;22078000;23164000;24304000;25501000;26757000;28076008;29461008;30917000;32445008;34050008;35734000;37503008;37503008;37503008;37503008;36909000;36909000;39072000;39072000;37810000;40544000;40184000;40488000;37790000;36080000;35360000;35060000;35760000;35760000;35760000;35760000;42395000;51874000;58291000;67021000;69123000;71820000;45122000;57072000;37024000;40944000;42219000;47014000;47014000;47014000;47014000;48166000;48166000
-351;'159;China;1871;Other industrial roundwood;5616;Import quantity;m3;26100;30200;27500;30300;12400;6800;2300;3600;3000;;;;;;;;;;;;;;;;;;;;292000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1871;Other industrial roundwood;5622;Import value;1000 USD;1462;1739;1608;1720;682;313;93;158;140;;;;;;;;;;;;;;;;;;;;19717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;8990000;7250000;8120000;8740000;8930000;9240000;9550000;9740000;9980000;10290000;10610000;10840000;11160000;12000000;13200000;13860000;14553000;15280000;16044000;16846000;17687008;18571008;19500000;20475008;21499008;22574000;23703008;23703008;23703008;23703008;23324000;23324000;24704000;24704000;23900000;25645000;25152000;25344000;23640000;22560000;22100000;21900000;22400000;22400000;22400000;22400000;14009000;13321000;13230000;12642000;12206000;11551000;7607000;8675000;7128000;6709000;7926000;8834000;8834000;8834000;8834000;9052000;9052000
-351;'159;China;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;5889000;4834000;5350000;5745000;5980000;6055000;6265000;6350000;6510000;6705000;6890000;7060000;7245000;7210000;7840000;8218000;8611000;9024000;9457000;9911000;10389000;10890000;11417000;11970000;12551000;13160000;13800000;13800000;13800000;13800000;13585000;13585000;14368000;14368000;13910000;14899000;15032000;15144000;14150000;13520000;13260000;13160000;13360000;13360000;13360000;13360000;28386000;38553000;45061000;54379000;56917000;60269000;37515000;48397000;29896000;34235000;34293000;38180000;38180000;38180000;38180000;39114000;39114000
-351;'159;China;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;26100;30200;27500;30300;12400;6800;2300;3600;3000;;;;;;;;;;;;;;;;;;;;292000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;1462;1739;1608;1720;682;313;93;158;140;;;;;;;;;;;;;;;;;;;;19717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1630;Wood charcoal;5510;Production;t;1652467;1665829;1679299;1692878;1706568;1720367;1734279;1748302;1762440;1776691;1791558;1827702;1833301;1877016;1882282;1964756;1966745;1931236;1931233;1925701;1949110;1948605;1936590;1902327;1878686;1883661;1875467;1866898;1898088;1929694;1929107;1904987;1866085;1849314;1845828;1841880;1848954;1842105;1825778;1796563;1790031;1783526;1777047;1770597;1764171;1763891;1749200;1741100;1733058;1725038;1715504;1706025;1696602;1687232;1677917;1664130;1650460;1636902;1623456;1610123;1596487;1582969;2435933
-351;'159;China;1630;Wood charcoal;5610;Import quantity;t;55000;58200;48800;44200;39100;33300;27000;34400;28800;28800;29900;21300;21500;20200;13900;18200;20500;20600;23100;25300;24200;26200;29100;25100;23800;23200;21700;19900;23800;20000;20600;47845;46278;50985;53500;45600;42973;45350;43106;66057;71255;63666;72863;75696;87835;82653;116581;179712;197392;214802;233340;211581;252613;264935;215343;199592;213527;337498;451669;325033;296264.41;592138;708893
-351;'159;China;1630;Wood charcoal;5622;Import value;1000 USD;2247;2167;1885;1748;1525;1224;1065;1220;1164;1174;1139;882;1131;1455;907;1532;1847;2682;3712;4446;3468;4367;5280;4461;4087;3859;3690;3639;4800;3924;3975;9806;8905;9887;13284;12785;11098;10037;8922;9924;12067;9883;11531;12203;16284;15846;19579;26633;28551;32960;56780;71882;72902;75479;62814;58004;62698;100358;111277;83838;100346.13;195175;227539
-351;'159;China;1630;Wood charcoal;5910;Export quantity;t;3100;4100;1900;1100;400;100;100;1600;300;1300;2900;2200;2200;1900;2700;1500;1500;1500;1500;1500;1500;1800;1900;1500;1700;1700;1300;1500;3200;2200;1100;17135;11001;18361;28500;35300;48800;49300;39769;84892;101092;104768;108799;69110;37625;49143;45862;51998;47413;53635;52329;68364;88555;57160;74457;68343;60963;61056;62261;50338;59459.31;50592;52270
-351;'159;China;1630;Wood charcoal;5922;Export value;1000 USD;128;164;78;45;18;5;16;56;12;53;120;102;142;182;224;135;135;135;135;254;254;318;365;328;302;302;259;350;718;503;233;4410;4396;8165;17331;19149;28053;27119;30033;42991;55139;56543;64154;40147;22910;26706;20914;23554;21311;30036;30278;49172;66350;58873;109420;102176;86294;81116;83587;90915;111533.15;81334;61733
-351;'159;China;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9655000;9655000;11985000;13570000;17180000;36748000;47008000;38177000;40408000;47744000;79008000;94858000;108735000;112360000;118070000;133355000;134141000;125858000;137761000;137381000;148381000;148381000;148381000;148381000;148381000;148381000
-351;'159;China;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1841600;2121796;2034071;1926305;1934006;2578252;2451982;3181513;2627940;3385721;3634229;5729375;9568813;12880190;14165045;16786921;16296078;17928695;20215438;13622812;14558596;14179456;15139746;17586965.07;20486690;16350206
-351;'159;China;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79955;84833;78768;77123;76921;126134;143410;237888;205167;272949;353867;429205;804188;1293556;1448862;1674671;1670822;1817201;2021020;1992325;2351818;2482307;2338339;2361821.09;4142595;3036472
-351;'159;China;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2559500;2444273;2831386;2905645;2121353;1576564;1501765;1234642;881521;392893;220880;88956;107490;88160;47268;66912;198203;78714;36511;4355;4108;6515;11697;10501.63;6364;8991
-351;'159;China;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122817;117419;125139;108362;93595;100343;106710;98539;71016;33209;18961;8381;9464;9909;6399;8552;22817;11710;6570;1736;1879;2093;3614;3400.75;4100;3593
-351;'159;China;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4365000;4365000;2985000;3570000;4180000;17748000;24008000;12177000;8408000;9744000;10008000;12858000;18735000;22360000;29070000;39355000;43141000;42858000;45761000;44381000;44381000;44381000;44381000;44381000;44381000;44381000
-351;'159;China;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;80600;192200;192200;192200;200000;200000;228000;239300;356100;336700;400000;687900;593200;839200;600000;1167600;1409000;893581;681035;1444538;2056800;1920600;1783700;1699400;1968600;1954084;1896457;1877618;2526210;2378123;3120786;2582027;3335249;3591161;5686444;9528191;12827422;14132046;16770475;16264841;17893346;20160985;13568160;14527768;14138712;15099884;17572348.72;20478809;16326062
-351;'159;China;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;4104;8472;8472;8472;11000;11000;11195;10436;11473;13341;21580;24000;24770;39274;32330;63157;74099;27954;40494;66794;123146;75753;77869;72704;77639;74065;75259;73677;122415;137692;232531;200657;267808;349153;424025;799685;1288135;1443759;1672727;1665025;1811109;2013687;1987889;2345486;2475876;2333757;2358104.7;4140083;3033602
-351;'159;China;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432900;791600;767317;1200722;1832904;3069600;2800700;2951000;2545200;2389882;2798004;2866964;2086283;1514780;1455112;1171163;793099;285061;97057;11846;9055;10707;757;762;81;140;8862;542;419;80;1009;810;910;725
-351;'159;China;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23576;44968;44470;63368;83341;219488;189404;158094;121981;115067;123317;106535;91204;95750;102972;93750;64569;25331;9078;906;598;980;172;256;56;125;832;952;709;268;1272;773;1287;956
-351;'159;China;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192000;1880000;2520000;9280000;4460000;5290000;5290000;5290000;9000000;10000000;13000000;19000000;23000000;26000000;32000000;38000000;69000000;82000000;90000000;90000000;89000000;94000000;91000000;83000000;92000000;93000000;104000000;104000000;104000000;104000000;104000000;104000000
-351;'159;China;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;100;700;500;400;3400;1300;2100;5300;7300;5100;6200;5900;9600;232680;176237;150042;142200;134900;95099;142200;153196;79987;29848;56388;52042;73859;60727;45913;50472;43068;42931;40622;52768;32999;16446;31237;35349;54453;54652;30828;40744;39862;14616.35;7881;24144
-351;'159;China;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;37;126;102;103;532;235;355;857;1443;811;971;982;1066;11114;6639;4307;4147;4501;5259;7251;7194;4703;1864;3244;3719;5718;5357;4510;5141;4714;5180;4503;5421;5103;1944;5797;6092;7333;4436;6332;6431;4582;3716.39;2512;2870
-351;'159;China;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;2300;1700;2900;2900;7200;3800;4800;2200;2000;2500;23000;29400;28500;96400;40367;50915;39015;26423;29400;28300;14300;54391;33382;38681;35070;61784;46653;63479;88422;107832;123823;77110;98435;77453;46511;66150;198122;78574;27649;3813;3689;6435;10688;9691.63;5454;8266
-351;'159;China;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;116;108;203;203;731;219;302;188;142;347;1493;2242;1861;4134;2017;3206;2006;1951;2286;2140;836;2352;1822;1827;2391;4593;3738;4789;6447;7878;9883;7475;8866;8929;6227;8296;22761;11585;5738;784;1170;1825;2342;2627.75;2813;2637
-351;'159;China;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2001300;2005900;2007100;2404100;2510600;5811800;7011800
-351;'159;China;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;200000;370000;485100;485100;893000;893000;893000;893000;893000;893000;893000
-351;'159;China;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;85;7353;34715;100329;51305;24873;43163;29200;22962.26;11238;11306
-351;'159;China;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;1138;7645;14276;7338;5351;8359;6995;7299.27;5182;5186
-351;'159;China;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2728;3293;165654;54642;26273;23536;23372;24123;17464;18263.45;20199;28746
-351;'159;China;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;817;26311;9985;4747;6702;6414;6190;5878;12016.11;14251;9440
-351;'159;China;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;200000;370000;485100;485100;873000;873000;873000;873000;873000;873000;873000
-351;'159;China;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;85;7353;18331;82394;39082;17472;21316;18657;10109.47;5253;6455
-351;'159;China;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;1138;2307;8199;4299;2853;3286;2901;2064.5;1827;2000
-351;'159;China;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2728;3293;165654;49660;23880;8167;4534;9663;5084;4307.67;10015;13418
-351;'159;China;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;817;26311;8815;4159;1530;869;1559;1415;3285.17;5146;3568
-351;'159;China;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000
-351;'159;China;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16384;17935;12223;7401;21847;10543;12852.78;5985;4851
-351;'159;China;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5338;6077;3039;2498;5073;4094;5234.77;3355;3186
-351;'159;China;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4982;2393;15369;18838;14460;12380;13955.78;10184;15328
-351;'159;China;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;588;5172;5545;4631;4463;8730.94;9105;5872
-351;'159;China;1872;Sawnwood;5516;Production;m3;11067400;10398400;11391200;12043000;12327800;12748200;13265400;13785400;14260200;14780000;15332000;15797000;16234000;16707000;16774000;17651000;18500000;19418000;20333000;21245000;22280000;23383000;24176000;26039000;27482000;26950000;26825000;26770000;25764000;23581000;20942000;19756000;25709000;25603000;25272000;27089000;20638000;18385000;16222000;6675000;7774000;8626000;11382000;15381000;17960000;24907000;28333000;28440000;32337000;37231000;44638000;55740000;63040000;68422700;74356700;77247700;86040700;83658700;67495700;77467700;79557700;57030700;57030700
-351;'159;China;1872;Sawnwood;5616;Import quantity;m3;51300;65900;73500;62000;55500;55400;51800;71500;72300;65800;119900;84600;91000;109300;95400;120700;158200;153700;235500;318100;353200;482700;566600;714100;839900;1030600;1484400;1752200;1467843;1322500;1618700;2550833;2944252;2857028;3372300;3277000;3861540;2755053;3959524;6087640;6452185;7729193;7686606;8140860;7675825;7463973;8028563;8916515;11003946;16241563;23134754;21972939;25505092;25421552;28109409;33447019;38759394;38057940;39418405;35172870;30336190;28189546;28429546
-351;'159;China;1872;Sawnwood;5622;Import value;1000 USD;2520;3473;4647;3463;3301;3506;3055;3928;4753;4495;6288;5704;8024;16435;13662;18445;22699;29635;54359;63406;77101;94064;120915;153222;159711;246872;371714;346710;405123;375751;535839;540383;757980;821829;1164822;1062046;990590;786806;1084518;1755161;1724376;1833087;1792768;1990905;2007002;2160135;2213360;2422203;2605899;4284310;6179973;5905031;7304860;7939057;7944807;8458411;10434997;10544948;8943550;8007460;7962466;7923212;7242830
-351;'159;China;1872;Sawnwood;5916;Export quantity;m3;68700;90500;91800;118700;122400;108600;120900;132700;139800;132500;201800;308500;222100;156200;195800;180000;128200;149800;85500;75100;66800;121000;132300;149300;167600;184200;215400;327200;323000;312000;425900;971173;696455;837411;1029500;1195400;629419;377286;418682;1762997;1539090;1746000;1587655;1306619;1160307;1237612;1129586;969689;834903;833921;790849;617430;591039;623024;419184;438490;336812;327804;214775;210179;308173;259544;171125
-351;'159;China;1872;Sawnwood;5922;Export value;1000 USD;3144;4882;6506;8302;10286;10755;13577;16178;20557;24729;37102;54710;32434;26638;47608;52979;44087;59846;50413;37271;36029;50531;54201;55162;60385;61716;84615;142973;139547;136179;167478;251121;304994;362257;540022;568180;326075;209160;203954;764026;591326;618910;625317;555495;502542;547695;570608;547096;463457.3;462121;484469;422431;449456;408094;269269;253399;250978;208288;188403;167721;207952;170877;127606
-351;'159;China;1632;Sawnwood, coniferous;5516;Production;m3;6833700;6400200;6972100;7370000;7557900;7820100;8142200;8448200;8740600;9020000;9330000;9660000;9910000;10380000;10472000;11004000;11481000;12045000;12624000;13202000;13832000;14488000;15026000;16760000;17697000;17353000;17272000;17237000;16362000;15050000;11798000;11452000;15566000;15501000;15261000;16374000;12104000;10751000;9533000;3876000;4867000;5126000;6800000;6442000;7526000;10441000;11882000;11920000;13552000;14911000;17918000;22321000;26521000;30491000;33135000;34433000;38333000;37272000;30074000;34515000;35446000;25413000;25413000
-351;'159;China;1632;Sawnwood, coniferous;5616;Import quantity;m3;13000;9100;7100;4750;6600;14900;14800;6250;6900;8800;48300;23800;18500;27300;29500;30100;36500;31100;30700;31400;24500;23400;25100;26800;177300;75600;112300;208700;191100;293500;355700;744187;839972;911361;840900;734100;1114399;891746;1626329;1194580;1259923;1888644;2226816;2563586;2612576;2855949;3662066;4666476;7044524;10253788;15897595;15086020;17888594;15584041;18572328;22600695;26128635;26052462;29678947;25930115;20710435;18656292;18526292
-351;'159;China;1632;Sawnwood, coniferous;5622;Import value;1000 USD;333;326;236;176;291;469;434;264;424;393;1061;929;877;1560;1575;1879;2436;2282;3101;4785;7133;4388;4337;6021;30343;12857;17985;34083;39427;64125;80214;91490;126895;134886;227436;191862;193554;182050;153441;201557;200837;281318;340826;434323;467743;536244;685475;879616;1225992;2023144;3331844;3032794;3869349;3443990;3655284;3990786;5117509;5282541;5157560;4629128;4572585;4364649;3843312
-351;'159;China;1632;Sawnwood, coniferous;5916;Export quantity;m3;24600;31200;39900;51350;59000;60850;67600;59400;67550;73100;77250;116350;42050;13250;40750;26450;25150;34050;25000;15900;16100;17700;18700;17400;38400;55000;41400;25100;28600;25700;49700;136043;82680;109087;186100;107900;93700;72000;58570;140359;102346;187260;287967;287198;355618;414864;371719;285204;277813;270906;260012;224440;233433;166799;131263;130188;123516;153837;100904;99099;134310;70990;61201
-351;'159;China;1632;Sawnwood, coniferous;5922;Export value;1000 USD;918;1697;3638;4796;6209;7369;9472;9953;13390;18948;26104;36036;11982;7238;24587;18089;16916;25609;29399;15371;17646;18620;17705;15481;21156;22487;34199;39059;45803;40234;46542;57398;60684;57029;99905;75066;65998;47763;40170;82258;73217;89467;122731;143393;150833;158887;162508;135073;145074.3;143912;149581;136629;138402;125351;84836;85789;79730;69229;68643;61396;72208;48013;36816
-351;'159;China;1633;Sawnwood, non-coniferous;5516;Production;m3;4233700;3998200;4419100;4673000;4769900;4928100;5123200;5337200;5519600;5760000;6002000;6137000;6324000;6327000;6302000;6647000;7019000;7373000;7709000;8043000;8448000;8895000;9150000;9279000;9785000;9597000;9553000;9533000;9402000;8531000;9144000;8304000;10143000;10102000;10011000;10715000;8534000;7634000;6689000;2799000;2907000;3500000;4582000;8939000;10434000;14466000;16451000;16520000;18785000;22320000;26720000;33419000;36519000;37931700;41221700;42814700;47707700;46386700;37421700;42952700;44111700;31617700;31617700
-351;'159;China;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;38300;56800;66400;57250;48900;40500;37000;65250;65400;57000;71600;60800;72500;82000;65900;90600;121700;122600;204800;286700;328700;459300;541500;687300;662600;955000;1372100;1543500;1276743;1029000;1263000;1806646;2104280;1945667;2531400;2542900;2747141;1863307;2333195;4893060;5192262;5840549;5459790;5577274;5063249;4608024;4366497;4250039;3959422;5987775;7237159;6886919;7616498;9837511;9537081;10846324;12630759;12005478;9739458;9242755;9625755;9533254;9903254
-351;'159;China;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2187;3147;4411;3287;3010;3037;2621;3664;4329;4102;5227;4775;7147;14875;12087;16566;20263;27353;51258;58621;69968;89676;116578;147201;129368;234015;353729;312627;365696;311626;455625;448893;631085;686943;937386;870184;797036;604756;931077;1553604;1523539;1551769;1451942;1556582;1539259;1623891;1527885;1542587;1379907;2261166;2848129;2872237;3435511;4495067;4289523;4467625;5317488;5262407;3785990;3378332;3389881;3558563;3399518
-351;'159;China;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;44100;59300;51900;67350;63400;47750;53300;73300;72250;59400;124550;192150;180050;142950;155050;153550;103050;115750;60500;59200;50700;103300;113600;131900;129200;129200;174000;302100;294400;286300;376200;835130;613775;728324;843400;1087500;535719;305286;360112;1622638;1436744;1558740;1299688;1019421;804689;822748;757867;684485;557090;563015;530837;392990;357606;456225;287921;308302;213296;173967;113871;111080;173863;188554;109924
-351;'159;China;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;2226;3185;2868;3506;4077;3386;4105;6225;7167;5781;10998;18674;20452;19400;23021;34890;27171;34237;21014;21900;18383;31911;36496;39681;39229;39229;50416;103914;93744;95945;120936;193723;244310;305228;440117;493114;260077;161397;163784;681768;518109;529443;502586;412102;351709;388808;408100;412023;318383;318209;334888;285802;311054;282743;184433;167610;171248;139059;119760;106325;135744;122864;90790
-351;'159;China;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;2000;6000;1000;1000;2000;2000;4000;4000;7000;7000;7000;7000;7000;7000;7000;7000;7000;17600;15700;29600;48000;51000;81500;86000;86000;86000;179000;179000;373000;602000;763000;3000000;3051000;3071000;3064000;3064000;3064000;3034000;3064000;3034000;3034000;3034000;3034000;3032924;3032924;3032100;3032100;3032100;2732098;2732098;2732098;2732098
-351;'159;China;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;100;1100;100;100;100;100;100;100;500;600;1100;1500;1500;2400;15400;17600;22700;35200;54600;48500;73300;44400;49600;95900;117700;106400;97400;134700;470395;375491;546600;616900;642200;1043812;1092305;642369;861143;595081;612207;411420;380638;314730;306258;294497;245085;197107;286537;379540;524622;800016;1217706;1209717;1069017;945435;1150331;1404020;1743163;3613444;2771218;2610681
-351;'159;China;1634;Veneer sheets;5622;Import value;1000 USD;69;46;33;15;71;16;22;22;21;15;20;232;830;581;1200;1036;2142;14618;15863;14562;19477;22580;20670;31278;22211;23030;44564;43332;54534;44283;50162;137180;108661;206758;216913;222952;366109;290787;222025;282515;199463;208712;196580;238383;237423;232873;241309;191528;128493;185074;223472;236554;255640;298443;280517;255785;259082;312527;320766;334244;464544;491246;430764
-351;'159;China;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;1500;5600;1000;1400;2200;2700;4700;4900;8800;3700;1100;4900;3300;2600;2600;11800;9700;15300;8800;7700;28468;63775;79400;97100;122400;42599;51571;45071;59727;67578;279745;131228;122175;126163;164131;168690;179217;167554;204645;284626;247551;245394;305854;375919;334462;401175;430826;465805;437431;564267;446922;440254
-351;'159;China;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;209;1312;420;763;1155;1471;2321;2706;4867;1342;681;2180;2806;2394;2394;13109;12216;6829;5868;5292;21923;27284;43990;62872;59084;47660;47983;84340;62662;79742;153650;137424;168994;173259;216846;242932;299159;284007;364185;321418;291033;283603;335460;458362;430565;450393;495899;540898;547626;779173;681923;633549
-351;'159;China;1873;Wood-based panels;5516;Production;m3;249600;284700;313700;457500;513100;610892;664932;761414;880130;944007;1142636;1526424;1542530;1264530;1274000;1417000;1492000;1995000;2312000;2301000;2453000;2499000;2659000;2483000;2558000;2840000;3402000;3826000;3470000;2983000;3476000;4803000;6140000;6862000;14366000;10933000;14496000;10293000;14568000;18896000;22490000;31900000;47971000;56201000;64678000;72987000;85328000;90525000;102603000;113893000;128312000;137675000;155568000;152765000;150113000;153825000;149067000;145336000;152690000;154825000;155046000;156082000;165841000
-351;'159;China;1873;Wood-based panels;5616;Import quantity;m3;17100;19400;29100;35000;40800;47949;36070;49665;50228;54923;67564;74514;86180;72817;77806;115948;124300;149400;213900;310500;507100;421600;453000;864200;750300;868700;1761100;1760300;2297360;3082600;3367800;4132178;4133656;5035233;5457670;5031970;4813392;4537023;4967620;5765309;4556903;5331201;5447411;5257506;4503693;4002768;3061263;2501999;2371486;2728639;2584415;2275077;2309394;2360755;2296679;2527202;2940523;2892763;2822562;2943165;2939663.07;2818084;2787345
-351;'159;China;1873;Wood-based panels;5622;Import value;1000 USD;2435;2764;4280;5569;6199;6936;5371;6587;7367;9098;11817;13555;23394;23016;21617;39169;48472;55339;89695;125232;188678;162683;164746;265730;221632;252257;546528;739274;875307;1133689;1144756;1390043;1625870;1938914;1913939;1728894;1507175;1250452;1117870;1325398;1076735;1083666;1201240;1173591;1084845;1003883;997823;920756;723887;924803;936725;845382;852035;955332;989366;999812;1067209;1111202;1016790;999093;1177546.9;1240808;1100193
-351;'159;China;1873;Wood-based panels;5916;Export quantity;m3;61300;95700;116800;239900;249800;284000;309600;417600;525400;589700;811400;951500;954800;686100;768900;870800;947700;1240300;1092300;877600;957200;835200;880700;614100;567600;525500;844000;791600;750534;906200;807400;821318;820914;1172529;1267150;1198350;945228;577650;497477;1140669;1389209;2389639;2572164;4995392;7442876;10853475;11021683;10255349;7974702;9826754;12800193;13760693;13599407;12672016.29;13459098.05;13245722;14035022;12165262;10840898;10525218;15080471.62;14019665;14424303
-351;'159;China;1873;Wood-based panels;5922;Export value;1000 USD;8424;13477;14458;30287;30317;36538;45806;55851;68704;79239;95566;152449;224426;171837;132383;190771;237323;326656;427012;381011;402426;336926;366510;285025;232598;245585;363102;409529;385056;394576;329296;311967;374830;518404;544935;537415;539712;269948;182085;347325;399604;570329;649949;1472130;2310594;3617730;4764688;4629830;3445788;4566502;5835901;6492563;6660084;7532157;7049832.05;6959055;6437106;6731296;5138694;4862057;7031812.6;7195505;6263091
-351;'159;China;1640;Plywood and LVL;5516;Production;m3;164500;169100;189500;313300;351300;425400;457700;560500;662000;824000;994000;1348000;1329000;1051000;1017000;1145000;1167000;1547000;1755000;1642000;1733000;1646000;1717000;1502000;1401000;1523000;1738000;1779000;1495000;1273000;1568000;2079000;2639000;3124000;8104000;5433000;8127000;5315000;8132000;10764000;13240000;20519000;31165000;34070000;38192000;39769000;49619000;49969000;53869000;58669000;65769000;67765000;74065000;68165000;65265000;62065000;59564000;55064000;56764000;59150000;56725000;58358000;57847000
-351;'159;China;1640;Plywood and LVL;5616;Import quantity;m3;9300;11200;18800;27400;33100;39500;28400;41700;44200;48600;62000;70350;80100;66000;74300;107400;113100;136900;177900;251000;458700;383400;408800;793700;668400;773300;1552200;1572400;2133360;2664800;2821300;3590535;3298667;4110945;4202500;3559600;2592155;2159077;2452540;2170411;1546855;1766427;1936657;2132507;1829212;1756673;1469786;1337825;1160201;1325834;1267216;1148585;1133599;1136959;1069368;1117468;1087090;982392;971644;936843;922750;950990;1066239
-351;'159;China;1640;Plywood and LVL;5622;Import value;1000 USD;1416;1803;3080;4515;5126;6411;4866;6044;6909;8636;11422;13172;22804;22143;21128;37892;46919;53639;83081;111866;179287;154397;155500;247700;205410;234165;510496;699118;839161;1021840;997850;1252644;1405918;1694518;1640032;1438298;1118669;881452;738670;769735;524206;533738;645904;650616;628491;602525;603860;577975;427383;555007;560829;512279;512475;582862;601851;560219;542257;562416;502541;477582;500467;536143;553842
-351;'159;China;1640;Plywood and LVL;5916;Export quantity;m3;61300;95700;116800;239900;249800;284000;309600;417600;525400;589700;811400;951500;954800;686100;768500;870600;947500;1240100;1092100;869100;953400;823900;867900;602600;560600;512800;809500;769000;726644;845800;685700;690551;629185;975952;1033700;951900;617167;247138;163899;763865;1037005;1866210;2111176;4372275;5617074;8361169;8778580;7275757;5632718;7329391;9336993;9894231;10132464;9020389;10174715;10185616;10945018;9439590;8281219;8084756;11086344;10712094;10818894
-351;'159;China;1640;Plywood and LVL;5922;Export value;1000 USD;8424;13477;14458;30287;30317;36538;45806;55851;68704;79239;95566;152449;224426;171837;132098;190572;237124;326457;426813;374908;400415;330882;360873;280515;230176;242190;349236;395533;376713;374696;302075;289152;306204;466497;489824;477565;417230;162555;69425;231930;285123;465035;559129;1291119;1871260;2929834;3624302;3469586;2522886;3399347;4336381;4801361;5038976;5776723;5485131;5585047;5162861;5489326;4090575;3860202;5384215;5587458;4792388
-351;'159;China;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;500000
-351;'159;China;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7923;29831
-351;'159;China;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4972;13070
-351;'159;China;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489865;487410
-351;'159;China;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292775;226359
-351;'159;China;1646;Particle board and OSB (1961-1994);5516;Production;m3;8000;17000;17000;17000;25000;26700;41700;41700;42700;45000;49000;62000;72000;70000;70000;70000;72000;87000;96000;121000;120000;146000;170000;208000;225000;253000;421000;526000;495000;501000;697000;1242000;1654000;1763000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1800;1200;1300;1300;1300;300;300;300;300;300;300;100;100;100;200;1200;1400;1700;22100;39900;36800;32400;38700;64200;77900;77200;178600;170000;139100;139000;174800;200103;367991;333006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;418;285;292;292;292;22;22;22;22;22;22;19;19;19;39;257;308;395;4444;10436;7940;7500;8576;17038;15517;15399;31526;35505;28251;28529;33808;35330;68048;68422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;400;200;200;200;200;8500;3800;11300;12800;9900;5400;5400;16200;17300;17390;40300;54000;59077;89036;113134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;285;199;199;199;199;6103;2011;6044;5637;4356;2268;2268;11131;12500;6306;12027;10963;10183;19980;26811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4433000;3463000;3687000;2746000;2493000;2951000;3533000;3776000;5557000;6512000;5844000;8516000;8374000;11505000;14393000;12575000;12631000;12824000;18783000;20963000;20383000;26583000;27863000;29583000;30583000;29515000;32141000;36224000;43991000
-351;'159;China;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294770;449670;571610;568005;583007;814319;848105;909457;892664;933564;851181;756725;698228;524746;628332;763291;724006;643097;652113;602668;621781;745932;1152815;1261608;1165323;1292075;1335210.37;1317355;1284883
-351;'159;China;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70775;100144;118416;104776;103779;143591;156794;144209;146458;165166;152765;140535;139390;120462;125191;165373;166146;144025;140748;136984;172734;200200;256699;282150;260204;279118;370909.38;445858;376176
-351;'159;China;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132600;129900;143609;134600;134574;149600;148900;131877;128552;150304;115934;166166;169313;180052;104654;137952;136179;153783;149297;130651;198290;218167;204590;219404;237406;248688;464594.02;442407;452099
-351;'159;China;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36191;38711;41586;31138;30905;36161;34633;37102;30565;27046;23216;33869;36497;45407;22366;36258;44296;59038;73098;85179;115938;122098;103651;83021;77585;135006;296987.94;353157;225240
-351;'159;China;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;150000;150000;150000;150000;200000;300000;700000;1580000;1860000;3310000;3860000;5540000;6940000;11340000
-351;'159;China;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;67260;75000;57000;51000;97000;74000;70612;89545;136259;102975;115517;167729;200504;243676;302193;225083;297592;352808;321598.63;321515;279637
-351;'159;China;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14246;15337;20000;11944;11164;24600;25460;15085;24461;39621;26475;33102;50546;50748;60696;80322;68717;74213;81424;92816.91;102641;74031
-351;'159;China;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2204;6000;3000;6000;18000;18000;21829;29134;35368;36355;66798;131164;66454;84551;119672;143610;112651;140670;456226.22;135498;164315
-351;'159;China;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;377;919;902;973;3962;4952;5655;6712;7596;8065;15810;32433;15275;16981;23064;35313;23163;32272;134892.24;39058;48146
-351;'159;China;1874;Fibreboard;5516;Production;m3;77100;98600;107200;127200;136800;158792;165532;159214;175430;75007;99636;116424;141530;143530;187000;202000;253000;361000;461000;538000;600000;707000;772000;773000;932000;1064000;1243000;1521000;1480000;1209000;1211000;1482000;1847000;1975000;1829000;2037000;2682000;2232000;3943000;5181000;5717000;7605000;11249000;15619000;20642000;24702000;27335000;29051000;34341000;42499000;49762000;56936000;62570000;63437000;64165000;64477000;60060000;58829000;62033000;62300000;60640000;54560000;52663000
-351;'159;China;1874;Fibreboard;5616;Import quantity;m3;6000;7000;9000;6300;6400;8149;7370;7665;5728;6023;5264;4064;5980;6717;3306;7348;9800;10800;13900;19600;11600;5800;5500;6300;4000;18200;30300;17900;24900;278800;371700;341540;466998;591282;960400;1022700;1649627;1809941;1932073;2780579;2161943;2592317;2550830;2116435;1766300;1438370;796249;565428;512341;549969;456934;380420;408165;453399;405026;420126;398425;423680;388003;361439;360104.06;228224;156586
-351;'159;China;1874;Fibreboard;5622;Import value;1000 USD;601;676;908;762;781;503;483;521;436;440;373;364;571;854;450;1020;1245;1305;2170;2930;1451;786;670;992;705;2693;4506;4651;7895;83320;113098;102069;151904;175974;203132;190452;270090;264224;275421;412072;395735;391473;393541;337809;291645;249659;229973;196859;156228;179962;170129;162603;165710;184940;164033;178697;187931;197919;179832;160969;213353.62;156166;96144
-351;'159;China;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;7300;18300;5300;6500;20100;67700;71690;102693;83443;100850;116550;184452;195912;199004;227204;203304;388552;330232;466813;1706868;2320140;2055790;2781540;2215501;2330277;3291653;3676324;3250848;3389812.29;3019639.05;2757388;2765742;2362658;2209622;2051104;3073307.38;2729666;2988995
-351;'159;China;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;154;154;1127;2735;1496;2037;7853;16258;12632;48646;25096;18920;21139;80896;76255;81755;79234;79848;67644;59878;153046;415216;653054;1099927;1109885;894881;1124185;1447628;1624099;1532200;1637822;1433488.05;1234929;1147530;1123636;947371;834577;1215717.41;1215832;1197317
-351;'159;China;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169000;1257000;1601000;1335000;2347000;3079000;492000;654000;684000;598000;1158000;1699000;1891000;1436000;2922000;3380000;5086000;6578000;8104000;6150000;6004000;5213000;3530000;3458000;3737000;3737000;3887000;3887000;3887000
-351;'159;China;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108400;74500;115563;117320;122000;268201;253401;209125;202009;122502;110681;103524;46042;36527;16634;26153;30758;28677;26376;32229;32412;39971;47122;44266;37841;36956;54567.8;46770;29932
-351;'159;China;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45782;26508;49239;49240;48486;131670;117796;86627;73367;51207;48798;47721;22935;21651;11699;18592;24004;24269;24508;29926;29173;36462;44430;46433;38079;36663;54912.35;49617;32286
-351;'159;China;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32800;41700;26600;20700;20000;23500;18300;25230;24604;107133;461279;838833;386250;365364;268285;302815;323898;273720;247768;261764;219798;225089;221023;195466;166236;140417;162412.09;141077;133277
-351;'159;China;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7016;12510;10444;6660;10602;7962;6480;9185;11756;59737;240727;434109;221543;255755;181711;193693;211247;181546;158003;166350;133405;127702;116397;114133;91691;80454;102234.09;98764;87232
-351;'159;China;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540000;700000;1059000;879000;1564000;2060000;5224000;6950000;10488000;14665000;18541000;22220000;24986000;27405000;31316000;38942000;44596000;50225000;53945000;56826000;57688000;59044000;56306000;55152000;58048000;58314000;56432000;50352000;48455000
-351;'159;China;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438500;458900;589380;568002;674820;1482406;1119440;1606341;1876773;1668685;1416637;1170974;487685;408272;458113;477947;392528;317117;330186;345804;295071;313908;284079;292454;299475;271393;276745.1;165216;117221
-351;'159;China;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121951;115315;144680;125897;138083;206298;215663;242086;279761;258582;220280;185122;161553;152234;136861;150570;137485;128838;128734;136993;119681;129794;131071;135452;129674;112219;149376.39;102717;61173
-351;'159;China;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;15200;126202;156704;160100;184700;168400;313789;228573;248641;1018362;1286316;1501730;2369265;1927851;2009947;2954769;3396911;2992134;3111269;2792757;2504851;2525487;2138918;2012194;1893944;2898598.26;2577685;2845326
-351;'159;China;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5954;3399;66028;66920;68400;68474;70529;52499;40131;78045;137732;198907;842760;837598;702856;920159;1227518;1437119;1364746;1460235;1296732;1085496;1017581;993267;842821;746245;1105614.98;1108214;1101961
-351;'159;China;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;120000;80000;22000;18000;32000;42000;1000;1000;77000;356000;943000;783000;458000;210000;103000;177000;80000;133000;521000;461000;473000;220000;224000;219000;248000;249000;321000;321000;321000
-351;'159;China;1650;Other fibreboard;5616;Import quantity;m3;600;400;600;1000;2000;3200;2000;2400;1200;1600;2000;800;2400;2400;1200;4400;8200;8500;10900;16200;9800;4600;3900;3600;2400;16100;25800;13800;21800;96000;125000;100968;163935;205759;413500;489300;944684;1124619;1135253;1029972;789102;776851;472048;325248;238982;163872;262522;120629;37594;45869;33648;34626;51603;75366;77543;66247;67224;86960;50687;53090;28791.15;16238;9433
-351;'159;China;1650;Other fibreboard;5622;Import value;1000 USD;160;128;219;208;307;138;74;150;76;75;105;39;154;194;101;570;745;994;1687;2146;1096;527;414;416;355;2231;3745;3561;6889;23074;30034;28583;41653;49511;35399;48629;76171;89087;88852;74104;62276;62760;40413;28020;22567;16816;45485;22974;7668;10800;8640;9496;12468;18021;15179;12441;12430;16034;12079;12087;9064.87;3832;2685
-351;'159;China;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;7300;15900;4500;4800;17700;62800;25950;41490;44717;56450;59650;31650;18508;18904;19004;16604;49533;77055;111039;227227;194991;167810;46911;19365;17515;12986;5693;10946;16779.29;7084.05;27448;19232;28274;31192;16743;12297.03;10904;10392
-351;'159;China;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;154;154;1127;2378;1138;1315;6843;14667;4762;9149;11626;5950;5230;4424;2675;2753;2798;2839;5960;7991;15264;36757;20038;35624;16532;10314;10333;8863;5434;9451;11237;3351.05;21731;13552;16236;12859;7878;7868.34;8854;8124
-351;'159;China;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;77100;98600;107200;127200;136800;158792;165532;159214;175430;75007;99636;116424;141530;143530;187000;202000;253000;361000;461000;538000;600000;707000;772000;773000;932000;1064000;1243000;1521000;1480000;1209000;1211000;1482000;1847000;1967000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5400;6600;8400;5300;4400;4949;5370;5265;4528;4423;3264;3264;3580;4317;2106;2948;1600;2300;3000;3400;1800;1200;1600;2700;1600;2100;4500;4100;3100;182800;246700;240572;303063;385523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;441;548;689;554;474;365;409;371;360;365;268;325;417;660;349;450;500;311;483;784;355;259;256;576;350;462;761;1090;1006;60246;83064;73486;110251;126463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;800;1700;2400;4900;45740;61203;38726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;357;358;722;1010;1591;7870;39497;13470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1879;Total fibre furnish;5510;Production;t;2354500;2470500;2580200;2643300;2754000;2858000;2977900;3100300;3262200;4241000;4103000;3863000;3982000;3799000;4093000;4244000;4717000;5532000;6367000;6771000;7144000;7114000;7907000;9201000;11824000;13594000;16610000;19270000;19158000;20155000;21116345;23169876;25175353;30063856;35704617;25446135;29820457;29937017;32191393;29198459;27433201;32064201;33725201;35744201;38651201;45643201;51541201;55811701;58448201;64956201;68774601;68008501;64787801;69813101;68953501;69683901;73394701;71185801;74802701;78837301;92411201;97009701;100134766
-351;'159;China;1879;Total fibre furnish;5610;Import quantity;t;;;;;;46300;50200;173840;97040;227400;329700;389900;420800;441556;415828;420627;417048;566073;662922;989828;1070243;1235300;1612000;1756400;1733700;2390100;2628400;2969500;3177145;2555445;3807345;3243376;2951519;3719326;3987530;5340500;5360356;6005330;7389274;8629473;12949256;13756222;17105021;20341482;22558311;28910678;32348742;34839180;41739367;36214001;42136661;46611473;45749025;44831161;48084689;48705570;48823275;40941354;35679467;34602055;26531579.28;25426539;30811005
-351;'159;China;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;6326;6750;20382;14256;23645;36241;40696;47919;64060;52237;76813;73668;93610;125407;219516;238097;223908;324953;383890;351073;434679;628700;790624;792639;700199;966602;731716;589736;1114154;1576945;1485704;1423183;1549050;1998314;3057804;3059342;3193475;4222042;5497215;5995585;7470989;9758105;10467918;10352650;13504126;17590888;16054853;16078113;16025184;16496925;15605997;19397773;21898344;16710780;14687590;16669124.78;18422400;19447105
-351;'159;China;1879;Total fibre furnish;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;28200;156500;176500;237300;244100;212700;184200;259200;295600;338500;422415;448560;434774;447350;518215;496915;465490;614500;604100;753250;745800;688900;654500;580021;440391;499070;566100;461500;494188;231871;601271;925012;902017;655839;717563;826938;927214;1122697;1336530;1233277;1194252;1409504;1489645;1387532;1257763;1208002.45;1204886;1198350;1255818;1157178;894133;786617;1109184.41;1111021.54;1124499.54
-351;'159;China;1879;Total fibre furnish;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3603;10154;12068;14578;14312;24832;14101;22494;25616;30573;44300;56316;40920;52500;52062;48016;45386;62011;78011;140008;140343;112874;78881;82579;44436;57196;113670;65459;60219;46381;63602;108722;84306;81794;105699;125723;158831;206547;290708;317915;234968;419257;547438;416041;359678;334654;333652;359015;461882;442505;303016;267510;468440.59;679796.77;526374.77
-351;'159;China;1878;Pulp for paper;5510;Production;t;2354500;2470500;2580200;2643300;2754000;2858000;2977900;3100300;3262200;3430000;3247000;2910000;2925000;2921000;3213000;3239000;3586000;4181000;4581000;4809000;4846000;4796000;5263000;5821000;8796000;9694000;12522000;13727000;13252000;13325000;13694345;14884876;16947353;19466856;24124617;13816135;17716457;17739017;16778393;14855459;13865201;15165201;15765201;15865201;16678201;18529201;19442201;20058201;17628201;20420201;21102201;19212201;17470201;17543201;16833201;16334201;16844201;17946201;18927201;20557201;23995201;27100201;29235201
-351;'159;China;1878;Pulp for paper;5610;Import quantity;t;;;;;;46300;50200;173840;97040;122400;223700;242900;244200;253300;219100;234700;175900;208900;210900;427600;525300;440200;683600;802600;805200;898200;1066700;1253900;927600;755200;1221200;1134387;1168100;1525820;1587900;2197700;2326423;2948300;3737736;3813861;5445593;5780675;6521416;7754525;8119681;8440233;8745588;9745985;13552058;11106137;14045175;15575153;15703366;16506950;18204378;19491614;21974072;22464487;23912498;26314336;24440521.71;23606027;28871041
-351;'159;China;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;6326;6750;20382;14256;19240;31791;34153;37336;51233;38538;63410;56134;68105;76327;152831;179371;150968;230206;282753;269358;300437;449437;575003;512436;480513;644436;528145;439592;885553;1143632;1067839;1095894;1265145;1694932;2349062;2297411;2350809;2836099;3732337;3918787;4606643;5535723;6641747;6463094;8000891;10433391;9584843;9983302;10519046;11104568;10489805;13268801;17373275;14587346;13290558;16144462.35;17992545;19112391
-351;'159;China;1878;Pulp for paper;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;28200;42500;62500;66300;26100;24600;16500;27500;28600;42000;45500;45900;47600;81100;63700;30900;71100;94800;86700;126700;98000;101400;29900;62429;24346;24313;56900;26500;36108;22300;42699;54720;38487;41299;48275;46253;66687;113799;155820;92918;94804;123091;111852;108906;122642;140319.45;167441;232702;295241;241765;209255;218337;307506.59;404062.54;375259.54
-351;'159;China;1878;Pulp for paper;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3603;6804;8891;8804;4469;8757;6372;9770;8871;12145;17952;24496;19021;30924;22974;13304;21872;28466;44467;75980;69947;56951;16463;31819;10535;12125;42032;19804;19144;11129;18840;30379;19512;24390;31407;32064;45775;79617;117437;111586;89495;169277;227869;145610;139873;141766;150720;186467;258043;231846;190779;167600;280394.38;501336.77;371009.77
-351;'159;China;1875;Wood pulp;5510;Production;t;714500;765500;820200;823300;874000;928000;977900;1050300;1122200;1220000;977000;800000;805000;801000;873000;899000;1003000;1173000;1281000;1343000;1380000;1330000;1345000;1435000;1773000;1924000;1956000;2037000;2077000;2057000;2101633;2180414;2315375;2601568;2629617;1738135;2191457;2214017;3593393;3720459;4080201;4080201;4080201;4080201;4093201;5644201;6437201;7103201;5895201;7965201;9347201;9109201;10000201;10609201;10599201;11419201;11934201;12927201;14135201;16389201;19547201;22605201;24571201
-351;'159;China;1875;Wood pulp;5610;Import quantity;t;;;;1900;300;46600;50300;174940;98140;125800;244000;263300;258200;266200;236300;245700;182100;232500;241800;459000;559600;484400;743900;883400;882700;974600;1126900;1349600;1061300;875500;1361500;1248037;1234171;1675509;1887600;2446800;2567423;3149700;3985218;4019398;5801914;6116825;6901615;8180629;8506090;8908681;9353728;10325962;14421827;12137322;15208145;17217742;17607856;18672590;20562264;21868617;24592092;25327008;27032057;29572815;27920980.5;26986530;32844823
-351;'159;China;1875;Wood pulp;5622;Import value;1000 USD;;;;240;41;6367;6950;20746;14620;20067;35593;37953;39599;53352;42329;67457;59278;79385;90879;170477;199136;174855;258708;322550;304784;334941;489229;634544;628131;568633;736062;592557;476493;1016897;1450922;1273072;1258792;1411502;1851196;2517381;2567434;2546404;3075371;4049199;4231180;4964658;6187927;7366021;7267529;9485023;12589513;11496910;11907031;12553096;13226289;12706894;15817629;20168195;17289381;15504811;19408001.49;21568548;22878446
-351;'159;China;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;3000;15700;38800;53600;18300;23200;14000;16900;18000;31400;35200;30000;36400;67900;57900;28900;58800;81800;70800;110900;83000;85100;20200;154167;108643;43452;69000;20800;29808;19100;42709;57642;32496;26496;27310;31160;39917;69057;81084;28291;51011;49743;45602;38682;44819;47675.45;85567;164191;221197;168617;133456;150349;232554.29;310795.54;274911.54
-351;'159;China;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;474;2464;5417;6889;3071;8066;5488;6625;5726;9000;13766;16728;14268;26616;21056;12419;17725;24319;36253;66888;59940;46090;11445;92402;57340;24673;43749;14702;15593;10443;18518;34119;14052;10691;12189;18325;20074;35952;44952;18557;31075;35931;44084;25107;37157;28909;51200;93780;139598;122693;86476;78955;158888.56;303006.77;207576.77
-351;'159;China;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575000;2575000;2575000;2575000;2575000;2575000;2575000
-351;'159;China;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1823976;1567396;1634095;1869531;1654630.12;1383630;1402154
-351;'159;China;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;957926;989470;833398;863876;831796.13;821258;785773
-351;'159;China;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;1030;1277;1835;13036.42;18643.54;16211.54
-351;'159;China;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;681;2236;2050;11291.59;12215.77;8550.77
-351;'159;China;1654;Mechanical wood pulp (1961-2016);5510;Production;t;257700;283200;311700;311800;339000;365200;392500;418000;464400;489000;217000;210000;213000;210000;232000;238000;253000;295000;328000;345000;345000;345000;354000;378000;401000;402000;384000;402000;406000;417000;410000;435000;500000;575000;640000;540000;440000;450000;455000;480000;565000;565000;565000;565000;565000;565000;565000;865000;865000;865000;865000;865000;865000;865000;865000;865000;;;;;;;
-351;'159;China;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;1300;1000;500;2200;5600;2200;4400;3100;4200;3600;3600;1800;2900;2800;8500;5900;143900;95700;124000;67600;111500;64900;53900;93000;76685;75608;93196;83900;179800;187700;304100;289289;289119;247393;158553;92001;84250;62854;72389;63914;72507;52169;62271;59433;11883;3135;5082;5249;2929;;;;;;;
-351;'159;China;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;88;66;38;187;274;165;1126;432;1216;1139;1136;420;1141;905;2601;2281;45934;31054;40000;26101;44452;42455;22590;40289;29426;25724;36835;54049;84104;75620;113924;106587;108684;98170;55678;32689;35440;26388;36860;34535;44990;23592;36489;33270;6423;1772;2919;2527;2112;;;;;;;
-351;'159;China;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;868;66;0;0;0;0;9;0;100;80;108;120;121;186;156;231;230;155;592;355;915;84.45;68;33;;;;;;;
-351;'159;China;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;251;63;0;0;0;0;16;0;84;65;66;95;70;95;100;135;113;96;331;235;494;47;106;42;;;;;;;
-351;'159;China;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;50000;56000;54000;62000;54000;0;0;0;0;0;0;1425000;1460000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;;;;;;;
-351;'159;China;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;600;200;500;200;700;1300;1100;1100;1200;13000;16000;31700;36600;65524;84582;127166;92500;100400;89100;71100;78096;71100;271400;437080;734893;859096;979523;1106359;1093937;1134704;1386036;1454130;1440079;1472483;1443042;1545960;1763878;1759557;;;;;;;
-351;'159;China;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;250;194;399;136;469;893;739;739;877;6925;9322;16524;16615;23231;24821;50053;52543;40863;35727;29428;31441;29428;118874;167800;309154;381547;411735;538959;589493;724280;612127;873594;790982;797543;771664;842286;792660;712649;;;;;;;
-351;'159;China;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;489;350;998;0;0;0;0;17;0;0;30;45;1457;33;64;340;122;4;313;3;64;201;1049;62;4;;;;;;;
-351;'159;China;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;181;135;408;0;0;0;0;13;0;0;19;33;683;32;43;183;93;4;182;4;32;57;674;48;7;;;;;;;
-351;'159;China;1656;Chemical wood pulp;5510;Production;t;456800;482300;508500;511500;535000;562800;585400;632300;657800;731000;760000;590000;592000;591000;641000;661000;750000;878000;953000;998000;1035000;985000;991000;1057000;1200000;1334000;1329000;1394000;1417000;1365000;1388633;1421414;1555375;1766568;1724617;1156135;1736457;1749017;1698393;1765459;1790201;1790201;1790201;1790201;1803201;3354201;4147201;4513201;3305201;4875201;6127201;5899201;6610201;7419201;7459201;7849201;8294201;9267201;10475201;12729201;15887201;18945201;20911201
-351;'159;China;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;172540;96040;121700;220900;236800;240300;243500;213900;223800;165600;198600;206900;415800;518200;428500;672900;654300;707800;772500;983200;1126300;841100;666700;1085800;959993;955997;1277994;1384500;1905500;2035623;2553100;3349105;3386779;4904321;5171704;5678156;6785151;7034690;7192277;7507670;8482790;12034512;9534201;12460164;14022757;14193930;14891863;16393783;17697878;20087401;20816527;22228498;24401605;22747104.23;22193172;27440650
-351;'159;China;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;20294;14190;19125;31347;33675;36319;47628;36908;59144;51945;63919;74516;146142;175827;146195;224667;233993;237069;259202;421147;522169;458148;439684;582514;456113;364940;784960;1018741;934783;976680;1111383;1545787;2176411;2067481;2119069;2484632;3299598;3459283;3993818;4862766;5826824;5785726;7042215;9514179;8719757;9154090;9615229;10257817;9736621;12241541;16299480;13696866;12367936;15250416.34;17115620;18273604
-351;'159;China;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;3000;15700;38800;53600;18300;23200;14000;16900;18000;31400;35200;30000;36400;67900;57900;28900;58800;81800;70800;110900;83000;85100;20200;55613;19139;18687;43400;20600;29708;15600;35261;44642;32068;26113;26038;27493;39251;68468;80215;27182;38246;48980;30375;37505;43553;46533;85420;164135;221122;165475;131186;147149;213050.5;292050;257829
-351;'159;China;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;474;2464;5417;6889;3071;8066;5488;6625;5726;9000;13766;16728;14268;26616;21056;12419;17725;24319;36253;66888;59940;46090;11445;27690;7748;8637;30500;14590;15505;8408;16275;24932;13734;10413;11443;14528;19612;35543;44374;17582;18368;35361;22102;24077;36456;28177;51026;93714;139498;120405;83692;75963;141817.11;290633;197438
-351;'159;China;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;730000;782000;786000;821000;818000;829000;809000;872000;1003000;1153000;1360000;830000;1390000;1410000;1057000;1097000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1084000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000
-351;'159;China;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;50400;13400;7000;80200;80200;80200;80200;90400;96900;71400;74300;77200;167800;211900;165800;262700;253400;244700;276000;373100;414600;288300;92800;127200;125003;131654;195275;156200;152500;211000;248100;341345;357800;671939;787636;786309;727965;909511;874348;875168;648907;738600;556981;712453;753735;604542;589616;643165;729390;731375;893211;918417;1125357;1167047.23;1632912;1291177
-351;'159;China;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;4805;1394;997;10592;10592;10592;10592;14283;24171;21071;21850;25111;54110;66924;52056;89573;91036;81989;92000;153655;186277;127789;45365;60482;50309;43491;79085;113669;66404;88092;94152;127612;186165;265120;291260;292534;303110;397702;430140;506995;335108;332163;351109;481758;419611;344892;374127;362231;392587;434621;739395;564541;585819;802055.81;1269737;797617
-351;'159;China;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;2316;9091;17900;3300;4400;1100;1149;400;372;582;438;1491;2354;3987;488;2386;2730;1805;852;297;5526;2758;1750;1261;717;4601;2156;476;11236.27;4846;14324
-351;'159;China;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;884;4242;9967;2265;2079;974;1009;174;194;364;229;978;1435;2049;336;1295;1265;1246;796;336;2419;1636;830;703;562;4144;1730;838;9127.06;5797;8927
-351;'159;China;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;102000;128000;132000;148000;143000;461000;507633;473414;465375;513568;364617;326135;346457;339017;641393;668459;661201;661201;661201;661201;674201;2225201;3018201;3384201;2176201;3746201;4998201;4815201;5388201;6197201;6237201;6627201;7072201;8045201;9253201;11507201;14665201;17723201;19689201
-351;'159;China;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;66200;60800;69600;55500;71400;74900;78100;35000;38100;32300;55400;65000;67200;86200;105400;160100;151500;222000;251200;294800;317900;264400;492400;798400;740160;755801;949212;1070800;1584000;1604207;2005900;2711050;2878940;4125846;4290688;4798871;5939197;6045383;6223921;6545474;7752058;11204883;8892485;11593271;13186736;13530611;14237416;15683262;16899607;19299707;19867976;21254256;23224514;21524372.31;20518631;26103531
-351;'159;China;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;6600;7821;11098;8966;11294;13938;25247;9349;11926;11327;19469;27696;30492;37567;41944;51548;58688;73868;84194;145984;174798;187785;341033;431353;353632;285313;631508;832738;776675;772291;876300;1274698;1888341;1745037;1782246;2143180;2928953;3015822;3509631;4297824;5430122;5405192;6621770;8887737;8241507;8767264;9195732;9852537;9305643;11770243;15515121;13094874;11752664;14406912.43;15810826;17441369
-351;'159;China;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;14000;16900;18000;31400;35200;30000;36400;67900;57900;28600;58600;81000;68800;107500;81300;84300;20200;53970;16016;7845;20600;16900;20000;10100;30030;39381;29649;24767;23809;22408;36409;63305;76799;24388;34880;44163;28868;36593;37795;43582;83449;162624;220272;160826;128885;146291;201272.23;286952;243108
-351;'159;China;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;5488;6625;5726;9000;13766;16728;14268;26616;21056;12219;17574;23862;34849;64119;58494;45386;11445;26877;6447;3523;15893;12056;10336;5370;13066;21759;12149;9610;10082;11092;17884;32815;43412;15995;16628;31840;20700;23187;33816;26341;50010;92783;138811;116222;81818;74766;132131.04;284665;188119
-351;'159;China;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-351;'159;China;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56319;55340;55825;51734;55684.69;41629;45942
-351;'159;China;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36677;44964;37451;29453;41448.1;35057;34618
-351;'159;China;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;48;145;382;542;252;397
-351;'159;China;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;39;144;359;559;171;392
-351;'159;China;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;13000;20000;21000;14000;11000;6000;10000;10000;11000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-351;'159;China;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;2440;2440;25700;63600;63600;63600;63600;64000;63700;43700;52000;48500;136200;163300;107400;177800;177700;172900;175000;235300;290900;222300;36100;28400;25294;11978;16523;23700;32300;19300;11100;17175;9400;12100;10578;4801;6710;8457;25326;24264;12497;9922;9622;12422;13382;11904;13318;15780;13769;;;;;;;
-351;'159;China;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2475;2475;4530;9893;9893;9893;9893;10061;18112;15212;18700;17580;50983;58227;38395;68323;68383;66146;67800;97221;119760;113993;24732;16025;12117;5240;6693;14199;19085;12009;4437;6819;5539;7152;4025;2552;4397;4219;12149;14482;7898;4963;6793;8535;7392;6404;7919;8592;6686;;;;;;;
-351;'159;China;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;307;1073;700;100;1100;0;2;1700;500;0;372;150;65;411;120;193;175;1863;27;314;57;59;150;57;;;;;;;
-351;'159;China;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;152;538;489;83;398;0;1;762;237;0;301;120;40;248;88;143;134;1281;31;272;52;45;120;43;;;;;;;
-351;'159;China;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;94000;90000;59000;69000;68000;69000;62000;66000;76000;87000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-351;'159;China;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;53500;19400;19400;21600;21600;21600;21600;24500;25100;18200;16900;16200;44600;56800;49900;72300;71700;68200;70300;80000;102900;66100;45400;131800;69536;56564;116984;133800;136700;201116;288000;279535;140639;94436;82802;88175;111279;71339;68682;62764;69328;81107;75113;142018;68904;46873;51513;51576;55112;;;;;;;
-351;'159;China;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;6414;2500;2500;1896;1896;1896;1896;3215;4935;4335;3900;4129;10557;13109;13800;15223;15886;15066;15208;24287;41334;28581;28554;74654;40055;30896;67674;58135;72619;104288;136494;136658;96366;50172;41538;46366;63138;41540;41898;43465;53696;43408;62543;136149;51247;35530;37451;34457;31705;;;;;;;
-351;'159;China;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;300;200;800;2000;3400;1700;800;0;1349;500;678;4200;300;4208;4400;4080;3161;1547;764;1419;3444;423;765;2808;215;461;1149;628;301;175;134;71;193;;;;;;;
-351;'159;China;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;200;151;457;1404;2769;1446;704;0;692;265;334;4151;186;2692;2064;2199;2237;1154;439;831;2338;253;431;538;149;341;994;575;282;169;155;66;185;;;;;;;
-351;'159;China;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;172000;188000;187000;191000;198000;221000;241000;270000;260000;260000;265000;42000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;515000;645000;635000;815000;615000;565000;995000;1065000;1085000;1085000;1085000;1085000;1085000;1085000
-351;'159;China;1667;Dissolving wood pulp;5610;Import quantity;t;;;;1900;300;300;100;1100;1100;3600;20900;20900;15700;18300;19300;17700;12900;30300;32500;40100;38100;47200;64400;83900;78100;77000;74900;98800;139300;123200;146100;145835;117984;177153;326700;261100;255000;221400;268728;272400;378800;349488;396565;452132;429023;537656;688207;635961;949110;1086720;1248469;1710619;1967749;2229685;2399354;2408253;2680715;2943085;3169464;3301679;3519246.15;3409728;4002019
-351;'159;China;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;240;41;41;200;364;364;904;4059;4004;3115;4598;4989;7097;6194;14330;15693;23000;22005;25923;31291;41730;35922;35000;41104;60998;118206;89835;96644;83787;61008;145049;325589;213322;170765;156767;167381;202858;282909;203857;248896;332614;333774;395021;701133;769927;846084;1532725;2251082;1973187;1979505;2092662;2173285;2255512;2618162;2879245;2759117;2272999;3325789.01;3631670;3819069
-351;'159;China;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98025;88286;23701;25600;200;100;3500;7422;13000;328;273;1119;2090;512;339;373;756;12531;295;14632;758;150;9;17;19;40;2112;993;1365;6467.36;102;871
-351;'159;China;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64485;49206;15565;13249;112;88;2035;2214;9187;234;194;647;3019;360;271;295;747;12590;292;21647;763;150;11;20;17;38;1607;548;942;5779.87;158;1588
-351;'159;China;1668;Pulp from fibres other than wood;5510;Production;t;1640000;1705000;1760000;1820000;1880000;1930000;2000000;2050000;2140000;2210000;2270000;2110000;2120000;2120000;2340000;2340000;2583000;3008000;3300000;3466000;3466000;3466000;3918000;4386000;7195000;7958000;10753000;11881000;11373000;11489000;11833712;12974462;14891978;17125288;21760000;12120000;15540000;15540000;13200000;11150000;9800000;11100000;11700000;11800000;12600000;12900000;13020000;12970000;11748000;12970000;12400000;10738000;8285000;7549000;6799000;5910000;5975000;6104000;5877000;5253000;5533000;5580000;5749000
-351;'159;China;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;200;600;500;1700;5400;2100;6700;6700;6700;1600;8700;3800;3000;4100;3100;600;600;14700;3100;5600;2900;5800;32185;51913;27464;27000;12000;14000;20000;21246;66863;22479;13338;16366;26028;42614;69208;80067;55984;79341;55535;85499;68030;63259;64045;41468;31250;62695;80564;49905;43200;38787.35;29225;28237
-351;'159;China;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;77;257;204;852;2479;1198;3050;3050;3050;1141;5354;2240;2036;2789;1933;496;496;1312;1457;2511;1715;5018;19375;24107;13705;18299;8089;7867;10410;11117;34539;12886;8262;9624;15752;21381;37006;48929;45653;41649;48593;94960;61120;55776;58612;51564;38423;69334;84325;57082;58746;62249.88;55667;53014
-351;'159;China;1668;Pulp from fibres other than wood;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;25200;26800;23700;12700;7800;1400;2500;10600;10600;10600;10300;15900;11200;13200;5800;2000;12300;13000;15900;15800;15000;16300;9700;6287;3989;4562;13500;5900;6400;6700;7412;10078;6319;15076;22084;17183;27282;45081;75109;65383;56324;73643;80882;70982;77973;92653;81891;68530;74084;75260;76792;69353;81419.66;93369;101219
-351;'159;China;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3129;4340;3474;1915;1398;691;884;3145;3145;3145;4186;7768;4753;4308;1918;885;4147;4147;8214;9092;10007;10861;5018;3902;2401;3017;11532;5214;3639;2721;2536;5447;5694;13893;19865;16758;26061;43936;72780;93776;71010;133638;205432;121266;102866;112868;99540;92704;118483;110760;104851;89587;127285.69;198488;165021
-351;'159;China;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21000;32000;78812;32000;14000;18000;11000;21182;20840;14776;20871;10022;8763;9006;13291;12973;295407;916046;1686182;2460358.31;2885155;4476504
-351;'159;China;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6863;9927;27249;11503;5574;7472;4793;9761;11874;8868;12078;6251;5059;4438;6454;6803;122456;297778;508010;1037059.68;1229019;1240799
-351;'159;China;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;3;395;70;418;292;316;475;452.31;484;571;579;775;122093;315248;442768;459731.42;484433;390989
-351;'159;China;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;19;134;100;253;129;125;229;203;217;292;234;302;34975;71834;99770;147335.26;159899;92074
-351;'159;China;1669;Recovered paper;5510;Production;t;;;;;;;;;;811000;856000;953000;1057000;878000;880000;1005000;1131000;1351000;1786000;1962000;2298000;2318000;2644000;3380000;3028000;3900000;4088000;5543000;5906000;6830000;7422000;8285000;8228000;10597000;11580000;11630000;12104000;12198000;15413000;14343000;13568000;16899000;17960000;19879000;21973000;27114000;32099000;35753500;40820000;44536000;47672400;48796300;47317600;52269900;52120300;53349700;56550500;53239600;55875500;58280100;68416000;69909500;70899565
-351;'159;China;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;105000;106000;147000;176600;188256;196728;185927;241148;357173;452022;562228;544943;795100;928400;953800;928500;1491900;1561700;1715600;2249545;1800245;2586145;2108989;1783419;2193506;2399630;3142800;3033933;3057030;3651538;4815612;7503663;7975547;10583605;12586957;14438630;20470445;23603154;25093195;28187309;25107864;28091486;31036320;30045659;28324211;29880311;29213956;26849203;18476867;11766969;8287719;2091057.58;1820512;1939964
-351;'159;China;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;4405;4450;6543;10583;12827;13699;13403;17534;25505;49080;66685;58726;72940;94747;101137;81715;134242;179263;215621;280203;219686;322166;203571;150144;228601;433313;417865;327289;283905;303382;708742;761931;842666;1385943;1764878;2076798;2864346;4222382;3826171;3889556;5503235;7157497;6470010;6094811;5506138;5392357;5116192;6128972;4525069;2123434;1397032;524662.42;429855;334714
-351;'159;China;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;114000;114000;171000;218000;188100;167700;231700;267000;296500;376915;402660;387174;366250;454515;466015;394390;519700;517400;626550;647800;587500;624600;517592;416045;474757;509200;435000;458080;209571;558572;870292;863530;614540;669288;780685;860527;1008898;1180710;1140359;1099448;1286413;1377793;1278626;1135121;1067683;1037445;965648;960577;915413;684878;568280;801677.82;706959;749240
-351;'159;China;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;3350;3177;5774;9843;16075;7729;12724;16745;18428;26348;31820;21899;21576;29088;34712;23514;33545;33544;64028;70396;55923;62418;50760;33901;45071;71638;45655;41075;35252;44762;78343;64794;57404;74292;93659;113056;126930;173271;206329;145473;249980;319569;270431;219805;192888;182932;172548;203839;210659;112237;99910;188046.21;178460;155365
-351;'159;China;1876;Paper and paperboard;5510;Production;t;2531100;2742900;3000000;3087000;3189800;3338600;2478400;2634600;2788000;2908227;3059602;3371000;4116000;3926000;4128000;4213000;4661000;5370000;6321000;6842296;6948000;7463000;8446000;9550000;11237000;12641000;14271000;15740000;16527000;17407814;18287163;20294809;21971352;25738939;28517267;30997429;31916972;32203111;33627217;35184156;36530647;42061000;47419000;54072000;60405000;69394000;77965000;83685000;90192000;96545000;103226000;106569000;105150000;108750000;111150000;112600000;115350000;108400000;111700000;117150000;125150000;128370000;133700000
-351;'159;China;1876;Paper and paperboard;5610;Import quantity;t;112300;135100;146600;221800;219900;259700;264900;336500;353400;426900;505900;525100;549600;476400;462900;645100;704700;943900;971500;1221900;1226800;1079900;1268800;1350100;1685500;2188900;2738500;2410900;2678099;3127900;3842800;5146224;5817572;5916853;5485200;8670300;10644215;10890007;10949769;9816806;8554690;9157887;9351309;9015762;7894309;6634759;6046523;5528219;5010435;5237136;5188609;5016707;4640950;4583082;4496519;4545124;6301131;7807798;7765653;13908758;13245166.45;10202143;12941672
-351;'159;China;1876;Paper and paperboard;5622;Import value;1000 USD;21888;25278;25596;39075;37831;43589;45833;56594;60962;84679;98575;106005;140379;186250;157772;222525;290050;406357;461980;841341;829870;681784;790642;826532;1023444;1621087;1467796;1494054;1914309;2265486;2632693;3137223;3106933;3629514;4443331;5444329;6182378;6064920;6101227;6193620;5259898;5254518;5674347;6052529;5425772;4847320;4972195;5222891;4348169;5218677;5631877;5327769;5018503;4931967;4546247;4396117;5498097;6835600;5876737;7819492;9357619.23;7701372;7543801
-351;'159;China;1876;Paper and paperboard;5910;Export quantity;t;56400;58800;49100;100400;89700;123300;107700;100000;100700;121600;128400;108000;125200;110500;149500;146800;130400;121100;93900;192100;216100;198100;172100;251400;374900;455000;606100;742200;828100;1364000;1947300;2204464;2460398;2619645;2529600;3158400;3728214;3907418;3439198;3688177;3196003;3180839;3567493;3396218;3857174;4843833;5931715;4872327;4898997;4881489;5568831;5862043;6749936;7328575;6655677;7668632;7461049;6711094;7294842;6223739;5728637.92;8596881;9114886
-351;'159;China;1876;Paper and paperboard;5922;Export value;1000 USD;9230;8984;7927;15551;14153;17396;20648;16633;17931;20828;22460;19365;29529;30226;37449;50891;44771;47119;51717;119966;125109;99828;98638;154851;230398;274621;354112;497372;562878;812941;1105448;1325229;1288532;1429355;1700685;1785882;1950379;2181403;1926033;2249281;1874034;1737980;2711509;2125792;2458781;3043678;3932802;3878247;3606899;4268293;5555518;5859026;6711737;7473832;7097789;7475385;7216976;6840756;7532818;6706383;6971064.17;10342990;9455240
-351;'159;China;2042;Graphic papers;5510;Production;t;1043000;1097700;1230000;1245600;1293200;1370800;983600;1045900;1103000;1178537;1230602;1274000;1645000;1562000;1600000;1614000;1756000;1981000;1957000;2152496;2175000;2334000;2617000;2930000;3528000;3911000;4508000;4905000;5153000;5451968;5685317;6177130;3637631;5248796;5542877;7182179;7451476;6833239;8346803;9944546;10450526;13415000;14628000;16760000;18107000;21127000;23588000;24631000;26310000;27416000;28966000;29616000;29016000;28666000;28616000;28366000;28416000;26966000;26616000;25816000;25016000;25266000;25966000
-351;'159;China;2042;Graphic papers;5610;Import quantity;t;42400;52100;61500;59700;62400;74500;77700;97300;97700;123800;157100;160900;187400;174900;165400;213400;273700;375300;393900;377700;447000;395400;397600;452800;627000;510700;641600;663800;866199;1000200;1168000;1525919;1674769;2202714;1965700;2915700;3561015;3699882;3526301;3994018;3652126;3387898;3367028;3135951;2999196;2705432;2563808;2401408;1975446;2245563;2130392;2189293;1962437;1932345;1913884;1892799;2462156;2849973;2283462;2943223;3228829.1;1910308;1775375
-351;'159;China;2042;Graphic papers;5622;Import value;1000 USD;8375;9615;10965;11321;12123;13882;15472;18313;19752;27572;35076;37060;53169;82078;70636;89141;114544;158907;188685;215308;254593;228841;204007;236284;311173;278539;387826;464940;712252;845299;991209;1118517;1135101;1506964;1863502;2234911;2432903;2581514;2336209;2875051;2509609;2171251;2143179;2204618;2242366;2067958;2076997;2254532;1681049;2055941;2137201;2108021;1860134;1827318;1696188;1625841;2015560;2493190;1908634;2049505;2573805.74;1756736;1542227
-351;'159;China;2042;Graphic papers;5910;Export quantity;t;36600;35600;31700;50200;43600;61200;40700;37900;37000;33800;39400;24500;32700;24000;28900;34200;31600;25500;41400;54100;39600;28900;32500;50100;59200;66400;139000;143000;154700;141600;274400;210173;230964;446199;461500;390300;382714;549399;583267;1043877;1044838;1036216;1251591;1198668;1691418;2590253;3064808;2747327;2840582;2661569;2929152;3216063;3476958;3472725;2975626;3354652;3137141;2658327;2920575;1938546;1824374.28;3022377;3333135
-351;'159;China;2042;Graphic papers;5922;Export value;1000 USD;5318;4890;4490;8235;7496;10780;10003;6988;6778;6487;7753;5756;10751;11739;11694;16993;16356;13323;28023;38413;29364;21419;21203;34330;42566;48173;92883;105466;135990;116513;262360;159042;152682;325012;439057;362814;358824;472110;470215;813812;749879;724673;875588;903210;1287863;1877982;2369850;2361691;2234266;2445143;2955087;3219353;3281617;3293692;2858803;3014155;2875026;2703966;2971250;2048755;2183489.94;3550438;3491631
-351;'159;China;1671;Newsprint;5510;Production;t;290300;291200;365000;365600;367200;392700;290200;325000;355000;387935;420000;450000;592000;344000;340000;342000;350000;353000;330000;374781;381000;403000;441000;437000;452000;456000;439000;443000;454000;475317;486317;584565;628925;721237;865414;955109;792756;824492;1076668;1536725;1768364;1880000;2099000;3029000;3220000;3780000;4531000;4628000;4827000;4327000;3927000;3827000;3627000;3277000;2977000;2627000;2377000;1927000;1527000;1127000;927000;927000;827000
-351;'159;China;1671;Newsprint;5610;Import quantity;t;23600;27800;31900;33800;36700;39300;36100;55500;50900;65500;85100;97000;101500;105300;108800;132500;190200;256100;266500;251700;302500;246200;273200;299000;448400;326800;389600;376600;442999;446800;409800;469887;589159;650624;614800;980200;1314176;1042826;1072382;974981;869267;879078;1095566;969109;906082;782892;710333;690603;538192;608296;580605;691931;604759;491389;439466;393385;614970;729484;643923;774910;812638.57;566051;582209
-351;'159;China;1671;Newsprint;5622;Import value;1000 USD;3442;4004;4475;4874;5238;5281;5107;7561;7212;10086;13594;15848;18171;33504;35821;43487;64115;81902;92080;100420;122007;102938;103750;114404;163143;126899;172132;195915;235707;255905;243998;209662;256193;286031;464604;672130;646792;595133;546340;567222;539869;383828;473767;488092;517734;470150;417181;497259;308526;353298;398371;445581;366835;287560;223722;192832;311480;454997;351730;320475;415203;378452;321832
-351;'159;China;1671;Newsprint;5910;Export quantity;t;26500;29500;25000;31200;22600;32200;14200;14200;12700;16200;18700;4400;4600;2000;3300;7800;5200;4000;3100;14900;14500;6700;5800;2300;2300;;6200;11600;6900;6700;9900;10038;7268;15333;120300;38800;28106;53200;27086;19515;35127;11460;17969;22340;24292;323757;596165;364478;211189;116139;17281;7055;92129;88543;18594;15193;12529;8917;9885;4357;8560.53;12110;24517
-351;'159;China;1671;Newsprint;5922;Export value;1000 USD;3377;3663;3152;4196;3057;4355;2106;2029;1752;2320;2692;659;1083;883;1273;2479;1842;1419;1066;5855;5726;2796;1936;776;776;;3141;7580;3929;3612;5739;4571;3644;7876;74709;22834;14497;26687;12772;9826;19270;6250;8756;10126;13436;172691;307394;255419;120222;67089;13830;7565;59828;61212;22389;14238;12327;9683;12226;8662;26160.83;29901;23656
-351;'159;China;1674;Printing and writing papers;5510;Production;t;752700;806500;865000;880000;926000;978100;693400;720900;748000;790602;810602;824000;1053000;1218000;1260000;1272000;1406000;1628000;1627000;1777715;1794000;1931000;2176000;2493000;3076000;3455000;4069000;4462000;4699000;4976651;5199000;5592565;3008706;4527559;4677463;6227070;6658720;6008747;7270135;8407821;8682162;11535000;12529000;13731000;14887000;17347000;19057000;20003000;21483000;23089000;25039000;25789000;25389000;25389000;25639000;25739000;26039000;25039000;25089000;24689000;24089000;24339000;25139000
-351;'159;China;1674;Printing and writing papers;5610;Import quantity;t;18800;24300;29600;25900;25700;35200;41600;41800;46800;58300;72000;63900;85900;69600;56600;80900;83500;119200;127400;126000;144500;149200;124400;153800;178600;183900;252000;287200;423200;553400;758200;1056032;1085610;1552090;1350900;1935500;2246839;2657056;2453919;3019037;2782859;2508820;2271462;2166842;2093114;1922540;1853475;1710805;1437254;1637267;1549787;1497362;1357678;1440956;1474418;1499414;1847186;2120489;1639539;2168313;2416190.53;1344257;1193166
-351;'159;China;1674;Printing and writing papers;5622;Import value;1000 USD;4933;5611;6490;6447;6885;8601;10365;10752;12540;17486;21482;21212;34998;48574;34815;45654;50429;77005;96605;114888;132586;125903;100257;121880;148030;151640;215694;269025;476545;589394;747211;908855;878908;1220933;1398898;1562781;1786111;1986381;1789869;2307829;1969740;1787423;1669412;1716526;1724632;1597808;1659816;1757273;1372523;1702643;1738830;1662440;1493299;1539758;1472466;1433009;1704080;2038193;1556904;1729030;2158602.74;1378284;1220395
-351;'159;China;1674;Printing and writing papers;5910;Export quantity;t;10100;6100;6700;19000;21000;29000;26500;23700;24300;17600;20700;20100;28100;22000;25600;26400;26400;21500;38300;39200;25100;22200;26700;47800;56900;66400;132800;131400;147800;134900;264500;200135;223696;430866;341200;351500;354608;496199;556181;1024362;1009711;1024756;1233622;1176328;1667126;2266496;2468643;2382849;2629393;2545430;2911871;3209008;3384829;3384182;2957032;3339459;3124612;2649410;2910690;1934189;1815813.74;3010267;3308618
-351;'159;China;1674;Printing and writing papers;5922;Export value;1000 USD;1941;1227;1338;4039;4439;6425;7897;4959;5026;4167;5061;5097;9668;10856;10421;14514;14514;11904;26957;32558;23638;18623;19267;33554;41790;48173;89742;97886;132061;112901;256621;154471;149038;317136;364348;339980;344327;445423;457443;803986;730609;718423;866832;893084;1274427;1705291;2062456;2106272;2114044;2378054;2941257;3211788;3221789;3232480;2836414;2999917;2862699;2694283;2959024;2040093;2157329.11;3520537;3467975
-351;'159;China;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4620882;6080000;6600000;6700000;9200000;9600000;10200000;10700000;12200000;13400000;14000000;15100000;16200000;17300000;17500000;17200000;17150000;17450000;17700000;17900000;17500000;17800000;17800000;17200000;17350000;18050000
-351;'159;China;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52791;39754;56032;21998;43676;66956;80034;71221;126910;113493;98529;88541;101461;91220;83622;93651;95293;102955;119192;159880;246738;267674;259304;242793.42;175565;247881
-351;'159;China;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72299;35096;52210;32155;38928;58599;69499;111959;113588;148386;143768;114212;141647;130016;151696;128771;141669;131280;146585;177472;243297;252625;225628;254131.43;195120;248061
-351;'159;China;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;8485;9568;8445;9922;19317;38276;38860;60250;90081;127649;97470;104959;124507;132161;98800;79890;63265;57168;92536;57038;61224;40328;32192.24;82017;207924
-351;'159;China;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;6615;7799;6124;8002;13495;27622;28628;43205;71246;115861;85879;107801;165506;168804;122208;98997;92635;101086;149455;95746;117628;88484;79779.71;132832;242752
-351;'159;China;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402136;398918;360655;342025;269000;266000;267000;270000;275000;280000;253000;243000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000
-351;'159;China;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370809;684818;793906;544294;677445;633837;766474;715203;698387;709499;622176;590346;642278;627716;596394;531430;564261;619012;654677;844015;983128;709835;1256817;1424463.47;602029;468208
-351;'159;China;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261657;497809;626396;410525;496357;493774;608634;584150;582591;615055;635612;566969;681145;726501;674545;624604;610195;600532;597673;744632;941791;657564;901505;1149860.26;567373;462950
-351;'159;China;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76085;177102;363088;450256;376192;401594;351178;461270;639660;592799;536654;559539;756806;862840;1022766;1238379;1223360;1057928;1248261;1035804;847875;935203;669543;632270.7;989991;1213030
-351;'159;China;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85055;151643;281091;316730;264234;292609;272304;356966;482488;500584;516344;488833;695168;854905;994179;1157580;1177563;989917;1078274;933106;888373;955869;699146;761258.31;1209662;1334569
-351;'159;China;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985729;791217;1447166;1640137;2066000;2663000;3264000;3917000;4872000;5377000;5750000;6140000;6643000;7493000;8043000;7943000;7993000;7943000;7793000;7893000;7293000;7043000;6643000;6643000;6743000;6843000
-351;'159;China;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233456;1729347;2169099;2216567;1787699;1570669;1320334;1306690;1097243;1030483;990100;758367;893528;830851;817346;732597;781402;752451;725545;843291;890623;662030;652192;748933.64;566663;477077
-351;'159;China;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1652425;1256964;1629223;1527060;1252138;1117039;1038393;1028523;901629;896375;977893;691342;879851;882313;836199;739924;787894;740654;688751;781976;853105;646715;601897;754611.05;615791;509384
-351;'159;China;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419662;370594;651706;551010;638642;812711;786874;1166996;1566586;1785763;1718546;1972384;1683665;1924524;2054081;2047650;2080932;1835839;2034030;1996272;1744497;1914263;1224318;1151350.81;1938259;1887664
-351;'159;China;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359827;299185;515096;407755;446187;560728;593158;888833;1179598;1490626;1474067;1539332;1575085;1920846;2048805;1942001;1955920;1753862;1820557;1780138;1710164;1885527;1252463;1316291.09;2178043;1890654
-351;'159;China;1675;Other paper and paperboard;5510;Production;t;1488100;1645200;1770000;1841400;1896600;1967800;1494800;1588700;1685000;1729690;1829000;2097000;2471000;2364000;2528000;2599000;2905000;3389000;4364000;4689800;4773000;5129000;5829000;6620000;7709000;8730000;9763000;10835000;11374000;11955846;12601846;14117679;18333721;20490143;22974390;23815250;24465496;25369872;25280414;25239610;26080121;28646000;32791000;37312000;42298000;48267000;54377000;59054000;63882000;69129000;74260000;76953000;76134000;80084000;82534000;84234000;86934000;81434000;85084000;91334000;100134000;103104000;107734000
-351;'159;China;1675;Other paper and paperboard;5610;Import quantity;t;69900;83000;85100;162100;157500;185200;187200;239200;255700;303100;348800;364200;362200;301500;297500;431700;431000;568600;577600;844200;779800;684500;871200;897300;1058500;1678200;2096900;1747100;1811900;2127700;2674800;3620305;4142803;3714139;3519500;5754600;7083200;7190125;7423468;5822788;4902564;5769989;5984281;5879811;4895113;3929327;3482715;3126811;3034989;2991573;3058217;2827414;2678513;2650737;2582635;2652325;3838975;4957825;5482191;10965535;10016337.35;8291835;11166297
-351;'159;China;1675;Other paper and paperboard;5622;Import value;1000 USD;13513;15663;14631;27754;25708;29707;30361;38281;41210;57107;63499;68945;87210;104172;87136;133384;175506;247450;273295;626033;575277;452943;586635;590248;712271;1342548;1079970;1029114;1202057;1420187;1641484;2018706;1971832;2122550;2579829;3209418;3749475;3483406;3765018;3318569;2750289;3083267;3531168;3847911;3183406;2779362;2895198;2968359;2667120;3162736;3494676;3219748;3158369;3104649;2850059;2770276;3482537;4342410;3968103;5769987;6783813.49;5944636;6001574
-351;'159;China;1675;Other paper and paperboard;5910;Export quantity;t;19800;23200;17400;50200;46100;62100;67000;62100;63700;87800;89000;83500;92500;86500;120600;112600;98800;95600;52500;138000;176500;169200;139600;201300;315700;388600;467100;599200;673400;1222400;1672900;1994291;2229434;2173446;2068100;2768100;3345500;3358019;2855931;2644300;2151165;2144623;2315902;2197550;2165756;2253580;2866907;2125000;2058415;2219920;2639679;2645980;3272978;3855850;3680051;4313980;4323908;4052767;4374267;4285193;3904263.64;5574504;5781751
-351;'159;China;1675;Other paper and paperboard;5922;Export value;1000 USD;3912;4094;3437;7316;6657;6616;10645;9645;11153;14341;14707;13609;18778;18487;25755;33898;28415;33796;23694;81553;95745;78409;77435;120521;187832;226448;261229;391906;426888;696428;843088;1166187;1135850;1104343;1261628;1423068;1591555;1709293;1455818;1435469;1124155;1013307;1835921;1222582;1170918;1165696;1562952;1516556;1372633;1823150;2600431;2639673;3430120;4180140;4238986;4461230;4341950;4136790;4561568;4657628;4787574.23;6792552;5963609
-351;'159;China;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;25352;25000;28000;31000;34000;37000;40000;44000;50000;55000;60706;66000;72000;77000;84000;485000;558000;663000;798000;868000;1007741;1140741;1329826;542107;1548064;2023786;2550411;2546858;2572439;2547708;2807673;2975019;3315000;3685000;4056000;4578000;4922000;5426000;5705000;5996000;6399000;7499000;7999000;8149000;8499000;9049000;9399000;9799000;9899000;10249000;10999000;11249000;11549000;12299000
-351;'159;China;1676;Household and sanitary papers;5610;Import quantity;t;600;800;800;1100;1000;1300;1400;1200;1600;2100;2000;2300;2600;2600;2600;2600;2600;26900;81100;5600;6000;6400;5800;5700;7600;10400;11600;13900;13500;14300;14100;16200;17500;22000;35700;23200;37900;54938;65162;67876;58502;62282;65081;95910;71640;63240;50809;57246;59845;65976;76874;86485;85623;82970;77177;72539;85157;100304;86999;108963;118200.94;108700;108503
-351;'159;China;1676;Household and sanitary papers;5622;Import value;1000 USD;329;372;378;509;463;596;616;900;1196;1623;1357;1854;2804;2804;2804;2804;5200;14477;30740;6089;6271;6427;5917;5861;7653;10671;12963;17281;18096;19332;18995;20707;21392;24955;44256;37314;45041;55481;58866;61103;51696;52961;55773;91022;72030;62085;55976;67160;66181;82318;99032;114927;115741;114809;101041;92233;105272;127234;105620;116981;118955.44;126810;126693
-351;'159;China;1676;Household and sanitary papers;5910;Export quantity;t;400;500;400;500;300;400;600;700;1400;1900;500;400;1000;1000;1000;1000;1000;1000;1000;100;100;300;400;800;1500;1500;9600;8800;7200;7500;9300;9500;10400;12400;13700;16800;35300;33800;86191;37181;53112;75416;91554;304500;78149;70787;82362;114461;136908;90741;97256;158038;215582;243508;205502;190057;218223;219405;210860;249513;128449.44;201710;337068
-351;'159;China;1676;Household and sanitary papers;5922;Export value;1000 USD;268;335;248;283;173;299;386;390;925;1014;270;485;690;690;690;690;690;690;690;153;153;361;460;793;1459;1459;10073;9968;9502;10118;12167;12107;11977;13741;19790;21787;38395;29712;61617;35832;50934;60891;70875;318999;66212;61702;83226;127274;128419;96499;114194;175273;311947;371182;316328;265933;301864;316283;337248;412283;202473.08;301494;434729
-351;'159;China;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19774645;19720586;20884361;20911482;24015000;27384000;31536000;35858000;40930000;46387000;50390000;54730000;59075000;62456000;64599000;63780000;67080000;68630000;69830000;71730000;66030000;68430000;73530000;80580000;82350000;85480000
-351;'159;China;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2356625;2253744;5023835;3834492;5139117;5173459;4910734;4226559;3421287;3150130;2837563;2813877;2738420;2808188;2593291;2449413;2425378;2362300;2439968;3557028;4622306;5151124;10657223;9713451.92;8059255;10950351
-351;'159;China;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043673;1140395;2435537;1856588;2602081;2799463;2930439;2694016;2360564;2548040;2622150;2396997;2801003;3103175;2847404;2783698;2744608;2517491;2450398;3121092;3913370;3589521;5422442;6434719.88;5601069;5681648
-351;'159;China;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480717;2240165;2137708;1705653;1934379;2092800;1804078;1998070;2049085;2679524;1930384;1876329;2061403;2473356;2427219;2978794;3524142;3377751;4021586;4026851;3751139;4063129;3944522;3680149.92;5246429;5328413
-351;'159;China;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043844;901117;1003301;725176;819851;1620309;813566;1014366;993523;1388900;1301717;1175226;1630548;2340493;2302834;2932990;3605639;3721535;3985262;3853758;3621686;3997514;4033056;4363289.97;6198182;5231552
-351;'159;China;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;259097;312000;530000;513000;464000;592000;660000;780000;946000;1069000;1119430;1160000;1192000;1416000;1564000;5422000;6283000;6973000;7642000;7999000;8332415;8676415;9747614;10260014;12811389;18056231;18351409;18892796;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;16800;19700;20100;28000;27200;34400;35200;47000;58000;60700;71800;82200;79100;68700;60500;105200;269000;305300;252000;233400;172600;205800;342300;384700;359100;228100;649100;673300;681300;799600;955200;1294720;1815435;1722639;1455300;1887300;1964600;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2849;3224;3280;4410;4014;5166;5339;7000;9463;11035;13639;17225;24304;33289;24775;41886;80126;96586;97248;118646;69345;82902;113279;142367;117103;93971;270152;315653;350865;384660;430762;636614;778344;917298;1006446;918116;820943;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;500;600;400;600;300;500;600;900;3300;2700;5000;2300;5600;6000;5500;6900;800;700;900;16700;16700;9300;16200;18100;38600;38600;122700;266500;309900;561100;960600;1348117;1492672;1551144;1408100;1997800;2209400;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;134;168;124;141;87;149;193;200;989;621;1538;829;2510;4153;3532;4107;251;250;378;10879;10879;6274;7340;9018;15613;15613;57884;131391;138099;227786;353885;721922;646812;702908;779580;848264;790795;;;;;;;;;;;;;;;;;;;;;;;;;;
-351;'159;China;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2249386;2393340;13141998;13014152;14488000;16109000;19117000;21890000;25371000;29611000;32756000;36685000;39758000;42039000;43482000;43013000;45813000;47163000;48213000;49663000;44963000;46563000;50763000;57363000;58333000;60563000
-351;'159;China;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293855;1063107;2346258;1761452;2041339;1988536;1617268;1468312;1329031;1172200;1067529;1106827;879341;963249;870356;773453;764077;775193;852670;1700516;2599508;3253122;7551398;6575627.18;5963779;8837269
-351;'159;China;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425362;356260;748411;526012;614853;610015;546736;521525;500570;523323;559647;516229;540593;685578;583011;560195;573617;541078;567386;1040560;1654602;1567784;3078626;3669073.88;3435009;3768581
-351;'159;China;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490095;1221009;1090054;831644;813376;903243;913389;844397;879292;1245545;689937;578140;497524;571361;697721;764873;882447;796394;1000678;1034309;1092747;1140297;1186574;1009421.47;1176150;1319517
-351;'159;China;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510713;374300;388127;231136;214192;254989;261567;249182;261692;443094;302669;203015;257651;330299;367031;553102;612148;598987;639565;624299;693643;636378;658871;795057.07;840482;785669
-351;'159;China;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906018;880699;3681866;3848453;5476000;6422000;7663000;8815000;10307000;11423000;11988000;12252000;13272000;14172000;14672000;14372000;14722000;14772000;14822000;15072000;14122000;14872000;15672000;16022000;16672000;17322000
-351;'159;China;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;924479;1003870;1556721;1166929;1667526;1939337;2147284;1604457;1327152;1350042;1198702;1165801;1265379;1275093;1159206;1124388;1122564;1058488;1039151;1112562;1101943;1115323;1431643;1458532.06;899553;867924
-351;'159;China;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530758;555011;1026552;768617;1155166;1435355;1585248;1329659;1312569;1481069;1455550;1351401;1607495;1724338;1593135;1574657;1544880;1389149;1302558;1361196;1374837;1274173;1320493;1533200.94;1179948;1018523
-351;'159;China;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858346;814523;726833;625250;671926;658798;528987;600659;807283;1046475;988607;1089470;1253720;1566318;1440200;1841896;2210072;2102380;2483868;2483147;2196880;2332949;2204478;2099054.68;3316284;3234138
-351;'159;China;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457043;403555;418029;330710;341633;361268;319914;395179;513418;712617;774739;797914;1101489;1556521;1443633;1727161;2250668;2245631;2539790;2401925;2142109;2309632;2365381;2472625.79;4018303;3435562
-351;'159;China;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16546000;16380000;4000000;4000000;4000000;4800000;4700000;5100000;5200000;5300000;5600000;5750000;6000000;6200000;6400000;6350000;6500000;6650000;6750000;6950000;6900000;6950000;7050000;7150000;7300000;7550000
-351;'159;China;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101194;185223;1063816;860328;1290452;1152894;932956;955318;620431;497542;469841;452079;503239;483298;485664;459689;467324;468922;473034;651692;814261;679770;1008372;1021947.88;624835;699200
-351;'159;China;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73242;228141;634668;540696;771199;712060;683967;730315;455576;449130;522359;446754;572052;608772;592862;563390;562144;534881;516451;645238;802640;674350;758756;887240.45;677517;658121
-351;'159;China;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132253;152720;244625;194490;306168;304121;267890;476290;293849;322518;201430;153035;244958;274823;218611;279739;306276;336796;383712;337565;316659;379211;375862;386873.04;492075;420886
-351;'159;China;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76058;107020;169944;146547;209676;928815;186209;335938;186645;202167;194912;147871;227217;375642;386013;444009;448046;504072;520488;517677;512464;618811;627661;675346.56;818257;648724
-351;'159;China;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73241;66547;60497;48877;51000;53000;56000;53000;52000;53000;46000;43000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000
-351;'159;China;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37097;1544;57040;45783;139800;92692;213226;198472;144673;130346;101491;89170;90461;86548;78065;91883;71413;59697;75113;92258;106594;102909;665810;657344.8;571088;545958
-351;'159;China;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14311;983;25906;21263;60863;42033;114488;112517;91849;94518;84594;82613;80863;84487;78396;85456;63967;52383;64003;74098;81291;73214;264567;345204.61;308595;236423
-351;'159;China;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;51913;76196;54269;142909;226638;93812;76724;68661;64986;50410;55684;65201;60854;70687;92286;125347;142181;153328;171830;144853;210672;177608;184800.73;261920;353872
-351;'159;China;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;16242;27201;16783;54350;75237;45876;34067;31768;31022;29397;26426;44191;78031;106157;208718;294777;372845;285419;309857;273470;432693;381143;420260.56;521140;361597
-351;'159;China;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;78100;95200;100000;141400;126600;137800;211800;258700;315000;27241;27000;27000;27000;27000;27000;27000;27000;27000;27000;24664;25000;25000;25000;25000;1802000;1889000;2127000;2395000;2507000;2615690;2784690;3040239;7531600;6130690;2894373;2913430;3025842;3022788;3012120;1547576;2193620;1316000;1722000;1720000;1862000;2415000;2564000;2959000;3156000;3655000;4305000;4355000;4205000;4505000;4855000;5005000;5405000;5505000;6405000;6805000;8305000;9205000;9955000
-351;'159;China;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;50300;59200;60200;83400;82200;103100;106200;139400;158500;166500;186300;191000;191800;141500;145700;215600;40600;50800;58900;167200;214200;203300;156000;206900;202800;396700;1436200;1059900;1117100;1313800;1705500;2309385;2309868;1969500;2028500;3844100;5080700;4778562;5104562;731077;1009570;568590;745741;873167;596914;444800;281776;232002;161267;187177;173155;147638;143477;142389;143158;139818;196790;235215;244068;199349;184684.49;123880;107443
-351;'159;China;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;9235;10500;10414;13886;12925;15845;16706;22048;24988;32100;33373;34736;44972;52949;44427;64499;28480;39787;48707;108298;152561;121614;137039;172020;167515;328906;796855;696180;833096;1016195;1191727;1361385;1172096;1180297;1529127;2253988;2883491;2384252;2565757;821929;842005;428225;675932;826450;417360;356713;291182;279049;203942;279415;292469;257417;258930;245232;231527;227645;256173;301806;272962;230564;230138.17;216757;193233
-351;'159;China;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;17400;21700;16200;18700;15400;31100;27600;26000;20600;19200;19500;16700;21800;15400;50000;73800;69000;68900;28600;102200;143700;146600;113000;89700;104600;105500;334800;323900;356300;653800;703000;636674;726362;609902;646300;753500;1100800;843502;529575;469411;392400;134828;131548;88972;89537;133708;105021;80155;45178;67776;69067;60723;78602;88200;96798;102337;78834;82223;100278;91158;95664.29;126365;116270
-351;'159;China;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2710;3391;2865;2342;2034;1805;4498;4055;3074;3581;3773;3054;6368;4465;12385;16779;14274;20856;11826;61021;76713;64974;64335;61610;80160;80376;193272;250547;279287;458524;477036;432158;477061;387694;462258;553017;762365;635737;493084;396336;348045;132565;144737;90017;90340;110471;90826;87565;68988;96103;145744;161566;185183;203319;201123;210035;186328;198821;226806;212289;221811.18;292876;297328
-351;'159;China;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3315936;3351247;3143231;3169831;3324454;2972877;2660993
-351;'159;China;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30256248;31129391;28072281;28758536;36292868;33618086;31526302
-351;'159;China;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144793;133748;164332;239163;353647;285318;175318
-351;'159;China;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219507;193690;147050;129601;134906;134701;98784
-351;'159;China;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2431;4401;3519;2731;4953;4983;7020
-351;'159;China;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17235;12318;13292;22016;17039;11840;8167
-351;'159;China;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142362;129347;160813;236432;348694;280335;168298
-351;'159;China;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202272;181372;133758;107585;117867;122861;90617
-351;'159;China;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46824;54831;55377;51898;82844;82328;97498
-351;'159;China;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86323;90768;93675;107612;126684;216639;141934
-351;'159;China;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113557;131685;119453;102888;123371;120688;125355
-351;'159;China;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1909394;2116199;2090135;2146438;2797351;2697434;2339019
-351;'159;China;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254095;273623;289283;245994;303432;244208;216534
-351;'159;China;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172466;1187918;1156387;1111879;1421596;1457255;1329624
-351;'159;China;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000
-351;'159;China;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198;3376
-351;'159;China;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498;1153
-351;'159;China;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45319;39121
-351;'159;China;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56192;35009
-351;'159;China;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;148
-351;'159;China;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;196
-351;'159;China;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;118
-351;'159;China;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;148
-351;'159;China;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000
-351;'159;China;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633;185
-351;'159;China;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989;273
-351;'159;China;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3534;7428
-351;'159;China;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4945;9322
-351;'159;China;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083153;2181048;1955713;1713403;1894527;1752968;1542834
-351;'159;China;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24382361;24751051;21964301;22350837;27848385;25268245;24233495
-351;'159;China;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18544;14188;14713;5885;5907;5908;5794
-351;'159;China;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80141;30633;62786;29490;62977;53041;69735
-351;'159;China;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654970;562124;544360;810600;560726;481459;497660
-351;'159;China;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2406056;2759132;2557947;2882679;3900969;3790771;3313711
-351;'159;China;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2907097;2873246;2691573;2425516;2784161;2532498;2318872
-351;'159;China;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14330275;15382856;17210553;16578367;19177819;22925090;21561928
-351;'159;China;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36385;46729;35948;25804;31147;22371;18375
-351;'159;China;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25773;20663;19798;13706;19134;22183;15833
-351;'159;China;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487905;478659;442063;421800;480367;412683;339052
-351;'159;China;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100256;1160514;1313527;1332457;1596559;2071101;1998435
-351;'159;China;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341437;355233;360431;374613;380445;391798;386970
-351;'159;China;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2126923;2273795;2818337;2416552;1863685;2325436;2624451
-351;'159;China;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678450;689896;690409;622174;747802;629119;589107
-351;'159;China;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4593177;4899792;5535171;5773161;7182799;7686834;6710240
-351;'159;China;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1362920;1302729;1162722;981125;1144400;1076527;985368
-351;'159;China;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484146;7028092;7523720;7042491;8515642;10819536;10212969
-96;'344;China, Hong Kong SAR;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2852127;2835260;2583108;2120831;2398141.48;2242627;2042932
-96;'344;China, Hong Kong SAR;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1846509;1751465;1542726;1177051;1408275.86;1085100.77;900479.77
-96;'344;China, Hong Kong SAR;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;32886;39468;42635;48016;44425;49735;49030;61466;68663;85027;99717;104082;158942;205790;162104;235656;257111;342787;462166;564584;563875;517415;455975;566402;541345;702817;988334;1221087;1479455;1725543;1953270;2109938;2229175;2902578;3490912;3491379;3020860;2915075;2960635;2998885;2293054;1974361;1731287;1698609;1473591;1374987;1353577;1326272;995220;1141848;1193807;1159851;1053165;1118859;826076;672980;705680;689954;574527;417831;447609.48;419577;347539
-96;'344;China, Hong Kong SAR;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3775;4615;4398;4976;3836;4947;7032;7142;8477;11664;12465;13790;31224;37858;25494;30526;27662;25874;34401;95166;86098;83946;88426;102933;119540;130286;283021;442410;549426;738521;924251;1032218;1124594;1407055;1733054;1871455;1711609;1723039;1405862;1916937;1485361;1338995;1838755;1032792;839453;804469;798129;723618;528366;665293;714054;603578;553241;534380;436009.05;363332;416535;383485;278685;249067;322632.86;257842.77;209753.77
-96;'344;China, Hong Kong SAR;1861;Roundwood;5516;Production;m3;0;19075;46842;62016;79596;73483;76276;86575;89781;87694;90364;90640;89383;101750;107903;108346;108746;110383;110766;107502;107689;109775;110241;109238;111292;109255;106434;105161;105789;106433;106748;110159;104964;91880;92589;107678;108379;105445;104633;103829;102026;100255;98515;96806;95126;93389;91700;90000;88367;91754;90207;88689;87197;85732;84294;83004;81736;80489;79261;78054;76864;75693;74541
-96;'344;China, Hong Kong SAR;1861;Roundwood;5616;Import quantity;m3;414900;553000;507000;599100;388100;340900;276800;327300;309400;416900;515800;352600;373400;398600;325200;417800;493700;558100;569000;571900;575800;567300;571700;521400;523500;500000;600400;634400;561000;470075;773178;494614;501147;550108;586566;813000;250000;500000;1168653;958135;690648;491291;198415;77496;160122;158857;161749;338007;100610;138150;219976;174724;162062;245171;108842;39408;9355;9330;3971;1534;1089;3806;3829
-96;'344;China, Hong Kong SAR;1861;Roundwood;5622;Import value;1000 USD;6609;9838;9034;9740;6810;6040;5036;6045;6584;8473;11317;8842;16953;20975;13709;24281;28455;37320;62736;58888;52788;42310;44469;49180;40630;46243;55107;62626;57912;23590;69669;70134;98625;105106;142217;164938;32708;125000;216370;194413;133625;80752;60496;43735;44793;54367;65729;65274;44698;62149;92463;134188;128205;211756;83419;30746;22958;4004;31558;1145;1046;1829;1835
-96;'344;China, Hong Kong SAR;1861;Roundwood;5916;Export quantity;m3;21700;31500;29200;31600;35400;26400;21400;22700;20200;24400;32300;30300;40600;33900;23500;23900;27700;27700;27700;72400;72400;72400;72400;72400;72400;72400;61600;58700;114200;14178;31024;49407;29418;212243;211500;319200;70000;70000;1666;911;1248;430724;1388;11624;8610;81761;127724;62292;5667;2247;1306;2611;3004;2543;4296;747;7372;5152;1037;2962;2593;3291;3300
-96;'344;China, Hong Kong SAR;1861;Roundwood;5922;Export value;1000 USD;497;644;806;1150;1101;861;633;594;572;751;1231;1814;4159;3590;2572;1179;1358;1358;1358;17054;17054;17054;17054;17054;17054;17054;13702;14323;22132;1917;4282;6683;5420;61993;75105;99895;39512;17500;644;565;741;74855;570;3449;2960;52667;71733;41298;1054;485;401;812;827;816;1513;212;8095;2742;2923;4176;4117;2261;2269
-96;'344;China, Hong Kong SAR;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2350;6903;2216;623;623;1540;1540
-96;'344;China, Hong Kong SAR;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;901;963;418;418;573;573
-96;'344;China, Hong Kong SAR;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;2733;161;4;4;688;688
-96;'344;China, Hong Kong SAR;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;265;11;1;1;88;88
-96;'344;China, Hong Kong SAR;1863;Roundwood, non-coniferous;5516;Production;m3;0;19075;46842;62016;79596;73483;76276;86575;89781;87694;90364;90640;89383;101750;107903;108346;108746;110383;110766;107502;107689;109775;110241;109238;111292;109255;106434;105161;105789;106433;106748;110159;104964;91880;92589;107678;108379;105445;104633;103829;102026;100255;98515;96806;95126;93389;91700;90000;88367;91754;90207;88689;87197;85732;84294;83004;81736;80489;79261;78054;76864;75693;74541
-96;'344;China, Hong Kong SAR;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7005;2427;1755;911;466;2266;2289
-96;'344;China, Hong Kong SAR;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22749;3103;30595;727;628;1256;1262
-96;'344;China, Hong Kong SAR;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7013;2419;876;2958;2589;2603;2612
-96;'344;China, Hong Kong SAR;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8019;2477;2912;4175;4116;2173;2181
-96;'344;China, Hong Kong SAR;1864;Wood fuel;5516;Production;m3;0;19075;46842;62016;79596;73483;76276;86575;89781;87694;90364;90640;89383;101750;107903;108346;108746;110383;110766;107502;107689;109775;110241;109238;111292;109255;106434;105161;105789;106433;106748;110159;104964;91880;92589;107678;108379;105445;104633;103829;102026;100255;98515;96806;95126;93389;91700;90000;88367;86754;85207;83689;82197;80732;79294;78004;76736;75489;74261;73054;71864;70693;69541
-96;'344;China, Hong Kong SAR;1864;Wood fuel;5616;Import quantity;m3;136100;90200;54700;38100;20900;26900;20300;11900;10500;15400;11700;10900;10300;7300;3800;200;400;400;400;;;;;;;;;;;;;1919;2501;16026;15800;900;0;0;0;0;0;0;0;0;0;0;0;0;51;46;33;13;69;588;27;27;;;199;534;89;18;41
-96;'344;China, Hong Kong SAR;1864;Wood fuel;5622;Import value;1000 USD;1300;806;524;310;183;207;170;97;94;131;108;111;116;80;49;7;11;11;11;;;;;;;;;;;;;370;403;2339;2339;81;0;0;0;0;0;0;0;0;0;0;0;0;20;19;16;7;53;203;13;13;;;58;149;50;26;32
-96;'344;China, Hong Kong SAR;1864;Wood fuel;5916;Export quantity;m3;6300;16600;8100;5900;5500;4600;4600;1100;2100;4100;2700;2500;1100;7400;6100;4100;4100;4100;4100;;;;;;;;;;;;;5135;75;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;45;53;12;507;57;40;41;;;77;451;82;26;35
-96;'344;China, Hong Kong SAR;1864;Wood fuel;5922;Export value;1000 USD;60;185;79;48;65;49;49;14;19;41;19;20;21;282;192;145;145;145;145;;;;;;;;;;;;;270;4;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;19;17;7;37;26;20;20;;;39;99;40;13;21
-96;'344;China, Hong Kong SAR;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;54;54;0;0
-96;'344;China, Hong Kong SAR;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;29;29;3;3
-96;'344;China, Hong Kong SAR;1628;Wood fuel, non-coniferous;5516;Production;m3;0;19075;46842;62016;79596;73483;76276;86575;89781;87694;90364;90640;89383;101750;107903;108346;108746;110383;110766;107502;107689;109775;110241;109238;111292;109255;106434;105161;105789;106433;106748;110159;104964;91880;92589;107678;108379;105445;104633;103829;102026;100255;98515;96806;95126;93389;91700;90000;88367;86754;85207;83689;82197;80732;79294;78004;76736;75489;74261;73054;71864;70693;69541
-96;'344;China, Hong Kong SAR;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;480;35;18;41
-96;'344;China, Hong Kong SAR;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;120;21;23;29
-96;'344;China, Hong Kong SAR;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;451;82;26;35
-96;'344;China, Hong Kong SAR;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;99;40;13;21
-96;'344;China, Hong Kong SAR;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;136100;90200;54700;38100;20900;26900;20300;11900;10500;15400;11700;10900;10300;7300;3800;200;400;400;400;;;;;;;;;;;;;1919;2501;16026;15800;900;0;0;0;0;0;0;0;0;0;0;0;0;51;46;33;13;69;588;27;27;;;;;;;
-96;'344;China, Hong Kong SAR;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;1300;806;524;310;183;207;170;97;94;131;108;111;116;80;49;7;11;11;11;;;;;;;;;;;;;370;403;2339;2339;81;0;0;0;0;0;0;0;0;0;0;0;0;20;19;16;7;53;203;13;13;;;;;;;
-96;'344;China, Hong Kong SAR;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;6300;16600;8100;5900;5500;4600;4600;1100;2100;4100;2700;2500;1100;7400;6100;4100;4100;4100;4100;;;;;;;;;;;;;5135;75;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;45;53;12;507;57;40;41;;;;;;;
-96;'344;China, Hong Kong SAR;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;60;185;79;48;65;49;49;14;19;41;19;20;21;282;192;145;145;145;145;;;;;;;;;;;;;270;4;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;19;17;7;37;26;20;20;;;;;;;
-96;'344;China, Hong Kong SAR;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-96;'344;China, Hong Kong SAR;1865;Industrial roundwood;5616;Import quantity;m3;278800;462800;452300;561000;367200;314000;256500;315400;298900;401500;504100;341700;363100;391300;321400;417600;493300;557700;568600;571900;575800;567300;571700;521400;523500;500000;600400;634400;561000;470075;773178;492695;498646;534082;570766;812100;250000;500000;1168653;958135;690648;491291;198415;77496;160122;158857;161749;338007;100559;138104;219943;174711;161993;244583;108815;39381;9355;9330;3772;1000;1000;3788;3788
-96;'344;China, Hong Kong SAR;1865;Industrial roundwood;5622;Import value;1000 USD;5309;9032;8510;9430;6627;5833;4866;5948;6490;8342;11209;8731;16837;20895;13660;24274;28444;37309;62725;58888;52788;42310;44469;49180;40630;46243;55107;62626;57912;23590;69669;69764;98222;102767;139878;164857;32708;125000;216370;194413;133625;80752;60496;43735;44793;54367;65729;65274;44678;62130;92447;134181;128152;211553;83406;30733;22958;4004;31500;996;996;1803;1803
-96;'344;China, Hong Kong SAR;1865;Industrial roundwood;5916;Export quantity;m3;15400;14900;21100;25700;29900;21800;16800;21600;18100;20300;29600;27800;39500;26500;17400;19800;23600;23600;23600;72400;72400;72400;72400;72400;72400;72400;61600;58700;114200;14178;31024;44272;29343;212200;211500;319200;70000;70000;1666;911;1248;430724;1388;11624;8610;81761;127724;62292;5621;2202;1253;2599;2497;2486;4256;706;7372;5152;960;2511;2511;3265;3265
-96;'344;China, Hong Kong SAR;1865;Industrial roundwood;5922;Export value;1000 USD;437;459;727;1102;1036;812;584;580;553;710;1212;1794;4138;3308;2380;1034;1213;1213;1213;17054;17054;17054;17054;17054;17054;17054;13702;14323;22132;1917;4282;6413;5416;61991;75105;99895;39512;17500;644;565;741;74855;570;3449;2960;52667;71733;41298;1036;466;384;805;790;790;1493;192;8095;2742;2884;4077;4077;2248;2248
-96;'344;China, Hong Kong SAR;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5363;37213;25224;4212;10957;5400;20700;0;0;2611;4607;975;156631;57620;3338;13312;7722;17771;80604;30782;49688;109943;26711;53600;60177;36876;14340;2350;6903;2094;569;569;1540;1540
-96;'344;China, Hong Kong SAR;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115;3527;3262;1098;1131;833;2359;0;0;728;488;268;9105;5421;627;1440;1132;2214;10521;6787;8881;13081;3687;6593;5667;4536;1993;209;901;944;389;389;570;570
-96;'344;China, Hong Kong SAR;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2963;2963;1099;3200;7500;7500;0;0;0;0;0;0;381;128;1438;2149;5942;2217;5395;702;401;190;88;77;36;256;359;2733;161;4;4;688;688
-96;'344;China, Hong Kong SAR;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;295;238;490;1251;1251;0;0;0;0;0;0;95;13;559;512;1121;510;1000;159;49;23;8;8;3;54;76;265;11;1;1;88;88
-96;'344;China, Hong Kong SAR;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5363;37213;25224;4212;10957;5400;20700;0;0;2611;4607;975;156631;57620;3338;13312;7722;17771;80604;30782;49688;109943;26711;53600;60177;36876;14340;2350;6903;2094;569;569;1540;1540
-96;'344;China, Hong Kong SAR;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115;3527;3262;1098;1131;833;2359;0;0;728;488;268;9105;5421;627;1440;1132;2214;10521;6787;8881;13081;3687;6593;5667;4536;1993;209;901;944;389;389;570;570
-96;'344;China, Hong Kong SAR;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2963;2963;1099;3200;7500;7500;0;0;0;0;0;0;381;128;1438;2149;5942;2217;5395;702;401;190;88;77;36;256;359;2733;161;4;4;688;688
-96;'344;China, Hong Kong SAR;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;295;238;490;1251;1251;0;0;0;0;0;0;95;13;559;512;1121;510;1000;159;49;23;8;8;3;54;76;265;11;1;1;88;88
-96;'344;China, Hong Kong SAR;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-96;'344;China, Hong Kong SAR;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464712;735965;467471;494434;523125;565366;791400;250000;500000;1166042;953528;689673;334660;140795;74158;146810;151135;143978;257403;69777;88416;110000;148000;108393;184406;71939;25041;7005;2427;1678;431;431;2248;2248
-96;'344;China, Hong Kong SAR;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22475;66142;66502;97124;101636;139045;162498;32708;125000;215642;193925;133357;71647;55075;43108;43353;53235;63515;54753;37891;53249;79366;130494;121559;205886;78870;28740;22749;3103;30556;607;607;1233;1233
-96;'344;China, Hong Kong SAR;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14178;28061;41309;28244;209000;204000;311700;70000;70000;1666;911;1248;430724;1007;11496;7172;79612;121782;60075;226;1500;852;2409;2409;2409;4220;450;7013;2419;799;2507;2507;2577;2577
-96;'344;China, Hong Kong SAR;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917;3987;6118;5178;61501;73854;98644;39512;17500;644;565;741;74855;475;3436;2401;52155;70612;40788;36;307;335;782;782;782;1490;138;8019;2477;2873;4076;4076;2160;2160
-96;'344;China, Hong Kong SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462329;716695;460009;484562;511759;554000;770700;250000;500000;1159641;755885;531885;247748;93751;32128;69092;58177;41811;129589;33807;43512;61360;72344;97716;175076;66005;21448;5623;755;1528;345;345;1201;1201
-96;'344;China, Hong Kong SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22156;61180;64330;94505;97728;135137;160139;32708;125000;213051;128782;88567;44910;25694;13408;5527;7967;8184;10112;14692;19584;49618;66115;113440;198336;74839;26635;21971;2466;30433;515;515;566;566
-96;'344;China, Hong Kong SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14178;28061;41309;28244;209000;204000;311700;70000;70000;1666;911;1248;430724;1007;11496;7148;57079;2249;47878;81;1500;852;2409;2409;2409;4220;450;7013;2419;799;2507;2507;2039;2039
-96;'344;China, Hong Kong SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917;3987;6118;5178;61501;73854;98644;39512;17500;644;565;741;74855;475;3436;2388;40221;1675;32681;28;307;335;782;782;782;1490;138;8019;2477;2873;4076;4076;1859;1859
-96;'344;China, Hong Kong SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2383;19270;7462;9872;11366;11366;20700;0;0;6401;197643;157788;86912;47044;42030;77718;92958;102167;127814;35970;44904;48640;75656;10677;9330;5934;3593;1382;1672;150;86;86;1047;1047
-96;'344;China, Hong Kong SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;4962;2172;2619;3908;3908;2359;0;0;2591;65143;44790;26737;29381;29700;37826;45268;55331;44641;23199;33665;29748;64379;8119;7550;4031;2105;778;637;123;92;92;667;667
-96;'344;China, Hong Kong SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;22533;119533;12197;145;0;0;0;0;0;0;0;0;0;0;0;0;538;538
-96;'344;China, Hong Kong SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;11934;68937;8107;8;0;0;0;0;0;0;0;0;0;0;0;0;301;301
-96;'344;China, Hong Kong SAR;1868;Sawlogs and veneer logs;5616;Import quantity;m3;276700;461600;451000;559400;366600;312900;256200;314800;298900;401500;504100;341700;363100;391300;321400;417600;493300;557700;568600;571900;575800;567300;571700;521400;523500;500000;600400;634400;561000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;5247;8993;8466;9391;6598;5825;4859;5930;6490;8342;11209;8731;16837;20895;13660;24274;28444;37309;62725;58888;52788;42310;44469;49180;40630;46243;55107;62626;57912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1868;Sawlogs and veneer logs;5916;Export quantity;m3;15400;14900;21100;25700;29900;21800;16800;21600;18100;20300;29600;27800;39500;26500;17400;19800;23600;23600;23600;72400;72400;72400;72400;72400;72400;72400;61600;58700;114200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;437;459;727;1102;1036;812;584;580;553;710;1212;1794;4138;3308;2380;1034;1213;1213;1213;17054;17054;17054;17054;17054;17054;17054;13702;14323;22132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;6100;4900;5000;5900;8300;4100;4200;1000;1700;1300;3000;1600;3000;900;800;1400;500;1200;2300;2300;2200;8300;5300;7300;4600;2700;3600;14800;2600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;180;157;164;206;206;91;99;45;74;72;116;79;107;72;92;165;44;79;256;256;500;1282;803;1147;939;282;673;1561;273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;270600;456700;446000;553500;358300;308800;252000;313800;297200;400200;501100;340100;360100;390400;320600;416200;492800;556500;566300;569600;573600;559000;566400;514100;518900;497300;596800;619600;558400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5067;8836;8302;9185;6392;5734;4760;5885;6416;8270;11093;8652;16730;20823;13568;24109;28400;37230;62469;58632;52288;41028;43666;48033;39691;45961;54434;61065;57639;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;15400;14900;21100;25700;29900;21800;16800;21600;18100;20300;29600;27800;39500;26500;17400;19800;23600;23600;23600;72400;72400;72400;72400;72400;72400;72400;61600;58700;114200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;437;459;727;1102;1036;812;584;580;553;710;1212;1794;4138;3308;2380;1034;1213;1213;1213;17054;17054;17054;17054;17054;17054;17054;13702;14323;22132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-96;'344;China, Hong Kong SAR;1871;Other industrial roundwood;5616;Import quantity;m3;2100;1200;1300;1600;600;1100;300;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1871;Other industrial roundwood;5622;Import value;1000 USD;62;39;44;39;29;8;7;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-96;'344;China, Hong Kong SAR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2100;1200;1300;1600;600;1100;300;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;62;39;44;39;29;8;7;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7615;1825;0;0;0;0;0;0;0;0;0;0;0;135;0;842;0;615;283;2296;3254;3883;6451;9481;5452;16624;16333;16047;15766;15491;15219;14939;14700;14400;14127;13867;13617;13371;13130;12893;12661;12452;12247;12045;11847;11652;11459;11270;11084
-96;'344;China, Hong Kong SAR;1630;Wood charcoal;5610;Import quantity;t;49900;53200;44300;39000;34200;28100;22900;29400;25200;25700;26200;19100;19400;18200;12000;16400;18800;19000;21100;22800;21700;23700;26600;22800;21500;21500;19900;18200;22100;18400;18300;18808;18011;16173;16100;15400;13000;9500;10014;9197;8024;8692;10048;9046;7887;8585;6725;8335;9129;6995;6909;9144;7906;7364;5151;3707;3530;3940;3513;4016;3962.86;3332;4434
-96;'344;China, Hong Kong SAR;1630;Wood charcoal;5622;Import value;1000 USD;2007;1929;1666;1497;1311;1007;887;1014;1007;1032;1012;783;1041;1369;825;1455;1770;2615;3554;4192;3214;4113;5026;4156;3753;3568;3373;3369;4530;3687;3704;4355;3776;3490;3857;4517;3813;2457;2443;2272;1992;2261;2606;2451;2182;2487;2112;3102;3572;2776;3209;4862;3886;3426;2364;1641;1595;2216;2494;2808;2222.92;1859;3860
-96;'344;China, Hong Kong SAR;1630;Wood charcoal;5910;Export quantity;t;3100;4100;1900;1100;400;100;100;1600;300;1300;2900;2200;2200;1900;2700;1500;1500;1500;1500;1500;1500;1800;1900;1500;1700;1700;1300;1500;3200;2200;1100;2300;1100;1200;2000;1900;2100;2100;567;3192;3192;550;1737;994;579;2095;2806;967;3486;3070;987;4346;12499;417;301;232;253;276;221;283;348;567;1402
-96;'344;China, Hong Kong SAR;1630;Wood charcoal;5922;Export value;1000 USD;128;164;78;45;18;5;16;56;12;53;120;102;142;182;224;135;135;135;135;254;254;318;365;328;302;302;259;350;718;503;233;570;258;315;472;627;703;703;165;296;296;251;575;318;262;496;665;495;933;1197;832;4677;6229;365;191;152;174;191;158;112;191;234;1943
-96;'344;China, Hong Kong SAR;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2642;3771;4027;3879;2985;2572;1712;2237;2791;3325;3164;3321;3260;3970;4067;5355;7626;10841;10799;12659;12563;7208;3451;1904;19983
-96;'344;China, Hong Kong SAR;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;547;657;533;335;504;412;435;440;558;634;619;691;624;682;800;1411;1876;2661;2399;3125;2847;1449;1173;971;1789
-96;'344;China, Hong Kong SAR;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;16321;15558;21443;24867;37654;35490;21110;29903;31510;26227;23739;25995;27747;16019;10467;6128;6189;2800;1942;69;6;460;498;32;0
-96;'344;China, Hong Kong SAR;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;1172;982;1213;1682;3182;3141;2008;2851;2833;2559;2403;2492;3208;1345;893;914;826;378;540;188;45;114;224;134;3
-96;'344;China, Hong Kong SAR;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;329;0;0;0;0;0;0;84;57;18;55;97;103;27;30;5;130;81;12;124;77;328;141;147;28;549;309;208;248;261;168
-96;'344;China, Hong Kong SAR;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;26;0;0;0;0;0;0;52;18;8;106;43;37;14;13;5;35;24;12;50;36;173;47;53;264;184;107;112;326;290;162
-96;'344;China, Hong Kong SAR;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;3037;0;0;0;0;0;172;204;964;31;4;0;6;45;0;4;0;8;2514;620;600;0;0;6;56;46;4;3;41;32;0
-96;'344;China, Hong Kong SAR;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;263;0;0;0;0;0;81;71;246;9;5;0;6;125;0;2;2;5;190;50;45;0;0;5;217;179;42;22;132;133;2
-96;'344;China, Hong Kong SAR;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;100;700;500;400;3400;1300;2100;5300;7300;5100;6200;5900;9600;28636;29823;31396;12100;3500;3300;2600;2642;3687;3970;3861;2930;2475;1609;2210;2761;3320;3034;3240;3248;3846;3990;5027;7485;10694;10771;12110;12254;7000;3203;1643;19815
-96;'344;China, Hong Kong SAR;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;37;126;102;103;532;235;355;857;1443;811;971;982;1066;1393;1048;1062;755;701;676;519;547;605;515;327;398;369;398;426;545;629;584;667;612;632;764;1238;1829;2608;2135;2941;2740;1337;847;681;1627
-96;'344;China, Hong Kong SAR;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;2300;1700;2900;2900;7200;3800;4800;2200;2000;2500;23000;29400;28500;96400;26975;23800;8886;4000;2200;3300;1500;16149;15354;20479;24836;37650;35490;21104;29858;31510;26223;23739;25987;25233;15399;9867;6128;6189;2794;1886;23;2;457;457;0;0
-96;'344;China, Hong Kong SAR;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;116;108;203;203;731;219;302;188;142;347;1493;2242;1861;4134;1242;1662;488;685;436;330;212;1091;911;967;1673;3177;3141;2002;2726;2833;2557;2401;2487;3018;1295;848;914;826;373;323;9;3;92;92;1;1
-96;'344;China, Hong Kong SAR;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;5900;7100;4100;10600;11800;11800
-96;'344;China, Hong Kong SAR;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;30;5035;7726;1008;958;599;1727;4418.82;3376;2592
-96;'344;China, Hong Kong SAR;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;26;1891;2705;709;632;252;592;1853.07;1605;1301
-96;'344;China, Hong Kong SAR;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445;4181;3437;493;968;3;4;64;26;5
-96;'344;China, Hong Kong SAR;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;857;622;49;118;4;4;66;35;7
-96;'344;China, Hong Kong SAR;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;30;45;597;17;0;28;46;11;130;130
-96;'344;China, Hong Kong SAR;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;26;62;97;8;0;5;7;10;51;51
-96;'344;China, Hong Kong SAR;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445;55;1574;487;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;31;249;44;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4990;7129;991;958;571;1681;4407.82;3246;2462
-96;'344;China, Hong Kong SAR;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829;2608;701;632;247;585;1843.07;1554;1250
-96;'344;China, Hong Kong SAR;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4126;1863;6;968;3;4;64;26;5
-96;'344;China, Hong Kong SAR;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826;373;5;118;4;4;66;35;7
-96;'344;China, Hong Kong SAR;1872;Sawnwood;5516;Production;m3;130000;220000;210000;265000;165000;140000;115000;130000;115000;165000;205000;125000;130000;152000;122000;166000;228000;262000;257000;235000;273000;319000;271000;248000;248000;248000;248000;248000;587000;421000;421000;439000;441000;441000;441000;441000;441000;441000;300000;200000;100000;75000;55000;25000;25000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;10000;3000;3000;3000;3000;3000;3000;3000
-96;'344;China, Hong Kong SAR;1872;Sawnwood;5616;Import quantity;m3;49800;60400;69800;57400;52000;48700;46500;64200;59100;52200;92600;73000;78500;80100;69900;87900;117500;95800;136400;175600;143900;181000;130500;179600;146500;161700;224800;267900;255700;242100;321500;365493;409757;445247;446600;636400;126000;154529;682803;1289613;1238941;1374436;1106079;864582;543986;455606;395237;583672;304350;331963;339237;259878;283066;298792;179570;168466;126408;84534;83465;87146;87146;101123;101123
-96;'344;China, Hong Kong SAR;1872;Sawnwood;5622;Import value;1000 USD;2472;2928;4308;3098;3052;2982;2590;3368;3878;3362;5096;4497;6387;11112;8777;11711;14112;16585;30750;28313;27736;31078;20352;29312;24935;30082;39049;48597;53889;52692;71793;105112;138916;183850;214081;293692;61174;171600;495348;493362;418148;448224;372551;311724;197802;176903;151519;130107;101809;103600;115409;110081;123281;130221;79770;51374;44374;33427;22178;19845;19845;34143;34143
-96;'344;China, Hong Kong SAR;1872;Sawnwood;5916;Export quantity;m3;16900;16900;10300;12800;13800;8800;11500;20100;22800;19200;13200;12300;19300;20500;17000;13200;13200;13200;13200;25300;25300;47700;59600;79400;73800;73800;125000;180200;221000;216700;294500;267384;292800;387200;410900;427000;167296;1889;5817;1163750;1060914;1267143;1007544;763202;481355;375403;317667;218496;238999;269353;224007;116429;107674;113173;53172;29472;25510;17625;9131;4178;4178;3867;3867
-96;'344;China, Hong Kong SAR;1872;Sawnwood;5922;Export value;1000 USD;1134;1180;717;913;1116;903;1386;2247;3079;2852;1758;1873;3579;5772;3928;3365;3365;3365;3365;10273;10273;11374;15289;18812;17522;17522;25430;34996;41596;44740;60241;68139;83828;128367;174770;185985;59662;50;3474;443968;357185;396596;342006;268133;170786;150053;128992;90689;82182;81969;85900;57628;84634;77913;41118;20559;21506;8007;5196;1965;1965;1069;1069
-96;'344;China, Hong Kong SAR;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1632;Sawnwood, coniferous;5616;Import quantity;m3;12100;8200;6800;4650;6500;12500;13000;5850;6500;7700;32600;22000;16700;27100;29100;29100;35500;30100;29300;28100;15400;17800;14600;12200;13900;8600;13400;14300;10200;12400;15200;32865;36194;60680;44000;72500;0;0;253803;108174;165611;185974;234775;160303;128211;117895;140662;138365;110237;113605;115288;91304;108968;120571;121315;132369;90460;65885;71965;77669;77669;91646;91646
-96;'344;China, Hong Kong SAR;1632;Sawnwood, coniferous;5622;Import value;1000 USD;323;320;226;173;288;444;415;251;411;352;927;812;760;1524;1466;1469;2026;1872;2241;2755;1533;3161;1706;1685;2151;1166;1805;2193;1833;2303;2818;6205;9317;15207;24842;38186;0;0;22738;21872;25076;26579;31185;23229;20088;17885;23455;25677;19070;23093;25798;20138;27960;31825;28708;28068;19939;22682;15885;15722;15722;30020;30020
-96;'344;China, Hong Kong SAR;1632;Sawnwood, coniferous;5916;Export quantity;m3;100;100;100;100;100;200;2800;5000;3200;700;2100;3000;4300;600;600;600;600;600;600;200;200;200;1200;700;700;700;6300;2200;1400;4400;4100;2276;965;26000;33400;30000;0;0;129;59;146;74047;102081;73012;66298;62952;78628;56936;68158;62214;26892;21236;30341;17278;13709;5264;3937;8571;5267;2987;2987;1262;1262
-96;'344;China, Hong Kong SAR;1632;Sawnwood, coniferous;5922;Export value;1000 USD;3;3;3;3;3;6;88;145;95;32;73;113;249;55;55;55;55;55;55;52;52;42;228;158;161;161;806;575;265;818;750;388;208;11478;18106;17893;0;0;43;47;37;13373;15987;12971;12170;11773;17682;13899;16567;13907;6382;5186;7301;5457;4035;1581;1119;2441;1741;1212;1212;500;500
-96;'344;China, Hong Kong SAR;1633;Sawnwood, non-coniferous;5516;Production;m3;130000;220000;210000;265000;165000;140000;115000;130000;115000;165000;205000;125000;130000;152000;122000;166000;228000;262000;257000;235000;273000;319000;271000;248000;248000;248000;248000;248000;587000;421000;421000;439000;441000;441000;441000;441000;441000;441000;300000;200000;100000;75000;55000;25000;25000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;10000;3000;3000;3000;3000;3000;3000;3000
-96;'344;China, Hong Kong SAR;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;37700;52200;63000;52750;45500;36200;33500;58350;52600;44500;60000;51000;61800;53000;40800;58800;82000;65700;107100;147500;128500;163200;115900;167400;132600;153100;211400;253600;245500;229700;306300;332628;373563;384567;402600;563900;126000;154529;429000;1181439;1073330;1188462;871304;704279;415775;337711;254575;445307;194113;218358;223949;168574;174098;178221;58255;36097;35948;18649;11500;9477;9477;9477;9477
-96;'344;China, Hong Kong SAR;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2149;2608;4082;2925;2764;2538;2175;3117;3467;3010;4169;3685;5627;9588;7311;10242;12086;14713;28509;25558;26203;27917;18646;27627;22784;28916;37244;46404;52056;50389;68975;98907;129599;168643;189239;255506;61174;171600;472610;471490;393072;421645;341366;288495;177714;159018;128064;104430;82739;80507;89611;89943;95321;98396;51062;23306;24435;10745;6293;4123;4123;4123;4123
-96;'344;China, Hong Kong SAR;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;16800;16800;10200;12700;13700;8600;8700;15100;19600;18500;11100;9300;15000;19900;16400;12600;12600;12600;12600;25100;25100;47500;58400;78700;73100;73100;118700;178000;219600;212300;290400;265108;291835;361200;377500;397000;167296;1889;5688;1163691;1060768;1193096;905463;690190;415057;312451;239039;161560;170841;207139;197115;95193;77333;95895;39463;24208;21573;9054;3864;1191;1191;2605;2605
-96;'344;China, Hong Kong SAR;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1131;1177;714;910;1113;897;1298;2102;2984;2820;1685;1760;3330;5717;3873;3310;3310;3310;3310;10221;10221;11332;15061;18654;17361;17361;24624;34421;41331;43922;59491;67751;83620;116889;156664;168092;59662;50;3431;443921;357148;383223;326019;255162;158616;138280;111310;76790;65615;68062;79518;52442;77333;72456;37083;18978;20387;5566;3455;753;753;569;569
-96;'344;China, Hong Kong SAR;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;3000;3000;3000;3000;3000;3000;3000;3000;3000;2824;2824;2000;2000;2000;2000;2000;2000;2000
-96;'344;China, Hong Kong SAR;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;100;1100;100;100;100;100;100;100;100;100;100;500;500;400;2400;4700;12500;12100;6300;1500;1300;4900;10100;14000;22600;18700;7000;10200;21000;34000;53000;94500;96500;357000;354000;78233;97343;116881;182852;98002;40414;32211;37333;32388;5803;3804;4197;2798;2404;2246;2846;696;577;696;954;1556;1489;1489;1489;1489
-96;'344;China, Hong Kong SAR;1634;Veneer sheets;5622;Import value;1000 USD;69;46;33;15;71;16;22;22;21;15;20;32;80;63;390;374;168;818;1354;3521;3458;1860;473;624;1225;2044;3032;4302;4274;2722;3261;7287;10920;22610;48592;45218;86714;60848;49035;50023;45332;64280;61040;55660;51983;44628;33641;20492;13873;15513;11257;9512;7060;12900;3737;4065;4195;4233;4541;1963;1963;1963;1963
-96;'344;China, Hong Kong SAR;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;300;400;400;900;1100;1700;1700;100;1400;400;400;400;6900;4700;10700;4200;3400;15900;30000;52900;59800;90000;191;263;1267;524;168;179970;11647;1042;1396;2094;1552;969;1074;1572;911;1828;422;2451;664;609;673;905;1496;300;300;300;300
-96;'344;China, Hong Kong SAR;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;263;321;321;321;321;401;401;32;348;142;142;142;1493;2239;1946;985;1325;4992;6776;17954;20500;25195;65;57;41064;331;231;50447;4605;1919;2685;3971;3072;2245;2387;2592;1730;2064;944;11337;2926;3127;2981;3393;5177;974;974;974;974
-96;'344;China, Hong Kong SAR;1873;Wood-based panels;5516;Production;m3;;;;;;600;1400;7300;10000;10000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;22000;31000;41000;41000;41000;41000;41000;60000;70000;70000;70000;70000;70000;50000;45000;45000;45000;45000;45000;45000;45000;45000;45000;41000;41000;41000;41000;41000;40000;40000;40000;40000;40000;40000;40000
-96;'344;China, Hong Kong SAR;1873;Wood-based panels;5616;Import quantity;m3;17100;19400;28800;34700;40200;46449;35470;48965;49328;53323;65264;68264;79780;66417;71306;99648;108300;133900;184600;260600;265600;177700;180900;219300;229700;306800;545100;495200;574400;848400;938000;713943;916776;1230842;1411700;1180100;469191;314293;1035665;783362;670617;855524;614785;467553;340671;347655;276948;267340;241555;264425;333574;315297;280593;234053;231976;242792;249846;257271;246379;193962;184985.35;186189;178294
-96;'344;China, Hong Kong SAR;1873;Wood-based panels;5622;Import value;1000 USD;2435;2764;4139;5428;5979;6388;5110;6397;7179;8854;11401;12123;21547;21130;19661;34275;43578;49989;82854;110034;117739;91343;85112;97819;99784;119785;221422;247582;263965;362408;328271;326130;438158;566303;577840;567338;300863;218561;280969;235140;212815;166903;128698;120827;90797;103719;107994;127851;101912;118013;109187;116343;107240;128517;122553;116041;160773;151171;115688;95916;96631.39;96653;92212
-96;'344;China, Hong Kong SAR;1873;Wood-based panels;5916;Export quantity;m3;600;2200;7000;8300;2600;700;1700;5200;4500;500;1400;600;1800;1100;500;1600;1600;200;700;700;2300;2300;900;2500;4900;13700;286900;278800;402090;645300;592700;524800;504546;773251;876800;728100;267200;282112;281042;281303;290495;340797;266372;146984;145251;151130;55434;81515;46440;47977;39101;37037;31939;39686.29;39405.05;28851;23148;23052;13260;7572;7599;7492;7171
-96;'344;China, Hong Kong SAR;1873;Wood-based panels;5922;Export value;1000 USD;89;261;671;789;282;129;213;423;374;106;305;154;490;324;211;461;461;61;446;446;1400;1400;405;559;1680;3386;91635;112910;146830;217565;187520;175256;231171;348931;361048;296524;222978;127027;92051;91955;94578;56282;40988;34634;21285;51238;17571;36024;25306;24046;21873;22611;17204;23029;24169.05;16628;13425;13663;9148;5394;5580;5407;5166
-96;'344;China, Hong Kong SAR;1640;Plywood and LVL;5516;Production;m3;;;;;;600;1400;7300;10000;10000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;1000;1000;1000;1000;1000;1000;20000;30000;30000;30000;30000;30000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1640;Plywood and LVL;5616;Import quantity;m3;9300;11200;18500;27100;32500;38000;27800;41000;43300;47000;59700;64100;73700;59600;67900;92200;98200;122500;168700;237300;249400;166600;169100;208400;219900;283500;505000;467300;541600;780800;844300;636463;758509;966781;1113800;961600;195491;19093;740465;488162;375417;530195;383248;374830;283489;311961;241653;234165;226355;246974;323107;302287;267615;218605;219399;231546;236459;220326;222034;173780;173780;173780;173780
-96;'344;China, Hong Kong SAR;1640;Plywood and LVL;5622;Import value;1000 USD;1416;1803;2939;4374;4906;5863;4605;5854;6721;8392;11006;11740;20957;20257;19192;33236;42263;48527;80095;105906;114981;88988;82661;95634;97764;115895;214912;240384;253930;339604;298381;289657;374663;487463;492791;484778;195491;125529;187937;142108;119783;119471;97792;105017;80763;96077;100274;120533;97978;112952;105066;110447;103020;122711;117214;110393;153583;138770;105808;89157;89157;89157;89157
-96;'344;China, Hong Kong SAR;1640;Plywood and LVL;5916;Export quantity;m3;600;2200;7000;8300;2600;700;1700;5200;4500;500;1400;600;1800;1100;500;1600;1600;200;700;700;2300;2300;900;900;3300;6400;262700;265300;379400;586100;474400;443900;376646;661000;742000;608700;12800;5512;4442;4703;13895;14017;8312;28608;40365;83024;24394;48702;33933;38768;34195;29566;26874;27725;34943;22381;17842;18465;11001;7023;7023;7023;7023
-96;'344;China, Hong Kong SAR;1640;Plywood and LVL;5922;Export value;1000 USD;89;261;671;789;282;129;213;423;374;106;305;154;490;324;211;461;461;61;446;446;1400;1400;405;405;1526;2259;87717;109182;140576;199774;162877;166005;183733;322334;326089;263313;122769;36586;1610;1514;4137;4896;4054;15396;7836;40207;10942;28902;22234;21049;18865;17925;15271;19203;21462;13230;10727;11691;7655;4828;4828;4828;4828
-96;'344;China, Hong Kong SAR;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;30000;40000;40000;40000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1800;1200;1300;1300;1300;300;300;300;300;300;300;100;100;100;100;100;300;600;2000;3700;4600;5300;6300;4600;5800;5100;9800;10000;7900;16400;17300;35280;93267;125787;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;418;285;292;292;292;22;22;22;22;22;22;19;19;19;19;19;70;157;589;1198;1307;1569;1781;1193;1315;1197;2004;2547;2140;4014;4082;8889;21041;30360;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;8200;16190;39100;50600;43000;71700;100600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;2232;4217;9938;8385;6144;15078;23108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-96;'344;China, Hong Kong SAR;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162100;116200;133200;137000;137000;137000;137000;78757;54609;22170;18086;12986;7918;4536;2799;3425;3959;3395;3092;8431;5897;4300;6676;25872;18574;15475;5130.81;6296;2146
-96;'344;China, Hong Kong SAR;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34625;32190;34670;29505;29505;29505;29505;13041;7105;3713;3364;2606;1754;1050;733;1007;1059;1001;818;2514;2189;2077;3018;5869;5707;3843;2945.22;2962;890
-96;'344;China, Hong Kong SAR;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122500;117200;125000;120000;120000;120000;120000;79232;53356;20304;16134;27066;5113;3346;960;365;721;868;1519;9622;2096;4903;4642;4144;847;408;323;275;11
-96;'344;China, Hong Kong SAR;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32713;32560;31686;24656;24656;24656;24656;12913;7977;3324;2760;4527;1170;578;191;137;171;303;450;2348;1133;1618;1769;1411;634;271;426;320;18
-96;'344;China, Hong Kong SAR;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;36;113;113;294;217;202;504;280;494;697;487;748;243;129
-96;'344;China, Hong Kong SAR;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;15;49;37;107;80;98;168;87;196;272;148;323;134;79
-96;'344;China, Hong Kong SAR;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;1;1
-96;'344;China, Hong Kong SAR;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;25;25;0;0
-96;'344;China, Hong Kong SAR;1874;Fibreboard;5616;Import quantity;m3;6000;7000;9000;6300;6400;8149;7370;7665;5728;6023;5264;4064;5980;6717;3306;7348;9800;10800;13900;19600;11600;5800;5500;6300;4000;18200;30300;17900;24900;51200;76400;42200;65000;138274;135800;102300;140500;158200;158200;158200;158200;246572;176928;70553;39096;22708;27377;28639;12138;13990;6395;9502;9592;6800;6478;6442;6431;10579;5074;4220;5326.54;5870;2239
-96;'344;China, Hong Kong SAR;1874;Fibreboard;5622;Import value;1000 USD;601;676;908;762;781;503;483;521;436;440;373;364;571;854;450;1020;1245;1305;2170;2930;1451;786;670;992;705;2693;4506;4651;7895;18790;25808;27584;42454;48480;50424;50370;70702;63527;63527;63527;63527;34391;23801;12097;6670;5036;5966;6268;3136;4039;3013;4858;3295;3212;3052;3403;4085;6336;3901;2768;4206.17;4400;2086
-96;'344;China, Hong Kong SAR;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;7300;18300;5300;6500;20100;67700;37900;56200;11651;12300;2200;129400;156600;156600;156600;156600;247548;204704;98072;88752;41040;25927;29467;11547;8844;4185;6603;3546;2339.29;2366.05;1567;664;443;1411;138;250;193;136
-96;'344;China, Hong Kong SAR;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;154;154;1127;2735;1496;2037;7853;16258;3107;32360;3489;2246;651;68523;65785;65785;65785;65785;38473;28957;15914;10689;6504;5459;6544;2881;2860;2837;4383;1483;1478;1574.05;1780;929;561;856;270;301;259;320
-96;'344;China, Hong Kong SAR;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24800;4000;5800;7500;7500;7500;7500;5800;6209;5002;3351;2402;1237;1277;537;621;472;444;667;408;165;268;879;1893;1006;615;1120;711;220
-96;'344;China, Hong Kong SAR;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248;1806;4954;2262;2262;2262;2262;1783;1624;1414;977;1026;664;699;413;523;377;662;932;534;201;263;1322;3169;1660;1062;1947;1290;504
-96;'344;China, Hong Kong SAR;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;7500;10000;10000;10000;10000;14730;6704;3131;2079;1133;160;4184;352;155;133;56;159;21;61;6;52;6;10;29;21;9;9
-96;'344;China, Hong Kong SAR;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;330;4479;3000;3000;3000;3000;4461;1881;1124;831;572;163;1450;162;221;140;209;88;21;59;53;125;19;25;17;34;80;80
-96;'344;China, Hong Kong SAR;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78800;94000;130800;150000;150000;150000;150000;229721;162873;59175;24737;13874;18887;25118;10608;12425;5780;8713;8870;6208;6100;6071;5375;4647;4021;3605;3840.54;5107;1968
-96;'344;China, Hong Kong SAR;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35331;47774;64599;60975;60975;60975;60975;31903;21430;10028;4802;3475;4446;5174;2564;3344;2599;4075;2347;2620;2801;3114;2706;2432;2228;1705;2132.17;3094;1567
-96;'344;China, Hong Kong SAR;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120100;145000;145000;145000;145000;218689;161765;61441;29754;19516;20265;24172;8997;8477;3741;6545;3381;2318;2305;1561;611;437;433;107;114;143;86
-96;'344;China, Hong Kong SAR;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63285;62352;62352;62352;62352;32820;24024;11189;6358;4394;4784;4958;2060;2610;2642;4173;1393;1452;1515;1727;801;542;493;242;179;141;202
-96;'344;China, Hong Kong SAR;1650;Other fibreboard;5616;Import quantity;m3;600;400;600;1000;2000;3200;2000;2400;1200;1600;2000;800;2400;2400;1200;4400;8200;8500;10900;16200;9800;4600;3900;3600;2400;16100;25800;13800;21800;45400;65400;13200;20000;8841;32200;4300;3900;700;700;700;700;11051;7846;6376;11008;6432;7253;2244;993;944;143;345;55;184;213;103;177;4039;47;0;366;52;51
-96;'344;China, Hong Kong SAR;1650;Other fibreboard;5622;Import value;1000 USD;160;128;219;208;307;138;74;150;76;75;105;39;154;194;101;570;745;994;1687;2146;1096;527;414;416;355;2231;3745;3561;6889;17074;23223;3569;5467;2687;5845;790;1149;290;290;290;290;705;747;655;891;535;856;395;159;172;37;121;16;58;50;26;57;735;13;1;127;16;15
-96;'344;China, Hong Kong SAR;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;7300;15900;4500;4800;17700;62800;13200;20000;7700;11100;1000;1800;1600;1600;1600;1600;14129;36235;33500;56919;20391;5502;1111;2198;212;311;2;6;0.29;0.05;0;1;0;968;2;115;41;41
-96;'344;China, Hong Kong SAR;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;154;154;1127;2378;1138;1315;6843;14667;1393;3965;2008;1916;321;759;433;433;433;433;1192;3052;3601;3500;1538;512;136;659;29;55;1;2;5;0.05;0;3;0;338;11;88;38;38
-96;'344;China, Hong Kong SAR;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5400;6600;8400;5300;4400;4949;5370;5265;4528;4423;3264;3264;3580;4317;2106;2948;1600;2300;3000;3400;1800;1200;1600;2700;1600;2100;4500;4100;3100;5800;11000;29000;45000;129433;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;441;548;689;554;474;365;409;371;360;365;268;325;417;660;349;450;500;311;483;784;355;259;256;576;350;462;761;1090;1006;1716;2585;24015;36987;45793;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;800;1700;2400;4900;24700;36200;3951;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;357;358;722;1010;1591;1714;28395;1481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;114000;114000;171000;218000;187000;167000;230000;264000;294000;375000;402000;386000;357000;440000;456000;384000;503000;582000;599000;595000;550000;735000;677000;620000;692000;700000;750000;710000;684000;679000;826000;800000;763000;782000;883000;908000;1003000;1102000;1091000;1027000;1195000;1278400;1162300;1034600;947900;896300;805700;792500;694600;532500;442100;603000;583500;625000
-96;'344;China, Hong Kong SAR;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;2656;1428;1527;2648;3639;4045;3310;943;1300;6400;9800;23000;12300;20000;40200;30300;49700;113800;119944;103658;103202;136500;123800;104100;164000;48767;61577;79794;67508;84253;106808;136294;85736;61244;53882;124611;186568;215388;103749;19209;25627;10446;7190;24519;108436;39620;19185;5661;15780;12785
-96;'344;China, Hong Kong SAR;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;106;99;185;398;718;627;380;261;306;747;2752;5014;4237;7715;19967;13866;19962;27217;28906;21452;22851;32480;26560;17443;23040;8608;14855;11377;9686;12820;16049;18783;12827;9776;9863;11316;22183;34863;17205;3834;4545;1972;1776;4355;19859;7018;3486;3839;11706;9326
-96;'344;China, Hong Kong SAR;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;114000;114000;171000;218000;187100;166700;229700;264000;294300;374900;401600;385700;357200;445500;456500;387300;505800;509000;634100;612400;563100;622400;501376;389044;443638;493200;431000;442600;193400;544533;861815;849342;595036;637253;741096;807516;953666;1114107;1101188;1040050;1200692;1287325;1172970;1037948;951429;901417;817089;798092;720005;537519;449136;616490.54;582442.54;628682.54
-96;'344;China, Hong Kong SAR;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;3350;3177;5774;9843;16064;7696;12689;16704;18376;26248;31782;21760;21244;28841;34645;24593;34388;36854;77414;65421;59844;70379;50120;34817;43686;70860;49750;41931;37336;47637;84102;66760;56919;72456;90648;108209;121898;166391;201619;140047;233295;298136;249978;206130;175938;161911;149689;174091;171878;92081;82808;150301;153328.77;135106.77
-96;'344;China, Hong Kong SAR;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;100;600;1400;700;300;300;300;300;3200;7700;8500;10600;25800;12200;14700;21600;32012;43872;23386;18000;11800;7200;16000;9390;12361;7393;3705;3898;1973;1855;1263;3431;1770;1723;588;311;437;810;228;47;472;625;5952;6070;606;5661;15780;12785
-96;'344;China, Hong Kong SAR;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;79;280;569;350;192;192;192;192;1890;3584;3802;6229;17977;10450;11246;13295;17133;14471;11007;11773;8182;4454;6837;5020;6778;3849;2279;2407;1700;1407;987;1314;1618;1300;1155;779;1079;789;324;185;500;603;4024;3174;723;3839;11706;9326
-96;'344;China, Hong Kong SAR;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;500;3000;2800;6000;20900;7400;9100;15400;3477;6326;2100;3500;6000;2600;5400;7649;12920;6087;984;1704;1048;1361;2314;608;388;6470;298;170;794;3171;467;814;703;3852;2235;271;513;1675.54;2742.54;2773.54
-96;'344;China, Hong Kong SAR;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;269;1352;1219;3685;14947;6173;6875;9298;1841;2701;1158;2256;5273;1814;2916;3930;6808;3196;612;1052;800;859;1351;630;413;3483;413;512;1350;2087;668;649;638;2509;1676;243;298;1089;1753.77;1891.77
-96;'344;China, Hong Kong SAR;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-96;'344;China, Hong Kong SAR;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;100;600;1400;700;300;300;300;300;3200;7700;8500;10600;25800;12200;14700;21600;28749;41925;24051;25300;11800;7200;16000;8289;5098;4214;2120;3051;1898;1585;1248;3431;1626;1696;515;287;417;803;222;41;395;625;5951;5917;557;5612;15769;12776
-96;'344;China, Hong Kong SAR;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;79;280;569;350;192;192;192;192;1890;3584;3802;6229;17977;10450;11246;13295;16148;14240;12094;18298;8182;4454;6837;4615;3635;2792;1246;1717;1288;1067;817;1314;1294;1228;593;573;900;722;259;120;378;603;4020;2977;485;3601;11694;9311
-96;'344;China, Hong Kong SAR;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;500;3000;2800;6000;20900;7400;9100;15400;20021;13415;2021;28600;6000;2600;5400;10387;12342;6146;959;2471;1029;1303;2302;703;498;6466;280;148;773;3150;446;814;681;3852;2235;229;507;1669.54;2661.54;2709.54
-96;'344;China, Hong Kong SAR;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;269;1352;1219;3685;14947;6173;6875;9298;12642;7109;1002;15183;5273;1814;2916;3534;7115;3196;596;1454;756;826;1161;650;370;3474;260;326;1167;1904;621;649;568;2509;1676;168;286;1077;1572.77;1825.77
-96;'344;China, Hong Kong SAR;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5750;8;1051;9860;9860
-96;'344;China, Hong Kong SAR;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2841;12;483;6912;6912
-96;'344;China, Hong Kong SAR;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1050.54;1050.54;1050.54
-96;'344;China, Hong Kong SAR;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;484;483.77;483.77
-96;'344;China, Hong Kong SAR;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;708;190;0;0;0;0;0;19;193;13;12;5;2;18;0;0;25;25;25;25;25;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;152;60;0;0;0;0;0;13;62;13;16;7;2;30;0;0;5;5;5;5;5;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;676;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;307;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;442;125;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1065;220;71;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;100;600;1400;700;300;300;300;300;3200;7700;8500;10600;25800;12200;14700;21600;26446;40071;20664;13000;11800;7200;16000;8289;5079;4021;2107;1867;1893;1583;1230;3431;1626;1671;490;262;392;778;221;40;395;625;5951;167;549;4561;5909;2916
-96;'344;China, Hong Kong SAR;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;79;280;569;350;192;192;192;192;1890;3584;3802;6229;17977;10450;11246;13295;14732;13424;10185;9326;8182;4454;6837;4615;3622;2730;1233;1111;1281;1065;787;1314;1294;1223;588;568;895;717;257;118;378;603;4020;136;473;3118;4782;2399
-96;'344;China, Hong Kong SAR;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;500;3000;2800;6000;20900;7400;9100;15400;3353;6210;2000;3400;6000;2600;5400;6599;11642;6068;952;1689;1014;1303;2287;607;333;6466;280;148;601;2474;446;814;681;3852;2235;229;507;619;1611;1659
-96;'344;China, Hong Kong SAR;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;269;1352;1219;3685;14947;6173;6875;9298;1725;2612;987;2176;5273;1814;2916;3523;6174;3181;590;1030;750;826;1155;623;315;3474;260;326;1045;1597;621;649;568;2509;1676;168;286;593;1089;1342
-96;'344;China, Hong Kong SAR;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;2461;217;1100;600;0;0;118;0;39;12;206;583;646;487;206;230;57;25;31;32;369;192;9;360;35;117;12;28;30;36;30
-96;'344;China, Hong Kong SAR;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;761;102;614;176;0;0;73;0;38;18;131;403;457;336;165;179;37;29;38;43;354;152;11;268;41;126;14;34;36;39;33
-96;'344;China, Hong Kong SAR;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;0;0;0;0;0;48;0;72;19;218;850;1165;2234;177;229;114;41;41;2;392;192;21;6;0;51;96;5;124;165;12
-96;'344;China, Hong Kong SAR;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;0;0;0;0;0;34;0;50;12;139;618;715;1028;140;178;65;38;38;3;234;152;17;6;0;53;63;4;103;140;18
-96;'344;China, Hong Kong SAR;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;100;600;1400;700;300;300;300;300;2800;7400;6200;8500;21900;10200;13500;21100;25269;37143;18490;6600;10000;6400;13300;6574;3640;3046;1905;1171;1231;783;742;1229;1395;1612;458;229;357;404;27;27;27;547;5831;133;501;4470;5750;2866
-96;'344;China, Hong Kong SAR;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;79;280;569;350;192;192;192;192;1622;3389;2794;5033;15000;8752;10154;12986;14233;12399;9018;5657;6763;3600;5585;3609;2583;2034;1076;685;820;504;450;818;1113;1180;541;525;841;352;99;99;99;493;3888;105;425;3038;4646;2350
-96;'344;China, Hong Kong SAR;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;200;2800;2000;4000;17500;5700;8300;15400;3082;5643;2000;3400;6000;2600;3100;4786;9681;4849;840;360;158;110;53;405;104;6330;233;101;598;2081;253;792;675;3850;2184;133;502;495;1446;1647
-96;'344;China, Hong Kong SAR;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;69;1201;762;2281;12178;4727;6171;9298;1519;2348;987;2176;5273;1814;1916;2478;4713;2338;495;237;125;83;127;474;137;3378;205;271;1038;1359;465;628;562;2507;1623;105;282;490;949;1324
-96;'344;China, Hong Kong SAR;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;3;22;20;61;123;20
-96;'344;China, Hong Kong SAR;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;6;17;14;44;97;16
-96;'344;China, Hong Kong SAR;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;186;253;800;0;0;0;0;0;0;0;31;25;46;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;52;84;320;0;0;0;0;0;0;0;19;13;30;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-96;'344;China, Hong Kong SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;400;300;2300;2100;3900;2000;1200;500;666;281;1704;4500;1200;800;2700;1597;1439;936;190;459;54;108;1;1996;1;2;7;2;3;5;2;4;8;;;;;;;
-96;'344;China, Hong Kong SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;268;195;1008;1196;2977;1698;1092;309;319;212;981;2735;1243;854;1252;933;1039;658;139;276;45;74;1;331;2;6;18;5;11;11;6;8;11;;;;;;;
-96;'344;China, Hong Kong SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;300;200;800;2000;3400;1700;800;0;271;237;0;0;0;0;2300;1765;1961;1147;93;1111;6;28;0;25;0;22;6;6;1;1;1;1;0;;;;;;;
-96;'344;China, Hong Kong SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;200;151;457;1404;2769;1446;704;0;206;129;0;0;0;0;1000;1011;1461;793;83;654;7;28;0;9;0;31;17;17;4;4;4;4;0;;;;;;;
-96;'344;China, Hong Kong SAR;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-96;'344;China, Hong Kong SAR;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;704;3072;12300;0;0;0;0;0;0;0;1172;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;444;1778;8972;0;0;0;0;0;0;0;590;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16668;7205;21;25200;0;0;0;3788;700;78;7;782;15;0;15;96;165;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10917;4497;15;13007;0;0;0;11;941;15;6;424;6;0;6;27;55;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604;2651;2407;5000;0;0;0;1101;7263;3179;1585;2019;75;270;15;0;144;27;73;24;20;7;7;7;77;0;1;153;49;49;11;9
-96;'344;China, Hong Kong SAR;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1262;675;691;2447;0;0;0;405;3143;1057;1033;1280;412;340;170;0;324;72;562;206;179;67;67;67;122;0;4;197;238;238;12;15
-96;'344;China, Hong Kong SAR;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;116;100;100;0;0;0;1050;1278;19;32;15;34;58;27;1;55;4;18;22;21;21;21;0;22;0;0;42;6;6;81;64
-96;'344;China, Hong Kong SAR;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;89;171;80;0;0;0;407;634;15;22;22;50;33;196;7;98;9;153;186;183;183;47;0;70;0;0;75;12;12;181;66
-96;'344;China, Hong Kong SAR;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;323;193;303;287;209;256;149;143;472;266;57;30;133;111
-96;'344;China, Hong Kong SAR;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;79;54;150;166;95;116;50;49;56;30;43;30;71;74
-96;'344;China, Hong Kong SAR;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;354;12718.5;58375;44232
-96;'344;China, Hong Kong SAR;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;32;5398.49;23145;13153
-96;'344;China, Hong Kong SAR;1669;Recovered paper;5510;Production;t;;;;;;;;;;114000;114000;171000;218000;187000;167000;230000;264000;294000;375000;402000;386000;357000;440000;456000;384000;503000;582000;599000;595000;550000;735000;677000;620000;692000;700000;750000;710000;684000;679000;826000;800000;763000;782000;883000;908000;1003000;1102000;1091000;1027000;1195000;1278400;1162300;1034600;947900;896300;805700;792500;694600;532500;442100;603000;583500;625000
-96;'344;China, Hong Kong SAR;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2656;1428;1427;2048;2239;3345;3010;643;1000;6100;6600;15300;3800;9400;14400;18100;35000;92200;87932;59786;79816;118500;112000;96900;148000;39377;49216;72401;63803;80355;104835;134439;84473;57813;52112;122888;185980;215077;103312;18399;25399;10399;6718;23894;102484;33550;18579;0;0;0
-96;'344;China, Hong Kong SAR;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;106;99;106;118;149;277;188;69;114;555;862;1430;435;1486;1990;3416;8716;13922;11773;6981;11844;20707;18378;12989;16203;3588;8077;7528;7407;10413;14349;17376;11840;8462;8245;10016;21028;34084;16126;3045;4221;1787;1276;3752;15835;3844;2763;0;0;0
-96;'344;China, Hong Kong SAR;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;114000;114000;171000;218000;187100;166700;229700;264000;294300;374900;401600;385700;357200;445500;456000;384300;503000;503000;613200;605000;554000;607000;497899;382718;441538;489700;425000;440000;188000;536884;848895;843255;594052;635549;740048;806155;951352;1113499;1100800;1033580;1200394;1287155;1172176;1034777;950962;900603;816386;794240;717770;537248;448623;614815;579700;625909
-96;'344;China, Hong Kong SAR;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;3350;3177;5774;9843;16064;7696;12689;16704;18376;26248;31782;21760;21244;28841;34376;23241;33169;33169;62467;59248;52969;61081;48279;32116;42528;68604;44477;40117;34420;43707;77294;63564;56307;71404;89848;107350;120547;165761;201206;136564;232882;297624;248628;204043;175270;161262;149051;171582;170202;91838;82510;149212;151575;133215
-96;'344;China, Hong Kong SAR;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;8000;8000;11000;14000;17000;17000;17000;17000;32000;36000;40000;40000;40000;40000;40000;82000;117000;122000;195000;250000;280000;280000;180000;180000;180000;190000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000
-96;'344;China, Hong Kong SAR;1876;Paper and paperboard;5610;Import quantity;t;106800;127400;138500;167300;163800;203000;208700;272100;288600;313200;355600;368500;398600;317700;307100;446700;429000;549100;563100;585600;591100;608700;629200;751500;727600;814200;1132300;1217300;1417100;1669900;1953400;2300963;2741696;2969251;2906300;3529700;4055500;4099391;3340221;2781500;2107789;2012006;1758938;1644033;1413424;1255017;1162861;1002840;836829;869225;827903;811442;723369;674654;592245;527692;513156;472683;414084;349648;348651.25;276105;217846
-96;'344;China, Hong Kong SAR;1876;Paper and paperboard;5622;Import value;1000 USD;19294;21963;23455;28238;27202;33302;35385;44620;49994;63291;70871;77805;112934;151035;118643;163375;168630;234742;280254;359130;358577;346302;299264;382324;365649;496001;657193;833833;1080048;1259500;1448289;1566316;1515810;1995528;2462118;2388415;2517469;2313050;1907315;2008163;1469232;1201920;1091982;1147751;1066816;979616;982248;968949;717349;816844;826741;766828;678687;625960;528376;461921;464273;471231;387921;290584;319006.1;268777;201036
-96;'344;China, Hong Kong SAR;1876;Paper and paperboard;5910;Export quantity;t;7600;9400;8900;10100;5400;13000;18900;18700;19900;19000;22400;13600;30200;17700;17500;24600;10900;4900;5300;44500;44500;32700;33100;34300;70800;68000;164300;254600;351400;583300;1017100;1251783;1473082;1456400;1535000;2199900;2676200;2999479;2343229;2157626;1542150;1214047;1122373;948411;750419;547189;422286;316930;245627;273104;229252;188082;176872;149467;126770;104078;140155;132581;122288;156456;137969.34;38533;24184
-96;'344;China, Hong Kong SAR;1876;Paper and paperboard;5922;Export value;1000 USD;1927;2366;2126;2079;1319;3049;4784;3822;4440;4552;5874;4073;13011;11926;10600;12376;5318;2142;2420;34753;34753;31793;25905;31091;58059;57350;113301;198685;268541;411106;596137;714252;755902;805306;1016607;1213043;1346428;1540154;1219644;1293797;964342;701957;1373949;630544;531258;421289;406845;348634;274054;319217;301974;264463;236380;243680;202498;171965;195674;183305;163909;153488;153816.37;71255;50063
-96;'344;China, Hong Kong SAR;2042;Graphic papers;5610;Import quantity;t;42300;51500;61100;59500;59300;70600;73100;91100;89500;101900;112600;110200;141500;121600;105800;145000;139500;189500;197700;207400;225600;235800;165300;207000;211600;243500;291800;294800;485300;583900;627100;750483;765296;942251;922700;1022300;1225900;1134100;1225842;1194917;1046286;1059407;992769;1038307;966985;890512;855717;778098;645740;685439;677515;673433;607029;564268;500318;436609;408355;384650;298535;201429;202995.14;171755;149421
-96;'344;China, Hong Kong SAR;2042;Graphic papers;5622;Import value;1000 USD;8335;9564;10840;11277;11764;13432;14849;17506;18370;23483;26522;28021;44830;66014;50037;65386;67224;97506;118471;149586;165503;166880;84894;111089;114635;131043;184263;233073;462811;528811;572529;628815;626537;773537;1025601;964828;992828;839176;835121;991776;782019;688095;650598;734223;730581;683457;671689;691083;500228;571605;603231;577448;503766;464649;395203;331148;313728;336377;258017;170825;185887.01;171183;143370
-96;'344;China, Hong Kong SAR;2042;Graphic papers;5910;Export quantity;t;900;1100;2900;1500;900;5600;9700;6600;6700;7500;7500;4300;11900;5400;5700;11600;9000;3100;3300;19200;19200;11700;6900;4100;3900;1100;8100;15500;30300;47200;82200;8983;8182;155700;201600;230600;255600;322500;333868;403424;366660;340189;315366;339135;317432;261540;251102;205066;160914;155612;145907;127041;87975;97629;78519;62198;76152;83950;54932;40822;46690.87;23332;18103
-96;'344;China, Hong Kong SAR;2042;Graphic papers;5922;Export value;1000 USD;255;270;575;311;235;1183;2371;1385;1526;1652;1808;1220;4958;4133;3428;4942;4305;1063;1187;11932;11932;8891;2723;2084;1882;1173;5068;11889;44121;49493;84100;5831;5982;140434;204035;218047;243598;278722;265660;328380;291088;261725;248433;275432;258434;220878;214629;187133;145451;150186;148532;140568;92216;108197;87534;72958;83480;88930;65378;50442;57783.59;34141;26073
-96;'344;China, Hong Kong SAR;1671;Newsprint;5610;Import quantity;t;23600;27300;31700;33800;34300;36800;33700;51700;44800;48200;55700;50600;61000;56600;54700;69200;62400;79000;80000;90000;92000;93800;94900;112200;116200;136800;170500;157100;172800;203400;174200;223825;214670;257600;233400;270200;424000;394800;406243;339503;339503;324070;330851;372069;348587;354546;320197;334338;255905;287001;298410;298110;257229;232317;194808;185383;159893;148605;100349;50804;50856.96;46905;34544
-96;'344;China, Hong Kong SAR;1671;Newsprint;5622;Import value;1000 USD;3442;3974;4445;4874;4973;5033;4881;7207;6396;7497;9537;8931;12003;20665;20169;24250;22613;28519;32000;44460;49864;47726;40486;47066;49588;56899;87067;103795;103795;115567;103715;106000;103821;123619;171790;203145;209993;206040;188320;216242;208352;130619;136886;184615;199423;208913;184115;236628;145159;165883;204955;194290;156817;135021;97771;89232;78854;93878;59002;22247;26866.08;33939;23072
-96;'344;China, Hong Kong SAR;1671;Newsprint;5910;Export quantity;t;100;200;1500;700;100;1800;700;3500;2100;3200;2100;1000;3000;1500;1400;5600;3000;3000;3000;14200;14200;6700;5800;2300;2300;;3600;7200;5800;5600;6800;4788;2005;8600;14900;15600;16200;33500;14366;12360;6096;5346;6020;4318;5279;4720;4797;5374;4058;2836;1912;3126;2194;2039;1421;2219;3622;1114;1166;353;749;854;408
-96;'344;China, Hong Kong SAR;1671;Newsprint;5922;Export value;1000 USD;20;25;211;94;20;254;122;574;323;505;360;150;716;674;492;1656;1019;1019;1019;5522;5522;2796;1936;776;776;;1681;4904;3396;3079;3871;1816;829;4578;10708;9639;9650;16632;7419;6583;3684;3365;3675;2725;3815;2947;2803;3677;2757;1830;1256;2287;1406;1321;928;1598;3412;693;748;243;421;662;230
-96;'344;China, Hong Kong SAR;1674;Printing and writing papers;5610;Import quantity;t;18700;24200;29400;25700;25000;33800;39400;39400;44700;53700;56900;59600;80500;65000;51100;75800;77100;110500;117700;117400;133600;142000;70400;94800;95400;106700;121300;137700;312500;380500;452900;526658;550626;684651;689300;752100;801900;739300;819599;855414;706783;735337;661918;666238;618398;535966;535520;443760;389835;398438;379105;375323;349800;331951;305510;251226;248462;236045;198186;150625;152138.17;124850;114877
-96;'344;China, Hong Kong SAR;1674;Printing and writing papers;5622;Import value;1000 USD;4893;5590;6395;6403;6791;8399;9968;10299;11974;15986;16985;19090;32827;45349;29868;41136;44611;68987;86471;105126;115639;119154;44408;64023;65047;74144;97196;129278;359016;413244;468814;522815;522716;649918;853811;761683;782835;633136;646801;775534;573667;557476;513712;549608;531158;474544;487574;454455;355069;405722;398276;383158;346949;329628;297432;241916;234874;242499;199015;148578;159020.93;137244;120298
-96;'344;China, Hong Kong SAR;1674;Printing and writing papers;5910;Export quantity;t;800;900;1400;800;800;3800;9000;3100;4600;4300;5400;3300;8900;3900;4300;6000;6000;100;300;5000;5000;5000;1100;1800;1600;1100;4500;8300;24500;41600;75400;4195;6177;147100;186700;215000;239400;289000;319502;391064;360564;334843;309346;334817;312153;256820;246305;199692;156856;152776;143995;123915;85781;95590;77098;59979;72530;82836;53766;40469;45941.87;22478;17695
-96;'344;China, Hong Kong SAR;1674;Printing and writing papers;5922;Export value;1000 USD;235;245;364;217;215;929;2249;811;1203;1147;1448;1070;4242;3459;2936;3286;3286;44;168;6410;6410;6095;787;1308;1106;1173;3387;6985;40725;46414;80229;4015;5153;135856;193327;208408;233948;262090;258241;321797;287404;258360;244758;272707;254619;217931;211826;183456;142694;148356;147276;138281;90810;106876;86606;71360;80068;88237;64630;50199;57362.59;33479;25843
-96;'344;China, Hong Kong SAR;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;676;863;657;2177;2291;2474;762;517;4614;4700;7171;1809;987;1283;1290;596;951;517;7;33;10;206;38;19
-96;'344;China, Hong Kong SAR;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;645;882;646;1682;1284;1513;514;340;3676;2600;4002;1277;900;1371;1484;609;998;557;17;67;16;182;35;32
-96;'344;China, Hong Kong SAR;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1522;1823;1374;4302;3025;2685;2293;1227;2331;2407;936;1224;1642;2195;2842;2101;1808;1065;1131;268;188;88;110;86;45
-96;'344;China, Hong Kong SAR;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1586;1766;1328;3026;1996;1582;1636;828;1496;1899;892;1401;1973;2681;2287;2728;2674;1905;1565;667;441;223;248;189;235
-96;'344;China, Hong Kong SAR;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295180;299767;255793;269584;212505;223640;193875;187830;224170;170678;163933;165613;162343;171424;178462;177253;164905;151044;145904;128965;117870;92920;89513.7;76904;78328
-96;'344;China, Hong Kong SAR;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222336;262725;203587;208333;180715;197535;181159;183414;222751;195077;166957;189604;191641;200875;195770;193715;178839;160590;149571;145041;127063;97057;94444.17;87077;86239
-96;'344;China, Hong Kong SAR;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102973;118280;124797;118655;109666;119514;100969;92132;90598;71016;57494;67448;65678;58586;38344;54809;41812;29777;32755;26442;22155;15665;16598.13;9290;10975
-96;'344;China, Hong Kong SAR;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77088;91134;91018;85579;81742;92902;82994;81957;81372;67061;53266;66775;68550;67661;41462;62487;48044;38570;40232;33021;29477;21828;22951;15145;16003
-96;'344;China, Hong Kong SAR;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;739300;523764;554971;450127;465096;447236;440307;422049;347374;310833;268468;221202;225654;214953;202912;170055;153408;140009;99231;102041;107073;80283;57695;62418.47;47908;36530
-96;'344;China, Hong Kong SAR;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633136;423878;512164;369198;348497;331315;350789;348486;290616;264483;255702;185512;212116;205358;181383;149808;134429;117984;80328;84746;97441;71885;51505;64394.76;50132;34027
-96;'344;China, Hong Kong SAR;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289000;215007;270961;234393;211886;196655;212618;208891;163461;153376;126269;98426;84104;76675;63134;44595;38680;33478;29137;38644;56126;31423;24716;29233.75;13102;6675
-96;'344;China, Hong Kong SAR;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262090;179567;228897;195058;169755;161020;178223;169989;135146;128958;114496;88536;80180;76753;67939;47061;41661;35888;30885;38271;54549;34712;28148;34163.6;18145;9605
-96;'344;China, Hong Kong SAR;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;8000;8000;11000;14000;17000;17000;17000;17000;32000;36000;40000;40000;40000;40000;40000;82000;117000;122000;195000;250000;280000;280000;180000;180000;180000;190000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000
-96;'344;China, Hong Kong SAR;1675;Other paper and paperboard;5610;Import quantity;t;64500;75900;77400;107800;104500;132400;135600;181000;199100;211300;243000;258300;257100;196100;201300;301700;289500;359600;365400;378200;365500;372900;463900;544500;516000;570700;840500;922500;931800;1086000;1326300;1550480;1976400;2027000;1983600;2507400;2829600;2965291;2114379;1586583;1061503;952599;766169;605726;446439;364505;307144;224742;191089;183786;150388;138009;116340;110386;91927;91083;104801;88033;115549;148219;145656.12;104350;68425
-96;'344;China, Hong Kong SAR;1675;Other paper and paperboard;5622;Import value;1000 USD;10959;12399;12615;16961;15438;19870;20536;27114;31624;39808;44349;49784;68104;85021;68606;97989;101406;137236;161783;209544;193074;179422;214370;271235;251014;364958;472930;600760;617237;730689;875760;937501;889273;1221991;1436517;1423587;1524641;1473874;1072194;1016387;687213;513825;441384;413528;336235;296159;310559;277866;217121;245239;223510;189380;174921;161311;133173;130773;150545;134854;129904;119759;133119.09;97594;57666
-96;'344;China, Hong Kong SAR;1675;Other paper and paperboard;5910;Export quantity;t;6700;8300;6000;8600;4500;7400;9200;12100;13200;11500;14900;9300;18300;12300;11800;13000;1900;1800;2000;25300;25300;21000;26200;30200;66900;66900;156200;239100;321100;536100;934900;1242800;1464900;1300700;1333400;1969300;2420600;2676979;2009361;1754202;1175490;873858;807007;609276;432987;285649;171184;111864;84713;117492;83345;61041;88897;51838;48251;41880;64003;48631;67356;115634;91278.46;15201;6081
-96;'344;China, Hong Kong SAR;1675;Other paper and paperboard;5922;Export value;1000 USD;1672;2096;1551;1768;1084;1866;2413;2437;2914;2900;4066;2853;8053;7793;7172;7434;1013;1079;1233;22821;22821;22902;23182;29007;56177;56177;108233;186796;224420;361613;512037;708421;749920;664872;812572;994996;1102830;1261432;953984;965417;673254;440232;1125516;355112;272824;200411;192216;161501;128603;169031;153442;123895;144164;135483;114964;99007;112194;94375;98531;103046;96032.78;37114;23990
-96;'344;China, Hong Kong SAR;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1676;Household and sanitary papers;5610;Import quantity;t;600;800;800;1100;1000;1300;1400;1200;800;1000;2000;2300;2600;2600;2600;2600;2600;26900;81100;5600;6000;6400;5800;5700;7600;10400;11600;13900;13500;14300;14100;16200;17500;22000;27600;20900;21000;22300;15966;15710;17300;18773;17249;19259;16135;13249;10214;7592;12760;11007;2918;3254;6432;6845;5500;3459;6014;7076;6081;6056;5418.68;5101;3269
-96;'344;China, Hong Kong SAR;1676;Household and sanitary papers;5622;Import value;1000 USD;329;372;378;509;463;596;616;900;607;688;1357;1854;2804;2804;2804;2804;5200;14477;30740;6089;6271;6427;5917;5861;7653;10671;12963;17281;18096;19332;18995;20707;21392;24955;32843;33129;27399;26423;18277;16964;17766;18144;17258;20424;16266;13837;11272;8572;14596;15037;3922;4460;8111;7968;5629;3821;6675;8368;7170;7332;7699.3;8492;5464
-96;'344;China, Hong Kong SAR;1676;Household and sanitary papers;5910;Export quantity;t;400;500;400;500;300;400;600;700;600;800;500;400;1000;1000;1000;1000;1000;1000;1000;100;100;300;400;800;1500;1500;2700;3000;2300;2600;3300;3500;3400;5400;9000;10800;9600;11700;10091;10681;12312;12352;11977;14010;9681;9404;5900;2202;2426;2420;1164;786;649;952;578;163;105;70;64;32;39;95;97
-96;'344;China, Hong Kong SAR;1676;Household and sanitary papers;5922;Export value;1000 USD;268;335;248;283;173;299;386;390;380;442;270;485;690;690;690;690;690;690;690;153;153;361;460;793;1459;1459;3041;4074;2615;3339;4185;4125;3977;5741;13706;14761;11051;13247;11570;12285;12940;11580;11710;12760;8981;8779;6149;3726;2509;3465;1360;930;1040;1039;577;224;172;132;161;82;120;272;215
-96;'344;China, Hong Kong SAR;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;180000;190000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000
-96;'344;China, Hong Kong SAR;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2068991;1845004;1362417;867662;910893;728592;564373;413990;337163;284150;207131;172724;166630;142131;129418;104793;98568;82251;82121;94091;76602;104736;135751;135955.14;97479;63868
-96;'344;China, Hong Kong SAR;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880549;810579;741736;455533;458391;388586;353965;289515;255801;272996;248000;186633;213804;204776;169553;150990;136114;112562;110008;130106;112153;108119;99521;114678.61;80783;46616
-96;'344;China, Hong Kong SAR;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2025279;1670548;1379030;855523;832475;768463;571489;407066;263144;158511;106384;79239;112931;80241;58478;84973;47936;45269;38847;61836;46486;65398;113679;90991.46;14681;5625
-96;'344;China, Hong Kong SAR;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;830728;693273;669719;409474;397818;1085116;315758;242495;173250;174661;152065;119770;161734;147686;117789;135464;126586;109465;90769;104656;86343;91915;94896;93134.78;34198;21158
-96;'344;China, Hong Kong SAR;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;8000;8000;11000;13000;15000;15000;15000;15000;31000;35000;38000;38000;38000;38000;38000;80000;115000;120000;193000;250000;280000;280000;180000;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;16800;19700;20100;28000;27200;34400;35200;47000;58000;60700;71800;82200;79100;68700;60500;105200;269000;305300;232100;215100;167100;175600;319700;357400;329400;206100;539700;546700;561800;668500;803300;1146380;1545500;1348000;1168000;1630500;1680300;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2849;3224;3280;4410;4014;5166;5339;7000;9463;11035;13639;17225;24304;33289;24775;41886;80126;96586;88773;104494;65145;66265;102104;128730;102894;83471;219710;246562;264601;300774;354304;556614;609721;666441;765756;745810;637663;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;500;600;400;600;300;500;600;900;2700;1600;5000;2300;5600;6000;5500;6900;800;700;900;16700;16700;9300;16200;18100;38600;38600;122700;159700;226300;373400;681900;943700;1108600;1086600;933300;1441000;1658000;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;134;168;124;141;87;149;193;200;640;392;1538;829;2510;4153;3532;4107;251;250;378;10879;10879;6274;7340;9018;15613;15613;57884;82648;111081;175805;257370;447775;470496;490000;527212;607264;583779;;;;;;;;;;;;;;;;;;;;;;;;;;
-96;'344;China, Hong Kong SAR;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;180000;190000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000
-96;'344;China, Hong Kong SAR;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200662;920687;636492;365332;266301;207893;132180;63583;42794;26070;17227;12686;13973;12494;9080;8373;10256;7212;8123;12083;6330;4103;3544;3925;2454;1979
-96;'344;China, Hong Kong SAR;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401483;291653;249099;119631;81409;66340;47524;25462;17390;15712;16386;16099;18211;19087;14538;12170;13999;12994;13440;20549;12217;8724;8360;9002;3115;2404
-96;'344;China, Hong Kong SAR;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204666;972212;747693;442965;302867;271536;191751;112304;53913;22855;9052;7098;12036;10688;2410;3077;5544;4283;3095;16539;2634;22812;85016;65836.29;1003;770
-96;'344;China, Hong Kong SAR;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402255;313274;280457;141479;85925;73882;53982;32942;16227;12629;10553;12558;20024;21140;11263;11360;22358;17077;15152;18214;8596;15004;35501;36941.85;2700;2049
-96;'344;China, Hong Kong SAR;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800843;869997;650372;439708;458079;363841;282443;222605;192103;194199;137621;115167;113691;94387;89879;73249;68292;56753;58279;64967;52499;77192;119507;114743.3;76607;52136
-96;'344;China, Hong Kong SAR;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420440;461017;409943;261580;243757;202476;178131;149003;140881;206198;169254;123507;144610;136509;113046;104320;90355;75650;71090;78229;68760;69509;68240;75995.45;51792;26025
-96;'344;China, Hong Kong SAR;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704552;590922;497595;335244;359412;362731;262789;200312;149801;90215;64389;48952;52352;39427;39378;58113;28714;27207;25974;34664;26088;23492;19361;13850.66;5341;2986
-96;'344;China, Hong Kong SAR;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360693;310680;293848;200867;193934;199244;156466;122718;93184;116911;92255;73198;88409;81305;68716;85609;69637;60934;49958;57322;42765;36295;35079;26427.26;12250;7900
-96;'344;China, Hong Kong SAR;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-96;'344;China, Hong Kong SAR;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67418;54320;75553;62622;103111;100616;102937;92728;75867;37617;39064;36879;32149;28869;26423;19224;16265;15486;12580;14554;15954;22079;10970;13823;18040;9227
-96;'344;China, Hong Kong SAR;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58603;57909;82694;74322;100665;96237;107326;97426;83995;37155;53651;42355;46281;44019;38211;30957;27900;21125;22564;25418;27556;27694;20556;25562;25295;17470
-96;'344;China, Hong Kong SAR;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116045;106196;128164;73880;112410;91501;82516;65976;38298;23976;22022;15918;41850;24330;13241;18121;11019;11271;7687;8713;15722;18302;7112;6339;7999;1758
-96;'344;China, Hong Kong SAR;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67757;68669;92348;65273;86671;787104;84220;71987;52793;33430;42043;29835;49211;40983;34294;34118;30938;27260;22774;26377;32076;39293;21646;24128;18762;10968
-96;'344;China, Hong Kong SAR;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;83402;56242;46813;35074;26399;26264;13219;7992;6817;6381;4036;3947;3755;2800;3139;2487;1819;1362;1730;3463.83;378;526
-96;'344;China, Hong Kong SAR;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;32560;23533;20984;17624;13535;13931;8709;4672;4702;5161;3758;3543;3860;2793;2914;5910;3620;2192;2365;4119.15;581;717
-96;'344;China, Hong Kong SAR;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;1218;5578;3434;57786;42695;34433;28474;21132;21465;10921;7271;6693;5796;3449;5662;2659;2508;2091;1920;2042;792;2190;4965.51;338;111
-96;'344;China, Hong Kong SAR;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;650;3066;1855;31288;24886;21090;14848;11046;11691;7214;4179;4090;4258;3516;4377;3653;4194;2885;2743;2906;1323;2670;5637.67;486;241
-96;'344;China, Hong Kong SAR;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;47100;55400;56500;78700;76300;96700;99000;132800;140300;149600;169200;173800;175400;124800;138200;193900;17900;27400;52200;157500;192400;190900;138400;181400;179000;354200;289200;361900;356500;403200;508900;387900;413400;657000;788000;856000;1128300;874000;253409;208456;176541;22933;20328;22094;16314;14093;12780;10019;5605;6149;5339;5337;5115;4973;4176;5503;4696;4355;4732;6412;4282.3;1770;1288
-96;'344;China, Hong Kong SAR;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;7781;8803;8957;12042;10961;14108;14581;19214;21554;28085;29353;30705;40996;48928;41027;53299;16080;26173;42270;98961;121658;106730;106349;136644;140467;270816;240257;336917;334540;410583;502461;360180;258160;530595;637918;644648;859579;566902;243338;257687;213914;37290;35540;39139;30454;26521;26291;21294;15892;16398;14812;15367;15820;17229;14982;16944;13764;14333;14615;12906;10741.19;8319;5586
-96;'344;China, Hong Kong SAR;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;5800;7200;5200;7500;3900;6500;8000;10500;9900;9100;9400;6600;11700;5300;5300;5100;100;100;100;8500;8500;11400;9600;11300;26800;26800;30800;76400;92500;160100;249700;295600;352900;208700;391100;517500;753000;640000;328722;364491;307655;29031;26567;23777;16240;13101;6773;3278;3048;2141;1940;1777;3275;2950;2404;2870;2062;2075;1894;1923;248;425;359
-96;'344;China, Hong Kong SAR;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;1270;1593;1179;1344;824;1418;1834;1847;1894;2066;2258;1539;4853;2950;2950;2637;72;139;165;11789;11789;16267;15382;19196;39105;39105;47308;100074;110724;182469;250482;256521;275447;169131;271654;372971;508000;417457;249141;283413;250840;30834;28690;26594;21348;18382;11406;5710;6324;3832;4396;5176;7660;7858;4922;8014;7366;7900;6455;8068;2778;2644;2617
-96;'344;China, Hong Kong SAR;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741275;778639;749598;646381;748258;706100;668998
-96;'344;China, Hong Kong SAR;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228069;227978;224533;155932;179692;125835;135747
-96;'344;China, Hong Kong SAR;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13750;12207;11806;8825;8466;6896;8226
-96;'344;China, Hong Kong SAR;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;1590;868;642;495;575;382
-96;'344;China, Hong Kong SAR;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;658;822;92;268;243;118
-96;'344;China, Hong Kong SAR;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;6;21;21;0;0;0
-96;'344;China, Hong Kong SAR;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13657;11549;10984;8733;8198;6653;8108
-96;'344;China, Hong Kong SAR;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2093;1584;847;621;495;575;382
-96;'344;China, Hong Kong SAR;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13699;14904;15749;13177;16317;13538;14437
-96;'344;China, Hong Kong SAR;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9631;9669;7630;5612;7252;7012;5772
-96;'344;China, Hong Kong SAR;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43544;42322;40024;24934;32315;27135;36983
-96;'344;China, Hong Kong SAR;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59463;53426;55842;30687;37344;33342;35455
-96;'344;China, Hong Kong SAR;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138836;150427;156160;139015;180470;125752;122968
-96;'344;China, Hong Kong SAR;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51602;43474;54387;42330;61965;27742;26609
-96;'344;China, Hong Kong SAR;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11
-96;'344;China, Hong Kong SAR;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13
-96;'344;China, Hong Kong SAR;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;20
-96;'344;China, Hong Kong SAR;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;29
-96;'344;China, Hong Kong SAR;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484533;506474;468898;426914;468595;493806;438442
-96;'344;China, Hong Kong SAR;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78741;87345;76905;62179;53791;43583;47706
-96;'344;China, Hong Kong SAR;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9564;10306;10639;2369;1970;1795;3220
-96;'344;China, Hong Kong SAR;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241;1147;889;224;386;284;779
-96;'344;China, Hong Kong SAR;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37349;41999;46322;31147;40125;37178;44722
-96;'344;China, Hong Kong SAR;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24257;31327;28012;14258;18459;13297;19044
-96;'344;China, Hong Kong SAR;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405172;1366667;1258983;1056619;1202274;1116950;1026395
-96;'344;China, Hong Kong SAR;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201905;1140002;1039508;772052;905951;701423;554979
-96;'344;China, Hong Kong SAR;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3978;4195;3136;1937;2904;2152;1035
-96;'344;China, Hong Kong SAR;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3490;2298;2679;1309;1701;1157;601
-96;'344;China, Hong Kong SAR;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96465;104416;88920;72612;75455;63874;51367
-96;'344;China, Hong Kong SAR;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78173;74421;66935;42820;48498;39044;31237
-96;'344;China, Hong Kong SAR;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254172;259778;258892;277627;271783;289081;284268
-96;'344;China, Hong Kong SAR;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14079;13254;13613;19655;13238;12161;10988
-96;'344;China, Hong Kong SAR;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393548;399952;378385;316836;379998;320823;292681
-96;'344;China, Hong Kong SAR;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298997;298027;243764;191613;249401;153342;132487
-96;'344;China, Hong Kong SAR;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657009;598326;529650;387607;472134;441020;397044
-96;'344;China, Hong Kong SAR;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807166;752002;712517;516655;593113;495719;379666
-128;'446;China, Macao SAR;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129637;138403;137209;91767;123617.77;108127;117265
-128;'446;China, Macao SAR;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3353;3252;2916;2514;3108;3502;3056
-128;'446;China, Macao SAR;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3230;4407;3389;3718;2385;2533;1748;2070;1719;1864;2376;2033;2448;1983;2540;2699;2887;4099;7232;13001;13001;12852;12852;8394;7800;7984;10806;11162;11075;15268;17476;19515;17132;20487;21785;12647;15394;10958;9716;9215;8724;8817;10192;12368;17577;20705;20419;17957;15389;15421;16319.2;22938;26610;35156;68459;33622;32271;31084;24528;14796;17199.77;15854;14723
-128;'446;China, Macao SAR;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;800;200;200;200;13;13;39;177;226;104;105;220;189;169;160;135;101;37;133;57;57;353;273;772;659;858;1225;2547;1415;2852;4542;3810;3466;4185;4156;1784;1749;1807;2059;2567;2246;2093;1437;1961;2266;1650;1623;2042;1881.3;1466;1425;1713;1706;1539;1302;862;863;1164;2239;818;1295;982;1013
-128;'446;China, Macao SAR;1861;Roundwood;5516;Production;m3;311869;256985;202553;170264;135456;98877;81649;56936;52727;37009;13791;12405;28811;23181;15964;13184;501;2749;3033;3023;2997;3207;3287;6822;6967;7265;7304;7463;7704;7965;8219;8017;8415;8601;8785;8918;9422;9035;8953;8995;8863;8734;8606;8481;8358;8225;8095;7966;7840;7716;7600;7485;8372;8261;8151;8038;7927;7817;7709;7603;7499;7396;7295
-128;'446;China, Macao SAR;1861;Roundwood;5616;Import quantity;m3;48500;52900;58200;54300;39900;43400;34400;41300;29800;29400;32000;33500;15500;13500;11000;9000;7000;32200;33300;24500;24500;24500;24500;24000;17600;21300;27800;23000;7614;25532;35729;29698;19714;14262;14262;17900;16398;5631;5318;5160;3283;4498;1262;2021;49;122;211;166;287;137;51;531;800;92;93;92;3;0;59;93;270;195;412
-128;'446;China, Macao SAR;1861;Roundwood;5622;Import value;1000 USD;1890;2194;2246;2209;1198;898;629;817;620;528;1147;682;290;320;330;315;287;1408;2180;2117;2117;2117;2117;1313;965;968;1618;1378;357;1092;2120;2167;1571;1237;1237;1254;1052;240;235;188;106;173;50;147;49;165;388;286;160;132;28.2;297;429;47;50;47;4;0;6;20;74;59;107
-128;'446;China, Macao SAR;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1713;9484;402;961;261;261;213;184;208;142;400;16;25;0;64;45;90;168;12;0;0;0;0;0;0;0;0;0;0;57;0;0;0;0
-128;'446;China, Macao SAR;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;984;29;83;27;27;31;32;43;22;43;3;3;0;18;12;35;34;2;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0
-128;'446;China, Macao SAR;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-128;'446;China, Macao SAR;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1863;Roundwood, non-coniferous;5516;Production;m3;311869;256985;202553;170264;135456;98877;81649;56936;52727;37009;13791;12405;28811;23181;15964;13184;501;2749;3033;3023;2997;3207;3287;6822;6967;7265;7304;7463;7704;7965;8219;8017;8415;8601;8785;8918;9422;9035;8953;8995;8863;8734;8606;8481;8358;8225;8095;7966;7840;7716;7600;7485;7372;7261;7151;7038;6927;6817;6709;6603;6499;6396;6295
-128;'446;China, Macao SAR;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;59;93;270;195;412
-128;'446;China, Macao SAR;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;6;20;74;59;107
-128;'446;China, Macao SAR;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;57;0;0;0;0
-128;'446;China, Macao SAR;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27;0;0;0;0
-128;'446;China, Macao SAR;1864;Wood fuel;5516;Production;m3;311869;256985;202553;170264;135456;98877;81649;56936;52727;37009;13791;12405;28811;23181;15964;13184;501;2749;3033;3023;2997;3207;3287;6822;6967;7265;7304;7463;7704;7965;8219;8017;8415;8601;8785;8918;9422;9035;8953;8995;8863;8734;8606;8481;8358;8225;8095;7966;7840;7716;7600;7485;7372;7261;7151;7038;6927;6817;6709;6603;6499;6396;6295
-128;'446;China, Macao SAR;1864;Wood fuel;5616;Import quantity;m3;24500;23900;32000;25600;28100;37700;32400;38300;26800;29400;32000;33500;15500;13500;11000;9000;7000;4200;3400;3400;3400;3400;3400;3400;200;100;100;100;100;100;100;250;62;62;62;200;4;12;2;4;0;20;56;37;3;6;29;43;46;0;0;92;92;92;92;92;;;59;93;270;195;412
-128;'446;China, Macao SAR;1864;Wood fuel;5622;Import value;1000 USD;490;494;682;528;545;593;543;677;480;528;1147;682;290;320;330;315;287;188;146;181;181;181;181;181;7;2;5;3;3;3;3;30;2;2;2;11;1;6;1;1;0;10;1;6;2;3;15;14;57;0;0;47;47;47;47;47;;;6;20;74;59;107
-128;'446;China, Macao SAR;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1628;Wood fuel, non-coniferous;5516;Production;m3;311869;256985;202553;170264;135456;98877;81649;56936;52727;37009;13791;12405;28811;23181;15964;13184;501;2749;3033;3023;2997;3207;3287;6822;6967;7265;7304;7463;7704;7965;8219;8017;8415;8601;8785;8918;9422;9035;8953;8995;8863;8734;8606;8481;8358;8225;8095;7966;7840;7716;7600;7485;7372;7261;7151;7038;6927;6817;6709;6603;6499;6396;6295
-128;'446;China, Macao SAR;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;93;270;195;412
-128;'446;China, Macao SAR;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;20;74;59;107
-128;'446;China, Macao SAR;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;24500;23900;32000;25600;28100;37700;32400;38300;26800;29400;32000;33500;15500;13500;11000;9000;7000;4200;3400;3400;3400;3400;3400;3400;200;100;100;100;100;100;100;250;62;62;62;200;4;12;2;4;0;20;56;37;3;6;29;43;46;0;0;92;92;92;92;92;;;;;;;
-128;'446;China, Macao SAR;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;490;494;682;528;545;593;543;677;480;528;1147;682;290;320;330;315;287;188;146;181;181;181;181;181;7;2;5;3;3;3;3;30;2;2;2;11;1;6;1;1;0;10;1;6;2;3;15;14;57;0;0;47;47;47;47;47;;;;;;;
-128;'446;China, Macao SAR;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-128;'446;China, Macao SAR;1865;Industrial roundwood;5616;Import quantity;m3;24000;29000;26200;28700;11800;5700;2000;3000;3000;;;;;;;;;28000;29900;21100;21100;21100;21100;20600;17400;21200;27700;22900;7514;25432;35629;29448;19652;14200;14200;17700;16394;5619;5316;5156;3283;4478;1206;1984;46;116;182;123;241;137;51;439;708;0;1;0;3;0;0;0;0;0;0
-128;'446;China, Macao SAR;1865;Industrial roundwood;5622;Import value;1000 USD;1400;1700;1564;1681;653;305;86;140;140;;;;;;;;;1220;2034;1936;1936;1936;1936;1132;958;966;1613;1375;354;1089;2117;2137;1569;1235;1235;1243;1051;234;234;187;106;163;49;141;47;162;373;272;103;132;28.2;250;382;0;3;0;4;0;0;0;0;0;0
-128;'446;China, Macao SAR;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1713;9484;402;913;213;213;213;184;208;142;400;16;25;0;64;45;90;168;12;0;0;0;0;0;0;0;0;0;0;57;0;0;0;0
-128;'446;China, Macao SAR;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;984;29;81;25;25;31;32;43;22;43;3;3;0;18;12;35;34;2;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0
-128;'446;China, Macao SAR;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-128;'446;China, Macao SAR;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21683;27295;24689;13800;8700;8700;14700;10851;4275;4450;4308;3214;4462;1143;1658;0;0;0;5;108;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831;1174;1202;476;314;314;455;392;125;164;125;93;160;41;60;0;0;0;2;64;0;0.2;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;4188;268;13;13;13;13;14;0;0;0;0;0;0;64;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;665;17;1;1;1;1;5;0;0;0;0;0;0;18;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21683;27295;24689;13800;8700;8700;14700;10851;4275;4450;4308;3214;4462;1143;1658;0;0;0;5;108;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831;1174;1202;476;314;314;455;392;125;164;125;93;160;41;60;0;0;0;2;64;0;0.2;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;4188;268;13;13;13;13;14;0;0;0;0;0;0;64;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;665;17;1;1;1;1;5;0;0;0;0;0;0;18;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3749;8334;4759;5852;5500;5500;3000;5543;1344;866;848;69;16;63;326;46;116;182;118;133;137;50;439;708;0;1;0;3;0;0;0;0;0;0
-128;'446;China, Macao SAR;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;943;935;1093;921;921;788;659;109;70;62;13;3;8;81;47;162;373;270;39;132;28;250;382;0;3;0;4;0;0;0;0;0;0
-128;'446;China, Macao SAR;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1704;5296;134;900;200;200;200;170;208;142;400;16;25;0;0;3;90;168;12;0;0;0;0;0;0;0;0;0;0;57;0;0;0;0
-128;'446;China, Macao SAR;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;319;12;80;24;24;30;27;43;22;43;3;3;0;0;1;35;34;2;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0
-128;'446;China, Macao SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736;4759;3759;4852;5000;5000;2500;4957;1344;866;567;69;16;63;326;0;60;19;6;4;137;0;3;0;0;1;0;3;0;0;0;0;0;0
-128;'446;China, Macao SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;336;328;388;456;456;323;326;109;70;42;13;3;8;81;0;31;10;11;1;132;0;7;0;0;3;0;4;0;0;0;0;0;0
-128;'446;China, Macao SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1704;5296;134;900;200;200;200;41;208;142;299;16;25;0;0;3;90;168;12;0;0;0;0;0;0;0;0;0;0;57;0;0;0;0
-128;'446;China, Macao SAR;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;319;12;80;24;24;30;7;43;22;36;3;3;0;0;1;35;34;2;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0
-128;'446;China, Macao SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;3575;1000;1000;500;500;500;586;0;0;281;0;0;0;0;46;56;163;112;129;0;50;436;708;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;607;607;705;465;465;465;333;0;0;20;0;0;0;0;47;131;363;259;38;0;28;243;382;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;101;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;28000;29900;21100;21100;21100;21100;20600;17400;21200;27700;22900;7514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;1220;2034;1936;1936;1936;1936;1132;958;966;1613;1375;354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;28000;29900;21100;21100;21100;21100;20600;17400;21200;27700;22900;7514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;1220;2034;1936;1936;1936;1936;1132;958;966;1613;1375;354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-128;'446;China, Macao SAR;1871;Other industrial roundwood;5616;Import quantity;m3;24000;29000;26200;28700;11800;5700;2000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1871;Other industrial roundwood;5622;Import value;1000 USD;1400;1700;1564;1681;653;305;86;140;140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-128;'446;China, Macao SAR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;24000;29000;26200;28700;11800;5700;2000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;1400;1700;1564;1681;653;305;86;140;140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1291;1271;1252;1233;1215;1197;1179;1160;1142;1124;1106;1089;1071;1055;1038
-128;'446;China, Macao SAR;1630;Wood charcoal;5610;Import quantity;t;5100;5000;4500;5200;4900;5200;4100;5000;3600;3100;3700;2200;2100;2000;1900;1800;1700;1600;2000;2500;2500;2500;2500;2300;2300;1700;1800;1700;1700;1600;2300;2364;2026;2100;2100;1000;1373;1250;921;1060;1031;956;1371;1565;1195;1186;1325;1470;2010;2010;2010;1034;1034;1034;1034;1034;1034;1034;1068;656;705;652;617
-128;'446;China, Macao SAR;1630;Wood charcoal;5622;Import value;1000 USD;240;238;219;251;214;217;178;206;157;142;127;99;90;86;82;77;77;67;158;254;254;254;254;305;334;291;317;270;270;237;271;293;288;348;348;317;274;200;147;184;167;160;231;381;325;318;402;617;500;500;500;547;547;547;547;547;547;547;574;415;445;453;403
-128;'446;China, Macao SAR;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;0;0;0;0;0;26;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1
-128;'446;China, Macao SAR;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2378;4215;3855;4438;4201;4103;4430;2704;2961;2654;2654;3569;3569;3569;3569;3569;3569;3569;2508;3208;1674.72;1788;1566
-128;'446;China, Macao SAR;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;88;187;339;442;376;296;428;313;288;275;275;370;370;370;370;370;370;370;159;381;410.7;305;300
-128;'446;China, Macao SAR;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;28;2;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1
-128;'446;China, Macao SAR;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5
-128;'446;China, Macao SAR;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;855;1226;683;0;219;156;50;0;0;0;0;0;0;0;0;0;1667;1437;1631.72;1400;70
-128;'446;China, Macao SAR;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;45;188;264;124;0;94;72;23;0;0;0;0;0;0;0;0;0;131;308;400.7;215;18
-128;'446;China, Macao SAR;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1
-128;'446;China, Macao SAR;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5
-128;'446;China, Macao SAR;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;300;150;400;500;199;0;0;0;2378;3215;3000;3212;3518;4103;4211;2548;2911;2654;2654;3569;3569;3569;3569;3569;3569;3569;841;1771;43;388;1496
-128;'446;China, Macao SAR;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;37;23;30;39;15;0;0;0;88;142;151;178;252;296;334;241;265;275;275;370;370;370;370;370;370;370;28;73;10;90;282
-128;'446;China, Macao SAR;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;28;2;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;149
-128;'446;China, Macao SAR;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;52
-128;'446;China, Macao SAR;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;49
-128;'446;China, Macao SAR;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;18
-128;'446;China, Macao SAR;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;100
-128;'446;China, Macao SAR;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;34
-128;'446;China, Macao SAR;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1872;Sawnwood;5616;Import quantity;m3;;3100;2500;1900;1900;2400;1600;3900;4300;5400;4500;5200;5200;5000;4800;4600;4400;3900;4800;3200;3200;3200;3200;1400;1500;1900;2500;2700;13343;11600;14700;13842;13968;18100;17300;11300;13840;7824;7150;6127;5044;5050;5536;6758;17737;17828;17372;10159;3029;4567;12682;14117;15686;14341;28942;10252;5601;7688;5183;3326;3326;2008;2008
-128;'446;China, Macao SAR;1872;Sawnwood;5622;Import value;1000 USD;;408;224;168;147;168;115;335;203;249;215;245;245;300;350;370;404;422;1314;1243;1243;1243;1243;352;330;285;267;324;1690;1025;1133;2633;1953;2752;5534;3603;3241;1012;857;597;599;679;2037;2124;4177;4645;4485;2705;832;1426;3463;3386;4402;4987;21677;4899;1931;2584;1913;1186;1186;522;522
-128;'446;China, Macao SAR;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5278;5713;7400;3400;4800;2323;1497;2250;2947;1676;1979;119;89;69;472;309;1337;252;48;21;0;0;35;118;113;13;18;0;0;0;0;0
-128;'446;China, Macao SAR;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;672;923;917;463;338;194;277;347;177;217;51;21;29;124;113;284;184.3;9;5;0;0;20;46;45;7;27;0;0;0;0;0
-128;'446;China, Macao SAR;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;168;1000;500;200;99;46;17;6;12;897;2693;3464;14110;13062;11971;6116;1600;1095;5882;6992;13324;11226;13040;6066;3658;6437;3970;2446;2446;629;629
-128;'446;China, Macao SAR;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;30;53;94;54;19;15;3;1;3;117;343;498;2367;2345;2769;1602;322;295;1614;1976;3218;3741;3847;1558;986;1887;1240;785;785;90;90
-128;'446;China, Macao SAR;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;0;0;0;17;0;0;0;0;25;45;342;185;112;1;42;17;0;0;11;80;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;2;0;0;0;0;3;7;64;33;27;0.3;8;4;0;0;4;27;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;3100;2500;1900;1900;2400;1600;3900;4300;5400;4500;5200;5200;5000;4800;4600;4400;3900;4800;3200;3200;3200;3200;1400;1500;1900;2500;2700;13343;11600;14700;13386;13800;17100;16800;11100;13741;7778;7133;6121;5032;4153;2843;3294;3627;4766;5401;4043;1429;3472;6800;7125;2362;3115;15902;4186;1943;1251;1213;880;880;1379;1379
-128;'446;China, Macao SAR;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;408;224;168;147;168;115;335;203;249;215;245;245;300;350;370;404;422;1314;1243;1243;1243;1243;352;330;285;267;324;1690;1025;1133;2602;1923;2699;5440;3549;3222;997;854;596;596;562;1694;1626;1810;2300;1716;1103;510;1131;1849;1410;1184;1246;17830;3341;945;697;673;401;401;432;432
-128;'446;China, Macao SAR;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5278;5700;7400;3400;4800;2323;1497;2233;2947;1676;1979;119;64;24;130;124;1225;251;6;4;0;0;24;38;113;13;18;0;0;0;0;0
-128;'446;China, Macao SAR;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;667;923;917;463;338;194;275;347;177;217;51;18;22;60;80;257;184;1;1;0;0;16;19;45;7;27;0;0;0;0;0
-128;'446;China, Macao SAR;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;100;100;100;100;100;98;98;98;98
-128;'446;China, Macao SAR;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;14;100;100;100;12;5;3;0;0;2;0;8;164;160;111;7;186;20;3;0;0;1;2;0;0;0;0;2;2;2;2
-128;'446;China, Macao SAR;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;15;41;41;35;20;3;2;0;0;4;1;11;62;27;259;10;79;79;17;0;0;4;12;5;0;0;2;31;31;31;31
-128;'446;China, Macao SAR;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;8;8;10;3;10;0;2;4;0;0;0;0;0;0;0;0;3;23;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;2;9;11;1;9;0;1;3;0;0;0;0;0;0;0;0;6;45;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1873;Wood-based panels;5616;Import quantity;m3;;;300;300;500;1400;500;500;700;1400;1300;2100;2300;2300;2300;2300;2000;1500;3600;6300;6300;6300;6300;8600;10600;12500;19700;24500;22760;28300;32400;33624;31099;34670;34670;29370;25001;25030;19507;12647;18386;15705;20014;21414;31758;39817;42769;23500;16144;6290;4290;23291;26298;31631;39659;22442;28191;27396;27010;19046;18891;18875;18694
-128;'446;China, Macao SAR;1873;Wood-based panels;5622;Import value;1000 USD;;;141;141;205;533;246;160;158;214;177;413;843;900;950;1000;1000;786;1414;3229;3229;3229;3229;1961;1791;1651;2578;3139;3076;5191;5909;5871;5975;7574;7574;4571;5932;3697;3422;2540;2688;2309;2675;2968;6118;7214;6555;5427;5336;2337;1364;6455;9159;17358;34540;17023;18854;17275;15741;8537;8509;8867;8253
-128;'446;China, Macao SAR;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1000;900;1500;2400;2900;2644;4200;7300;6225;6300;7150;7150;5350;2928;3138;4918;6666;5714;5704;2434;934;807;159;1245;703;47;79;6;9;0;37;282;60;0;1;10;1;1;30;30
-128;'446;China, Macao SAR;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;284;215;179;283;379;411;744;1215;1104;1105;1416;1416;714;480;403;551;685;785;738;350;291;331;91;165;113;33;40;3;7;0;25;98;56;0;6;8;6;6;13;13
-128;'446;China, Macao SAR;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1640;Plywood and LVL;5616;Import quantity;m3;;;300;300;500;1400;500;500;700;1400;1300;2100;2300;2300;2300;2300;2000;1500;3600;6300;6300;6300;6300;8600;10600;12500;19700;24500;22760;28300;32400;32800;30300;34000;34000;28700;23964;24984;19327;12349;18338;15660;19997;21327;31259;39516;41843;23130;15658;5882;3882;22959;25966;31299;39327;22110;27864;27069;26187;18626;18626;18626;18626
-128;'446;China, Macao SAR;1640;Plywood and LVL;5622;Import value;1000 USD;;;141;141;205;533;246;160;158;214;177;413;843;900;950;1000;1000;786;1414;3229;3229;3229;3229;1961;1791;1651;2578;3139;3076;5191;5909;5814;5922;7522;7522;4519;5029;3676;3159;2480;2675;2298;2671;2923;5882;7061;6324;5091;4656;1689;716;6049;8753;16952;34134;16617;18452;16873;15221;8152;8152;8152;8152
-128;'446;China, Macao SAR;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1000;900;1500;2400;2900;2644;4200;7300;6200;6000;6900;6900;5100;2667;3126;4914;6662;5710;5700;2406;934;791;159;1229;697;47;79;6;9;0;37;282;60;0;1;10;0;0;0;0
-128;'446;China, Macao SAR;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;284;215;179;283;379;411;744;1215;1095;1070;1393;1393;691;449;400;550;684;784;737;343;291;327;91;161;110;33;40;3;7;0;25;98;56;0;6;6;0;0;0;0
-128;'446;China, Macao SAR;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;99;70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;110;5;7;19;5;0;15;5;95;39;810;10;5;5;5;5;5;5;5;5;0;0;0;1;3;18;1
-128;'446;China, Macao SAR;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;90;1;1;3;1;0;3;1;17;19;128;6;4;4;4;4;4;4;4;4;0;0;8;4;9;148;7
-128;'446;China, Macao SAR;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2
-128;'446;China, Macao SAR;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;700;600;600;600;927;41;173;279;43;45;2;82;404;262;116;360;481;403;403;327;327;327;327;327;327;327;823;419;262;231;67
-128;'446;China, Macao SAR;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;37;40;40;40;813;20;262;57;12;11;1;44;219;134;103;330;676;644;644;402;402;402;402;402;402;402;512;381;348;567;94
-128;'446;China, Macao SAR;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;300;250;250;250;252;12;4;4;4;4;28;0;16;0;16;0;0;0;0;0;0;0;0;0;0;0;0;1;1;30;30
-128;'446;China, Macao SAR;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;35;23;23;23;26;3;1;1;1;1;7;0;4;0;4;0;0;0;0;0;0;0;0;0;0;0;0;4;4;11;11
-128;'446;China, Macao SAR;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;20;0;1;1;25;0;0;30;22;5;150;135;95;95;181;181;181;181;181;181;181;607;333;222;139;53
-128;'446;China, Macao SAR;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;0;23;1;2;8;0;0;7;5;2;74;153;211;211;213;213;213;213;213;213;213;396;269;255;230;73
-128;'446;China, Macao SAR;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;2;20;6;40;20;0;10;100;0;42;25;225;225;225;63;63;63;63;63;63;63;133;81;35;87;9
-128;'446;China, Macao SAR;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;4;2;9;3;0;1;58;0;51;73;379;379;379;135;135;135;135;135;135;135;62;108;89;333;17
-128;'446;China, Macao SAR;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;0;0;0;0;8;0;8;0;8;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1
-128;'446;China, Macao SAR;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;0;0;0;2;0;2;0;2;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4
-128;'446;China, Macao SAR;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;700;600;600;600;284;19;153;272;2;0;2;72;274;240;69;185;121;83;83;83;83;83;83;83;83;83;83;5;5;5;5
-128;'446;China, Macao SAR;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;37;40;40;40;28;19;235;54;1;0;1;43;154;129;50;183;144;54;54;54;54;54;54;54;54;54;54;4;4;4;4
-128;'446;China, Macao SAR;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;300;250;250;250;250;8;4;4;4;4;20;0;8;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;29;29
-128;'446;China, Macao SAR;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;35;23;23;23;23;2;1;1;1;1;5;0;2;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;7
-128;'446;China, Macao SAR;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;1000;3000;4000;5000;3000;4000;3000;3000;17000;17000;21000;19000;33000;28000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;32000;34000;34000;30000;33000;30000;30000;30000;30000;30000;30000;30000
-128;'446;China, Macao SAR;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;2000;1000;1000;600;600;1000;1000;200;334;377;618;1000;200;200;100;100;100;200;200;45;45;45;637;211;130;130;100;256;30;118;96;62;1;1;1;192;4;522;961;73;975;975;975;0;0;0;0;0;0;713;2140;2140;2140;2140
-128;'446;China, Macao SAR;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;38;36;12;7;8;14;23;5;7;58;154;154;5;5;3;3;3;5;6;5;5;5;136;53;6;6;8;111;3;10;7;5;1;1;1;6;15;71;184;21;180;180;180;0;0;0;0;0;0;123;215;215;215;215
-128;'446;China, Macao SAR;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;1000;1000;2000;3000;2000;2000;1000;1000;9000;9000;10000;10000;16000;14000;13000;11800;14500;16400;2685;12517;12517;2400;3800;13688;13571;13686;15197;14975;14368;17472;21611;24938;25084;26186;24456;21537;21537;21537;32788;33498;34059;29454;29100;29177;29271;25386;8305;11649;16921;16921
-128;'446;China, Macao SAR;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;11;33;35;41;20;98;29;29;325;245;334;261;280;321;1513;349;374;425;295;231;231;440;412;344;285;293;365;369;274;356;644;1120;867;808;1010;993;993;993;1165;1159;1165;826;487;588;863;734;164;547;664;664
-128;'446;China, Macao SAR;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;81;0;0;0;223;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;47;0;0;0;109;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;81;0;0;0;223;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;47;0;0;0;109;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;81;0;0;0;223;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;47;0;0;0;109;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;81;0;0;0;207;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;47;0;0;0;101;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-128;'446;China, Macao SAR;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;31;31;31;31
-128;'446;China, Macao SAR;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;21;21;21;21
-128;'446;China, Macao SAR;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;1000;3000;4000;5000;3000;4000;3000;3000;17000;17000;21000;19000;33000;28000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;32000;34000;34000;30000;33000;30000;30000;30000;30000;30000;30000;30000
-128;'446;China, Macao SAR;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;2000;1000;1000;600;600;1000;1000;200;334;377;618;1000;200;200;100;100;100;200;200;45;45;45;451;130;130;130;100;33;30;118;96;62;1;1;1;192;4;522;961;73;975;975;975;0;0;0;0;0;0;713;2140;2140;2140;2140
-128;'446;China, Macao SAR;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;38;36;12;7;8;14;23;5;7;58;154;154;5;5;3;3;3;5;6;5;5;5;62;6;6;6;8;2;3;10;7;5;1;1;1;6;15;71;184;21;180;180;180;0;0;0;0;0;0;123;215;215;215;215
-128;'446;China, Macao SAR;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;1000;1000;2000;3000;2000;2000;1000;1000;9000;9000;10000;10000;16000;14000;13000;11800;14500;16400;2685;12517;12517;2400;3800;13680;13571;13686;15197;14975;14368;17457;21611;24938;25084;26186;24456;21537;21537;21537;32788;33498;34059;29454;29100;29177;29271;25386;8305;11649;16921;16921
-128;'446;China, Macao SAR;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;11;33;35;41;20;98;29;29;325;245;334;261;280;321;1513;349;374;425;295;231;231;440;412;340;285;293;365;369;274;344;644;1120;867;808;1010;993;993;993;1165;1159;1165;826;487;588;863;734;164;547;664;664
-128;'446;China, Macao SAR;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1876;Paper and paperboard;5610;Import quantity;t;2200;3300;4000;4600;5000;6300;4600;6300;6300;7700;7800;6200;8900;2800;6300;6700;7700;8800;9900;13300;13300;13300;13300;17400;17300;20700;26300;24300;20799;25400;28500;24270;19897;18700;9500;3600;9615;13216;11481;11121;10503;10321;9592;9642;9643;10504;10113;10258;10337;12325;12325;12178;12178;12351;11606;11202;10956;10544;5746;3884;5805.38;4767;4169
-128;'446;China, Macao SAR;1876;Paper and paperboard;5622;Import value;1000 USD;1100;1567;559;949;621;717;580;552;581;693;674;582;973;369;814;914;1114;1409;2108;6004;6004;6004;6004;4460;4377;4786;6021;6045;5677;7718;8038;8219;7240;8506;7015;2820;4749;5803;5043;5699;5071;5304;4858;6294;6464;8025;7831;8415;8173;10492;10492;11703;11703;11843;11263;10731;10565;10308;5989;3990;6308.07;5294;4819
-128;'446;China, Macao SAR;1876;Paper and paperboard;5910;Export quantity;t;1500;400;400;400;100;100;100;100;300;100;100;200;200;200;200;200;200;100;200;100;100;100;100;400;500;1400;2100;2200;2200;3500;6300;4119;3400;4900;4400;300;814;1678;1620;2041;1541;1491;1147;1102;801;706;548;586;448;279;279;359;359;129;135;124;115;115;1268;672;762;270;328
-128;'446;China, Macao SAR;1876;Paper and paperboard;5922;Export value;1000 USD;800;200;200;200;13;13;39;177;226;104;105;220;189;158;127;100;60;17;35;28;28;28;28;154;183;399;621;655;655;1593;1918;1538;1366;1588;1356;164;553;873;900;1124;902;861;679;984;773;533;503;633;671;424;424;541;541;284;332;274;268;268;1464;642;736;299;330
-128;'446;China, Macao SAR;2042;Graphic papers;5610;Import quantity;t;;;;;2900;3700;3100;3700;3600;6200;6100;4400;7900;1500;4700;4700;4700;5100;6900;8100;8100;8100;8100;4700;4900;4200;4300;4500;999;5700;6200;6870;6497;8500;4500;2200;8215;8283;7530;7278;6860;7002;6801;6910;7602;8156;8598;9160;9336;11238;11238;11474;11474;11647;10902;10498;10252;9840;5480;3727;5472.38;4308;3883
-128;'446;China, Macao SAR;2042;Graphic papers;5622;Import value;1000 USD;;;;;315;406;283;318;315;616;592;489;935;286;714;714;714;795;1311;3464;3464;3464;3464;1122;1006;696;887;896;528;1312;1323;2177;2188;3140;1649;1390;3319;3194;2983;3628;3395;3486;3250;4290;4516;5169;5597;6526;6447;8553;8553;10252;10252;10392;9812;9280;9114;8857;5629;3801;5548.07;4364;4052
-128;'446;China, Macao SAR;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;300;500;0;300;814;1238;462;647;561;643;461;519;462;387;411;370;297;187;187;244;244;14;20;9;0;0;233;14;104;47;105
-128;'446;China, Macao SAR;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;90;232;0;164;553;626;234;471;407;430;260;349;391;319;336;416;372;217;217;273;273;16;64;6;0;0;207;16;110;90;121
-128;'446;China, Macao SAR;1671;Newsprint;5610;Import quantity;t;;;;;2400;2500;1900;2500;2400;3700;3900;2600;4700;0;2800;2800;2800;3200;5000;6200;6200;6200;6200;;;;0;;199;300;1100;2932;2961;4200;4200;1900;4076;4426;3858;3815;3725;3792;3999;4099;4851;4787;5012;5586;4575;5534;5534;4744;4744;4744;4744;4744;4744;4744;370;180;1600;1209;641
-128;'446;China, Macao SAR;1671;Newsprint;5622;Import value;1000 USD;;;;;265;248;134;169;166;286;301;220;418;0;302;302;302;383;899;3052;3052;3052;3052;;;;0;;114;147;135;943;955;1447;1447;973;1411;1350;1178;1112;1062;1037;1138;1557;2308;2575;2694;3507;2470;3320;3320;3530;3530;3530;3530;3530;3530;3530;228;108;1085.76;846;430
-128;'446;China, Macao SAR;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;;;;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1674;Printing and writing papers;5610;Import quantity;t;;;;;500;1200;1200;1200;1200;2500;2200;1800;3200;1500;1900;1900;1900;1900;1900;1900;1900;1900;1900;4700;4900;4200;4300;4500;800;5400;5100;3938;3536;4300;300;300;4139;3857;3672;3463;3135;3210;2802;2811;2751;3369;3586;3574;4761;5704;5704;6730;6730;6903;6158;5754;5508;5096;5110;3547;3872.38;3099;3242
-128;'446;China, Macao SAR;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;50;158;149;149;149;330;291;269;517;286;412;412;412;412;412;412;412;412;412;1122;1006;696;887;896;414;1165;1188;1234;1233;1693;202;417;1908;1844;1805;2516;2333;2449;2112;2733;2208;2594;2903;3019;3977;5233;5233;6722;6722;6862;6282;5750;5584;5327;5401;3693;4462.31;3518;3622
-128;'446;China, Macao SAR;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;300;500;0;300;808;1238;462;647;561;643;461;519;462;387;411;370;297;187;187;244;244;14;20;9;0;0;233;14;104;47;105
-128;'446;China, Macao SAR;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;90;232;0;164;552;626;234;471;407;430;260;349;391;319;336;416;372;217;217;273;273;16;64;6;0;0;207;16;110;90;121
-128;'446;China, Macao SAR;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;0;6;6;23;5;17;5;7;3;8;19;41;16
-128;'446;China, Macao SAR;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;0;4;4;18;3;17;5;7;4;8;22;46;17
-128;'446;China, Macao SAR;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;0;0;0;0;1;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;3;0;0;0;0;1;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3783;3488;3282;2895;3037;2673;2635;2577;3221;3477;3452;4675;5625;5625;6645;6645;6844;6090;5667;5480;5042;5023;3535;3705.38;2992;3182
-128;'446;China, Macao SAR;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1778;1641;2252;2009;2170;1902;2423;1945;2397;2694;2787;3798;5106;5106;6591;6591;6747;6132;5615;5539;5230;5276;3674;4193.31;3383;3514
-128;'446;China, Macao SAR;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;457;647;559;637;454;510;434;341;376;346;265;187;187;244;244;14;18;9;0;0;214;11;101;44;102
-128;'446;China, Macao SAR;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;231;471;406;419;255;339;372;288;313;386;336;217;217;273;273;16;31;6;0;0;202;13;107;86;117
-128;'446;China, Macao SAR;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;182;181;240;173;129;176;174;148;109;122;86;79;79;79;79;36;63;70;23;47;84;4;148;66;44
-128;'446;China, Macao SAR;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;162;264;324;279;210;310;263;197;209;232;179;127;127;127;127;97;147;118;40;90;121;11;247;89;91
-128;'446;China, Macao SAR;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;2;2;3;9;28;46;35;23;30;0;0;0;0;0;2;0;0;0;19;3;3;3;3
-128;'446;China, Macao SAR;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;0;1;5;2;10;19;31;23;29;33;0;0;0;0;0;33;0;0;0;5;3;3;4;4
-128;'446;China, Macao SAR;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1675;Other paper and paperboard;5610;Import quantity;t;2200;3300;4000;4600;2100;2600;1500;2600;2700;1500;1700;1800;1000;1300;1600;2000;3000;3700;3000;5200;5200;5200;5200;12700;12400;16500;22000;19800;19800;19700;22300;17400;13400;10200;5000;1400;1400;4933;3951;3843;3643;3319;2791;2732;2041;2348;1515;1098;1001;1087;1087;704;704;704;704;704;704;704;266;157;333;459;286
-128;'446;China, Macao SAR;1675;Other paper and paperboard;5622;Import value;1000 USD;1100;1567;559;949;306;311;297;234;266;77;82;93;38;83;100;200;400;614;797;2540;2540;2540;2540;3338;3371;4090;5134;5149;5149;6406;6715;6042;5052;5366;5366;1430;1430;2609;2060;2071;1676;1818;1608;2004;1948;2856;2234;1889;1726;1939;1939;1451;1451;1451;1451;1451;1451;1451;360;189;760;930;767
-128;'446;China, Macao SAR;1675;Other paper and paperboard;5910;Export quantity;t;1500;400;400;400;100;100;100;100;300;100;100;200;200;200;200;200;200;100;200;100;100;100;100;400;500;1400;2100;2200;2200;3500;6300;3800;3100;4400;4400;0;0;440;1158;1394;980;848;686;583;339;319;137;216;151;92;92;115;115;115;115;115;115;115;1035;658;658;223;223
-128;'446;China, Macao SAR;1675;Other paper and paperboard;5922;Export value;1000 USD;800;200;200;200;13;13;39;177;226;104;105;220;189;158;127;100;60;17;35;28;28;28;28;154;183;399;621;655;655;1593;1918;1359;1276;1356;1356;0;0;247;666;653;495;431;419;635;382;214;167;217;299;207;207;268;268;268;268;268;268;268;1257;626;626;209;209
-128;'446;China, Macao SAR;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;0;0;0;1;0;46;61;12;4;12;1;1;28;28;28;28;28;28;28;12;10;35;126;126
-128;'446;China, Macao SAR;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;0;0;0;1;0;51;75;14;9;21;1;1;68;68;68;68;68;68;68;15;21;91;390;390
-128;'446;China, Macao SAR;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;718;0;0;5;5
-128;'446;China, Macao SAR;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;912;1;1;8;8
-128;'446;China, Macao SAR;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4633;3788;3620;3224;2977;2521;2519;1692;1865;1106;740;484;457;457;407;407;407;407;407;407;407;237;143;210;176;130
-128;'446;China, Macao SAR;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2091;1752;1736;1212;1363;995;1350;1042;1924;1280;903;724;730;730;618;618;618;618;618;618;618;219;162;303;201;218
-128;'446;China, Macao SAR;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;1142;1383;971;832;667;570;336;309;135;211;104;46;46;69;69;69;69;69;69;69;271;612;612;214;214
-128;'446;China, Macao SAR;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;641;639;484;408;404;620;376;205;164;210;136;45;45;106;106;106;106;106;106;106;183;463;463;184;184
-128;'446;China, Macao SAR;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3808;3167;2939;2654;1757;1447;1735;780;448;120;113;65;70;70;11;11;11;11;11;11;11;4;97;19;3;17
-128;'446;China, Macao SAR;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;1321;1193;847;457;398;567;217;96;66;74;44;38;38;8;8;8;8;8;8;8;5;79;19;4;25
-128;'446;China, Macao SAR;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;1106;1332;910;125;97;216;31;7;2;3;15;0;0;0;0;0;0;0;0;0;0;0;0;211;211
-128;'446;China, Macao SAR;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;615;614;393;78;55;173;16;3;2;1;14;0;0;0;0;0;0;0;0;0;0;0;0;174;174
-128;'446;China, Macao SAR;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;38;49;40;657;465;429;643;1105;546;251;271;207;207;211;211;211;211;211;211;211;135;14;70;66;69
-128;'446;China, Macao SAR;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;48;61;46;436;320;462;553;1343;730;350;428;448;448;266;266;266;266;266;266;266;76;13;79;66;59
-128;'446;China, Macao SAR;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;10;11;563;439;293;232;285;113;170;48;26;26;26;26;26;26;26;26;26;26;567;567;2;2
-128;'446;China, Macao SAR;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;3;8;266;246;406;313;185;137;166;46;15;15;15;15;15;15;15;15;15;15;429;429;9;9
-128;'446;China, Macao SAR;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;518;605;525;229;419;239;222;264;369;365;130;162;162;178;178;178;178;178;178;178;98;32;121;107;44
-128;'446;China, Macao SAR;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;265;398;312;285;221;294;262;373;453;476;249;241;241;340;340;340;340;340;340;340;138;70;205;131;134
-128;'446;China, Macao SAR;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;25;29;48;24;44;22;31;16;16;38;41;20;20;43;43;43;43;43;43;43;245;45;45;1;1
-128;'446;China, Macao SAR;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;15;15;81;26;66;29;33;14;24;43;76;30;30;91;91;91;91;91;91;91;168;34;34;1;1
-128;'446;China, Macao SAR;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;65;27;5;334;190;116;47;48;71;11;18;18;18;7;7;7;7;7;7;7;0;0;0;0;0
-128;'446;China, Macao SAR;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;118;84;7;185;56;27;10;112;31;3;3;3;3;4;4;4;4;4;4;4;0;0;0;0;0
-128;'446;China, Macao SAR;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;11;12;2;120;87;39;42;1;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;11;7;2;38;37;12;14;3;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;2600;1500;2600;2700;1500;1700;1800;1000;1300;1600;2000;3000;3700;3000;5200;5200;5200;5200;12700;12400;16500;22000;19800;19800;19700;22300;17400;13400;10200;5000;1400;1400;262;161;223;419;342;269;213;303;422;397;354;505;629;629;269;269;269;269;269;269;269;17;4;88;157;30
-128;'446;China, Macao SAR;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;311;297;234;266;77;82;93;38;83;100;200;400;614;797;2540;2540;2540;2540;3338;3371;4090;5134;5149;5149;6406;6715;6042;5052;5366;5366;1430;1430;499;307;335;464;455;612;654;855;857;940;977;981;1208;1208;765;765;765;765;765;765;765;126;6;366;339;159
-128;'446;China, Macao SAR;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;200;100;200;100;100;100;100;400;500;1400;2100;2200;2200;3500;6300;3800;3100;4400;4400;0;0;2;16;11;9;16;19;13;3;10;2;4;46;46;46;46;46;46;46;46;46;46;46;46;46;4;4
-128;'446;China, Macao SAR;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;60;17;35;28;28;28;28;154;183;399;621;655;655;1593;1918;1359;1276;1356;1356;0;0;2;25;14;11;23;15;15;6;9;3;6;162;162;162;162;162;162;162;162;162;162;162;162;162;17;17
-128;'446;China, Macao SAR;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53532;59202;62250;39422;54269;44078;46235
-128;'446;China, Macao SAR;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393;1653;493;1452;1417;1529;1564
-128;'446;China, Macao SAR;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1473;3397;916;699;1597;1164;1109
-128;'446;China, Macao SAR;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;110;110;110;110
-128;'446;China, Macao SAR;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;526;121;24;270;270;270
-128;'446;China, Macao SAR;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;80;80
-128;'446;China, Macao SAR;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1321;2871;795;675;1327;894;839
-128;'446;China, Macao SAR;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30
-128;'446;China, Macao SAR;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;325;284;245;343;316;247
-128;'446;China, Macao SAR;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;111;25;14;41;68;97
-128;'446;China, Macao SAR;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1861;5992;2760;2740;3368;4127;5248
-128;'446;China, Macao SAR;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;71;34;19;96;32;243
-128;'446;China, Macao SAR;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4555;5383;10573;9555;8363;6487;5997
-128;'446;China, Macao SAR;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;116;33;14;38;107;110
-128;'446;China, Macao SAR;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42162;41010;44557;23364;35232;27541;28186
-128;'446;China, Macao SAR;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875;1137;191;1202;904;982;711
-128;'446;China, Macao SAR;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;26;23;23;6;14;5
-128;'446;China, Macao SAR;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-128;'446;China, Macao SAR;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3136;3069;3137;2796;5360;4429;5443
-128;'446;China, Macao SAR;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;108;100;93;228;230;293
-128;'446;China, Macao SAR;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43834;48117;50431;37549;52149;48195;56307
-128;'446;China, Macao SAR;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097;435;184;244;396;991;479
-128;'446;China, Macao SAR;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;2;15;15
-128;'446;China, Macao SAR;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-128;'446;China, Macao SAR;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1191;856;904;1257;1268;1472
-128;'446;China, Macao SAR;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14;9;9;53;80;80
-128;'446;China, Macao SAR;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22004;22879;25049;19680;26232;26315;28591
-128;'446;China, Macao SAR;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;156;103;106;263;191;110
-128;'446;China, Macao SAR;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11196;11634;11980;7201;11239;9459;14423
-128;'446;China, Macao SAR;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;179;49;7;16;140;67
-128;'446;China, Macao SAR;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9618;12398;12531;9749;13419;11138;11806
-128;'446;China, Macao SAR;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;86;23;122;64;580;222
-41;'156;China, mainland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50841728;56461389;47459916;45382325;53594628.37;52514393;49564216
-41;'156;China, mainland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55661832;57457825;55620765;55034439;67660589.16;72649376;67561882
-41;'156;China, mainland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4655;8435;14805;23300;52240;52890;52205;69086;57913;68774;91876;53570;66598;79000;78873;139279;187703;232189;229250;652285;702539;752420;1150164;1296270;1543350;1823614;1617875;1867350;1810271;1870523;2336355;2979269;3018753;3178401;3394869;4620281;5661407;5900189;7067684;9456176;9137795;10254743;12144164;14118334;14820837;16590605;20475686;20869860;20540418;28484147;38125870;35176636;38668438;41947703;38778779;39194278;47731117;53371684;44663939;42473431;50596907.37;50051243;47406857
-41;'156;China, mainland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;4910;6411;6325;15073;14283;15350;15926;11577;15379;15302;40802;50380;31880;31880;31880;31321;38303;29827;28627;29427;28427;31247;26947;81577;134167;189216;173696;240107;175567;288374;323396;369952;459383;547908;908731;859250;824042;705551;710666;1223353;1186867;1437178;1843105;2891895;4209528;6252764;8256562;8198424;6853174;8604023;11144780;11935956;12980580;14714499;14090797;14394289;13442860;13258470;12548122;11495652;14222491.16;17829010;15909071
-41;'156;China, mainland;1861;Roundwood;5516;Production;m3;313881624;310737047;315592470;319447893;322303316;325158739;328114162;330881492;333760803;336752173;341735345;349696090;353817920;366625713;385004786;397936993;398720786;393968577;395832764;393823396;391385852;391082283;389832505;392177990;389535487;389604085;387338512;382554379;381863403;376871305;370924223;364537583;361563324;354315517;350404700;352320216;346038511;341549056;330204198;322068957;315300111;310431418;308321347;304348399;300451100;296602427;300057000;319434000;338379504;349075292;344799171;340104501;345955127;336550914;319613749;332134435;327725124;332557654;307247881;323299690;319892992;321153416;318369943
-41;'156;China, mainland;1861;Roundwood;5616;Import quantity;m3;166000;293900;521500;537300;1572800;1492800;1492000;1529000;1507000;1511000;1483000;201000;605000;840000;840000;1094200;875700;824400;824400;1828600;1308400;3713000;6000000;7200000;8380000;6500000;6200000;7951000;6444400;3865000;4181805;4399755;3636448;3729577;3599406;3188300;4668000;5133600;10128000;13614300;16870000;24336600;25415600;26078628;29373000;32151000;37124000;32105098;28056756;35506116;42306566;37813244;44938632;51209380;49299343;51220615;55236640;59652910;60583378;59471193;63163419;43616159;38049693
-41;'156;China, mainland;1861;Roundwood;5622;Import value;1000 USD;4630;8400;14770;15200;44200;44750;44490;45400;45000;45100;44500;5477;18505;30194;30194;55560;51060;49260;49860;106200;100200;306000;494000;595900;673893;526000;510000;683000;601292;415223;470701;491933;507798;514273;460029;457934;752626;617963;1101557;1655307;1694149;2138278;2434014;2636398;3244078;3927893;5366767;4756503;4085191;6060226;8270738;7236410;9277572;11855552;7993486;8350086;9908906;10985597;9447571;8402007;11597683.16;8536280;6394842
-41;'156;China, mainland;1861;Roundwood;5916;Export quantity;m3;4900;6100;4300;6600;3000;6600;8300;5500;3200;4500;32200;47900;47900;47900;47900;47800;52500;29600;30000;37000;24200;34000;25000;9000;9000;31100;55200;132400;43200;371000;634158;719563;747717;665191;485563;74300;74000;33000;33400;27041;26646;15000;13417;8000;7927;6282;5066;6489;14503;30114;15619;10577;24200;22933;20393;153068;97055;79427;58377;41677;18341.15;91728;40031
-41;'156;China, mainland;1861;Roundwood;5922;Export value;1000 USD;85;105;75;360;135;420;466;276;161;260;7839;11300;11300;11300;11300;10481;14081;7800;8000;9900;6500;9200;6800;2450;2450;11268;22802;64205;5324;35102;48514;58036;74650;59377;66688;31607;30944;13300;12817;7944;6507;3648;3360;1496;2307;1735;1390;2604;4656;10583;6834;3036;8086;9275;5375;30879;32581;26637;19451;8517;5542;25078;7004
-41;'156;China, mainland;1862;Roundwood, coniferous;5516;Production;m3;134477022;132068501;134649980;136721459;138022938;139444417;140875896;142172198;143563352;145009391;147272144;150691369;152712755;159468204;170602416;176285290;177125899;175773598;177453052;177063400;174927638;175357212;175531886;178599336;178310440;178880201;178417215;176410654;174430573;173706791;170962933;168988523;169145707;166376333;165305903;167776955;165144943;163133272;156884309;152865162;149340505;147168311;146787960;145178846;143600371;142041590;114324000;111290700;111245469;106849305;103372841;99274670;100810326;95724348;98443285;95449621;92685664;94346944;93116997;91910372;90739588;90291724;89164368
-41;'156;China, mainland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38236640;41612910;45260051;46828960;49893620;31177190;28117190
-41;'156;China, mainland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5138906;5785597;5657504;5464236;7880360;4986555;3766355
-41;'156;China, mainland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4232;6528;7568;7671;4824;32238;32342
-41;'156;China, mainland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2325;2865;3432;1519;1089;4234;4273
-41;'156;China, mainland;1863;Roundwood, non-coniferous;5516;Production;m3;179404602;178668546;180942490;182726434;184280378;185714322;187238266;188709294;190197451;191742782;194463201;199004721;201105165;207157509;214402370;221651703;221594887;218194979;218379712;216759996;216458214;215725071;214300619;213578654;211225047;210723884;208921297;206143725;207432830;203164514;199961290;195549060;192417617;187939184;185098797;184543261;180893568;178415784;173319889;169203795;165959606;163263107;161533387;159169553;156850729;154560837;185733000;208143300;227134035;242225987;241426330;240829831;245144801;240826566;221170464;236684814;235039460;238210710;214130884;231389318;229153404;230861692;229205575
-41;'156;China, mainland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000000;18040000;15323327;12642233;13269799;12438969;9932503
-41;'156;China, mainland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770000;5200000;3790067;2937771;3717323.16;3549725;2628487
-41;'156;China, mainland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92823;72899;50809;34006;13517.15;59490;7689
-41;'156;China, mainland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30256;23772;16019;6998;4453;20844;2731
-41;'156;China, mainland;1864;Wood fuel;5516;Production;m3;279881624;281737047;283592470;285447893;287303316;289158739;291014162;292881492;294760803;296652173;300535345;307496090;310017920;318055713;319327786;330326993;328829778;321572561;319336764;316246380;317093844;314463259;310156489;302752966;296795479;294469085;290291504;285964363;286744395;287194297;282686223;273606575;264696308;256794517;250635700;245463216;240853511;235973056;231704198;227508957;223300111;219171418;215121347;211148399;207251100;203402427;199628000;195924000;192291504;188728292;185337171;182008501;178741127;175533914;172385749;169169435;166014124;162918654;159881881;156902690;154011992;151175416;148391943
-41;'156;China, mainland;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6684;3926;4307;2400;2800;800;1400;1500;100;6600;5600;5600;5600;5000;8000;24000;13000;2733;4212;3640;3546;7051;9790;8413;615;0;0;3378;19423;19149;18231;19693
-41;'156;China, mainland;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;361;448;231;154;153;251;260;22;308;177;177;177;540;501;17480;688;377;229;175;197;1525;205;139;86;0;0;71;1295;4548.16;4763;7922
-41;'156;China, mainland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25809;101111;34128;26000;9000;11000;7700;7700;41;8900;4000;4000;4000;1000;2000;1000;500;1767;1732;1239;618;66;979;644;412;207;251;59;716;1576.15;946;1231
-41;'156;China, mainland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405;3744;2353;2228;868;1471;3459;3500;7;955;473;473;473;266;366;179;85;76;57;66;53;43;377;673;258;62;99;657;516;751;694;537
-41;'156;China, mainland;1627;Wood fuel, coniferous;5516;Production;m3;113357022;114108501;114859980;115611459;116362938;117114417;117865896;118622198;119383352;120149391;121722144;124541369;125562755;128818204;129333416;133788290;133181891;130242590;129337052;128085392;128428630;127363196;125618878;122620320;120207432;119265201;117573207;115820638;116136565;116318783;114492933;110815515;107206699;104006333;101511903;99416955;97549943;95573272;93844309;92145162;90440505;88768311;87127960;85518846;83940371;82381590;80853000;79352700;77881469;76438305;75064841;73716670;72393326;71094348;69819285;68516621;67238664;65984944;64754997;63548372;62377588;61228724;60101368
-41;'156;China, mainland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;51;17190;17190;17190;17190
-41;'156;China, mainland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;955;955;955;955
-41;'156;China, mainland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;14;8;16;54;158
-41;'156;China, mainland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;19;6;4;52;91
-41;'156;China, mainland;1628;Wood fuel, non-coniferous;5516;Production;m3;166524602;167628546;168732490;169836434;170940378;172044322;173148266;174259294;175377451;176502782;178813201;182954721;184455165;189237509;189994370;196538703;195647887;191329971;189999712;188160988;188665214;187100063;184537611;180132646;176588047;175203884;172718297;170143725;170607830;170875514;168193290;162791060;157489609;152788184;149123797;146046261;143303568;140399784;137859889;135363795;132859606;130403107;127993387;125629553;123310729;121020837;118775000;116571300;114410035;112289987;110272330;108291831;106347801;104439566;102566464;100652814;98775460;96933710;95126884;93354318;91634404;89946692;88290575
-41;'156;China, mainland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3327;2233;1959;1041;2503
-41;'156;China, mainland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;67;340;3593.16;3808;6967
-41;'156;China, mainland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;244;45;708;1560.15;892;1073
-41;'156;China, mainland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;90;638;510;747;642;446
-41;'156;China, mainland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6684;3926;4307;2400;2800;800;1400;1500;100;6600;5600;5600;5600;5000;8000;24000;13000;2733;4212;3640;3546;7051;9790;8413;615;;;;;;;
-41;'156;China, mainland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;361;448;231;154;153;251;260;22;308;177;177;177;540;501;17480;688;377;229;175;197;1525;205;139;86;;;;;;;
-41;'156;China, mainland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25809;101111;34128;26000;9000;11000;7700;7700;41;8900;4000;4000;4000;1000;2000;1000;500;1767;1732;1239;618;66;979;644;412;;;;;;;
-41;'156;China, mainland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405;3744;2353;2228;868;1471;3459;3500;7;955;473;473;473;266;366;179;85;76;57;66;53;43;377;673;258;;;;;;;
-41;'156;China, mainland;1865;Industrial roundwood;5516;Production;m3;34000000;29000000;32000000;34000000;35000000;36000000;37100000;38000000;39000000;40100000;41200000;42200000;43800000;48570000;65677000;67610000;69891008;72396016;76496000;77577016;74292008;76619024;79676016;89425024;92740008;95135000;97047008;96590016;95119008;89677008;88238000;90931008;96867016;97521000;99769000;106857000;105185000;105576000;98500000;94560000;92000000;91260000;93200000;93200000;93200000;93200000;100429000;123510000;146088000;160347000;159462000;158096000;167214000;161017000;147228000;162965000;161711000;169639000;147366000;166397000;165881000;169978000;169978000
-41;'156;China, mainland;1865;Industrial roundwood;5616;Import quantity;m3;166000;293900;521500;537300;1572800;1492800;1492000;1529000;1507000;1511000;1483000;201000;605000;840000;840000;1094200;875700;824400;824400;1828600;1308400;3713000;6000000;7200000;8380000;6500000;6200000;7951000;6444400;3865000;4181805;4393071;3632522;3725270;3597006;3185500;4667200;5132200;10126500;13614200;16863400;24331000;25410000;26073028;29368000;32143000;37100000;32092098;28054023;35501904;42302926;37809698;44931581;51199590;49290930;51220000;55236640;59652910;60580000;59451770;63144270;43597928;38030000
-41;'156;China, mainland;1865;Industrial roundwood;5622;Import value;1000 USD;4630;8400;14770;15200;44200;44750;44490;45400;45000;45100;44500;5477;18505;30194;30194;55560;51060;49260;49860;106200;100200;306000;494000;595900;673893;526000;510000;683000;601292;415223;470701;491606;507437;513825;459798;457780;752473;617712;1101297;1655285;1693841;2138101;2433837;2636221;3243538;3927392;5349287;4755815;4084814;6059997;8270563;7236213;9276047;11855347;7993347;8350000;9908906;10985597;9447500;8400712;11593135;8531517;6386920
-41;'156;China, mainland;1865;Industrial roundwood;5916;Export quantity;m3;4900;6100;4300;6600;3000;6600;8300;5500;3200;4500;32200;47900;47900;47900;47900;47800;52500;29600;30000;37000;24200;34000;25000;9000;9000;31100;55200;132400;43200;371000;634158;693754;646606;631063;459563;65300;63000;25300;25700;27000;17746;11000;9417;4000;6927;4282;4066;5989;12736;28382;14380;9959;24134;21954;19749;152656;96848;79176;58318;40961;16765;90782;38800
-41;'156;China, mainland;1865;Industrial roundwood;5922;Export value;1000 USD;85;105;75;360;135;420;466;276;161;260;7839;11300;11300;11300;11300;10481;14081;7800;8000;9900;6500;9200;6800;2450;2450;11268;22802;64205;5324;35102;48514;56631;70906;57024;64460;30739;29473;9841;9317;7937;5552;3175;2887;1023;2041;1369;1211;2519;4580;10526;6768;2983;8043;8898;4702;30621;32519;26538;18794;8001;4791;24384;6467
-41;'156;China, mainland;1866;Industrial roundwood, coniferous;5516;Production;m3;21120000;17960000;19790000;21110000;21660000;22330000;23010000;23550000;24180000;24860000;25550000;26150000;27150000;30650000;41269000;42497000;43944008;45531008;48116000;48978008;46499008;47994016;49913008;55979016;58103008;59615000;60844008;60590016;58294008;57388008;56470000;58173008;61939008;62370000;63794000;68360000;67595000;67560000;63040000;60720000;58900000;58400000;59660000;59660000;59660000;59660000;33471000;31938000;33364000;30411000;28308000;25558000;28417000;24630000;28624000;26933000;25447000;28362000;28362000;28362000;28362000;29063000;29063000
-41;'156;China, mainland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500000;2675857;2243090;1513656;1197264;1000000;639400;941200;1480200;4566000;6400700;9141900;15781000;14974000;16003000;18270000;19708000;23238000;21099458;20297352;25429000;31442389;26685597;32931710;35785000;34782240;36500000;38236640;41612910;45260000;46811770;49876430;31160000;28100000
-41;'156;China, mainland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366057;267433;195754;166242;97537;82510;45154;64915;94406;277297;378859;541778;997006;941845;1168376;1387977;1711744;2398332;1986742;2232726;3229483;4861114;3745303;5070178;5457213;3599054;4380000;5138906;5785597;5657500;5463281;7879405;4985600;3765400
-41;'156;China, mainland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;136000;214609;146385;231500;60000;11000;46000;4300;1600;1000;646;0;417;0;742;113;66;100;178;174;41;6390;11006;9268;3242;8403;4224;6521;7554;7663;4808;32184;32184
-41;'156;China, mainland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2846;1349;13713;14519;21143;28579;5382;22984;2182;750;231;178;0;57;0;91;94;17;21;65;51;38;1259;1386;1134;562;828;2319;2856;3413;1513;1085;4182;4182
-41;'156;China, mainland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500000;2675857;2243090;1513656;1197264;1000000;639400;941200;1480200;4566000;6400700;9141900;15781000;14974000;16003000;18270000;19708000;23238000;21099458;20297352;25429000;31442389;26685597;32931710;35785000;34782240;36500000;38236640;41612910;45260000;46811770;49876430;31160000;28100000
-41;'156;China, mainland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366057;267433;195754;166242;97537;82510;45154;64915;94406;277297;378859;541778;997006;941845;1168376;1387977;1711744;2398332;1986742;2232726;3229483;4861114;3745303;5070178;5457213;3599054;4380000;5138906;5785597;5657500;5463281;7879405;4985600;3765400
-41;'156;China, mainland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;136000;214609;146385;231500;60000;11000;46000;4300;1600;1000;646;0;417;0;742;113;66;100;178;174;41;6390;11006;9268;3242;8403;4224;6521;7554;7663;4808;32184;32184
-41;'156;China, mainland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2846;1349;13713;14519;21143;28579;5382;22984;2182;750;231;178;0;57;0;91;94;17;21;65;51;38;1259;1386;1134;562;828;2319;2856;3413;1513;1085;4182;4182
-41;'156;China, mainland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;12880000;11040000;12210000;12890000;13340000;13670000;14090000;14450000;14820000;15240000;15650000;16050000;16650000;17920000;24408000;25113000;25947000;26865008;28380000;28599008;27793000;28625008;29763008;33446008;34637000;35520000;36203000;36000000;36825000;32289000;31768000;32758000;34928008;35151000;35975000;38497000;37590000;38016000;35460000;33840000;33100000;32860000;33540000;33540000;33540000;33540000;66958000;91572000;112724000;129936000;131154000;132538000;138797000;136387000;118604000;136032000;136264000;141277000;119004000;138035000;137519000;140915000;140915000
-41;'156;China, mainland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365000;1505948;2149981;2118866;2528006;2597006;2546100;3726000;3652000;5560500;7213500;7721500;8550000;10436000;10070028;11098000;12435000;13862000;10992640;7756671;10072904;10860537;11124101;11999871;15414590;14508690;14720000;17000000;18040000;15320000;12640000;13267840;12437928;9930000
-41;'156;China, mainland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49166;203268;295852;341195;416288;377288;412626;687558;523306;824000;1276426;1152063;1141095;1491992;1467845;1855561;2215648;2950955;2769073;1852088;2830514;3409449;3490910;4205869;6398134;4394293;3970000;4770000;5200000;3790000;2937431;3713730;3545917;2621520
-41;'156;China, mainland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343000;498158;479145;500221;399563;399563;54300;17000;21000;24100;26000;17100;11000;9000;4000;6185;4169;4000;5889;12558;28208;14339;3569;13128;12686;16507;144253;92624;72655;50764;33298;11957;58598;6616
-41;'156;China, mainland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32256;47165;42918;56387;35881;35881;25357;6489;7659;8567;7706;5374;3175;2830;1023;1950;1275;1194;2498;4515;10475;6730;1724;6657;7764;4140;29793;30200;23682;15381;6488;3706;20202;2285
-41;'156;China, mainland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329000;1309819;1689648;1595000;2030000;2099000;2079000;2852000;2761000;4796500;6180000;6952300;6951000;7617000;7335000;7180000;7558000;7957000;7143649;6101210;8101687;8333297;8650072;9342189;11789500;11512950;10100000;10500000;11300000;9660000;8580000;7925202;7293682;5710000
-41;'156;China, mainland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45023;180322;232507;268000;345000;306000;358915;505154;378916;700000;935213;956402;907949;1109513;1213599;1247121;1487361;1932164;1978218;1505017;2357100;2793974;2928322;3577887;5466533;3463026;2920000;3350000;3590000;2690000;1970000;2287237;1918983;1513150
-41;'156;China, mainland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;11600;8000;4000;4000;450;0;0;2889;1649;209;194;241;393;526;740;26010;86300;59708;41259;28131;11957;58598;6616
-41;'156;China, mainland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3937;3560;2212;1023;1023;90;0;0;1533;653;63;134;162;186;298;508;5621;27619;20637;12906;5672;3706;20202;2285
-41;'156;China, mainland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;196129;460333;523866;498006;498006;467100;874000;891000;764000;1033500;769200;1599000;2819000;2735028;3918000;4877000;5905000;3848991;1655461;1971217;2527240;2474029;2657682;3625090;2995740;4620000;6500000;6740000;5660000;4060000;5342638;5144246;4220000
-41;'156;China, mainland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4143;22946;63345;73195;71288;71288;53711;182404;144390;124000;341213;195661;233146;382479;254246;608440;728287;1018791;790855;347071;473414;615475;562588;627982;931601;931267;1050000;1420000;1610000;1100000;967431;1426493;1626934;1108370
-41;'156;China, mainland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343000;498158;479145;500221;399563;399563;54300;17000;21000;24100;12000;5500;3000;5000;0;5735;4169;4000;3000;10909;27999;14145;3328;12735;12160;15767;118243;6324;12947;9505;5167;0;0;0
-41;'156;China, mainland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32256;47165;42918;56387;35881;35881;25357;6489;7659;8567;3769;1814;963;1807;0;1860;1275;1194;965;3862;10412;6596;1562;6471;7466;3632;24172;2581;3045;2475;816;0;0;0
-41;'156;China, mainland;1868;Sawlogs and veneer logs;5516;Production;m3;18000000;16000000;17500000;18500000;19000000;19500000;20000000;20500000;21000000;21500000;22000000;22500000;23500000;26400000;41290000;42000000;43000008;44160016;46850000;46690016;42490000;43350016;44810016;52310016;53410000;54094000;54094000;53347008;51614000;45615000;44880000;47573008;51346016;52000000;56100000;60000000;58688000;59136000;55160000;53200000;51500000;51160000;52200000;52200000;52200000;52200000;46573000;54378000;68148000;74397000;66854000;63192000;88219000;78049000;79915000;89991000;86448000;85754000;63481000;82512000;81996000;84021000;84021000
-41;'156;China, mainland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;166000;293900;521500;537300;1572800;1492800;1492000;1529000;1507000;1511000;1483000;201000;605000;840000;840000;1094200;875700;824400;824400;1828600;1308400;3713000;6000000;7200000;8380000;6500000;6200000;7951000;6444400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;4630;8400;14770;15200;44200;44750;44490;45400;45000;45100;44500;5477;18505;30194;30194;55560;51060;49260;49860;106200;100200;306000;494000;595900;673893;526000;510000;683000;601292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;4900;6100;4300;6600;3000;6600;8300;5500;3200;4500;32200;47900;47900;47900;47900;47800;52500;29600;30000;37000;24200;34000;25000;9000;9000;31100;55200;132400;43200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;85;105;75;360;135;420;466;276;161;260;7839;11300;11300;11300;11300;10481;14081;7800;8000;9900;6500;9200;6800;2450;2450;11268;22802;64205;5324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;11200000;9900000;10800000;11500000;11800000;12100000;12400000;12700000;13020000;13330000;13640000;13950000;14570000;16280000;25462000;25900000;26517008;27233008;28904000;28989008;25952000;26505008;27397008;31983008;32656000;33074000;33074000;32617008;30138000;28842000;28380000;30083008;32469008;32900000;35500000;38000000;37728000;38016000;35460000;34400000;33100000;32900000;33560000;33560000;33560000;33560000;15522000;14061000;15564000;14110000;11868000;10216000;14992000;11939000;15537000;14870000;11609000;12939000;12939000;12939000;12939000;13259000;13259000
-41;'156;China, mainland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;133400;222300;459200;478300;1510000;1451000;1451000;1451000;1451000;1451000;1451000;120000;490000;586000;586000;586200;367700;316400;316400;572600;1005400;2995000;5300000;6700000;7500000;5900000;5500000;7500000;6053000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;3750;6250;12900;13400;42300;43500;43500;43500;43500;43500;43500;2977;13405;15394;15394;20000;15500;13700;14300;27000;80500;239000;429000;549400;615000;484000;460000;650000;537000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;4600;4100;3700;4300;2600;3000;6400;3900;2300;2500;24500;31700;31700;31700;31700;31600;31600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;75;65;60;170;100;120;300;138;82;90;6519;8500;8500;8500;8500;7681;7681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6800000;6100000;6700000;7000000;7200000;7400000;7600000;7800000;7980000;8170000;8360000;8550000;8930000;10120000;15828000;16100000;16483000;16927008;17946000;17701008;16538000;16845008;17413008;20327008;20754000;21020000;21020000;20730000;21476000;16773000;16500000;17490000;18877008;19100000;20600000;22000000;20960000;21120000;19700000;18800000;18400000;18260000;18640000;18640000;18640000;18640000;31051000;40317000;52584000;60287000;54986000;52976000;73227000;66110000;64378000;75121000;74839000;72815000;50542000;69573000;69057000;70762000;70762000
-41;'156;China, mainland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;32600;71600;62300;59000;62800;41800;41000;78000;56000;60000;32000;81000;115000;254000;254000;508000;508000;508000;508000;1256000;303000;718000;700000;500000;880000;600000;700000;451000;391400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;880;2150;1870;1800;1900;1250;990;1900;1500;1600;1000;2500;5100;14800;14800;35560;35560;35560;35560;79200;19700;67000;65000;46500;58893;42000;50000;33000;64292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;300;2000;600;2300;400;3600;1900;1600;900;2000;7700;16200;16200;16200;16200;16200;20900;29600;30000;37000;24200;34000;25000;9000;9000;31100;55200;132400;43200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;10;40;15;190;35;300;166;138;79;170;1320;2800;2800;2800;2800;2800;6400;7800;8000;9900;6500;9200;6800;2450;2450;11268;22802;64205;5324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6312000;5910000;5640000;5500000;5400000;5600000;5600000;5600000;5600000;11821000;17618000;20009000;19294000;23850000;23449000;34239000;26262000;30655000;32396000;33410000;37237000;37237000;37237000;37237000;38157000;38157000
-41;'156;China, mainland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200000;3940000;3760000;3700000;3600000;3700000;3700000;3700000;3700000;3940000;4556000;4570000;3659000;4234000;3791000;5819000;4017000;5960000;5355000;5913000;6590000;6590000;6590000;6590000;6753000;6753000
-41;'156;China, mainland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112000;1970000;1880000;1800000;1800000;1900000;1900000;1900000;1900000;7881000;13062000;15439000;15635000;19616000;19658000;28420000;22245000;24695000;27041000;27497000;30647000;30647000;30647000;30647000;31404000;31404000
-41;'156;China, mainland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1500000;1300000;1400000;1400000;1500000;1600000;1700000;1800000;1900000;2000000;2100000;2200000;2300000;3370000;3707000;3892000;4087000;4292000;4505000;4490000;4086000;4168000;4309000;5030000;5640000;5667000;5810000;6100000;6362000;6919000;6809000;6809000;6809000;6809000;6219000;6673000;6673000;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;930000;810000;870000;870000;930000;990000;1060000;1110000;1180000;1240000;1300000;1360000;1420000;2370000;2607000;2737000;2874000;3018000;3168000;3143000;2860000;2918000;3016000;3521000;3948000;3967000;4067000;4270000;4453000;4843000;4766000;4766000;4766000;4766000;4394000;4715000;4715000;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;570000;490000;530000;530000;570000;610000;640000;690000;720000;760000;800000;840000;880000;1000000;1100000;1155000;1213000;1274000;1337000;1347000;1226000;1250000;1293000;1509000;1692000;1700000;1743000;1830000;1909000;2076000;2043000;2043000;2043000;2043000;1825000;1958000;1958000;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1871;Other industrial roundwood;5516;Production;m3;14500000;11700000;13100000;14100000;14500000;14900000;15400000;15700000;16100000;16600000;17100000;17500000;18000000;18800000;20680000;21718000;22804000;23944000;25141000;26397000;27716008;29101008;30557000;32085008;33690008;35374000;37143008;37143008;37143008;37143008;36549000;36549000;38712000;38712000;37450000;40184000;39824000;40128000;37430000;35720000;35000000;34700000;35400000;35400000;35400000;35400000;42035000;51514000;57931000;66656000;68758000;71455000;44756000;56706000;36658000;40578000;41853000;46648000;46648000;46648000;46648000;47800000;47800000
-41;'156;China, mainland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;8990000;7250000;8120000;8740000;8930000;9240000;9550000;9740000;9980000;10290000;10610000;10840000;11160000;12000000;13200000;13860000;14553000;15280000;16044000;16846000;17687008;18571008;19500000;20475008;21499008;22574000;23703008;23703008;23703008;23703008;23324000;23324000;24704000;24704000;23900000;25645000;25152000;25344000;23640000;22560000;22100000;21900000;22400000;22400000;22400000;22400000;14009000;13321000;13230000;12642000;12206000;11551000;7606000;8674000;7127000;6708000;7925000;8833000;8833000;8833000;8833000;9051000;9051000
-41;'156;China, mainland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;5510000;4450000;4980000;5360000;5570000;5660000;5850000;5960000;6120000;6310000;6490000;6660000;6840000;6800000;7480000;7858000;8251000;8664000;9097000;9551000;10029000;10530000;11057000;11610000;12191000;12800000;13440000;13440000;13440000;13440000;13225000;13225000;14008000;14008000;13550000;14539000;14672000;14784000;13790000;13160000;12900000;12800000;13000000;13000000;13000000;13000000;28026000;38193000;44701000;54014000;56552000;59904000;37150000;48032000;29531000;33870000;33928000;37815000;37815000;37815000;37815000;38749000;38749000
-41;'156;China, mainland;1630;Wood charcoal;5510;Production;t;1652467;1665829;1679299;1692878;1706568;1720367;1734279;1748302;1762440;1776691;1791558;1827702;1833301;1877016;1874667;1962931;1966745;1931236;1931233;1925701;1949110;1948605;1936590;1902327;1878686;1883661;1875467;1866763;1898088;1928852;1929107;1904372;1865802;1847018;1842574;1837997;1842503;1832624;1820326;1779939;1773698;1767479;1761281;1755106;1748952;1748952;1733200;1725400;1717640;1709900;1700635;1691421;1682257;1673142;1664077;1650518;1637071;1623733;1610503;1597382;1583957;1570644;1557444
-41;'156;China, mainland;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2199;551;176;2800;700;1000;3100;3100;25000;31300;22000;27000;31000;43000;39000;75000;136000;156677;175757;188695;167000;210000;219631;172800;159000;170790;298037;411652;287681;261846.61;557194;666631
-41;'156;China, mainland;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;197;78;388;126;375;665;665;1553;2730;1283;2051;2809;6070;5922;9911;14663;17541;22985;44844;58030;60000;61842;50057;46031;50005;87121;97656;69562;87351.21;181339;209183
-41;'156;China, mainland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13248;8277;15351;26000;32700;46000;46800;39000;81500;97700;104000;107000;68000;37000;47000;43000;51000;43871;50510;51317;64000;76000;56630;74100;68000;60362;60647;61864;50017;59093.31;49989;50813
-41;'156;China, mainland;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3254;3617;7251;16663;18275;27009;26181;29709;42577;54709;56191;63494;39067;22501;26111;20114;22979;20262;28492;29415;44420;60000;58336;108964;101677;84852;80387;82425;90680;111273.15;80989;59636
-41;'156;China, mainland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9655000;9655000;11985000;13570000;17180000;36748000;47008000;38177000;40408000;47744000;79008000;94858000;108735000;112360000;118070000;133355000;134141000;125858000;137761000;137381000;148381000;148381000;148381000;148381000;148381000;148381000
-41;'156;China, mainland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131400;142800;90700;79300;111000;411000;462000;1204000;1223000;1556400;1435000;4452032;7437311;10540479;12141434;14659128;14164694;15711860;18536041;12003597;13487003;13215003;14226931;16521053;19492320;15421973
-41;'156;China, mainland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5884;5877;4949;4629;7388;33476;43122;124375;121097;160414;184274;355355;675372;1161197;1332624;1554778;1545352;1691467;1928870;1906142;2264929;2402298;2266394;2264870;4025498;2944001
-41;'156;China, mainland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520600;2392000;2784400;2844800;2085000;1537000;1466000;1213000;851000;361000;193000;63467;79394;58625;28884;56084;189706;71237;32913;2205;4021;6501;11192;9992.63;6322;8969
-41;'156;China, mainland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121241;114701;122668;105902;91305;96608;103007;95466;67640;30043;15859;5465;6496;6161;4331;7425;21210;10517;5973;1052;1627;2012;3356;3151.75;3953;3547
-41;'156;China, mainland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4365000;4365000;2985000;3570000;4180000;17748000;24008000;12177000;8408000;9744000;10008000;12858000;18735000;22360000;29070000;39355000;43141000;42858000;45761000;44381000;44381000;44381000;44381000;44381000;44381000;44381000
-41;'156;China, mainland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36368;4006;5938;4300;19800;4700;2400;2800;18000;58000;70000;372000;403000;1159000;1191000;1522000;1406000;4424917;7410726;10504525;12128391;14651419;14158963;15704656;18512060;11969211;13477928;13192954;14201955;16516669;19491005;15421857
-41;'156;China, mainland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2881;419;613;451;1460;1029;1234;1300;1466;3873;6184;31878;39929;122141;119140;158338;182490;353709;673817;1159600;1331784;1554275;1544948;1691083;1927984;1905444;2263471;2400166;2264617;2263913;4025371;2943998
-41;'156;China, mainland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432900;791600;751499;1183567;1810187;3038500;2731900;2891300;2513000;2369000;2774800;2834000;2075000;1513000;1455000;1171000;793000;285000;97000;11596;8547;8151;111;111;68;136;8853;472;368;75;976;768;877;715
-41;'156;China, mainland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23576;44968;43355;62036;81935;217899;184221;154747;120866;114000;122152;105380;90730;95223;102486;92893;64321;25249;9034;887;558;726;30;57;21;102;823;707;478;198;1120;620;1148;921
-41;'156;China, mainland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192000;1880000;2520000;9280000;4460000;5290000;5290000;5290000;9000000;10000000;13000000;19000000;23000000;26000000;32000000;38000000;69000000;82000000;90000000;90000000;89000000;94000000;91000000;83000000;92000000;93000000;104000000;104000000;104000000;104000000;104000000;104000000
-41;'156;China, mainland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176869;114526;86768;118400;128700;81000;129000;140000;72700;21300;41000;39000;59000;45000;32000;34400;29000;27115;26585;35954;13043;7709;5731;7204;23981;34386;9075;22049;24976;4384;1315;116
-41;'156;China, mainland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8219;4327;1641;2799;3283;1748;4650;4577;3483;756;1204;1598;3193;2234;1957;2076;1784;1646;1555;1597;840;503;404;384;886;698;1458;2132;1777;957;127;3
-41;'156;China, mainland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9289;23549;25106;17400;24600;23000;7600;23000;9600;10800;10000;24000;11000;42000;58000;76000;96000;51871;70847;50474;28773;55973;189638;71101;24060;1733;3653;6426;10216;9224.63;5445;8254
-41;'156;China, mainland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;1340;1397;1145;1666;1701;375;701;516;522;575;1385;521;2573;3319;4794;6825;4578;5938;5435;4301;7368;21189;10415;5150;345;1149;1814;2236;2531.75;2805;2626
-41;'156;China, mainland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000000;2000000;2000000;2400000;2500000;5800000;7000000
-41;'156;China, mainland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;200000;370000;485100;485100;893000;893000;893000;893000;893000;893000;893000
-41;'156;China, mainland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;265;60064;21212;31;17315;5365;5365;1032;1032
-41;'156;China, mainland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;47;5761;1851;14;3382;2047;2047;1017;1017
-41;'156;China, mainland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2728;3293;163209;49580;22306;22665;22049;23924;17123;18170.45;18290;24784
-41;'156;China, mainland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;817;25923;8781;3910;6509;6155;6104;5813;11934.11;13930;8831
-41;'156;China, mainland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;200000;370000;485100;485100;873000;873000;873000;873000;873000;873000;873000
-41;'156;China, mainland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;265;60064;18490;0;0;0;0;0;0
-41;'156;China, mainland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;47;5761;1665;0;0;0;0;0;0
-41;'156;China, mainland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2728;3293;163209;49580;22306;7680;4534;9644;4809;4302.67;8226;9482
-41;'156;China, mainland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;817;25923;8781;3910;1486;868;1550;1382;3277.17;4899;2968
-41;'156;China, mainland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000
-41;'156;China, mainland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2722;31;17315;5365;5365;1032;1032
-41;'156;China, mainland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;14;3382;2047;2047;1017;1017
-41;'156;China, mainland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14985;17515;14280;12314;13867.78;10064;15302
-41;'156;China, mainland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5023;5287;4554;4431;8656.94;9031;5863
-41;'156;China, mainland;1872;Sawnwood;5516;Production;m3;10328700;9610200;10509100;11108000;11514900;12015100;12533200;13023200;13524600;14030000;14530000;15030000;15530000;16025000;16102000;16935000;17811000;18702000;19635000;20615000;21644000;22725000;23489000;25380000;26760000;26050000;26050000;25988000;24664000;22743000;20104000;18900000;24851000;24745000;24745000;26552000;20124000;17875000;15859000;6434000;7638000;8520000;11300000;15325000;17903000;24865000;28291000;28400000;32298000;37200000;44600000;55700000;63000000;68370000;74304000;77200000;86000000;83618000;67455000;77427000;79517000;56990000;56990000
-41;'156;China, mainland;1872;Sawnwood;5616;Import quantity;m3;500;100;100;1900;500;500;;;;;;;;;;;;;;;;;;;154500;59000;77200;289400;123400;257300;222800;738561;1157483;938974;940500;1044800;1966000;1728000;1858000;3668900;4016100;5396000;5506000;6000000;5972000;6068000;6503000;7264858;9884987;14755695;21554614;20630944;24017777;23821390;26625158;32147000;37392100;36633090;38114155;33860000;29023320;26660000;26900000
-41;'156;China, mainland;1872;Sawnwood;5622;Import value;1000 USD;25;5;5;100;25;25;;;;;;;;;;;;;;;;;;;26366;9991;11289;42299;22238;54976;48492;106331;167479;160227;152352;153468;267806;364792;394000;993380;986693;1159097;1188742;1380791;1507851;1688513;1768080;2003102;2319271;3868899;5712356;5517484;6826291;7412521;7500045;8118593;10066153;10131133;8591131;7683700;7638706;7520608;6840226
-41;'156;China, mainland;1872;Sawnwood;5916;Export quantity;m3;10700;4800;5600;3400;3900;8900;12600;7200;6600;5400;104300;155600;109100;109100;109100;46100;40600;29300;25300;22500;25300;30300;28300;28300;49300;65900;42800;100700;71900;65200;100600;636911;341442;403111;567000;713700;389000;310000;309500;551000;433300;431000;523000;475000;616000;808000;747000;685269;555865;533249;538927;474438;454373;484651;347657;390278;281167;293859;191039;190829;288823;251783;163364
-41;'156;China, mainland;1872;Sawnwood;5922;Export value;1000 USD;425;206;250;133;138;350;454;262;240;201;19005;27454;8954;8954;8954;5050;7454;5827;4927;4527;5327;6627;6227;6327;11217;12548;10060;44572;41897;40183;58797;103850;144074;182859;295133;322449;193362;155618;154100;280082;195075;190046;233960;217544;278588;352847;389926;401404;345089;340435;358963;329491;323990;294815;205243;211366;202096;178533;165135;149675;189906;163171;119900
-41;'156;China, mainland;1632;Sawnwood, coniferous;5516;Production;m3;6414350;6005100;6504550;6904000;7107450;7407550;7716600;8011600;8312300;8615000;8915000;9215000;9515000;10015000;10092000;10624000;11184000;11743000;12329000;12945000;13591000;14270000;14750000;16492000;17388000;16928000;16928000;16888000;16027000;14778000;11526000;11180000;15294000;15229000;15229000;16341000;12074000;10725000;9515000;3860000;4853000;5112000;6780000;6425000;7506000;10425000;11861000;11900000;13533000;14900000;17900000;22300000;26500000;30458000;33102000;34400000;38300000;37239000;30041000;34482000;35413000;25380000;25380000
-41;'156;China, mainland;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;154500;59000;77200;162100;80400;180300;129200;155792;288566;221974;207500;174900;500000;402000;393000;508000;639600;1189000;1373000;1701000;1883000;2108000;2804000;3818969;6344089;9370718;14925550;14221365;16910216;14546390;17466320;21584000;25045810;24880140;28618440;24820000;19600320;17330000;17200000
-41;'156;China, mainland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;26366;9991;11289;22012;11734;36057;25837;19375;30778;19626;21292;23321;46145;56603;55000;84177;90902;166213;209251;280868;317130;379316;515484;701056;1098796;1824251;3100874;2852714;3612984;3167913;3401518;3777200;4876869;4991828;4920811;4393140;4336597;4049848;3528511
-41;'156;China, mainland;1632;Sawnwood, coniferous;5916;Export quantity;m3;10300;4700;5100;3300;3500;8500;12400;6900;6300;5100;39000;51800;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;25300;41900;18800;11300;13000;7100;30000;107167;55202;67787;136500;62900;71000;52000;38500;124000;83300;99000;165000;188000;271000;340000;282000;216289;197813;197497;221874;194503;193527;140000;113914;120000;114407;141477;92512;92869;128080;68709;58920
-41;'156;China, mainland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;400;200;220;125;130;330;438;236;214;175;13607;18727;227;227;227;227;227;227;227;227;227;227;227;227;4817;6148;3660;2572;4170;2846;13490;10466;13572;18154;49707;32614;37682;27197;20100;60953;48883;59984;79302;88200;112869;130688;130753;106234;112917;113808;128150;119104;116731;105700;75911;78240;71003;59446;62820;54227;65039;45741;34544
-41;'156;China, mainland;1633;Sawnwood, non-coniferous;5516;Production;m3;3914350;3605100;4004550;4204000;4407450;4607550;4816600;5011600;5212300;5415000;5615000;5815000;6015000;6010000;6010000;6311000;6627000;6959000;7306000;7670000;8053000;8455000;8739000;8888000;9372000;9122000;9122000;9100000;8637000;7965000;8578000;7720000;9557000;9516000;9516000;10211000;8050000;7150000;6344000;2574000;2785000;3408000;4520000;8900000;10397000;14440000;16430000;16500000;18765000;22300000;26700000;33400000;36500000;37912000;41202000;42800000;47700000;46379000;37414000;42945000;44104000;31610000;31610000
-41;'156;China, mainland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;500;100;100;1900;500;500;;;;;;;;;;;;;;;;;;;;;;127300;43000;77000;93600;582769;868917;717000;733000;869900;1466000;1326000;1465000;3160900;3376500;4207000;4133000;4299000;4089000;3960000;3699000;3445889;3540898;5384977;6629064;6409579;7107561;9275000;9158838;10563000;12346290;11752950;9495715;9040000;9423000;9330000;9700000
-41;'156;China, mainland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;25;5;5;100;25;25;;;;;;;;;;;;;;;;;;;;;;20287;10504;18919;22655;86956;136701;140601;131060;130147;221661;308189;339000;909203;895791;992884;979491;1099923;1190721;1309197;1252596;1302046;1220475;2044648;2611482;2664770;3213307;4244608;4098527;4341393;5189284;5139305;3670320;3290560;3302109;3470760;3311715
-41;'156;China, mainland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;400;100;500;100;400;400;200;300;300;300;65300;103800;103800;103800;103800;40800;35300;24000;20000;17200;20000;25000;23000;23000;24000;24000;24000;89400;58900;58100;70600;529744;286240;335324;430500;650800;318000;258000;271000;427000;350000;332000;358000;287000;345000;468000;465000;468980;358052;335752;317053;279935;260846;344651;233743;270278;166760;152382;98527;97960;160743;183074;104444
-41;'156;China, mainland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;25;6;30;8;8;20;16;26;26;26;5398;8727;8727;8727;8727;4823;7227;5600;4700;4300;5100;6400;6000;6100;6400;6400;6400;42000;37727;37337;45307;93384;130502;164705;245426;289835;155680;128421;134000;219129;146192;130062;154658;129344;165719;222159;259173;295170;232172;226627;230813;210387;207259;189115;129332;133126;131093;119087;102315;95448;124867;117430;85356
-41;'156;China, mainland;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600;8700;22600;41000;44000;74500;79000;79000;79000;79000;79000;252000;481000;712000;2949000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;2700000;2700000;2700000;2700000
-41;'156;China, mainland;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182961;261477;232800;341600;369200;452000;537000;399500;649000;334900;286000;223000;188000;151000;134000;130000;92160;72147;109247;199762;342126;598015;983708;996566;878102;737052;955979;1239665;1572101;3442382;2600156;2439619
-41;'156;China, mainland;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55473;75483;67677;77207;89958;168360;152593;113000;192257;95897;89383;95536;109000;121181;118163;135718;101199;63741;88104;118548;135133;142077;183902;162242;157744;156954;192250;228394;249395;379695;406397;345915
-41;'156;China, mainland;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6242;26419;16500;28100;32000;40400;45000;36300;53000;62300;93000;106000;104000;104000;144000;152000;167843;160044;197077;278739;240943;241102;298002;371287;329995;397326;427064;460352;432637;559473;442128;435460
-41;'156;China, mainland;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9472;13239;15282;28012;33265;43126;41539;33000;55669;70336;89297;110806;135000;128529;171508;200086;268150;265589;345084;304627;273585;269127;315979;440627;414404;436980;482477;525043;537631;769178;671928;623554
-41;'156;China, mainland;1873;Wood-based panels;5516;Production;m3;155000;155000;175000;200000;210000;236360;271890;292420;312950;240000;278000;317000;351000;339000;374000;381000;459000;625000;774000;914000;996000;1167000;1317000;1391000;1616000;1848000;2360000;2794000;2613000;2359000;2842000;4169000;5506000;6228000;13732000;10280000;13833000;9323000;13592000;17937000;21530000;31261000;47286000;55411000;63866000;72598000;84989000;90236000;102314000;113604000;128023000;137390000;155283000;152480000;149828000;153540000;148783000;145052000;152406000;154541000;154762000;155798000;165557000
-41;'156;China, mainland;1873;Wood-based panels;5616;Import quantity;m3;;;;;100;100;100;200;200;200;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000;190000;190000;194000;451000;309000;198300;656000;747400;1076000;1377000;1463200;2128506;2141810;2452647;2578900;2434600;2689000;3057700;2462100;3536000;2783100;3188000;3404669;3183789;2618000;2096000;1410000;1083392;1012724;1109873;1001205;820163;870581;870383;861381;1137145;1519421;1504083;1450006;1595673;1500800.91;1519828;1549051
-41;'156;China, mainland;1873;Wood-based panels;5622;Import value;1000 USD;;;;;15;15;15;30;30;30;239;956;956;956;956;956;956;956;956;956;56910;56900;58760;116567;77097;54619;180000;355471;421727;524750;560993;689673;817974;896495;835544;724768;739913;694662;533183;785285;617244;667054;789239;679265;621410;494618;445650;399288;304430;353968;347959;307893;308457;350042;370499;448926;487733;537327;490986;494861;609598.3;695601;590055
-41;'156;China, mainland;1873;Wood-based panels;5916;Export quantity;m3;8900;21000;24200;23200;24700;20700;30000;15800;32500;9200;;;;;;;;;;;;;;;;;;;;;;97259;110291;146832;213000;291300;503700;200900;105800;777500;1028300;1964000;2217200;4773641;7236000;10641000;10914000;10118060;7882628;9730430;12713452;13615154;13479399;12594730;13363157;13191147;13973010;12103903;10791584;10484929;15039791.63;13979331;14385353
-41;'156;China, mainland;1873;Wood-based panels;5922;Export value;1000 USD;1200;2700;3100;3480;3700;3100;4500;2400;4900;1400;;;;;;;;;;;;;;;;;;;;;;30971;43465;44549;53898;84259;170013;71887;35682;208034;257636;469524;537799;1395559;2252894;3517039;4698500;4540941;3379474;4496666;5770146;6404512;6566701;7469384;6958038;6905949;6356135;6652416;5074741;4808080;6977072.87;7141715;6210384
-41;'156;China, mainland;1640;Plywood and LVL;5516;Production;m3;105000;85000;90000;100000;100000;110000;120000;130000;140000;170000;172000;182000;188000;176000;192000;184000;209000;252000;292000;330000;351000;394000;455000;490000;539000;611000;776000;827000;728000;759000;1054000;1565000;2125000;2610000;7590000;4900000;7584000;4465000;7276000;9925000;12400000;20000000;30600000;33400000;37500000;39500000;49400000;49800000;53700000;58500000;65600000;67600000;73900000;68000000;65100000;61900000;59400000;54900000;56600000;58986000;56561000;58194000;57683000
-41;'156;China, mainland;1640;Plywood and LVL;5616;Import quantity;m3;;;;;100;100;100;200;200;200;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000;190000;190000;194000;451000;309000;198300;656000;747400;1076000;1377000;1463200;2036460;1905981;2177200;2082900;1775100;1488000;1620000;1042400;1002000;651300;636000;749669;799000;589000;413000;304000;334392;197573;210186;182560;175339;147018;171022;139747;206000;190595;158884;135544;170833;156740;184980;300229
-41;'156;China, mainland;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;15;15;15;30;30;30;239;956;956;956;956;956;956;956;956;956;56910;56900;58760;116567;77097;54619;180000;355471;421727;524750;560993;660547;762179;832520;773676;643825;605492;530800;371000;436808;254445;259957;355124;279650;276681;197174;170383;167014;96000;115032;118613;119155;101841;131846;121068;138222;111911;153274;125580;129439;152324;188000;205699
-41;'156;China, mainland;1640;Plywood and LVL;5916;Export quantity;m3;8900;21000;24200;23200;24700;20700;30000;15800;32500;9200;;;;;;;;;;;;;;;;;;;;;;65308;80412;102900;129000;176800;438000;161000;66000;689500;965400;1792000;2040000;4302000;5540000;8243000;8716000;7185060;5567362;7254651;9270371;9767306;10028749;8965052;10094280;10147060;10903740;9393266;8241476;8052362;11053950;10679700;10786500
-41;'156;China, mainland;1640;Plywood and LVL;5922;Export value;1000 USD;1200;2700;3100;3480;3700;3100;4500;2400;4900;1400;;;;;;;;;;;;;;;;;;;;;;23383;33576;31635;39068;62286;151509;61178;25000;188942;242290;427048;495433;1249000;1838431;2856074;3577941;3400530;2469457;3341026;4285728;4730367;4962911;5731808;5415309;5554776;5114262;5425911;4037245;3815456;5339469;5542712;4747642
-41;'156;China, mainland;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;500000
-41;'156;China, mainland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7387;6093
-41;'156;China, mainland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4648;2984
-41;'156;China, mainland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489865;487358
-41;'156;China, mainland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292775;226343
-41;'156;China, mainland;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;15000;15000;15000;15000;19000;27000;32000;30000;27000;27000;29000;44000;53000;78000;77000;103000;127000;165000;182000;210000;378000;483000;442000;428000;614000;1159000;1571000;1680000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15200;85838;55700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3760;13402;9777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6078;2860;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1504;857;1353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4350000;3380000;3604000;2663000;2410000;2868000;3450000;3693000;5474000;6429000;5761000;8433000;8291000;11422000;14310000;12492000;12548000;12741000;18700000;20880000;20300000;26500000;27780000;29500000;30500000;29432000;32058000;36141000;43908000
-41;'156;China, mainland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55200;107700;148000;156000;138000;344000;448000;527000;557740;598789;578000;491000;428000;301000;381262;454493;422250;359686;382251;281538;301976;445989;801142;859285;774609;873139;851322.99;900542;915750
-41;'156;China, mainland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11574;19971;28484;29679;28000;65595;83714;90209;97887;106643;103517;90566;81752;66399;75254;91913;86723;73147;71479;52445;97126;129694;167427;179899;166629;181858;237449.42;310865;266437
-41;'156;China, mainland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;10500;17400;11000;10900;26000;25000;48000;71696;125000;92000;136000;162000;175000;103171;136866;133649;149584;144707;117590;192153;209361;192381;212953;234834;247090;462996.15;440939;451243
-41;'156;China, mainland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2798;4694;9266;4727;4700;8879;6068;21392;20743;21517;17494;24210;30796;40921;21067;34675;41219;52476;64238;74194;100824;105549;76125;72684;72727;131600;293408.31;350478;223264
-41;'156;China, mainland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;150000;150000;150000;150000;200000;300000;700000;1580000;1860000;3310000;3860000;5540000;6940000;11340000
-41;'156;China, mainland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;67260;75000;57000;51000;97000;74000;65680;84507;124750;90802;102559;148501;174543;223026;277603;207115;279232;335862;303978.16;311604;264663
-41;'156;China, mainland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14246;15337;20000;11944;11164;24600;25460;13646;22370;35509;21888;28205;44611;43893;55500;73337;62655;67584;75838;86481.24;99156;69152
-41;'156;China, mainland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2204;6000;3000;6000;18000;18000;21829;29134;35368;36355;66798;131164;66454;84551;119672;143596;112646;140451;456199.22;135482;164312
-41;'156;China, mainland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;377;919;902;973;3962;4952;5655;6712;7596;8065;15810;32433;15275;16981;23064;35305;23157;31841;134850.24;39050;48143
-41;'156;China, mainland;1874;Fibreboard;5516;Production;m3;50000;70000;85000;100000;110000;126360;136890;147420;157950;55000;87000;108000;131000;133000;155000;170000;221000;329000;429000;506000;568000;670000;735000;736000;895000;1027000;1206000;1484000;1443000;1172000;1174000;1445000;1810000;1938000;1792000;2000000;2645000;2195000;3906000;5144000;5680000;7568000;11212000;15582000;20605000;24665000;27298000;29014000;34304000;42462000;49725000;56899000;62533000;63400000;64128000;64440000;60023000;58792000;61996000;62263000;60603000;54523000;52626000
-41;'156;China, mainland;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76846;149991;219747;440800;551800;1053000;1281700;1281700;2190000;1683800;1962000;2030000;1711000;1394000;1141000;581000;374000;368209;360687;271645;194336;238753;269322;245115;262130;250081;278799;260621;215839;188759.76;122702;68409
-41;'156;China, mainland;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25366;42393;54198;50294;60972;105937;134183;134183;282882;279085;302642;320891;272972;229268;195714;168915;140415;119530;124653;107114;93703;106932;121140;108412;125510;135058;141499;131193;107726;133343.64;97580;48767
-41;'156;China, mainland;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25873;27019;39932;75700;104000;48300;28900;28900;62000;37900;121000;103300;340641;1601000;2256000;2018000;2740000;2190266;2309779;3274064;3661909;3239145;3380924;3010270;2750175;2757217;2354088;2202628;2045026;3066646.26;2723210;2983298
-41;'156;China, mainland;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6084;9032;11561;12032;17279;9238;5982;5982;10213;9278;20536;21246;124123;396067;635782;1085801;1094538;883295;1114253;1435603;1613604;1523742;1630949;1426630;1228643;1142684;1118516;941612;829183;1209345.31;1209475;1191335
-41;'156;China, mainland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132000;1220000;1564000;1298000;2310000;3042000;455000;617000;647000;561000;1121000;1662000;1854000;1399000;2885000;3343000;5049000;6541000;8067000;6113000;5967000;5176000;3493000;3421000;3700000;3700000;3850000;3850000;3850000
-41;'156;China, mainland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44200;42500;59000;75700;75700;233000;224200;181000;163000;85000;72000;67000;15000;12000;6005;9986;10613;6409;7005;11025;12228;19518;22625;20733;15505;13906;25671.69;23569;9168
-41;'156;China, mainland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537;8697;21551;31596;31596;119847;107411;77311;62215;39385;36518;34583;9190;8394;4988;7667;8543;6524;7793;11554;12500;19499;23514;22526;18143;15165;23340.07;22532;9470
-41;'156;China, mainland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27700;36000;16300;7400;7400;13000;7400;10000;17000;103002;459000;836000;386000;361000;267740;302486;323745;273611;247531;261688;219648;225011;220963;195413;166127;140323;162381.09;141059;133228
-41;'156;China, mainland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5052;10380;4693;2160;2160;4502;2874;4543;9451;57796;239701;432939;220818;253987;181125;193249;211063;181285;157839;166271;133275;127539;116259;114037;91575;80367;102175.09;98671;87116
-41;'156;China, mainland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540000;700000;1059000;879000;1564000;2060000;5224000;6950000;10488000;14665000;18541000;22220000;24986000;27405000;31316000;38942000;44596000;50225000;53945000;56826000;57688000;59044000;56306000;55152000;58048000;58314000;56432000;50352000;48455000
-41;'156;China, mainland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31800;60000;66000;104000;104000;956000;685200;1035000;1417000;1326000;1112000;939000;323000;255000;354000;343204;256424;185005;199748;210297;177599;199199;182625;190874;203197;159614;147822;97108;58458
-41;'156;China, mainland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10132;10768;11472;19387;19387;92804;111981;165396;220715;208450;173446;148080;116897;111055;113150;115478;97369;86395;91942;96826;84795;97381;102945;106504;103727;83240;104878;74277;39058
-41;'156;China, mainland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6700;12000;4000;5800;5800;34000;16000;77000;46300;161000;972000;1246000;1470000;2334000;1916000;2000000;2945000;3383856;2981002;3102767;2783573;2498072;2523804;2136865;2010323;1892649;2896602.17;2575532;2844192
-41;'156;China, mainland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3611;2453;1688;1942;1942;3663;4167;11430;7166;55000;123151;184465;829930;824349;698070;915983;1219808;1427334;1356603;1453563;1290027;1079500;1015782;991322;840731;744622;1103335.22;1105597;1100059
-41;'156;China, mainland;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;120000;80000;22000;18000;32000;42000;1000;1000;77000;356000;943000;783000;458000;210000;103000;177000;80000;133000;521000;461000;473000;220000;224000;219000;248000;249000;321000;321000;321000
-41;'156;China, mainland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53281;90506;148601;364800;449300;928000;1102000;1102000;1001000;774400;746000;450000;300000;210000;135000;243000;107000;8204;7497;4608;2922;32000;48000;55288;43413;44831;67192;41919;42319;15266.07;2025;783
-41;'156;China, mainland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17587;23275;32570;27625;41507;72914;83200;83200;70231;59693;59935;37961;25137;19304;13051;42828;20966;1392;1508;1202;784;7197;12760;11117;8630;8599;12469;9323;9321;5125.57;771;239
-41;'156;China, mainland;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10513;11442;18151;41300;56000;28000;15700;15700;15000;14500;34000;40000;76639;170000;174000;162000;45000;6526;7293;5319;4442;10612;16469;7049;27092;12450;21810;26178;12054;7663;6619;5878
-41;'156;China, mainland;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2330;1960;4281;3369;4446;2857;1880;1880;2048;2237;4563;4629;11327;33215;18378;35053;16202;4100;5021;4732;4985;9300;11115;3328;21604;10643;13157;9306;4194;3835;5207;4160
-41;'156;China, mainland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;50000;70000;85000;100000;110000;126360;136890;147420;157950;55000;87000;108000;131000;133000;155000;170000;221000;329000;429000;506000;568000;670000;735000;736000;895000;1027000;1206000;1484000;1443000;1172000;1174000;1445000;1810000;1930000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23565;59485;71146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7779;19118;21628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15360;15577;21781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3754;7072;7280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1879;Total fibre furnish;5510;Production;t;2200000;2300000;2400000;2450000;2550000;2650000;2725000;2825000;2950000;3692000;3532000;3218000;3227000;3095000;3379000;3369000;3639000;4218000;4707000;5035000;5147000;5273000;5873000;7138000;9813000;11079000;14083000;15984000;15989000;16685000;18085000;19797000;21912000;26481000;32006000;21736000;26130000;26280000;28510000;25016000;23513000;28181000;30005000;32029000;34321000;40791000;46723000;50966500;54013000;60215000;64205000;63568000;60473000;65585000;64781000;65599000;69326000;67215000;70994000;75119000;88532000;93150000;96233565
-41;'156;China, mainland;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;119940;41640;72600;187400;187400;187400;197400;200700;196300;141600;141300;125300;372000;491100;421600;631000;783000;665000;798000;960000;1171000;978400;736300;1243500;1343892;1107007;1464996;1810800;2845100;3076500;4035800;5423800;6722300;11085900;11917000;15115264;18508856;20895700;27171000;30490100;33215000;40305484;34738064;40566668;44932244;44271971;43387434;46871658;47304957;46827329;38682915;33571711;32460112;24319840.73;23504723;28794086
-41;'156;China, mainland;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;15051;7238;10390;25478;25478;25478;26191;26064;46838;39760;38443;34904;109199;141099;104420;177804;222503;184794;210104;267500;356580;288241;263706;421683;386181;282842;456812;696466;881262;860370;1040271;1523776;2433576;2570543;2771853;3712114;4955424;5453562;6846204;9045930;9749405;9877496;12811302;16835432;15413995;15476912;15446932;15996624;15114585;18665068;21111137;16098638;14121388;15892840.3;17693322;18835498
-41;'156;China, mainland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21310;24077;33529;55400;23400;33500;23700;23700;25000;12300;20060;25795;27691;46462;75077;112249;72752;74477;81216;87716;81020;83517;97789;102154;97527;99679;97931;115426;104934;159541.18;266705;243157
-41;'156;China, mainland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6310;4768;9913;31375;13088;15552;7592;7592;10444;7844;15543;21265;22879;35661;58633;91952;97840;78351;139805;209284;126796;105941;117436;112792;109436;134790;129290;132996;113807;199525.04;416789;287009
-41;'156;China, mainland;1878;Pulp for paper;5510;Production;t;2200000;2300000;2400000;2450000;2550000;2650000;2725000;2825000;2950000;3050000;2850000;2500000;2500000;2500000;2800000;2800000;3000000;3500000;3900000;4128000;4128000;4128000;4586000;5135000;8089000;8934000;11745000;12939000;12429000;12515000;13283000;14517000;16632000;19141000;23760000;13490000;17370000;17400000;16410000;14470000;13495000;14795000;15395000;15495000;16308000;18159000;19072000;19688000;17258000;20050000;20732000;18842000;17100000;17173000;16463000;15964000;16474000;17576000;18557000;20187000;23625000;26730000;28865000
-41;'156;China, mainland;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;119940;41640;72600;187400;187400;187400;187400;187400;185000;125700;122700;109600;344900;441500;307500;503000;630000;531000;576000;664000;787000;529100;313100;624500;553790;494921;753526;817800;1473300;1457500;2120800;2908800;3008700;4666800;5044000;5733470;6926726;7266700;7548000;7928000;9009000;12803777;10385713;13287315;14865099;15035197;15868958;17587758;18806652;21107884;21657629;23208245;25567577;23782298.73;22931742;28214418
-41;'156;China, mainland;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;15051;7238;10390;25478;25478;25478;25478;25478;46250;38773;37870;33920;107475;137625;97000;164750;205000;173900;189000;250500;317800;230600;213457;342585;280928;208072;363251;575121;687381;684450;868398;1319222;1876638;1911945;2039613;2480871;3324532;3487819;4098157;5003960;6118505;6081442;7458004;9867383;9139989;9546674;10099275;10713463;10125624;12789548;16816421;14155491;12913407;15760465.3;17557054;18716487
-41;'156;China, mainland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10318;7921;16797;41400;18100;30000;15700;15700;20500;11400;19060;24710;26691;46432;74969;111743;72735;74202;80420;84150;78588;82468;97047;101454;95199;98164;97341;114652;103701;158406.18;266404;242067
-41;'156;China, mainland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5170;3727;8277;29687;12629;15241;7045;7045;10038;7758;15470;21088;22770;35653;58611;91867;97837;78291;139652;208514;125983;105466;117138;112481;108898;134371;129067;132725;113294;199017.04;416642;286589
-41;'156;China, mainland;1875;Wood pulp;5510;Production;t;700000;750000;800000;800000;850000;900000;925000;975000;1050000;1100000;850000;670000;670000;670000;750000;750000;804000;938000;1046000;1108000;1108000;1108000;1114000;1195000;1512000;1610000;1625000;1695000;1700000;1693000;1738000;1844000;2021000;2286000;2250000;1397000;1830000;1860000;3210000;3320000;3695000;3695000;3695000;3695000;3708000;5259000;6052000;6718000;5510000;7580000;8962000;8724000;9615000;10224000;10214000;11034000;11549000;12542000;13750000;16004000;19162000;22220000;24186000
-41;'156;China, mainland;1875;Wood pulp;5610;Import quantity;t;;;;;;;;119940;41640;75100;202300;202300;202300;202300;202300;200000;135900;132700;119600;354900;451500;324500;520000;647000;548000;593000;681000;804000;556100;333800;657200;580830;474538;801030;958800;1529400;1541500;2179200;2967200;3107700;4873000;5233000;5988591;7196518;7520700;7881000;8385100;9461000;13578423;11299951;14354612;16380762;16781790;17893958;19794749;21023441;23650844;24419135;26226051;28782450;27197751.37;26250838;32154717
-41;'156;China, mainland;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;15051;7238;10930;28313;28313;28313;28313;28313;52080;43700;42200;38250;111805;141955;107000;174750;215000;183900;199000;260500;327800;253600;229371;364584;296352;201229;397607;706090;735261;744033;913331;1364155;1967307;2061436;2154477;2643336;3521940;3694780;4354322;5498741;6660933;6794758;8771624;11852448;10905672;11316769;12004286;12702352;12198253;15265932;19513308;16765089;15089893;18962089.13;21066764;22438470
-41;'156;China, mainland;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7924;5542;14646;29200;13700;24100;13100;13100;24400;5750;5110;3804;12329;20447;31998;50773;11177;35045;14342;31519;19505;22759;18394;25442;27852;24418;24370;38976;35799;83643.88;173282;141814
-41;'156;China, mainland;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648;2320;6841;19459;8900;12432;7205;7205;13938;2702;2342;2045;9680;10728;16480;27487;6997;22351;11345;34118;12693;14008;12425;16817;17311;16458;20375;28760;24767;77801.23;218647;123291
-41;'156;China, mainland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575000;2575000;2575000;2575000;2575000;2575000;2575000
-41;'156;China, mainland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1794833;1541235;1603216;1850742;1636291.37;1353650;1376677
-41;'156;China, mainland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943679;976513;818435;854138;822105.13;803908;770784
-41;'156;China, mainland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;1030;744;1384;10288.2;17064;15150
-41;'156;China, mainland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;681;1548;1498;9520.6;10966;8054
-41;'156;China, mainland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;250000;275000;300000;300000;325000;350000;375000;400000;450000;475000;200000;200000;200000;200000;224000;224000;240000;280000;313000;330000;330000;330000;339000;363000;401000;402000;384000;402000;406000;417000;410000;435000;500000;575000;640000;540000;440000;450000;455000;480000;565000;565000;565000;565000;565000;565000;565000;865000;865000;865000;865000;865000;865000;865000;865000;865000;;;;;;;
-41;'156;China, mainland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;1300;1000;500;2000;2000;2000;2000;2000;1800;1200;1200;1200;1900;2500;7500;3000;130000;77000;93000;26000;41000;29100;6400;40600;35605;40946;57004;24000;156800;133400;230100;230100;230100;223800;146000;89415;81736;61000;71000;62000;70000;48352;61291;58442;10767;2626;4851;4631;2589;;;;;;;
-41;'156;China, mainland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;88;66;38;157;157;157;157;157;250;173;170;170;475;625;2000;950;41000;25000;30000;8500;15000;24000;2093;18708;16730;16438;23836;15275;73757;56398;86671;86671;86671;87897;51250;31585;34305;25567;36138;33481;43390;22142;35890;32709;5799;1452;2725;2201;1924;;;;;;;
-41;'156;China, mainland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;355;40;0;0;0;0;0;0;100;60;92;100;117;181;156;230;227;152;590;181;237;84;68;33;;;;;;;
-41;'156;China, mainland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;74;30;0;0;0;0;0;0;84;52;56;77;64;86;100;134;97;82;311;108;182;43;106;42;;;;;;;
-41;'156;China, mainland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;50000;56000;54000;62000;54000;0;0;0;0;0;0;1425000;1460000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;1710000;;;;;;;
-41;'156;China, mainland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5343;19209;19929;27400;35900;25000;8700;8700;8700;196400;357000;643644;751573;867000;967000;983000;1040000;1288330;1365419;1342432;1405782;1385538;1503387;1727017;1729641;;;;;;;
-41;'156;China, mainland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3405;6309;8423;16043;12785;12369;3073;3073;3073;84669;137376;270701;333704;359458;465144;525141;657866;564388;813841;732808;759178;738020;818486;774789;698870;;;;;;;
-41;'156;China, mainland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489;350;724;0;0;0;0;0;0;0;0;0;1443;20;59;337;120;0;310;0;60;199;1045;60;2;;;;;;;
-41;'156;China, mainland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;135;296;0;0;0;0;0;0;0;0;0;672;21;39;180;90;0;180;0;26;54;668;45;4;;;;;;;
-41;'156;China, mainland;1656;Chemical wood pulp;5510;Production;t;450000;475000;500000;500000;525000;550000;550000;575000;600000;625000;650000;470000;470000;470000;526000;526000;564000;658000;733000;778000;778000;778000;775000;832000;939000;1020000;998000;1052000;1040000;1001000;1025000;1105000;1271000;1461000;1360000;830000;1390000;1410000;1330000;1380000;1420000;1420000;1420000;1420000;1433000;2984000;3777000;4143000;2935000;4505000;5757000;5529000;6240000;7049000;7089000;7479000;7924000;8897000;10105000;12359000;15517000;18575000;20541000
-41;'156;China, mainland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;118640;40640;72100;185400;185400;185400;185400;185400;183200;124500;121500;108400;343000;439000;300000;500000;500000;454000;483000;638000;746000;500000;306700;583900;488465;390049;657189;750600;1271600;1286100;1863000;2651000;2719200;4232500;4530000;4987043;6068093;6298700;6447000;6814000;7852000;11390522;8909242;11808422;13385020;13587328;14298356;15815917;17045245;19252723;20039493;21559422;23675904;22108148;21549665;26811787
-41;'156;China, mainland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;14963;7172;10352;25321;25321;25321;25321;25321;46000;38600;37700;33750;107000;137000;95000;163800;164000;148900;159000;242000;302800;206600;211364;323877;247433;166853;322077;533392;595310;608525;768962;1219786;1759583;1730145;1844654;2171223;2941956;3083621;3564502;4403932;5379629;5455393;6566586;9022851;8318086;8754459;9221194;9886425;9388279;11779114;15759406;13284215;12002738;14877792;16698560;17894808
-41;'156;China, mainland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7420;3929;12687;28800;13500;24000;9600;9600;12400;5600;5000;3662;9122;20295;31729;50250;10385;22431;13599;16297;18506;22173;17256;25297;27798;24346;21228;37271;33050;66888.32;156116;125793
-41;'156;China, mainland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3454;1666;6018;19217;8788;12344;5170;5170;5938;2601;2279;1978;6251;10638;16343;27178;6246;9835;10806;12160;11796;13622;11703;16646;17248;16362;18087;26708;22330;62508.75;207529;113652
-41;'156;China, mainland;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;730000;782000;786000;821000;818000;829000;809000;872000;1003000;1153000;1360000;830000;1390000;1410000;1057000;1097000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1129000;1084000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000;1222000
-41;'156;China, mainland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;50400;13400;7000;80200;80200;80200;80200;80200;79100;53600;52400;46700;147800;189200;129000;215000;215000;193000;205000;300000;350000;234000;36000;63000;47216;63990;126786;72300;73200;111000;157000;241000;249500;420100;671000;661577;590409;766000;707000;730000;538000;633948;466587;623383;678826;524530;505818;561665;650564;645437;804519;850094;1042818;1084812;1569315;1232826
-41;'156;China, mainland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;4805;1394;997;10592;10592;10592;10592;10592;19200;16100;15700;14040;44400;56900;38800;75200;75250;67000;71000;120000;150800;101000;17984;30518;21479;23671;53346;53950;30009;45175;55365;87646;130646;149997;245967;243166;243494;332493;344011;416414;273037;282883;288914;417247;375488;295997;316527;312642;345694;381383;662291;519606;539829;742552;1216100;757846
-41;'156;China, mainland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;1986;8091;17800;3200;4300;1100;1100;400;300;500;166;603;1161;1698;269;2100;2523;1377;579;8;4147;2193;1502;1019;265;4193;1705;346;10802.27;3544;11769
-41;'156;China, mainland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;749;3675;9929;2227;2044;974;974;174;144;318;57;339;705;989;168;1073;1114;833;450;4;1366;1080;534;443;122;3755;1193;684;8657.06;4681;7178
-41;'156;China, mainland;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;102000;128000;132000;148000;143000;97000;144000;157000;181000;208000;0;0;0;0;273000;283000;291000;291000;291000;291000;304000;1855000;2648000;3014000;1806000;3376000;4628000;4445000;5018000;5827000;5867000;6257000;6702000;7675000;8883000;11137000;14295000;17353000;19319000
-41;'156;China, mainland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;12300;5400;20000;20000;20000;20000;20000;20000;19800;13500;13000;11600;36500;46800;32000;53000;53000;50000;54000;60000;70000;47000;235200;402000;373843;295513;442460;577000;1080700;995200;1462000;2162000;2368000;3749400;3805000;4276810;5405787;5492000;5689000;6039000;7274000;10697115;8407150;11082592;12665857;13043223;13769716;15224887;16367285;18595806;19222527;20690800;22612417;21006691;19959670;25556550
-41;'156;China, mainland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;1269;803;2325;2940;2940;2940;2940;2940;5500;4700;4600;4150;13100;16700;12400;12600;12650;11900;13400;18000;22000;15600;170834;228654;191555;128557;222490;422491;511138;473912;605339;1015440;1560412;1549228;1572618;1901868;2656113;2727678;3193174;3957689;5078870;5142291;6249871;8502844;7913529;8445622;8888418;9556623;9026678;11390109;15086568;12750313;11449423;14120837;15464238;17118854
-41;'156;China, mainland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6048;1373;2845;6100;9900;14400;6400;6400;9300;4600;4000;2856;4939;18700;28900;47200;8000;19582;10010;15368;18421;18026;15063;23777;26726;24033;17010;35507;32430;55611.05;152332;113639
-41;'156;China, mainland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2847;629;1471;4648;6292;7214;3132;3132;4364;2128;1735;1474;3472;9689;14714;26484;4986;8504;8531;11433;11732;12256;10623;16096;16774;16204;14311;25457;21395;53369.69;202693;106098
-41;'156;China, mainland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-41;'156;China, mainland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11480;12447;18528;20669;16645;20680;22411
-41;'156;China, mainland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7622;10547;14296;13486;14403;18222;18108
-41;'156;China, mainland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;25;59;274;475;240;385
-41;'156;China, mainland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;21;58;251;482;155;376
-41;'156;China, mainland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;13000;20000;21000;14000;11000;6000;10000;10000;11000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-41;'156;China, mainland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;2440;2440;25700;63600;63600;63600;63600;63600;63000;43000;42000;37500;118700;152000;104000;174000;174000;159000;169000;220000;250000;173000;9400;22100;18657;5492;15810;13000;20700;11900;10000;17000;7400;4500;9000;4066;6157;7700;25000;24000;11000;5276;4092;7536;9824;8831;10038;12151;10965;;;;;;;
-41;'156;China, mainland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2475;2475;4530;9893;9893;9893;9893;9893;17900;15000;14700;13160;41800;53500;37000;67000;67050;62000;66000;92000;106000;74000;5237;12661;8648;1824;6397;7379;10162;5614;3975;6700;4499;2131;3284;2127;4044;3815;11972;14310;6714;2381;2363;4336;4894;4307;5439;6017;4913;;;;;;;
-41;'156;China, mainland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;307;1073;700;100;1100;0;0;1700;500;0;362;150;65;382;0;85;0;1349;0;0;0;0;0;0;;;;;;;
-41;'156;China, mainland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;152;538;489;83;398;0;0;762;237;0;294;120;40;229;0;51;0;785;0;0;0;0;0;0;;;;;;;
-41;'156;China, mainland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;94000;90000;59000;69000;68000;69000;62000;66000;76000;87000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-41;'156;China, mainland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;53500;19400;19400;21600;21600;21600;21600;21600;21300;14400;14100;12600;40000;51000;35000;58000;58000;52000;55000;58000;76000;46000;26100;96800;48749;25054;72133;88300;97000;168000;234000;231000;94300;58500;45000;44590;65740;33000;26000;21000;29000;54183;31413;94911;30513;10744;12784;17214;16431;;;;;;;
-41;'156;China, mainland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;6414;2500;2500;1896;1896;1896;1896;1896;3400;2800;2700;2400;7700;9900;6800;9000;9050;8000;8600;12000;24000;16000;17309;52044;25751;12801;39844;49572;44001;83824;104283;110000;64026;28789;22785;24062;38305;19635;15345;15519;21008;27838;25438;98424;24175;8533;10810;11143;10994;;;;;;;
-41;'156;China, mainland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;263;678;4200;300;4200;2100;2100;1000;200;500;278;3430;369;749;2781;200;326;863;350;77;0;0;18;53;;;;;;;
-41;'156;China, mainland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;136;334;4151;186;2688;1064;1064;638;92;226;153;2320;204;411;526;136;217;657;277;60;0;0;16;31;;;;;;;
-41;'156;China, mainland;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;172000;188000;187000;191000;198000;221000;241000;250000;250000;250000;250000;27000;0;0;0;0;0;0;0;0;0;0;0;0;0;500000;630000;620000;800000;600000;550000;980000;1050000;1070000;1070000;1070000;1070000;1070000;1070000
-41;'156;China, mainland;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;2500;14900;14900;14900;14900;14900;15000;10200;10000;10000;10000;10000;17000;17000;17000;17000;17000;17000;17000;27000;20700;32700;51417;24334;66908;156800;65100;97000;77400;77400;149700;220300;200000;268489;295116;294000;396000;526100;499000;851219;963999;1145316;1579193;1806298;2087364;2247184;2245966;2603288;2838407;3063413;3255804;3453312;3347523;3966253
-41;'156;China, mainland;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;540;2835;2835;2835;2835;2835;5830;4927;4330;4330;4330;4330;10000;10000;10000;10000;10000;10000;10000;23000;15914;21999;28784;11629;43271;141380;53409;66741;54625;54625;117980;158725;121197;169827;211975;226134;288538;536187;580048;752835;1355307;2064080;1822609;1822838;1961881;2038937;2109180;2543139;2777389;2662439;2233017;3262192;3564296;3772878
-41;'156;China, mainland;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;908;1195;400;200;100;3500;3500;12000;50;50;50;1664;15;29;30;442;12387;281;14632;758;150;9;17;19;39;2112;961;1365;6467.36;102;871
-41;'156;China, mainland;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;445;497;242;112;88;2035;2035;8000;17;11;11;2680;5;12;29;527;12419;277;21647;763;150;11;20;17;37;1607;504;939;5771.87;152;1585
-41;'156;China, mainland;1668;Pulp from fibres other than wood;5510;Production;t;1500000;1550000;1600000;1650000;1700000;1750000;1800000;1850000;1900000;1950000;2000000;1830000;1830000;1830000;2050000;2050000;2196000;2562000;2854000;3020000;3020000;3020000;3472000;3940000;6749000;7512000;10307000;11435000;10927000;11043000;11786000;12923000;14861000;17105000;21760000;12120000;15540000;15540000;13200000;11150000;9800000;11100000;11700000;11800000;12600000;12900000;13020000;12970000;11748000;12970000;12400000;10738000;8285000;7549000;6799000;5910000;5975000;6104000;5877000;5253000;5533000;5580000;5749000
-41;'156;China, mainland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24377;44717;19404;15800;9000;13000;19000;19000;50700;14100;11000;13368;25324;40000;63000;69000;47000;76573;49761;78019;63530;59705;62364;40193;29177;60328;76901;45607;40931;37859.35;28427;25954
-41;'156;China, mainland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13360;18472;8915;10411;5529;7158;9692;9692;27311;9234;6333;7362;14567;19173;32373;41406;37620;39519;41687;79015;56926;52743;56870;50048;36551;66755;80502;52841;56531;60568.17;54586;50895
-41;'156;China, mainland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398;3287;3346;12600;4600;6000;6100;6100;8100;5700;14000;20956;16026;26000;43000;61000;62000;51544;66359;67263;59841;59859;78662;76029;67366;73785;75083;76637;69267;81229.66;93224;101124
-41;'156;China, mainland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524;1852;1933;10470;3841;2897;1875;1875;4100;5073;13139;19054;15770;24930;42143;64409;91367;68359;128584;196043;114053;91608;104724;95684;91604;117950;110299;104469;89466;126987.69;198147;164883
-41;'156;China, mainland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;32000;78812;32000;14000;18000;11000;20288;20092;13190;19562;9423;7889;8098;12583;11908;294293;908710;1681178;2459351.31;2884224;4475772
-41;'156;China, mainland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6863;9927;27249;11503;5574;7472;4793;9427;11551;7975;11188;5750;4354;3760;5908;5989;121829;294978;505728;1036026.35;1228067;1239975
-41;'156;China, mainland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;395;70;417;219;306;473;452;483;537;579;533;465;392;305;615;401;734
-41;'156;China, mainland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;134;100;251;54;105;224;201;214;282;234;191;350;315;198;584;428;441
-41;'156;China, mainland;1669;Recovered paper;5510;Production;t;;;;;;;;;;642000;682000;718000;727000;595000;579000;569000;639000;718000;807000;907000;1019000;1145000;1287000;2003000;1724000;2145000;2338000;3045000;3560000;4170000;4802000;5280000;5280000;7340000;8246000;8246000;8760000;8880000;12100000;10546000;10018000;13386000;14610000;16534000;18013000;22632000;27651000;31278500;36755000;40165000;43473000;44726000;43373000;48412000;48318000;49635000;52852000;49639000;52437000;54932000;64907000;66420000;67368565
-41;'156;China, mainland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;10000;13300;11300;15900;18600;15700;27100;49600;114100;128000;153000;134000;222000;296000;384000;449300;423200;619000;790102;612086;711470;993000;1371800;1619000;1915000;2515000;3713600;6419100;6873000;9381794;11582130;13629000;19623000;22562100;24206000;27501707;24352351;27279353;30067145;29236774;27518476;29283900;28498305;25719445;17025286;10363466;6892535;537542;572981;579668
-41;'156;China, mainland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;713;586;588;987;573;984;1724;3474;7420;13054;17503;10894;21104;17000;38780;57641;50249;79098;105253;74770;93561;121345;193881;175920;171873;204554;556938;658598;732240;1231243;1630892;1965743;2748047;4041970;3630900;3796054;5353298;6968049;6274006;5930238;5347657;5283161;4988961;5875520;4294716;1943147;1207981;132375;136268;119011
-41;'156;China, mainland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10992;16156;16732;14000;5300;3500;8000;8000;4500;900;1000;1085;1000;30;108;506;17;275;796;3566;2432;1049;742;700;2328;1515;590;774;1233;1135;301;1090
-41;'156;China, mainland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1140;1041;1636;1688;459;311;547;547;406;86;73;177;109;8;22;85;3;60;153;770;813;475;298;311;538;419;223;271;513;508;147;420
-41;'156;China, mainland;1876;Paper and paperboard;5510;Production;t;2400000;2600000;2850000;2900000;3000000;3125000;2194000;2296000;2397000;2498000;2599000;2700000;3429000;3290000;3343000;3343000;3636000;4139000;4929000;5346000;5402000;5890000;6613000;7560000;9112000;10004000;11411000;12645000;13333000;13989000;14779000;16196000;17871000;21290000;23994000;26380000;27230000;27800000;29098000;30500000;32140000;37800000;43000000;49500000;56000000;65000000;73500000;79800000;86400000;92700000;99300000;102500000;101100000;104700000;107100000;108550000;111300000;104350000;107650000;113100000;121100000;124320000;129650000
-41;'156;China, mainland;1876;Paper and paperboard;5610;Import quantity;t;;500;200;45000;45000;46400;44400;52700;38000;74900;107100;107100;107100;107100;107100;130700;202500;318500;318500;558000;556900;373000;515100;449000;808000;1218000;1336000;862000;844400;969100;1344400;2330925;2373033;2023329;1683100;4318700;5508300;5791999;6462000;5939201;5492300;6086000;6336374;6142444;5387000;4307000;3793200;3365000;3180924;3173962;3136180;2984183;2716988;2689821;2747254;2846078;4587241;6142014;6159841;12334343;11701743.77;8822787;11670830
-41;'156;China, mainland;1876;Paper and paperboard;5622;Import value;1000 USD;;30;30;8000;8000;8100;7700;8605;5645;12714;18824;18824;18824;18824;18824;30095;91000;139200;139200;431600;400000;275100;409600;351300;571200;1012900;639086;420000;453773;595954;812487;1209054;1150605;1037314;1028253;2254613;2802439;2968734;3341001;3271889;3007185;3292347;3709238;4072301;3504673;3094083;2999557;3076585;2755131;3236433;3562741;3341270;3193763;3125325;2971615;2908594;3939177;5162958;4346466;6445332;7825898.05;6198818;6233267
-41;'156;China, mainland;1876;Paper and paperboard;5910;Export quantity;t;25300;27500;23200;71300;65400;74100;66100;56500;61300;88400;92000;75400;75400;75400;75400;36200;33500;31500;29500;27500;29200;26200;23200;129000;217000;299000;300000;221000;237900;339700;296600;178715;180378;240994;276600;188900;214800;245561;310000;636901;659100;708000;1091090;1179205;1838000;2966000;4054462;3428100;3423886;3544261;4201821;4381324;5289727;5932393;5551087;6409376;6015747;5174978;5765004;4687281;4398023.82;7151393;7561689
-41;'156;China, mainland;1876;Paper and paperboard;5922;Export value;1000 USD;3200;3400;2900;11100;10310;11480;10506;8639;10078;13441;13958;11626;11626;11626;11626;15790;16768;16200;15700;15000;16600;15420;13920;72800;120500;165400;140834;131330;128346;189513;171117;114087;111749;144848;197676;170308;187500;266158;321030;487935;488841;521613;775802;974663;1393564;2057220;2824388;2848020;2741618;3236131;4437598;4748004;5638142;6401916;6240158;6610444;6187637;5698991;6539396;5776956;5948552.37;9310877;8587180
-41;'156;China, mainland;2042;Graphic papers;5510;Production;t;990000;1050000;1180000;1200000;1230000;1295000;911000;966000;1027000;1080000;1134000;1188000;1529000;1451000;1471000;1471000;1582000;1773000;1716000;1861000;1880000;2050000;2302000;2613000;3188000;3479000;4011000;4341000;4609000;4878000;5057000;5506000;2947000;4484000;4756000;6500000;6650000;6024000;7528000;9150000;9730000;12850000;14070000;16200000;17540000;20550000;23000000;24100000;25800000;26900000;28450000;29100000;28500000;28150000;28100000;27850000;27900000;26450000;26100000;25300000;24500000;24750000;25450000
-41;'156;China, mainland;2042;Graphic papers;5610;Import quantity;t;;500;200;;;;;1100;400;1100;18400;18400;18400;18400;18400;22400;83700;132900;132900;120000;169900;104000;148000;149000;319000;175000;235000;211000;171000;145600;244400;501140;569965;801029;572000;1449700;1780300;1973299;1663000;2188000;2081400;1770000;1744721;1277020;1283000;1048000;1016200;937000;761935;890155;777529;828718;710101;697301;778563;816034;1414009;1825210;1406767;2185298;2466045.96;1233082;1154817
-41;'156;China, mainland;2042;Graphic papers;5622;Import value;1000 USD;;30;30;;;;;272;82;365;3694;3694;3694;3694;3694;5900;29300;42600;42600;38600;52900;33100;79200;81300;151200;103900;142000;126400;106600;142982;209612;333044;326721;477978;411482;890221;1109774;1314016;1110001;1467346;1348382;1154903;1125252;938596;932561;816428;847519;915337;729755;899575;904377;899856;803979;775436;790523;803372;1189075;1588410;1145227;1421777;1848284.61;1052148;912649
-41;'156;China, mainland;2042;Graphic papers;5910;Export quantity;t;25300;27500;23200;41300;35400;44100;28000;22100;23200;24500;28100;11500;11500;11500;11500;5500;5500;6500;7500;8500;13200;13200;13200;36300;46000;56000;110000;106000;106000;86400;66600;58441;60016;94192;129600;71100;72300;114561;98000;469800;495900;473000;738457;667105;1178000;2112000;2581462;2349100;2431915;2296925;2588726;2903355;3211140;3209826;2763843;3160351;2931486;2458491;2760601;1806554;1671624.07;2906409;3222693
-41;'156;China, mainland;2042;Graphic papers;5922;Export value;1000 USD;3200;3400;2900;6750;5960;7130;4977;3816;4139;4420;4937;2605;2605;2605;2605;3568;3568;4200;4900;5500;8600;8620;8620;23700;29900;36400;72000;69000;69000;62839;52726;46054;41411;57641;88998;67111;66738;107326;94030;354069;336148;323097;492792;482805;870148;1484306;1956838;1977921;1876701;2075559;2590085;2871886;2994545;3000869;2616484;2791370;2636840;2462352;2769434;1885074;1987294.66;3391988;3350053
-41;'156;China, mainland;1671;Newsprint;5510;Production;t;280000;280000;350000;350000;350000;375000;270000;304000;338000;371000;405000;439000;579000;328000;328000;328000;328000;328000;295000;320000;323000;352000;396000;413000;425000;414000;365000;337000;383000;392000;403000;520000;560000;640000;770000;900000;730000;740000;998000;1450000;1730000;1850000;2070000;3000000;3190000;3750000;4500000;4600000;4800000;4300000;3900000;3800000;3600000;3250000;2950000;2600000;2350000;1900000;1500000;1100000;900000;900000;800000
-41;'156;China, mainland;1671;Newsprint;5610;Import quantity;t;;500;200;;;;;;;;16400;16400;16400;16400;16400;20000;80000;126900;126900;115000;165000;100000;100000;100000;246000;107000;142000;112000;91000;16200;21100;59667;119897;92057;34800;356300;454100;236400;248000;211000;153700;199000;351363;112000;135000;14000;14000;15000;20648;37238;14507;134679;113868;48599;59415;60246;332179;479201;460072;654320;709528.83;464561;512396
-41;'156;China, mainland;1671;Newsprint;5622;Import value;1000 USD;;30;30;;;;;;;;2249;2249;2249;2249;2249;3600;25700;36800;36800;33600;47900;29000;30000;31000;76200;34000;46000;26400;21600;8694;11745;26843;45425;37827;25961;195587;217403;140615;150000;119790;93057;95141;152394;56000;73071;7778;8618;10314;11443;18642;9225;83533;67091;27301;30600;29813;169064;294753;243335;267556;360217.99;303443;273900
-41;'156;China, mainland;1671;Newsprint;5910;Export quantity;t;25300;27500;23200;26300;20400;29100;12900;9900;10400;13000;16600;0;0;;;;;;;;;;;;;;0;;;;;2894;4868;6050;99100;17900;2600;9600;2000;2400;18500;6000;11869;18000;19000;319000;591362;359100;207083;113216;15304;3885;89814;86470;17144;12852;8702;7374;8698;3993;6420.53;11245;24109
-41;'156;China, mainland;1671;Newsprint;5922;Export value;1000 USD;3200;3400;2900;3550;2760;3930;1823;1328;1394;1815;2332;0;0;;;;;;;;;;;;;;0;;;;;1491;2507;2817;59051;9440;1242;4919;1030;1271;10150;2842;4993;7339;9573;169712;304579;251731;117377;65116;12490;5193;58254;59809;21402;12568;8779;8660;11453;8391;24830.4;29220;23422
-41;'156;China, mainland;1674;Printing and writing papers;5510;Production;t;710000;770000;830000;850000;880000;920000;641000;662000;689000;709000;729000;749000;950000;1123000;1143000;1143000;1254000;1445000;1421000;1541000;1557000;1698000;1906000;2200000;2763000;3065000;3646000;4004000;4226000;4486000;4654000;4986000;2387000;3844000;3986000;5600000;5920000;5284000;6530000;7700000;8000000;11000000;12000000;13200000;14350000;16800000;18500000;19500000;21000000;22600000;24550000;25300000;24900000;24900000;25150000;25250000;25550000;24550000;24600000;24200000;23600000;23850000;24650000
-41;'156;China, mainland;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;1100;400;1100;2000;2000;2000;2000;2000;2400;3700;6000;6000;5000;4900;4000;48000;49000;73000;68000;93000;99000;80000;129400;223300;441473;450068;708972;537200;1093400;1326200;1736899;1415000;1977000;1927700;1571000;1393358;1165020;1148000;1034000;1002200;922000;741287;852917;763022;694039;596233;648702;719148;755788;1081830;1346009;946695;1530978;1756517.13;768521;642421
-41;'156;China, mainland;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;272;82;365;1445;1445;1445;1445;1445;2300;3600;5800;5800;5000;5000;4100;49200;50300;75000;69900;96000;100000;85000;134288;197867;306201;281296;440151;385521;694634;892371;1173401;960001;1347556;1255325;1059762;972858;882596;859490;808650;838901;905023;718312;880933;895152;816323;736888;748135;759923;773559;1020011;1293657;901892;1154221;1488066.62;748705;638749
-41;'156;China, mainland;1674;Printing and writing papers;5910;Export quantity;t;;;;15000;15000;15000;15100;12200;12800;11500;11500;11500;11500;11500;11500;5500;5500;6500;7500;8500;13200;13200;13200;36300;46000;56000;110000;106000;106000;86400;66600;55547;55148;88142;30500;53200;69700;104961;96000;467400;477400;467000;726588;649105;1159000;1793000;1990100;1990000;2224832;2183709;2573422;2899470;3121326;3123356;2746699;3147499;2922784;2451117;2751903;1802561;1665203.54;2895164;3198584
-41;'156;China, mainland;1674;Printing and writing papers;5922;Export value;1000 USD;;;;3200;3200;3200;3154;2488;2745;2605;2605;2605;2605;2605;2605;3568;3568;4200;4900;5500;8600;8620;8620;23700;29900;36400;72000;69000;69000;62839;52726;44563;38904;54824;29947;57671;65496;102407;93000;352798;325998;320255;487799;475466;860575;1314594;1652259;1726190;1759324;2010443;2577595;2866693;2936291;2941060;2595082;2778802;2628061;2453692;2757981;1876683;1962464.26;3362768;3326631
-41;'156;China, mainland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4620882;6080000;6600000;6700000;9200000;9600000;10200000;10700000;12200000;13400000;14000000;15100000;16200000;17300000;17500000;17200000;17150000;17450000;17700000;17900000;17500000;17800000;17800000;17200000;17350000;18050000
-41;'156;China, mainland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43118;35127;49079;16800;39000;56455;60020;40000;41000;63000;57000;53445;65670;61530;51220;59679;65505;72311;73490;111999;177113;203773;200139;181879.57;119012;187150
-41;'156;China, mainland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28513;23328;32745;11033;25752;39496;41097;33197;35693;61077;62991;59074;72592;73966;70202;72612;77765;85412;88690;114400;174495;181710;162342;167885.55;115848;154826
-41;'156;China, mainland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;411;2002;2600;2000;14350;13105;12000;26000;58000;99000;52230;69837;75638;93471;78212;60299;53090;51050;86103;50946;56894;36710;28555.77;78822;205424
-41;'156;China, mainland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;491;1863;1632;1691;9081;9466;8090;17478;44929;88601;51134;73456;117784;130219;101109;77740;80298;93242;140410;87089;111088;83055;74064.7;128146;238861
-41;'156;China, mainland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342736;279217;390115;215900;310000;321903;396000;375000;386000;376200;324000;319381;328043;320046;286629;211114;238780;302471;332682;519999;672095;421389;985743;1145902.39;361576;233413
-41;'156;China, mainland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234869;192155;269728;149293;212123;234885;290499;277293;290957;290715;303166;301043;341375;381699;328759;284675;266850;275374;286608;431587;611575;362830;641314;873897.78;309224;213148
-41;'156;China, mainland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43061;39675;193165;275100;193000;245058;203000;330000;518000;469100;436000;449795;639084;747474;913566;1126461;1104703;961259;1164664;950122;774076;869505;613233;562280.61;931331;1151600
-41;'156;China, mainland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43418;39430;149577;187458;135780;175888;152000;242485;371116;384763;415022;388897;576919;732287;871452;1045369;1050225;886659;986822;837376;798857;879787;636677;678800.15;1137604;1266301
-41;'156;China, mainland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663118;450000;1100000;1300000;1800000;2400000;3000000;3650000;4600000;5100000;5500000;5900000;6400000;7250000;7800000;7700000;7750000;7700000;7550000;7650000;7050000;6800000;6400000;6400000;6500000;6600000
-41;'156;China, mainland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351045;1100656;1537806;1695000;1222000;1015000;709000;733000;607000;563000;541000;368461;459204;381446;356190;325440;344417;344366;349616;449832;496801;321533;345096;428735.17;287933;221858
-41;'156;China, mainland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910019;744518;1045083;1094999;821887;698477;551000;549000;482000;487109;538866;358195;466966;439487;417362;379601;403520;399137;398261;474024;507587;357352;350565;446283.3;323633;270775
-41;'156;China, mainland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61448;55914;272233;199700;272000;467180;433000;817000;1249000;1463000;1455000;1722807;1474788;1750310;1892433;1916653;1958354;1732350;1931785;1886559;1626095;1825504;1152618;1074367.15;1885011;1841560
-41;'156;China, mainland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58448;53079;201358;136908;182784;302830;314000;610000;926000;1222567;1222567;1319293;1360068;1727524;1865022;1789813;1813095;1628125;1698738;1650275;1567746;1767106;1156951;1209599.41;2097018;1821469
-41;'156;China, mainland;1675;Other paper and paperboard;5510;Production;t;1410000;1550000;1670000;1700000;1770000;1830000;1283000;1330000;1370000;1418000;1465000;1512000;1900000;1839000;1872000;1872000;2054000;2366000;3213000;3485000;3522000;3840000;4311000;4947000;5924000;6525000;7400000;8304000;8724000;9111000;9722000;10690000;14924000;16806000;19238000;19880000;20580000;21776000;21570000;21350000;22410000;24950000;28930000;33300000;38460000;44450000;50500000;55700000;60600000;65800000;70850000;73400000;72600000;76550000;79000000;80700000;83400000;77900000;81550000;87800000;96600000;99570000;104200000
-41;'156;China, mainland;1675;Other paper and paperboard;5610;Import quantity;t;;;;45000;45000;46400;44400;51600;37600;73800;88700;88700;88700;88700;88700;108300;118800;185600;185600;438000;387000;269000;367100;300000;489000;1043000;1101000;651000;673400;823500;1100000;1829785;1803068;1222300;1111100;2869000;3728000;3818700;4799000;3751201;3410900;4316000;4591653;4865424;4104000;3259000;2777000;2428000;2418989;2283807;2358651;2155465;2006887;1992520;1968691;2030044;3173232;4316804;4753074;10149045;9235697.81;7589705;10516013
-41;'156;China, mainland;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;8000;8000;8100;7700;8333;5563;12349;15130;15130;15130;15130;15130;24195;61700;96600;96600;393000;347100;242000;330400;270000;420000;909000;497086;293600;347173;452972;602875;876010;823884;559336;616771;1364392;1692665;1654718;2231000;1804543;1658803;2137444;2583986;3133705;2572112;2277655;2152038;2161248;2025376;2336858;2658364;2441414;2389784;2349889;2181092;2105222;2750102;3574548;3201239;5023555;5977613.43;5146670;5320618
-41;'156;China, mainland;1675;Other paper and paperboard;5910;Export quantity;t;;;;30000;30000;30000;38100;34400;38100;63900;63900;63900;63900;63900;63900;30700;28000;25000;22000;19000;16000;13000;10000;92700;171000;243000;190000;115000;131900;253300;230000;120274;120362;146802;147000;117800;142500;131000;212000;167101;163200;235000;352633;512100;660000;854000;1473000;1079000;991971;1247336;1613095;1477969;2078587;2722567;2787244;3249025;3084261;2716487;3004403;2880727;2726399.75;4244984;4338996
-41;'156;China, mainland;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;4350;4350;4350;5529;4823;5939;9021;9021;9021;9021;9021;9021;12222;13200;12000;10800;9500;8000;6800;5300;49100;90600;129000;68834;62330;59346;126674;118391;68033;70338;87207;108678;103197;120762;158832;227000;133866;152693;198516;283010;491858;523416;572914;867550;870099;864917;1160572;1847513;1876118;2643597;3401047;3623674;3819074;3550797;3236639;3769962;3891882;3961257.71;5918889;5237127
-41;'156;China, mainland;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;392000;457000;553000;678000;737000;865000;998000;1150000;360000;1358000;1800000;2300000;2280000;2310000;2270000;2500000;2700000;3100000;3470000;3840000;4360000;4700000;5200000;5500000;5800000;6200000;7300000;7800000;7950000;8300000;8850000;9200000;9600000;9700000;10050000;10800000;11050000;11350000;12100000
-41;'156;China, mainland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;26700;37000;21000;20800;22000;22990;44152;27000;24000;18400;17000;17679;21605;36612;30740;26987;27966;19518;18776;24752;39686;22393;20510;43499.03;27183;33141
-41;'156;China, mainland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13869;22891;31000;17007;18218;18953;19198;41349;29607;23660;21492;20549;22688;27079;46800;46940;42629;46400;34132;29974;35960;51032;31577;27074;42303.6;30670;37303
-41;'156;China, mainland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;19000;73000;26000;38800;56000;68818;276000;53000;47000;67000;104000;123258;76562;83570;140412;196009;223090;186718;168834;195769;198440;194630;232591;113933.61;187412;323135
-41;'156;China, mainland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14556;12418;46000;22700;34287;46527;58290;303000;49984;43213;64134;111238;111790;77423;94960;150354;284480;342816;291522;240411;274506;287103;315428;390162;184890.74;282925;417322
-41;'156;China, mainland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16546000;16380000;17400000;17600000;20600000;23800000;27800000;32300000;37400000;42800000;47300000;51700000;56000000;59300000;61300000;60500000;63800000;65350000;66550000;68450000;62750000;65150000;70250000;77300000;79070000;82200000
-41;'156;China, mainland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3279201;2619800;3815000;3918663;4021435;3545000;2848000;2547600;2248000;2281935;2132781;2200035;2027215;1887666;1872107;1852665;1914922;2997435;4086214;4530827;9974271;9044250.06;7476028;10407456
-41;'156;China, mainland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342629;1109688;1831821;2034788;2347501;2196117;1962730;1914438;1935363;1845589;2091863;2378564;2193911;2146803;2117591;1969449;1903341;2512083;3278612;2952364;4818002;5754562.45;4950538;5131203
-41;'156;China, mainland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93401;90900;154000;245876;177200;541000;701000;1326000;905000;828242;1111648;1468197;1281985;1808432;2415970;2507271;2982080;2813127;2439166;2713747;2561619;2520465.31;3940869;3903364
-41;'156;China, mainland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62790;78481;117859;175215;133858;412872;448991;737567;686476;693040;999784;1620708;1575455;2184401;2865743;3138093;3378533;3099247;2759935;3235478;3299254;3560210.28;5352264;4526956
-41;'156;China, mainland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;3755000;4204000;4745000;5256000;5505000;5663000;5972000;6590000;7155000;9428000;14660000;14780000;15385000;;;;;;;;;;;;;;;;;;;;;;;;;;
-41;'156;China, mainland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600000;10600000;12000000;13500000;16400000;19300000;22800000;27000000;30500000;34450000;37500000;39700000;41000000;40550000;43350000;44700000;45750000;47200000;42500000;44100000;48300000;54900000;55870000;58100000
-41;'156;China, mainland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1590659;1270800;1614000;1568804;1428000;1339000;1223000;1094300;971000;984492;758261;813815;727247;656894;664257;677554;763247;1578038;2512239;3111172;7373700;6418691.38;5838287;8687679
-41;'156;China, mainland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429354;354863;479313;475363;480000;474742;462832;470842;486558;440025;434656;560549;469990;468570;488674;465536;492401;927131;1554469;1458198;2960595;3536668.73;3331422;3664418
-41;'156;China, mainland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3391;3300;14000;18448;14200;19000;75000;409000;139000;43929;71617;86025;67813;152393;246980;263673;285065;187160;157491;148999;149218;165465.85;169790;230106
-41;'156;China, mainland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;916;10971;23911;15588;16489;36192;161867;72104;38194;59798;81448;84340;274710;300583;342869;343530;224043;213522;222428;244769;344605.46;341867;380566
-41;'156;China, mainland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800000;3000000;4600000;5500000;6700000;7900000;9400000;10500000;11200000;11500000;12500000;13400000;13900000;13600000;13950000;14000000;14050000;14300000;13350000;14100000;14900000;15250000;15900000;16550000
-41;'156;China, mainland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;770045;615200;1081000;1380438;1745983;1315000;1085000;1015000;899000;918213;983646;1008484;913001;866451;851831;810368;782722;852413;832280;827262;1131748;1152356;637401;655813
-41;'156;China, mainland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508477;420258;817029;1087527;1356473;1138467;1138850;1095099;1079145;1055671;1241107;1360246;1266820;1242466;1209343;1088836;1009928;1053976;1048545;949497;1031166;1202745;859342;762553
-41;'156;China, mainland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26715;26000;66000;121977;87000;233000;490000;676000;619000;679839;861181;1170781;1041029;1413918;1880985;1896671;2300833;2266309;1985796;2168221;2040307;1942516.82;3191316;3131789
-41;'156;China, mainland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24480;30598;52206;79680;70000;190781;338045;444889;500487;574407;808751;1249405;1157165;1416576;1996456;2075767;2390418;2223016;1965787;2170742;2230062;2323282.15;3900242;3355349
-41;'156;China, mainland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16546000;16380000;4000000;4000000;4000000;4800000;4700000;5100000;5200000;5300000;5600000;5750000;6000000;6200000;6400000;6350000;6500000;6650000;6750000;6950000;6900000;6950000;7050000;7150000;7300000;7550000
-41;'156;China, mainland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863297;689700;1065000;934479;713452;762000;450000;366000;326000;336417;352726;348747;364043;341457;338872;349443;354827;531190;691772;552766;887254;894859.59;514480;604663
-41;'156;China, mainland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379966;314043;507833;454127;440149;515751;308123;298229;330260;307606;383280;430235;431980;411025;402400;399073;383797;503870;642403;522839;624974;739938.81;543835;544843
-41;'156;China, mainland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62678;61000;73000;103827;70000;284000;130000;232000;139000;94891;147761;175120;123102;170168;185659;221358;259982;202179;174240;236835;231375;245655.75;343032;294394
-41;'156;China, mainland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37097;46367;54410;70728;44840;202827;70753;126383;107261;72335;106115;227240;240428;296116;287332;356991;368579;351239;321828;430539;459409;486001.32;601900;465369
-41;'156;China, mainland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55200;44100;55000;34942;134000;129000;90000;72300;52000;42813;38148;28989;22924;22864;17147;15300;14126;35794;49923;39627;581569;578343.1;485860;459301
-41;'156;China, mainland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24832;20524;27646;17771;70879;67157;52925;50268;39400;42287;32820;27534;25121;24742;17174;16004;17215;27106;33195;21830;201267;275209.91;215939;159389
-41;'156;China, mainland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;600;1000;1624;6000;5000;6000;9000;8000;9583;31089;36271;50041;71953;102346;125569;136200;157479;121639;159692;140719;166826.89;236731;247075
-41;'156;China, mainland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;600;272;896;3430;2775;4001;4428;6624;8104;25120;62615;93522;196999;281372;362466;276006;300949;258798;411769;365014;406321.35;508255;325672
-41;'156;China, mainland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1777000;1864000;2102000;2370000;2482000;2583000;2752000;2950000;7409000;6020000;2778000;2800000;2915000;2920000;2920000;1450000;2110000;1250000;1660000;1660000;1800000;2350000;2500000;2900000;3100000;3600000;4250000;4300000;4150000;4450000;4800000;4950000;5350000;5450000;6350000;6750000;8250000;9150000;9900000
-41;'156;China, mainland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1101000;651000;673400;823500;1100000;1829785;1803068;1222300;1111100;2869000;3713000;3792000;4762000;451000;770300;479000;650000;799837;532000;387000;211000;163000;119375;129421;122004;97510;92234;92447;96508;96346;151045;190904;199854;154264;147948.72;86494;75416
-41;'156;China, mainland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;497086;293600;347173;452972;602875;876010;823884;559336;616771;1364392;1678796;1631827;2200000;444907;530897;286670;530000;744855;346388;291265;216108;205336;157099;217916;233000;200563;200352;185898;177511;171907;202059;244904;217298;178479;180747.39;165462;152112
-41;'156;China, mainland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;115000;131900;253300;230000;120274;120362;146802;147000;117800;128500;112000;139000;47700;33500;25000;37939;58900;66000;106000;80000;70000;40471;59126;61328;55572;74146;83507;93255;98111;75365;78881;96026;86517;92000.82;116703;112497
-41;'156;China, mainland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;68834;62330;59346;126674;118391;68033;70338;87207;108678;103197;106206;146414;181000;48376;39925;34130;49505;55000;60560;80710;65849;72385;60087;83365;131845;150309;174716;192488;194059;200130;177044;189601;219056;202466;216156.69;283700;292849
-41;'156;China, mainland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071506;2070136;1880605;2044611;2017065;1683665;1473436
-41;'156;China, mainland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29822564;30708325;27643124;28383222;35867071;33282055;31214859
-41;'156;China, mainland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37026;45751;84385;158497;258083;205141;108576
-41;'156;China, mainland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213633;189706;143183;127286;133409;133515;97843
-41;'156;China, mainland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990;1915;1576;929;1451;2056;3934
-41;'156;China, mainland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13594;10066;10314;20565;16317;11343;7995
-41;'156;China, mainland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36036;43836;82809;157568;256632;203085;104642
-41;'156;China, mainland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200039;179640;132869;106721;117092;122172;89848
-41;'156;China, mainland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23112;27319;26228;25375;46337;47573;64798
-41;'156;China, mainland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71255;74525;77425;90909;108636;195116;123080
-41;'156;China, mainland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41354;52378;50280;48793;59121;60773;55354
-41;'156;China, mainland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836258;2049930;2021112;2105410;2745973;2652228;2293787
-41;'156;China, mainland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93429;101723;103810;80123;94040;89195;64274
-41;'156;China, mainland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103047;1128182;1089101;1056939;1341519;1409274;1289964
-41;'156;China, mainland;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000
-41;'156;China, mainland;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2593;3253
-41;'156;China, mainland;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;973
-41;'156;China, mainland;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45319;39121
-41;'156;China, mainland;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56192;35009
-41;'156;China, mainland;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-41;'156;China, mainland;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-41;'156;China, mainland;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;118
-41;'156;China, mainland;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;147
-41;'156;China, mainland;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000
-41;'156;China, mainland;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;126
-41;'156;China, mainland;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;181
-41;'156;China, mainland;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3534;7428
-41;'156;China, mainland;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4945;9322
-41;'156;China, mainland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1292769;1360725;1154977;991933;1084171;880699;770747
-41;'156;China, mainland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24171170;24541874;21750927;22130808;27619459;25088480;24066637
-41;'156;China, mainland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8225;2983;2816;2900;2847;3010;1951
-41;'156;China, mainland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77841;29458;61889;29266;62562;52756;68955
-41;'156;China, mainland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;575591;479257;458109;736990;472466;397274;407736
-41;'156;China, mainland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349360;2694650;2499487;2842604;3855513;3750686;3274593
-41;'156;China, mainland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039105;1019569;915372;864283;980656;779485;683923
-41;'156;China, mainland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12396408;13491030;15429519;15155565;17571027;21538311;20437952
-41;'156;China, mainland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31796;41734;32227;23310;27697;19697;16928
-41;'156;China, mainland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22066;16869;15426;11546;16784;19510;13867
-41;'156;China, mainland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281636;264265;246138;240612;271633;225594;180522
-41;'156;China, mainland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944689;1004167;1167795;1221042;1459706;1941433;1894534
-41;'156;China, mainland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36766;38752;40891;41092;44510;34945;29548
-41;'156;China, mainland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2034677;2176654;2727300;2323430;1774974;2234230;2547044
-41;'156;China, mainland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149243;148301;153112;146753;170441;116468;123709
-41;'156;China, mainland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4164876;4462459;5153183;5443551;6764671;7378417;6448489
-41;'156;China, mainland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539664;526517;443004;412516;466375;382781;333216
-41;'156;China, mainland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5230100;5830881;6365815;6155996;7554892;9964721;9534018
-214;'158;China, Taiwan Province of;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3768591;4058452;3752435;3541234;4134237.64;4253381;3838284
-214;'158;China, Taiwan Province of;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2048682;2183276;2011054;1890684;2149594.47;2164938;1807942
-214;'158;China, Taiwan Province of;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;5819;9701;15434;19103;19638;28798;31962;42645;50193;69993;90388;132807;215880;281148;200604;291953;411379;542409;823844;841901;836070;747929;839905;914397;775555;1011403;1556626;1657306;2054377;1810586;2083758;1902513;1975423;2854154;3854474;3056666;3144211;2301648;2188801;2471552;2245818;1994181;2243592;2518885;2532174;2450686;2998310;3108398;2194899;3179233;3410088;2998204;3107946;3193432;2861463;2674068;2899982;3176289;2834870;2634752;3080293.64;3126479;2813713
-214;'158;China, Taiwan Province of;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;13675;19598;22463;41794;43534;55042;66851;76954;93605;115456;131126;204133;269621;206364;198782;276061;311234;428844;537093;510407;524380;457862;492471;393521;343285;358998;475835;598834;554589;495791;550217;774820;662917;693651;720211;635753;652150;516020;510559;581069;532691;620281;721860;688252;688460;742838;900925;857423;719287;877864;976323;1030133;1041852;986521;835592;883865;1113595;1240452;1065581;1022248;1204461.47;1271906;1065292
-214;'158;China, Taiwan Province of;1861;Roundwood;5516;Production;m3;1653000;1545000;1614000;1812000;1824000;1673000;1906000;2032000;1980000;2296000;2544000;2583000;2557000;2385000;2049000;1998000;1773000;1484000;1592000;1711000;1520900;1540800;1726700;1650500;1867500;2175700;1928500;1748400;1629200;1578200;1531400;1528400;1490900;1479000;1485600;1480300;1475400;1472100;1465700;1463900;1470400;1473100;1479100;1478000;1482100;1474100;1471700;1469200;1465800;1457790;1462012;1465440;1472928;1480088;1475632;1469910;1463417;1465708;1465708;1465708;1465708;1465708;1465708
-214;'158;China, Taiwan Province of;1861;Roundwood;5616;Import quantity;m3;168000;276800;447300;565200;628000;694800;741700;1093400;1186300;1492600;2208600;3907300;3863300;3554000;3644600;4456600;6007800;7223800;7238000;5891200;6775300;5005100;6358700;5324100;5227300;5745400;6090100;5355500;4831700;2889300;3068416;3570954;1833896;2115294;1952105;1828600;1806200;1258500;975223;1165300;959300;1034612;1123372;1222179;1192541;832500;979962;1194103;694073;938167;779217;695829;757635;840196;559698;570258;395343;525844;442486;512048;511902;456979;456900
-214;'158;China, Taiwan Province of;1861;Roundwood;5622;Import value;1000 USD;4302;7851;13772;16878;17512;20630;22494;33908;37397;47547;69254;106413;183328;220037;143400;214342;325734;408453;629970;601937;570387;454341;447808;418651;312547;330966;476607;491185;497398;304709;342533;377795;326263;397798;376441;306561;321060;195893;123584;179872;165598;141917;151210;199817;205183;117750;231183;119908;143178;199405;209634;111136;207434;232652;134577;122681;92698;117561;91268;79578;79591;92306;92290
-214;'158;China, Taiwan Province of;1861;Roundwood;5916;Export quantity;m3;22000;27600;37600;93800;64600;67200;49800;30400;37500;37100;57900;46100;32800;13800;49500;37500;37500;37500;36200;22900;34900;29900;48800;84000;35300;6200;4400;1200;12000;;98947;67652;57559;51816;43946;43900;26250;33900;25054;10100;10500;13317;9051;18055;15112;52177;41582;30756;29169;18933;25994;31231;43567;39947;24849;25126;22751;11859;5231;5150;5155;1387;1387
-214;'158;China, Taiwan Province of;1861;Roundwood;5922;Export value;1000 USD;1052;1418;1836;4310;3437;6754;6103;4052;6147;6512;8112;13996;15300;7246;9916;7958;8458;8658;14505;8215;9125;5639;10088;12809;6496;4265;3718;1429;15928;;12896;7851;9955;11123;10129;9738;6642;8728;5983;6041;7167;7046;6185;11927;8599;16776;27792;21994;19344;17299;22644;29081;27836;34422;16481;20094;20770;9457;4145;2676;2714;1568;1568
-214;'158;China, Taiwan Province of;1862;Roundwood, coniferous;5516;Production;m3;745000;730000;885000;945000;890000;835000;943000;1082000;1034000;1277000;1272000;1286000;1278000;1183000;1128000;1121000;999000;777000;898000;1038000;934300;954000;1099100;1041400;1301000;1587700;1379800;1251500;1191500;1159700;1138500;1144900;1122100;1109700;1116200;1114500;1110600;1106800;1098800;1096900;1095300;1094700;1105900;1100000;1104900;1099300;1103000;1101700;1098500;1089170;1096212;1101541;1105698;1114833;1110826;1103936;1098677;1099958;1099958;1099958;1099958;1099958;1099958
-214;'158;China, Taiwan Province of;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184421;276528;238381;308190;308071;243890;243760
-214;'158;China, Taiwan Province of;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24215;34232;31649;29807;29797;39433;39360
-214;'158;China, Taiwan Province of;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1659;559;303;119;119;259;259
-214;'158;China, Taiwan Province of;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211;407;218;123;123;204;204
-214;'158;China, Taiwan Province of;1863;Roundwood, non-coniferous;5516;Production;m3;908000;815000;729000;867000;934000;838000;963000;950000;946000;1019000;1272000;1297000;1279000;1202000;921000;877000;774000;707000;694000;673000;586600;586800;627600;609100;566500;588000;548700;496900;437700;418500;392900;383500;368800;369300;369400;365800;364800;365300;366900;367000;375100;378400;373200;378000;377200;374800;368700;367500;367300;368620;365800;363899;367230;365255;364806;365974;364740;365750;365750;365750;365750;365750;365750
-214;'158;China, Taiwan Province of;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210922;249316;204105;203858;203831;213089;213140
-214;'158;China, Taiwan Province of;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68483;83329;59619;49771;49794;52873;52930
-214;'158;China, Taiwan Province of;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21092;11300;4928;5031;5036;1128;1128
-214;'158;China, Taiwan Province of;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19559;9050;3927;2553;2591;1364;1364
-214;'158;China, Taiwan Province of;1864;Wood fuel;5516;Production;m3;179000;181000;194000;172000;199000;171000;210000;200000;155000;242000;347000;436000;422000;359000;248000;230000;138000;94000;92000;86000;64900;67800;78700;68500;62500;63700;67500;57100;33900;26400;19300;18500;6000;3200;12000;6100;4700;5000;4300;4800;6000;4000;15000;9600;12700;9200;7200;6100;2600;290;740;2542;8143;4189;7762;7142;4825;5831;5831;5831;5831;5831;5831
-214;'158;China, Taiwan Province of;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908;102847;31005;31005;3900;1100;1200;1413;2800;2000;1000;1156;1617;1228;2595;1486;613;1180;546;1783;2070;2682;1341;1481;1083;1409;773;795;528;382;452;373
-214;'158;China, Taiwan Province of;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035;3529;2105;2105;334;523;388;313;1217;1615;878;313;774;381;1038;1023;392;389;757;1882;1093;1398;918;1128;400;750;428;404;194;207;329;313
-214;'158;China, Taiwan Province of;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2066;1898;46;46;300;150;1200;328;1100;1600;1600;364;2515;1435;79;333;70;132;187;280;1669;216;92;244;30;177;561;86;2;7;8;8
-214;'158;China, Taiwan Province of;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;178;2;2;250;48;593;153;234;337;354;267;326;355;57;351;432;283;146;589;743;90;355;325;12;134;449;83;8;46;50;50
-214;'158;China, Taiwan Province of;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;36300;38000;44100;38400;35000;35700;37800;32000;19000;15000;10800;10400;3400;1800;6700;3400;2600;2800;2400;2700;3400;2200;8400;5400;7100;5200;4100;3400;1500;170;560;2200;6445;3666;6771;6230;3925;4621;4621;4621;4621;4621;4621
-214;'158;China, Taiwan Province of;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1261;457;595;297;178;247;117
-214;'158;China, Taiwan Province of;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684;265;212;77;67;115;42
-214;'158;China, Taiwan Province of;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1;4;1;1;1;1
-214;'158;China, Taiwan Province of;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;50;2;2;2;2
-214;'158;China, Taiwan Province of;1628;Wood fuel, non-coniferous;5516;Production;m3;179000;181000;194000;172000;199000;171000;210000;200000;155000;242000;347000;436000;422000;359000;248000;230000;138000;94000;92000;86000;28600;29800;34600;30100;27500;28000;29700;25100;14900;11400;8500;8100;2600;1400;5300;2700;2100;2200;1900;2100;2600;1800;6600;4200;5600;4000;3100;2700;1100;120;180;342;1698;523;991;912;900;1210;1210;1210;1210;1210;1210
-214;'158;China, Taiwan Province of;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;316;200;231;204;205;256
-214;'158;China, Taiwan Province of;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;163;192;117;140;214;271
-214;'158;China, Taiwan Province of;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;560;82;1;6;7;7
-214;'158;China, Taiwan Province of;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;447;33;6;44;48;48
-214;'158;China, Taiwan Province of;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908;102847;31005;31005;3900;1100;1200;1413;2800;2000;1000;1156;1617;1228;2595;1486;613;1180;546;1783;2070;2682;1341;1481;1083;;;;;;;
-214;'158;China, Taiwan Province of;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035;3529;2105;2105;334;523;388;313;1217;1615;878;313;774;381;1038;1023;392;389;757;1882;1093;1398;918;1128;400;;;;;;;
-214;'158;China, Taiwan Province of;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2066;1898;46;46;300;150;1200;328;1100;1600;1600;364;2515;1435;79;333;70;132;187;280;1669;216;92;244;30;;;;;;;
-214;'158;China, Taiwan Province of;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;178;2;2;250;48;593;153;234;337;354;267;326;355;57;351;432;283;146;589;743;90;355;325;12;;;;;;;
-214;'158;China, Taiwan Province of;1865;Industrial roundwood;5516;Production;m3;1474000;1364000;1420000;1640000;1625000;1502000;1696000;1832000;1825000;2054000;2197000;2147000;2135000;2026000;1801000;1768000;1635000;1390000;1500000;1625000;1456000;1473000;1648000;1582000;1805000;2112000;1861000;1691300;1595300;1551800;1512100;1509900;1484900;1475800;1473600;1474200;1470700;1467100;1461400;1459100;1464400;1469100;1464100;1468400;1469400;1464900;1464500;1463100;1463200;1457500;1461272;1462898;1464785;1475899;1467870;1462768;1458592;1459877;1459877;1459877;1459877;1459877;1459877
-214;'158;China, Taiwan Province of;1865;Industrial roundwood;5616;Import quantity;m3;168000;276800;447300;565200;628000;694800;741700;1093400;1186300;1492600;2208600;3907300;3863300;3554000;3644600;4456600;6007800;7223800;7238000;5891200;6775300;5005100;6358700;5324100;5227300;5745400;6090100;5355500;4831700;2889300;3068416;3547046;1731049;2084289;1921100;1824700;1805100;1257300;973810;1162500;957300;1033612;1122216;1220562;1191313;829905;978476;1193490;692893;937621;777434;693759;754953;838855;558217;569175;393934;525071;441691;511520;511520;456527;456527
-214;'158;China, Taiwan Province of;1865;Industrial roundwood;5622;Import value;1000 USD;4302;7851;13772;16878;17512;20630;22494;33908;37397;47547;69254;106413;183328;220037;143400;214342;325734;408453;629970;601937;570387;454341;447808;418651;312547;330966;476607;491185;497398;304709;342533;376760;322734;395693;374336;306227;320537;195505;123271;178655;163983;141039;150897;199043;204802;116712;230160;119516;142789;198648;207752;110043;206036;231734;133449;122281;91948;117133;90864;79384;79384;91977;91977
-214;'158;China, Taiwan Province of;1865;Industrial roundwood;5916;Export quantity;m3;22000;27600;37600;93800;64600;67200;49800;30400;37500;37100;57900;46100;32800;13800;49500;37500;37500;37500;36200;22900;34900;29900;48800;84000;35300;6200;4400;1200;12000;;98947;65586;55661;51770;43900;43600;26100;32700;24726;9000;8900;11717;8687;15540;13677;52098;41249;30686;29037;18746;25714;29562;43351;39855;24605;25096;22574;11298;5145;5148;5148;1379;1379
-214;'158;China, Taiwan Province of;1865;Industrial roundwood;5922;Export value;1000 USD;1052;1418;1836;4310;3437;6754;6103;4052;6147;6512;8112;13996;15300;7246;9916;7958;8458;8658;14505;8215;9125;5639;10088;12809;6496;4265;3718;1429;15928;;12896;7765;9777;11121;10127;9488;6594;8135;5830;5807;6830;6692;5918;11601;8244;16719;27441;21562;19061;17153;22055;28338;27746;34067;16156;20082;20636;9008;4062;2668;2668;1518;1518
-214;'158;China, Taiwan Province of;1866;Industrial roundwood, coniferous;5516;Production;m3;745000;730000;885000;945000;890000;835000;943000;1082000;1034000;1277000;1272000;1286000;1278000;1183000;1128000;1121000;999000;777000;898000;1038000;898000;916000;1055000;1003000;1266000;1552000;1342000;1219500;1172500;1144700;1127700;1134500;1118700;1107900;1109500;1111100;1108000;1104000;1096400;1094200;1091900;1092500;1097500;1094600;1097800;1094100;1098900;1098300;1097000;1089000;1095652;1099341;1099253;1111167;1104055;1097706;1094752;1095337;1095337;1095337;1095337;1095337;1095337
-214;'158;China, Taiwan Province of;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104300;133131;170000;243400;140000;114100;112700;108200;100000;163859;89500;134600;139000;170193;178305;158600;204741;215949;237823;196363;290727;249942;325835;263798;332910;221358;245257;183160;276071;237786;307893;307893;243643;243643
-214;'158;China, Taiwan Province of;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27738;24306;30246;46251;27636;39907;24484;29086;13791;19059;12795;19579;19571;16137;24692;22490;23360;30086;30606;23840;33048;36148;36228;29569;35907;31081;33105;23531;33967;31437;29730;29730;39318;39318
-214;'158;China, Taiwan Province of;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68247;46988;31378;25870;20000;27000;20000;26000;3218;3000;2700;3600;2345;5740;4680;2201;3500;2601;1681;1264;1251;4482;1771;2061;1119;1182;1637;558;299;118;118;258;258
-214;'158;China, Taiwan Province of;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6317;5121;4368;3130;3136;3978;1994;2331;1553;1146;1617;1636;792;3024;1928;1468;1713;1809;1725;1424;828;493;527;972;621;1350;1204;405;168;121;121;202;202
-214;'158;China, Taiwan Province of;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104300;133131;170000;243400;140000;114100;112700;108200;100000;163859;89500;134600;139000;170193;178305;158600;204741;215949;237823;196363;290727;249942;325835;263798;332910;221358;245257;183160;276071;237786;307893;307893;243643;243643
-214;'158;China, Taiwan Province of;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27738;24306;30246;46251;27636;39907;24484;29086;13791;19059;12795;19579;19571;16137;24692;22490;23360;30086;30606;23840;33048;36148;36228;29569;35907;31081;33105;23531;33967;31437;29730;29730;39318;39318
-214;'158;China, Taiwan Province of;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68247;46988;31378;25870;20000;27000;20000;26000;3218;3000;2700;3600;2345;5740;4680;2201;3500;2601;1681;1264;1251;4482;1771;2061;1119;1182;1637;558;299;118;118;258;258
-214;'158;China, Taiwan Province of;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6317;5121;4368;3130;3136;3978;1994;2331;1553;1146;1617;1636;792;3024;1928;1468;1713;1809;1725;1424;828;493;527;972;621;1350;1204;405;168;121;121;202;202
-214;'158;China, Taiwan Province of;1867;Industrial roundwood, non-coniferous;5516;Production;m3;729000;634000;535000;695000;735000;667000;753000;750000;791000;777000;925000;861000;857000;843000;673000;647000;636000;613000;602000;587000;558000;557000;593000;579000;539000;560000;519000;471800;422800;407100;384400;375400;366200;367900;364100;363100;362700;363100;365000;364900;372500;376600;366600;373800;371600;370800;365600;364800;366200;368500;365620;363557;365532;364732;363815;365062;363840;364540;364540;364540;364540;364540;364540
-214;'158;China, Taiwan Province of;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2785000;2935285;3377046;1487649;1944289;1807000;1712000;1696900;1157300;809951;1073000;822700;894612;952023;1042257;1032713;625164;762527;955667;496530;646894;527492;367924;491155;505945;336859;323918;210774;249000;203905;203627;203627;212884;212884
-214;'158;China, Taiwan Province of;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276971;318227;346514;276483;368057;334429;281743;291451;181714;104212;165860;144404;121468;134760;174351;182312;93352;200074;88910;118949;165600;171604;73815;176467;195827;102368;89176;68417;83166;59427;49654;49654;52659;52659
-214;'158;China, Taiwan Province of;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30700;18598;24283;25900;23900;16600;6100;6700;21508;6000;6200;8117;6342;9800;8997;49897;37749;28085;27356;17482;24463;25080;41580;37794;23486;23914;20937;10740;4846;5030;5030;1121;1121
-214;'158;China, Taiwan Province of;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6579;2644;5409;7991;6991;5510;4600;5804;4277;4661;5213;5056;5126;8577;6316;15251;25728;19753;17336;15729;21227;27845;27219;33095;15535;18732;19432;8603;3894;2547;2547;1316;1316
-214;'158;China, Taiwan Province of;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700000;2779285;3220521;1350000;1738000;1600000;1600000;1587100;1135300;805638;1050000;806200;852084;891922;990177;991782;588832;742375;923084;482314;613916;497979;349961;474042;491366;323693;310705;192382;234000;191951;189112;189112;189112;189112
-214;'158;China, Taiwan Province of;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259709;302660;332449;260000;330057;287258;256196;257491;167745;86041;156528;138709;103057;112282;152777;165327;76414;186371;75483;111419;149327;156708;62501;164457;183914;91103;78793;55317;69966;49948;41544;41544;41544;41544
-214;'158;China, Taiwan Province of;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;5000;8600;5000;4100;1513;5000;2000;876;3063;7152;6516;10807;10674;10388;6913;8669;14894;23130;12492;17736;5778;8141;6341;2755;1192;916;916;916;916
-214;'158;China, Taiwan Province of;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;4776;4014;3804;516;4245;1213;741;2967;6291;4790;7544;13253;12544;8840;11465;16264;20568;14112;20693;7949;10521;11251;4275;1791;1199;1199;1199;1199
-214;'158;China, Taiwan Province of;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;156000;156525;137649;206289;207000;112000;109800;22000;4313;23000;16500;42528;60101;52080;40931;36332;20152;32583;14216;32978;29513;17963;17113;14579;13166;13213;18392;15000;11954;14515;14515;23772;23772
-214;'158;China, Taiwan Province of;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17262;15567;14065;16483;38000;47171;25547;33960;13969;18171;9332;5695;18411;22478;21574;16985;16938;13703;13427;7530;16273;14896;11314;12010;11913;11265;10383;13100;13200;9479;8110;8110;11115;11115
-214;'158;China, Taiwan Province of;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30700;18598;24283;18900;18900;8000;1100;2600;19995;1000;4200;7241;3279;2648;2481;39090;27075;17697;20443;8813;9569;1950;29088;20058;17708;15773;14596;7985;3654;4114;4114;205;205
-214;'158;China, Taiwan Province of;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6579;2644;5409;4991;4991;734;586;2000;3761;416;4000;4315;2159;2286;1526;7707;12475;7209;8496;4264;4963;7277;13107;12402;7586;8211;8181;4328;2103;1348;1348;117;117
-214;'158;China, Taiwan Province of;1868;Sawlogs and veneer logs;5516;Production;m3;1040000;920000;975000;1170000;1130000;1007000;1061000;1117000;1115000;1109000;1217000;1137000;1100000;986000;857000;824000;691000;675000;654000;583000;530000;495000;616000;562000;475000;498000;423000;253300;157300;113800;74100;71900;46900;37800;35600;36200;32700;29100;23400;21100;26400;31100;26100;30400;31400;26900;26500;25100;25200;19500;23272;24898;26785;37899;29870;24768;20592;21877;21877;21877;21877;21877;21877
-214;'158;China, Taiwan Province of;1868;Sawlogs and veneer logs;5616;Import quantity;m3;168000;276800;447300;565200;628000;694800;741700;1093400;1186300;1492600;2208600;3907300;3863300;3554000;3644600;3944700;5496300;6694900;6375700;5254900;5053400;4059200;4717400;4105000;3722200;3688100;3971400;4255500;3573700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;4302;7851;13772;16878;17512;20630;22494;33908;37397;47547;69254;106413;183328;220037;143400;205767;316098;398017;613300;579636;519521;429978;411910;391386;279187;290350;422092;437976;379495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1868;Sawlogs and veneer logs;5916;Export quantity;m3;22000;27600;37600;93800;64600;67200;49800;30400;37500;37100;57900;46100;32800;13800;49500;37500;37500;37500;36200;22900;34900;29900;48800;84000;35300;6200;4400;1200;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1052;1418;1836;4310;3437;6754;6103;4052;6147;6512;8112;13996;15300;7246;9916;7958;8458;8658;14505;8215;9125;5639;10088;12809;6496;4265;3718;1429;15928;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;690000;670000;810000;860000;805000;735000;723000;757000;714000;727000;692000;676000;648000;553000;544000;537000;415000;422000;412000;356000;332000;298000;383000;343000;296000;298000;264000;141500;94500;66700;49700;56500;40700;29900;31500;33100;30000;26000;18400;16200;13900;14500;19500;16600;19800;16100;20900;20300;19000;11000;17652;21341;21253;33167;26055;19706;16752;17337;17337;17337;17337;17337;17337
-214;'158;China, Taiwan Province of;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;800;800;2900;2900;2900;14500;3300;3300;3300;3300;3300;3300;22000;26600;30700;30700;51900;84700;36400;104600;49000;20200;5100;5800;11700;2900;8900;3800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;19;19;70;70;70;497;109;109;109;109;109;109;1265;873;3871;3871;7145;12893;5073;10399;4740;1750;612;915;3287;495;1985;1352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;12200;19300;35600;91700;63600;66700;49400;28700;34300;28800;56600;37000;30500;11500;35300;28300;28300;28300;23800;17300;29100;29300;37600;34400;4900;1200;1100;400;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;616;1006;1749;4229;3414;6735;6072;3944;5797;6175;7884;12221;14995;6941;5500;4000;4500;4700;4000;3027;4949;5283;7486;6183;2865;1265;1539;914;9492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;350000;250000;165000;310000;325000;272000;338000;360000;401000;382000;525000;461000;452000;433000;313000;287000;276000;253000;242000;227000;198000;197000;233000;219000;179000;200000;159000;111800;62800;47100;24400;15400;6200;7900;4100;3100;2700;3100;5000;4900;12500;16600;6600;13800;11600;10800;5600;4800;6200;8500;5620;3557;5532;4732;3815;5062;3840;4540;4540;4540;4540;4540;4540
-214;'158;China, Taiwan Province of;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;168000;276000;446500;562300;625100;691900;727200;1090100;1183000;1489300;2205300;3904000;3860000;3532000;3618000;3914000;5465600;6643000;6291000;5218500;4948800;4010200;4697200;4099900;3716400;3676400;3968500;4246600;3569900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;4302;7832;13753;16808;17442;20560;21997;33799;37288;47438;69145;106304;183219;218772;142527;201896;312227;390872;600407;574563;509122;425238;410160;390774;278272;287063;421597;435991;378143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;9800;8300;2000;2100;1000;500;400;1700;3200;8300;1300;9100;2300;2300;14200;9200;9200;9200;12400;5600;5800;600;11200;49600;30400;5000;3300;800;8800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;436;412;87;81;23;19;31;108;350;337;228;1775;305;305;4416;3958;3958;3958;10505;5188;4176;356;2602;6626;3631;3000;2179;515;6436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000
-214;'158;China, Taiwan Province of;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000
-214;'158;China, Taiwan Province of;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;511900;511500;528900;862300;636300;1721900;945900;1641300;1219100;1505100;2057300;2118700;1100000;966000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;8575;9636;10436;16670;22301;50866;24363;35898;27265;33360;40616;54515;53209;98186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1870;Pulpwood and particles (1961-1997);5516;Production;m3;55000;60000;75000;85000;85000;100000;220000;325000;320000;550000;580000;610000;630000;630000;584000;584000;584000;355000;486000;682000;566000;618000;672000;660000;970000;1254000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;511900;511500;528900;862300;636300;1721900;945900;1641300;1219100;1505100;2057300;2118700;1100000;966000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;8575;9636;10436;16670;22301;50866;24363;35898;27265;33360;40616;54515;53209;98186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;55000;60000;75000;85000;85000;100000;220000;325000;320000;550000;580000;610000;630000;630000;584000;584000;584000;355000;486000;682000;566000;618000;672000;660000;970000;1254000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1871;Other industrial roundwood;5516;Production;m3;379000;384000;370000;385000;410000;395000;415000;390000;390000;395000;400000;400000;405000;410000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000
-214;'158;China, Taiwan Province of;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;379000;384000;370000;385000;410000;395000;415000;390000;390000;395000;400000;400000;405000;410000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000
-214;'158;China, Taiwan Province of;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866367
-214;'158;China, Taiwan Province of;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24474;25690;32536;32500;28500;27600;31500;29071;30800;30900;32018;34444;34085;35753;33882;33531;33907;29576;30040;35726;34403;33673;36906;36358;35851;38173;34487;35436;32680;29749.95;30960;37211
-214;'158;China, Taiwan Province of;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4418;4644;5971;8691;7825;6636;6715;5667;5915;7178;6179;6643;6562;7707;7119;7154;8251;6938;6699;8227;8443;8469;9664;9846;9785;10551;10474;10553;11053;10327;11524;14093
-214;'158;China, Taiwan Province of;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577;1615;1810;500;700;700;400;176;200;200;218;62;116;46;48;56;31;56;55;25;18;56;113;56;111;348;133;176;38;18;36;55
-214;'158;China, Taiwan Province of;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;516;599;196;247;341;235;155;118;134;101;85;762;147;99;135;80;116;347;31;75;121;172;265;347;1268;538;1003;122;68;110;153
-214;'158;China, Taiwan Province of;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1707600;1976354;1939600;1840600;1814912;2160412;1982972;1971600;1398600;1822100;2193200;1271218;2125527;2333797;2016072;2120157;2122460;2205640;1664987;1604847;1055365;949382;902399;1060786.35;990678;906684
-214;'158;China, Taiwan Province of;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73552;78409;73162;71873;69011;91815;99434;112702;83334;111549;168646;72943;127850;131460;115186;118723;123689;123488;89119;83414;83394;77003;70115;95367.39;115821;90382
-214;'158;China, Taiwan Province of;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400;35938;31400;39400;11486;1910;275;527;618;383;1653;1750;2101;1788;2365;361;2369;1288;798;208;18;7;44;10;9;21
-214;'158;China, Taiwan Province of;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1364;1545;1487;1246;608;553;562;1064;525;333;543;513;476;540;723;234;693;367;219;144;64;31;139;20;8;38
-214;'158;China, Taiwan Province of;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;80600;192200;192200;192200;200000;200000;228000;239300;356100;336700;400000;687900;593200;839200;600000;1167600;1409000;857026;676700;1438600;2052500;1900800;1779000;1697000;1965800;1936000;1838400;1806600;2153300;1973800;1961000;1391000;1813000;2185000;1261347;2117384;2322885;2003531;2118979;2105550;2188549;1648778;1598921;1049291;943782;896284;1053800;986143;903967
-214;'158;China, Taiwan Province of;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;4104;8472;8472;8472;11000;11000;11195;10436;11473;13341;21580;24000;24770;39274;32330;63157;74099;25045;40049;66181;122695;74293;76840;71470;76339;72547;71368;67440;90243;97456;110229;81503;109363;166586;70258;125844;128523;111925;118416;119904;119979;85650;82181;81831;75472;68720;93465;114207;89424
-214;'158;China, Taiwan Province of;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15304;14118;22717;31100;68800;59700;32200;20710;23000;32000;11252;1776;112;157;54;61;53;250;500;42;26;51;13;4;3;14;5;0;29;0;0;9
-214;'158;China, Taiwan Province of;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1068;1069;1406;1589;5183;3347;1115;986;1094;909;465;522;486;851;123;82;42;17;35;64;92;154;35;23;4;28;52;23;125;16;1;28
-214;'158;China, Taiwan Province of;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26675;31588;31728;11300;2200;10600;10600;10554;3600;2200;8312;7112;9172;10600;7600;9100;8200;9871;8143;10912;12541;1178;16910;17091;16209;5926;6074;5600;6115;6986.35;4535;2717
-214;'158;China, Taiwan Province of;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1445;1227;1581;563;478;2820;2082;2070;615;505;1571;1572;1978;2473;1831;2186;2060;2685;2006;2937;3261;307;3785;3509;3469;1233;1563;1531;1395;1902.39;1614;958
-214;'158;China, Taiwan Province of;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4103;3566;5023;5023;2600;2000;5200;15228;8400;7400;234;134;163;370;564;322;1600;1500;1601;1746;2339;310;2356;1284;795;194;13;7;15;10;9;12
-214;'158;China, Taiwan Province of;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;204;121;121;184;109;249;559;393;337;143;31;76;213;402;251;501;496;441;476;631;80;658;344;215;116;12;8;14;4;7;10
-214;'158;China, Taiwan Province of;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;67;7323;29415;32539;29085;23884;25249;22108;13178.43;6646;7533
-214;'158;China, Taiwan Province of;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;1112;5707;5810;4778;4705;4725;4356;3399.2;2473;2816
-214;'158;China, Taiwan Province of;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;530;378;355;196;337;29;1883;3957
-214;'158;China, Taiwan Province of;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;215;144;141;82;61;16;286;602
-214;'158;China, Taiwan Province of;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;67;7323;18021;21733;20575;17472;21288;18611;10098.47;5067;6276
-214;'158;China, Taiwan Province of;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;1112;2198;2341;2626;2853;3281;2894;2054.5;1741;1931
-214;'158;China, Taiwan Province of;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;19;275;5;1789;3936
-214;'158;China, Taiwan Province of;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;1;9;33;8;247;600
-214;'158;China, Taiwan Province of;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11394;10806;8510;6412;3961;3497;3079.96;1579;1257
-214;'158;China, Taiwan Province of;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3509;3469;2152;1852;1444;1462;1344.69;732;885
-214;'158;China, Taiwan Province of;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;856;530;378;355;177;62;24;94;21
-214;'158;China, Taiwan Province of;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;215;144;140;73;28;8;39;2
-214;'158;China, Taiwan Province of;1872;Sawnwood;5516;Production;m3;608700;568200;672100;670000;647900;593100;617200;632200;620600;585000;597000;642000;574000;530000;550000;550000;461000;454000;441000;395000;363000;339000;416000;411000;474000;652000;527000;534000;513000;417000;417000;417000;417000;417000;86000;96000;73000;69000;63000;41000;36000;31000;27000;31000;32000;27000;27000;25000;24000;16000;23000;25000;25000;37700;37700;37700;37700;37700;37700;37700;37700;37700;37700
-214;'158;China, Taiwan Province of;1872;Sawnwood;5616;Import quantity;m3;1000;2300;1100;800;1100;3800;3700;3400;8900;8200;22800;6400;7300;24200;20700;28200;36300;54000;94300;139300;206100;298500;432900;533100;537400;808000;1179900;1192200;1075400;811500;1059700;1432937;1363044;1454707;1967900;1584500;1755700;864700;1411571;1123000;1192100;953707;1068991;1269520;1142102;922539;1112954;1057826;811580;1149338;1228221;1068000;1188563;1287029;1275739;1121301;1235285;1332628;1215602;1222398;1222398;1426415;1426415
-214;'158;China, Taiwan Province of;1872;Sawnwood;5622;Import value;1000 USD;23;132;110;97;77;331;350;225;672;884;977;962;1392;5023;4535;6364;8183;12628;22295;33850;48122;61743;99320;123558;108080;206514;321109;255490;327306;267058;414421;326307;449632;475000;792855;611283;658369;249402;194313;267822;318936;225087;229438;296266;297172;290074;289276;286289;183987;310385;348745;274080;350886;391328;343315;283545;322539;377804;328328;302729;302729;367939;367939
-214;'158;China, Taiwan Province of;1872;Sawnwood;5916;Export quantity;m3;41100;68800;75900;102500;104700;90900;96800;105400;110400;107900;84300;140600;93700;26600;69700;120700;74400;107300;47000;27300;16200;43000;44400;41600;44500;44500;47600;46300;30100;30100;30800;61600;56500;39700;48200;49900;70800;63900;101115;45300;43200;45878;56992;68328;62883;53737;64610;64587;39787;31271;27894;26563;28992;25165;18237;18627;30122;16302;14605;15172;15172;3894;3894
-214;'158;China, Taiwan Province of;1872;Sawnwood;5922;Export value;1000 USD;1585;3496;5539;7256;9032;9502;11737;13669;17238;21676;16339;25383;19901;11912;34726;44564;33268;50654;42121;22471;20429;32530;32685;30023;31646;31646;49125;63405;56054;51256;48440;78294;76420;50108;69202;59283;72713;53298;46103;39629;38889;32051;49300;69797;53139;44671;51577;54719;36002;39708;39601;35312;40832;35346;22862;21429;27369;21721;18072;16081;16081;6637;6637
-214;'158;China, Taiwan Province of;1632;Sawnwood, coniferous;5516;Production;m3;419350;395100;467550;466000;450450;412550;425600;436600;428300;405000;415000;445000;395000;365000;380000;380000;297000;302000;295000;257000;241000;218000;276000;268000;309000;425000;344000;349000;335000;272000;272000;272000;272000;272000;32000;33000;30000;26000;18000;16000;14000;14000;20000;17000;20000;16000;21000;20000;19000;11000;18000;21000;21000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000
-214;'158;China, Taiwan Province of;1632;Sawnwood, coniferous;5616;Import quantity;m3;900;900;300;100;100;2400;1800;400;400;1100;15700;1800;1800;200;400;1000;1000;1000;1400;3300;9100;5600;10500;14600;8900;8000;21700;32300;100500;100800;211300;555074;515044;627707;588900;486500;614300;489700;979509;578400;454700;512773;616348;698819;587255;616992;705433;703026;588598;768370;850875;766359;856086;905854;971653;878260;988707;1100000;984572;1030000;1030000;1234017;1234017
-214;'158;China, Taiwan Province of;1632;Sawnwood, coniferous;5622;Import value;1000 USD;10;6;10;3;3;25;19;13;13;41;134;117;117;36;109;410;410;410;860;2030;5600;1227;2631;4336;1826;1700;4891;9878;25860;25765;51559;65879;86770;100000;181208;130301;147390;125432;75700;95507;84856;88409;100047;129728;128158;136698;143767;151281;107804;175505;203558;157966;225187;240511;221211;183960;219715;266144;219624;219481;219481;284691;284691
-214;'158;China, Taiwan Province of;1632;Sawnwood, coniferous;5916;Export quantity;m3;14200;26400;34700;47950;55400;52150;52400;47500;58050;67300;36150;61550;32450;7350;34850;20550;19250;28150;19100;10400;10600;12200;12200;11400;12400;12400;16300;11600;14200;14200;15600;26600;26500;15300;16200;15000;22700;20000;19924;16300;18900;14213;20886;26161;18275;11570;10906;11867;11841;11153;11229;8701;9565;9510;3560;4924;5172;3789;3125;3243;3243;1019;1019
-214;'158;China, Taiwan Province of;1632;Sawnwood, coniferous;5922;Export value;1000 USD;515;1494;3415;4668;6076;7033;8946;9572;13081;18741;12424;17196;11506;6956;24305;17807;16634;25327;29117;15092;17367;18351;17250;15096;16178;16178;29733;35912;41368;36570;32302;46544;46899;27397;32092;24559;28316;20566;20025;21258;24297;16110;27442;42219;25787;16362;14040;14913;15590;16189;15045;12339;14370;14190;4863;5968;7608;7342;4082;5957;5957;1772;1772
-214;'158;China, Taiwan Province of;1633;Sawnwood, non-coniferous;5516;Production;m3;189350;173100;204550;204000;197450;180550;191600;195600;192300;180000;182000;197000;179000;165000;170000;170000;164000;152000;146000;138000;122000;121000;140000;143000;165000;227000;183000;185000;178000;145000;145000;145000;145000;145000;54000;63000;43000;43000;45000;25000;22000;17000;7000;14000;12000;11000;6000;5000;5000;5000;5000;4000;4000;4700;4700;4700;4700;4700;4700;4700;4700;4700;4700
-214;'158;China, Taiwan Province of;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;100;1400;800;700;1000;1400;1900;3000;8500;7100;7100;4600;5500;24000;20300;27200;35300;53000;92900;136000;197000;292900;422400;518500;528500;800000;1158200;1159900;974900;710700;848400;877863;848000;827000;1379000;1098000;1141400;375000;432062;544600;737400;440934;452643;570701;554847;305547;407521;354800;222982;380968;377346;301641;332477;381175;304086;243041;246578;232628;231030;192398;192398;192398;192398
-214;'158;China, Taiwan Province of;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;13;126;100;94;74;306;331;212;659;843;843;845;1275;4987;4426;5954;7773;12218;21435;31820;42522;60516;96689;119222;106254;204814;316218;245612;301446;241293;362862;260428;362862;375000;611647;480982;510979;123970;118613;172315;234080;136678;129391;166538;169014;153376;145509;135008;76183;134880;145187;116114;125699;150817;122104;99585;102824;111660;108704;83248;83248;83248;83248
-214;'158;China, Taiwan Province of;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;26900;42400;41200;54550;49300;38750;44400;57900;52350;40600;48150;79050;61250;19250;34850;100150;55150;79150;27900;16900;5600;30800;32200;30200;32100;32100;31300;34700;15900;15900;15200;35000;30000;24400;32000;34900;48100;43900;81191;29000;24300;31665;36106;42167;44608;42167;53704;52720;27946;20118;16665;17862;19427;15655;14677;13703;24950;12513;11480;11929;11929;2875;2875
-214;'158;China, Taiwan Province of;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1070;2002;2124;2588;2956;2469;2791;4097;4157;2935;3915;8187;8395;4956;10421;26757;16634;25327;13004;7379;3062;14179;15435;14927;15468;15468;19392;27493;14686;14686;16138;31750;29521;22711;37110;34724;44397;32732;26078;18371;14592;15941;21858;27578;27352;28309;37537;39806;20412;23519;24556;22973;26462;21156;17999;15461;19761;14379;13990;10124;10124;4865;4865
-214;'158;China, Taiwan Province of;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;2000;6000;1000;1000;2000;2000;4000;4000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;100000;100000;120000;120000;50000;50000;50000;60000;60000;60000;60000;30000;60000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-214;'158;China, Taiwan Province of;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;400;500;1000;1000;1000;2000;13000;12900;10200;23100;48300;47000;72000;39500;39500;81900;95100;87700;90400;124500;266088;80000;260700;180700;176400;234800;201300;164633;114800;143300;143353;90418;152216;131355;134765;131998;147115;120970;173073;176977;180092;199755;231151;212453;190338;207687;193398;162799;169571;169571;169571;169571
-214;'158;China, Taiwan Province of;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;200;750;518;810;662;1974;13800;14509;11041;16019;20720;20197;30654;20986;20986;41532;39030;50260;41561;46901;74281;22243;116430;91073;87741;111015;77343;59988;40235;58234;55045;40003;73712;64197;70055;71691;69827;50800;81378;93650;91909;106503;101637;114526;93971;97933;116044;87829;82855;82855;82855;82855
-214;'158;China, Taiwan Province of;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;1500;5600;1000;1100;1800;2300;3800;3800;7100;2000;1000;3500;2900;2200;2200;4900;5000;4600;4600;4300;6318;7348;10000;9200;400;2000;6300;7494;6200;5100;6775;13579;17129;20767;18037;15138;10405;6436;5996;4976;4780;3867;5378;3968;3858;3176;2857;3957;4494;4494;4494;4494
-214;'158;China, Taiwan Province of;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;209;1312;420;500;834;1150;2000;2385;4466;941;649;1832;2664;2252;2252;11616;9977;4883;4883;3967;7455;7265;10754;14360;624;4467;6378;10265;6661;9166;13906;22012;32072;42045;41367;39774;28764;16031;16509;15061;15384;13526;8099;14809;13034;10432;10029;10678;9021;9021;9021;9021
-214;'158;China, Taiwan Province of;1873;Wood-based panels;5516;Production;m3;94600;129700;138700;257500;303100;373932;391642;461694;557180;694007;852636;1197424;1179530;913530;888000;1024000;1021000;1358000;1526000;1375000;1445000;1320000;1330000;1080000;930000;980000;1030000;1020000;835000;593000;593000;593000;593000;593000;593000;593000;593000;900000;906000;889000;890000;589000;640000;745000;767000;344000;294000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000
-214;'158;China, Taiwan Province of;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;150;100;100;200;10000;10000;10000;21700;39600;45200;47600;71800;185300;201000;351100;540300;493200;624200;828900;934200;1256105;1043971;1317074;1432400;1387900;1630200;1140000;1450348;1433300;1084800;1271972;1407943;1584750;1513264;1519296;1331546;1127767;1101063;1348051;1245346;1116326;1131922;1224688;1163663;1124823;1143065;1104013;1099167;1134484;1234985.8;1093192;1041306
-214;'158;China, Taiwan Province of;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;63;48;30;50;2938;2938;3608;4471;11013;10800;11211;17645;49383;42960;76202;142528;133082;186539;241340;249583;368369;363763;468542;492981;432217;460467;333532;300296;302433;243988;247400;280628;370531;366520;398332;437624;388190;312209;450485;478215;414691;427179;459415;461774;417822;399849;405429;394375;399779;462808.21;439687;409673
-214;'158;China, Taiwan Province of;1873;Wood-based panels;5916;Export quantity;m3;51800;72500;85600;208400;222500;262600;277900;396600;488400;580000;810000;950900;953000;685000;768400;869200;946100;1240100;1091600;876900;954900;832900;879800;610600;561800;510300;554700;509900;345800;256700;207400;193034;199777;245296;170200;173600;171400;91500;105717;75200;64700;79138;86158;73833;60818;61186;51004;55071;45587;48268;47634;108493;88069;37563;56254;25664;38864;38306;36044;32716;33079.99;32812;31749
-214;'158;China, Taiwan Province of;1873;Wood-based panels;5922;Export value;1000 USD;7135;10516;10687;26018;26335;33309;41093;53028;63430;77733;95261;152295;223936;171513;132172;190310;236862;326595;426566;380565;401026;335526;366105;284182;230703;242020;271184;296240;237815;176267;140561;104636;99089;123508;128573;155918;146241;70631;53801;46651;46605;43785;70812;41646;36084;49362;48452;52752;40975;45750;43879;65433;76179;39719;67527;36422;67546;65211;54797;48577;49153.73;48370;47528
-214;'158;China, Taiwan Province of;1640;Plywood and LVL;5516;Production;m3;59500;84100;99500;213300;251300;314800;336300;423200;512000;644000;810000;1154000;1129000;863000;813000;949000;946000;1283000;1451000;1300000;1370000;1240000;1250000;1000000;850000;900000;950000;940000;755000;513000;513000;513000;513000;513000;513000;513000;513000;820000;826000;809000;810000;509000;560000;665000;687000;264000;214000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000
-214;'158;China, Taiwan Province of;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;150;100;100;100;8900;8900;8900;1600;3400;13000;20500;39400;125700;128900;279000;371500;333200;493000;478700;481400;884812;603877;932964;971800;794200;884700;495000;650348;667900;501800;584572;783743;937350;925464;992196;882290;746138;720615;862792;757667;648000;693000;716033;670895;657812;632172;576113;587879;573604;573604;573604;573604
-214;'158;China, Taiwan Province of;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;63;48;30;30;2700;2700;3370;616;1775;4167;5280;10850;33538;28758;62000;113006;100124;160428;152295;132567;296626;263154;367013;366043;305176;312657;221447;176574;188339;147303;152012;190317;263026;265165;302213;326879;285337;228749;325334;336434;276628;298861;311353;329435;294987;258311;253499;255932;250834;250834;250834;250834
-214;'158;China, Taiwan Province of;1640;Plywood and LVL;5916;Export quantity;m3;51800;72500;85600;208400;222500;262600;277900;396600;488400;580000;810000;950900;953000;685000;768000;869000;945900;1239900;1091400;868400;951100;821600;867000;600700;556400;504900;544400;500800;344600;255500;204000;175143;166127;205152;155800;161300;163700;77500;88543;63000;52000;54493;60458;40733;35918;34986;36957;41298;31376;35893;32421;97350;76841;27575;45210;16115;23436;27858;28732;25371;25371;25371;25371
-214;'158;China, Taiwan Province of;1640;Plywood and LVL;5922;Export value;1000 USD;7135;10516;10687;26018;26335;33309;41093;53028;63430;77733;95261;152295;223936;171513;131887;190111;236663;326396;426367;374462;399015;329482;360468;279826;228435;239752;261236;285972;235726;174178;137983;98669;87825;111135;123274;151275;142503;64391;42265;40790;37912;32354;59299;26432;24666;33462;35258;40044;31162;37232;31785;53062;60794;25687;48262;16985;37872;51718;45669;39918;39918;39918;39918
-214;'158;China, Taiwan Province of;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536;23738
-214;'158;China, Taiwan Province of;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;10086
-214;'158;China, Taiwan Province of;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-214;'158;China, Taiwan Province of;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16
-214;'158;China, Taiwan Province of;1646;Particle board and OSB (1961-1994);5516;Production;m3;8000;17000;17000;17000;25000;26700;26700;26700;27700;30000;30000;35000;40000;40000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;100;1100;1100;1100;20100;36200;32200;27100;32400;59600;72100;72100;168800;160000;131200;122600;157500;149599;188787;151449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;20;238;238;238;3855;9238;6633;5931;6795;15845;14202;14202;29522;32958;26111;24515;29726;22675;33589;28273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;400;200;200;200;200;8500;3800;11300;12800;9900;5400;5400;10300;9100;1200;1200;3400;9999;14476;8534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;285;199;199;199;199;6103;2011;6044;5637;4356;2268;2268;9948;10268;2089;2089;2578;2535;4045;2350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000
-214;'158;China, Taiwan Province of;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77400;225700;290300;275000;308000;333300;263100;303700;280300;312600;255000;252700;261500;219200;244266;305368;297792;280011;266765;312694;313903;295638;344997;376451;372140;403460;478753.57;410499;366986
-214;'158;China, Taiwan Province of;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24564;47971;55172;45591;46273;48488;43574;40959;41463;54809;45867;47344;55756;53007;49200;72449;78360;69873;68447;82021;73415;68425;86254;96382;87860;93413;130505.74;131883;108842
-214;'158;China, Taiwan Province of;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;2200;1200;3600;3674;3600;3900;4645;3500;5000;7800;3100;2200;1700;523;721;1809;3331;3071;3439;4041;3903;7567;2307;1725;1190;1274.87;1193;845
-214;'158;China, Taiwan Province of;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;1457;629;1755;1549;2626;3909;2797;1845;2205;2962;5132;4531;3905;1108;1446;2906;6259;8410;8637;13981;14931;25757;8926;4222;3133;3151.63;2357;1956
-214;'158;China, Taiwan Province of;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4669;5002;11396;12060;12664;19011;25759;20146;24310;17474;17663;16459;16872.47;9668;14845
-214;'158;China, Taiwan Province of;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1374;2076;4063;4550;4790;5855;6757;5028;6898;5866;6357;5438;6012.67;3351;4800
-214;'158;China, Taiwan Province of;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4;216;24;15;2
-214;'158;China, Taiwan Province of;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;406;17;8;3
-214;'158;China, Taiwan Province of;1874;Fibreboard;5516;Production;m3;27100;28600;22200;27200;26800;32432;28642;11794;17480;20007;12636;8424;10530;10530;32000;32000;32000;32000;32000;32000;32000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000
-214;'158;China, Taiwan Province of;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227600;295300;221694;251307;232661;383200;368000;455200;370000;492000;432100;319900;383700;343900;334800;332800;274400;187756;162429;131513;174889;178491;176255;159493;176950;153106;151227;141586;133975;121485;140961;165755.76;99421;85871
-214;'158;China, Taiwan Province of;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64530;87290;49068;67020;73256;102374;79070;92638;66494;77449;65606;53111;54429;48848;52696;55488;48775;54989;49846;32886;50626;59358;63640;55081;60186;52167;49382;48386;49682;44226;50094;75455.81;53619;45197
-214;'158;China, Taiwan Province of;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7892;19174;31610;12600;10100;6500;10400;13500;8600;8800;20000;22200;28100;17100;23100;11847;12073;13688;11654;13404;7812;8157;6549;7003;5646;7861;8127;5583;5939;6410.12;6233;5531
-214;'158;China, Taiwan Province of;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432;7219;10023;4619;3186;3109;4485;9987;3235;4784;8634;9668;13009;8456;10768;8663;8803;8705;7072;9188;6112;6975;5395;5284;4506;3917;4559;4903;5120;6067.1;6087;5651
-214;'158;China, Taiwan Province of;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000
-214;'158;China, Taiwan Province of;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39400;28000;50200;34100;38800;27700;21700;22300;32800;32500;35300;34100;29800;23100;9957;15451;19578;21643;18523;20615;19838;20004;23437;21459;20723;22102;27554.11;22351;20491
-214;'158;China, Taiwan Province of;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23997;16005;21990;15382;14605;9560;8121;7525;9528;10408;11296;12107;13079;12484;6145;10191;14873;16870;15570;17625;16259;16487;19381;20525;17880;20167;29370.28;25565;22239
-214;'158;China, Taiwan Province of;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;4500;2800;3300;2600;500;900;500;900;1000;200;1700;90;180;193;174;20;53;78;55;89;72;8;47;99;65;10;9;40
-214;'158;China, Taiwan Province of;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1634;1800;1272;1500;5442;460;606;181;424;817;195;598;562;318;424;223;44;52;76;58;71;110;13;77;91;70;25;13;36
-214;'158;China, Taiwan Province of;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327900;304900;392500;314000;420800;376400;284200;341600;296900;283500;279800;218100;145756;128129;93280;122093;130099;123336;121505;129236;111309;108575;96016;96870;92124;108093;125047.56;62914;56786
-214;'158;China, Taiwan Province of;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76488;56773;68568;45534;57717;52517;42698;44784;37616;40103;41974;33567;40159;35932;20768;31369;37138;38233;34310;37412;31950;29164;25285;26381;23657;27166;42277.22;25013;20531
-214;'158;China, Taiwan Province of;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;3200;2100;5900;9300;5700;7400;18100;20500;26200;16600;20800;11457;11093;2854;1470;6028;6510;7751;6184;6879;5218;1072;1616;1438;1187;1881.09;2009;1047
-214;'158;China, Taiwan Province of;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343;946;1052;2625;4106;2459;4010;8249;8939;11856;8221;10048;8044;8291;2726;1566;5068;5612;6750;5220;5190;4269;998;1403;1597;1377;2096.76;2472;1696
-214;'158;China, Taiwan Province of;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-214;'158;China, Taiwan Province of;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50600;59600;33687;52729;47717;15900;35100;12500;21900;32400;28000;14000;19800;14200;18800;17700;22200;12200;11200;28276;37345;28814;31276;19465;27099;21959;22648;22133;15646;8638;10766;13154.09;14156;8594
-214;'158;China, Taiwan Province of;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6811;7376;12874;14214;1889;6292;2080;5578;5127;3529;2292;2120;1704;2185;2218;3101;1751;1430;5973;9066;7347;8537;5201;5149;3958;3731;3720;2776;2689;2761;3808.3;3041;2427
-214;'158;China, Taiwan Province of;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212;9748;18616;3800;2400;1600;1200;1600;2400;500;1400;800;900;300;600;300;800;10641;10010;7356;1249;328;310;35;356;6781;6464;4046;4687;4519.03;4215;4444
-214;'158;China, Taiwan Province of;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030;3189;5314;642;440;785;360;439;316;168;204;305;336;40;122;57;194;5555;5283;4076;448;149;117;23;127;2906;3079;3215;3673;3945.34;3602;3919
-214;'158;China, Taiwan Province of;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;27100;28600;22200;27200;26800;32432;28642;11794;17480;20007;12636;8424;10530;10530;32000;32000;32000;32000;32000;32000;32000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177000;235700;188007;198578;184944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58530;80479;41692;54146;59042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680;9426;12994;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2402;4030;4709;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1879;Total fibre furnish;5510;Production;t;154500;170500;180200;193300;204000;208000;252900;275300;312200;435000;457000;474000;537000;516000;544000;641000;809000;1017000;1281000;1331000;1608000;1467000;1577000;1586000;1608000;1979000;1917000;2660000;2547000;2893000;2269345;2668876;2616353;2863856;2971617;2933135;2953457;2946017;2975393;3329459;3093201;3093201;2911201;2805201;3395201;3822201;3689201;3727201;3381201;3519201;3264201;3246201;3246201;3246201;3246201;3246201;3246201;3246201;3246201;3246201;3246201;3246201;3246201
-214;'158;China, Taiwan Province of;1879;Total fibre furnish;5610;Import quantity;t;;;;;;46300;50200;53900;55400;152800;141300;201500;232800;240900;212700;221800;272600;420800;533200;613900;577200;812200;974400;963500;1045600;1579700;1648200;1758100;2168400;1769400;2450000;1778903;1740643;2150998;2040100;2371500;2179500;1805500;1916589;1845500;1783500;1771713;1905503;1725817;1526125;1653938;1796876;1569337;1309199;1288394;1353630;1574505;1457845;1418100;1202585;1393423;1971427;2150003;2067423;2120618;2203937.56;1903896;2001994
-214;'158;China, Taiwan Province of;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;6326;6750;5331;7018;13217;10727;15206;22434;37755;26060;29767;33505;54442;89818;109783;96583;119177;146397;158632;161262;220335;353480;414071;490527;416526;517697;316493;285389;634485;847993;577874;545259;485736;465920;609366;477417;411935;497107;525741;523234;611943;702328;708466;463817;670461;720413;623473;597367;573707;498329;489636;728350;767348;605001;562501;772230.47;717157;602066
-214;'158;China, Taiwan Province of;1879;Total fibre furnish;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;28200;42500;62500;66300;26100;24600;16500;27500;28600;42200;45515;45960;48074;81150;63715;30415;68190;92700;81100;106150;121600;111300;15700;54650;14753;9386;15100;3300;4400;1200;19352;23000;25400;26375;37043;36540;48298;68870;83988;34881;58188;106059;93067;100754;102800;124725.45;171861;254634;328870;309971;215802;224242;321503.68;244953;235739
-214;'158;China, Taiwan Province of;1879;Total fibre furnish;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3603;6804;8891;8804;4469;8757;6372;9770;8871;12177;17954;24505;19131;30931;22976;13037;20532;27343;40836;61081;74573;52656;8077;25854;4620;3366;10995;2209;2392;1168;8080;13811;9333;9058;11622;11552;13841;25149;31557;17446;15577;45164;39025;38102;46448;40115;58123;99403;152413;140474;77205;70731;118067.55;109015;103595
-214;'158;China, Taiwan Province of;1878;Pulp for paper;5510;Production;t;154500;170500;180200;193300;204000;208000;252900;275300;312200;380000;397000;410000;425000;421000;413000;439000;586000;681000;681000;681000;718000;668000;677000;686000;707000;760000;777000;788000;823000;810000;411345;367876;315353;325856;364617;326135;346457;339017;368393;385459;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201
-214;'158;China, Taiwan Province of;1878;Pulp for paper;5610;Import quantity;t;;;;;;46300;50200;53900;55400;49800;36300;55500;56800;65900;31700;49600;49600;84800;100600;82400;83500;132400;180300;169400;266500;313700;392100;441100;386300;427400;575100;548399;629226;748908;752100;712600;861500;811500;819546;792800;771400;732970;784048;825826;851126;890970;814157;735215;746558;719836;757549;709617;667359;637764;616573;684490;865563;800906;698183;746153;652561.98;658505;643838
-214;'158;China, Taiwan Province of;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;6326;6750;5331;7018;8850;6313;8675;11858;25755;13060;17081;17081;29666;42057;45164;41554;53776;65264;75863;91874;107635;192708;239226;271386;255810;288556;230010;217002;511295;556738;372276;406881;389910;370690;465646;381617;308917;352821;406105;429561;507499;530449;521624;380352;541732;565229;443775;435839;419447;390920;363681;478650;552830;428681;376428;380158.05;423785;386578
-214;'158;China, Taiwan Province of;1878;Pulp for paper;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;28200;42500;62500;66300;26100;24600;16500;27500;28600;42000;45500;45900;47600;81100;63700;30400;68100;92000;80700;105800;90600;92300;14500;48634;10099;5416;12000;2400;3500;1200;19350;21300;21000;21255;21846;18514;18894;36516;43469;19795;14132;42373;27532;29524;37003;42805.45;65173;136800;193225;142189;94332;114123;147424.86;134916;130419
-214;'158;China, Taiwan Province of;1878;Pulp for paper;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3603;6804;8891;8804;4469;8757;6372;9770;8871;12145;17952;24496;19021;30924;22974;13035;20520;27247;40782;61033;63774;50076;7165;24808;4107;2690;10089;1902;2085;1168;7865;13533;8558;8308;9255;8494;9263;19655;24940;13336;7721;29212;18843;18277;32320;23960;37590;76931;121163;101103;57811;54008;80288.34;82941;82529
-214;'158;China, Taiwan Province of;1875;Wood pulp;5510;Production;t;14500;15500;20200;23300;24000;28000;52900;75300;72200;120000;127000;130000;135000;131000;123000;149000;199000;235000;235000;235000;272000;222000;231000;240000;261000;314000;331000;342000;377000;364000;363633;316414;284375;305568;364617;326135;346457;339017;368393;385459;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201
-214;'158;China, Taiwan Province of;1875;Wood pulp;5610;Import quantity;t;;;;1900;300;46600;50300;55000;56500;50700;41700;61000;55900;63900;34000;45600;45600;98400;121500;103800;107800;159600;223600;233200;327000;373100;435300;519800;493000;527000;682700;638272;717627;850428;903500;905600;1018500;954500;1009729;906600;924700;881705;909973;982213;983805;1026433;965197;863336;841708;836856;853246;836563;825263;778410;767474;844781;940623;901922;800089;789808;717617.13;719923;677330
-214;'158;China, Taiwan Province of;1875;Wood pulp;5622;Import value;1000 USD;;;;240;41;6367;6950;5695;7382;9137;7280;9640;11286;25039;14016;15298;15298;36616;52279;58480;56989;67663;83766;105660;117300;132139;222500;288767;364081;328016;358183;279983;260977;607196;726534;529629;510196;491334;482426;546439;503206;390681;430318;525971;535333;609519;687872;703794;471543;712806;736492;590338;589540;548551;523817;508263;551094;650867;521315;414433;442311.36;490090;430665
-214;'158;China, Taiwan Province of;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;3000;15700;38800;53600;18300;23200;14000;16900;18000;31400;35200;30000;36400;67900;57900;28400;55800;79000;64800;90000;75600;76000;4800;126222;89686;26785;11200;1100;3100;600;19222;20900;20600;20427;21020;17802;18167;34757;29608;16616;9500;35121;13935;18404;18910;28835.45;59311;135658;192927;142012;94251;114043;147240.86;134852;130388
-214;'158;China, Taiwan Province of;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;474;2464;5417;6889;3071;8066;5488;6625;5726;9000;13766;16728;14268;26616;21056;12150;16373;23100;32568;51941;53767;39215;2147;76112;47911;16830;9107;529;1343;322;7779;13066;8154;7753;8678;7889;8520;18311;16815;11190;5250;24326;9640;11247;21245;15863;33734;75901;120631;100642;57548;53902;80010.34;82787;82460
-214;'158;China, Taiwan Province of;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29143;26161;25129;18781;17287.75;20120;15617
-214;'158;China, Taiwan Province of;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14247;12957;12122;9726;9208.01;10438;8077
-214;'158;China, Taiwan Province of;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;533;451;1697.68;529;11
-214;'158;China, Taiwan Province of;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;688;552;1286.98;766;13
-214;'158;China, Taiwan Province of;1654;Mechanical wood pulp (1961-2016);5510;Production;t;7700;8200;11700;11800;14000;15200;17500;18000;14400;14000;17000;10000;13000;10000;8000;14000;13000;15000;15000;15000;15000;15000;15000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-214;'158;China, Taiwan Province of;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;200;3600;200;2400;1100;2400;2400;2400;600;1000;300;1000;2900;13900;18700;31000;41600;70500;35800;47500;52400;40850;33954;36002;59900;23000;54300;74000;59189;59000;23400;12540;2574;2509;1852;1371;1914;2507;3792;955;966;1091;484;231;618;340;;;;;;;
-214;'158;China, Taiwan Province of;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;30;117;8;969;275;966;966;966;250;666;280;601;1331;4934;6054;10000;17601;29452;18455;20497;21581;12622;9134;12939;38774;10347;19222;27253;19916;22000;10211;4415;1088;1128;819;692;1054;1600;1445;594;556;619;315;194;326;188;;;;;;;
-214;'158;China, Taiwan Province of;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;513;26;0;0;0;0;9;0;0;20;16;20;4;5;0;1;3;3;2;2;2;0.45;0;0;;;;;;;
-214;'158;China, Taiwan Province of;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;177;33;0;0;0;0;16;0;0;13;10;18;6;9;0;1;16;14;20;5;5;4;0;0;;;;;;;
-214;'158;China, Taiwan Province of;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;600;200;500;200;700;1300;1100;1100;1200;13000;16000;31700;36600;58449;64931;107112;65100;64500;64100;62400;69396;62400;75000;80080;91249;107523;112523;139359;110937;94704;97706;88711;97647;66701;57504;42573;36861;29916;;;;;;;
-214;'158;China, Taiwan Province of;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;250;194;399;136;469;893;739;739;877;6925;9322;16524;16615;18761;18292;41559;36500;28078;23358;26355;28368;26355;34205;30424;38453;47843;52277;73815;64352;66414;47739;59753;58174;38365;33644;23800;17871;13779;;;;;;;
-214;'158;China, Taiwan Province of;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;274;0;0;0;0;17;0;0;30;30;14;13;5;3;2;4;3;3;4;2;4;2;2;;;;;;;
-214;'158;China, Taiwan Province of;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;112;0;0;0;0;13;0;0;19;21;11;11;4;3;3;4;2;4;6;3;6;3;3;;;;;;;
-214;'158;China, Taiwan Province of;1656;Chemical wood pulp;5510;Production;t;6800;7300;8500;11500;10000;12800;35400;57300;57800;106000;110000;120000;122000;121000;115000;135000;186000;220000;220000;220000;257000;207000;216000;225000;261000;314000;331000;342000;377000;364000;363633;316414;284375;305568;364617;326135;346457;339017;368393;385459;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201
-214;'158;China, Taiwan Province of;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;53900;55400;49600;35500;51400;54900;58100;28500;40500;40500;75700;97800;72500;78900;128200;172600;151100;246100;281000;334600;354500;328900;345300;480300;444896;525796;600141;620900;622100;742100;674100;689816;662500;667800;639597;689246;715165;734407;744047;690239;629164;642319;624469;651480;637345;605824;593286;577826;652238;834053;771083;668909;725152;634395.23;637598;625947
-214;'158;China, Taiwan Province of;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5331;7018;8773;6026;8354;10998;22307;11587;13065;13065;25650;40416;38950;38635;51003;60675;68103;84585;96400;172918;201392;241098;217074;245342;193874;184616;452698;476023;331291;363592;335584;321386;413206;334606;273182;312298;356361;374597;428529;457520;445901;329110;475041;490760;400776;398914;393778;371274;347964;461824;536054;412515;364725;369506.34;412278;376397
-214;'158;China, Taiwan Province of;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;3000;15700;38800;53600;18300;23200;14000;16900;18000;31400;35200;30000;36400;67900;57900;28400;55800;79000;64800;90000;75600;76000;4800;44840;9000;4000;11200;1100;3100;600;19062;20600;20400;20161;20687;17357;17653;34452;29358;16464;9349;35101;13930;18398;18906;28831;59309;135656;192924;142012;93686;113592;145543.18;134323;130377
-214;'158;China, Taiwan Province of;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;474;2464;5417;6889;3071;8066;5488;6625;5726;9000;13766;16728;14268;26616;21056;12150;16373;23100;32568;51941;53767;39215;2147;22511;3470;1632;9107;529;1343;322;7582;12820;7952;7544;8435;7527;8148;18045;16573;11021;5059;24295;9616;11236;21237;15853;33731;75898;120627;100642;56816;53347;78715.36;82015;82444
-214;'158;China, Taiwan Province of;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;10200;17800;17800;21900;30500;20000;22700;36800;47700;38400;51700;71000;73100;64600;54300;56800;64200;77613;65203;68272;82800;78700;100000;91100;100227;108300;251800;116624;124526;136973;142865;166861;144962;110677;104595;90369;89039;74877;79643;83606;81491;78466;85903;88575;68311;82511;82205.23;63561;58321
-214;'158;China, Taiwan Province of;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;3691;4971;4971;6150;11071;9710;10024;13256;14373;15786;14989;21000;33655;35477;26789;27381;29964;28755;19059;25637;59105;36219;42917;38787;39893;55519;115085;45275;49237;59213;64752;85793;90416;61892;49243;62166;64473;44080;48541;57448;49578;46625;53197;76978;44921;45956;59467.81;53598;39738
-214;'158;China, Taiwan Province of;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;100;100;100;0;1;0;0;63;54;38;28;55;42;57;93;387;232;287;987;373;227;236;452;357;355;125;310;1137;2543
-214;'158;China, Taiwan Province of;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;567;38;38;35;0;1;0;0;34;33;21;15;32;28;44;86;375;308;329;819;404;279;254;440;336;474;150;367;976;1731
-214;'158;China, Taiwan Province of;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364000;363633;316414;284375;305568;364617;326135;346457;339017;368393;385459;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201;370201
-214;'158;China, Taiwan Province of;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;53900;55400;49600;35500;51400;54900;58100;15000;18200;18200;41000;52700;30400;39100;73100;106800;95700;164600;191000;226300;226000;207200;243700;375300;340862;423064;488262;487200;493300;602400;530600;542476;507300;373400;483783;520890;532179;552600;534179;505245;476663;506156;484877;510450;520522;486984;467673;458348;532295;703354;639618;563323;611596;513211.31;553211;544115
-214;'158;China, Taiwan Province of;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;5331;7018;8773;6026;8354;10998;22307;6409;6347;6347;14300;23196;17200;20675;29352;38756;44416;58579;68000;122951;137798;163433;160045;189713;147770;144310;400000;404590;258774;294678;265376;255649;325346;193775;208552;240627;272020;287640;316007;339317;350139;261721;371358;384368;327137;321290;307215;295815;278866;379641;424665;344456;302816;283037.43;341942;320165
-214;'158;China, Taiwan Province of;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;14000;16900;18000;31400;35200;30000;36400;67900;57900;28400;55800;79000;64800;90000;75600;76000;4800;44840;9000;3000;11100;1000;3000;600;18844;20400;20200;19927;20593;17311;17599;34352;29194;16284;8968;33920;13399;17574;17688;28266;58880;135223;192389;141632;93245;113359;145166.18;133174;127822
-214;'158;China, Taiwan Province of;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;5488;6625;5726;9000;13766;16728;14268;26616;21056;12150;16373;23100;32568;51941;53767;39215;2147;22511;3470;1065;9069;491;1308;322;7456;12682;7683;7380;8371;7495;8112;17974;16454;10872;4746;23104;8996;10417;20201;15253;33286;75447;120100;100288;56256;53089;78271.36;81023;80697
-214;'158;China, Taiwan Province of;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44796;42890;37275;31045;38978.69;20826;23511
-214;'158;China, Taiwan Province of;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28986;34411;23138;15953;27001.1;16738;16494
-214;'158;China, Taiwan Province of;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;23;86;108;67;12;12
-214;'158;China, Taiwan Province of;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;18;86;108;77;16;16
-214;'158;China, Taiwan Province of;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;400;700;700;10000;11000;17500;11300;3400;3800;3700;13900;6000;15300;40900;49300;26700;6300;6300;6300;460;9900;11600;7400;1100;175;2000;7600;1578;704;528;711;326;264;1497;4646;5530;4886;3558;3073;3280;3629;2804;;;;;;;
-214;'158;China, Taiwan Province of;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;168;212;212;4000;4420;9183;4727;1395;1323;1333;4146;1800;5221;13760;39993;19495;3364;3364;3364;212;6500;8923;6395;462;119;1040;5021;741;406;340;374;177;172;1184;2582;4430;4199;2498;2097;2480;2575;1773;;;;;;;
-214;'158;China, Taiwan Province of;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;0;0;10;0;0;29;120;108;175;514;27;314;57;59;150;57;;;;;;;
-214;'158;China, Taiwan Province of;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0;0;0;7;0;0;19;88;92;134;496;31;272;52;45;120;43;;;;;;;
-214;'158;China, Taiwan Province of;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;2900;3800;3800;2800;3600;4600;5800;14900;14300;13300;15900;13000;19900;23000;18100;18100;34500;20121;31229;43147;41000;38500;32300;51300;46938;44900;35000;37612;43126;45485;38231;42681;39768;40327;26922;43693;47105;38388;36124;38727;34358;38673;;;;;;;
-214;'158;China, Taiwan Province of;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;1319;1535;1535;1200;1729;2857;3209;7000;6223;6568;6871;5600;11091;14357;10883;10153;22301;13985;17883;26849;5828;27375;19602;30959;25725;31301;20725;18614;22028;24788;21831;26552;27615;32686;15564;37087;37720;27061;26986;26635;23306;20700;;;;;;;
-214;'158;China, Taiwan Province of;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;215;200;200;171;30;8;26;16;2;15;113;280;272;223;174;133;52;140;;;;;;;
-214;'158;China, Taiwan Province of;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;124;138;269;130;24;11;21;20;3;13;93;320;281;218;165;151;46;154;;;;;;;
-214;'158;China, Taiwan Province of;1667;Dissolving wood pulp;5610;Import quantity;t;;;;1900;300;300;100;1100;1100;1100;6000;6000;800;3400;4400;2700;2700;20300;22500;30100;28100;30200;47400;66900;61100;60000;57900;81800;112300;102500;113400;94077;92946;107173;157600;196000;158000;144000;191328;122700;158500;149488;126904;157016;135023;141656;162107;136961;97891;122721;103153;131426;161451;142320;152169;162287;77427;104678;106051;45875;65934.15;62205;35766
-214;'158;China, Taiwan Province of;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;240;41;41;200;364;364;364;1224;1169;280;1763;2154;1267;1267;10000;11363;18670;17675;15923;21291;31730;25922;25000;31104;50998;95206;73921;74645;54726;48935;100000;175237;159913;104024;102142;112756;84878;124184;82660;78479;120639;107640;106483;164946;189879;93249;177418;187002;150578;156667;130779;134346;146332;75023;101856;96678;39982;63597.01;67374;46191
-214;'158;China, Taiwan Province of;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81353;80173;22485;0;0;0;0;134;300;200;216;287;411;497;295;247;149;144;14;0;0;0;0;0;0;1;0;32;0;0;0;0
-214;'158;China, Taiwan Province of;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53566;44264;15053;0;0;0;0;168;246;202;177;212;333;355;253;239;165;171;15;0;0;0;0;0;0;1;0;44;3;8;6;3
-214;'158;China, Taiwan Province of;1668;Pulp from fibres other than wood;5510;Production;t;140000;155000;160000;170000;180000;180000;200000;200000;240000;260000;270000;280000;290000;290000;290000;290000;387000;446000;446000;446000;446000;446000;446000;446000;446000;446000;446000;446000;446000;446000;47712;51462;30978;20288;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-214;'158;China, Taiwan Province of;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;200;600;500;1700;5400;2100;6700;6700;6700;1600;8700;3800;3000;4100;3100;600;600;14700;3100;5600;2900;5800;4204;4545;5653;6200;3000;1000;1000;1145;8900;5200;753;979;629;2344;6193;11067;8840;2741;5701;7456;4480;3547;1674;1268;1996;2367;3662;4145;2220;879;787;2274
-214;'158;China, Taiwan Province of;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;77;257;204;852;2479;1198;3050;3050;3050;1141;5354;2240;2036;2789;1933;496;496;1312;1457;2511;1715;5018;4753;4960;4099;5441;2560;709;718;1020;4085;2595;896;982;773;1868;4463;7523;7709;2058;6344;15739;4015;2966;1675;1449;1750;2579;3819;4044;1977;1443.71;1069;2104
-214;'158;China, Taiwan Province of;1668;Pulp from fibres other than wood;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;25200;26800;23700;12700;7800;1400;2500;10600;10600;10600;10300;15900;11200;13200;5800;2000;12300;13000;15900;15800;15000;16300;9700;3765;586;1116;800;1300;400;600;262;700;600;1044;1113;1123;1224;2054;14108;3328;4776;7266;13597;11120;18093;13970;5862;1142;299;177;113;80;184;64;31
-214;'158;China, Taiwan Province of;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3129;4340;3474;1915;1398;691;884;3145;3145;3145;4186;7768;4753;4308;1918;885;4147;4147;8214;9092;10007;10861;5018;2262;460;913;982;1373;742;846;254;713;606;732;789;938;1098;1597;8364;2311;2642;4901;9203;7030;11075;8097;3856;1030;533;461;307;109;286;160;72
-214;'158;China, Taiwan Province of;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;618;425;1393;1006;312;665;652;559;922;642;7039;4916;946;767;590
-214;'158;China, Taiwan Province of;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;244;839;740;335;610;562;496;765;571;2749;2218;982.33;860;729
-214;'158;China, Taiwan Province of;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;10;2;0.31;1;34;0;242;121628;314833;442109;446397.91;425657;346023
-214;'158;China, Taiwan Province of;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;75;20;5;2;3;10;0;111;34625;71475;99540;141352.77;136326;78480
-214;'158;China, Taiwan Province of;1669;Recovered paper;5510;Production;t;;;;;;;;;;55000;60000;64000;112000;95000;131000;202000;223000;336000;600000;650000;890000;799000;900000;900000;901000;1219000;1140000;1872000;1724000;2083000;1858000;2301000;2301000;2538000;2607000;2607000;2607000;2607000;2607000;2944000;2723000;2723000;2541000;2435000;3025000;3452000;3319000;3357000;3011000;3149000;2894000;2876000;2876000;2876000;2876000;2876000;2876000;2876000;2876000;2876000;2876000;2876000;2876000
-214;'158;China, Taiwan Province of;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;103000;105000;146000;176000;175000;181000;172200;223000;336000;432600;531500;493700;679800;794100;794100;779100;1266000;1256100;1317000;1782100;1342000;1874900;1230504;1111417;1402090;1288000;1658900;1318000;994000;1097043;1052700;1012100;1038743;1121455;899991;674999;762968;982719;834122;562641;568558;596081;864888;790486;780336;586012;708933;1105864;1349097;1369240;1374465;1551375.58;1245391;1358156
-214;'158;China, Taiwan Province of;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;4367;4414;6531;10576;12000;13000;12686;16424;24776;47761;64619;55029;65401;81133;82769;69388;112700;160772;174845;219141;160716;229141;86483;68387;123190;291255;205598;138378;95826;95230;143720;95800;103018;144286;119636;93673;104444;171879;186842;83465;128729;155184;179698;161528;154260;107409;125955;249700;214518;176320;186073;392072.42;293372;215488
-214;'158;China, Taiwan Province of;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;200;15;60;474;50;15;15;90;700;400;350;31000;19000;1200;6016;4654;3970;3100;900;900;0;2;1700;4400;5120;15197;18026;29404;32354;40519;15086;44056;63686;65535;71230;65797;81920;106688;117834;135645;167782;121470;110119;174078.82;110037;105320
-214;'158;China, Taiwan Province of;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;32;2;9;110;7;2;2;12;96;54;48;10799;2580;912;1046;513;676;906;307;307;0;215;278;775;750;2367;3058;4578;5494;6617;4110;7856;15952;20182;19825;14128;16155;20533;22472;31250;39371;19394;16723;37779.21;26074;21066
-214;'158;China, Taiwan Province of;1876;Paper and paperboard;5510;Production;t;131100;142900;150000;187000;189800;213600;284400;338600;391000;410227;460602;671000;687000;636000;777000;862000;1014000;1217000;1375000;1479296;1529000;1556000;1801000;1954000;2085000;2597000;2820000;3055000;3154000;3336814;3391163;3976809;3905352;4198939;4243267;4337429;4506972;4223111;4349217;4494156;4210647;4081000;4239000;4392000;4225000;4214000;4285000;3705000;3612000;3665000;3746000;3889000;3870000;3870000;3870000;3870000;3870000;3870000;3870000;3870000;3870000;3870000;3870000
-214;'158;China, Taiwan Province of;1876;Paper and paperboard;5610;Import quantity;t;3300;3900;3900;4900;6100;4000;7200;5400;20500;31100;35400;43300;35000;48800;42400;61000;65500;67500;80000;65000;65500;84900;111200;132200;132600;136000;243900;307300;395800;463500;516500;490066;682946;905573;886300;818300;1070800;985401;1136067;1084984;944098;1049560;1246405;1219643;1084242;1062238;1080349;1150121;982345;1181624;1212201;1208904;1188415;1206256;1145414;1160152;1189778;1182557;1185982;1220883;1188966.04;1098484;1048827
-214;'158;China, Taiwan Province of;1876;Paper and paperboard;5622;Import value;1000 USD;1494;1718;1552;1888;2008;1470;2168;2817;4742;7981;8206;8794;7648;16022;19491;28141;29306;31006;40418;44607;65289;54378;75774;88448;82218;107400;165496;234176;374811;402314;363879;353634;433278;588166;945945;798481;857721;777333;847868;907869;778410;754947;868269;826183;847819;765596;982559;1168942;867516;1154908;1231903;1207968;1134350;1168839;1034993;1014871;1084082;1191103;1136361;1079586;1206407.02;1228483;1104679
-214;'158;China, Taiwan Province of;1876;Paper and paperboard;5910;Export quantity;t;22000;21500;16600;18600;18800;36100;22600;24700;19200;14100;13900;18800;19400;17200;56400;85800;85800;84600;58900;120000;142300;139100;115700;87700;86600;86600;139700;264400;236600;437500;627300;769847;803538;917351;713600;769300;836400;660700;784349;891609;993212;1257301;1352883;1267500;1267954;1329938;1454419;1126711;1229036;1063845;1137479;1292278;1282978;1246586;977685;1155054;1305032;1403420;1406282;1379330;1191882.77;1406685;1528685
-214;'158;China, Taiwan Province of;1876;Paper and paperboard;5922;Export value;1000 USD;3303;3018;2701;2172;2511;2854;5319;3995;3187;2731;2523;3446;4703;6516;15096;22625;22625;28760;33562;70185;73728;52587;58785;50806;51656;51472;99356;166702;165336;210729;336276;495352;419515;477613;485046;402367;415898;374218;384459;466425;419949;513549;561079;519601;533186;564636;701066;680960;590556;712521;815522;846018;836674;827952;654801;692702;833397;958192;828049;775297;867959.43;960559;817667
-214;'158;China, Taiwan Province of;2042;Graphic papers;5510;Production;t;53000;47700;50000;45600;63200;75800;72600;79900;76000;98537;96602;86000;116000;111000;129000;143000;174000;208000;241000;291496;295000;284000;315000;317000;340000;432000;497000;564000;544000;573968;628317;671130;690631;764796;786877;682179;801476;809239;818803;794546;720526;565000;558000;560000;567000;577000;588000;531000;510000;516000;516000;516000;516000;516000;516000;516000;516000;516000;516000;516000;516000;516000;516000
-214;'158;China, Taiwan Province of;2042;Graphic papers;5610;Import quantity;t;100;100;200;200;200;200;1500;1400;4200;14600;20000;27900;19600;33400;36500;41300;45800;47800;56400;42200;43400;47500;76200;92100;91500;88000;110500;153500;208900;265000;290300;267426;333011;450934;466500;441500;546600;584200;629929;603823;517580;551489;622737;813714;741609;758764;683293;677150;558435;658731;664110;675668;633833;659129;624101;629658;629540;630273;572680;552769;554315.62;501163;467254
-214;'158;China, Taiwan Province of;2042;Graphic papers;5622;Import value;1000 USD;40;21;95;44;44;44;340;217;985;3108;4268;4856;3710;12084;16191;17141;17306;18006;26303;23658;32726;25397;36449;42773;44332;42900;60676;104571;142313;172194;207745;154481;179655;252309;424770;378472;326982;425128;388104;412301;375813;324767;364079;527509;574708;562904;552192;641586;444619;576208;621040;620465;542137;576841;500650;482041;503643;559546;499761;453102;534086.05;529041;482156
-214;'158;China, Taiwan Province of;2042;Graphic papers;5910;Export quantity;t;10400;7000;5600;7400;7300;11500;3000;9200;7100;1800;3800;8700;9300;7100;11700;17100;17100;15900;30600;26400;7200;4000;12400;9700;9300;9300;20900;21500;18400;8000;125600;142430;162466;195807;130300;88300;54000;111100;150937;170006;181717;222384;197307;191909;195524;216326;231833;192791;247456;208845;194332;185423;177599;165256;133244;132094;129503;115886;104809;91156;105955.33;92589;92234
-214;'158;China, Taiwan Province of;2042;Graphic papers;5922;Export value;1000 USD;1863;1220;1015;1174;1301;2467;2655;1787;1113;415;1008;1931;3188;5001;5661;8483;8483;8060;21936;20981;8832;3908;9860;8546;10784;10600;15815;24577;22869;4181;125534;106978;105199;126705;146024;77492;47935;85436;110291;130892;122236;139421;134103;144624;158890;172479;198047;196221;211742;219181;216253;206626;194583;184610;154721;149821;154706;152684;136231;113223;138301.69;124219;115384
-214;'158;China, Taiwan Province of;1671;Newsprint;5510;Production;t;10300;11200;15000;15600;17200;17700;20200;21000;17000;16935;15000;11000;13000;16000;12000;14000;22000;25000;35000;54781;58000;51000;45000;24000;27000;42000;74000;106000;71000;83317;83317;64565;68925;81237;95414;55109;62756;84492;78668;86725;38364;30000;29000;29000;30000;30000;31000;28000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000
-214;'158;China, Taiwan Province of;1671;Newsprint;5610;Import quantity;t;;0;0;0;0;0;500;1300;3700;13600;9100;27400;19400;32300;34900;40500;45000;47000;54600;40500;39300;46200;72100;86800;86200;83000;77100;107500;179000;226900;213400;183463;251631;296767;342400;351800;432000;407200;414281;420663;372339;352216;409353;480941;417644;409559;371124;335679;257064;278523;262154;254398;228918;205729;180499;143012;118154;96934;83132;69606;50652.77;53376;34628
-214;'158;China, Taiwan Province of;1671;Newsprint;5622;Import value;1000 USD;;0;0;0;0;0;92;185;650;2303;1507;4448;3501;10590;13101;15335;15500;16200;22381;19308;21191;23160;30212;36338;37355;36000;39065;65720;110198;131497;128403;75876;105992;123138;265406;272425;217985;247128;206842;230078;237398;157031;183349;245920;242932;250884;221754;246810;149454;165453;180871;164228;139397;121708;91821;70257;60032;62836;49165;30564;27033.17;40224;24430
-214;'158;China, Taiwan Province of;1671;Newsprint;5910;Export quantity;t;1100;1800;300;4200;2100;1300;600;800;200;;;3400;1600;500;1900;2200;2200;1000;100;700;300;;;;;;2600;4400;1100;1100;3100;2352;395;683;6300;5300;9300;10100;10720;4755;10531;114;80;22;13;37;6;4;48;87;65;44;121;34;29;122;205;429;21;11;1391;11;0
-214;'158;China, Taiwan Province of;1671;Newsprint;5922;Export value;1000 USD;157;238;41;552;277;171;161;127;35;;;509;367;209;781;823;823;400;47;333;204;;;;;;1460;2676;533;533;1868;1262;308;481;4950;3755;3604;5136;4323;1972;5436;43;88;62;48;32;12;11;88;143;84;85;168;82;59;72;136;330;25;28;909.43;19;4
-214;'158;China, Taiwan Province of;1674;Printing and writing papers;5510;Production;t;42700;36500;35000;30000;46000;58100;52400;58900;59000;81602;81602;75000;103000;95000;117000;129000;152000;183000;206000;236715;237000;233000;270000;293000;313000;390000;423000;458000;473000;490651;545000;606565;621706;683559;691463;627070;738720;724747;740135;707821;682162;535000;529000;531000;537000;547000;557000;503000;483000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000
-214;'158;China, Taiwan Province of;1674;Printing and writing papers;5610;Import quantity;t;100;100;200;200;200;200;1000;100;500;1000;10900;500;200;1100;1600;800;800;800;1800;1700;4100;1300;4100;5300;5300;5000;33400;46000;29900;38100;76900;83963;81380;154167;124100;89700;114600;177000;215648;183160;145241;199273;213384;332773;323965;349205;312169;341471;301371;380208;401956;421270;404915;453400;443602;486646;511386;533339;489548;483163;503662.85;447787;432626
-214;'158;China, Taiwan Province of;1674;Printing and writing papers;5622;Import value;1000 USD;40;21;95;44;44;44;248;32;335;805;2761;408;209;1494;3090;1806;1806;1806;3922;4350;11535;2237;6237;6435;6977;6900;21611;38851;32115;40697;79342;78605;73663;129171;159364;106047;108997;178000;181262;182223;138415;167736;180730;281589;331776;312020;330438;394776;295165;410755;440169;456237;402740;455133;408829;411784;443611;496710;450596;422538;507052.88;488817;457726
-214;'158;China, Taiwan Province of;1674;Printing and writing papers;5910;Export quantity;t;9300;5200;5300;3200;5200;10200;2400;8400;6900;1800;3800;5300;7700;6600;9800;14900;14900;14900;30500;25700;6900;4000;12400;9700;9300;9300;18300;17100;17300;6900;122500;140078;162071;195124;124000;83000;44700;101000;140217;165251;171186;222270;197227;191887;195511;216289;231827;192787;247408;208758;194267;185379;177478;165222;133215;131972;129298;115457;104788;91145;104564.33;92578;92234
-214;'158;China, Taiwan Province of;1674;Printing and writing papers;5922;Export value;1000 USD;1706;982;974;622;1024;2296;2494;1660;1078;415;1008;1422;2821;4792;4880;7660;7660;7660;21889;20648;8628;3908;9860;8546;10784;10600;14355;21901;22336;3648;123666;105716;104891;126224;141074;73737;44331;80300;105968;128920;116800;139378;134015;144562;158842;172447;198035;196210;211654;219038;216169;206541;194415;184528;154662;149749;154570;152354;136206;113195;137392.26;124200;115380
-214;'158;China, Taiwan Province of;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9671;3970;6277;4335;4019;8324;17723;28747;85148;49976;36915;30396;28620;27881;31409;32683;28475;30043;44734;47359;69611;63865;59147;60688.85;56474;60696
-214;'158;China, Taiwan Province of;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43784;11179;18820;20240;12530;17421;27118;77249;77381;86969;77101;52538;65053;54773;80590;54784;62402;45256;56880;62510;68778;70844;63262;86041.88;79191;93186
-214;'158;China, Taiwan Province of;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6552;5743;4471;3616;1938;22486;24567;33023;29750;26241;44302;33898;47227;36495;17746;17490;8367;5053;5302;5824;4142;3530;3526.46;3109;2455
-214;'158;China, Taiwan Province of;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4538;4170;3164;3279;2415;16574;18902;24899;24821;25360;33850;32944;45749;35904;18812;18529;9663;5939;7480;7990;6099;5206;5467.01;4497;3656
-214;'158;China, Taiwan Province of;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402136;398918;360655;342025;269000;266000;267000;270000;275000;280000;253000;243000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000
-214;'158;China, Taiwan Province of;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24290;106933;100742;69706;94824;96756;144199;143751;121336;105652;124046;102357;142997;139702;131696;135209;141384;145546;165284;172632;177026;165553;174619;185342;160557;153285
-214;'158;China, Taiwan Province of;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25010;81677;91691;55636;73731;76272;118177;123753;105823;98895;134582;95171;145060;148055;138320;137568;142883;140187;144860;157935;179945;162395;159460;177325;167689;160049
-214;'158;China, Taiwan Province of;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31794;33997;50996;49800;63900;46416;28154;29867;29187;32725;29292;51985;50087;49501;50370;73330;63834;54839;53811;52927;47357;43329;40634;53290.95;49326;50353
-214;'158;China, Taiwan Province of;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41016;34894;39909;37848;42456;34724;27063;31115;29127;34136;33875;46334;51257;53851;54793;70476;64835;55183;52876;55498;56495;46403;40628;59400.16;56827;52148
-214;'158;China, Taiwan Province of;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322611;341217;347166;340137;266000;263000;264000;267000;272000;277000;250000;240000;243000;243000;243000;243000;243000;243000;243000;243000;243000;243000;243000;243000;243000;243000
-214;'158;China, Taiwan Province of;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143039;104745;76141;71200;100430;108304;170851;151467;142721;156541;180510;168618;208591;234373;258165;237023;283541;268013;276628;291395;286702;260130;249397;257632;230756;218645
-214;'158;China, Taiwan Province of;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109206;88406;71712;62539;81475;87037;136294;130774;128816;144574;183093;147456;200642;237341;237327;210388;249848;223386;210044;223166;247987;217357;199816;243686;241937;204491
-214;'158;China, Taiwan Province of;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69206;99668;108512;116915;154754;148873;141247;141077;154079;169352;137254;151121;124773;97539;98514;86402;83898;70009;73108;71069;62276;57317;46981;47746.92;40143;39426
-214;'158;China, Taiwan Province of;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39284;66536;84841;75788;93643;96876;100925;108825;118421;139078;136975;131470;134837;116569;115844;105127;101164;89816;90934;91592;87869;83704;67361;72525.09;62876;59576
-214;'158;China, Taiwan Province of;1675;Other paper and paperboard;5510;Production;t;78100;95200;100000;141400;126600;137800;211800;258700;315000;311690;364000;585000;571000;525000;648000;719000;840000;1009000;1134000;1187800;1234000;1272000;1486000;1637000;1745000;2165000;2323000;2491000;2610000;2762846;2762846;3305679;3214721;3434143;3456390;3655250;3705496;3413872;3530414;3699610;3490121;3516000;3681000;3832000;3658000;3637000;3697000;3174000;3102000;3149000;3230000;3373000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3354000
-214;'158;China, Taiwan Province of;1675;Other paper and paperboard;5610;Import quantity;t;3200;3800;3700;4700;5900;3800;5700;4000;16300;16500;15400;15400;15400;15400;5900;19700;19700;19700;23600;22800;22100;37400;35000;40100;41100;48000;133400;153800;186900;198500;226200;222640;349935;454639;419800;376800;524200;401201;506138;481161;426518;498071;623668;405929;342633;303474;397056;472971;423910;522893;548091;533236;554582;547127;521313;530494;560238;552284;613302;668114;634650.42;597321;581573
-214;'158;China, Taiwan Province of;1675;Other paper and paperboard;5622;Import value;1000 USD;1454;1697;1457;1844;1964;1426;1828;2600;3757;4873;3938;3938;3938;3938;3300;11000;12000;13000;14115;20949;32563;28981;39325;45675;37886;64500;104820;129605;232498;230120;156134;199153;253623;335857;521175;420009;530739;352205;459764;495568;402597;430180;504190;298674;273111;202692;430367;527356;422897;578700;610863;587503;592213;591998;534343;532830;580439;631557;636600;626484;672320.97;699442;622523
-214;'158;China, Taiwan Province of;1675;Other paper and paperboard;5910;Export quantity;t;11600;14500;11000;11200;11500;24600;19600;15500;12100;12300;10100;10100;10100;10100;44700;68700;68700;68700;28300;93600;135100;135100;103300;78000;77300;77300;118800;242900;218200;429500;501700;627417;641072;721544;583300;681000;782400;549600;633412;721603;811495;1034917;1155576;1075591;1072430;1113612;1222586;933920;981580;855000;943147;1106855;1105379;1081330;844441;1022960;1175529;1287534;1301473;1288174;1085927.43;1314096;1436451
-214;'158;China, Taiwan Province of;1675;Other paper and paperboard;5922;Export value;1000 USD;1440;1798;1686;998;1210;387;2664;2208;2074;2316;1515;1515;1515;1515;9435;14142;14142;20700;11626;49204;64896;48679;48925;42260;40872;40872;83541;142125;142467;206548;210742;388374;314316;350908;339022;324875;367963;288782;274168;335533;297713;374128;426976;374977;374296;392157;503019;484739;378814;493340;599269;639392;642091;643342;500080;542881;678691;805508;691818;662074;729657.74;836340;702283
-214;'158;China, Taiwan Province of;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;25352;25000;28000;31000;34000;37000;40000;44000;49000;53000;58706;64000;70000;76000;83000;91000;99000;108000;118000;129000;140741;140741;177826;180107;190064;223786;250411;266858;262439;277708;307673;275019;215000;215000;216000;218000;222000;226000;205000;196000;199000;199000;199000;199000;199000;199000;199000;199000;199000;199000;199000;199000;199000;199000
-214;'158;China, Taiwan Province of;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;800;1100;;;;;;;;;;;;;;;;;;;;;;;;;8100;2300;1900;5900;12194;31166;20402;21509;24841;32499;28459;25930;22183;32650;29394;33363;37343;52463;52176;48131;52131;50276;54363;53514;58513;82387;69248.24;76290;71967
-214;'158;China, Taiwan Province of;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;589;935;;;;;;;;;;;;;;;;;;;;;;;;;11413;4185;3773;6148;9588;27132;15712;15864;19316;29249;26106;24513;23198;38030;28876;40201;48309;63459;64933;60373;61212;58370;62569;67766;66858;82554;68861.55;87258;83536
-214;'158;China, Taiwan Province of;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;800;1100;;;;;;;;;;;;;0;0;0;0;6900;5800;4900;4900;6000;6000;7000;7000;4700;6000;11700;3100;3100;500;2000;7064;10759;14490;15468;14383;9462;8258;11223;11759;12522;16840;18924;19466;18206;21060;22349;20895;15448;16890;14476.83;14198;13831
-214;'158;China, Taiwan Province of;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;545;572;;;;;;;;;;;;;0;0;0;0;7032;5894;6887;6779;7982;7982;8000;8000;6084;7026;12788;4047;4047;847;3707;2784;875;3239;7247;9710;12943;12309;14119;15611;17874;23989;26427;27327;24229;25298;27186;29048;20747;22038;17461.33;18289;17184
-214;'158;China, Taiwan Province of;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3048645;3160586;3294361;3131482;3235000;3404000;3556000;3378000;3350000;3407000;2910000;2850000;2895000;2976000;3119000;3100000;3100000;3100000;3100000;3100000;3100000;3100000;3100000;3100000;3100000;3100000
-214;'158;China, Taiwan Province of;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283001;404952;378597;343806;410247;523683;322407;265877;234259;317274;381692;358734;438552;465565;436251;456547;454296;426977;442518;465095;459083;515324;547058;533036.72;485572;478897
-214;'158;China, Taiwan Province of;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161033;328064;349436;290155;310506;375094;227623;207342;140109;359326;437884;364051;494606;519105;483322;485287;490285;434862;436431;478285;521987;528819;504757;565175.82;569547;503611
-214;'158;China, Taiwan Province of;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455000;568475;663894;758259;947072;1077794;1054819;1049668;1084632;1194878;918789;968744;836778;924872;1086687;1085320;1060167;825142;1000590;1151819;1265418;1283713;1268612;1068081.14;1290665;1419210
-214;'158;China, Taiwan Province of;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212871;207203;270153;236737;303766;359574;363330;358623;371077;476508;462966;362280;468985;572054;609484;613019;613204;473871;515854;649749;775302;669938;638443;709481.92;811536;683254
-214;'158;China, Taiwan Province of;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;259097;312000;530000;513000;464000;584000;652000;769000;933000;1054000;1104430;1145000;1177000;1385000;1529000;1629000;2041000;2190000;2348000;2456000;2589415;2589415;3037614;2912014;3133389;3116231;3291409;3327796;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;19900;18300;5500;30200;22600;27300;29700;22000;109400;126600;119500;131100;151900;148340;269935;374639;287300;256800;284300;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;8475;14152;4200;16637;11175;13637;14209;10500;50442;69091;86264;83886;76458;80000;168623;250857;240690;172306;183280;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;600;1100;;;;;;;;;0;0;0;0;0;0;0;0;0;106800;83600;187700;278700;404417;384072;464544;474800;556800;551400;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;349;229;;;;;;;;;0;0;0;0;0;0;0;0;0;48743;27018;51981;96515;274147;176316;212908;252368;241000;207016;;;;;;;;;;;;;;;;;;;;;;;;;;
-214;'158;China, Taiwan Province of;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2069386;2213340;2351998;2234152;2308000;2429000;2537000;2410000;2391000;2431000;2076000;2055000;2078000;2159000;2302000;2283000;2283000;2283000;2283000;2283000;2283000;2283000;2283000;2283000;2283000;2283000
-214;'158;China, Taiwan Province of;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89385;139253;116168;122666;159281;210392;55353;64949;62789;51710;79189;109584;107037;136870;134018;108175;89553;90416;81289;110384;80928;137843;174057;152991.8;123035;147594
-214;'158;China, Taiwan Province of;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22291;63286;68765;50671;53674;67914;18645;21104;20252;36703;56629;60061;87688;105904;98475;79447;70936;62540;61537;92872;87908;100857;109592;123384.15;100468;101734
-214;'158;China, Taiwan Province of;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285028;247691;337638;384469;496384;613162;707222;713062;750372;813688;541882;527098;413871;474648;627498;609403;629923;528438;712518;830610;932622;968486;952340;778119.32;1005146;1088430
-214;'158;China, Taiwan Province of;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108235;60411;106323;88348;117218;157141;191824;199735;209270;268596;220011;152249;177829;227711;271428;267032;289207;239041;280883;382042;471525;398946;378601;413509.77;495741;402880
-214;'158;China, Taiwan Province of;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906018;880699;881866;848453;876000;922000;963000;915000;907000;923000;788000;752000;772000;772000;772000;772000;772000;772000;772000;772000;772000;772000;772000;772000;772000;772000
-214;'158;China, Taiwan Province of;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123584;133835;136255;111981;127790;194593;118429;66209;48944;140297;161830;132150;167835;172015;156115;184477;202230;191156;197939;194971;216953;210734;180374;191362.75;185479;159906
-214;'158;China, Taiwan Province of;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110252;93946;108071;86733;93944;145032;50182;41636;31495;179042;206801;171795;221330;227135;213003;227605;244916;224397;221274;228725;257266;255091;221074;254381.49;268748;229886
-214;'158;China, Taiwan Province of;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153784;223601;202513;263995;245951;173651;178905;167115;167197;280147;305048;360631;340161;356084;359767;369839;300347;178476;157035;182148;184970;141210;144243;142120.2;119625;99361
-214;'158;China, Taiwan Province of;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96347;92875;99698;99237;95227;82098;93042;81367;82004;150680;181831;150263;204314;225796;217737;224961;184560;108915;99399;121572;133542;102580;99811;122487.38;105802;72304
-214;'158;China, Taiwan Province of;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33034;130385;124361;107481;122112;117380;116328;100368;94300;93556;104412;78653;118202;105520;95020;98830;112009;103815;105449;105770;106357;104827;110116;113144.29;92208;85266
-214;'158;China, Taiwan Province of;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14259;169967;171610;152019;162416;161475;136198;116876;63085;113293;137972;96544;142250;134277;122331;121068;131504;114343;109750;115610;132341;123679;113156;121534.64;108256;95674
-214;'158;China, Taiwan Province of;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16188;46499;53754;59562;120734;108749;115352;126283;125535;66526;40370;42185;55327;75353;82225;91407;109555;104124;116000;126630;126654;123829;137330;134833.29;141043;124733
-214;'158;China, Taiwan Province of;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8289;38336;40484;34826;68569;70917;57120;61091;63085;42330;45565;45625;71861;107389;111200;113684;129685;119730;129044;139970;158469;148811;146572;165183.23;197594;172386
-214;'158;China, Taiwan Province of;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73241;66547;60497;48877;51000;53000;56000;53000;52000;53000;46000;43000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000
-214;'158;China, Taiwan Province of;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36998;1479;1813;1678;1064;1318;32297;34351;28226;31711;36261;38347;45478;51160;51098;65065;50504;41590;57841;53970;54845;61920;82511;75537.87;84850;86131
-214;'158;China, Taiwan Province of;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14231;865;990;732;472;673;22598;27726;25277;30288;36482;35651;43338;51789;49513;57167;42929;33582;43870;41078;44472;49192;60935;65875.54;92075;76317
-214;'158;China, Taiwan Province of;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50684;69989;50233;84003;182232;53340;43208;41528;34517;31489;38830;27419;18787;17197;14671;20342;14104;15037;12431;21172;50188;34699;13008.33;24851;106686
-214;'158;China, Taiwan Province of;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15581;23648;14326;22752;49418;21344;16430;16718;14902;15559;14143;14981;11158;9119;7342;9752;6185;6528;6165;11766;19601;13459;8301.54;12399;35684
-214;'158;China, Taiwan Province of;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;78100;95200;100000;141400;126600;137800;211800;258700;315000;27241;27000;27000;27000;27000;27000;27000;27000;27000;27000;24664;25000;25000;25000;25000;25000;25000;25000;25000;25000;32690;32690;90239;122600;110690;116373;113430;110842;102788;92120;97576;83620;66000;62000;60000;62000;65000;64000;59000;56000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000
-214;'158;China, Taiwan Province of;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;3200;3800;3700;4700;5900;3800;5700;4000;15500;15400;15400;15400;15400;15400;5900;19700;19700;19700;3700;4500;16600;7200;12400;12800;11400;26000;24000;27200;67400;67400;74300;74300;80000;80000;124400;117700;238000;112300;88992;71398;62310;66315;75144;51023;48297;43285;57599;58629;35782;50978;45183;44522;45859;44700;42205;37700;40780;39687;39465;38669;32365.47;35459;30709
-214;'158;China, Taiwan Province of;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1454;1697;1457;1844;1964;1426;1828;2600;3168;3938;3938;3938;3938;3938;3300;11000;12000;13000;5640;6797;28363;12344;28150;32038;23677;54000;54378;60514;146234;146234;79676;119153;85000;85000;269072;243518;343686;185024;122112;119000;96730;103810;109780;41802;39663;38070;47843;51442;29970;43893;43449;40722;41993;41340;38269;38029;39585;41804;40923;39173;38283.6;42637;35376
-214;'158;China, Taiwan Province of;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;11600;14500;11000;11200;11500;24600;19600;15500;10700;10100;10100;10100;10100;10100;44700;68700;68700;68700;28300;93600;135100;135100;103300;78000;77300;77300;111900;130300;129700;236900;217000;217000;250000;250000;103800;118200;219300;91500;61837;57209;51236;80781;67023;6282;7294;14597;18246;6873;1613;6463;5753;3328;1135;1697;1093;1310;1361;1221;2312;2672;3369.46;9233;3410
-214;'158;China, Taiwan Province of;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;1440;1798;1686;998;1210;387;2664;2208;1180;1515;1515;1515;1515;1515;9435;14142;14142;20700;11626;49204;64896;48679;48925;42260;40872;40872;76509;87488;108562;147788;106245;106245;130000;130000;80570;76849;148159;71864;62918;64533;57269;67578;66527;8408;8426;11370;13568;9464;2415;8744;9341;5919;2645;2811;1980;1729;1756;1158;1133;1593;2714.49;6515;1845
-214;'158;China, Taiwan Province of;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449623;443270;450778;439417;504862;539034;472324
-214;'158;China, Taiwan Province of;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204222;191435;204131;217930;244688;208667;174132
-214;'158;China, Taiwan Province of;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92544;72393;67225;71142;85501;72117;57407
-214;'158;China, Taiwan Province of;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3630;2284;2889;1563;892;501;449
-214;'158;China, Taiwan Province of;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1196;1302;1000;1686;2964;2414;2698
-214;'158;China, Taiwan Province of;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3520;2166;2877;1350;642;417;92
-214;'158;China, Taiwan Province of;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91348;71091;66225;69456;82537;69703;54709
-214;'158;China, Taiwan Province of;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;118;12;213;250;84;357
-214;'158;China, Taiwan Province of;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9752;12283;13116;13101;19847;20901;18016
-214;'158;China, Taiwan Province of;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5365;6463;8595;11077;10755;14443;12985
-214;'158;China, Taiwan Province of;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26798;30993;26389;26421;28567;28653;27770
-214;'158;China, Taiwan Province of;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13600;12772;13147;10322;13938;11832;9534
-214;'158;China, Taiwan Province of;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17275;16090;18740;17301;20559;22774;23295
-214;'158;China, Taiwan Province of;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17660;16146;12866;12596;18074;20132;12941
-214;'158;China, Taiwan Province of;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;112
-214;'158;China, Taiwan Province of;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933;167
-214;'158;China, Taiwan Province of;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;148
-214;'158;China, Taiwan Province of;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;196
-214;'158;China, Taiwan Province of;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-214;'158;China, Taiwan Province of;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-214;'158;China, Taiwan Province of;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39
-214;'158;China, Taiwan Province of;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63
-214;'158;China, Taiwan Province of;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263689;272839;287281;271192;306529;350922;305459
-214;'158;China, Taiwan Province of;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131575;120695;136278;156648;174231;135200;118441
-214;'158;China, Taiwan Province of;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;873;1235;593;1084;1089;618
-214;'158;China, Taiwan Province of;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;28;8;0;29;1;1
-214;'158;China, Taiwan Province of;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38894;37799;36792;39667;42775;42578;39759
-214;'158;China, Taiwan Province of;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32333;33047;30348;25724;26769;26558;19781
-214;'158;China, Taiwan Province of;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418986;438893;466787;467065;549082;587868;552247
-214;'158;China, Taiwan Province of;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730865;751389;741342;650506;700445;684365;568518
-214;'158;China, Taiwan Province of;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;785;570;542;544;507;397
-214;'158;China, Taiwan Province of;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;1496;1693;851;649;1516;1365
-214;'158;China, Taiwan Province of;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108803;108787;106149;107672;132022;121947;105691
-214;'158;China, Taiwan Province of;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77388;81912;78788;68586;88302;90544;72584
-214;'158;China, Taiwan Province of;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28495;33824;35599;36214;37920;41457;44563
-214;'158;China, Taiwan Province of;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77778;83731;77321;73361;75210;78854;66309
-214;'158;China, Taiwan Province of;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124463;130009;146932;151384;186124;182369;158294
-214;'158;China, Taiwan Province of;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129223;139127;138175;137990;168711;154935;129197
-214;'158;China, Taiwan Province of;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156629;165488;177537;171253;192472;241588;243302
-214;'158;China, Taiwan Province of;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446259;445123;445365;369718;367573;358516;299063
-42;'162;Christmas Island;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;527;600;386;458;531;347
-42;'162;Christmas Island;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;51;83;76;15;61;22
-42;'162;Christmas Island;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;302;212;307;424;429;195;126;114;392;244;138;122;210;110
-42;'162;Christmas Island;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17
-42;'162;Christmas Island;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;18;18;17;17;17;17;17;17;16;16;16;16
-42;'162;Christmas Island;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;1;0;84
-42;'162;Christmas Island;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;5;0;0
-42;'162;Christmas Island;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;17;17;17;17;17;17;16;16;16;16
-42;'162;Christmas Island;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;0;1;0;84
-42;'162;Christmas Island;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;0;5;0;0
-42;'162;Christmas Island;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-42;'162;Christmas Island;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;18;18;17;17;17;17;17;17;16;16;16;16
-42;'162;Christmas Island;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;17;17;17;17;17;17;16;16;16;16
-42;'162;Christmas Island;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;1;0;84
-42;'162;Christmas Island;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;5;0;0
-42;'162;Christmas Island;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;1;0;84
-42;'162;Christmas Island;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;5;0;0
-42;'162;Christmas Island;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;0;0;0;84
-42;'162;Christmas Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;0;0;0;0
-42;'162;Christmas Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0
-42;'162;Christmas Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;5;0;0
-42;'162;Christmas Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1740;0;320;122;135;1735;405;175;120;109;95
-42;'162;Christmas Island;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;285;195;290;407;412;157;99;80;341;195;105;92;185;58
-42;'162;Christmas Island;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1740;0;318;113;75;1735;375;153;118;98;94
-42;'162;Christmas Island;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;256;156;279;398;201;153;87;52;341;168;84;84;156;56
-42;'162;Christmas Island;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;9;60;0;30;22;2;11;1
-42;'162;Christmas Island;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;29;39;11;9;211;4;12;28;0;27;21;8;29;2
-42;'162;Christmas Island;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;15;18;41;21;8;2;13;13
-42;'162;Christmas Island;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;10;17;34;20;25;2;4;10
-42;'162;Christmas Island;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;15;18;41;18;7;2;13;13
-42;'162;Christmas Island;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;10;17;34;18;23;2;4;10
-42;'162;Christmas Island;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;0;0;0
-42;'162;Christmas Island;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0
-42;'162;Christmas Island;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;3;1;6;6;45
-42;'162;Christmas Island;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;8;23;21;42
-42;'162;Christmas Island;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25
-42;'162;Christmas Island;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17
-42;'162;Christmas Island;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-42;'162;Christmas Island;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;3;1;6;6;45
-42;'162;Christmas Island;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;8;23;21;42
-42;'162;Christmas Island;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-42;'162;Christmas Island;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-42;'162;Christmas Island;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;6;6;5
-42;'162;Christmas Island;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;23;21;31
-42;'162;Christmas Island;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40
-42;'162;Christmas Island;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-42;'162;Christmas Island;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-42;'162;Christmas Island;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-42;'162;Christmas Island;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-42;'162;Christmas Island;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-42;'162;Christmas Island;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40
-42;'162;Christmas Island;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-42;'162;Christmas Island;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0;0;0;0
-42;'162;Christmas Island;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;5;3;0;0;0
-42;'162;Christmas Island;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;110;339;182;251;254;219
-42;'162;Christmas Island;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;37;0;61;14;29;3
-42;'162;Christmas Island;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;36;19;19;49
-42;'162;Christmas Island;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;36;19;19;49
-42;'162;Christmas Island;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;4;21;77;35;6
-42;'162;Christmas Island;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;107;293;125;155;200;164
-42;'162;Christmas Island;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;37;0;61;14;29;3
-42;'162;Christmas Island;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-42;'162;Christmas Island;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;25;17;66;85;67;18
-42;'162;Christmas Island;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;83;15;1;32;2
-42;'162;Christmas Island;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;3;8;21;35;26;5
-42;'162;Christmas Island;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;7;3;11;3;4;0
-42;'162;Christmas Island;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;23;1;0;30;0
-42;'162;Christmas Island;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;15;6;34;47;37;13
-42;'162;Christmas Island;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;60;14;1;2;2
-43;'166;Cocos (Keeling) Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;102;72;187;250;411;392
-43;'166;Cocos (Keeling) Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;113;82;147;145;321;50
-43;'166;Cocos (Keeling) Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;69;203;203;203;203;33;33;33;33;33;33;33;33;33;33;33;33;40;85;33;35;201;100;100;62;86;36;151;169;162;153
-43;'166;Cocos (Keeling) Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;97;0;0;0;0;75;42;42;42;42
-43;'166;Cocos (Keeling) Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;0;0;0;4;17
-43;'166;Cocos (Keeling) Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;3;9
-43;'166;Cocos (Keeling) Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;657;253;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;16
-43;'166;Cocos (Keeling) Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;2
-43;'166;Cocos (Keeling) Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;0;0;0;1
-43;'166;Cocos (Keeling) Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;7
-43;'166;Cocos (Keeling) Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;0;0;0;4;17
-43;'166;Cocos (Keeling) Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;3;9
-43;'166;Cocos (Keeling) Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;657;253;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;16
-43;'166;Cocos (Keeling) Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;2
-43;'166;Cocos (Keeling) Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;16
-43;'166;Cocos (Keeling) Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;2
-43;'166;Cocos (Keeling) Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;0;0;0;1
-43;'166;Cocos (Keeling) Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0;7
-43;'166;Cocos (Keeling) Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;657;253;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1
-43;'166;Cocos (Keeling) Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;7
-43;'166;Cocos (Keeling) Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;657;253;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5193
-43;'166;Cocos (Keeling) Islands;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;39;82;28;25;0;99;87;86;236
-43;'166;Cocos (Keeling) Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;22;0;2;168;45;65;18;31;0;108;104;126;110
-43;'166;Cocos (Keeling) Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;34;0
-43;'166;Cocos (Keeling) Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;97;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;82;28;25;0;8;83;77;236
-43;'166;Cocos (Keeling) Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;65;18;31;0;50;92;109;107
-43;'166;Cocos (Keeling) Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;91;4;9;0
-43;'166;Cocos (Keeling) Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;22;0;2;168;0;0;0;0;0;58;12;17;3
-43;'166;Cocos (Keeling) Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;0
-43;'166;Cocos (Keeling) Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;97;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;2;12;21;4;10;26;0;5
-43;'166;Cocos (Keeling) Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;30;0;0;0;22;2;11;19;3;10;32;0;1
-43;'166;Cocos (Keeling) Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;2;12;21;4;10;26;0;5
-43;'166;Cocos (Keeling) Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;30;0;0;0;22;2;11;19;3;10;32;0;1
-43;'166;Cocos (Keeling) Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-43;'166;Cocos (Keeling) Islands;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;174;269;269;269;269;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53
-43;'166;Cocos (Keeling) Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;69;203;203;203;203;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33
-43;'166;Cocos (Keeling) Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;8;8;8
-43;'166;Cocos (Keeling) Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;42;42;42;42
-43;'166;Cocos (Keeling) Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;9;216;216;216;216;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;12;170;170;170;170;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;8;8;8
-43;'166;Cocos (Keeling) Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;42;42;42;42
-43;'166;Cocos (Keeling) Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;9;216;216;216;216;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;12;170;170;170;170;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;8;8;8
-43;'166;Cocos (Keeling) Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;42;42;42;42
-43;'166;Cocos (Keeling) Islands;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;8;8;8
-43;'166;Cocos (Keeling) Islands;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;42;42;42;42
-43;'166;Cocos (Keeling) Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;165;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53
-43;'166;Cocos (Keeling) Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;57;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33
-43;'166;Cocos (Keeling) Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53
-43;'166;Cocos (Keeling) Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33
-43;'166;Cocos (Keeling) Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;16;34;32;80;249;216
-43;'166;Cocos (Keeling) Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;113;6;81;90;254;0
-43;'166;Cocos (Keeling) Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;16;34;32;80;249;216
-43;'166;Cocos (Keeling) Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;113;6;81;90;254;0
-43;'166;Cocos (Keeling) Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;1;0;23
-43;'166;Cocos (Keeling) Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;24;13;25;8
-43;'166;Cocos (Keeling) Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-43;'166;Cocos (Keeling) Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;1;0;23
-43;'166;Cocos (Keeling) Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;24;13;25;8
-44;'170;Colombia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933513;1100476;1048198;881166;1254457.67;1729514;1166394
-44;'170;Colombia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345361;387209;390932;336268;377557.09;430631.7;434663.7
-44;'170;Colombia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;20781;19188;13034;12660;11830;27393;19733;23151;23481;27498;28891;31360;28742;67861;52892;51023;47716;52171;94896;120893;171001;161459;119850;194396;182022;164623;164953;209194;191868;189326;204081;215251;183256;231295;417101;374419;370617;352863;316017;359824;355606;343719;415326;459945;461672;614455;688432;806736;626114;659804;862732;744177;784949;879702;717427;699537;727733;872099;814875;707581;1011349.67;1442183;968870
-44;'170;Colombia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2210;2286;3289;4306;4217;4019;4449;6490;7284;6712;8771;8041;9911;6528;4807;4863;4963;4968;13945;13924;15784;7230;8935;16419;13966;14066;15592;18694;20616;16871;26293;36294;18619;25382;71414;57304;69918;71019;79370;92719;108030;132249;145841;172982;166224;187923;233757;264818;232904;272169;257158;219705;218912;205000;167340;130884;153832;179908;179302;135492;126478.09;122777.7;152998.7
-44;'170;Colombia;1861;Roundwood;5516;Production;m3;8435055;8127233;8194673;8247374;8290340;8478572;8587071;8635841;8460882;8500197;8579665;9209578;9368523;8696468;8826431;8876931;8941422;8949714;9296401;9111822;9097851;8919014;9159072;9333712;9601013;10196999;10243156;10309598;10385489;10448607;10496886;9747426;9627250;9511583;9500319;9536448;9569619;10123511;10590000;13057000;12501000;11610000;11992700;10462200;11927059;10469700;10439900;11137000;12572000;12376000;12145000;13237000;13258000;12753000;12563000;10418959;9788634;8755681;9014104;8751480;8076000;7367000;7314000
-44;'170;Colombia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;6264;4832;6255;2387;2000;6700;11500;700;202;7;210;1776;1899;249;269;151;1967;81;199;200;1308;8018;8563;2624;643;3149;2832;2222;120;5005;5677;712
-44;'170;Colombia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;1700;406;891;193;303;745;1257;51;14;49;14;59;154;50;71;53;625;40;104;110;606;3562;1409;1111;127;1823;2230;1515;64;1736;1827;287
-44;'170;Colombia;1861;Roundwood;5916;Export quantity;m3;52600;84900;92600;66100;87500;89100;41800;41500;49500;78300;37000;37300;43400;24500;6500;6500;6500;6500;;;;;;;;;;;;156;178;116;16;6850;9000;2500;12100;17000;17000;20641;13167;25640;55326;65949;17088;9287;17782;26926;33513;17746;23911;25568;46496;55920;47141;38054;36273;96282;109795;85385;119635;68145;80368
-44;'170;Colombia;1861;Roundwood;5922;Export value;1000 USD;675;776;846;741;901;751;535;480;518;1140;590;807;1931;751;234;234;234;234;;;;;;;;;;;;21;28;17;13;479;746;391;1535;1500;1360;1636;1590;2978;6130;6748;2242;1223;3079;7448;9261;11603;8477;10826;19630;27569;19785;14708;11380;36751;35870;22333;23453;15053;15368
-44;'170;Colombia;1862;Roundwood, coniferous;5516;Production;m3;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;35000;59000;60000;60000;60000;60000;152000;195000;212000;107000;207000;836000;899000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1102000;540000;833000;803000;649000;722000;3267100;2872200;2863000;2971600;2953900;3494000;3609000;3605000;3528000;3829000;3837000;3666000;3603000;2772618;2203503;2343256;2414539;2345758;2119000;1909000;1904000
-44;'170;Colombia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083;1329;1836;67;4222;3598;142
-44;'170;Colombia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1397;975;1243;24;1419;1369;59
-44;'170;Colombia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2890;34000;49000;32804;52904;25695;24695
-44;'170;Colombia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1234;12886;14455;6882;12194;6099;5988
-44;'170;Colombia;1863;Roundwood, non-coniferous;5516;Production;m3;8415055;8107233;8174673;8227374;8270340;8458572;8567071;8615841;8440882;8480197;8559665;9189578;9333523;8637468;8766431;8816931;8881422;8889714;9144401;8916822;8885851;8812014;8952072;8497712;8702013;9114999;9161156;9227598;9303489;9366607;9414886;8665426;8545250;8429583;8418319;8454448;8467619;9583511;9757000;12254000;11852000;10888000;8725600;7590000;9064059;7498100;7486000;7643000;8963000;8771000;8617000;9408000;9421000;9087000;8960000;7646341;7585131;6412425;6599565;6405722;5957000;5458000;5410000
-44;'170;Colombia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1503;386;53;783;2079;570
-44;'170;Colombia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;1255;272;40;317;458;228
-44;'170;Colombia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33383;62282;60795;52581;66731;42450;55673
-44;'170;Colombia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10146;23865;21415;15451;11259;8954;9380
-44;'170;Colombia;1864;Wood fuel;5516;Production;m3;5305055;5342233;5379673;5417374;5455340;5493572;5532071;5570841;5609882;5649197;5693665;5704578;5719523;5745468;5824431;5874931;5939422;5947714;5995401;6057822;6143851;6246014;6340072;6406712;6480013;6513999;6560156;6626598;6702489;6765607;6871886;6937426;6982250;7016583;7055319;7141448;7208619;7390511;8194000;10893000;10760000;9598000;9925000;8469000;10301059;8833000;8829000;8826000;8826000;8826000;8304000;9283000;9283000;9283000;9283000;7598000;7059920;6090000;6410000;6207000;6207000;5908000;5769000
-44;'170;Colombia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;587;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;0;0;0;;;;;;;
-44;'170;Colombia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;0;0;0;;;;;;;
-44;'170;Colombia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;48;48;11;;;;;;;28
-44;'170;Colombia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;14;14;11;;;;;;;5
-44;'170;Colombia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;279000;430000;424000;366000;2672000;2280000;2280000;2378000;2377000;2376000;2376000;2376000;2236000;2499000;2499000;2499000;2499000;1823520;1285440;1446400;1538400;1489680;1490000;1418000;1385000
-44;'170;Colombia;1628;Wood fuel, non-coniferous;5516;Production;m3;5305055;5342233;5379673;5417374;5455340;5493572;5532071;5570841;5609882;5649197;5693665;5704578;5719523;5745468;5824431;5874931;5939422;5947714;5995401;6057822;6143851;6246014;6340072;6406712;6480013;6513999;6560156;6626598;6702489;6765607;6871886;6937426;6982250;7016583;7055319;7141448;7208619;7390511;7915000;10463000;10336000;9232000;7253000;6189000;8021059;6455000;6452000;6450000;6450000;6450000;6068000;6784000;6784000;6784000;6784000;5774480;5774480;4643600;4871600;4717320;4717000;4490000;4384000
-44;'170;Colombia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28
-44;'170;Colombia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-44;'170;Colombia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;587;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;0;0;0;;;;;;;
-44;'170;Colombia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;0;0;0;;;;;;;
-44;'170;Colombia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;48;48;11;;;;;;;
-44;'170;Colombia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;14;14;11;;;;;;;
-44;'170;Colombia;1865;Industrial roundwood;5516;Production;m3;3130000;2785000;2815000;2830000;2835000;2985000;3055000;3065000;2851000;2851000;2886000;3505000;3649000;2951000;3002000;3002000;3002000;3002000;3301000;3054000;2954000;2673000;2819000;2927000;3121000;3683000;3683000;3683000;3683000;3683000;3625000;2810000;2645000;2495000;2445000;2395000;2361000;2733000;2396000;2164000;1741000;2012000;2067700;1993200;1626000;1636700;1610900;2311000;3746000;3550000;3841000;3954000;3975000;3470000;3280000;2820959;2728714;2665681;2604104;2544480;1869000;1459000;1545000
-44;'170;Colombia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;6264;4832;5668;1800;2000;6700;11500;700;202;7;210;1748;1871;221;241;123;1939;53;171;172;1280;7990;8563;2624;643;3149;2832;2222;120;5005;5677;712
-44;'170;Colombia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;1700;406;862;164;303;745;1257;51;14;49;14;49;144;40;61;43;615;30;94;100;596;3552;1409;1111;127;1823;2230;1515;64;1736;1827;287
-44;'170;Colombia;1865;Industrial roundwood;5916;Export quantity;m3;52600;84900;92600;66100;87500;89100;41800;41500;49500;78300;37000;37300;43400;24500;6500;6500;6500;6500;;;;;;;;;;;;156;178;116;16;6850;9000;2500;12100;17000;17000;20641;13167;25640;55326;65949;17088;9287;17782;26926;33513;17746;23911;25564;46481;55872;47093;38043;36273;96282;109795;85385;119635;68145;80340
-44;'170;Colombia;1865;Industrial roundwood;5922;Export value;1000 USD;675;776;846;741;901;751;535;480;518;1140;590;807;1931;751;234;234;234;234;;;;;;;;;;;;21;28;17;13;479;746;391;1535;1500;1360;1636;1590;2978;6130;6748;2242;1223;3079;7448;9261;11603;8477;10824;19625;27555;19771;14697;11380;36751;35870;22333;23453;15053;15363
-44;'170;Colombia;1866;Industrial roundwood, coniferous;5516;Production;m3;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;35000;59000;60000;60000;60000;60000;152000;195000;212000;107000;207000;836000;899000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1082000;1102000;540000;554000;373000;225000;356000;595100;592200;583000;593600;576900;1118000;1233000;1229000;1292000;1330000;1338000;1167000;1104000;949098;918063;896856;876139;856078;629000;491000;519000
-44;'170;Colombia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;189;2132;3150;1800;1800;6200;10900;0;0;0;0;15;1871;0;0;0;31;26;73;0;33;1055;1306;636;627;2083;1329;1836;67;4222;3598;142
-44;'170;Colombia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;138;611;164;164;451;792;0;0;0;0;8;144;0;0;0;10;11;19;0;59;147;196;191;84;1397;975;1243;24;1419;1369;59
-44;'170;Colombia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;1100;300;100;0;0;115;6;115;215;888;61;157;41;31;0;34;886;64;934;1972;104;698;2890;34000;49000;32804;52904;25695;24695
-44;'170;Colombia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;196;50;29;0;0;0;0;0;60;47;26;51;32;10;0;10;95;20;300;1036;44;297;1234;12886;14455;6882;12194;6099;5988
-44;'170;Colombia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;189;2132;3150;1800;1800;6200;10900;0;0;0;0;15;1871;0;0;0;31;26;73;0;33;1055;1306;636;627;2083;1329;1836;67;4222;3598;142
-44;'170;Colombia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;138;611;164;164;451;792;0;0;0;0;8;144;0;0;0;10;11;19;0;59;147;196;191;84;1397;975;1243;24;1419;1369;59
-44;'170;Colombia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;1100;300;100;0;0;115;6;115;215;888;61;157;41;31;0;34;886;64;934;1972;104;698;2890;34000;49000;32804;52904;25695;24695
-44;'170;Colombia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;196;50;29;0;0;0;0;0;60;47;26;51;32;10;0;10;95;20;300;1036;44;297;1234;12886;14455;6882;12194;6099;5988
-44;'170;Colombia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;3110000;2765000;2795000;2810000;2815000;2965000;3035000;3045000;2831000;2831000;2866000;3485000;3614000;2892000;2942000;2942000;2942000;2942000;3149000;2859000;2742000;2566000;2612000;2091000;2222000;2601000;2601000;2601000;2601000;2601000;2543000;1728000;1563000;1413000;1363000;1313000;1259000;2193000;1842000;1791000;1516000;1656000;1472600;1401000;1043000;1043100;1034000;1193000;2513000;2321000;2549000;2624000;2637000;2303000;2176000;1871861;1810651;1768825;1727965;1688402;1240000;968000;1026000
-44;'170;Colombia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;6075;2700;2518;0;200;500;600;700;202;7;210;1733;0;221;241;123;1908;27;98;172;1247;6935;7257;1988;16;1066;1503;386;53;783;2079;570
-44;'170;Colombia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1688;268;251;0;139;294;465;51;14;49;14;41;0;40;61;43;605;19;75;100;537;3405;1213;920;43;426;1255;272;40;317;458;228
-44;'170;Colombia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;178;39;16;6850;7900;2200;12000;17000;17000;20526;13161;25525;55111;65061;17027;9130;17741;26895;33513;17712;23025;25500;45547;53900;46989;37345;33383;62282;60795;52581;66731;42450;55645
-44;'170;Colombia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;28;5;13;479;550;341;1506;1500;1360;1636;1590;2978;6070;6701;2216;1172;3047;7438;9261;11593;8382;10804;19325;26519;19727;14400;10146;23865;21415;15451;11259;8954;9375
-44;'170;Colombia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5560;2185;2185;0;0;300;600;700;0;0;4;1733;0;0;0;48;3;0;7;84;2;17;55;2;15;262;1372;39;0;0;0;71
-44;'170;Colombia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1642;222;222;0;0;197;465;51;0;0;0;41;0;0;0;8;1;0;5;30;7;241;260;3;42;185;930;12;0;0;0;17
-44;'170;Colombia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;178;39;16;6850;7900;2200;12000;17000;17000;20500;13100;20546;54448;65061;17027;8945;17720;22589;21312;17361;22979;25499;45547;53900;46989;37345;33383;62282;60795;52581;66731;41544;55645
-44;'170;Colombia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;28;5;13;479;550;341;1506;1500;1360;1618;1575;1636;5999;6701;2216;1064;3037;4414;5358;11439;8351;10777;19325;26519;19727;14400;10146;23865;21415;15451;11259;8533;9375
-44;'170;Colombia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;515;515;333;0;200;200;0;0;202;7;206;0;0;221;241;75;1905;27;91;88;1245;6918;7202;1986;1;804;131;347;53;783;2079;499
-44;'170;Colombia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;46;46;29;0;139;97;0;0;14;49;14;0;0;40;61;35;604;19;70;70;530;3164;953;917;1;241;325;260;40;317;458;211
-44;'170;Colombia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;61;4979;663;0;0;185;21;4306;12201;351;46;1;0;0;0;0;0;0;0;0;0;906;0
-44;'170;Colombia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;15;1342;71;0;0;108;10;3024;3903;154;31;27;0;0;0;0;0;0;0;0;0;421;0
-44;'170;Colombia;1868;Sawlogs and veneer logs;5516;Production;m3;2200000;2200000;2200000;2200000;2200000;2230000;2260000;2260000;2026000;2026000;2026000;2605000;2709000;2044000;2092000;2092000;2092000;2092000;2232000;2090000;2160000;1960000;1960000;1989000;2162000;2686000;2686000;2686000;2686000;2686000;2686000;1921000;1806000;1706000;1706000;1706000;1706000;1819000;1461000;1296000;1190000;1161000;1148000;1077000;705500;673500;658100;1062000;1500000;1029000;1161000;1195000;1202000;1049000;992000;852740;824855;805801;787187;769164;565000;441000;467000
-44;'170;Colombia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;52600;84900;92600;66100;87500;89100;41800;41500;49500;78300;37000;37300;43400;24500;6500;6500;6500;6500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;675;776;846;741;901;751;535;480;518;1140;590;807;1931;751;234;234;234;234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;35000;59000;60000;60000;60000;60000;60000;60000;60000;60000;60000;597000;649000;806000;806000;806000;806000;806000;806000;806000;806000;806000;806000;806000;806000;76000;61000;44000;40000;40000;35000;33000;21500;20500;20100;254000;359000;246000;277000;285000;287000;250000;237000;203453;196800;192254;187813;183513;135000;105000;111000
-44;'170;Colombia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;2180000;2180000;2180000;2180000;2180000;2210000;2240000;2240000;2006000;2006000;2006000;2585000;2674000;1985000;2032000;2032000;2032000;2032000;2172000;2030000;2100000;1900000;1900000;1392000;1513000;1880000;1880000;1880000;1880000;1880000;1880000;1115000;1000000;900000;900000;900000;900000;1743000;1400000;1252000;1150000;1121000;1113000;1044000;684000;653000;638000;808000;1141000;783000;884000;910000;915000;799000;755000;649287;628055;613547;599374;585651;430000;336000;356000
-44;'170;Colombia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;52600;84900;92600;66100;87500;89100;41800;41500;49500;78300;37000;37300;43400;24500;6500;6500;6500;6500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;675;776;846;741;901;751;535;480;518;1140;590;807;1931;751;234;234;234;234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697000;745000;813000;500000;778000;836000;836000;839000;842000;808000;746000;825000;932000;917000;944000;949000;828000;783000;673317;651300;636255;621558;607326;446000;348000;369000
-44;'170;Colombia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;479000;327000;183000;313000;540000;540000;542000;544000;522000;482000;533000;602000;592000;610000;613000;535000;506000;434957;420734;411015;401521;392327;288000;225000;238000
-44;'170;Colombia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249000;266000;486000;317000;465000;296000;296000;297000;298000;286000;264000;292000;330000;325000;334000;336000;293000;277000;238360;230566;225240;220037;214999;158000;123000;131000
-44;'170;Colombia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;45000;75000;90000;95000;165000;155000;165000;185000;185000;220000;260000;300000;267000;270000;270000;270000;270000;466000;569000;393000;305000;451000;530000;551000;589000;589000;589000;589000;589000;589000;589000;589000;589000;589000;589000;589000;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;92000;135000;152000;47000;147000;239000;250000;276000;276000;276000;276000;276000;276000;276000;276000;276000;276000;276000;276000;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;45000;75000;90000;95000;165000;155000;165000;185000;185000;220000;260000;300000;267000;270000;270000;270000;270000;374000;434000;241000;258000;304000;291000;301000;313000;313000;313000;313000;313000;313000;313000;313000;313000;313000;313000;313000;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1871;Other industrial roundwood;5516;Production;m3;930000;540000;540000;540000;540000;590000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;603000;395000;401000;408000;408000;408000;408000;408000;408000;408000;408000;408000;350000;300000;250000;200000;150000;100000;66000;217000;190000;55000;51000;73000;83700;80200;81500;121200;144800;503000;1421000;1589000;1763000;1815000;1824000;1593000;1505000;1294902;1252559;1223625;1195359;1167990;858000;670000;709000
-44;'170;Colombia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;16000;14000;2000;2000;3000;20100;19200;19500;29100;34800;382000;341000;381000;423000;435000;438000;382000;361000;310688;300529;293587;286805;280238;206000;161000;170000
-44;'170;Colombia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;930000;540000;540000;540000;540000;590000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;640000;603000;395000;401000;408000;408000;408000;408000;408000;408000;408000;408000;408000;350000;300000;250000;200000;150000;100000;46000;201000;176000;53000;49000;70000;63600;61000;62000;92100;110000;121000;1080000;1208000;1340000;1380000;1386000;1211000;1144000;984214;952030;930038;908554;887752;652000;509000;539000
-44;'170;Colombia;1630;Wood charcoal;5510;Production;t;255292;260480;265773;271173;276684;282306;288042;293895;299868;305961;312529;316837;321694;327609;337832;345174;353761;357791;365218;374137;385235;397980;410235;420236;430963;437782;445776;455765;466814;476854;489967;499342;509274;516235;520901;532553;542663;563018;581366;329000;147000;147000;722000;637210;496000;517000;1039000;1039000;1039000;1039000;1039000;1070000;1064000;475000;475000;159000;160000;102000;102000;102000;102000;102000;102000
-44;'170;Colombia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;212;0;100;100;0;0;0;0;0;0;147;132;132;132;132;132;14;6;10;19;26;19;26;22;113;720;51;33;258;81;73
-44;'170;Colombia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;0;28;26;0;0;0;0;0;0;402;334;334;334;334;334;15;49;39;52;89;41;46;43;30;120;95;57;106;171;159
-44;'170;Colombia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2530;2530;0;0;0;0;0;0;0;0;39;510;510;5094;5094;3800;4593;3928;3697;3599;4071;10147;14447;16474;9525;11131;9793;10407;10842.92;7464;7623
-44;'170;Colombia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1050;1050;0;0;0;0;0;0;0;0;7;150;150;1216;1216;1242;1552;1373;1364;1495;1686;4551;6514;6983;4461;5841;5549;5756;5511.34;3981;5213
-44;'170;Colombia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;295130;271120;252120;135360;148390;152470;159410;188410;209000;218000;277000;288000;295000;589000;475000;548000;750000;781000;363574;229521;321934;300635;303864;306864
-44;'170;Colombia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;80;50;50;0;54;54;54;54;54;54;80;106;61;137;309;509;262;166;125;252;140;79;1611;347;847
-44;'170;Colombia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;41;15;15;0;12;12;12;12;12;12;68;91;48;111;252;611;275;156;97;191;82;63;78;93;72
-44;'170;Colombia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;289;289;289;289;289;289;14;84;46;99;66;34;171;171;138;287;0;137;20;3
-44;'170;Colombia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;112;24;38;36;58;13;4;41;41;22;18;2;113;99;2
-44;'170;Colombia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;295000;271000;252000;135000;148000;152000;159000;188000;208000;212000;216000;227000;234000;234000;114000;194000;184000;158000;152765;79379;80070;58771;62000;65000
-44;'170;Colombia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;59;232;215;179;127;86;110;54;74;1508;291;742
-44;'170;Colombia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;8;62;204;276;216;135;76;109;60;58;59;62;34
-44;'170;Colombia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;0;0;5;5;1;222;0;1;0;0
-44;'170;Colombia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;19;0;0;4;4;0;6;2;2;0;0
-44;'170;Colombia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6700;1400;1000;1000;130;120;120;360;390;470;410;410;1000;6000;61000;61000;61000;355000;361000;354000;566000;623000;210809;150142;241864;241864;241864;241864
-44;'170;Colombia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;605;100;100;100;160;160;80;50;50;0;54;54;54;54;54;54;76;102;57;78;77;294;83;39;39;142;86;5;103;56;105
-44;'170;Colombia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;24;26;26;43;82;82;41;15;15;0;12;12;12;12;12;12;64;86;40;49;48;335;59;21;21;82;22;5;19;31;38
-44;'170;Colombia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;289;289;289;289;289;289;14;84;43;96;66;34;166;166;137;65;0;136;20;3
-44;'170;Colombia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;112;24;38;17;39;13;4;37;37;22;12;0;111;99;2
-44;'170;Colombia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;20;29;16;0;0;0;64;52;41;37;22
-44;'170;Colombia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;12;21;12;0;0;0;41;35;29;35;41
-44;'170;Colombia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;1434;1261.69;1406;1501
-44;'170;Colombia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;222;210;309;405
-44;'170;Colombia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;20;29;16;0;0;0;27;2;0;0;5
-44;'170;Colombia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;12;21;12;0;0;0;13;2;1;3;7
-44;'170;Colombia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;20;69;20;116
-44;'170;Colombia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;9;5;47
-44;'170;Colombia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;50;41;37;17
-44;'170;Colombia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;33;28;32;34
-44;'170;Colombia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;1414;1192.69;1386;1385
-44;'170;Colombia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;218;201;304;358
-44;'170;Colombia;1872;Sawnwood;5516;Production;m3;1044000;1065000;985000;985000;985000;1005000;1025000;1060000;1052000;1100000;1180000;1257800;1261000;934000;954000;934000;934000;934000;983000;970000;1006000;721200;721200;603000;655000;813000;813000;813000;813000;813000;813000;758000;694000;644000;644000;1134000;1085000;910000;730000;587000;539000;527000;599000;622000;407000;389000;382000;481000;680000;693000;526000;542000;544000;474850;449233;424615;365169;353228;334260;337167;247283;193000;205000
-44;'170;Colombia;1872;Sawnwood;5616;Import quantity;m3;500;200;200;500;500;1900;2100;2100;900;600;600;400;200;0;200;200;200;200;200;6500;4700;1800;1200;12800;12800;900;1700;11400;7800;3800;3800;6475;31548;10627;15000;4600;15500;6400;6400;2100;500;19500;13503;14084;13369;8665;5366;16863;14754;24609;32633;51359;37077;62830;40770;40838;29919;29555;31687;30049;45793;41058;19834
-44;'170;Colombia;1872;Sawnwood;5622;Import value;1000 USD;25;10;10;55;55;232;333;333;24;21;32;33;23;0;31;31;31;31;31;1365;1008;390;277;3109;3109;220;290;2258;1029;936;936;2019;3818;2310;2349;1473;3995;1693;1530;195;126;4976;2360;2593;2338;863;1556;5012;3615;7253;9887;15188;11749;20348;13183;12093;9967;10499;11319;8706;18052;16185;10679
-44;'170;Colombia;1872;Sawnwood;5916;Export quantity;m3;38400;32700;49200;82600;44400;47200;55000;104200;150200;157200;122000;96200;99600;45000;23200;23200;23200;23200;29100;11200;11900;2300;1800;1300;1300;1300;5800;4300;4100;12500;18700;22632;1578;1685;9700;3000;5900;2500;8700;4505;3827;18500;15734;2373;3218;7050;45414;13396;13749;20341;10598;8848;3642;10060;3898;5377;12462;17490;19734;19281;13591;11757;14644
-44;'170;Colombia;1872;Sawnwood;5922;Export value;1000 USD;1535;1453;1976;3159;2308;2192;2676;4735;5473;4092;6044;4354;6082;3810;3002;3002;3002;3002;4273;2597;4807;536;297;181;181;181;850;1094;789;2534;3365;4288;563;684;2105;950;1037;569;2004;1366;1112;7106;4129;571;754;3245;5631;8825;9056;11369;6674;4293;2034;6509;2919;3568;8011;12548;12329;14328;7853;9156;9030
-44;'170;Colombia;1632;Sawnwood, coniferous;5516;Production;m3;37000;47500;47500;47500;47500;52500;57500;65000;10000;11000;12000;12900;16500;32000;52000;32000;32000;32000;33000;50000;50000;21200;21200;181000;196000;244000;244000;244000;244000;244000;244000;244000;244000;244000;244000;100000;139000;38000;31000;20000;18000;18000;144000;149000;98000;93000;92000;115000;163000;166000;126000;130000;130000;113850;107611;101714;87474;84614;80070;80766;59283;46000;49000
-44;'170;Colombia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;4400;1800;1800;3246;1874;4127;4000;4000;2500;900;100;100;100;18100;13000;13000;13000;8000;4801;16445;14627;24528;32398;51180;36610;60263;39060;40661;29390;28284;30499;28973;44329;40434;18928
-44;'170;Colombia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;511;398;398;746;264;821;942;1111;1728;414;24;56;56;4547;2135;2135;2135;548;1354;4702;3523;7189;9662;15060;11257;18515;12725;11991;9678;8959;10797;8143;17202;15670;10033
-44;'170;Colombia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;200;200;200;300;200;200;200;200;2900;2900;2900;2900;9100;1191;527;620;1800;800;200;400;0;5;27;13500;14000;327;230;691;729;139;41;25;675;778;522;315;145;560;597;78;139;62;476;1868;584
-44;'170;Colombia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;25;25;25;45;14;14;14;14;377;377;377;377;1208;273;119;145;434;521;119;205;0;1;17;5741;3768;112;89;233;367;74;32;29;196;75;94;198;49;212;274;21;36;205;184;428;429
-44;'170;Colombia;1633;Sawnwood, non-coniferous;5516;Production;m3;1007000;1017500;937500;937500;937500;952500;967500;995000;1042000;1089000;1168000;1244900;1244500;902000;902000;902000;902000;902000;950000;920000;956000;700000;700000;422000;459000;569000;569000;569000;569000;569000;569000;514000;450000;400000;400000;1034000;946000;872000;699000;567000;521000;509000;455000;473000;309000;296000;290000;366000;517000;527000;400000;412000;414000;361000;341622;322901;277695;268614;254190;256401;188000;147000;156000
-44;'170;Colombia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;500;200;200;500;500;1900;2100;2100;900;600;600;400;200;0;200;200;200;200;200;6500;4700;1800;1200;12800;12800;900;1700;4800;3400;2000;2000;3229;29674;6500;11000;600;13000;5500;6300;2000;400;1400;503;1084;369;665;565;418;127;81;235;179;467;2567;1710;177;529;1271;1188;1076;1464;624;906
-44;'170;Colombia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;25;10;10;55;55;232;333;333;24;21;32;33;23;0;31;31;31;31;31;1365;1008;390;277;3109;3109;220;290;1257;518;538;538;1273;3554;1489;1407;362;2267;1279;1506;139;70;429;225;458;203;315;202;310;92;64;225;128;492;1833;458;102;289;1540;522;563;850;515;646
-44;'170;Colombia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;38400;32700;49200;82600;44400;47200;55000;104200;150200;157200;122000;96200;99600;45000;23200;23200;23200;23200;28900;11000;11700;2000;1600;1100;1100;1100;2900;1400;1200;9600;9600;21441;1051;1065;7900;2200;5700;2100;8700;4500;3800;5000;1734;2046;2988;6359;44685;13257;13708;20316;9923;8070;3120;9745;3753;4817;11865;17412;19595;19219;13115;9889;14060
-44;'170;Colombia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1535;1453;1976;3159;2308;2192;2676;4735;5473;4092;6044;4354;6082;3810;3002;3002;3002;3002;4248;2572;4782;491;283;167;167;167;473;717;412;2157;2157;4015;444;539;1671;429;918;364;2004;1365;1095;1365;361;459;665;3012;5264;8751;9024;11340;6478;4218;1940;6311;2870;3356;7737;12527;12293;14123;7669;8728;8601
-44;'170;Colombia;1634;Veneer sheets;5516;Production;m3;3600;4000;5000;4600;3000;3000;3000;4000;4000;4600;4600;9000;6000;3900;3900;4000;4000;4000;4000;9000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;5000;5000;5000;5000;5000;1000;1000;1250;1700;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;3543;1589;1596;1400;1318;1318;1071;1036;1036;989;726;568;568
-44;'170;Colombia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933;423;400;1200;1400;1600;1300;900;1000;700;1000;1000;1802;1485;1737;3437;2791;1587;2457;1834;1496;2498;4931;1709;1168;832;984;1080;940;830;1157;962
-44;'170;Colombia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1731;443;690;2710;3002;3016;2613;1765;2080;1871;2450;2367;3600;3489;4259;6654;7494;4636;6895;4788;4824;5925;8051;5346;3635;2688;3106;3156;2469;2751;3239;2963
-44;'170;Colombia;1634;Veneer sheets;5916;Export quantity;m3;;900;5000;3700;300;200;100;100;400;4200;3700;8900;6000;2200;800;700;600;500;300;300;700;300;200;200;200;200;200;200;200;200;200;95;26;62;0;0;0;0;0;42;14;43;938;70;23;452;29;53;44;1;364;354;4;10;106;21;111;1;1;0;15;10;201
-44;'170;Colombia;1634;Veneer sheets;5922;Export value;1000 USD;;57;456;330;69;36;13;15;94;235;236;592;560;354;244;300;400;405;229;187;607;282;202;179;179;179;179;179;179;179;179;76;13;31;0;0;0;0;0;41;4;42;38;23;28;179;42;73;119;148;630;59;130;127;67;38;71;3;24;24;87;70;378
-44;'170;Colombia;1873;Wood-based panels;5516;Production;m3;39200;40800;50800;50800;73500;69819;77572;82004;85504;72598;79162;83909;81035;69557;78100;104900;108200;108200;98600;102000;99000;116000;131000;153700;168500;176000;175300;176000;176000;176000;170000;155000;161000;170000;171000;118000;118000;112000;172800;205000;188000;181000;206000;224000;233000;244000;288000;318000;323000;330000;348513;376000;459707;414000;397244;381271;341505;333607;239585;240448;361593;304132;316492
-44;'170;Colombia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;13100;18100;39300;19100;14500;1000;1000;1000;8800;3100;8300;12100;12100;9982;8183;26947;50000;36200;38900;35100;37800;40100;32600;48800;89156;173970;178407;172114;177028;235128;181440;215076;248502;227325;266265;383483;369384;376122;385113;548667;458739;422549;553909.29;597091;420115
-44;'170;Colombia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;4274;5633;11790;7598;6598;487;487;487;1617;1200;2219;2406;2406;2197;3576;7576;18100;14487;16461;13868;11283;11487;13998;17280;19539;34796;36993;45767;48762;100135;96605;116936;131523;137974;162697;189878;161313;152198;150943;187583;164904;170605;241595.73;286485;200742
-44;'170;Colombia;1873;Wood-based panels;5916;Export quantity;m3;;;;90;600;900;1000;500;2100;2100;2100;1500;600;1600;1700;1700;1700;1700;300;1700;1100;3400;400;2400;2400;2400;9200;5100;6800;7600;9600;11210;4563;5245;10400;11000;16400;23800;71300;78100;43300;39860;60299;69504;66578;36420;29860;20473;16589;16234;21936;16428;16275;20878;20420;22556;17279;12967;4308;3955;7306.1;15834;10074
-44;'170;Colombia;1873;Wood-based panels;5922;Export value;1000 USD;;;;14;96;138;100;60;71;71;71;62;111;229;172;172;172;172;242;354;466;1373;132;1106;1106;1106;1763;1857;2953;2737;3221;4438;2525;3067;4908;4009;3669;5234;14178;14231;13476;11590;13153;16446;15226;14482;12159;8981;11904;8969;14200;11176;10235;10189;9418;8650;13846;3445;1468;1530;2921;3197;3195
-44;'170;Colombia;1640;Plywood and LVL;5516;Production;m3;30000;30000;40000;40000;54000;48000;55000;60000;65000;52000;56500;62100;58000;45400;50000;75000;75000;75000;52000;52000;40000;48000;47000;56000;62000;64000;64000;64000;64000;64000;64000;49000;55000;64000;65000;35000;28000;25000;28800;31000;29000;33000;38000;41000;43000;45000;53000;58000;59000;60000;63513;65000;65707;57000;54244;51271;44093;42651;40361;40361;162593;127132;134492
-44;'170;Colombia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;13100;11100;25300;10300;10300;700;700;700;300;1800;2900;1900;1900;1911;5572;7383;19300;14700;16000;11000;5700;4600;4600;5000;5063;3100;7537;10099;15013;29528;19940;53772;70893;69528;73055;57460;39480;51515;43653;44360;38399;32927;36235;66611;47626
-44;'170;Colombia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;4274;4215;8579;5151;5151;395;395;395;177;945;1371;509;509;800;2775;3707;11244;8670;9255;6738;2901;2143;3066;2172;1956;1584;3781;5177;8172;14135;12605;25915;26000;34239;34840;33928;20164;21036;19492;21874;18057;15375;18863;22512;19123
-44;'170;Colombia;1640;Plywood and LVL;5916;Export quantity;m3;;;;90;600;900;1000;400;400;400;400;400;300;500;100;100;100;100;100;100;100;500;100;1800;1800;1800;5500;4900;5400;6600;8200;5681;3414;3845;5900;2600;900;2000;6200;4200;4300;4360;9394;9210;6284;9010;7743;4256;3990;4226;8974;6203;2342;1401;616;545;741;536;304;293;279;418;481
-44;'170;Colombia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;14;96;138;100;48;15;15;15;15;61;133;31;31;31;31;48;48;48;364;47;995;995;995;1311;1826;1877;2237;2881;3308;2352;2771;3623;2112;684;1330;3115;1974;2672;1975;3867;4426;3206;5689;4879;3443;4790;2238;5424;4428;1563;946;409;266;502;266;215;150;190;484;163
-44;'170;Colombia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000
-44;'170;Colombia;1646;Particle board and OSB (1961-1994);5516;Production;m3;9200;10800;10800;10800;11000;9500;10000;10000;8500;9100;10300;10100;10800;11500;11500;16700;20000;20000;30000;31000;42000;50000;65000;81000;89000;93000;93000;93000;93000;93000;93000;93000;93000;93000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;7000;14000;8800;4200;300;300;300;8500;1300;5400;10200;10200;7469;857;17800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;1418;3211;2447;1447;92;92;92;1440;255;848;1897;1897;1223;185;3201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;100;1700;1700;1700;1100;300;1100;1600;1600;1600;1600;200;1600;1000;2900;300;600;600;600;3700;200;1400;1000;1400;4458;78;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;12;56;56;56;47;50;96;141;141;141;141;194;306;418;1009;85;111;111;111;452;31;1076;500;340;992;35;296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;70000;72000;69000;139000;160000;147000;131000;149000;162000;168000;176000;208000;228000;232000;237000;250000;257000;258000;226000;213000;202000;173411;167740;77254;77926;29000;22000;24000
-44;'170;Colombia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300;12300;10200;12000;9000;8900;8000;17600;26047;39379;39379;61218;61218;25000;25900;54862;66767;41416;63679;188668;204835;207610;239697;376972;326074;278616;354605.85;387360;292757
-44;'170;Colombia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5224;2564;2572;3198;2009;2002;2734;4999;5000;7796;7796;14356;14356;16000;16000;31374;40178;28861;44630;69801;71823;74584;83642;103389;106612;106366;153622.21;180416;146741
-44;'170;Colombia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;8400;13300;20500;63000;66700;31500;27200;40934;49200;49200;20793;17000;12000;8196;8787;10608;5162;5021;18465;18153;21124;15223;12309;3702;2763;6111;14120;6523
-44;'170;Colombia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285;1897;2412;3531;10417;10312;8340;7146;7359;10000;10000;6671;5477;3840;5339;5297;7343;3990;3537;8459;7789;7729;12561;2997;905;786;2255;2108;1616
-44;'170;Colombia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-44;'170;Colombia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;1532;1532;17700;18200;502;1248;1562;2944;3803;3999;5586;7828;10190;1515;4254;13322.23;5428;3832
-44;'170;Colombia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;413;413;7000;7000;259;618;861;1714;1527;991;1362;1222;2758;675;1541;4361.44;2322;1207
-44;'170;Colombia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;121;246;21;274;391;391;0;0;35;228;388.61;228;114
-44;'170;Colombia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;87;169;15;149;255;255;0;0;10;70;116;118;50
-44;'170;Colombia;1874;Fibreboard;5516;Production;m3;;;;;8500;12319;12572;12004;12004;11498;12362;11709;12235;12657;16600;13200;13200;13200;16600;19000;17000;18000;19000;16700;17500;19000;18300;19000;19000;19000;13000;13000;13000;13000;13000;13000;18000;18000;5000;14000;12000;17000;19000;21000;22000;23000;27000;32000;32000;33000;35000;54000;136000;131000;130000;128000;124001;123216;121970;122161;170000;155000;158000
-44;'170;Colombia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602;1754;1764;5400;9200;12700;12100;23100;26600;20000;26200;58030;131475;131475;99265;99265;162900;117400;105940;109594;114819;126587;133552;121070;111411;93935;117145;92751;106752;149746.21;137692;75900
-44;'170;Colombia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;616;668;1632;3253;4634;3932;6373;7342;8198;10109;12579;25412;25412;25821;25821;63000;61000;59388;64727;74013;81513;84622;68335;55216;46587;59562;39560;47323;64749.07;81235;33671
-44;'170;Colombia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1071;0;0;0;2200;1300;2100;7200;7500;8300;9971;11094;11094;6617;5117;4217;4403;3174;2233;4817;8891;738;1260;496;1315;122;267;671;527.49;1068;2956
-44;'170;Colombia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;0;0;0;573;373;646;1945;2464;2469;1927;2020;2020;2122;1803;1698;1775;1384;1346;2589;5120;635;965;400;783;182;338;524;360;487;1366
-44;'170;Colombia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;18000;18000;5000;14000;12000;17000;19000;21000;22000;23000;27000;32000;32000;33000;35000;36000;36000;31000;30000;28000;24001;23216;21970;22161;70000;55000;58000
-44;'170;Colombia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;5300;4700;2500;5800;5400;4500;5000;10703;10703;10703;12988;12988;44600;44600;13228;16946;18498;22634;33440;37522;34819;27288;18020;11162;9556;10828.69;10258;7786
-44;'170;Colombia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;2482;1712;895;1683;1526;1849;1627;4058;4058;4058;6712;6712;25000;25000;9117;11646;14821;17668;23188;21930;18379;14151;11920;7188;6734;8986.21;8746;5000
-44;'170;Colombia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1200;1800;5600;6400;6300;6494;6494;6494;5700;4200;3300;1000;236;200;41;38;71;77;2;12;0;9;0;40;0;649
-44;'170;Colombia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;275;351;935;1480;1458;1420;1420;1420;1800;1481;1376;420;100;85;36;21;83;34;1;12;0;5;0;3;1;4
-44;'170;Colombia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;18000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-44;'170;Colombia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;2400;7500;9400;17100;21100;14700;21000;46249;119472;119472;86000;86000;86000;46000;80512;89387;94411;86111;95886;80236;71815;63785;88770;59962;63807;136386.52;125805;67516
-44;'170;Colombia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1341;633;2793;2972;4634;5777;6159;8442;8359;21131;21131;19000;19000;19000;24000;44230;51006;57469;54679;57969;44017;34134;30813;43231;25334;25886;54595.57;71552;28500
-44;'170;Colombia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;300;1600;1100;2000;1040;900;900;594;594;594;3400;2830;2010;4751;5926;657;1160;356;183;111;236;118;368.49;1065;2307
-44;'170;Colombia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;98;295;1010;984;1011;257;200;200;257;257;257;1354;1177;1252;2521;3411;539;919;362;335;174;330;77;355;460;1362
-44;'170;Colombia;1650;Other fibreboard;5516;Production;m3;;;;;400;2000;3200;2000;2000;1600;1200;1600;1600;1600;1600;1200;1200;1200;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-44;'170;Colombia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;91;20;100;1500;500;200;200;100;800;200;1078;1300;1300;277;277;32300;26800;12200;3261;1910;17842;4226;3312;4777;2862;10355;21627;33389;2531;1629;598
-44;'170;Colombia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;26;15;30;138;129;65;56;39;190;40;162;223;223;109;109;19000;12000;6041;2075;1723;9166;3465;2388;2703;1623;4411;7038;14703;1167.29;937;171
-44;'170;Colombia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1071;0;0;0;0;0;0;0;0;0;2437;3700;3700;323;323;323;3;108;23;25;2927;10;23;138;1120;11;22;553;119;3;0
-44;'170;Colombia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;0;0;0;0;0;0;0;0;0;250;400;400;65;65;65;1;107;9;32;1688;13;12;37;436;8;3;447;2;26;0
-44;'170;Colombia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;8100;10319;9372;10004;10004;9898;11162;10109;10635;11057;15000;12000;12000;12000;12600;15000;13000;14000;15000;12700;13500;15000;14300;15000;15000;15000;10000;10000;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;1663;1744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;590;653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1879;Total fibre furnish;5510;Production;t;16600;27000;39000;41000;52000;77000;70000;83000;104000;118000;126000;220000;239000;264000;221000;269000;286000;306000;333000;367000;364000;357000;350000;361000;422000;437000;476000;496000;501000;467000;471000;609000;608000;625000;627000;671000;679000;647000;638000;717000;713000;771000;809000;862000;947000;968000;983000;1005143;1007200;1092685;1121831;1159510;1165094;1177337;1217754;1206815;1241304;1324687;1184885;1106000;1062112;1139432;1169251
-44;'170;Colombia;1879;Total fibre furnish;5610;Import quantity;t;7100;7100;200;1000;2200;68400;31600;42900;51500;64800;50400;72600;37700;64300;21900;23000;27100;24000;45500;53700;66800;64600;53100;70900;67500;52500;41000;54500;62300;62100;84200;107621;82413;111004;84000;127700;117900;122400;133600;295600;178300;262500;250304;211034;211034;253599;278340;283024;242719;278462;262725;255167;277449;294813;268573;270269;274685;298366;308314;273390;320615.22;378717;268133
-44;'170;Colombia;1879;Total fibre furnish;5622;Import value;1000 USD;842;842;18;107;235;10893;5408;7702;7273;8301;8259;11941;6864;24262;8615;8304;8997;8402;20512;27221;36777;27215;23850;35799;29877;22762;20591;36314;32533;25451;41009;48946;31600;48495;60010;55344;52695;55560;57094;88155;73770;90659;103578;91620;91620;117206;134837;168484;108892;175861;172604;153242;155499;165636;154541;131663;147266;175319;161046;127687;191688.6;268078;198097
-44;'170;Colombia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;33;10;0;0;0;1300;2600;3300;1500;800;5273;2592;2592;1822;1822;3598;2171;1694;3112;3820;5585;2985;2298;1666;2216;2251;955;5274;4202.25;4833.57;1112.57
-44;'170;Colombia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;1;0;0;0;599;712;745;655;476;1829;740;740;494;494;727;783;821;1545;1184;1457;1684;1344;1137;1206;1353;508;2714;1788.53;1664.7;643.7
-44;'170;Colombia;1878;Pulp for paper;5510;Production;t;16600;27000;39000;41000;52000;77000;70000;83000;104000;112000;120000;145000;151000;176000;136000;167000;178000;192000;201000;207000;214000;194000;189000;189000;228000;235000;246000;248000;248000;266000;270000;295000;294000;311000;313000;307000;317000;313000;333000;362000;346000;358000;379000;381000;385000;387000;380000;360143;374200;393481;389013;440138;412534;426282;431080;429465;422093;436898;431868;419000;370112;394432;395762
-44;'170;Colombia;1878;Pulp for paper;5610;Import quantity;t;7100;7100;200;1000;2200;68400;31600;42900;51500;51800;34400;51600;20700;46400;14300;14300;14300;14300;38100;44800;60600;50100;45600;64000;56900;42100;28800;46800;41500;33100;55200;69003;62797;83955;72300;73900;84100;95400;96600;175200;108300;175500;172837;134892;134892;164000;182950;179024;141719;165884;150196;166259;166121;175161;172052;148474;172399;162838;147661;148706;180726.11;225465;189413
-44;'170;Colombia;1878;Pulp for paper;5622;Import value;1000 USD;842;842;18;107;235;10893;5408;7702;7273;7290;6848;10067;5129;21116;7133;7133;7133;7133;19446;25428;35394;23936;22388;33892;27900;21095;17984;34870;29848;21443;37001;43441;28720;43859;57503;46719;47317;51600;51669;75550;62797;76009;90312;78280;78280;100637;112869;137484;86892;142016;134034;128734;125639;132619;128242;100925;118663;135544;116787;95196;144120.88;198970;171927
-44;'170;Colombia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;900;600;1300;700;700;1974;732;732;598;598;598;106;683;456;353;632;1959;1031;1250;1342;1706;448;4867;1434.16;758.57;502.57
-44;'170;Colombia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;569;426;541;449;409;1076;394;394;279;279;279;116;600;901;392;438;1437;944;990;1018;1279;342;2668;1120.49;733.7;567.7
-44;'170;Colombia;1875;Wood pulp;5510;Production;t;;10000;18000;21000;22000;37000;35000;38000;42000;42000;50000;70000;71000;101000;82000;103000;110000;105000;119000;123000;126000;115000;114000;114000;140000;149000;154000;152000;152000;169000;169000;166000;163000;164000;171000;169000;176000;176000;189000;210000;197000;202000;209000;209000;210000;211000;203000;186143;207000;233274;229324;257364;234488;238173;233836;237916;234049;240412;243187;242000;219498;246532;227562
-44;'170;Colombia;1875;Wood pulp;5610;Import quantity;t;7100;7100;200;1000;2200;68400;31600;42900;51500;51800;34400;51600;20700;57700;19900;19900;19900;19900;44100;51600;65600;54900;50900;68700;61600;47100;31700;50500;45000;36200;58300;69696;59089;83408;73900;75200;86400;95800;96400;176500;110100;177400;172559;134944;134944;163955;181649;177926;139994;164824;148861;164512;163673;173789;170775;148788;172245;161589;147566;149519;178940.11;222014;186655
-44;'170;Colombia;1875;Wood pulp;5622;Import value;1000 USD;842;842;18;107;235;10893;5408;7702;7273;7290;6848;10067;5129;26260;9921;9921;9921;9921;22548;29661;38547;26240;25410;36635;30643;24099;19912;37384;33857;25452;41010;43482;27063;43189;58540;47217;48434;51910;51415;75547;63285;76105;89258;77611;77611;99890;110929;135570;84442;140165;130688;124682;121428;129671;125688;100610;117733;132671;115896;94266;141174.88;191013;165152
-44;'170;Colombia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;0;0;0;1460;191;191;57;57;57;103;644;417;314;701;2027;522;580;363;200;0;1629;201;481.57;346.57
-44;'170;Colombia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;710;142;142;27;27;27;77;561;862;353;612;1575;620;498;315;162;0;900;203;459.7;421.7
-44;'170;Colombia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45326;51176;55148;75000;101263;154819;153562
-44;'170;Colombia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;397;459;411;428.3;424;440
-44;'170;Colombia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;267;311;299;306;422;379
-44;'170;Colombia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-44;'170;Colombia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-44;'170;Colombia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-44;'170;Colombia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;7100;7100;200;1000;2200;2200;1200;2200;2500;2700;2300;1100;1900;2500;100;100;100;100;100;100;100;100;100;;;;;;;;;;;88;0;0;0;0;0;0;0;0;1179;100;100;100;100;100;58;75;80;248;174;147;133;262;;;;;;;
-44;'170;Colombia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;842;842;18;107;235;235;130;234;270;290;308;126;253;1149;47;47;47;47;47;47;47;31;31;;;;;;;;;;;43;0;0;0;0;0;0;0;0;320;25;25;25;25;25;15;109;95;190;173;184;126;218;;;;;;;
-44;'170;Colombia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;5000;9000;10000;10000;10000;10000;12000;12000;12000;15000;21000;21000;31000;21000;26000;29000;27000;40000;37000;41000;22000;25000;25000;29000;27000;27000;24000;24000;38000;38000;32000;34000;34000;40000;38000;37000;34000;44000;47000;45000;47000;48000;54000;54000;58000;61000;39143;33000;33053;25824;37146;31729;37842;35969;47519;;;;;;;
-44;'170;Colombia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1081;221;221;100;0;0;0;0;500;1900;1100;24741;18300;18300;14624;14624;14624;14624;47;333;556;442;442;66;46;;;;;;;
-44;'170;Colombia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;104;104;136;0;0;0;0;194;775;426;12316;9300;9300;7300;7300;7300;7300;34;209;348;259;259;37;27;;;;;;;
-44;'170;Colombia;1656;Chemical wood pulp;5510;Production;t;;5000;9000;11000;12000;27000;25000;26000;30000;30000;35000;49000;50000;70000;61000;77000;81000;78000;79000;86000;85000;93000;89000;89000;111000;122000;127000;128000;128000;131000;131000;134000;129000;130000;131000;131000;139000;142000;145000;163000;152000;155000;161000;155000;156000;153000;142000;147000;174000;200221;203500;220218;202759;200331;197867;190397;188723;189236;188039;167000;118235;91713;74000
-44;'170;Colombia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;40700;49000;49100;32100;50500;18800;43900;14200;14200;14200;14200;38000;44700;60500;50000;45500;64000;56900;42100;28800;46800;41500;33100;55200;66944;58368;82480;71700;72800;83500;94500;95500;173300;105800;173200;145549;115510;115510;148294;166500;163000;125237;164518;148165;163068;162248;171708;169546;147060;171122;159680;145934;145946;177861.82;221048;185971
-44;'170;Colombia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;7468;7003;7000;6540;9941;4876;19967;7086;7086;7086;7086;19399;25381;35347;23905;22357;33892;27900;21095;17984;34870;29848;21443;37001;41696;26689;42727;56635;45324;46593;50528;50416;74306;61203;74257;76174;67616;67616;91973;103225;128000;77032;139781;129898;123027;120052;127607;124604;99117;116729;130974;114587;91626;140214.88;189966;164366
-44;'170;Colombia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;0;0;0;1460;191;191;57;57;57;103;644;417;314;520;1846;341;576;359;200;0;1629;201;467.57;332.57
-44;'170;Colombia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;710;142;142;27;27;27;77;561;862;353;383;1346;391;474;291;162;0;900;203;451.7;413.7
-44;'170;Colombia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;5000;9000;11000;12000;27000;25000;26000;30000;30000;35000;49000;50000;70000;61000;77000;81000;78000;79000;86000;85000;93000;89000;89000;111000;122000;127000;128000;128000;131000;131000;134000;129000;130000;131000;59000;55000;66000;68000;77000;73000;77000;81000;76000;75000;68000;56000;64000;77000;86621;85044;95995;80653;84947;83902;79718;82708;79780;79255;78000;72000;76000;74000
-44;'170;Colombia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;16700;2400;2400;2400;2400;5000;9700;15800;9900;4500;9100;6000;7800;4800;3700;2900;2100;4200;1748;3965;3787;1700;1000;1100;1300;2900;2000;1500;2000;2064;2481;2481;3611;0;5300;5900;6985;8525;11018;9891;9632;12495;12610;12565;13130;12019;13981;14353.48;11657;9117
-44;'170;Colombia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;7605;1205;1205;1205;1205;2767;4600;8738;3584;1769;4193;2300;3331;2464;2454;1863;1167;2300;918;1744;1699;1354;604;391;665;1462;758;771;759;916;1186;1186;1970;0;4000;3000;5340;6568;7407;6942;7385;8706;8213;9095;11809;9209;9285;12605.19;10789;8300
-44;'170;Colombia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;229;0;0;0;0;0;0;56;32;31.57;31.57
-44;'170;Colombia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;167;0;0;0;0;0;0;49;28;27.7;27.7
-44;'170;Colombia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72000;84000;76000;77000;86000;79000;78000;80000;79000;81000;85000;86000;83000;97000;113600;118456;124223;122106;115384;113965;110679;106015;109456;108784;89000;46235;15713;0
-44;'170;Colombia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;40700;49000;49100;32100;50500;18800;26700;11400;11400;11400;11400;32000;33800;41200;37000;38700;52500;47500;29600;21000;38200;32400;28000;48000;58376;52357;74804;66300;65800;79300;91400;92500;171100;104100;171000;143477;112557;112557;142738;166500;157700;119300;157484;137189;151784;151195;161988;156980;134350;158437;146440;133813;131841;163323.34;209134;176472
-44;'170;Colombia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;7468;7003;7000;6540;9941;4876;12158;5687;5687;5687;5687;16107;20030;24426;18435;19091;28105;23400;15250;13641;28877;23588;18575;33000;36469;24077;38760;53222;41902;44564;48797;48862;73410;60358;73411;75247;65671;65671;88906;103225;124000;74000;134399;121163;115294;112404;120026;115755;90707;107374;118921;105156;82070;127154.52;178642;155287
-44;'170;Colombia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;1460;191;191;57;57;57;103;644;417;314;290;1846;341;576;359;200;0;1573;169;436;301
-44;'170;Colombia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;710;142;142;27;27;27;77;561;862;353;210;1346;391;474;291;162;0;851;175;424;385
-44;'170;Colombia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-44;'170;Colombia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;110;102;124;185;257;382
-44;'170;Colombia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;244;222;271;455.17;535;779
-44;'170;Colombia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-44;'170;Colombia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-44;'170;Colombia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;
-44;'170;Colombia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;301;324;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-44;'170;Colombia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;67;143;241;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-44;'170;Colombia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;
-44;'170;Colombia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;500;400;400;400;400;1000;1200;3500;3100;2300;2400;3400;4700;3000;4900;6200;3000;3000;6520;1745;3565;2700;6000;3100;1800;100;200;200;200;8;472;472;1945;0;0;37;49;2451;266;1162;88;71;100;;;;;;;
-44;'170;Colombia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;204;194;194;194;194;525;751;2183;1886;1497;1594;2200;2514;1879;3539;4397;1701;1701;4180;801;2125;1818;2818;1638;1066;92;138;74;87;11;759;759;1097;0;0;32;42;2167;326;706;196;143;197;;;;;;;
-44;'170;Colombia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;;;;;;;
-44;'170;Colombia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;;;;;;;
-44;'170;Colombia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-44;'170;Colombia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;11300;5600;5600;5600;5600;6000;6800;5000;4800;5300;4700;4700;5000;2900;3700;3500;3100;3100;1671;500;619;2100;2400;2900;1300;900;2700;2400;3100;1090;1034;1034;937;425;202;75;184;283;640;809;1492;1030;1420;943;1512;1173;3162;650;542;244
-44;'170;Colombia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;5144;2788;2788;2788;2788;3102;4233;3153;2304;3022;2743;2743;3004;1928;2514;4009;4009;4009;1221;270;315;1769;1893;1841;1382;999;1047;1307;1422;448;670;670;592;379;245;95;241;486;1117;944;1621;921;1248;861;1430;998;2341;654;625;407
-44;'170;Colombia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;181;4;4;0;0;0;0;14;14
-44;'170;Colombia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;229;24;24;0;0;0;0;8;8
-44;'170;Colombia;1668;Pulp from fibres other than wood;5510;Production;t;16600;17000;21000;20000;30000;40000;35000;45000;62000;70000;70000;75000;80000;75000;54000;64000;68000;87000;82000;84000;88000;79000;75000;75000;88000;86000;92000;96000;96000;97000;101000;129000;131000;147000;142000;138000;141000;137000;144000;152000;149000;156000;170000;172000;175000;176000;177000;174000;167200;160207;159689;182774;178046;188109;197244;191549;188044;196486;188681;177000;150614;147900;168200
-44;'170;Colombia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;978;4208;1166;500;1100;600;900;1100;1400;600;1200;1368;982;982;982;1726;1300;1800;1244;1618;2387;3257;2864;2307;1106;1097;2761;1268;2349;2436;3993;3002
-44;'170;Colombia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;1927;985;732;1395;724;1072;1253;1050;819;1326;1502;1339;1339;1339;2319;2159;2545;2092;3832;5169;5155;4569;3475;1563;1791;4303;1889;3271;3600;8582;7182
-44;'170;Colombia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;600;1300;700;700;514;541;541;541;541;541;3;39;39;39;112;113;690;674;983;1506;448;3238;1233.16;291;170
-44;'170;Colombia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;569;426;541;449;409;366;252;252;252;252;252;39;39;39;39;55;91;553;516;727;1117;342;1768;917.49;282;154
-44;'170;Colombia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;70;8;93;8;68;109;51;77;58;113;98;122;45;13;45;35
-44;'170;Colombia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;2;33;23;69;204;89;115;91;117;125;122;54;22;102;63
-44;'170;Colombia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;481;433;508;581;742;184;184;141;418;739;573;671;841
-44;'170;Colombia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;246;195;240;280;364;90;90;85;193;313;261;354;534
-44;'170;Colombia;1669;Recovered paper;5510;Production;t;;;;;;;;;;6000;6000;75000;88000;88000;85000;102000;108000;114000;132000;160000;150000;163000;161000;172000;194000;202000;230000;248000;253000;201000;201000;314000;314000;314000;314000;364000;362000;334000;305000;355000;367000;413000;430000;481000;562000;581000;603000;645000;633000;699204;732818;719372;752560;751055;786674;777350;819211;887789;753017;687000;692000;745000;773489
-44;'170;Colombia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;13000;16000;21000;17000;17900;7600;8700;12800;9700;7400;8900;6200;14500;7500;6900;10600;10400;12200;7700;20800;29000;29000;38618;19616;27049;11700;53800;33800;27000;37000;120400;70000;87000;77467;76142;76142;89599;95390;104000;101000;112578;112529;88908;111328;119652;96521;121795;102286;135528;160653;124684;139889.1;153252;78720
-44;'170;Colombia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1011;1411;1874;1735;3146;1482;1171;1864;1269;1066;1793;1383;3279;1462;1907;1977;1667;2607;1444;2685;4008;4008;5505;2880;4636;2507;8625;5378;3960;5425;12605;10973;14650;13266;13340;13340;16569;21968;31000;22000;33845;38570;24508;29860;33017;26299;30738;28603;39775;44259;32491;47567.71;69108;26170
-44;'170;Colombia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;10;10;0;0;0;400;2000;2000;800;100;3299;1860;1860;1224;1224;3000;2065;1011;2656;3467;4953;1026;1267;416;874;545;507;407;2768.09;4075;610
-44;'170;Colombia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;1;0;0;0;30;286;204;206;67;753;346;346;215;215;448;667;221;644;792;1019;247;400;147;188;74;166;46;668.03;931;76
-44;'170;Colombia;1876;Paper and paperboard;5510;Production;t;64500;96400;105100;114100;123400;167500;144700;176500;203000;220000;236000;250000;278000;308000;258000;283000;281000;307000;325000;351000;407000;366000;366000;413000;446000;457000;488000;500000;500000;549000;576000;629000;595000;672000;690000;693000;704000;712000;733000;771000;771000;847000;864000;899000;919000;990000;1013000;1025000;1076000;1145000;1137575;1153277;1160416;1203289;1218948;1212254;1252903;1313109;1250177;1188194;1235246;1251702;1204366
-44;'170;Colombia;1876;Paper and paperboard;5610;Import quantity;t;78200;73300;55400;55900;54000;83100;77400;73700;78100;85400;90900;80400;82200;90400;87100;78300;74300;89500;126600;169600;212300;196700;152200;183800;167900;167000;163100;192100;187500;180900;192800;224702;265777;296038;332300;349300;392400;369000;362800;509700;334000;337100;382934;412790;412790;510514;573010;525300;464827;416875;502904;466712;469005;512300;438514;433048;458801;482356;496159;450802;526292.79;667655;462818
-44;'170;Colombia;1876;Paper and paperboard;5622;Import value;1000 USD;19914;18336;13006;12498;11540;16268;13992;15116;16184;19176;20600;19386;21855;38455;41458;39900;35900;40950;66977;82441;118273;123952;86103;152258;145806;138150;140527;166908;152078;156524;155700;157411;143091;170992;331916;297848;291782;276408;243254;256831;264470;226918;286556;326161;326161;445346;495840;524390;412146;352341;543224;430962;444016;491997;380564;398283;413941;491496;471597;395500;554637.35;865343;555360
-44;'170;Colombia;1876;Paper and paperboard;5910;Export quantity;t;;0;100;400;3300;4300;5400;5700;5000;4300;3900;5900;5900;3700;3500;3500;3500;3500;19400;25500;19800;14000;25200;33900;23700;22800;23500;15600;15800;15000;19900;34929;16564;24210;62200;63800;80800;75900;84600;129800;110400;142350;165161;174121;169521;169644;216913;199731;167538;185574;173770;165019;160039;133071;123314;107100;132481;130728;132889;110967;104533.23;81015;131057
-44;'170;Colombia;1876;Paper and paperboard;5922;Export value;1000 USD;;0;11;62;843;902;1125;1200;1128;1174;1830;2226;1227;1384;1155;1155;1155;1155;9201;10786;9904;5039;8304;14953;12500;12600;12800;15564;16695;11400;19500;27458;14450;20070;63655;51954;63677;63117;61116;74700;91193;110057;120443;148192;146972;166972;211024;237410;200117;237792;223984;190441;183213;153849;126696;95645;114702;119860;123278;88270;84280.22;88886;118222
-44;'170;Colombia;2042;Graphic papers;5510;Production;t;4000;16400;22400;19900;21000;33000;29000;37000;43400;43800;45000;55000;78000;57000;44000;58000;61000;65000;66000;71000;84000;70000;67000;97000;106000;101000;114000;120000;120000;128000;135000;187000;184000;211000;198000;206000;214000;208000;233000;241000;252000;272000;280000;285000;282000;303000;297000;309000;302000;318300;319710;326000;318657;327428;323000;320628;345509;325167;313999;229000;228584;201554;201965
-44;'170;Colombia;2042;Graphic papers;5610;Import quantity;t;68200;60500;45600;46600;47700;54100;51000;48700;56000;61700;68500;61800;55700;61100;53600;47900;52300;74300;73600;95300;101100;112500;91600;84600;82200;77700;68400;85500;74600;80400;92300;113525;132573;152137;141200;123200;198800;185200;150600;280900;159600;163700;166276;192287;192287;233590;214330;243500;194456;222752;200142;197562;185783;221100;175030;203842;206207;201028;155205;115415;129313.84;201560;150784
-44;'170;Colombia;2042;Graphic papers;5622;Import value;1000 USD;16104;13865;9157;8634;8208;9171;8483;8685;9954;10824;12600;12792;12357;22890;21996;20400;21400;30950;31466;41849;52553;78125;58603;51383;50493;46453;40281;58589;47352;58020;90000;88156;82298;95645;130091;112004;170448;156986;119946;144073;137081;125970;122910;148924;148924;208924;193652;258579;193635;210623;199958;193954;183738;190236;157675;176298;174599;189391;148387;104725;134688.82;280015;186346
-44;'170;Colombia;2042;Graphic papers;5910;Export quantity;t;;;0;200;1400;2200;3700;5400;4300;3400;3200;3300;3300;1100;900;900;900;900;2500;2500;1100;1000;5000;8500;5300;8800;7900;4800;4100;3600;6000;26486;12255;17757;39100;41500;59000;49100;46200;65000;55800;65000;85030;84628;84628;80299;102470;103731;73581;124581;82159;90666;96964;77373;74026;77068;86547;80426;86333;49578;43857.76;14998;30428
-44;'170;Colombia;2042;Graphic papers;5922;Export value;1000 USD;;;0;32;263;522;796;1100;908;792;1336;1462;463;620;391;391;391;391;1201;1786;904;820;4100;4753;3500;5800;5200;5723;4031;3631;6100;19458;9219;13039;44442;31440;46489;37654;32270;34009;42450;46287;62617;68755;68755;73167;104051;125195;107578;170512;94375;104258;101562;80415;71550;64271;71332;72683;78927;38719;33355.7;17125;30187
-44;'170;Colombia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-44;'170;Colombia;1671;Newsprint;5610;Import quantity;t;36600;45600;39600;41700;45300;51100;48700;42800;50400;59200;61200;60500;53600;49200;44400;36400;44300;60300;67000;71000;95000;94900;77900;81300;77500;75000;66600;83700;72800;75900;69600;63604;79909;94944;107400;81200;90800;85100;75000;125000;69000;66000;72334;76476;76476;84620;89570;94700;76759;93209;95540;87235;80879;105757;70391;61854;62816;54096;45404;31447;27212.59;33755;27118
-44;'170;Colombia;1671;Newsprint;5622;Import value;1000 USD;6189;7943;6705;6834;7349;8154;7752;6797;8086;9947;10000;12138;11228;16558;16608;13650;16700;22700;27600;26379;48567;58530;45205;46900;44700;41362;37438;54558;42000;49460;45000;39358;41134;49444;79243;61283;58657;54503;45496;46965;45978;39177;39915;45557;45557;60980;66158;73695;57426;64897;71213;64720;61298;59009;46109;36680;36983;35962;29320;17259;17057.75;27729;21749
-44;'170;Colombia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1538;92;600;0;0;0;0;0;0;0;649;649;649;649;649;649;277;48;2084;2084;107;429;230;0;1;87;22;20;184;250;124
-44;'170;Colombia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;1318;38;718;0;0;0;0;0;0;0;484;484;484;484;484;484;601;56;2089;2089;94;415;194;2;1;76;18;17;172;347;144
-44;'170;Colombia;1674;Printing and writing papers;5510;Production;t;4000;16400;22400;19900;21000;33000;29000;37000;43400;43800;45000;55000;78000;57000;44000;58000;61000;65000;66000;71000;84000;70000;67000;97000;106000;101000;114000;120000;120000;128000;135000;187000;184000;211000;197000;205000;214000;208000;233000;241000;252000;272000;280000;285000;282000;303000;297000;309000;302000;318300;319710;326000;318657;327428;323000;320628;345509;325167;313999;229000;228584;201554;201965
-44;'170;Colombia;1674;Printing and writing papers;5610;Import quantity;t;31600;14900;6000;4900;2400;3000;2300;5900;5600;2500;7300;1300;2100;11900;9200;11500;8000;14000;6600;24300;6100;17600;13700;3300;4700;2700;1800;1800;1800;4500;22700;49921;52664;57193;33800;42000;108000;100100;75600;155900;90600;97700;93942;115811;115811;148970;124760;148800;117697;129543;104602;110327;104904;115343;104639;141988;143391;146932;109801;83968;102101.24;167805;123666
-44;'170;Colombia;1674;Printing and writing papers;5622;Import value;1000 USD;9915;5922;2452;1800;859;1017;731;1888;1868;877;2600;654;1129;6332;5388;6750;4700;8250;3866;15470;3986;19595;13398;4483;5793;5091;2843;4031;5352;8560;45000;48798;41164;46201;50848;50721;111791;102483;74450;97108;91103;86793;82995;103367;103367;147944;127494;184884;136209;145726;128745;129234;122440;131227;111566;139618;137616;153429;119067;87466;117631.07;252286;164597
-44;'170;Colombia;1674;Printing and writing papers;5910;Export quantity;t;;;0;200;1400;2200;3700;5400;4300;3400;3200;3300;3300;1100;900;900;900;900;2500;2500;1100;1000;5000;8500;5300;8800;7900;4800;4100;3600;6000;26458;10717;17665;38500;41500;59000;49100;46200;65000;55800;65000;84381;83979;83979;79650;101821;103082;73304;124533;80075;88582;96857;76944;73796;77068;86546;80339;86311;49558;43673.76;14748;30304
-44;'170;Colombia;1674;Printing and writing papers;5922;Export value;1000 USD;;;0;32;263;522;796;1100;908;792;1336;1462;463;620;391;391;391;391;1201;1786;904;820;4100;4753;3500;5800;5200;5723;4031;3631;6100;19442;7901;13001;43724;31440;46489;37654;32270;34009;42450;46287;62133;68271;68271;72683;103567;124711;106977;170456;92286;102169;101468;80000;71356;64269;71331;72607;78909;38702;33183.7;16778;30043
-44;'170;Colombia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-44;'170;Colombia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17300;15000;33500;16500;17000;15007;19500;19500;22428;21960;16900;12461;17815;15380;12016;12294;10547;13810;10238;10387;11952;13090;5965;8567.97;11320;8234
-44;'170;Colombia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14357;11649;15813;12792;11075;9481;13600;13600;19889;19754;15712;11464;16816;14635;11759;11865;10446;12011;8194;7530;9670;11101;4719;6389.92;13794;9381
-44;'170;Colombia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;79;79;82;82;82;145;18;8;83;56;132;223;374;19;26;48;31;17;79;49
-44;'170;Colombia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;71;71;105;105;105;187;37;27;135;130;210;312;443;41;60;88;66;32;153;114
-44;'170;Colombia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;203000;207000;219000;229000;226000;229000;228000;245000;242000;257000;254000;265000;266658;276000;273195;286073;274000;279179;301602;299220;282685;210000;205591;182298;187256
-44;'170;Colombia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23800;14500;34400;20600;20700;13694;20113;20113;27658;39000;26000;23466;21973;23809;26336;22467;27992;20931;23419;32293;33405;28874;23035;27400.99;54427;58661
-44;'170;Colombia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27376;18766;26456;25055;23112;18372;24567;24567;31640;43286;39478;37285;35503;38697;39051;35586;40313;30635;33798;38539;45717;39182;30268;38245.36;77785;74612
-44;'170;Colombia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44300;42200;56500;51800;56000;72947;72400;72400;69026;88600;90000;61519;72977;76051;84548;93832;75122;72746;74198;84572;78010;84438;47831;41320.68;14488;28079
-44;'170;Colombia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33554;29005;30105;39393;42387;53186;58300;58300;61487;86544;100938;82055;91739;87496;96860;97582;77344;69831;61167;69138;70080;76863;37084;31129.32;16176;27751
-44;'170;Colombia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;30000;34000;33000;43000;54000;56000;54000;58000;55000;52000;48000;53300;53052;50000;45462;41355;49000;41449;43907;25947;31314;19000;22993;19256;14709
-44;'170;Colombia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;46100;88000;53500;60000;65241;76198;76198;98884;63800;105900;81770;89755;65413;71975;70143;76804;69898;108331;100711;101575;67837;54968;66132.28;102058;56771
-44;'170;Colombia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60750;44035;54839;53256;52606;55142;65200;65200;96415;64454;129694;87460;93407;75413;78424;74989;80468;68920;97626;91547;98042;68784;52479;72995.79;160707;80604
-44;'170;Colombia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;4000;8500;4000;9000;11358;11500;11500;10542;13139;13000;11640;51538;4016;3951;2969;1690;827;2496;1955;2303;1825;1696;2336.08;181;2176
-44;'170;Colombia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100;3265;3904;3057;3900;8885;9900;9900;11091;16918;23668;24735;78680;4763;5174;3756;2446;1213;2659;2152;2467;1958;1552;2022.38;449;2178
-44;'170;Colombia;1675;Other paper and paperboard;5510;Production;t;60500;80000;82700;94200;102400;134500;115700;139500;159600;176200;191000;195000;200000;251000;214000;225000;220000;242000;259000;280000;323000;296000;299000;316000;340000;356000;374000;380000;380000;421000;441000;442000;411000;461000;492000;487000;490000;504000;500000;530000;519000;575000;584000;614000;637000;687000;716000;716000;774000;826700;817865;827277;841759;875861;895948;891626;907394;987942;936178;959194;1006662;1050148;1002401
-44;'170;Colombia;1675;Other paper and paperboard;5610;Import quantity;t;10000;12800;9800;9300;6300;29000;26400;25000;22100;23700;22400;18600;26500;29300;33500;30400;22000;15200;53000;74300;111200;84200;60600;99200;85700;89300;94700;106600;112900;100500;100500;111177;133204;143901;191100;226100;193600;183800;212200;228800;174400;173400;216658;220503;220503;276924;358680;281800;270371;194123;302762;269150;283222;291200;263484;229206;252594;281328;340954;335387;396978.95;466095;312034
-44;'170;Colombia;1675;Other paper and paperboard;5622;Import value;1000 USD;3810;4471;3849;3864;3332;7097;5509;6431;6230;8352;8000;6594;9498;15565;19462;19500;14500;10000;35511;40592;65720;45827;27500;100875;95313;91697;100246;108319;104726;98504;65700;69255;60793;75347;201825;185844;121334;119422;123308;112758;127389;100948;163646;177237;177237;236422;302188;265811;218511;141718;343266;237008;260278;301761;222889;221985;239342;302105;323210;290775;419948.52;585328;369014
-44;'170;Colombia;1675;Other paper and paperboard;5910;Export quantity;t;;0;100;200;1900;2100;1700;300;700;900;700;2600;2600;2600;2600;2600;2600;2600;16900;23000;18700;13000;20200;25400;18400;14000;15600;10800;11700;11400;13900;8443;4309;6453;23100;22300;21800;26800;38400;64800;54600;77350;80131;89493;84893;89345;114443;96000;93957;60993;91611;74353;63075;55698;49288;30032;45934;50302;46556;61389;60675.46;66017;100629
-44;'170;Colombia;1675;Other paper and paperboard;5922;Export value;1000 USD;;0;11;30;580;380;329;100;220;382;494;764;764;764;764;764;764;764;8000;9000;9000;4219;4204;10200;9000;6800;7600;9841;12664;7769;13400;8000;5231;7031;19213;20514;17188;25463;28846;40691;48743;63770;57826;79437;78217;93805;106973;112215;92539;67280;129609;86183;81651;73434;55146;31374;43370;47177;44351;49551;50924.52;71761;88035
-44;'170;Colombia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;19000;15000;22000;22000;29000;34000;45000;54000;45000;44000;54000;61000;59000;71000;73000;73000;82000;90000;86000;87000;98000;101000;110000;113000;129000;125000;132000;129000;156000;161000;165000;163000;191000;195000;205000;213000;216400;233454;234380;253928;257481;255000;237308;245546;304954;241111;202000;198000;213000;207000
-44;'170;Colombia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;3000;3400;7300;3600;6200;9700;7000;7184;8500;8500;800;5500;3900;2117;5027;6774;4738;3954;4468;4911;1638;3879;6317;13445;5744;8191.85;13716;16497
-44;'170;Colombia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1258;4179;3748;6551;2575;3862;10069;8750;7385;8552;8552;1719;6027;4711;4035;8515;13537;10508;9876;8242;7945;2570;6488;10019;20287;9260;16257.42;28837;24636
-44;'170;Colombia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;3100;8200;9500;5000;2309;2309;6200;4100;4400;10200;10600;13900;11800;14000;23572;28211;28211;38341;32390;19400;23732;22352;24400;26010;21493;14333;11022;5489;6556;4916;3796;7744;5482.31;2362;6467
-44;'170;Colombia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;2593;2359;2359;6000;5000;2196;2196;5727;3393;3157;9240;8078;6723;9887;12040;18462;28439;28439;40490;36547;29430;36039;32407;35623;39720;39321;26070;17078;7272;8322;6592;4714;8970;9121.62;6492;11017
-44;'170;Colombia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347000;346000;366000;360000;386000;392000;415000;437000;459000;486000;473000;502000;533300;518229;534695;539197;566072;583332;592376;600657;632559;642859;676194;730677;782667;739315
-44;'170;Colombia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166400;198900;202100;151900;146400;186141;192942;192942;250017;314900;232800;259052;176988;266486;250444;263756;274099;246979;213063;234811;259005;316033;320704;378229.95;441241;286996
-44;'170;Colombia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96331;105899;90552;98094;73853;121707;137891;137891;193967;204041;214253;204525;119794;268690;212421;228501;278027;200895;203822;217958;274694;290171;271821;392458.38;543346;333408
-44;'170;Colombia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12500;21400;28600;25800;41350;49018;48232;43632;39111;70160;65700;69475;38353;51362;46666;40469;39526;36427;23312;38248;44480;41764;52654;55167.15;63554;93562
-44;'170;Colombia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7916;11408;12183;12707;19730;22870;26098;24878;25239;42350;52503;54794;33621;49557;44911;41302;41027;31585;19283;29577;35107;33834;35414;41767.9;65156;76622
-44;'170;Colombia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;208000;189000;191000;193000;206000;215000;221000;253000;227000;229000;232000;252000;257000;262000;266000;266000;284000;296000;325000;306000;342000;367000;363000;352000;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;10000;12800;9800;9300;6300;29000;26400;25000;22100;23700;22400;18600;26500;29300;33500;30400;22000;15200;53000;59500;87600;62300;44800;77600;64900;70600;75500;86200;93600;80400;80400;82877;100000;100000;143200;177900;177000;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;3810;4471;3849;3864;3332;7097;5509;6431;6230;8352;8000;6594;9498;15565;19462;19500;14500;10000;35511;22411;35030;19851;13600;36092;30004;34791;40884;52047;55411;45668;35700;38462;30000;30000;129445;117438;86106;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;100;200;1900;2100;1700;300;700;900;700;2600;2600;2600;2600;2600;2600;2600;16900;23000;18700;13000;20200;25400;18400;14000;15600;7000;8600;3200;4400;3443;2000;4144;16900;13800;15400;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;11;30;580;380;329;100;220;382;494;764;764;764;764;764;764;764;8000;9000;9000;4219;4204;10200;9000;6800;7600;7248;10305;5410;7400;3000;3035;4835;13486;10040;9192;;;;;;;;;;;;;;;;;;;;;;;;;;
-44;'170;Colombia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;238000;245000;252000;271000;282000;291000;300000;323000;348000;335000;373000;393300;374005;389695;402883;427557;447332;464697;463359;506112;515553;520000;569677;605667;603315
-44;'170;Colombia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71600;71600;34100;51800;56300;72109;70204;70204;112796;121000;77200;122727;85785;81811;76157;85762;84436;77256;68214;92222;148270;219372;224002;252486.93;252589;186616
-44;'170;Colombia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32159;30165;11445;25126;22550;31529;32360;32360;61563;66335;51358;61526;47707;55826;49278;60187;60611;51766;43137;58176;111924;145402;128462;195574.47;223926;142703
-44;'170;Colombia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;18400;18700;21400;31000;28928;24800;24800;20858;34460;21800;42002;10148;2381;6304;4145;3318;3020;9843;15826;15981;19297;30084;29238.33;24512;49602
-44;'170;Colombia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4585;9486;8639;9847;15000;11494;11000;11000;9107;15855;13226;22876;4820;2777;5537;4346;3623;3279;6484;10342;10690;12292;17001;17406.53;19857;32618
-44;'170;Colombia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;46000;48000;41000;41000;42000;49000;51000;59000;56000;48000;47000;61000;59816;61000;56305;57043;55000;61898;94889;79322;79322;82000;91000;97000;63000
-44;'170;Colombia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86400;118300;151000;87200;77300;93856;95098;95098;109890;180200;141400;118178;67870;157823;147872;154190;155492;136354;114350;110011;81951;67322;66381;86311.05;131316;69465
-44;'170;Colombia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53051;65306;66442;60048;38497;72768;83510;83510;105842;121618;144038;119328;39863;174751;125577;134246;177720;113626;126630;119896;123494;105850;106127;143545.28;239165;136000
-44;'170;Colombia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1100;3800;2600;3000;2699;4336;4336;6453;25600;26300;3425;257;15547;8737;7515;9333;8439;1160;1528;3450;1808;1704;6960.11;9969;3469
-44;'170;Colombia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764;577;1077;1508;1452;1938;3700;3700;5632;15190;20039;5899;235;13175;6237;5634;9720;5123;2300;2502;3553;2706;2357;8695.76;16632;5675
-44;'170;Colombia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;21000;30000;28000;30000;26000;27000;30000;30000;30000;43000;24000;66000;73376;72000;68260;64661;66000;51918;28546;31286;32145;59194;49000;60000;57000
-44;'170;Colombia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;5800;12800;8900;10800;12892;17394;17394;23931;10500;10500;14879;21545;24486;23349;20731;30943;30272;27970;29801;26606;27024;28530;37326.8;52689;28810
-44;'170;Colombia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9058;8005;10692;11730;11806;13486;16891;16891;23862;13219;15307;20562;30778;35980;34595;31105;36414;32260;31567;37171;36801;36675;35493;51277.64;75050;51946
-44;'170;Colombia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;1400;4300;800;4000;8796;13096;13096;11800;10100;17600;23834;27852;33423;31623;28807;26641;24776;11930;19478;22479;18031;18098;14357.45;23095;37126
-44;'170;Colombia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095;906;1797;761;1778;6245;9398;9398;10500;11305;19238;25783;28480;33592;33123;31312;27449;23013;10171;15807;19205;16801;13897;11582.92;21200;34894
-44;'170;Colombia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;41000;43000;39000;44000;42000;48000;56000;47000;52000;47000;58000;13000;11032;12000;11749;16811;15000;13863;13863;15839;15839;15000;21000;20000;16000
-44;'170;Colombia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3200;4200;4000;2000;7284;10246;10246;3400;3200;3700;3268;1788;2366;3066;3073;3228;3097;2529;2777;2178;2315;1791;2105.18;4647;2105
-44;'170;Colombia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063;2423;1973;1190;1000;3924;5130;5130;2700;2869;3550;3109;1446;2133;2971;2963;3282;3243;2488;2715;2475;2244;1739;2061;5205;2759
-44;'170;Colombia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;500;1800;1000;3350;8595;6000;1400;0;0;0;214;96;11;2;2;234;192;379;1416;2570;2628;2768;4611.26;5978;3365
-44;'170;Colombia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;439;670;591;1500;3193;2000;780;0;0;0;236;86;13;14;10;235;170;328;926;1659;2035;2159;4082.69;7467;3435
-44;'170;Colombia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;24000;10000;12000;5000;7000;10000;14000;16000;24000;26000;30000;27000;40000;41000;41000;41000;55000;55000;31000;18000;21000;24000;14000;25000;28000;29000;32000;30000;33000;31000;34000;37000;37000;35000;38000;59000;77000;66182;58202;48634;52308;57616;61942;61191;50429;52208;81000;77985;54481;56086
-44;'170;Colombia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;14800;23600;21900;15800;21600;20800;18700;19200;20400;19300;20100;20100;28300;33204;43901;47000;45200;13200;10100;9700;20500;12800;20000;23333;19061;19061;26107;38280;45100;9202;12108;29502;13968;15512;12633;11594;14505;13904;16006;11476;8939;10557.15;11138;8541
-44;'170;Colombia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;18181;30690;25976;13900;64783;65309;56906;59362;56272;49315;52836;30000;30793;30793;45347;71122;64227;31480;16540;14834;18344;19226;18345;34554;30794;30794;40736;92120;46847;9951;13409;61039;14079;21901;15492;14049;15593;14896;17392;12752;9694;11232.72;13145;10970
-44;'170;Colombia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;2000;4100;6400;22300;17000;22000;7541;13050;13050;11893;11893;10900;750;288;15849;1677;1113;1839;1839;1231;1130;906;996;991;26;101;600
-44;'170;Colombia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7081;4839;8307;9360;21785;26149;32000;16494;24900;24900;28076;28076;30282;1706;1252;44429;1552;1028;6337;6483;4819;5471;5478;5803;5167;35;113;396
-44;'170;Colombia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80424;83932;85653;63871;92926;98804;75135
-44;'170;Colombia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49667;60350;52900;46627;74598;77143;77573
-44;'170;Colombia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;941;1042;736;792;1226;463
-44;'170;Colombia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7030;7763;4392;4102;6435;9434;5437
-44;'170;Colombia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918;737;956;658;662;1091;320
-44;'170;Colombia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;17;18;44;44;269;132
-44;'170;Colombia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;204;86;78;130;135;143
-44;'170;Colombia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7009;7746;4374;4058;6391;9165;5305
-44;'170;Colombia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1601;1695;2843;3477;4148;9248;8200
-44;'170;Colombia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;1219;781;692;895;831;325
-44;'170;Colombia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3336;3306;3400;2773;4190;5585;4208
-44;'170;Colombia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1011;1431;1130;809;1620;1128;1360
-44;'170;Colombia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11686;11217;11903;9051;10949;7976;6761
-44;'170;Colombia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3134;1943;2895;1315;2758;460;652
-44;'170;Colombia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16
-44;'170;Colombia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8
-44;'170;Colombia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;57
-44;'170;Colombia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;122
-44;'170;Colombia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55428;59993;59184;41673;64480;56030;47666
-44;'170;Colombia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32794;37692;40999;39270;61877;64213;68876
-44;'170;Colombia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;514;239;22;121;7;60
-44;'170;Colombia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;65;69;1;138;60;192
-44;'170;Colombia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6682;6266;7042;6139;8246;18732;7777
-44;'170;Colombia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5160;10237;2634;438;875;1017;731
-44;'170;Colombia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125356;144445;147670;109714;150182;188527;122389
-44;'170;Colombia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141862;146951;158730;154149;176481;230711;204092
-44;'170;Colombia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2208;2703;2646;1477;1969;4701;1900
-44;'170;Colombia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;58;19;21;11;7;192
-44;'170;Colombia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56281;60931;65323;46363;62484;99821;56299
-44;'170;Colombia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47024;43534;45457;47996;61470;81107;74687
-44;'170;Colombia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5337;5143;7953;5212;6880;12448;8243
-44;'170;Colombia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43337;43024;45382;50141;43524;78170;71586
-44;'170;Colombia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24782;32216;25677;20802;35756;53739;40684
-44;'170;Colombia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13534;15984;25453;21222;34653;52129;41763
-44;'170;Colombia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36748;43452;46071;35860;43093;17818;15263
-44;'170;Colombia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37894;44351;42419;34769;36823;19298;15864
-45;'174;Comoros;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186;9735;9281;8007;10597;17052.78;20664.73
-45;'174;Comoros;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;54;41;35;601;397;53
-45;'174;Comoros;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1249;3989;2023;2021;2019;1407;377;266;266;266;266;266;266;266;266;266;266;266;1158;1495;1062;1788;1707;1312;884;1268;2523;2233;2853;3144;3856.78;3156.73
-45;'174;Comoros;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;0;0;0;53;0;7;56;0;15;19;578;21;46
-45;'174;Comoros;1861;Roundwood;5516;Production;m3;43368;45231;47174;49200;51313;53517;55815;58213;60713;63320;63570;65710;68124;68364;74223;83931;87368;90875;93567;96421;99792;102388;105345;108518;112252;116627;121346;125414;132009;145174;150333;156511;162865;169460;193163;202259;207016;212774;219399;225737;231560;237565;243756;250140;256722;263105;269676;276439;283400;290563;297390;304404;311609;319012;326617;333025;339580;346285;353142;360155;367261;374528;381957
-45;'174;Comoros;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;412;412;412;412;193;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;328;147;43;143;732;1690;277;2362.58;2121.58
-45;'174;Comoros;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;81;81;81;81;42;0;0;0;0;0;0;0;0;0;0;0;20;22;0;5;0;27;11;13;14;167;506;188;694;458
-45;'174;Comoros;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0
-45;'174;Comoros;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;139;629;1199;275;2360.58;2068.58
-45;'174;Comoros;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;12;115;248;186;692;448
-45;'174;Comoros;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-45;'174;Comoros;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-45;'174;Comoros;1863;Roundwood, non-coniferous;5516;Production;m3;43368;45231;47174;49200;51313;53517;55815;58213;60713;63320;63570;65710;68124;68364;74223;83931;87368;90875;93567;96421;99792;102388;105345;108518;112252;116627;121346;125414;132009;145174;150333;156511;162865;169460;193163;202259;207016;212774;219399;225737;231560;237565;243756;250140;256722;263105;269676;276439;283400;290563;297390;304404;311609;319012;326617;333025;339580;346285;353142;360155;367261;374528;381957
-45;'174;Comoros;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;4;103;491;2;2;53
-45;'174;Comoros;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;52;258;2;2;10
-45;'174;Comoros;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-45;'174;Comoros;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-45;'174;Comoros;1864;Wood fuel;5516;Production;m3;43368;45231;47174;49200;51313;53517;55815;58213;60713;63320;63570;65710;68124;68364;74223;83931;87368;90875;93567;96421;99792;102388;105345;108518;112252;116627;121346;125414;132009;137674;142833;149011;155365;161960;170863;179209;183616;188624;194749;201087;206910;212915;219106;225490;232072;238455;245026;251789;258750;265913;272740;279754;286959;294362;301967;308375;314930;321635;328492;335505;342611;349878;357307
-45;'174;Comoros;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;436;1013;277;276.58;276.58
-45;'174;Comoros;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;159;505;104;104;104
-45;'174;Comoros;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;522;275;274.58;274.58
-45;'174;Comoros;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;247;102;102;102
-45;'174;Comoros;1628;Wood fuel, non-coniferous;5516;Production;m3;43368;45231;47174;49200;51313;53517;55815;58213;60713;63320;63570;65710;68124;68364;74223;83931;87368;90875;93567;96421;99792;102388;105345;108518;112252;116627;121346;125414;132009;137674;142833;149011;155365;161960;170863;179209;183616;188624;194749;201087;206910;212915;219106;225490;232072;238455;245026;251789;258750;265913;272740;279754;286959;294362;301967;308375;314930;321635;328492;335505;342611;349878;357307
-45;'174;Comoros;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;491;2;2;2
-45;'174;Comoros;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;258;2;2;2
-45;'174;Comoros;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-45;'174;Comoros;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-45;'174;Comoros;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;7500;7500;7500;7500;22300;23050;23400;24150;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650
-45;'174;Comoros;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;369;369;369;369;193;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;328;147;43;143;296;677;0;2086;1845
-45;'174;Comoros;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;73;73;73;73;42;0;0;0;0;0;0;0;0;0;0;0;20;22;0;5;0;27;11;13;14;8;1;84;590;354
-45;'174;Comoros;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0
-45;'174;Comoros;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;176;176;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;320;143;25;139;289;677;0;2086;1794
-45;'174;Comoros;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;20;22;0;5;0;24;10;11;12;3;1;84;590;346
-45;'174;Comoros;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;176;176;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;320;143;25;139;289;677;0;2086;1794
-45;'174;Comoros;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;20;22;0;5;0;24;10;11;12;3;1;84;590;346
-45;'174;Comoros;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;7500;7500;7500;7500;22300;23050;23400;24150;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650;24650
-45;'174;Comoros;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;193;193;193;193;193;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;4;18;4;7;0;0;0;51
-45;'174;Comoros;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;42;42;42;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;2;2;5;0;0;0;8
-45;'174;Comoros;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0
-45;'174;Comoros;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;4;1;3;7;0;0;0;0
-45;'174;Comoros;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;0;1;5;0;0;0;0
-45;'174;Comoros;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0
-45;'174;Comoros;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;193;193;193;193;193;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;1;0;0;0;0;51
-45;'174;Comoros;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;42;42;42;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;0;0;0;0;8
-45;'174;Comoros;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;7500;7500;7500;7500;7900;8100;8300;8500;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650
-45;'174;Comoros;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;7500;7500;7500;7500;7900;8100;8300;8500;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650;8650
-45;'174;Comoros;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14400;14950;15100;15650;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-45;'174;Comoros;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14400;14950;15100;15650;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-45;'174;Comoros;1630;Wood charcoal;5510;Production;t;5554;5815;6089;6375;6674;6988;7317;7660;8020;8397;8435;8762;9125;9164;10020;11451;11954;12463;12865;13292;13810;14212;14666;15153;15723;16396;17115;17742;18751;19620;20412;21360;22335;23354;24725;26005;26699;27486;28446;29440;30360;31309;32288;33298;34339;34339;36400;37500;38572;39710;40804;41928;43083;44270;45490;46529;47591;48678;49789;50926;52077;53253;54456
-45;'174;Comoros;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;8;1;0;0
-45;'174;Comoros;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;6;1;0;0
-45;'174;Comoros;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;32;30;30
-45;'174;Comoros;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;19;21;21
-45;'174;Comoros;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;43;47;29;4
-45;'174;Comoros;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;17;47;12;1
-45;'174;Comoros;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;43;47;29;4
-45;'174;Comoros;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;17;47;12;1
-45;'174;Comoros;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;3;18;18.11;18.11
-45;'174;Comoros;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;9;12;12.73;12.73
-45;'174;Comoros;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;3;18;18.11;18.11
-45;'174;Comoros;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;9;12;12.73;12.73
-45;'174;Comoros;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;500;500;500
-45;'174;Comoros;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1354;809;1360;1360;1360;1023;300;500;500;500;500;500;500;500;500;500;500;500;1821;1990;3179;3160;3004;2842;1006;4163;7429;65;744;1843;5405;3883
-45;'174;Comoros;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;195;484;484;484;413;62;105;105;105;105;105;105;105;105;105;105;105;551;675;485;1018;1021;770;270;715;1199;20;369;532;989;553
-45;'174;Comoros;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;7;0;0;0;109;0;31
-45;'174;Comoros;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;0;0;0;53;0;7;8;0;15;0;559;0;25
-45;'174;Comoros;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;290;577;577;577;240;300;500;500;500;500;500;500;500;500;500;500;500;1821;1990;3179;3160;3004;2748;928;4003;7421;56;736;475;5000;3880
-45;'174;Comoros;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;48;120;120;120;49;62;105;105;105;105;105;105;105;105;105;105;105;418;495;482;859;758;714;187;600;1192;16;182;148;820;543
-45;'174;Comoros;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0;0;0
-45;'174;Comoros;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-45;'174;Comoros;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;500;500;500
-45;'174;Comoros;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;861;519;783;783;783;783;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;94;78;160;8;9;8;1368;405;3
-45;'174;Comoros;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;147;364;364;364;364;0;0;0;0;0;0;0;0;0;0;0;0;133;180;3;159;263;56;83;115;7;4;187;384;169;10
-45;'174;Comoros;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;7;0;0;0;109;0;31
-45;'174;Comoros;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;0;0;0;53;0;6;8;0;15;0;559;0;25
-45;'174;Comoros;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;206;206;206;206;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;124;42;36;169;383;0;139;0;0
-45;'174;Comoros;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;75;75;75;75;0;0;0;0;0;0;0;0;0;0;0;0;269;211;87;65;0;56;22;22;90;155;219;367;125;0
-45;'174;Comoros;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1696;100;1268;1266;1266;263;500;150;150;150;150;150;150;150;150;150;150;150;150;150;150;1620;150;598;864;727;2460;2724;2378;4235;2255.77;2866
-45;'174;Comoros;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;73;650;648;648;107;186;80;80;80;80;80;80;80;80;80;80;80;237;506;409;619;605;378;500;437;1139;1258;1304;1673;1459.06;1524
-45;'174;Comoros;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;129;0;0;0;0;0;0
-45;'174;Comoros;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;48;0;0;0;0;0;0
-45;'174;Comoros;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520;51;1153;1153;1153;150;500;150;150;150;150;150;150;150;150;150;150;150;150;150;150;1620;150;598;864;727;2460;2664;2378;4198;2222;2720
-45;'174;Comoros;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;42;607;607;607;66;186;80;80;80;80;80;80;80;80;80;80;80;237;506;409;619;605;378;500;437;1139;1248;1304;1641;1328;1372
-45;'174;Comoros;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;129;0;0;0;0;0;0
-45;'174;Comoros;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;48;0;0;0;0;0;0
-45;'174;Comoros;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;39;72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;22;17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;36;33;2
-45;'174;Comoros;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;32;131;3
-45;'174;Comoros;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;10;43;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;0;1;0.77;144
-45;'174;Comoros;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;9;26;24;24;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0.06;149
-45;'174;Comoros;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129
-45;'174;Comoros;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149
-45;'174;Comoros;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;41;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;0;1;0.77;15
-45;'174;Comoros;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;24;24;24;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0.06;0
-45;'174;Comoros;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;56
-45;'174;Comoros;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11
-45;'174;Comoros;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-45;'174;Comoros;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-45;'174;Comoros;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-45;'174;Comoros;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-45;'174;Comoros;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-45;'174;Comoros;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55
-45;'174;Comoros;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11
-45;'174;Comoros;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;4939;530;530;530;530;118;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;445;503;230;374;515
-45;'174;Comoros;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;3684;731;731;731;731;87;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;435;423;324;565;597
-45;'174;Comoros;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;227;424;424;424;424;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;194;277;117;153;396
-45;'174;Comoros;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;344;650;650;650;650;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;216;210;163;143;435
-45;'174;Comoros;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;57;60;12;55;106
-45;'174;Comoros;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;80;70;23;11;6
-45;'174;Comoros;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;215;412;412;412;412;;;;;;;;;;;;;;;;;;;;;;137;217;105;98;290
-45;'174;Comoros;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;338;644;644;644;644;;;;;;;;;;;;;;;;;;;;;;136;140;140;132;429
-45;'174;Comoros;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-45;'174;Comoros;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-45;'174;Comoros;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;217;105;98;278
-45;'174;Comoros;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;140;140;132;408
-45;'174;Comoros;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10
-45;'174;Comoros;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19
-45;'174;Comoros;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-45;'174;Comoros;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;4712;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;251;226;113;221;119
-45;'174;Comoros;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;3340;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;219;213;161;422;162
-45;'174;Comoros;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;7;12;27
-45;'174;Comoros;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;13;8;82;44
-45;'174;Comoros;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;148;25;191;76
-45;'174;Comoros;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;106;37;263;83
-45;'174;Comoros;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;3;10;10
-45;'174;Comoros;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;18;3;10;11
-45;'174;Comoros;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;144;22;181;66
-45;'174;Comoros;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;88;34;253;72
-45;'174;Comoros;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-45;'174;Comoros;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;44;74;81;18;16
-45;'174;Comoros;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;55;94;116;77;35
-45;'174;Comoros;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981;5916;5961;4014;6436;9472;12329
-45;'174;Comoros;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;35;5;12;22;7;4
-45;'174;Comoros;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;287;501;177;446;748;393
-45;'174;Comoros;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;254;487;163;434;434;3
-45;'174;Comoros;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;33;14;14;12;314;390
-45;'174;Comoros;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;14;3;0;9;33
-45;'174;Comoros;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;16;3;12;7;6
-45;'174;Comoros;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;4
-45;'174;Comoros;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;632;597;360;472;217;374
-45;'174;Comoros;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-45;'174;Comoros;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3679;4263;3772;2481;3774;8431;11218
-45;'174;Comoros;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;35;1;11;21;7;0
-45;'174;Comoros;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;720;1061;990;1732;60;305
-45;'174;Comoros;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0
-45;'174;Comoros;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937;1296;1087;1140;1017;3724;5179
-45;'174;Comoros;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;21;4;1;369;3
-45;'174;Comoros;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-45;'174;Comoros;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;8;9;4;2;15;37
-45;'174;Comoros;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;130;119;195;223;374;337
-45;'174;Comoros;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;1;1;1
-45;'174;Comoros;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;257;354;200;182;540;786
-45;'174;Comoros;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;1
-45;'174;Comoros;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677;901;605;741;610;2795;4019
-45;'174;Comoros;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;19;2;0;366;1
-46;'178;Congo;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37478;31859;31478;30044;31381.72;40318.58;64054.12
-46;'178;Congo;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488993;521451;489881;382468;430594;394204.45;470081.45
-46;'178;Congo;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1755;627;1969;982;1031;871;2805;3164;3016;431;498;582;701;701;701;701;1701;1580;1490;1541;2980;2980;3480;3080;3762;3509;7316;9251;4688;4300;3880;3939;1082;707;817;1242;1473;1768;1898;2172;1763;2266;5370;6748;6774;6679;6490;8805;10902;6793;8758;14532;9440;13885;10246;10254;10485;10902;8276;9598;8284.72;14699.58;26461.12
-46;'178;Congo;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;12560;13285;14774;20501;20761;20223;20074;25465;29584;28700;29600;28800;32500;37020;22095;31872;38054;41283;41011;84439;54787;46761;41857;47767;48821;62501;94315;117604;142854;187504;141031;160991;118736;123270;126053;105462;135420;122630;92393;105041;309670;187105;199617;217981;274937;275155;323304;339154;244866;347900;442151;410832;386161;503673;436213;388250;486693;483911;478765;379862;426308;388814.45;445280.45
-46;'178;Congo;1861;Roundwood;5516;Production;m3;1345279;1349059;1491866;1615701;1600565;1688456;1661376;1791324;1843300;1843306;1882566;1808276;1765449;1550817;1412446;1506381;1557284;1611908;1625612;1739981;1677725;1630331;1631982;1711548;1716190;1892703;2122429;2465350;2513297;2571745;2151001;2317973;2347587;2355498;2539969;2248308;2745331;2667167;2389532;2515140;2795297;3095715;3283401;3456000;3550000;3398926;3614948;3457693;3294598;3371314;3448230;3702724;3633672;3539990;3589685;3655111;3756848;3926902;3581881;3484298;3506935;3529925;3553273
-46;'178;Congo;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;72;873;0;0;1459;2541;14;132;5;21;0;811;24;0;2;770;848
-46;'178;Congo;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;19;99;0;0;298;761;1;15;1;14;0;228;8;0;82;187;197
-46;'178;Congo;1861;Roundwood;5916;Export quantity;m3;321300;360200;425000;536900;526000;556000;504400;569600;609000;592400;602700;472900;312000;277000;128000;144000;155000;166700;173100;280600;220600;202000;188300;250300;275200;287000;565900;881700;861100;731715;567625;627712;436339;258992;254000;258300;496000;638000;211000;281834;481438;455400;776013;844020;742243;659000;648795;630000;514248;607500;789196;774531;661000;790000;641710;786302;928615;889750;886663;622117;660133;596423;789423
-46;'178;Congo;1861;Roundwood;5922;Export value;1000 USD;11110;11866;13765;18857;17816;17322;16538;20091;21896;21300;21700;17000;17500;25760;12160;18780;18900;20201;21066;44591;28501;21200;19553;26032;28716;39460;64422;91656;110779;153433;124665;128914;80785;80009;79831;65136;107444;76358;55667;73456;234942;113850;149640;166932;218114;204290;212363;243180;166052;268915;352371;326336;269286;316513;268235;229290;312948;298387;302232;202527;237165;220138;273208
-46;'178;Congo;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3000;3000;3000;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;810;5;0;2;195;0
-46;'178;Congo;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;223;3;0;82;46;0
-46;'178;Congo;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;2128;1117;133;423;423
-46;'178;Congo;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;1362;702;214;214;214
-46;'178;Congo;1863;Roundwood, non-coniferous;5516;Production;m3;1345279;1349059;1491866;1615701;1600565;1688456;1661376;1791324;1843300;1843306;1882566;1808276;1765449;1550817;1412446;1506381;1557284;1611908;1625612;1739981;1677725;1630331;1631982;1711548;1716190;1892703;2122429;2465350;2513297;2571745;2151001;2317973;2347587;2355498;2539969;2248308;2745331;2667167;2389532;2515140;2795297;3095715;3283401;3456000;3550000;3398926;3614948;3457693;3294598;3371314;3448230;3699724;3630672;3536990;3589685;3655111;3756848;3926902;3581881;3484298;3506935;3529925;3553273
-46;'178;Congo;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;19;0;0;575;848
-46;'178;Congo;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;0;0;141;197
-46;'178;Congo;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;928615;889720;884535;621000;660000;596000;789000
-46;'178;Congo;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312948;298385;300870;201825;236951;219924;272994
-46;'178;Congo;1864;Wood fuel;5516;Production;m3;826279;831059;835866;840701;845565;850456;855376;860324;865300;870306;878566;885276;893449;899817;905446;914381;946284;947908;940612;921981;911725;885331;883982;883548;896190;922703;937429;949350;960297;973745;975001;988973;1009587;1036498;1068969;1084308;1111331;1124167;1138532;1153140;1169297;1185715;1202401;1448000;1369000;1255790;1275300;1295100;1315291;1335790;1357017;1378601;1400549;1422867;1445562;1465988;1486725;1507779;1529156;1550861;1573498;1596488;1619836
-46;'178;Congo;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1628;Wood fuel, non-coniferous;5516;Production;m3;826279;831059;835866;840701;845565;850456;855376;860324;865300;870306;878566;885276;893449;899817;905446;914381;946284;947908;940612;921981;911725;885331;883982;883548;896190;922703;937429;949350;960297;973745;975001;988973;1009587;1036498;1068969;1084308;1111331;1124167;1138532;1153140;1169297;1185715;1202401;1448000;1369000;1255790;1275300;1295100;1315291;1335790;1357017;1378601;1400549;1422867;1445562;1465988;1486725;1507779;1529156;1550861;1573498;1596488;1619836
-46;'178;Congo;1865;Industrial roundwood;5516;Production;m3;519000;518000;656000;775000;755000;838000;806000;931000;978000;973000;1004000;923000;872000;651000;507000;592000;611000;664000;685000;818000;766000;745000;748000;828000;820000;970000;1185000;1516000;1553000;1598000;1176000;1329000;1338000;1319000;1471000;1164000;1634000;1543000;1251000;1362000;1626000;1910000;2081000;2008000;2181000;2143136;2339648;2162593;1979307;2035524;2091213;2324123;2233123;2117123;2144123;2189123;2270123;2419123;2052725;1933437;1933437;1933437;1933437
-46;'178;Congo;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;72;873;0;0;1459;2541;14;132;5;21;0;811;24;0;2;770;848
-46;'178;Congo;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;19;99;0;0;298;761;1;15;1;14;0;228;8;0;82;187;197
-46;'178;Congo;1865;Industrial roundwood;5916;Export quantity;m3;321300;360200;425000;536900;526000;556000;504400;569600;609000;592400;602700;472900;312000;277000;128000;144000;155000;166700;173100;280600;220600;202000;188300;250300;275200;287000;565900;881700;861100;731715;567625;627712;436339;258992;254000;258300;496000;638000;211000;281834;481438;455400;776013;844020;742243;659000;648795;630000;514248;607500;789196;774531;661000;790000;641710;786302;928615;889750;886663;622117;660133;596423;789423
-46;'178;Congo;1865;Industrial roundwood;5922;Export value;1000 USD;11110;11866;13765;18857;17816;17322;16538;20091;21896;21300;21700;17000;17500;25760;12160;18780;18900;20201;21066;44591;28501;21200;19553;26032;28716;39460;64422;91656;110779;153433;124665;128914;80785;80009;79831;65136;107444;76358;55667;73456;234942;113850;149640;166932;218114;204290;212363;243180;166052;268915;352371;326336;269286;316513;268235;229290;312948;298387;302232;202527;237165;220138;273208
-46;'178;Congo;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;0;0;3;0;0;0;0;0;0;810;5;0;2;195;0
-46;'178;Congo;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;0;2;0;0;0;0;0;0;223;3;0;82;46;0
-46;'178;Congo;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61284;96831;96831;96831;19392;12800;0;0;0;0;0;0;0;0;0;0;0;0;0;1162;1480;33;0;0;0;0;0;0;30;2128;1117;133;423;423
-46;'178;Congo;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3995;5761;5761;5761;1063;831;0;0;0;0;0;0;0;0;0;0;0;0;0;108;1430;154;565;259;286;0;0;0;2;1362;702;214;214;214
-46;'178;Congo;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;0;0;3;0;0;0;0;0;0;810;5;0;2;195;0
-46;'178;Congo;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;0;2;0;0;0;0;0;0;223;3;0;82;46;0
-46;'178;Congo;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61284;96831;96831;96831;19392;12800;0;0;0;0;0;0;0;0;0;0;0;0;0;1162;1480;33;0;0;0;0;0;0;30;2128;1117;133;423;423
-46;'178;Congo;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3995;5761;5761;5761;1063;831;0;0;0;0;0;0;0;0;0;0;0;0;0;108;1430;154;565;259;286;0;0;0;2;1362;702;214;214;214
-46;'178;Congo;1867;Industrial roundwood, non-coniferous;5516;Production;m3;519000;518000;656000;775000;755000;838000;806000;931000;978000;973000;1004000;923000;872000;651000;507000;592000;611000;664000;685000;818000;766000;745000;748000;828000;820000;970000;1185000;1516000;1553000;1598000;1176000;1329000;1338000;1319000;1471000;1164000;1634000;1543000;1251000;1362000;1626000;1910000;2081000;2008000;2181000;2143136;2339648;2162593;1979307;2035524;2091213;2321123;2230123;2114123;2144123;2189123;2270123;2419123;2052725;1933437;1933437;1933437;1933437
-46;'178;Congo;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;72;157;0;0;1456;2541;14;132;5;21;0;1;19;0;0;575;848
-46;'178;Congo;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;19;45;0;0;296;761;1;15;1;14;0;5;5;0;0;141;197
-46;'178;Congo;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670431;470794;530881;339508;239600;241200;258300;496000;638000;211000;281834;481438;455400;776013;844020;742243;659000;648795;630000;513086;606020;789163;774531;661000;790000;641710;786302;928615;889720;884535;621000;660000;596000;789000
-46;'178;Congo;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149438;118904;123153;75024;78946;79000;65136;107444;76358;55667;73456;234942;113850;149640;166932;218114;204290;212363;243180;165944;267485;352217;325771;269027;316227;268235;229290;312948;298385;300870;201825;236951;219924;272994
-46;'178;Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1456;0;0;0;4;1;0;1;19;0;0;0;0
-46;'178;Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;296;0;0;0;1;0;0;1;5;0;0;0;0
-46;'178;Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670431;470794;530881;339508;239600;241200;258300;496000;638000;211000;281834;481438;455400;776013;844020;742243;659000;640225;630000;512940;606020;789163;774504;661000;790000;641710;782821;928615;889720;884535;621000;660000;596000;789000
-46;'178;Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149438;118904;123153;75024;78946;79000;65136;107444;76358;55667;73456;234942;113850;149640;166932;218114;204290;211289;243180;165875;267485;352217;325756;269027;316227;268235;229258;312948;298385;300870;201825;236951;219924;272994
-46;'178;Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;72;157;0;0;0;2541;14;132;1;20;0;0;0;0;0;575;848
-46;'178;Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;19;45;0;0;0;761;1;15;0;14;0;4;0;0;0;141;197
-46;'178;Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8570;0;146;0;0;27;0;0;0;3481;0;0;0;0;0;0;0
-46;'178;Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074;0;69;0;0;15;0;0;0;32;0;0;0;0;0;0;0
-46;'178;Congo;1868;Sawlogs and veneer logs;5516;Production;m3;389000;385000;520000;635000;612000;691000;656000;777000;820000;810000;837000;751000;696000;470000;321000;400000;414000;461000;476000;603000;545000;517000;514000;587000;572000;715000;694000;751000;809000;833000;572000;635000;635000;544000;636000;704000;911000;703000;520000;631000;895000;1179000;1350000;1277000;1450000;1600000;1700000;1212118;1262000;1314000;1463000;1717000;1626000;1510000;1537000;1582000;1663000;1812000;1445602;1326314;1326314;1326314;1326314
-46;'178;Congo;1868;Sawlogs and veneer logs;5916;Export quantity;m3;321300;360200;425000;536900;526000;556000;504400;569600;609000;592400;602700;472900;312000;277000;128000;144000;155000;166700;173100;280600;220600;202000;188300;250300;275200;287000;327000;381700;395300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;11110;11866;13765;18857;17816;17322;16538;20091;21896;21300;21700;17000;17500;25760;12160;18780;18900;20201;21066;44591;28501;21200;19553;26032;28716;39460;54019;69487;90168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;389000;385000;520000;635000;612000;691000;656000;777000;820000;810000;837000;751000;696000;470000;321000;400000;414000;461000;476000;603000;545000;517000;514000;587000;572000;715000;694000;751000;809000;833000;572000;635000;635000;544000;636000;704000;911000;703000;520000;631000;895000;1179000;1350000;1277000;1450000;1600000;1700000;1212118;1262000;1314000;1463000;1714000;1623000;1507000;1537000;1582000;1663000;1812000;1445602;1326314;1326314;1326314;1326314
-46;'178;Congo;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;321300;360200;425000;536900;526000;556000;504400;569600;609000;592400;602700;472900;312000;277000;128000;144000;155000;166700;173100;280600;220600;202000;188300;250300;275200;287000;327000;381700;395300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;11110;11866;13765;18857;17816;17322;16538;20091;21896;21300;21700;17000;17500;25760;12160;18780;18900;20201;21066;44591;28501;21200;19553;26032;28716;39460;54019;69487;90168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481000;361000;361000;361000;361000;361000;361000;361000;173136;269648;580475;347307;351524;258213;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123
-46;'178;Congo;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481000;361000;361000;361000;361000;361000;361000;361000;173136;269648;580475;347307;351524;258213;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123;237123
-46;'178;Congo;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;494000;465000;477000;309000;391000;391000;454000;505000;120000;373000;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;494000;465000;477000;309000;391000;391000;454000;505000;120000;373000;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1871;Other industrial roundwood;5516;Production;m3;130000;133000;136000;140000;143000;147000;150000;154000;158000;163000;167000;172000;176000;181000;186000;192000;197000;203000;209000;215000;221000;228000;234000;241000;248000;255000;263000;271000;279000;288000;295000;303000;312000;321000;330000;340000;350000;359000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000
-46;'178;Congo;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;130000;133000;136000;140000;143000;147000;150000;154000;158000;163000;167000;172000;176000;181000;186000;192000;197000;203000;209000;215000;221000;228000;234000;241000;248000;255000;263000;271000;279000;288000;295000;303000;312000;321000;330000;340000;350000;359000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000
-46;'178;Congo;1630;Wood charcoal;5510;Production;t;263;283;305;328;354;381;410;441;475;512;529;549;569;588;611;679;758;848;750;1200;1300;1300;2300;1450;1500;1500;2000;3500;2600;3300;1300;1100;1374;1510;1659;1782;1600;1300;1000;1000;2545;4701;4701;3018;3194;3330;3500;3600;3770;3930;4082;4239;4403;4573;4749;4924;5106;5294;5489;5692;5886;6086;6294
-46;'178;Congo;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;13;13;13;5;11;2;4;15;10;6
-46;'178;Congo;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;14;14;14;7;21;2;2;18;8;28
-46;'178;Congo;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;14;14;15;15;7;2;60;106;19;0;28;9
-46;'178;Congo;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;32;32;13;13;6;2;27;83;9;2;12;7
-46;'178;Congo;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;51;126;126;126;126;126;24;42;10;10;10;0;0;0;0;10
-46;'178;Congo;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;16;15;15;15;15;15;12;22;7;7;7;0;0;0;0.01;46
-46;'178;Congo;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;4;4;4;4;148072;313014;318444;318444;187014;145014;36014;36014;36014;36014;36014;14;14;14;14;14
-46;'178;Congo;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;2;2;2;2;7928;15931;15931;15931;6632;5321;1353;1353;1353;1353;1353;36;36;36;36;36
-46;'178;Congo;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;110;110;110;110;110;8;8;8;8;8;0;0;0;0;1
-46;'178;Congo;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;9;9;9;9;6;6;6;6;6;0;0;0;0.01;6
-46;'178;Congo;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148000;313000;318430;318430;187000;145000;36000;36000;36000;36000;36000;0;0;0;0;0
-46;'178;Congo;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7926;15895;15895;15895;6596;5285;1317;1317;1317;1317;1317;0;0;0;0;0
-46;'178;Congo;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;24;24;0;0;0;0;0;0;0;0;0;0;0;0;27;16;16;16;16;16;16;34;2;2;2;0;0;0;0;9
-46;'178;Congo;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;15;6;6;6;6;6;6;16;1;1;1;0;0;0;0;40
-46;'178;Congo;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;4;4;4;4;72;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-46;'178;Congo;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;2;2;2;2;2;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36
-46;'178;Congo;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.22;1
-46;'178;Congo;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.45;1
-46;'178;Congo;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.22;1
-46;'178;Congo;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.45;1
-46;'178;Congo;1872;Sawnwood;5516;Production;m3;32000;33000;27000;29000;34000;32000;39000;42000;37000;43000;44000;42000;44000;48000;56000;60000;49000;43000;53000;64000;73000;66000;66000;60000;50000;77000;60000;57000;46000;50000;53700;52200;52200;56500;62000;59000;64000;73000;74000;93000;126000;169700;168000;200000;219932;258679;268180;196553;199000;179000;228000;288000;327000;350000;372502;365988;338947;287258;366866;322297;322297;403000;403000
-46;'178;Congo;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;5400;5400;4400;5500;8300;8300;11500;8700;7500;7500;2000;10100;10100;10100;10100;10133;43;50;36;0;0;0;0;0;0;26;41;126;13;98;150;355;154;94;296;49;88;160;109;155;567;38;52;0;39;275;0
-46;'178;Congo;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;1000;1000;900;950;1400;1400;1900;1500;1912;1912;500;2600;2600;2600;2600;2620;20;12;6;0;0;0;0;0;0;6;7;40;16;36;106;181;154;86;107;118;34;128;35;122;171;32;13;1;14;16;0
-46;'178;Congo;1872;Sawnwood;5916;Export quantity;m3;11200;10800;5800;5800;4600;5400;5300;8200;9600;12100;12900;15500;26000;24000;17000;16000;23000;18000;29000;37000;27400;28300;25500;27600;20500;22600;31700;24500;27800;25200;6000;39836;42022;30700;32300;28000;15900;47400;63000;68952;94195;197380;141199;142616;163000;181000;203000;167000;63500;86210;70019;82167;158960;225115;202846;206660;211862;256807;254869;243502;281402;309126;312725
-46;'178;Congo;1872;Sawnwood;5922;Export value;1000 USD;840;834;361;417;335;393;350;689;995;1200;1200;1800;3000;2760;2335;2592;4554;3582;5800;13376;7733;7000;5443;5788;5807;7027;11599;9193;8004;8000;2000;17595;16973;14558;15317;14484;7100;20870;26681;25390;65937;59214;43547;47538;51100;64558;80530;77440;49637;52445;55983;62032;94763;171123;154187;144093;157592;161046;167646;170591;176736;156974;164563
-46;'178;Congo;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000
-46;'178;Congo;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;36;36;36;0;0;0;0;0;0;0;0;0;0;0;50;30;0;0;0;0;66;87;77;51;500;26;13;0;0;54;0
-46;'178;Congo;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;6;6;6;0;0;0;0;0;0;0;0;0;0;0;44;9;0;0;0;0;19;46;10;21;101;13;1;0;6;16;0
-46;'178;Congo;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;209;722;2420;464;846;706;488;343;405;30;235;6;1725
-46;'178;Congo;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;279;134;546;839;164;263;194;118;153;266;12;112;73;492
-46;'178;Congo;1633;Sawnwood, non-coniferous;5516;Production;m3;32000;33000;27000;29000;34000;32000;39000;42000;37000;43000;44000;42000;44000;48000;56000;60000;49000;43000;53000;64000;73000;66000;66000;60000;50000;77000;60000;57000;46000;50000;53700;52200;52200;56500;62000;59000;64000;73000;74000;93000;126000;169700;168000;200000;219932;258679;268180;196553;199000;179000;228000;288000;327000;350000;369502;362988;335947;284258;363866;319297;319297;400000;400000
-46;'178;Congo;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;5400;5400;4400;5500;8300;8300;11500;8700;7500;7500;2000;10100;10100;10100;10100;10100;7;14;0;0;0;0;0;0;0;26;41;126;13;98;100;325;154;94;296;49;22;73;32;104;67;12;39;0;39;221;0
-46;'178;Congo;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;1000;1000;900;950;1400;1400;1900;1500;1912;1912;500;2600;2600;2600;2600;2600;14;6;0;0;0;0;0;0;0;6;7;40;16;36;62;172;154;86;107;118;15;82;25;101;70;19;12;1;8;0;0
-46;'178;Congo;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;11200;10800;5800;5800;4600;5400;5300;8200;9600;12100;12900;15500;26000;24000;17000;16000;23000;18000;29000;37000;27400;28300;25500;27600;20500;22600;31700;24500;27800;25200;6000;39836;42022;30700;32300;28000;15900;47400;63000;68952;94195;197380;141199;142616;163000;181000;203000;167000;63500;86210;69810;81445;156540;224651;202000;205954;211374;256464;254464;243472;281167;309120;311000
-46;'178;Congo;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;840;834;361;417;335;393;350;689;995;1200;1200;1800;3000;2760;2335;2592;4554;3582;5800;13376;7733;7000;5443;5788;5807;7027;11599;9193;8004;8000;2000;17595;16973;14558;15317;14484;7100;20870;26681;25390;65937;59214;43547;47538;51100;64558;80530;77440;49637;52166;55849;61486;93924;170959;153924;143899;157474;160893;167380;170579;176624;156901;164071
-46;'178;Congo;1634;Veneer sheets;5516;Production;m3;9000;8600;21900;21900;39000;37700;53900;59600;74600;66700;66500;91100;96000;71000;43000;55000;72000;78000;70000;75000;68000;63000;74000;63000;59000;51000;49000;56000;52000;60000;36000;35000;35000;47000;49000;50000;76000;52000;19000;10000;14000;22500;26100;8000;14000;2224;45986;31537;33000;35000;34000;46000;73000;59000;59490;64490;54297;46450;51665;27986;27986;29000;29000
-46;'178;Congo;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;139;21;213;190;156;353;12;1124;2879;21;387;96;52;16;16;20;35;99;86;16
-46;'178;Congo;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;92;13;397;236;195;268;128;728;1857;401;275;83;59;20;34;45;543;86;249;65
-46;'178;Congo;1634;Veneer sheets;5916;Export quantity;m3;9000;8600;9300;17300;37700;36100;36900;55000;69000;63000;66500;81000;70700;48000;43000;55000;69000;77000;63000;67000;59600;63000;59200;58800;49600;45500;45100;34700;48500;59300;35200;31400;31000;41500;41800;41100;37400;46400;16000;8000;12000;18000;14000;9000;13040;3968;15307;21775;7228;6130;12092;10688;13374;12714;11877;12666;14105;17465;16702;10826;19254;20675;19000
-46;'178;Congo;1634;Veneer sheets;5922;Export value;1000 USD;610;585;648;1227;2610;2508;3186;4685;6693;6200;6700;10000;12000;8500;7600;10500;14600;17500;14100;26372;18331;18500;16800;15876;14227;15943;18223;16684;24000;26000;14295;14401;20512;28000;29000;24535;19579;23962;8605;5602;8405;12623;5300;3228;4786;4896;29434;9102;13093;10354;16708;13626;16335;14230;12303;13444;14262;22491;8561;6608;12273;11592;7334
-46;'178;Congo;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;1000;2000;2400;4000;3000;3800;4900;5600;6700;6700;4800;4900;2400;2400;2400;1000;1000;1000;3000;5000;3000;2000;3000;1000;4000;4100;4000;4000;6000;7456;10381;8612;22000;25000;19000;25000;28000;28000;25756;24537;23656;25000;11737;7128;7128;8062;8062
-46;'178;Congo;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;13;0;0;0;0;0;0;0;1828;4986;5634;3931;3536;2267;2877;1739;2366;2380;3974;3171;2974;569;693;522;1305;908;676;2470;6675
-46;'178;Congo;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;6;0;0;0;0;0;0;0;710;1789;1918;1419;1302;1439;1560;1096;1337;1482;2286;2176;2310;532;590;426;666;925;423;1434;3947
-46;'178;Congo;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;100;200;400;100;100;100;100;100;100;100;100;100;100;2;412;588;2000;2200;2500;2800;2800;1000;1000;4000;3063;761;2059;3000;1800;1964;215;267;1785;2390;638;538;166;75;79;149;176;1;83;39;128
-46;'178;Congo;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;45;100;222;61;61;71;71;71;71;71;71;71;71;2;323;560;1905;1307;1297;1440;1440;593;386;1418;1100;272;926;1400;966;1495;141;243;1146;2164;414;431;92;34;94;158;186;56;68;13;81
-46;'178;Congo;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;1000;2000;2400;4000;3000;3800;4900;5600;6700;6700;4800;4900;2400;2400;2400;1000;1000;1000;3000;5000;3000;2000;3000;1000;4000;4100;4000;4000;6000;7456;10381;8612;22000;25000;19000;25000;28000;28000;25756;24537;23656;25000;11737;7128;7128;8062;8062
-46;'178;Congo;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1564;3858;5542;3839;3444;1753;1840;702;1329;1165;2759;2309;2549;297;495;166;342;592;340;1401;2123
-46;'178;Congo;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;518;1457;1900;1401;1284;1027;851;387;628;626;1430;1300;2000;280;279;94;120;303;187;546;1567
-46;'178;Congo;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;100;200;400;100;100;100;100;100;100;100;100;100;100;2;412;588;2000;2200;2500;2800;2800;1000;1000;4000;3063;761;2059;3000;1800;1964;215;267;1785;2390;638;538;166;75;79;149;175;0;44;0;0
-46;'178;Congo;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;45;100;222;61;61;71;71;71;71;71;71;71;71;2;323;560;1905;1307;1297;1440;1440;593;386;1418;1100;272;926;1400;966;1495;141;243;1146;2164;414;431;92;34;94;158;185;48;55;0;0
-46;'178;Congo;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;9;25;25;25;25;216;51;51;51;65;65;339;47;0;78;78;10;134;51;467;1522
-46;'178;Congo;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;31;4;4;4;4;196;81;81;81;61;61;353;33;0;147;147;5;486;56;372;739
-46;'178;Congo;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;39;39;2
-46;'178;Congo;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;13;13;1
-46;'178;Congo;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;25;71;0;0;0;1;1;9;193
-46;'178;Congo;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;46;0;0;0;1;1;3;2
-46;'178;Congo;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;255;1103;67;67;67;298;986;986;986;1150;1150;520;353;201;120;278;953;181;284;593;2837
-46;'178;Congo;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;161;328;14;14;14;216;628;628;628;795;795;519;262;206;164;185;541;135;179;513;1639
-46;'178;Congo;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126
-46;'178;Congo;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80
-46;'178;Congo;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;788;0;0;0;2;734;734;734;734;734;240;140;8;18;12;99;101;116;101;76
-46;'178;Congo;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;231;0;0;0;1;390;390;390;390;390;187;55;12;49;38;59;61;100;72;60
-46;'178;Congo;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;147;38;38;38;293;151;151;151;366;366;187;212;116;38;215;421;78;168;470;1734
-46;'178;Congo;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;34;9;9;9;207;142;142;142;309;309;222;204;161;53;122;472;67;79;432;1404
-46;'178;Congo;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126
-46;'178;Congo;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80
-46;'178;Congo;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;168;168;29;29;29;3;101;101;101;50;50;93;1;77;64;51;433;2;0;22;1027
-46;'178;Congo;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;63;63;5;5;5;8;96;96;96;96;96;110;3;33;62;25;10;7;0;9;175
-46;'178;Congo;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;98;98;25;15;0;0;0;0;0;0;117;129;129;129;129;308;172;172;172;171;171;1517;301;414;520;606;2664;3690;4008.84;939;467
-46;'178;Congo;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;24;24;7;6;0;0;0;0;0;0;71;92;92;92;92;188;146;146;146;140;140;996;88;94;113;142;1355;2092;1701.06;383;129
-46;'178;Congo;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;28;28;525;525;29;5;5;1;0
-46;'178;Congo;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;4;4;4;4;413;413;4;1;1;0;2
-46;'178;Congo;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;47;59;59;59;59;160;146;146;146;146;146;59;25;24;54;54;14;312;0;207;103
-46;'178;Congo;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;53;74;74;74;74;114;129;129;129;134;134;85;49;49;67;67;46;182;0;244;81
-46;'178;Congo;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;497;497;1;1;1;1;0
-46;'178;Congo;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;409;409;0;0;0;0;2
-46;'178;Congo;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;47;47;47;47;47;148;133;133;133;133;133;46;12;11;41;41;1;312;0;207;103
-46;'178;Congo;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;53;53;53;53;53;111;97;97;97;97;97;48;12;12;30;30;9;182;0;244;81
-46;'178;Congo;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;497;497;1;1;1;1;0
-46;'178;Congo;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;409;409;0;0;0;0;2
-46;'178;Congo;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;47;47;47;47;47;148;133;133;133;133;133;46;12;11;41;41;1;312;0;207;103
-46;'178;Congo;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;53;53;53;53;53;111;97;97;97;97;97;48;12;12;30;30;9;182;0;244;81
-46;'178;Congo;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;497;497;1;1;1;1;0
-46;'178;Congo;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;409;409;0;0;0;0;2
-46;'178;Congo;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-46;'178;Congo;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;24;24;24;24;24;122;107;107;107;107;107;23;12;11;41;41;1;312;0;207;103
-46;'178;Congo;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;37;37;37;37;37;82;68;68;68;68;68;24;12;12;30;30;9;182;0;244;81
-46;'178;Congo;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;497;1;1;1;1;0
-46;'178;Congo;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;409;0;0;0;0;2
-46;'178;Congo;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;23;23;23;23;23;26;26;26;26;26;26;23;0;0;;;;;;;
-46;'178;Congo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;29;29;29;29;29;29;24;0;0;;;;;;;
-46;'178;Congo;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;13;13;13;13;13;13;13;13;13;13;13;0;0;0;0
-46;'178;Congo;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;3;32;32;32;37;37;37;37;37;37;37;37;0;0;0;0
-46;'178;Congo;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;0;0.08;0.08
-46;'178;Congo;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;0;0.12;0.12
-46;'178;Congo;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;98;98;25;15;0;0;0;0;0;0;70;70;70;70;70;148;26;26;26;25;25;1458;276;390;466;552;2650;3378;4008.84;732;364
-46;'178;Congo;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;24;24;7;6;0;0;0;0;0;0;18;18;18;18;18;74;17;17;17;6;6;911;39;45;46;75;1309;1910;1701.06;139;48
-46;'178;Congo;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;4;4;0;0
-46;'178;Congo;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;1;1;0;0
-46;'178;Congo;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-46;'178;Congo;1876;Paper and paperboard;5610;Import quantity;t;2600;1500;3200;1900;2000;1700;4200;4900;4700;900;1100;1200;1300;1300;1300;1300;1300;1000;1000;1000;2000;2000;2000;2000;2300;900;10000;7700;1200;1200;1200;873;1035;529;500;1000;1200;1400;1800;2152;1881;1860;5049;4618;4618;4618;4618;9291;4833;4213;4842;9558;5557;10012;9007;9571;8965;10724;6561;7368;7216.12;8292;19139
-46;'178;Congo;1876;Paper and paperboard;5622;Import value;1000 USD;1755;627;1969;982;1031;871;2805;3164;3016;431;498;582;701;701;701;701;701;580;590;591;1580;1580;1580;1580;1850;1597;6816;6651;2088;1700;1280;1213;1028;664;797;1236;1473;1768;1898;2172;1763;2260;4572;4735;4735;4735;4735;6687;8759;5322;6127;10156;6560;10253;7677;9396;9561;9996;6171;6019;5960.65;12422;22048
-46;'178;Congo;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;177;177;0;0;0;0;0;0;0;0;3;3;3;3;3;3;4;4;4;4;4;4;5;5;7;9;8;58;52;156.3;156.3
-46;'178;Congo;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;143;143;0;0;0;0;0;0;0;0;3;3;3;3;3;3;6;6;6;6;6;6;26;26;29;36;17;34;27;49.45;49.45
-46;'178;Congo;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;200;500;400;200;200;200;200;200;100;100;100;200;200;200;200;500;500;1000;700;300;300;300;572;604;237;200;600;700;700;1300;1652;1481;1060;4393;3304;3304;3304;3304;8189;3380;2760;3389;8328;4327;4309;4691;6591;5154;8076;5385;6312;6161.04;3531;14160
-46;'178;Congo;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;115;198;220;150;150;150;150;150;80;80;81;180;180;180;180;450;450;816;651;300;300;280;813;586;298;317;738;895;1124;1299;1573;1388;1111;3397;3345;3345;3345;3345;5116;6653;3216;4021;8648;5052;4934;4675;5550;4928;7591;3985;4201;3856.87;5364;15025
-46;'178;Congo;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;0;0;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;26;26;16;16
-46;'178;Congo;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;0;0;0;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;4;12;12;12;12
-46;'178;Congo;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;224;45;100;0;0;0;0;0;0;100;257;259;259;259;259;47;90;90;90;320;320;612;496;76;525;33;884;609;1072.46;403;479
-46;'178;Congo;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;81;43;91;0;0;0;0;0;0;56;219;337;337;337;337;15;144;144;144;225;225;531;317;49;334;21;492;277;542.23;655;429
-46;'178;Congo;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0
-46;'178;Congo;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0
-46;'178;Congo;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;200;500;400;200;200;200;200;200;100;100;100;200;200;200;200;500;500;1000;700;300;300;300;452;380;192;100;600;700;700;1300;1652;1481;960;4136;3045;3045;3045;3045;8142;3290;2670;3299;8008;4007;3697;4195;6515;4629;8043;4501;5703;5088.58;3128;13681
-46;'178;Congo;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;115;198;220;150;150;150;150;150;80;80;81;180;180;180;180;450;450;816;651;300;300;280;744;505;255;226;738;895;1124;1299;1573;1388;1055;3178;3008;3008;3008;3008;5101;6509;3072;3877;8423;4827;4403;4358;5501;4594;7570;3493;3924;3314.64;4709;14596
-46;'178;Congo;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;0;0;0;;;;;;;;;;;;;;;;;;;;;;0;25;25;16;16
-46;'178;Congo;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;0;0;0;;;;;;;;;;;;;;;;;;;;;;1;9;9;12;12
-46;'178;Congo;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;81;81;81;60;34;43;43;43;43;100;67;67;67;756;756;338;275;58;284;284;23;13;56;26;473
-46;'178;Congo;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;62;62;62;50;99;55;55;55;55;104;110;110;110;1158;1158;299;363;76;209;209;29;11;30;73;515
-46;'178;Congo;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-46;'178;Congo;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;948;1300;800;700;3229;2745;2745;2745;2745;7036;1984;1364;1993;5965;1964;2422;2625;5571;3437;7096;3929;4713;3380.58;1825;12273
-46;'178;Congo;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887;1024;1298;913;832;2382;2393;2393;2393;2393;3651;4936;1499;2304;5986;2390;3221;2574;4378;3212;6749;2779;3226;2217.64;2383;12069
-46;'178;Congo;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;25;16;16
-46;'178;Congo;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;9;12;12
-46;'178;Congo;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;271;271;600;200;873;257;257;257;257;1006;1239;1239;1239;1287;1287;937;1295;886;908;663;549;977;1652;1277;935
-46;'178;Congo;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;213;213;413;173;697;560;560;560;560;1346;1463;1463;1463;1279;1279;883;1421;1047;1173;612;685;687;1067;2253;2012
-46;'178;Congo;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-46;'178;Congo;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-46;'178;Congo;1675;Other paper and paperboard;5610;Import quantity;t;2600;1500;3200;1900;2000;1700;4200;4900;4700;700;600;800;1100;1100;1100;1100;1100;900;900;900;1800;1800;1800;1800;1800;400;9000;7000;900;900;900;301;431;292;300;400;500;700;500;500;400;800;656;1314;1314;1314;1314;1102;1453;1453;1453;1230;1230;5703;4316;2980;3811;2648;1176;1056;1055.07;4761;4979
-46;'178;Congo;1675;Other paper and paperboard;5622;Import value;1000 USD;1755;627;1969;982;1031;871;2805;3164;3016;316;300;362;551;551;551;551;551;500;510;510;1400;1400;1400;1400;1400;1147;6000;6000;1788;1400;1000;400;442;366;480;498;578;644;599;599;375;1149;1175;1390;1390;1390;1390;1571;2106;2106;2106;1508;1508;5319;3002;3846;4633;2405;2186;1818;2103.78;7058;7023
-46;'178;Congo;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;83;83;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;4;4;6;8;7;32;26;140.3;140.3
-46;'178;Congo;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;61;61;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;23;23;26;33;13;22;15;37.45;37.45
-46;'178;Congo;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-46;'178;Congo;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;110;104;104;104;104;136;483;483;483;519;519;809;622;914;456;250;347;383;400.07;451;820
-46;'178;Congo;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;131;109;109;109;109;198;655;655;655;649;649;1233;827;1231;710;321;512;411;354.79;1320;1731
-46;'178;Congo;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;500;500;400;400;306;1025;1025;1025;1025;668;759;759;759;648;648;4614;3654;1947;3214;2375;723;556;560;4143;3842
-46;'178;Congo;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;599;599;375;366;423;734;734;734;734;752;909;909;909;721;721;2999;2060;2304;2869;1943;1032;744;1133;5020;3656
-46;'178;Congo;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;4;4;4;6;5;30;26;26.3;26.3
-46;'178;Congo;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;23;23;23;30;10;19;13;13.45;13.45
-46;'178;Congo;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;500;500;200;100;71;78;78;78;78;202;217;217;217;344;344;4065;3167;940;2419;1699;29;41;43;3462;1816
-46;'178;Congo;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;599;599;112;60;127;69;69;69;69;160;172;172;172;211;211;2253;1624;477;1542;1234;39;56;60;3471;1031
-46;'178;Congo;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;25;0;0.3;0.3
-46;'178;Congo;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;9;0;0.45;0.45
-46;'178;Congo;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;181;96;96;96;96;369;431;431;431;92;92;119;92;616;408;309;152;224;203;328;965
-46;'178;Congo;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;166;220;183;183;183;183;247;566;566;566;233;233;344;124;1462;772;314;374;488;762;1112;1647
-46;'178;Congo;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2
-46;'178;Congo;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7
-46;'178;Congo;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;34;827;827;827;827;73;87;87;87;210;210;422;362;358;380;360;542;290;313;348;920
-46;'178;Congo;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;140;60;468;468;468;468;331;157;157;157;276;276;393;270;323;551;391;616;181;292;433;845
-46;'178;Congo;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;24;24;24
-46;'178;Congo;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;6;6;6
-46;'178;Congo;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;24;24;24;24;24;24;24;2;2;8;33;33;7;7;0;1;1;5;141
-46;'178;Congo;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14;14;14;14;14;1;1;9;42;42;4;4;3;19;19;4;133
-46;'178;Congo;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;240;185;185;185;185;298;211;211;211;63;63;280;40;119;141;23;106;117;95;167;317
-46;'178;Congo;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;621;547;547;547;547;621;542;542;542;138;138;1087;115;311;1054;141;642;663;616;718;1636
-46;'178;Congo;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;0;114;114
-46;'178;Congo;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;2;24;24
-46;'178;Congo;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9961;9468;7190;6439;8071;10086;13295
-46;'178;Congo;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930;37498;11071;2564;4237;5323;24786
-46;'178;Congo;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;7;21;3;14;3;55
-46;'178;Congo;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;1868;1868;1868;1868;3051;5156
-46;'178;Congo;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;0;0;0;0;1;0
-46;'178;Congo;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;267
-46;'178;Congo;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;21;3;14;2;55
-46;'178;Congo;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;1810;1810;1810;1810;2993;4889
-46;'178;Congo;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;419;322;120;67;69;219
-46;'178;Congo;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;101;2;5;4;18
-46;'178;Congo;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;122;112;66;85;89;286
-46;'178;Congo;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;144;1126;1;3
-46;'178;Congo;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243;1192;641;517;1211;826;3116
-46;'178;Congo;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;56;366;0;0;1369;18289
-46;'178;Congo;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;14000
-46;'178;Congo;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;13877
-46;'178;Congo;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1369;17736
-46;'178;Congo;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7743;7464;5801;5248;6518;8795;8795
-46;'178;Congo;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;3;23;1;16;11;28
-46;'178;Congo;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;146;0;8;60
-46;'178;Congo;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;264;292;339;176;296;764
-46;'178;Congo;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;35570;8712;549;1222;887;1292
-46;'178;Congo;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17032;11489;16012;14007;15026;15533;24298
-46;'178;Congo;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;42;45;42;49;67;15
-46;'178;Congo;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;5;7;5;1;1;5
-46;'178;Congo;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;0
-46;'178;Congo;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;108;306;333;651;1629;1888
-46;'178;Congo;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5
-46;'178;Congo;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2707;2370;2577;2262;1921;2014;2014
-46;'178;Congo;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;0;0;11;0
-46;'178;Congo;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4513;3214;5654;3519;4007;4460;12962
-46;'178;Congo;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;7;14;2;2
-46;'178;Congo;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673;5792;7468;7888;8446;7429;7429
-46;'178;Congo;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;3;7;2;2;21;8
-47;'184;Cook Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7261;7579;7333;6181;6957;7377;7247
-47;'184;Cook Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;14;58;69;63;86;62
-47;'184;Cook Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1511;2010;1587;1463;1463;1463;1393;1393;924;1893;1893;1893;1893;1893;1893;2357;2357;2357;2874;1757;2160;2393;2464;2162;3088;3067;4043;3765;3340;4146;3706;3036
-47;'184;Cook Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;1194;726;726;726;726;726;726;726;130;130;130;130;130;130;130;130;130;0;0;0;0;0;0;0;0;1;50;57;56;56;56
-47;'184;Cook Islands;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;125;199;30;93;236;91;164
-47;'184;Cook Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;2;0;5;5;0;13;54;112;15;19;42;39;84
-47;'184;Cook Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;6058;4343;4343;4343;4343;4343;4343;4343;800;800;800;800;800;800;800;800;800;800;800;800;800;800;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;1194;726;726;726;726;726;726;726;130;130;130;130;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;160;30;93;236;91;164
-47;'184;Cook Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;89;15;19;42;39;84
-47;'184;Cook Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-47;'184;Cook Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-47;'184;Cook Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;39;0;0;0;0;0
-47;'184;Cook Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;23;0;0;0;0;0
-47;'184;Cook Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-47;'184;Cook Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-47;'184;Cook Islands;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;125;199;30;93;236;91;164
-47;'184;Cook Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;2;0;5;5;0;13;54;112;15;19;42;39;84
-47;'184;Cook Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;6058;4343;4343;4343;4343;4343;4343;4343;800;800;800;800;800;800;800;800;800;800;800;800;800;800;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;1194;726;726;726;726;726;726;726;130;130;130;130;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;114;160;30;93;236;91;164
-47;'184;Cook Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;2;0;5;5;0;13;50;89;15;19;42;39;84
-47;'184;Cook Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4320;4320;4320;4320;4320;4320;4320;4320;800;800;800;800;800;800;800;800;800;800;800;800;800;800;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;717;717;717;717;717;717;717;130;130;130;130;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;114;160;30;93;236;91;164
-47;'184;Cook Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;2;0;5;5;0;13;50;89;15;19;42;39;84
-47;'184;Cook Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4320;4320;4320;4320;4320;4320;4320;4320;800;800;800;800;800;800;800;800;800;800;800;800;800;800;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;717;717;717;717;717;717;717;130;130;130;130;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;39;0;0;0;0;0
-47;'184;Cook Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;23;0;0;0;0;0
-47;'184;Cook Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;1738;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;477;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;1738;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;477;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;39;0;0;0;0;0
-47;'184;Cook Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;23;0;0;0;0;0
-47;'184;Cook Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-47;'184;Cook Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;2;5
-47;'184;Cook Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;6;3;4;15
-47;'184;Cook Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;155;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;13;8;10;54
-47;'184;Cook Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;2
-47;'184;Cook Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;1;1;49
-47;'184;Cook Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1
-47;'184;Cook Islands;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;155;155;155;155;155;155;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;7;9;5
-47;'184;Cook Islands;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1
-47;'184;Cook Islands;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;0;0
-47;'184;Cook Islands;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-47;'184;Cook Islands;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;0;0
-47;'184;Cook Islands;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-47;'184;Cook Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3838;4436;2940;2940;2940;2940;2940;2940;1548;3060;3060;3060;3060;3060;3060;4300;4300;4300;5439;4300;3606;4300;3671;3500;5058;4634;6403;5256;5430;5104;5122;3832
-47;'184;Cook Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1345;1015;1015;1015;1015;1015;1015;552;1096;1096;1096;1096;1096;1096;1560;1560;1560;1932;968;1325;1512;1637;1425;2199;2129;2915;2425;2285;2791;2608;1972
-47;'184;Cook Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;0;0;0;0
-47;'184;Cook Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0
-47;'184;Cook Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3659;4390;2892;2892;2892;2892;2892;2892;1500;2900;2900;2900;2900;2900;2900;4000;4000;4000;5139;4000;3306;4000;3371;3449;4980;4261;6236;5214;5376;4976;5040;3710
-47;'184;Cook Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945;1312;991;991;991;991;991;991;528;1008;1008;1008;1008;1008;1008;1396;1396;1396;1911;943;1295;1452;1573;1383;2145;1864;2842;2335;2196;2765;2521;1885
-47;'184;Cook Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;46;48;48;48;48;48;48;48;160;160;160;160;160;160;300;300;300;300;300;300;300;300;51;78;373;167;42;54;128;82;122
-47;'184;Cook Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;33;24;24;24;24;24;24;24;88;88;88;88;88;88;164;164;164;21;25;30;60;64;42;54;265;73;90;89;26;87;87
-47;'184;Cook Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;0;0;0;0
-47;'184;Cook Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0
-47;'184;Cook Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;40;8;8;8;8;8;8;8;80;80;80;80;80;80;80;80;80;80;80;80;80;80;59;66;7;48;66;21;4;0;215
-47;'184;Cook Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;41;7;7;7;7;7;7;7;70;70;70;70;70;70;70;70;70;119;240;265;51;86;83;57;6;52;87;22;4;24;110
-47;'184;Cook Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;930;861;859;647;647;647;647;647;647;1900;1900;1900;1900;1900;1900;1900;1900;1900;1436;1170;1515;1900;1900;1304;1338;1505;1899;1411;1160;1674;844;654
-47;'184;Cook Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;429;374;250;250;250;250;250;250;727;727;727;727;727;727;727;727;727;823;547;570;825;736;654;819;878;964;1054;782;1093;799;603
-47;'184;Cook Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0
-47;'184;Cook Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;509;591;591;591;591;591;591;591;1300;1300;1300;1300;1300;1300;1300;1300;1300;836;570;915;1300;1300;704;738;905;1299;1181;1063;1587;788;524
-47;'184;Cook Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;264;225;225;225;225;225;225;225;481;481;481;481;481;481;481;481;481;577;301;324;579;490;408;573;632;718;950;723;1029;752;547
-47;'184;Cook Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0
-47;'184;Cook Islands;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;41;42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;16;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;230;97;87;56;42
-47;'184;Cook Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;104;59;64;47;32
-47;'184;Cook Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;311;226;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;88
-47;'184;Cook Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;149;131;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24
-47;'184;Cook Islands;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28
-47;'184;Cook Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-47;'184;Cook Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42
-47;'184;Cook Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-47;'184;Cook Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;24;14;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18
-47;'184;Cook Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;12;7;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3
-47;'184;Cook Islands;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;287;212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;137;124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-47;'184;Cook Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;119;139;139;139;139;87;87;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;52;54;53;64
-47;'184;Cook Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;188;184;184;184;184;114;114;114;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;163;225;212;231;250
-47;'184;Cook Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;51;51;51;51
-47;'184;Cook Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;56;56;56;56
-47;'184;Cook Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;97;97;97;97;45;45;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;31;23;36;31
-47;'184;Cook Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;92;92;92;92;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;89;102;69;115;73
-47;'184;Cook Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;45;45;45;45;45;45;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1
-47;'184;Cook Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;22;22;22;22;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1
-47;'184;Cook Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;52;52;52;52;;;;;;;;;;;;;;;;;;;;;;28;30;22;35;30
-47;'184;Cook Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;70;70;70;70;;;;;;;;;;;;;;;;;;;;;;89;101;68;114;72
-47;'184;Cook Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;5;6;3
-47;'184;Cook Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;17;31;21;19
-47;'184;Cook Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;14;23;26
-47;'184;Cook Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;42;20;63;46
-47;'184;Cook Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;17;3;6;1
-47;'184;Cook Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;42;17;30;7
-47;'184;Cook Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;45;42;42;42;42;42;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;21;31;17;33
-47;'184;Cook Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;97;92;92;92;92;92;92;92;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;123;143;116;177
-47;'184;Cook Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;51;51;51;51
-47;'184;Cook Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;56;56;56;56
-47;'184;Cook Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;19;12;21
-47;'184;Cook Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;21;39;48;81
-47;'184;Cook Islands;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-47;'184;Cook Islands;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-47;'184;Cook Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;2;3;3
-47;'184;Cook Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;34;28;43;27
-47;'184;Cook Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;51;51;51;51
-47;'184;Cook Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;56;56;56;56
-47;'184;Cook Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;0
-47;'184;Cook Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;6;4;2
-47;'184;Cook Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;0;1;1
-47;'184;Cook Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;3;18;3
-47;'184;Cook Islands;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;51;51;51;51
-47;'184;Cook Islands;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;56;56;56;56
-47;'184;Cook Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;1;1;2
-47;'184;Cook Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;27;19;21;22
-47;'184;Cook Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;9;10;2;9
-47;'184;Cook Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;68;76;25;69
-47;'184;Cook Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641;2029;1976;1737;1627;1827;2404
-47;'184;Cook Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;13;8;12;7;30;6
-47;'184;Cook Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;282;190;114;219;133;258
-47;'184;Cook Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;265;180;104;199;76;249
-47;'184;Cook Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;17;10;10;20;57;9
-47;'184;Cook Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;2;12;21;15;2
-47;'184;Cook Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;138;59;59;69;49
-47;'184;Cook Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12;7;12;6;5;6
-47;'184;Cook Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;239;181;297;184;241;302
-47;'184;Cook Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1358;1146;735;554;828;1002;1212
-47;'184;Cook Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;1;1;0;1;25;0
-47;'184;Cook Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;59;653;653;263;263;546
-47;'184;Cook Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;87;77;48;53;104;35
-47;'184;Cook Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1553;1507;1592;1104;1184;1844;1807
-47;'184;Cook Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;4;4;0;5;1
-47;'184;Cook Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;186;145;67;123;101;157
-47;'184;Cook Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834;701;791;664;612;872;807
-47;'184;Cook Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;122;131;79;122;337;204
-47;'184;Cook Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-47;'184;Cook Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;496;521;290;327;529;638
-47;'184;Cook Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793431;845396;799868;723562;909587.25;1085078.08;939279
-48;'188;Costa Rica;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246359;213008;205584;169711;208723.37;249293.48;206409.48
-48;'188;Costa Rica;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2298;3498;4740;7895;9016;9697;10618;10466;14261;20372;21585;24222;30935;48521;35728;43226;39224;26127;55651;60324;79408;71716;65670;70025;66904;63925;40101;42649;82694;78365;83621;179590;115269;111032;149820;130636;133290;133290;240616;245399;201335;191221.1;238462;275146;285065;289495;317800;440178;200911;370020;441091;443255;483687;472812;455129;433617;463388;528405;465795;415262;529467.25;645247.08;482361
-48;'188;Costa Rica;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;444;990;934;1238;1469;2001;1271;1455;1931;1684;3416;9752;2477;3983;2746;3951;4659;5291;8432;21901;20676;19606;22361;16810;17573;15269;12353;23596;24314;12122;13492;15795;19926;19463;25787;19680;17771;17771;20793;21668;20992;21512;25231;30665;31193;37287;40098;47445;49302;70744;71228;71559;62069;70803;118830;118021;131695;113956;96177;60881;84652.37;86519.48;74888.48
-48;'188;Costa Rica;1861;Roundwood;5516;Production;m3;3667562;3690878;3683215;3718574;3740955;3783358;3825782;3877228;3928696;4121186;4168853;4202985;4434971;4390875;4620364;4707714;4785471;4802217;4839154;4644306;4570540;4391968;4283526;4399272;4434443;4440505;4646900;4687569;4566432;4533921;4484496;4601027;4616913;5092860;5151032;5177958;5175328;4601294;4377653;4473321;4669232;4452401;4413781;4519330;4703007;4799697;4995500;4873300;4681194;4703039;4628882;4755659;4744334;4692876;4683253;4612096;4610064;4588712;4478540;4404691;4450440;4303416;4308298
-48;'188;Costa Rica;1861;Roundwood;5616;Import quantity;m3;;;;400;100;200;4000;3700;900;200;300;700;500;1900;5400;4100;3100;6100;4000;4700;2500;1400;1100;1100;1100;1100;;;;207;207;27;5055;15805;4900;4900;1100;1100;4800;4800;1266;1622;1014;3434;3711;3218;3218;1775;1054;845;1351;3932;778;1714;1258;3240;11764;7412;8448;5218;4549;5440;5559
-48;'188;Costa Rica;1861;Roundwood;5622;Import value;1000 USD;;;;28;6;12;288;216;66;12;21;52;45;175;650;612;418;844;602;891;577;374;261;261;261;261;;;;7;7;12;396;1033;550;550;143;143;459;459;383;276;154;214;271;214;214;491;252;207;383;636;209;179;187;465;2487;1771;1998;1771;1660;2145;2153
-48;'188;Costa Rica;1861;Roundwood;5916;Export quantity;m3;2400;5100;800;2300;100;1500;5000;7900;3100;2700;2300;2300;2300;2300;2300;2300;2300;1100;100;100;100;300;100;500;500;500;2400;4100;;14;105;300;677;484;2900;3100;15700;15700;16100;500;500;1500;34186;62268;62268;102268;122268;103947;107821;114384;193955;221300;141810;123874;187685;167397;176916;163230;148462;81733;103687;110260;102444
-48;'188;Costa Rica;1861;Roundwood;5922;Export value;1000 USD;91;75;28;36;9;53;90;123;79;78;67;67;67;67;67;67;67;200;37;17;17;46;26;146;146;146;723;1175;;7;21;52;65;37;342;417;929;929;993;52;52;352;3624;5704;5704;7847;9741;12865;26063;39054;40356;41319;29222;28729;71817;58213;76727;61530;54999;29790;39219;25206;23694
-48;'188;Costa Rica;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-48;'188;Costa Rica;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4588;5841;7526;2844;4409;4022;3948
-48;'188;Costa Rica;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1882;1326;1716;839;1590;1587;1312
-48;'188;Costa Rica;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28287;42387;28151;13824;8229;20700;21076
-48;'188;Costa Rica;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8449;11542;6733;3002;2385;3818;4375
-48;'188;Costa Rica;1863;Roundwood, non-coniferous;5516;Production;m3;3667562;3690878;3683215;3718574;3740955;3783358;3825782;3877228;3928696;4121186;4168853;4202985;4434971;4390875;4620364;4707714;4785471;4802217;4839154;4644306;4570540;4391968;4283526;4399272;4434443;4440505;4646900;4687569;4566432;4533921;4484496;4601027;4616913;5092860;5151032;5177958;5175328;4601294;4377653;4473321;4669232;4452401;4413781;4519330;4703007;4799697;4995500;4873300;4681194;4703039;4528882;4655659;4644334;4592876;4583253;4512096;4510064;4488712;4378540;4304691;4350440;4203416;4208298
-48;'188;Costa Rica;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7176;1571;922;2374;140;1418;1611
-48;'188;Costa Rica;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605;445;282;932;70;558;841
-48;'188;Costa Rica;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148629;120843;120311;67909;95458;89560;81368
-48;'188;Costa Rica;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68278;49988;48266;26788;36834;21388;19319
-48;'188;Costa Rica;1864;Wood fuel;5516;Production;m3;3207562;3215878;3224215;3232574;3240955;3249358;3257782;3266228;3274696;3283186;3282853;3268985;3255971;3257875;3284364;3295714;3293471;3305217;3327154;3369306;3415040;3493468;3508026;3493772;3523943;3525005;3528900;3541569;3537432;3546921;3554496;3528027;3506913;3495860;3496032;3516958;3507328;3500294;3492653;3486321;3474232;3463401;3453781;3445330;3438007;3423697;3410500;3398300;3387194;3377039;3363882;3351659;3340334;3329876;3320253;3303391;3287363;3272135;3257677;3243960;3232451;3221616;3211430
-48;'188;Costa Rica;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;0;;;;;;;
-48;'188;Costa Rica;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;;;;;;;
-48;'188;Costa Rica;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;184;0;0;0;0;0;300;300;300;300;300;300;300;300;300;300;24;24;24;0;2;48;0;;;;;;;
-48;'188;Costa Rica;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;2;2;2;0;7;1;0;;;;;;;
-48;'188;Costa Rica;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-48;'188;Costa Rica;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1628;Wood fuel, non-coniferous;5516;Production;m3;3207562;3215878;3224215;3232574;3240955;3249358;3257782;3266228;3274696;3283186;3282853;3268985;3255971;3257875;3284364;3295714;3293471;3305217;3327154;3369306;3415040;3493468;3508026;3493772;3523943;3525005;3528900;3541569;3537432;3546921;3554496;3528027;3506913;3495860;3496032;3516958;3507328;3500294;3492653;3486321;3474232;3463401;3453781;3445330;3438007;3423697;3410500;3398300;3387194;3377039;3363882;3351659;3340334;3329876;3320253;3303391;3287363;3272135;3257677;3243960;3232451;3221616;3211430
-48;'188;Costa Rica;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;0;;;;;;;
-48;'188;Costa Rica;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;;;;;;;
-48;'188;Costa Rica;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;184;0;0;0;0;0;300;300;300;300;300;300;300;300;300;300;24;24;24;0;2;48;0;;;;;;;
-48;'188;Costa Rica;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;2;2;2;0;7;1;0;;;;;;;
-48;'188;Costa Rica;1865;Industrial roundwood;5516;Production;m3;460000;475000;459000;486000;500000;534000;568000;611000;654000;838000;886000;934000;1179000;1133000;1336000;1412000;1492000;1497000;1512000;1275000;1155500;898500;775500;905500;910500;915500;1118000;1146000;1029000;987000;930000;1073000;1110000;1597000;1655000;1661000;1668000;1101000;885000;987000;1195000;989000;960000;1074000;1265000;1376000;1585000;1475000;1294000;1326000;1265000;1404000;1404000;1363000;1363000;1308705;1322701;1316577;1220863;1160731;1217989;1081800;1096868
-48;'188;Costa Rica;1865;Industrial roundwood;5616;Import quantity;m3;;;;400;100;200;4000;3700;900;200;300;700;500;1900;5400;4100;3100;6100;4000;4700;2500;1400;1100;1100;1100;1100;;;;207;207;27;5055;15805;4900;4900;1100;1100;4800;4800;1266;1622;1014;3434;3711;3218;3218;1775;1054;845;1351;3932;750;1686;1230;3240;11764;7412;8448;5218;4549;5440;5559
-48;'188;Costa Rica;1865;Industrial roundwood;5622;Import value;1000 USD;;;;28;6;12;288;216;66;12;21;52;45;175;650;612;418;844;602;891;577;374;261;261;261;261;;;;7;7;12;396;1033;550;550;143;143;459;459;383;276;154;214;271;214;214;491;252;207;383;636;206;176;184;465;2487;1771;1998;1771;1660;2145;2153
-48;'188;Costa Rica;1865;Industrial roundwood;5916;Export quantity;m3;2400;5100;800;2300;100;1500;5000;7900;3100;2700;2300;2300;2300;2300;2300;2300;2300;1100;100;100;100;300;100;500;500;500;2400;4100;;14;105;300;300;300;2900;3100;15700;15700;16100;200;200;1200;33886;61968;61968;101968;121968;103647;107521;114360;193931;221276;141810;123872;187637;167397;176916;163230;148462;81733;103687;110260;102444
-48;'188;Costa Rica;1865;Industrial roundwood;5922;Export value;1000 USD;91;75;28;36;9;53;90;123;79;78;67;67;67;67;67;67;67;200;37;17;17;46;26;146;146;146;723;1175;;7;21;52;52;29;342;417;929;929;993;42;42;342;3614;5694;5694;7837;9731;12855;26053;39052;40354;41317;29222;28722;71816;58213;76727;61530;54999;29790;39219;25206;23694
-48;'188;Costa Rica;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-48;'188;Costa Rica;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;27;5055;15805;4900;4900;1100;1100;4800;4800;1252;1608;1000;855;855;855;855;855;911;739;144;3746;296;1565;902;1085;4588;5841;7526;2844;4409;4022;3948
-48;'188;Costa Rica;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;12;396;1033;550;550;143;143;459;459;379;272;150;52;52;52;52;52;178;168;30;580;31;156;93;79;1882;1326;1716;839;1590;1587;1312
-48;'188;Costa Rica;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;197;300;2900;2900;15600;15600;15600;0;0;0;5274;6000;6000;46000;66000;59000;36000;22271;38477;56723;62635;25889;29392;38053;28287;42387;28151;13824;8229;20700;21076
-48;'188;Costa Rica;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;29;342;342;907;907;907;0;0;0;945;1380;1380;3523;5417;5265;2324;5870;11016;15937;5455;2628;3041;3449;8449;11542;6733;3002;2385;3818;4375
-48;'188;Costa Rica;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;27;5055;15805;4900;4900;1100;1100;4800;4800;1252;1608;1000;855;855;855;855;855;911;739;144;3746;296;1565;902;1085;4588;5841;7526;2844;4409;4022;3948
-48;'188;Costa Rica;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;12;396;1033;550;550;143;143;459;459;379;272;150;52;52;52;52;52;178;168;30;580;31;156;93;79;1882;1326;1716;839;1590;1587;1312
-48;'188;Costa Rica;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;197;300;2900;2900;15600;15600;15600;0;0;0;5274;6000;6000;46000;66000;59000;36000;22271;38477;56723;62635;25889;29392;38053;28287;42387;28151;13824;8229;20700;21076
-48;'188;Costa Rica;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;29;342;342;907;907;907;0;0;0;945;1380;1380;3523;5417;5265;2324;5870;11016;15937;5455;2628;3041;3449;8449;11542;6733;3002;2385;3818;4375
-48;'188;Costa Rica;1867;Industrial roundwood, non-coniferous;5516;Production;m3;460000;475000;459000;486000;500000;534000;568000;611000;654000;838000;886000;934000;1179000;1133000;1336000;1412000;1492000;1497000;1512000;1275000;1155500;898500;775500;905500;910500;915500;1118000;1146000;1029000;987000;930000;1073000;1110000;1597000;1655000;1661000;1668000;1101000;885000;987000;1195000;989000;960000;1074000;1265000;1376000;1585000;1475000;1294000;1326000;1165000;1304000;1304000;1263000;1263000;1208705;1222701;1216577;1120863;1060731;1117989;981800;996868
-48;'188;Costa Rica;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;2579;2856;2363;2363;920;143;106;1207;186;454;121;328;2155;7176;1571;922;2374;140;1418;1611
-48;'188;Costa Rica;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;162;219;162;162;439;74;39;353;56;175;20;91;386;605;445;282;932;70;558;841
-48;'188;Costa Rica;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;105;103;103;0;0;200;100;100;500;200;200;1200;28612;55968;55968;55968;55968;44647;71521;92089;155454;164553;79175;97983;158245;129344;148629;120843;120311;67909;95458;89560;81368
-48;'188;Costa Rica;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;21;31;31;0;0;75;22;22;86;42;42;342;2669;4314;4314;4314;4314;7590;23729;33182;29338;25380;23767;26094;68775;54764;68278;49988;48266;26788;36834;21388;19319
-48;'188;Costa Rica;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;275;552;59;59;610;143;106;670;90;357;20;328;2155;7176;1571;892;2223;14;639;51
-48;'188;Costa Rica;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;10;67;10;10;318;74;39;196;32;83;11;91;386;605;445;273;857;7;104;7
-48;'188;Costa Rica;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;105;103;103;0;0;200;100;100;500;200;200;200;4314;11633;11633;11633;11633;19068;71515;92089;155454;164553;79175;97983;158245;129344;148629;120843;120311;67909;95458;88900;81368
-48;'188;Costa Rica;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;21;31;31;0;0;75;22;22;86;42;42;42;669;1698;1698;1698;1698;3801;23726;33182;29338;25380;23767;26094;68775;54764;68278;49988;48266;26788;36834;21112;19319
-48;'188;Costa Rica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2304;2304;2304;2304;310;0;0;537;96;97;101;0;0;0;0;30;151;126;779;1560
-48;'188;Costa Rica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;121;0;0;157;24;92;9;0;0;0;0;9;75;63;454;834
-48;'188;Costa Rica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;24298;44335;44335;44335;44335;25579;6;0;0;0;0;0;0;0;0;0;0;0;0;660;0
-48;'188;Costa Rica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2000;2616;2616;2616;2616;3789;3;0;0;0;0;0;0;0;0;0;0;0;0;276;0
-48;'188;Costa Rica;1868;Sawlogs and veneer logs;5516;Production;m3;371000;383000;364000;387000;398000;428000;458000;498000;538000;718000;763000;808000;1050000;1000000;1200000;1272000;1348000;1348000;1348000;1107000;985000;723000;595000;720000;720000;720000;920000;941000;813000;762000;704000;840000;870000;1350000;1400000;1400000;1400000;835000;612000;741000;949000;743000;714000;828000;1019000;1130000;1339000;1229000;1048000;1080000;1019000;1158000;1158000;1117000;1117000;1062705;1076701;1070577;974863;914731;971989;835800;850868
-48;'188;Costa Rica;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2400;5100;800;2300;100;1500;5000;7900;3100;2700;2300;2300;2300;2300;2300;2300;2300;1100;100;100;100;300;100;500;500;500;2400;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;91;75;28;36;9;53;90;123;79;78;67;67;67;67;67;67;67;200;37;17;17;46;26;146;146;146;723;1175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-48;'188;Costa Rica;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;371000;383000;364000;387000;398000;428000;458000;498000;538000;718000;763000;808000;1050000;1000000;1200000;1272000;1348000;1348000;1348000;1107000;985000;723000;595000;720000;720000;720000;920000;941000;813000;762000;704000;840000;870000;1350000;1400000;1400000;1400000;835000;612000;741000;949000;743000;714000;828000;1019000;1130000;1339000;1229000;1048000;1080000;919000;1058000;1058000;1017000;1017000;962705;976701;970577;874863;814731;871989;735800;750868
-48;'188;Costa Rica;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2400;5100;800;2300;100;1500;5000;7900;3100;2700;2300;2300;2300;2300;2300;2300;2300;1100;100;100;100;300;100;500;500;500;2400;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;91;75;28;36;9;53;90;123;79;78;67;67;67;67;67;67;67;200;37;17;17;46;26;146;146;146;723;1175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;10000;10000;7500;7500;7500;7500;7500;7500;4000;6000;11000;15000;8000;8000;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;10000;10000;7500;7500;7500;7500;7500;7500;4000;6000;11000;15000;8000;8000;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1871;Other industrial roundwood;5516;Production;m3;89000;92000;95000;99000;102000;106000;110000;113000;116000;120000;123000;126000;129000;133000;136000;140000;144000;149000;154000;158000;163000;168000;173000;178000;183000;188000;194000;199000;205000;210000;218000;225000;232000;239000;247000;253000;260000;266000;273000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000
-48;'188;Costa Rica;1871;Other industrial roundwood;5616;Import quantity;m3;;;;400;100;200;4000;3700;900;200;300;700;500;1900;5400;4100;3100;6100;4000;4700;2500;1400;1100;1100;1100;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;28;6;12;288;216;66;12;21;52;45;175;650;612;418;844;602;891;577;374;261;261;261;261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;89000;92000;95000;99000;102000;106000;110000;113000;116000;120000;123000;126000;129000;133000;136000;140000;144000;149000;154000;158000;163000;168000;173000;178000;183000;188000;194000;199000;205000;210000;218000;225000;232000;239000;247000;253000;260000;266000;273000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000
-48;'188;Costa Rica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;400;100;200;4000;3700;900;200;300;700;500;1900;5400;4100;3100;6100;4000;4700;2500;1400;1100;1100;1100;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;28;6;12;288;216;66;12;21;52;45;175;650;612;418;844;602;891;577;374;261;261;261;261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1630;Wood charcoal;5510;Production;t;3286;3363;3443;3525;3608;3694;3781;3871;3963;4057;4128;4176;4231;4321;4468;4583;4654;4774;4916;5127;5401;5779;5980;6088;6339;6504;6687;6902;7064;7275;7517;7627;7765;7942;8170;8486;8685;8885;9084;9288;9491;9698;9910;10100;10300;10500;11000;11000;11199;11423;11624;11829;12037;12249;12464;12640;12818;12998;13182;13367;13550;13735;13922
-48;'188;Costa Rica;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;71;163;104;104;50;149;655;673;688;936;1001;1026;1920;1358;1541
-48;'188;Costa Rica;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;52;123;68;68;40;80;261;260;356;489;543;579;963.58;629;749
-48;'188;Costa Rica;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;1;38;21;21;46;292;0;1;7;30;3
-48;'188;Costa Rica;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;21;7;7;21;152;0;1;8;24;3
-48;'188;Costa Rica;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;52000;52000;52000;52000;510598;542590;298797;290993;243069;287425;258389;383732
-48;'188;Costa Rica;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;27;106;129;79;51;694;694;119;186;65;41;41;25;54;86;134;147;21;29;4;19;115;123
-48;'188;Costa Rica;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;44;51;27;10;27;27;81;71;39;18;18;43;106;98;35;28;16;24;5;13;10;18
-48;'188;Costa Rica;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;155;155;155;155;46;44;44;110;110;14;248;213;213;109;56;52;121;121;457;166
-48;'188;Costa Rica;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;6;6;6;6;25;18;18;65;65;27;64;110;110;420;1;0;0;0;2;12
-48;'188;Costa Rica;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103548;103548;70167;134089;134946;156235;103635;107803
-48;'188;Costa Rica;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;0;0;0;0;0;0;0;0;0;0;0;0;0;26;68;9;1;1;2;43;49;1;110;4;1;1;2;115;115
-48;'188;Costa Rica;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;0;0;0;0;0;7;8;3;1;1;20;65;67;1;7;7;1;3;4;9;9
-48;'188;Costa Rica;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;71;500;0;0;0;0;0;0;0;0;25;25;25;25;25;21;21;108;108;14;246;108;108;88;0;0;0;0;0;0
-48;'188;Costa Rica;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;105;0;0;0;0;0;0;0;0;1;1;1;1;1;11;11;62;62;27;57;39;39;420;0;0;0;0;0;0
-48;'188;Costa Rica;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;52000;52000;52000;52000;407050;439042;228630;156904;108123;131190;154754;275929
-48;'188;Costa Rica;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5500;3100;0;0;0;0;27;106;129;79;51;694;694;93;118;56;40;40;23;11;37;133;37;17;28;3;17;0;8
-48;'188;Costa Rica;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;244;127;0;0;0;0;10;44;51;27;10;27;27;74;63;36;17;17;23;41;31;34;21;9;23;2;9;1;9
-48;'188;Costa Rica;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;700;0;0;0;0;0;0;0;130;130;130;130;21;23;23;2;2;0;2;105;105;21;56;52;121;121;457;166
-48;'188;Costa Rica;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;0;0;0;0;0;0;0;5;5;5;5;24;7;7;3;3;0;7;71;71;0;1;0;0;0;2;12
-48;'188;Costa Rica;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;23147;23675;24000;22200;22172;22172;22172;22172;22172;22172
-48;'188;Costa Rica;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;53;5569;1592;28;107;12;34;17;18;12;39
-48;'188;Costa Rica;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;54;1897;1329;14;20;13;31;25;44;22;58
-48;'188;Costa Rica;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;215;97;0;0;1378;421;19;27;817;69
-48;'188;Costa Rica;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;48;45;0;0;372;114;16;38;265;52
-48;'188;Costa Rica;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;23147;23675;24000;22200;22172;22172;22172;22172;22172;22172
-48;'188;Costa Rica;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;22;14;8;0;105;1;0;0;0;2;1
-48;'188;Costa Rica;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;31;14;14;0;15;1;0;0;0;1;1
-48;'188;Costa Rica;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;215;97;0;0;1362;421;19;27;817;69
-48;'188;Costa Rica;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;48;45;0;0;360;114;16;38;265;52
-48;'188;Costa Rica;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;5555;1584;28;2;11;34;17;18;10;38
-48;'188;Costa Rica;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1883;1315;14;5;12;31;25;44;21;57
-48;'188;Costa Rica;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;0;0;0;0;0
-48;'188;Costa Rica;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;0;0;0;0;0
-48;'188;Costa Rica;1872;Sawnwood;5516;Production;m3;273100;273700;281800;301100;309300;332700;340900;350900;375000;369000;390300;414300;547300;519300;612000;513000;689000;689000;363800;524400;534400;378400;306400;412400;412400;412400;503400;515400;439400;412200;412200;772200;798200;746000;780000;780000;780000;417500;306000;370500;474500;371500;357000;414000;476000;587000;669500;614500;524000;540000;459000;529000;466000;455000;455000;455000;438900;451729;391040;455370;425747;377538;269118
-48;'188;Costa Rica;1872;Sawnwood;5616;Import quantity;m3;1400;2800;1300;1300;2200;2600;4900;500;5600;2500;4100;4200;100;100;3000;3700;4700;4700;1000;300;1200;800;800;800;800;800;800;800;800;800;800;6433;5100;4371;5500;3000;7000;7000;13900;29600;30900;24725;30054;25579;33267;27486;59067;39163;32219;55543;95588;117286;128051;124121;107997;190063;143794;201776;139397;166711;142775;164900;96276
-48;'188;Costa Rica;1872;Sawnwood;5622;Import value;1000 USD;52;117;53;53;121;127;242;33;251;124;228;193;5;16;209;254;425;425;220;142;227;226;226;226;226;226;226;226;226;226;226;835;2197;1338;1762;717;1647;1647;4522;8125;7120;5054;5712;5004;8737;6622;16952;23912;10154;15008;27255;30785;36349;37145;35334;47708;39055;55203;39775;44009;44386;59686;42268
-48;'188;Costa Rica;1872;Sawnwood;5916;Export quantity;m3;1700;5400;5000;1300;4700;3100;700;1300;3400;300;200;;1100;8900;2000;4700;2000;300;100;100;2300;4600;4800;5800;5800;2400;600;2700;3300;600;400;3755;8716;2402;3900;3800;3300;3300;2300;3200;3200;3200;3200;2783;2783;12871;12595;6966;4358;3073;2744;4930;4838;10325;4866;37504;37986;29134;17507;14812;21062;5521;3367
-48;'188;Costa Rica;1872;Sawnwood;5922;Export value;1000 USD;37;155;124;172;173;235;83;85;139;18;18;;89;405;189;425;189;76;17;20;505;805;1113;1462;1457;607;276;526;631;216;108;1334;3614;1180;1759;1576;1558;1558;931;1334;1334;1334;1334;734;734;1124;1107;2947;2636;1868;2069;4073;2823;4680;3366;19887;22704;16823;9219;8746;7805;2617;5927
-48;'188;Costa Rica;1632;Sawnwood, coniferous;5516;Production;m3;5300;4600;1150;2300;2400;2450;2450;2450;4500;4500;4650;4650;4650;4650;6000;6000;7500;7500;1650;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;11000;12000;12000;12000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-48;'188;Costa Rica;1632;Sawnwood, coniferous;5616;Import quantity;m3;1400;2800;1300;1300;2200;2600;4900;500;5600;2500;4100;4200;100;100;3000;3700;4700;4700;1000;300;1200;800;800;800;800;800;800;800;800;800;800;510;600;1391;2500;1800;5800;5800;5900;21000;27162;19321;25070;18654;19205;23286;54867;36321;31480;54836;94615;116292;127414;123520;107122;188898;142741;201129;138068;165870;141118;164093;94709
-48;'188;Costa Rica;1632;Sawnwood, coniferous;5622;Import value;1000 USD;52;117;53;53;121;127;242;33;251;124;228;193;5;16;209;254;425;425;220;142;227;226;226;226;226;226;226;226;226;226;226;93;123;168;602;232;845;845;996;4272;6467;4194;5069;4038;4735;5444;15774;22769;9551;14466;26484;30447;35865;36803;34636;47000;38426;54719;38833;43550;43787;59223;41757
-48;'188;Costa Rica;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1773;216;5;0;600;400;400;800;1000;1000;1000;1000;811;811;811;811;150;428;889;823;685;825;7504;1945;87;47;260;271;39;47;209;25
-48;'188;Costa Rica;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;39;1;0;82;154;154;108;196;196;196;196;135;135;135;135;53;286;693;486;486;321;2534;587;30;13;74;329;9;46;32;10
-48;'188;Costa Rica;1633;Sawnwood, non-coniferous;5516;Production;m3;267800;269100;280650;298800;306900;330250;338450;348450;370500;364500;385650;409650;542650;514650;606000;507000;681500;681500;362150;512200;522200;366200;294200;400200;400200;400200;491200;503200;427200;400000;400000;760000;786000;735000;768000;768000;768000;417500;306000;370500;474500;371500;357000;414000;476000;587000;669500;614500;524000;540000;459000;529000;466000;455000;455000;455000;438900;451729;391040;455370;425747;377538;269118
-48;'188;Costa Rica;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5923;4500;2980;3000;1200;1200;1200;8000;8600;3738;5404;4984;6925;14062;4200;4200;2842;739;707;973;994;637;601;875;1165;1053;647;1329;841;1657;807;1567
-48;'188;Costa Rica;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;2074;1170;1160;485;802;802;3526;3853;653;860;643;966;4002;1178;1178;1143;603;542;771;338;484;342;698;708;629;484;942;459;599;463;511
-48;'188;Costa Rica;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1700;5400;5000;1300;4700;3100;700;1300;3400;300;200;;1100;8900;2000;4700;2000;300;100;100;2300;4600;4800;5800;5800;2400;600;2700;3300;600;400;1982;8500;2397;3900;3200;2900;2900;1500;2200;2200;2200;2200;1972;1972;12060;11784;6816;3930;2184;1921;4245;4013;2821;2921;37417;37939;28874;17236;14773;21015;5312;3342
-48;'188;Costa Rica;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;37;155;124;172;173;235;83;85;139;18;18;;89;405;189;425;189;76;17;20;505;805;1113;1462;1457;607;276;526;631;216;108;981;3575;1179;1759;1494;1404;1404;823;1138;1138;1138;1138;599;599;989;972;2894;2350;1175;1583;3587;2502;2146;2779;19857;22691;16749;8890;8737;7759;2585;5917
-48;'188;Costa Rica;1634;Veneer sheets;5516;Production;m3;5100;6500;6000;7300;8300;8800;6000;5000;6000;3000;3000;4000;4000;4000;5000;5000;5000;2800;4700;4700;8000;8000;5000;6000;6000;6000;5000;7500;7500;10000;15000;20000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;27000;25000;25000;1000;1000;1000;1000;1000;2210;1000;1000;1000;2000;0;0;0;0
-48;'188;Costa Rica;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;1256;2000;2000;1000;1000;1400;900;771;4480;1530;202;410;372;226;57;66;13;8;1;21;85;95;77;122;76;106;187;180;237;39
-48;'188;Costa Rica;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1000;1437;1437;429;429;938;991;423;1670;671;312;922;440;166;98;147;912;52;32;125;207;231;208;338;303;101;317;575;103;103
-48;'188;Costa Rica;1634;Veneer sheets;5916;Export quantity;m3;2900;6000;4200;5600;7100;6500;1800;2400;3500;1000;1000;1000;1000;1000;1000;1000;1000;200;2800;2700;7400;3100;2600;4800;6000;6000;5000;5400;5300;4900;4200;3982;8500;218;150;200;100;100;1000;2000;2000;2000;2000;551;551;842;397;177;417;67;42;40;19;5;239;5;7;31;552;0;80;10;19
-48;'188;Costa Rica;1634;Veneer sheets;5922;Export value;1000 USD;255;541;384;482;539;575;70;86;117;52;52;52;52;52;52;52;52;64;827;854;2400;610;719;884;1089;1089;1002;1166;2240;1078;1042;1235;2600;142;287;194;49;49;1273;2835;2835;2835;2835;435;435;863;280;456;772;655;575;714;501;72;357;15;17;115;84;7;255;69;24
-48;'188;Costa Rica;1873;Wood-based panels;5516;Production;m3;1100;3300;5700;8600;9400;12600;15700;15000;20000;22000;25000;25000;25000;25000;40000;45600;68400;58000;62000;63000;49000;44000;34000;40000;40000;40000;44000;40000;40000;45000;45000;52000;53000;53000;53000;53000;53000;53000;53000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;32000;32000;25200;45000;111730;84450;84000;84000;47000;47000;47000;47000;47000
-48;'188;Costa Rica;1873;Wood-based panels;5616;Import quantity;m3;0;0;0;100;400;600;600;1200;1400;2800;3500;4100;4500;4500;1900;3200;3000;2200;1700;2600;500;500;500;500;200;200;1700;1900;3600;5700;2400;6087;5385;8730;10400;11300;11200;11200;16100;25400;16707;16285;19586;25846;24662;46853;43930;42700;19316;46464;40355;71000;51222;52751;57521;56287;67408;42986;39495;40184;86123.19;67411;59311
-48;'188;Costa Rica;1873;Wood-based panels;5622;Import value;1000 USD;0;0;0;30;78;124;135;254;273;535;663;1244;1406;1693;924;1297;1339;836;628;1160;245;245;245;282;129;129;683;432;1608;2886;1097;2601;1751;3214;4027;4672;4566;4566;6408;6898;4539;4568;5014;6966;8889;10292;11138;22653;9287;22146;21031;30677;24475;28993;29794;27461;29112;28706;27868;25531;39701.75;36614;34940
-48;'188;Costa Rica;1873;Wood-based panels;5916;Export quantity;m3;300;1000;1900;3000;3300;3800;3800;8400;8900;7200;8800;14000;10900;7600;8200;10300;10500;19300;13400;22700;19600;18200;14700;12800;12800;11800;11000;14100;15300;12700;16100;21952;19032;27600;28900;29100;25400;25400;30700;30500;30500;30500;30500;32405;32405;36789;32546;20233;10814;7222;2712;2552;711;1218;292;310;174;419;430;418;879.17;5;66
-48;'188;Costa Rica;1873;Wood-based panels;5922;Export value;1000 USD;61;219;398;548;713;970;866;1161;1358;1109;1328;1676;1465;2005;1697;2584;3275;4352;3350;6793;5829;5773;5288;4508;4507;3685;2739;3455;4169;3574;4574;6554;8154;11791;12353;8780;8810;8810;8214;8425;8425;8425;8425;5776;5776;7872;7315;7166;5066;2994;1174;1081;769;579;238;315;196;317;285;395;357;109;199
-48;'188;Costa Rica;1640;Plywood and LVL;5516;Production;m3;1100;3300;5700;8600;9400;12600;15700;15000;20000;22000;25000;25000;25000;25000;40000;40000;44000;30000;31000;31000;26000;33000;23000;25000;25000;25000;28000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;10000;10000;3200;23000;64730;37450;37000;37000;0;0;0;0;0
-48;'188;Costa Rica;1640;Plywood and LVL;5616;Import quantity;m3;0;0;0;100;400;500;500;1000;1300;2700;3400;3200;3600;3600;1000;2300;2100;2200;1700;2600;500;500;500;500;200;200;1700;1900;3600;5700;2400;4931;1060;1700;1800;1700;3100;3100;5100;7600;848;200;742;505;994;3988;4952;13900;11247;19406;18440;22640;21650;16322;16244;17989;23511;20133;16715;18323;22613;9527;9923
-48;'188;Costa Rica;1640;Plywood and LVL;5622;Import value;1000 USD;0;0;0;30;78;109;120;229;259;521;653;570;732;1019;250;623;665;836;628;1160;245;245;245;282;129;129;683;432;1608;2886;1097;2243;375;859;900;814;1551;1551;2427;2510;361;92;315;316;567;1512;3579;9596;4208;7087;7082;9178;8971;10450;9765;9188;9045;9601;9353;8075;9646;5244;8286
-48;'188;Costa Rica;1640;Plywood and LVL;5916;Export quantity;m3;300;1000;1900;3000;3300;3800;3800;8400;8900;7200;8800;14000;10900;7600;8200;10300;10500;8900;4800;8300;11100;10500;8400;6600;6600;7300;4100;4100;5400;3800;4700;8188;1332;9000;9400;9400;7900;7900;5700;7400;7400;7400;7400;1749;1749;6141;3794;1156;1607;545;203;43;46;287;116;233;142;387;331;403;245;2;35
-48;'188;Costa Rica;1640;Plywood and LVL;5922;Export value;1000 USD;61;219;398;548;713;970;866;1161;1358;1109;1328;1676;1465;2005;1697;2584;3275;2878;1728;3793;4004;4209;3891;2988;2987;2720;1542;1663;2240;1707;1983;3533;499;3753;3932;4380;4319;4319;3052;3879;3879;3879;3879;574;574;2682;1761;876;1146;370;127;34;104;1;98;206;83;249;228;330;241;101;112
-48;'188;Costa Rica;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;536
-48;'188;Costa Rica;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;334
-48;'188;Costa Rica;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;5600;24400;28000;31000;32000;23000;11000;11000;15000;15000;15000;16000;18000;18000;23000;23000;30000;31000;31000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;100;100;200;100;100;100;900;900;900;900;900;900;;;;;;;;;;;;;;;440;191;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;15;15;25;14;14;10;674;674;674;674;674;674;;;;;;;;;;;;;;;114;58;701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;10400;8600;14400;8500;7700;6300;6200;6200;4500;6900;10000;9900;8900;11400;13764;17700;18600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;1474;1622;3000;1825;1564;1397;1520;1520;965;1197;1792;1929;1867;2591;3021;7655;8038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;31000;31000;31000;31000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;47000;47000;47000;47000;47000;47000;47000;47000;47000
-48;'188;Costa Rica;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3300;2200;2200;2800;3900;1290;2384;2371;2534;4894;5847;5847;2681;2066;12124;12296;19967;20006;17696;20425;20524;25902;11208;12759;12544;36079.54;34080;31206
-48;'188;Costa Rica;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;1402;694;694;997;891;436;624;619;797;1433;958;958;1519;1114;6502;7283;11619;7450;7157;7964;8115;10092;9940;10945;9955;15505.92;17396;15395
-48;'188;Costa Rica;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19500;19700;17500;17500;25000;23100;23100;23100;23100;30509;30509;30509;28613;18960;8628;6484;2320;2320;609;295;24;0;0;0;86;1;586.17;0;18
-48;'188;Costa Rica;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8421;4400;4491;4491;5162;4546;4546;4546;4546;5156;5156;5156;5520;6240;3568;2458;899;899;569;298;11;0;0;0;38;5;68;0;16
-48;'188;Costa Rica;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;455;455;455;319;94;465;793;793;246;230;705;1040;1022;798;1298;498;2285.62;2135;2859
-48;'188;Costa Rica;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;151;78;257;381;381;308;237;319;506;600;690;351;348;1004.35;936;990
-48;'188;Costa Rica;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;12;12;12;2;0;0;2;0;0;0;0;0;0;0
-48;'188;Costa Rica;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;4;0;0;3;0;0;0;0;0;0;0
-48;'188;Costa Rica;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;4134;5430;6900;6300;5900;5900;8200;13900;14569;13701;16473;22352;18319;36563;32676;25800;5909;14469;8826;27600;9320;18503;20147;16734;16973;10847;8723;8819;25145.03;21669;15323
-48;'188;Costa Rica;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;1318;1654;2393;2456;2321;2321;2984;3497;3742;3852;4080;5778;6814;7747;6526;11387;3887;8300;6285;9499;7746;11149;11746;9652;9375;8475;7219;7153;13545.48;13038;10269
-48;'188;Costa Rica;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;99;99;77;539;181;177;177;54;636;152;75;32;32;13;14;48;3;13
-48;'188;Costa Rica;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;27;27;43;345;159;141;141;92;280;129;106;113;68;19;60;48;8;71
-48;'188;Costa Rica;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;4800;3900;3900;4200;5500;5500;5500;5500;5761;5761;5761;2960;4200;1945;2197;1459;1459;1295;2275;2395;3722;2844;2469;1253;1919;3215;2742;2248
-48;'188;Costa Rica;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1736;1600;1312;1312;1146;1974;1974;1974;1974;2673;2673;2673;1048;2149;1360;1325;1083;1083;980;1513;1820;2524;1776;1741;1305;1747;2938.01;2676;1980
-48;'188;Costa Rica;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;73;73;2;5;1;1;1;24;631;47;15;16;3;0;2;32;0;2
-48;'188;Costa Rica;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;21;21;3;4;20;3;3;52;277;54;57;71;10;0;3;35;0;5
-48;'188;Costa Rica;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1500;2000;2000;4000;8400;9069;8201;10973;12214;8181;26425;26425;19300;3394;10834;7176;25950;7741;15868;16549;12651;12649;8336;7446;6879;19971.03;18781;12682
-48;'188;Costa Rica;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;856;1009;1009;1838;1523;1768;1878;2106;2549;3585;4518;4518;8216;2178;6117;5046;8260;6350;9163;9182;6906;6924;6684;5872;5319;9584.47;10283;8026
-48;'188;Costa Rica;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;75;534;180;176;176;30;5;65;20;14;28;12;12;14;3;2
-48;'188;Costa Rica;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;40;341;139;138;138;40;3;51;25;38;56;18;57;12;8;59
-48;'188;Costa Rica;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;330;380;800;0;0;0;0;0;0;0;0;4377;4377;4377;3291;2300;570;1438;191;191;284;360;1203;361;1480;42;24;21;1959;146;393
-48;'188;Costa Rica;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;107;95;70;0;0;0;0;0;0;0;0;556;556;556;960;1022;349;858;156;156;416;473;744;222;675;50;42;87;1023;79;263
-48;'188;Costa Rica;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;2;1;1;0;2;0;9
-48;'188;Costa Rica;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;4;2;1;0;1;0;7
-48;'188;Costa Rica;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;3804;5050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;1211;1559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;5000;;3000;2000;;14500;12500;9000;7600;17200;14400;13500;13500;18500;18500;19500;22400;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;38800;38800;38800;38800;44800;94800;119800;119800;287800;283800;283800;281000;281000;281000;281000;281000;281000;281000
-48;'188;Costa Rica;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;5400;4400;1300;6500;4300;4300;5200;4900;11700;11600;6600;7400;6000;8500;3400;3400;7900;2500;6900;7500;11500;13222;15849;12647;29861;13944;11700;11700;22600;19100;26256;20758;21289;41912;47855;77572;68722;59879;30401;34721;26899;24328;32767;37418;42367;30493;24168;21664;23361;16569;21772.47;17504.44;13760
-48;'188;Costa Rica;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;881;692;441;2225;1632;1154;1494;1451;2037;5321;3188;3108;1793;3348;1099;1099;3290;831;3500;2500;4112;5094;4606;3626;7914;2858;3479;3479;9050;7716;8926;7619;7719;17010;19471;23959;23998;31274;11609;21860;19844;15080;12830;14215;17033;13683;12089;12187;15279;9443;11562.3;10376.08;12539
-48;'188;Costa Rica;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;6600;1600;4500;4400;2400;6200;7200;2900;1300;800;3400;500;500;1500;1800;1800;1800;1800;8006;4323;3038;11903;12800;1700;1700;13900;16000;13543;16661;18923;24163;30413;36052;48774;44361;27937;51299;93741;115825;78359;76045;64843;63070;68820;70193;61510;54941;56023.71;49611;68722
-48;'188;Costa Rica;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;691;147;334;320;156;585;1000;300;97;70;251;67;67;173;247;247;247;247;731;863;282;2825;1427;116;116;1143;1792;1116;1336;1783;3125;3653;4575;7093;7209;4236;10003;15282;13909;15041;16011;13430;12787;15387;15067;11233;9458;13184.22;13568;14408
-48;'188;Costa Rica;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;4500;4500;3000;2600;10200;10400;9500;9500;14500;14500;10500;11400;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;9800;177800;173800;173800;171000;171000;171000;171000;171000;171000;171000
-48;'188;Costa Rica;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;5400;4400;1300;4400;2700;2700;2700;2100;4600;9200;5500;5800;2800;5600;900;900;300;300;2700;1300;2000;4743;5674;7372;10661;3344;5200;5200;15300;9100;11383;12410;10663;27118;27887;53828;50128;35879;18696;18450;18085;16445;12414;12553;12921;13963;15430;16548;16088;13636;14408.23;13075.44;12237
-48;'188;Costa Rica;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;881;692;441;1871;1401;886;886;636;1772;4542;2995;2778;1203;2567;439;439;242;242;2000;900;1800;3333;2611;2587;4738;1223;1966;1966;7587;5834;6764;6190;5664;13832;14664;18228;19059;25434;9286;17466;18076;14027;9349;9721;12018;11263;10770;11447;14223;9006;9990.38;9303.08;12321
-48;'188;Costa Rica;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;3;3;0;0;0;0;0;0;0;0;33;33;300;175;128;32;103;158;198;176;332;406;387;22;54;17;12;7;84;304
-48;'188;Costa Rica;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1;1;0;0;0;0;0;0;0;0;20;20;111;56;107;47;97;175;197;159;921;995;1135;58;62;36;37;85;139;332
-48;'188;Costa Rica;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;4500;4500;3000;2600;2200;2400;2500;2500;7500;7500;3500;4400;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;;;;;;;
-48;'188;Costa Rica;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;5400;4400;1300;4400;2700;2700;2700;2100;4600;9200;5500;5800;2800;5600;900;900;300;300;2700;1300;2000;4819;5894;7386;10661;3344;5200;5200;15300;9100;11567;12374;10639;27017;27786;53727;50027;36688;19475;19200;18768;17128;12219;12378;12750;13717;15144;16333;15827;13419;14178.23;12889.44;12094
-48;'188;Costa Rica;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;881;692;441;1871;1401;886;886;636;1772;4542;2995;2778;1203;2567;439;439;242;242;2000;900;1800;3353;2717;2617;4738;1223;1966;1966;7587;5834;6888;6122.1;5614;13748;14580;18144;18975;25906;9707;17795;18305;14256;8938;9372;11704;10777;10192;10982;13537;8486;9463.38;8734.08;11808
-48;'188;Costa Rica;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;3;3;0;0;0;0;0;0;0;0;18;18;285;160;46;22;86;121;161;168;315;396;356;5;46;9;0;1;74;299
-48;'188;Costa Rica;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1;1;0;0;0;0;0;0;0;0;8;8;99;44;31;33;52;79;101;138;867;971;902;5;39;11;0;66;107;308
-48;'188;Costa Rica;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;41;4;15;29;64;57
-48;'188;Costa Rica;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;54;7;21;43;83;92
-48;'188;Costa Rica;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;9;0;0;0;0
-48;'188;Costa Rica;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;11;0;0;0;0
-48;'188;Costa Rica;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;4500;4500;3000;2600;2200;2400;2500;2500;7500;7500;3500;4400;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;;;;;;;
-48;'188;Costa Rica;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1117;261;261;261;44;600;600;200;0;0;0;0;37;37;37;37;36;79;40;40;40;46;28;27;10;;;;;;;
-48;'188;Costa Rica;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;90;90;90;12;273;273;97;0;0;0;0;12;12;12;12;24;62;60;58;58;66;33;33;19;;;;;;;
-48;'188;Costa Rica;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;8;10;2;19;5;1;;;;;;;
-48;'188;Costa Rica;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;19;18;8;21;18;3;;;;;;;
-48;'188;Costa Rica;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;5400;4400;1300;4400;2700;2700;2700;2100;4600;9200;5500;5800;2800;5600;900;900;300;300;2700;1300;2000;2000;21;107;1500;1600;2000;2000;900;800;800;800;800;12666;12666;12666;12666;12666;12666;2;38;38;4;0;0;0;;;;;;;
-48;'188;Costa Rica;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;881;692;441;1871;1401;886;886;636;1772;4542;2995;2778;1203;2567;439;439;242;242;2000;900;1800;1800;7;40;461;461;691;691;371;305;305;305;305;5003;5003;5003;5003;5003;5003;8;19;19;4;0;0;0;;;;;;;
-48;'188;Costa Rica;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;345;345;;;;;;;
-48;'188;Costa Rica;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;894;894;;;;;;;
-48;'188;Costa Rica;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1616;5383;6927;8900;1700;2600;2600;14200;8300;10552;11573;9837;14290;15059;41000;37300;23084;5828;18256;17788;16148;12169;12350;12723;13707;15123;16292;15823;13404;14149.23;12825.44;12037
-48;'188;Costa Rica;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;2510;2440;4187;750;1002;1002;7119;5529;6395;5817;5308;8717;9549;13113;13944;20203;3966;17051;17552;13503;8868;9339;11671;10758;10154;10928;13530;8465;9420.38;8651.08;11716
-48;'188;Costa Rica;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;0;18;18;285;160;46;22;82;113;151;166;46;46;10;4;39;0;0;1;74;299
-48;'188;Costa Rica;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;0;0;0;0;0;0;0;0;0;8;8;99;44;31;33;48;60;83;130;59;59;5;2;30;0;0;66;107;308
-48;'188;Costa Rica;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;292;1080;1400;1800;800;102;0;0;0;0;0;184;120;40;260;47;8;15;82;82.44;20
-48;'188;Costa Rica;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;120;512;600;501;246;65;0;0;0;0;0;136;76;27;189;49;11;26;125;125.08;35
-48;'188;Costa Rica;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1616;5300;6927;8900;1300;2600;2600;14200;8300;5289;3603;2063;510;462;900;900;2456;5809;18237;17770;16140;12151;12151;12523;13663;14863;16245;15671;13361;14039.23;11870;11144
-48;'188;Costa Rica;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;2492;2440;4187;667;1002;1002;7119;5529;3479;2038;1184;319;269;394;394;2162;3946;17013;17512;13487;8832;9170;11538;10721;9965;10879;13408;8421;9277.38;8211;11366
-48;'188;Costa Rica;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;31;46;46;46;10;4;39;0;0;1;74;299
-48;'188;Costa Rica;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;12;59;59;59;5;2;30;0;0;66;107;308
-48;'188;Costa Rica;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;28;28;873;873
-48;'188;Costa Rica;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;18;18;315;315
-48;'188;Costa Rica;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;0;0;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-48;'188;Costa Rica;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;83;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-48;'188;Costa Rica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5263;7966;7482;12700;13197;38300;35600;20526;19;19;18;8;18;15;80;4;;;;;;;
-48;'188;Costa Rica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2916;3778;4004;7886;8680;12218;13304;17976;20;38;40;16;36;33;57;10;;;;;;;
-48;'188;Costa Rica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;285;160;46;22;82;82;120;120;0;0;0;;;;;;;
-48;'188;Costa Rica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;99;44;31;33;48;48;71;71;0;0;0;;;;;;;
-48;'188;Costa Rica;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;229;91;0;0;0;0;0;0;215;1;2;24;24;24;24;902;902;902;902;902;0;0;0;0;0;0;0;0;0;0;0
-48;'188;Costa Rica;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;110;47;0;0;0;0;0;0;188;0.1;1;16;16;16;16;676;676;676;676;676;0;0;0;0;0;0;0;0;0;0;0
-48;'188;Costa Rica;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;8000;8000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;175000;171000;171000;171000;171000;171000;171000;171000;171000;171000
-48;'188;Costa Rica;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;77;0;0;0;0;0;0;31;37;26;125;125;125;125;93;123;152;219;219;195;175;171;246;286;215;261;217;230;186;143
-48;'188;Costa Rica;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;17;0;0;0;0;0;0;64;68;51;100;100;100;100;204;255;347;447;447;411;349;314;486;578;465;686;520;527;569;513
-48;'188;Costa Rica;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;15;15;15;15;82;10;17;37;37;8;17;10;31;17;8;8;12;6;10;5
-48;'188;Costa Rica;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;12;12;12;12;76;14;45;96;96;21;54;24;233;53;23;25;37;19;32;24
-48;'188;Costa Rica;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;326;326;326;420;650;644;1;1;2;17;200;319;8;7;67;504;403;33;17;17;2;53
-48;'188;Costa Rica;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;112;112;112;194;319;316;1;1;4;34;403;116;14;9;73;306;253;44;30;33;3;81
-48;'188;Costa Rica;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;0;0;0;0;5;0;0;0;6;5.64;5.64
-48;'188;Costa Rica;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;1;1;1;3;0;0;0;13;13.48;13.48
-48;'188;Costa Rica;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;5000;;3000;2000;;10000;8000;6000;5000;7000;4000;4000;4000;4000;4000;9000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;29000;29000;29000;29000;35000;85000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000
-48;'188;Costa Rica;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2100;1600;1600;2500;2800;7100;2400;1100;1600;3200;2900;2500;2500;7600;2200;4200;6200;9500;8479;10175;5275;19200;10600;6500;6500;7300;10000;14873;8348;10626;14794;19968;23744;18594;24000;11705;16271;8814;7883;20353;24865;29446;16530;8738;5116;7273;2933;7364.24;4429;1523
-48;'188;Costa Rica;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;354;231;268;608;815;265;779;193;330;590;781;660;660;3048;589;1500;1600;2312;1761;1995;1039;3176;1635;1513;1513;1463;1882;2162;1429;2055;3178;4807;5731;4939;5840;2323;4394;1768;1053;3481;4494;5015;2420;1319;740;1056;437;1571.91;1073;218
-48;'188;Costa Rica;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;6600;1600;4500;4400;2400;6200;7200;2900;1300;800;3400;500;500;1500;1800;1800;1800;1800;8006;4120;3035;11900;12800;1700;1700;13900;16000;13543;16661;18923;24130;30380;35752;48599;44233;27905;51196;93583;115627;78183;75713;64437;62683;68798;70139;61493;54929;56016.71;49527;68418
-48;'188;Costa Rica;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;691;147;334;320;156;585;1000;300;97;70;251;67;67;173;247;247;247;247;731;769;281;2824;1427;116;116;1143;1792;1116;1336;1783;3105;3633;4464;7037;7102;4189;9906;15107;13712;14882;15090;12435;11652;15329;15005;11197;9421;13099.22;13429;14076
-48;'188;Costa Rica;1876;Paper and paperboard;5510;Production;t;2700;2700;2700;2700;2700;2700;2700;2700;2700;5000;5000;6000;6000;6500;6900;7300;8000;8000;11000;12000;15000;18000;13000;13000;13000;13000;13000;17000;18000;19000;19000;19000;19000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;254513;250221;250221;250221;250221;250221;250221;250221;250221;250221
-48;'188;Costa Rica;1876;Paper and paperboard;5610;Import quantity;t;8800;16100;23800;41400;48500;51600;53300;53400;80600;110700;108900;113800;131900;129300;92400;110900;97900;59100;90300;89100;131000;134400;127600;119800;119500;100100;46000;60700;158000;150200;183700;387090;243732;220425;221100;257600;259400;259400;352000;314300;302592;295012;346403;359857;360781;424846;455119;565915;204072;365845;415687;419202;453109;457344;449748;436583;461595;458982;454082;434220;449949.44;473013;418377
-48;'188;Costa Rica;1876;Paper and paperboard;5622;Import value;1000 USD;2246;3381;4687;7784;8811;9434;9953;9963;13671;19701;19792;22041;29038;44412;32313;39909;35548;22571;52164;52810;75171;67763;63145;65908;65189;62210;35902;41160;77360;72746;78179;171026;106192;100755;133886;120275;123026;123026;219239;221210;179734;171878;219028;245485;246555;247606;264973;360921;168662;309045;371730;364865;409446;389976;370853;343710;379597;429464;380132;333552;430528.62;535659;389452
-48;'188;Costa Rica;1876;Paper and paperboard;5910;Export quantity;t;;;;;100;300;300;0;200;400;1400;4000;2400;600;1300;500;800;500;4500;15500;10300;10500;15800;8400;8400;7300;6300;16400;16400;6000;8000;4562;3114;4058;7200;6600;4800;4800;13900;12100;12100;12100;12100;21885;21885;22918;22007;28316;17248;20863;17471;19196;21468;30791;49919;49184;25574;26129;26649;15103;26491.29;47042;44082
-48;'188;Costa Rica;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;35;168;162;0;238;427;1951;7957;804;763;594;489;756;443;3616;13217;11625;12275;15145;9559;10307;9675;7440;17027;17027;7000;7500;5889;4627;6026;8116;7258;6309;6309;8239;7230;7230;7230;7230;14885;14885;15000;14556;16777;10507;16143;11698;10389;13681;20598;29459;26686;16220;19579;20243;12468;23773.15;44646;30556
-48;'188;Costa Rica;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105185;111626;111626;111626;111626;111626;111626;111626;111626;111626
-48;'188;Costa Rica;2042;Graphic papers;5610;Import quantity;t;5000;6700;6500;8100;9200;10600;10600;10700;10800;15100;14100;14300;17000;18500;14000;16900;18400;16900;20000;19600;13300;12100;19100;17400;17100;18000;14700;15000;14000;26000;28300;189890;44221;22873;18300;21800;32000;32000;62100;56500;58886;58775;63658;69105;64599;122671;135603;128764;56302;73521;69316;70461;65481;86245;84743;51351;48597;48430;39137;32391;34186.93;57340;32109
-48;'188;Costa Rica;2042;Graphic papers;5622;Import value;1000 USD;1066;1329;1340;1838;1809;2055;2182;2192;2314;3404;3312;3646;4644;7895;6300;8171;8778;7721;13034;13177;10521;9695;13269;12040;11321;12132;10278;11614;9045;11245;12478;93361;26814;14094;14675;15342;31742;31742;44603;44808;48480;43544;46823;52876;52422;53345;59916;67665;47133;59097;70794;70469;66895;60522;55340;48605;46691;45207;40956;30861;36498.52;48881;43881
-48;'188;Costa Rica;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;26;169;0;300;500;500;1900;900;900;900;900;3081;3081;3746;3061;3924;1614;1898;1530;2438;1091;1029;924;1046;746;1158;1325;1599;1681.11;1436;1606
-48;'188;Costa Rica;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;24;176;0;310;710;710;1907;794;794;794;794;2193;2193;2125;1750;4071;1990;2887;2175;2251;1617;1485;1709;978;1008;1097;1365;2547;2996.43;2778;2807
-48;'188;Costa Rica;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22050;32731;32731;32731;32731;32731;32731;32731;32731;32731
-48;'188;Costa Rica;1671;Newsprint;5610;Import quantity;t;3700;5300;4600;5500;6100;7600;7400;7600;8000;11100;10700;10000;12400;12700;11200;11200;11900;14900;11800;12000;8000;7000;11400;11300;11000;12000;8500;12000;11000;15000;16800;15392;18801;18073;15300;14400;17000;17000;25000;26000;23230;23872;25030;22951;20356;47523;61852;41700;4680;26993;22281;25448;19478;21337;15674;11228;9521;7771;6010;3909;4199.8;3250;2602
-48;'188;Costa Rica;1671;Newsprint;5622;Import value;1000 USD;612;870;734;1005;843;1150;1154;1184;1311;1918;2023;1965;2524;4085;4262;4534;4967;6294;4898;5400;4600;4294;6454;6419;5700;6300;4822;6500;6000;8200;9433;7770;8592;8123;7638;7921;7854;7854;14888;16632;16384;15131;14487;13248;12583;16564;21642;21800;3464;17070;14975;17717;14154;12926;8941;6581;5553;4861;3997;2244;2849.19;2715;2210
-48;'188;Costa Rica;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;21;0;100;100;100;300;500;500;500;500;571;571;1265;1505;1000;658;308;279;450;82;48;12;174;219;471;377;761;647.17;172;122
-48;'188;Costa Rica;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;16;0;76;52;52;172;342;342;342;342;270;270;536;577;661;604;335;243;198;46;47;51;7;11;98;118;1318;1592.52;425;211
-48;'188;Costa Rica;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83135;78895;78895;78895;78895;78895;78895;78895;78895;78895
-48;'188;Costa Rica;1674;Printing and writing papers;5610;Import quantity;t;1300;1400;1900;2600;3100;3000;3200;3100;2800;4000;3400;4300;4600;5800;2800;5700;6500;2000;8200;7600;5300;5100;7700;6100;6100;6000;6200;3000;3000;11000;11500;174498;25420;4800;3000;7400;15000;15000;37100;30500;35656;34903;38628;46154;44243;75148;73751;87064;51622;46528;47035;45013;46003;64908;69069;40123;39076;40659;33127;28482;29987.13;54090;29507
-48;'188;Costa Rica;1674;Printing and writing papers;5622;Import value;1000 USD;454;459;606;833;966;905;1028;1008;1003;1486;1289;1681;2120;3810;2038;3637;3811;1427;8136;7777;5921;5401;6815;5621;5621;5832;5456;5114;3045;3045;3045;85591;18222;5971;7037;7421;23888;23888;29715;28176;32096;28413;32336;39628;39839;36781;38274;45865;43669;42027;55819;52752;52741;47596;46399;42024;41138;40346;36959;28617;33649.33;46166;41671
-48;'188;Costa Rica;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2;148;0;200;400;400;1600;400;400;400;400;2510;2510;2481;1556;2924;956;1590;1251;1988;1009;981;912;872;527;687;948;838;1033.94;1264;1484
-48;'188;Costa Rica;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;2;160;0;234;658;658;1735;452;452;452;452;1923;1923;1589;1173;3410;1386;2552;1932;2053;1571;1438;1658;971;997;999;1247;1229;1403.9;2353;2596
-48;'188;Costa Rica;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7867;15330;15330;15330;15330;15330;15330;15330;15330;15330
-48;'188;Costa Rica;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;730;600;644;1870;5558;7960;3406;7569;7569;4900;1458;3364;2488;2084;2396;1984;1585;1903;656;763;951;380;565;286;317
-48;'188;Costa Rica;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;730;692;787;859;4339;5932;2739;5971;5971;3648;1452;3360;2677;2455;2483;2044;1653;1828;508;957;1244;620;780.18;490;416
-48;'188;Costa Rica;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;525;525;525;190;7;11;3;540;152;194;287;6;24;36;3;0;16;43;17
-48;'188;Costa Rica;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402;402;402;402;223;16;22;11;470;38;77;684;9;35;21;22;0;15;93;44
-48;'188;Costa Rica;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;221;221;221;221;221;221;221;221;221
-48;'188;Costa Rica;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8164;20192;16600;18788;18978;19293;22679;25783;60829;61415;62000;30000;23000;28141;28108;27759;47498;50879;27015;25895;29602;23304;19324;19662.13;44241;20784
-48;'188;Costa Rica;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12563;15627;14818;16057;14872;15185;18873;22198;26197;28640;29322;29322;25772;32314;31905;30466;30133;28744;26487;24865;26454;24347;18090;20030.15;28944;27712
-48;'188;Costa Rica;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;815;1523;752;800;507;810;568;568;252;216;221;518;173;313;591;503;727.94;858;1090
-48;'188;Costa Rica;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;624;826;498;572;676;976;602;602;302;311;215;340;349;325;621;526;817;1461;1652
-48;'188;Costa Rica;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75193;63344;63344;63344;63344;63344;63344;63344;63344;63344
-48;'188;Costa Rica;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6541;16178;13300;16224;14055;13777;15515;15054;6750;4767;20164;20164;20164;16406;14821;15848;15426;16605;11205;12525;10294;8872;8778;9760;9563;8406
-48;'188;Costa Rica;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10738;13358;12666;15252;12682;12812;14823;14902;4613;3663;12895;12895;12895;20828;18392;19792;15419;16002;13709;15765;12935;11368;9907;12839;16732;13543
-48;'188;Costa Rica;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;1600;400;400;400;400;1170;1170;433;279;1934;442;769;680;880;605;571;404;348;330;338;354;335;290;363;377
-48;'188;Costa Rica;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658;1735;452;452;452;452;897;897;361;273;2615;694;1554;1319;981;1231;1050;759;622;613;653;604;703;571.9;799;900
-48;'188;Costa Rica;1675;Other paper and paperboard;5510;Production;t;2700;2700;2700;2700;2700;2700;2700;2700;2700;5000;5000;6000;6000;6500;6900;7300;8000;8000;11000;12000;15000;18000;13000;13000;13000;13000;13000;17000;18000;19000;19000;19000;19000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;149328;138595;138595;138595;138595;138595;138595;138595;138595;138595
-48;'188;Costa Rica;1675;Other paper and paperboard;5610;Import quantity;t;3800;9400;17300;33300;39300;41000;42700;42700;69800;95600;94800;99500;114900;110800;78400;94000;79500;42200;70300;69500;117700;122300;108500;102400;102400;82100;31300;45700;144000;124200;155400;197200;199511;197552;202800;235800;227400;227400;289900;257800;243706;236237;282745;290752;296182;302175;319516;437151;147770;292324;346371;348741;387628;371099;365005;385232;412998;410552;414945;401829;415762.51;415673;386268
-48;'188;Costa Rica;1675;Other paper and paperboard;5622;Import value;1000 USD;1180;2052;3347;5946;7002;7379;7771;7771;11357;16297;16480;18395;24394;36517;26013;31738;26770;14850;39130;39633;64650;58068;49876;53868;53868;50078;25624;29546;68315;61501;65701;77665;79378;86661;119211;104933;91284;91284;174636;176402;131254;128334;172205;192609;194133;194261;205057;293256;121529;249948;300936;294396;342551;329454;315513;295105;332906;384257;339176;302691;394030.1;486778;345571
-48;'188;Costa Rica;1675;Other paper and paperboard;5910;Export quantity;t;;;;;100;300;300;0;200;400;1400;4000;2400;600;1300;500;800;500;4500;15500;10300;10500;15800;8400;8400;7300;6300;16400;16400;6000;8000;4462;3088;3889;7200;6300;4300;4300;12000;11200;11200;11200;11200;18804;18804;19172;18946;24392;15634;18965;15941;16758;20377;29762;48995;48138;24828;24971;25324;13504;24810.18;45606;42476
-48;'188;Costa Rica;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;35;168;162;0;238;427;1951;7957;804;763;594;489;756;443;3616;13217;11625;12275;15145;9559;10307;9675;7440;17027;17027;7000;7500;5716;4603;5850;8116;6948;5599;5599;6332;6436;6436;6436;6436;12692;12692;12875;12806;12706;8517;13256;9523;8138;12064;19113;27750;25708;15212;18482;18878;9921;20776.72;41868;27749
-48;'188;Costa Rica;1676;Household and sanitary papers;5510;Production;t;;;;2700;2700;2700;2700;2700;2700;5000;5000;6000;6000;6500;6900;7300;8000;8000;11000;12000;15000;18000;13000;13000;13000;13000;13000;17000;18000;19000;19000;19000;19000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;5607;3424;3424;3424;3424;3424;3424;3424;3424;3424
-48;'188;Costa Rica;1676;Household and sanitary papers;5610;Import quantity;t;100;300;500;1000;1200;1200;1300;1300;1900;500;100;1700;100;200;200;200;200;200;2500;1600;900;2000;2000;2200;2300;2200;300;200;200;200;200;200;200;0;0;0;0;0;0;3600;3318;6211;4966;8878;5203;16305;19234;18900;18900;18900;17380;23891;22738;15851;17661;17670;17445;11883;10934;8644;7287.4;3051;134
-48;'188;Costa Rica;1676;Household and sanitary papers;5622;Import value;1000 USD;59;103;167;297;350;369;389;389;554;134;32;1226;118;250;250;250;250;250;3047;2580;1705;3750;2992;4023;3976;4620;406;301;301;301;301;301;301;0;0;0;0;0;0;3290;3203;5385;4527;8112;5078;8724;12077;11000;12740;12740;23253;33053;32026;22897;25943;25128;24263;19459;17532;12119;11462.95;7333;372
-48;'188;Costa Rica;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;1200;5000;6800;4800;4400;2400;2400;2300;3700;4700;4700;2000;2000;;;;;;;;;;;;;793;793;1055;1055;288;103;151;179;79;73;47;47;115;113;113;41;9;42;266;0
-48;'188;Costa Rica;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;1588;6866;8364;6369;5840;3372;3372;3300;3610;4600;4600;2000;2000;;;;;;;;;;;;;878;878;1170;1170;345;203;329;240;148;278;134;88;179;158;158;81;29;76;847;3
-48;'188;Costa Rica;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141676;133135;133135;133135;133135;133135;133135;133135;133135;133135
-48;'188;Costa Rica;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;283500;244000;240064;229748;277576;281672;290797;273485;287897;405590;122934;264123;328315;314583;354639;355024;347062;367275;395314;398458;403827;393004;408296.11;412436;385951
-48;'188;Costa Rica;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79284;166011;161429;127195;122227;167007;183115;187435;173769;181212;261140;96532;217836;275761;254029;303316;305286;288225;268753;307345;364102;320986;289849;381697.29;478675;344183
-48;'188;Costa Rica;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;11400;10600;10600;10600;10600;16122;16122;16228;16002;22831;12060;13951;15662;16563;20299;29695;48270;46874;24696;24852;25280;13493;24766.18;45338;42472
-48;'188;Costa Rica;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1099;5238;5268;5268;5268;5268;9737;9737;9628;9559;9512;5215;7923;9006;7658;11769;18894;26725;23997;14948;18272;18776;9837;20606.72;40980;27594
-48;'188;Costa Rica;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;3500;8600;15800;30300;35800;37300;38800;38800;63600;89600;90400;93800;108700;103200;76000;90500;76900;41000;61000;60800;108200;115200;99400;92800;91900;72000;20000;40000;138300;118000;150200;187000;189311;187552;190800;221700;214000;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;956;1662;2711;4816;5672;5977;6294;6294;9200;14016;14208;15903;20721;31042;23322;29535;25100;14000;26573;26722;52033;48917;38953;40646;39750;35635;12979;22684;61453;55000;60000;66364;68077;74661;105211;92341;79284;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;1100;200;1100;300;600;300;3100;8700;1500;3700;7600;1500;1500;1400;900;6200;6200;2000;3000;1462;88;889;4200;3300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;181;76;390;285;552;239;1824;5428;1000;3074;4824;945;1693;1700;998;3974;3974;1000;1000;1216;103;1350;3616;2448;1099;;;;;;;;;;;;;;;;;;;;;;;;;;
-48;'188;Costa Rica;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136946;130251;130251;130251;130251;130251;130251;130251;130251;130251
-48;'188;Costa Rica;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148221;196359;169000;181272;178020;199127;210227;216917;207377;207377;299500;65552;173865;220253;212420;266850;244712;183322;148184;138033;151139;133869;145478;155465.13;158455;130150
-48;'188;Costa Rica;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50611;105974;103049;101157;97526;111879;127854;129864;128574;128574;165737;42602;131876;169141;151184;204169;185442;128787;90992;93766;123524;98384;91389;131643.58;168720;103690
-48;'188;Costa Rica;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030;9034;8400;8400;8400;8400;11616;11616;11616;11616;19400;10320;12669;12527;15010;19454;28769;47522;45896;23553;22159;19397;9551;18053.07;42943;36387
-48;'188;Costa Rica;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;3358;3377;3377;3377;3377;7015;7015;7015;7015;6977;4098;6142;6260;5973;10942;17581;25154;22136;12647;14565;11646;5317;13116.79;36904;20653
-48;'188;Costa Rica;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;900;900;900;900;900;900;900;900;900
-48;'188;Costa Rica;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52184;69132;59500;48141;41552;68130;62589;63558;37786;49812;94078;47953;76553;93027;79431;62783;88476;87057;95365;108086;89801;124251;100735;101538.64;98631;95354
-48;'188;Costa Rica;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22999;48156;46827;19974;16021;46138;47215;49328;33602;40343;83027;45658;72619;91761;83056;76198;96096;100871;96325;106022;104182;108705;99390;114512.6;137283;106731
-48;'188;Costa Rica;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;580;686;460;1363;1366;629;915;915;123;327;434;279;356;777;216;230;426;611;349
-48;'188;Costa Rica;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;351;242;173;620;584;662;725;725;145;320;451;295;426;978;330;317;444.48;1317;450
-48;'188;Costa Rica;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2701;621;621;621;621;621;621;621;621;621
-48;'188;Costa Rica;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12630;16731;14400;9251;8476;8302;7220;7683;22979;21146;11322;9315;13511;12279;17444;17086;10906;7146;8441;9284;11411;7552;7114;9831.33;14053;10561
-48;'188;Costa Rica;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5350;11203;10894;5264;7680;7862;7108;6676;9904;9371;11779;8177;13191;12664;15332;15352;11868;6451;8110;9806;12854;9588;7932;11442.1;19062;13639
-48;'188;Costa Rica;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;2366;2200;2200;2200;2200;3492;3492;3492;3492;2032;370;649;2138;603;709;597;307;643;767;1041;5616;3700;5659.79;1777;5705
-48;'188;Costa Rica;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;1880;1891;1891;1891;1891;2109;2109;2109;2109;1887;522;1114;1925;913;661;989;1103;1395;1847;1925;6761;4183;6385.11;2744;6438
-48;'188;Costa Rica;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1457;1363;1363;1363;1363;1363;1363;1363;1363;1363
-48;'188;Costa Rica;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;965;1278;1100;1400;1700;2017;1636;2639;5343;9562;690;114;194;2756;5288;7920;10930;69537;115285;139911;146107;138155;139677;141461;141297;149886
-48;'188;Costa Rica;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;678;659;800;1000;1128;938;1567;1689;2924;597;95;150;2195;4457;7597;11880;52116;73326;97751;123542;104309;91138;124099;153610;120123
-48;'188;Costa Rica;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;36;4;4;82;35;13;2;7;56;20;875;51;12;627.32;7;31
-48;'188;Costa Rica;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;262;262;262;28;11;5;96;47;21;4;17;171;28;804;39;20;660.33;15;53
-48;'188;Costa Rica;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2045;2036;2036;2036;2036;2036;2036;2036;2036;2036
-48;'188;Costa Rica;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;200;500;1000;2000;2300;2500;2600;2600;4300;5500;4300;4000;6100;7400;2200;3300;2400;1000;6800;7100;8600;5100;7100;7400;8200;7900;11000;5500;5500;6000;5000;10000;10000;10000;12000;14100;13400;13400;6400;10200;324;278;203;202;182;12385;12385;12661;5936;9301;676;10267;10251;224;282;287;239;211;184;181;179;186;183
-48;'188;Costa Rica;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;165;287;469;833;980;1033;1088;1088;1603;2147;2240;1266;3555;5225;2441;1953;1420;600;9510;10331;10912;5401;7931;9199;10142;9823;12239;6561;6561;6200;5400;11000;11000;12000;14000;12592;12000;12000;8625;11683;856;722;671;1382;1620;11768;11768;21116;12257;19372;1922;7314;7209;1271;1345;1224;1298;696;658;723;869.86;770;1016
-48;'188;Costa Rica;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;100;300;300;0;200;400;1400;4000;1300;400;200;200;200;200;200;1800;2000;2000;3800;4500;4500;3600;1700;5500;5500;2000;3000;3000;3000;3000;3000;3000;3000;3000;600;600;600;600;600;1889;1889;1889;1889;1273;3471;4863;100;116;5;20;678;1149;19;6;3;2;2;2;4
-48;'188;Costa Rica;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;35;168;162;0;238;427;1951;7957;623;687;204;204;204;204;204;923;2261;2832;4481;5242;5242;4675;2832;8453;8453;4000;4500;4500;4500;4500;4500;4500;4500;4500;1094;1168;1168;1168;1168;2077;2077;2077;2077;2849;3099;5004;277;332;17;85;937;1532;106;52;21;55;94;41;152
-48;'188;Costa Rica;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70528;62306;65202;51956;74153;67979;73614
-48;'188;Costa Rica;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34276;32699;33436;35003;34762;44921;18347
-48;'188;Costa Rica;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561;2033;1108;987;1975;976;965
-48;'188;Costa Rica;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;333;712;2050;1264;869;806
-48;'188;Costa Rica;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1278;1327;683;761;1893;798;623
-48;'188;Costa Rica;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;5;1;38;39;0;180
-48;'188;Costa Rica;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;706;425;226;82;178;342
-48;'188;Costa Rica;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;328;711;2012;1225;869;626
-48;'188;Costa Rica;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985;1988;2123;1245;2944;3825;2040
-48;'188;Costa Rica;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25787;23791;24208;26253;23807;30559;7548
-48;'188;Costa Rica;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1784;2123;1988;1492;2073;2935;3163
-48;'188;Costa Rica;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;592;541;262;556;744;575
-48;'188;Costa Rica;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6936;5830;7684;5538;5917;5673;7050
-48;'188;Costa Rica;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;1192;159;421;452;450;128
-48;'188;Costa Rica;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;9
-48;'188;Costa Rica;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;5
-48;'188;Costa Rica;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-48;'188;Costa Rica;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-48;'188;Costa Rica;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54990;46575;48919;40090;58074;50937;56317
-48;'188;Costa Rica;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6681;5295;6539;5272;7667;11100;7768
-48;'188;Costa Rica;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;235;306;621;105;856;434
-48;'188;Costa Rica;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;10;12;12;12
-48;'188;Costa Rica;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3847;3522;3074;1983;3065;2777;3645
-48;'188;Costa Rica;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883;1494;1269;735;1004;1187;1510
-48;'188;Costa Rica;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259515;254685;268871;256344;305967;371852;383304
-48;'188;Costa Rica;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80388;66353;75971;73827;89309;117853;113174
-48;'188;Costa Rica;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2705;4148;3688;1699;1844;3038;2671
-48;'188;Costa Rica;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;2330;5947;11865;3580;57;105
-48;'188;Costa Rica;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19430;18209;18993;17838;22638;24670;25491
-48;'188;Costa Rica;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2636;1979;2399;1421;2104;3320;3752
-48;'188;Costa Rica;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85984;93333;102758;103659;111241;130225;159351
-48;'188;Costa Rica;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25794;15539;18838;16724;18204;13566;5677
-48;'188;Costa Rica;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90696;86075;87842;88241;118979;140922;118637
-48;'188;Costa Rica;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33431;31140;33599;33084;50669;86614;85774
-48;'188;Costa Rica;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60700;52920;55590;44907;51265;72997;77154
-48;'188;Costa Rica;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18298;15365;15188;10733;14752;14296;17866
-107;'384;Côte d'Ivoire;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194921;221482;226398;222737;295897;350156;300541
-107;'384;Côte d'Ivoire;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217903;215288;211139;180660;230174;222243;207327
-107;'384;Côte d'Ivoire;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;669;903;916;1515;1515;2722;3399;2724;3059;5323;4960;4284;9620;18219;14742;15205;15700;11015;11530;12155;13445;14650;20600;16650;26660;26660;61435;52192;33070;31716;31245;22943;26954;27058;41004;38513;35887;45118;70555;49486;49399;38230;38230;49872;49872;49872;47869;107086;104123;94321;86262;62516;74100;105195;83016;90373;125564;140684;142333;138291;187379;229253;198397
-107;'384;Côte d'Ivoire;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;33169;36787;59830;73277;74162;73872;87498;104941;133135;105384;111703;148130;284129;269550;200381;322115;354918;333996;387590;585996;359659;296861;291514;271969;225705;253763;245117;286268;246371;413998;292533;370091;404758;319097;362496;370171;228968;241070;217219;224204;188450;182886;227793;392882;447882;271493;314259;451224;247354;284621;255789;264872;336212;311579.2;228845;197559;145623;132709;124284;97009;133814;122338;111359
-107;'384;Côte d'Ivoire;1861;Roundwood;5516;Production;m3;7798285;8009448;8437046;8929084;9297565;9416492;9662869;10208701;11287990;10628741;11010780;11344903;12420899;11937791;11285243;12423027;12606167;11958344;12470086;12677506;11795003;11831843;11871023;11803384;11149843;10860374;10518703;10089320;10232332;11125441;10835389;10915127;11207984;11922489;11931280;11691961;11629262;11762379;11707477;11945021;11167092;10664962;10171380;10333120;10046979;10148373;10254400;10303900;10357743;11302768;11344873;11390617;11439877;11836542;11792511;11901164;11611829;11625286;11641122;11659234;11680803;11704412;11729979
-107;'384;Côte d'Ivoire;1861;Roundwood;5616;Import quantity;m3;200;100;400;200;200;200;800;500;700;200;200;200;200;200;200;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84000;37000;37000;10000;10000;10000;10000;10000;0;115;1;1047;1;105;88;106;368;350;741;3080;513;0;2;162;174
-107;'384;Côte d'Ivoire;1861;Roundwood;5622;Import value;1000 USD;9;8;32;30;30;30;109;65;100;23;23;23;23;23;23;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21000;9300;9300;2600;2600;2600;2600;2600;0;19;4;94;4;44;26;15;100;120;125;910;86;18;3;69;44
-107;'384;Côte d'Ivoire;1861;Roundwood;5916;Export quantity;m3;1019000;1179000;1445000;1858900;1904800;1822000;2172500;2620000;3326800;2510900;2932600;3168000;3497100;3034000;2419000;3275000;3229000;2699500;3199100;3055400;2233000;2275900;2253400;2203100;1394000;998000;617000;550000;550000;410974;398792;248742;320327;376727;311000;332000;107200;93000;105000;136000;127000;86000;73000;120000;142000;99200;130000;152046;144811;149406;116132;136600;290327;212614;152152;94063;28243;8534;3616;774;31115;8319;5634
-107;'384;Côte d'Ivoire;1861;Roundwood;5922;Export value;1000 USD;30605;33575;55722;64689;60765;60093;72436;86735;116457;84716;93327;127096;239639;216442;162798;265064;281359;257269;317890;490188;287124;222295;200458;184580;130717;121087;81070;72100;72100;100968;102922;62345;57186;47690;47622;40796;9736;10381;11202;21336;25089;19866;21500;36240;38000;29176;41104;69401;52433;57807;49876;57560;149815;103682.2;59105;34227;10660;3923;1138;135;16947;2411;2698
-107;'384;Côte d'Ivoire;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1281;0;0;0;134;108
-107;'384;Côte d'Ivoire;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;356;5;18;0;66;36
-107;'384;Côte d'Ivoire;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;737;88
-107;'384;Côte d'Ivoire;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;90;56;56
-107;'384;Côte d'Ivoire;1863;Roundwood, non-coniferous;5516;Production;m3;7798285;8009448;8437046;8929084;9297565;9416492;9662869;10208701;11287990;10628741;11010780;11344903;12420899;11937791;11285243;12423027;12606167;11958344;12470086;12677506;11795003;11831843;11871023;11803384;11149843;10860374;10518703;10089320;10232332;11125441;10835389;10915127;11207984;11922489;11931280;11691961;11629262;11762379;11707477;11945021;11167092;10664962;10171380;10333120;10046979;10148373;10254400;10303900;10357743;11302768;11344873;11390617;11439877;11836542;11792511;11901164;11611829;11625286;11641122;11659234;11680803;11704412;11729979
-107;'384;Côte d'Ivoire;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1799;513;0;2;28;66
-107;'384;Côte d'Ivoire;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;554;81;0;3;3;8
-107;'384;Côte d'Ivoire;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28243;8528;3616;774;31115;7582;5546
-107;'384;Côte d'Ivoire;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10660;3923;1138;135;16857;2355;2642
-107;'384;Côte d'Ivoire;1864;Wood fuel;5516;Production;m3;6247285;6299448;6352046;6405084;6458565;6512492;6566869;6621701;6676990;6732741;6728780;6799903;6858899;6899791;6899243;6884027;6923167;6900344;6993086;7316506;7199003;7167843;7204023;7255384;7211843;7195374;7263703;7353320;7445332;7577441;7858389;8138127;8437984;8674489;8781280;8739961;8688262;8616379;8569477;8529021;8552092;8580962;8615380;8655120;8699979;8740373;8785400;8834900;8888743;8946768;8988873;9034617;9083877;9136542;9192511;9200864;9211829;9225286;9241122;9259234;9280803;9304412;9329979
-107;'384;Côte d'Ivoire;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;4;39;39;39;62;0;0;0;0;0;0;117
-107;'384;Côte d'Ivoire;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;1;8;8;8;6;1;0;0;0;0;0;27
-107;'384;Côte d'Ivoire;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2260;2260;1239;686;686;54;614;508;508;1;14;14;500;1115;747;246
-107;'384;Côte d'Ivoire;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;14;21;21;6;14;14;14;1;1;1;19;101;49;18
-107;'384;Côte d'Ivoire;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77
-107;'384;Côte d'Ivoire;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23
-107;'384;Côte d'Ivoire;1628;Wood fuel, non-coniferous;5516;Production;m3;6247285;6299448;6352046;6405084;6458565;6512492;6566869;6621701;6676990;6732741;6728780;6799903;6858899;6899791;6899243;6884027;6923167;6900344;6993086;7316506;7199003;7167843;7204023;7255384;7211843;7195374;7263703;7353320;7445332;7577441;7858389;8138127;8437984;8674489;8781280;8739961;8688262;8616379;8569477;8529021;8552092;8580962;8615380;8655120;8699979;8740373;8785400;8834900;8888743;8946768;8988873;9034617;9083877;9136542;9192511;9200864;9211829;9225286;9241122;9259234;9280803;9304412;9329979
-107;'384;Côte d'Ivoire;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;40
-107;'384;Côte d'Ivoire;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;4
-107;'384;Côte d'Ivoire;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;14;500;1115;747;246
-107;'384;Côte d'Ivoire;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;19;101;49;18
-107;'384;Côte d'Ivoire;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;4;39;39;39;62;;;;;;;
-107;'384;Côte d'Ivoire;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;1;8;8;8;6;;;;;;;
-107;'384;Côte d'Ivoire;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2260;2260;1239;686;686;54;614;508;508;;;;;;;
-107;'384;Côte d'Ivoire;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;14;21;21;6;14;14;14;;;;;;;
-107;'384;Côte d'Ivoire;1865;Industrial roundwood;5516;Production;m3;1551000;1710000;2085000;2524000;2839000;2904000;3096000;3587000;4611000;3896000;4282000;4545000;5562000;5038000;4386000;5539000;5683000;5058000;5477000;5361000;4596000;4664000;4667000;4548000;3938000;3665000;3255000;2736000;2787000;3548000;2977000;2777000;2770000;3248000;3150000;2952000;2941000;3146000;3138000;3416000;2615000;2084000;1556000;1678000;1347000;1408000;1469000;1469000;1469000;2356000;2356000;2356000;2356000;2700000;2600000;2700300;2400000;2400000;2400000;2400000;2400000;2400000;2400000
-107;'384;Côte d'Ivoire;1865;Industrial roundwood;5616;Import quantity;m3;200;100;400;200;200;200;800;500;700;200;200;200;200;200;200;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84000;37000;37000;10000;10000;10000;10000;10000;0;114;0;1046;0;101;49;67;329;288;741;3080;513;0;2;162;57
-107;'384;Côte d'Ivoire;1865;Industrial roundwood;5622;Import value;1000 USD;9;8;32;30;30;30;109;65;100;23;23;23;23;23;23;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21000;9300;9300;2600;2600;2600;2600;2600;0;15;0;90;0;43;18;7;92;114;124;910;86;18;3;69;17
-107;'384;Côte d'Ivoire;1865;Industrial roundwood;5916;Export quantity;m3;1019000;1179000;1445000;1858900;1904800;1822000;2172500;2620000;3326800;2510900;2932600;3168000;3497100;3034000;2419000;3275000;3229000;2699500;3199100;3055400;2233000;2275900;2253400;2203100;1394000;998000;617000;550000;550000;410974;398792;248742;320327;376727;311000;332000;107200;93000;105000;136000;127000;86000;73000;120000;142000;99200;130000;149786;142551;148167;115446;135914;290273;212000;151644;93555;28242;8520;3602;274;30000;7572;5388
-107;'384;Côte d'Ivoire;1865;Industrial roundwood;5922;Export value;1000 USD;30605;33575;55722;64689;60765;60093;72436;86735;116457;84716;93327;127096;239639;216442;162798;265064;281359;257269;317890;490188;287124;222295;200458;184580;130717;121087;81070;72100;72100;100968;102922;62345;57186;47690;47622;40796;9736;10381;11202;21336;25089;19866;21500;36240;38000;29176;41104;69368;52400;57793;49855;57539;149809;103668.2;59091;34213;10659;3922;1137;116;16846;2362;2680
-107;'384;Côte d'Ivoire;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;0;1046;0;6;15;67;329;110;700;1281;0;0;0;134;31
-107;'384;Côte d'Ivoire;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;90;0;1;2;7;92;43;113;356;5;18;0;66;13
-107;'384;Côte d'Ivoire;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2356;2356;327;327;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1975;0;2748;0;0;644;169;0;6;0;0;0;737;88
-107;'384;Côte d'Ivoire;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;311;311;58;58;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;131;50;470;9;0.2;50;15;0;0;0;0;90;56;56
-107;'384;Côte d'Ivoire;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;0;1046;0;6;15;67;329;110;700;1281;0;0;0;134;31
-107;'384;Côte d'Ivoire;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;90;0;1;2;7;92;43;113;356;5;18;0;66;13
-107;'384;Côte d'Ivoire;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2356;2356;327;327;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1975;0;2748;0;0;644;169;0;6;0;0;0;737;88
-107;'384;Côte d'Ivoire;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;311;311;58;58;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;131;50;470;9;0.2;50;15;0;0;0;0;90;56;56
-107;'384;Côte d'Ivoire;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1551000;1710000;2085000;2524000;2839000;2904000;3096000;3587000;4611000;3896000;4282000;4545000;5562000;5038000;4386000;5539000;5683000;5058000;5477000;5361000;4596000;4664000;4667000;4548000;3938000;3665000;3255000;2736000;2787000;3548000;2977000;2777000;2770000;3248000;3150000;2952000;2941000;3146000;3138000;3416000;2615000;2084000;1556000;1678000;1347000;1408000;1469000;1469000;1469000;2356000;2356000;2356000;2356000;2700000;2600000;2700300;2400000;2400000;2400000;2400000;2400000;2400000;2400000
-107;'384;Côte d'Ivoire;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84000;37000;37000;10000;10000;10000;10000;10000;0;2;0;0;0;95;34;0;0;178;41;1799;513;0;2;28;26
-107;'384;Côte d'Ivoire;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21000;9300;9300;2600;2600;2600;2600;2600;0;1;0;0;0;42;16;0;0;71;11;554;81;0;3;3;4
-107;'384;Côte d'Ivoire;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409623;396436;246386;320000;376400;311000;332000;107200;93000;105000;136000;127000;86000;73000;120000;142000;99200;130000;149786;142551;146192;115446;133166;290273;212000;151000;93386;28242;8514;3602;274;30000;6835;5300
-107;'384;Côte d'Ivoire;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100632;102611;62034;57128;47632;47622;40796;9736;10381;11202;21336;25089;19866;21500;36240;38000;29176;41104;69368;52400;57662;49805;57069;149800;103668;59041;34198;10659;3922;1137;116;16756;2306;2624
-107;'384;Côte d'Ivoire;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84000;37000;37000;10000;10000;10000;10000;10000;0;0;0;0;0;85;34;0;0;0;0;0;198;0;2;0;0
-107;'384;Côte d'Ivoire;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21000;9300;9300;2600;2600;2600;2600;2600;0;0;0;0;0;39;16;0;0;0;0;0;62;0;3;0;0
-107;'384;Côte d'Ivoire;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409623;396436;246386;320000;376400;311000;332000;107200;93000;105000;136000;127000;86000;73000;120000;142000;99200;130000;149786;142551;146192;115446;133166;290273;212000;151000;93386;28242;8514;3602;274;30000;6782;5300
-107;'384;Côte d'Ivoire;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100632;102611;62034;57128;47632;47622;40796;9736;10381;11202;21336;25089;19866;21500;36240;38000;29176;41104;69368;52400;57662;49805;57069;149800;103668;59041;34198;10659;3922;1137;116;16756;2276;2624
-107;'384;Côte d'Ivoire;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;10;0;0;0;178;41;1799;315;0;0;28;26
-107;'384;Côte d'Ivoire;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;3;0;0;0;71;11;554;19;0;0;3;4
-107;'384;Côte d'Ivoire;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;53;0
-107;'384;Côte d'Ivoire;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30;0
-107;'384;Côte d'Ivoire;1868;Sawlogs and veneer logs;5516;Production;m3;1304000;1454000;1820000;2249000;2554000;2608000;2788000;3266000;4277000;3548000;3920000;4168000;5169000;4629000;3960000;5096000;5223000;4580000;4980000;4844000;4059000;4106000;4088000;3947000;3315000;3020000;2588000;2047000;2075000;2811000;2219000;1994000;1961000;2416000;2297000;2081000;2054000;2245000;2222000;2500000;2615000;2084000;1556000;1678000;1347000;1408000;1469000;1469000;1469000;2356000;2356000;2356000;2356000;2700000;2600000;2700300;2400000;2400000;2400000;2400000;2400000;2400000;2400000
-107;'384;Côte d'Ivoire;1868;Sawlogs and veneer logs;5616;Import quantity;m3;200;100;400;200;200;200;800;500;700;200;200;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;9;8;32;30;30;30;109;65;100;23;23;23;23;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1019000;1179000;1445000;1858900;1904800;1822000;2172500;2620000;3326800;2510900;2932600;3168000;3497100;3034000;2419000;3275000;3229000;2699500;3199100;3055400;2233000;2275900;2253400;2203100;1394000;998000;617000;550000;550000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;30605;33575;55722;64689;60765;60093;72436;86735;116457;84716;93327;127096;239639;216442;162798;265064;281359;257269;317890;490188;287124;222295;200458;184580;130717;121087;81070;72100;72100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1304000;1454000;1820000;2249000;2554000;2608000;2788000;3266000;4277000;3548000;3920000;4168000;5169000;4629000;3960000;5096000;5223000;4580000;4980000;4844000;4059000;4106000;4088000;3947000;3315000;3020000;2588000;2047000;2075000;2811000;2219000;1994000;1961000;2416000;2297000;2081000;2054000;2245000;2222000;2500000;2615000;2084000;1556000;1678000;1347000;1408000;1469000;1469000;1469000;2356000;2356000;2356000;2356000;2700000;2600000;2700300;2400000;2400000;2400000;2400000;2400000;2400000;2400000
-107;'384;Côte d'Ivoire;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;200;100;400;200;200;200;800;500;700;200;200;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;9;8;32;30;30;30;109;65;100;23;23;23;23;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1019000;1179000;1445000;1858900;1904800;1822000;2172500;2620000;3326800;2510900;2932600;3168000;3497100;3034000;2419000;3275000;3229000;2699500;3199100;3055400;2233000;2275900;2253400;2203100;1394000;998000;617000;550000;550000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;30605;33575;55722;64689;60765;60093;72436;86735;116457;84716;93327;127096;239639;216442;162798;265064;281359;257269;317890;490188;287124;222295;200458;184580;130717;121087;81070;72100;72100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1871;Other industrial roundwood;5516;Production;m3;247000;256000;265000;275000;285000;296000;308000;321000;334000;348000;362000;377000;393000;409000;426000;443000;460000;478000;497000;517000;537000;558000;579000;601000;623000;645000;667000;689000;712000;737000;758000;783000;809000;832000;853000;871000;887000;901000;916000;916000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;247000;256000;265000;275000;285000;296000;308000;321000;334000;348000;362000;377000;393000;409000;426000;443000;460000;478000;497000;517000;537000;558000;579000;601000;623000;645000;667000;689000;712000;737000;758000;783000;809000;832000;853000;871000;887000;901000;916000;916000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1630;Wood charcoal;5510;Production;t;67727;70813;74039;77412;80938;84626;88481;92512;96726;101133;104429;109984;115644;121232;126053;128641;133130;135882;142701;157896;165364;175355;187687;200487;208873;217937;230796;244596;258389;274203;289934;307388;325271;348272;349064;353034;359557;367267;370872;327000;327000;327000;400850;410381;420139;429585;439200;449100;459216;469540;478744;488128;497696;507451;517398;524153;530995;537927;544950;552064;559057;566137;573308
-107;'384;Côte d'Ivoire;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;26;9;2;4;4;25;12;34;56;52;180;332;367;244;502
-107;'384;Côte d'Ivoire;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;24;8;3;2;2;32;13;26;37;34;87;160;298;152;324
-107;'384;Côte d'Ivoire;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1800;10100;3000;1000;2000;5000;3000;0;0;0;0;1090;1090;1090;1090;2868;1792;3737;926;1400;1364;1637;2704;2423;3039;1600;3092;1908;1473;7955;3783
-107;'384;Côte d'Ivoire;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;593;357;4155;1012;237;325;1478;680;0;0;0;0;567;567;567;567;599;347;755;166;463;519;325;444;685;672;849;505;272;288;1064;768
-107;'384;Côte d'Ivoire;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80200;69200;69200;69200;69200;69200;69200;69200
-107;'384;Côte d'Ivoire;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;17;16;231;148;148;148;243;398;52;2;31;69;22;19;73;3
-107;'384;Côte d'Ivoire;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;16;14;49;220;220;220;227;190;8;2;38;37;13;9;35;2
-107;'384;Côte d'Ivoire;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;0;0;0;0;0;0;0;0;17;8;219;78;80;1342;144;139;202;183;183;175;973;110;137;137
-107;'384;Côte d'Ivoire;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;4;2;214;56;42;98;254;235;255;226;226;210;22;202;24;24
-107;'384;Côte d'Ivoire;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;16;231;143;143;143;143;347;1;1;28;65;17;12;65;1
-107;'384;Côte d'Ivoire;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;49;216;216;216;216;184;2;2;36;36;11;6;30;1
-107;'384;Côte d'Ivoire;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;35;37;1299;124;124;124;105;105;105;0;105;137;137
-107;'384;Côte d'Ivoire;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;17;3;59;231;231;231;202;202;202;0;202;23;23
-107;'384;Côte d'Ivoire;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80200;69200;69200;69200;69200;69200;69200;69200
-107;'384;Côte d'Ivoire;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887;3766;3766;3766;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;100;51;51;1;3;4;5;7;8;2
-107;'384;Côte d'Ivoire;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;146;146;146;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;11;6;6;0;2;1;2;3;5;1
-107;'384;Côte d'Ivoire;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;0;0;0;0;0;0;0;0;0;17;8;43;43;43;43;20;15;78;78;78;70;973;5;0;0
-107;'384;Côte d'Ivoire;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;4;2;39;39;39;39;23;4;24;24;24;8;22;0;1;1
-107;'384;Côte d'Ivoire;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;28;14;1;5;28
-107;'384;Côte d'Ivoire;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;27;5;0;15;19
-107;'384;Côte d'Ivoire;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;1;3;21
-107;'384;Côte d'Ivoire;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;2;10
-107;'384;Côte d'Ivoire;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;26;0;0;2;7
-107;'384;Côte d'Ivoire;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;26;0;0;13;9
-107;'384;Côte d'Ivoire;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1872;Sawnwood;5516;Production;m3;114000;138000;157000;195000;258000;285000;271000;290000;307000;338101;338000;345000;453000;512000;510000;584601;681601;665201;670201;664201;611000;748000;718000;679000;753000;765000;775000;784000;777000;753000;608000;623000;587000;708000;706000;596000;613000;623000;611000;603000;630000;620000;503000;503000;363000;442300;456200;600000;600000;700000;702000;704000;804000;875000;875000;875000;873000;874000;874000;853000;805150;773550;773550
-107;'384;Côte d'Ivoire;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;294;294;0;0;0;0;0;0;0;0;0;1;1;1;405;174;555;2461;316;125;80;278;33;659;286;516;394;95;615;386;198
-107;'384;Côte d'Ivoire;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;98;98;0;0;0;0;0;0;0;0;0;27;27;27;320;148;214;611;129;413;86;173;25;159;121;117;157;81;319;318;88
-107;'384;Côte d'Ivoire;1872;Sawnwood;5916;Export quantity;m3;39000;48000;56200;95700;153200;182000;183000;188100;169200;183800;163100;162600;238300;275100;212000;308000;346200;319700;294700;276500;265800;307900;383000;417800;472800;474800;460100;460100;455000;570000;470400;521087;529072;620372;605800;500500;493000;508000;479000;460000;396000;349000;216000;356922;379000;364238;326613;509780;268590;335870;203540;261990;178721;207453;153305;137865;126270;113243;112748;102044;102600;132400;132011
-107;'384;Côte d'Ivoire;1872;Sawnwood;5922;Export value;1000 USD;2512;3083;3925;7527;12153;12688;12790;13559;14686;15927;12758;13970;31640;40702;29785;44731;57437;62648;55550;72740;55841;57341;71200;69476;75089;100069;122020;122020;121000;209930;125658;233421;300396;223861;254595;278597;170784;179394;157221;158166;110204;97000;120000;241420;263100;163271;181482;279806;132990;147366;130519;135479;119241;131939;103468;92827;71713;70197;56303;45844;54013;54086;53842
-107;'384;Côte d'Ivoire;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2000;4000;4000;4000;4000;4000;2000;3000;3000;3000;3000;3000;3000
-107;'384;Côte d'Ivoire;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;109;109;0;0;0;0;0;0;0;0;0;1;1;1;38;25;487;2412;172;10;47;56;0;332;192;498;314;45;386;95;147
-107;'384;Côte d'Ivoire;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;18;18;0;0;0;0;0;0;0;0;0;27;27;27;27;8;148;568;36;1;26;15;0;15;63;100;94;13;108;65;55
-107;'384;Côte d'Ivoire;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10511;4172;4172;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1540;3990;3721;3453;2205;2506;1962;3363;748;44;600;487;98
-107;'384;Côte d'Ivoire;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2784;1007;1007;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;633;1577;1116;1175;720;648;559;973;303;148;361;321;77
-107;'384;Côte d'Ivoire;1633;Sawnwood, non-coniferous;5516;Production;m3;114000;138000;157000;195000;258000;285000;271000;290000;307000;338101;338000;345000;453000;512000;510000;584601;681601;665201;670201;664201;611000;748000;718000;679000;753000;765000;775000;784000;777000;753000;608000;611000;577000;698000;696000;596000;613000;623000;611000;603000;630000;620000;503000;503000;363000;442300;456200;600000;600000;700000;700000;700000;800000;871000;871000;871000;871000;871000;871000;850000;802150;770550;770550
-107;'384;Côte d'Ivoire;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;185;185;0;0;0;0;0;0;0;0;0;0;0;0;367;149;68;49;144;115;33;222;33;327;94;18;80;50;229;291;51
-107;'384;Côte d'Ivoire;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;80;80;0;0;0;0;0;0;0;0;0;0;0;0;293;140;66;43;93;412;60;158;25;144;58;17;63;68;211;253;33
-107;'384;Côte d'Ivoire;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;39000;48000;56200;95700;153200;182000;183000;188100;169200;183800;163100;162600;238300;275100;212000;308000;346200;319700;294700;276500;265800;307900;383000;417800;472800;474800;460100;460100;455000;570000;470400;510576;524900;616200;605800;500500;493000;508000;479000;460000;396000;349000;216000;356922;379000;364238;326613;509780;268590;335870;202000;258000;175000;204000;151100;135359;124308;109880;112000;102000;102000;131913;131913
-107;'384;Côte d'Ivoire;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;2512;3083;3925;7527;12153;12688;12790;13559;14686;15927;12758;13970;31640;40702;29785;44731;57437;62648;55550;72740;55841;57341;71200;69476;75089;100069;122020;122020;121000;209930;125658;230637;299389;222854;254595;278597;170784;179394;157221;158166;110204;97000;120000;241420;263100;163271;181482;279806;132990;147366;129886;133902;118125;130764;102748;92179;71154;69224;56000;45696;53652;53765;53765
-107;'384;Côte d'Ivoire;1634;Veneer sheets;5516;Production;m3;3000;3000;9900;9900;9900;35400;32100;37000;30000;42000;51000;46000;60000;57000;25000;38000;43000;38000;49000;122000;108000;100000;127000;115000;140000;160000;166000;179000;197000;206000;185000;195000;195000;205000;215000;222000;252000;274000;269000;297000;296000;247000;206000;206000;240000;261700;312500;396000;396000;396635;397235;252000;244000;224000;261000;314711;244740;245740;392033;294000;379000;378000;378000
-107;'384;Côte d'Ivoire;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;24;24;24;24;24;0;0;0;0;0;0;0;0;0;8;170;88;56;5;38;198;137;98;109;162;467;609;1078;388;63;537
-107;'384;Côte d'Ivoire;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;65;65;65;65;65;0;0;0;0;0;0;0;0;0;7;126;139;76;8;30;92;119;47;46;114;412;276;268;388;358;396
-107;'384;Côte d'Ivoire;1634;Veneer sheets;5916;Export quantity;m3;300;1200;1700;9900;9900;8100;16500;36700;24800;25300;51000;46000;60000;57000;25000;38000;36200;36400;46300;48200;47000;43500;53000;57500;72200;78900;75100;101100;61300;123000;84000;72071;110300;115900;95100;114800;155000;156000;153000;113000;121000;151000;121000;163000;181000;130500;143400;102819;55634;72970;64377;92744;56358;64796;81337;96824;52655;55914;48590;36286;43325;55536;62605
-107;'384;Côte d'Ivoire;1634;Veneer sheets;5922;Export value;1000 USD;28;113;169;1047;1047;894;1786;2917;1101;3628;3853;4780;9700;6500;3800;6570;7029;5985;7600;14568;10394;10025;10127;10270;12499;20043;28470;80614;43477;88600;61000;65213;38595;38645;50546;41790;41703;44875;39866;32688;43465;55000;75273;100000;128300;60324;71046;76211;37456;48345;47636;47371;45041;48881;45461;45852;39351;43050;46325;33390;42780;48058;43622
-107;'384;Côte d'Ivoire;1873;Wood-based panels;5516;Production;m3;1000;7300;7300;8000;9000;8300;11200;17300;18800;23200;28300;36000;38000;38000;39500;60000;76000;69000;59000;73000;45000;50000;62000;62000;80000;44000;45000;53000;44200;42000;37000;39000;40800;41400;58000;43000;61000;67000;59000;80000;81000;76000;62000;62000;61000;87700;82100;81000;78773;93767;161143;82000;58900;121000;119000;144153;105976;105976;145676;191672;200982;175452;175452
-107;'384;Côte d'Ivoire;1873;Wood-based panels;5616;Import quantity;m3;1200;1900;1400;900;900;1021;1437;1332;621;1248;1248;1248;1248;1248;1248;100;;;;;;;;;;;;;;;;57;759;759;759;100;100;100;0;0;0;0;0;336;336;336;753;2516;478;815;435;1706;1142;2976;1401;3891;5723;6448;6948;8116;15393;16330;24541
-107;'384;Côte d'Ivoire;1873;Wood-based panels;5622;Import value;1000 USD;202;289;238;122;122;147;162;186;88;180;180;180;180;180;180;16;;;;;;;;;;;;;;;;34;182;182;182;25;25;25;0;0;0;0;0;241;241;241;538;2520;498;1159;432;777;884;2387;1149;2332;2594;3315;3767;3784;7678;7671;10169
-107;'384;Côte d'Ivoire;1873;Wood-based panels;5916;Export quantity;m3;200;100;100;100;1700;1700;2800;5500;13400;6600;14300;18000;14800;18200;13700;19900;28600;20600;16300;14000;11800;15700;20000;18200;19800;27200;22900;27150;17870;23000;14000;12268;16253;11053;15300;17200;18300;14000;22000;40000;34000;38000;38000;39033;51033;63933;62833;31306;27196;42618;39340;47690;28798;27203;29353;35204;34765;39482;34032;35676;51830;34359;14286
-107;'384;Côte d'Ivoire;1873;Wood-based panels;5922;Export value;1000 USD;24;16;14;14;197;197;486;1730;891;1113;1765;2284;3150;5906;3998;5750;9093;8094;6550;8500;6300;7200;9729;7643;7400;12564;13557;11534;9794;14500;2953;8055;7961;4483;8487;8711;6380;4940;8250;12014;9692;11020;11020;12561;15821;16061;17966;19214;18850;22418;23665;23134;19873;21837;18262;22245;21576;13909;15846;14043;16002;13037;4868
-107;'384;Côte d'Ivoire;1640;Plywood and LVL;5516;Production;m3;1000;7300;7300;8000;9000;8300;10600;15000;15000;20000;24000;31000;33000;33000;35000;55000;72000;65000;54000;63000;25000;24000;33000;26000;44000;44000;45000;53000;44200;42000;37000;39000;40800;41400;58000;43000;61000;67000;59000;80000;81000;76000;62000;62000;61000;87700;82100;81000;78773;93767;161143;82000;58900;121000;119000;144153;105976;105976;145676;191672;200982;175452;175452
-107;'384;Côte d'Ivoire;1640;Plywood and LVL;5616;Import quantity;m3;300;800;600;200;200;200;200;200;100;100;100;100;100;100;100;100;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;417;160;268;317;85;1423;879;2108;1198;1849;4219;4373;4286;4975;8894;6362;10626
-107;'384;Côte d'Ivoire;1640;Plywood and LVL;5622;Import value;1000 USD;129;207;168;50;50;62;53;93;24;16;16;16;16;16;16;16;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;297;154;190;185;63;474;528;1398;697;1184;1902;2281;2261;2230;5337;3871;5234
-107;'384;Côte d'Ivoire;1640;Plywood and LVL;5916;Export quantity;m3;200;100;100;100;1700;1700;2800;5300;13000;6000;10000;13000;12600;15000;10800;17000;27100;19300;15000;14000;11800;15700;20000;18200;19800;27200;22900;27150;17870;23000;14000;12268;16200;11000;15300;17200;18300;14000;22000;40000;34000;38000;38000;39000;51000;63900;62800;29144;25449;40289;36779;45129;28771;27176;29342;35183;34753;39470;30393;32994;50089;33278;13127
-107;'384;Côte d'Ivoire;1640;Plywood and LVL;5922;Export value;1000 USD;24;16;14;14;197;197;486;1426;852;1055;1390;1791;2945;5117;3285;5037;8698;7686;6142;8500;6300;7200;9729;7643;7400;12564;13557;11534;9794;14500;2953;8055;7942;4464;8487;8711;6380;4940;8250;12014;9692;11020;11020;12550;15810;16050;17955;15734;16352;19207;19625;19094;19867;21831;18212;22225;21571;13904;12379;11449;14174;11767;3401
-107;'384;Côte d'Ivoire;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;600;2300;3800;3200;4300;5000;5000;5000;4500;5000;4000;4000;5000;10000;20000;26000;29000;36000;36000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;600;500;300;300;300;400;500;500;100;200;200;200;200;200;200;;;;;;;;;;;;;;;;;57;759;759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;35;26;19;20;20;33;36;24;12;14;14;14;14;14;14;;;;;;;;;;;;;;;;;34;182;182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;200;400;600;4300;5000;2200;3200;2900;2900;1500;1300;1300;;;;;;;;;;;;;0;53;53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;304;39;58;375;493;205;789;713;713;395;408;408;;;;;;;;;;;;;0;19;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;759;100;100;100;0;0;0;0;0;8;8;8;8;325;121;391;84;43;31;635;112;1663;1176;1364;2058;2073;5856;8254;9246
-107;'384;Côte d'Ivoire;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;25;25;25;0;0;0;0;0;7;7;7;7;333;203;821;125;62;170;578;264;875;515;609;866;837;1967;3101;3235
-107;'384;Côte d'Ivoire;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;33;33;33;33;2162;1747;2329;2561;2561;27;27;11;21;12;12;3639;2682;1741;1081;1159
-107;'384;Côte d'Ivoire;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;11;11;11;11;3480;2498;3211;4040;4040;6;6;50;20;5;5;3467;2594;1828;1270;1467
-107;'384;Côte d'Ivoire;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;4;12;7;4;88;33;22;48;40
-107;'384;Côte d'Ivoire;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;1;6;3;5;88;18;10;4;9
-107;'384;Côte d'Ivoire;1874;Fibreboard;5616;Import quantity;m3;300;600;500;400;400;421;737;632;421;948;948;948;948;948;948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;328;328;328;2031;89;107;266;240;230;228;87;367;321;707;516;1035;621;1666;4629
-107;'384;Côte d'Ivoire;1874;Fibreboard;5622;Import value;1000 USD;38;56;51;52;52;52;73;69;52;150;150;150;150;150;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;234;2033;105;153;244;241;185;408;187;267;174;420;552;699;364;695;1691
-107;'384;Côte d'Ivoire;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;328;328;328;75;12;17;17;17;17;17;9;18;67;45;14;45;18;85;44
-107;'384;Côte d'Ivoire;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;234;80;13;14;14;14;14;14;29;11;52;100;181;27;7;168;34
-107;'384;Côte d'Ivoire;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;41;70;229;203;193;208;77;347;246;616;446;741;547;1480;4399
-107;'384;Côte d'Ivoire;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;63;108;199;196;140;381;155;252;110;303;298;593;312;488;1595
-107;'384;Côte d'Ivoire;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-107;'384;Côte d'Ivoire;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;36;20;20;20;20;3;1;2;8;46;56;249;56;101;186
-107;'384;Côte d'Ivoire;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;29;31;31;31;31;13;3;4;12;17;73;79;45;39;62
-107;'384;Côte d'Ivoire;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;600;500;400;400;421;737;632;421;948;948;948;948;948;948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;38;56;51;52;52;52;73;69;52;150;150;150;150;150;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;6000;4000;4000;4000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-107;'384;Côte d'Ivoire;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;301;249;249;800;500;100;0;0;0;0;0;379;379;379;379;2688;2491;3669;2766;2924;3435;1668;2270;3002;5285;2961;5397;6589;6544;8438;12037
-107;'384;Côte d'Ivoire;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;215;174;238;387;109;54;0;0;0;0;0;125;125;125;125;1809;1467;2190;1966;1668;2096;1202;1588;2087;4091;2542;4339;4692;6249;10784;12159
-107;'384;Côte d'Ivoire;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2355;1409;1409;700;200;200;0;0;0;0;0;0;2984;2984;2984;2984;11302;7381;6234;3587;1354;3278;3766;3322;4549;3900;106;5957;4850;4946;9544;12983
-107;'384;Côte d'Ivoire;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;205;205;176;38;38;0;0;0;0;0;0;410;410;410;410;1784;768;902;542;448;1371;572;431;912;1038;13;503;322;594;386;1648
-107;'384;Côte d'Ivoire;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;252;200;200;400;100;100;0;0;0;0;0;327;327;327;327;2558;2428;2836;2760;2918;3335;1397;1921;2653;5199;2951;5392;6575;6535;7974;11785
-107;'384;Côte d'Ivoire;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;197;156;220;332;54;54;0;0;0;0;0;106;106;106;106;1771;1434;1937;1953;1655;1957;1157;1445;1944;4053;2532;4331;4664;6228;10607;12049
-107;'384;Côte d'Ivoire;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;1421;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;816;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;252;200;200;400;100;100;0;0;0;0;0;327;327;327;327;2509;2379;2835;2759;2917;3334;1396;1920;2651;5199;2951;5287;6470;6531;7970;11781
-107;'384;Côte d'Ivoire;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;197;156;220;332;54;54;0;0;0;0;0;106;106;106;106;1724;1387;1936;1952;1654;1956;1156;1444;1906;4053;2532;4270;4603;6194;10573;12015
-107;'384;Côte d'Ivoire;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;1421;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;816;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898;1898;1898;1898;1898;1898;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1015;1015;1015;1015;1015;1015;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;252;200;200;400;100;100;0;0;0;0;0;327;327;327;327;611;481;904;828;986;1403;1396;1920;2651;5199;2951;5287;6470;6531;7970;11781
-107;'384;Côte d'Ivoire;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;197;156;220;332;54;54;0;0;0;0;0;106;106;106;106;709;372;894;910;612;914;1156;1444;1906;4053;2532;4270;4603;6194;10573;12015
-107;'384;Côte d'Ivoire;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;1421;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;816;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;100;100;100;384;486;486;153;264;120;120;337;152;72;456
-107;'384;Côte d'Ivoire;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;63;63;63;231;342;342;85;157;92;92;212;97;72;405
-107;'384;Côte d'Ivoire;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;139;200;200;400;100;100;0;0;0;0;0;0;0;0;0;46;46;176;296;870;1003;517;1409;2497;4929;2658;5069;6132;6379;7897;11324
-107;'384;Côte d'Ivoire;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;95;156;220;332;54;54;0;0;0;0;0;0;0;0;0;50;34;195;335;523;657;445;1077;1820;3887;2281;4134;4388;6096;10500;11609
-107;'384;Côte d'Ivoire;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;1421;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;816;0;0;0;0;0;0;0;0;0;0
-107;'384;Côte d'Ivoire;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;173;98;1;0;1;1
-107;'384;Côte d'Ivoire;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;159;44;3;1;1;1
-107;'384;Côte d'Ivoire;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-107;'384;Côte d'Ivoire;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;113;0;0;0;0;0;0;0;0;0;0;327;327;327;327;565;393;628;432;9;9;393;25;1;;;;;;;
-107;'384;Côte d'Ivoire;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;102;0;0;0;0;0;0;0;0;0;0;106;106;106;106;659;324;636;512;26;26;369;25;1;;;;;;;
-107;'384;Côte d'Ivoire;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;1;1;1;1;1;1;2;0;0;105;105;4;4;4
-107;'384;Côte d'Ivoire;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;1;1;1;1;1;1;38;0;0;61;61;34;34;34
-107;'384;Côte d'Ivoire;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;748;253;50;242;229;229
-107;'384;Côte d'Ivoire;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;318;144;26;236;205;205
-107;'384;Côte d'Ivoire;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;6000;4000;4000;4000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-107;'384;Côte d'Ivoire;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;400;400;0;0;0;0;0;0;52;52;52;52;130;63;833;6;6;100;271;349;349;86;10;5;14;9;464;252
-107;'384;Côte d'Ivoire;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;55;55;0;0;0;0;0;0;19;19;19;19;38;33;253;13;13;139;45;143;143;38;10;8;28;21;177;110
-107;'384;Côte d'Ivoire;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2355;1409;1409;700;200;200;0;0;0;0;0;0;2984;2984;2984;2984;11302;7381;6234;3587;1091;1857;3766;3322;4549;3900;106;5957;4850;4946;9544;12983
-107;'384;Côte d'Ivoire;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;205;205;176;38;38;0;0;0;0;0;0;410;410;410;410;1784;768;902;542;266;555;572;431;912;1038;13;503;322;594;386;1648
-107;'384;Côte d'Ivoire;1876;Paper and paperboard;5610;Import quantity;t;1900;1700;2900;5400;5400;12200;17900;14600;15400;26000;24100;14100;38600;45700;32600;32600;32600;22700;20800;21000;21300;22500;31600;24700;37500;37300;97300;74400;53200;57000;55800;43397;53788;51678;56300;67100;61000;77200;90298;67502;68800;69400;69400;70799;70799;70799;70799;101097;122088;98128;81987;79808;87625;107664;105449;111857;151269;146521;150503;164469;182634;180057;168010
-107;'384;Côte d'Ivoire;1876;Paper and paperboard;5622;Import value;1000 USD;458;606;646;1363;1363;2545;3128;2473;2871;5120;4757;4081;9417;18016;14539;15189;15700;11015;11530;12155;13445;14650;20600;16650;26660;26660;61435;52192;33070;31716;31245;22391;26248;26393;40373;38036;35688;45039;49555;40186;40099;35630;35630;46849;46849;46849;46849;102418;101763;90134;83500;59362;70694;101040;79904;85590;118475;132997;133413;129244;172199;209646;174991
-107;'384;Côte d'Ivoire;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;100;100;100;0;0;0;0;0;0;0;0;1548;1548;1548;1548;3552;4310;9045;3325;525;840;5382;1757;878;570;605;3058;2927;5720;15068;2986
-107;'384;Côte d'Ivoire;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;56;56;56;0;0;0;0;0;0;0;0;1684;1684;1684;1684;4205;4508;6814;3329;375;254;4089;1439;556;387;542;3454;2981;2988;3272;3889
-107;'384;Côte d'Ivoire;2042;Graphic papers;5610;Import quantity;t;100;200;200;2000;2000;500;800;600;500;900;1900;600;3500;6000;5000;5000;5000;5000;5000;5000;5000;5600;5600;5400;9800;9600;10600;12700;11600;11600;10400;9100;10424;11078;7000;6800;14700;19800;21899;13901;11700;8100;8100;15596;15596;15596;15596;25730;25828;25373;22447;26649;30865;34770;28852;30312;37611;38645;39811;41580;39210;41624;44209
-107;'384;Côte d'Ivoire;2042;Graphic papers;5622;Import value;1000 USD;22;26;28;535;535;120;135;95;99;176;229;121;1062;3825;3539;3589;3600;3615;3630;3655;3945;4550;4400;4650;9460;9460;10000;11377;10764;10959;10518;7545;7140;7429;6743;6063;11317;14525;13931;10133;8256;4902;4902;10960;10960;10960;10960;28721;24788;25207;22876;23780;26394;31739;23273;23313;29419;33361;32809;32333;32710;44215;42731
-107;'384;Côte d'Ivoire;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;100;100;100;0;0;0;0;0;0;0;0;602;602;602;602;927;675;322;494;429;217;392;380;71;113;95;97;87;3383;12808;672
-107;'384;Côte d'Ivoire;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;56;56;56;0;0;0;0;0;0;0;0;509;509;509;509;996;642;389;348;335;81;249;414;13;13;15;14;15;103;253;150
-107;'384;Côte d'Ivoire;1671;Newsprint;5610;Import quantity;t;100;200;200;2000;2000;500;800;600;500;900;1900;600;1900;1500;800;800;800;800;800;800;1000;1600;1600;1400;1400;1200;2200;4300;3200;3200;2000;;1424;1800;5000;3500;2000;2800;3200;1800;1200;1200;1200;2431;2431;2431;2431;3754;3651;4514;3393;5458;3188;4273;4481;3526;2956;4301;4532;3555;2730;869;327
-107;'384;Côte d'Ivoire;1671;Newsprint;5622;Import value;1000 USD;22;26;28;535;535;120;135;95;99;176;229;121;373;478;339;339;340;345;350;355;445;750;500;650;660;660;1200;2577;1964;2159;1718;;545;834;3638;2525;880;1148;1375;788;682;682;682;1169;1169;1169;1169;3637;2945;3325;2948;3446;1912;3647;3372;2518;2350;3667;3592;2306;1931;1262;369
-107;'384;Côte d'Ivoire;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;602;602;602;602;602;17;275;314;314;3;3;11;11;11;11;0;11;11;0;0
-107;'384;Côte d'Ivoire;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;509;509;509;509;509;103;294;231;231;2;2;1;1;1;1;2;2;2;0;0
-107;'384;Côte d'Ivoire;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;1600;4500;4200;4200;4200;4200;4200;4200;4000;4000;4000;4000;8400;8400;8400;8400;8400;8400;8400;9100;9000;9278;2000;3300;12700;17000;18699;12101;10500;6900;6900;13165;13165;13165;13165;21976;22177;20859;19054;21191;27677;30497;24371;26786;34655;34344;35279;38025;36480;40755;43882
-107;'384;Côte d'Ivoire;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;689;3347;3200;3250;3260;3270;3280;3300;3500;3800;3900;4000;8800;8800;8800;8800;8800;8800;8800;7545;6595;6595;3105;3538;10437;13377;12556;9345;7574;4220;4220;9791;9791;9791;9791;25084;21843;21882;19928;20334;24482;28092;19901;20795;27069;29694;29217;30027;30779;42953;42362
-107;'384;Côte d'Ivoire;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;100;100;100;0;0;;;;;;;;;;;325;658;47;180;115;214;389;369;60;102;84;97;76;3372;12808;672
-107;'384;Côte d'Ivoire;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;56;56;56;0;0;;;;;;;;;;;487;539;95;117;104;79;247;413;12;12;14;12;13;101;253;150
-107;'384;Côte d'Ivoire;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8130;8943;5787;0;3300;3300;3124;3124;3124;3124;1731;649;1884;147;538;544;72;745;66;61;62;109;173;330;141;522
-107;'384;Côte d'Ivoire;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5652;5305;3948;0;1783;1783;1890;1890;1890;1890;1403;522;1501;159;459;595;96;479;60;83;67;86;142;478;175;539
-107;'384;Côte d'Ivoire;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;1;1;1;1;0;2;0;1;0
-107;'384;Côte d'Ivoire;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;0;0;0;0
-107;'384;Côte d'Ivoire;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4435;4878;3157;4700;1800;1800;7009;7009;7009;7009;14385;14090;12565;12894;15483;16752;24538;17564;21344;28102;29045;30476;31804;29945;32900;39625
-107;'384;Côte d'Ivoire;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3357;3151;2345;3678;1059;1059;4909;4909;4909;4909;16282;13114;12716;12676;14793;14762;21276;14028;15648;21123;24875;24358;23992;23596;32506;37251
-107;'384;Côte d'Ivoire;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;567;14;68;111;164;352;361;12;77;77;97;59;217;842;671
-107;'384;Côte d'Ivoire;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;466;57;26;104;65;224;407;10;12;12;7;6;28;115;135
-107;'384;Côte d'Ivoire;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4435;4878;3157;5800;1800;1800;3032;3032;3032;3032;5860;7438;6410;6013;5170;10381;5887;6062;5376;6492;5237;4694;6048;6205;7714;3735
-107;'384;Côte d'Ivoire;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4368;4100;3052;3896;1378;1378;2992;2992;2992;2992;7399;8207;7665;7093;5082;9125;6720;5394;5087;5863;4752;4773;5893;6705;10272;4572
-107;'384;Côte d'Ivoire;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;91;33;112;4;38;25;7;47;24;6;0;15;3155;11965;1
-107;'384;Côte d'Ivoire;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;73;38;91;0;14;23;6;2;0;2;0;7;73;138;15
-107;'384;Côte d'Ivoire;1675;Other paper and paperboard;5610;Import quantity;t;1800;1500;2700;3400;3400;11700;17100;14000;14900;25100;22200;13500;35100;39700;27600;27600;27600;17700;15800;16000;16300;16900;26000;19300;27700;27700;86700;61700;41600;45400;45400;34297;43364;40600;49300;60300;46300;57400;68399;53601;57100;61300;61300;55203;55203;55203;55203;75367;96260;72755;59540;53159;56760;72894;76597;81545;113658;107876;110692;122889;143424;138433;123801
-107;'384;Côte d'Ivoire;1675;Other paper and paperboard;5622;Import value;1000 USD;436;580;618;828;828;2425;2993;2378;2772;4944;4528;3960;8355;14191;11000;11600;12100;7400;7900;8500;9500;10100;16200;12000;17200;17200;51435;40815;22306;20757;20727;14846;19108;18964;33630;31973;24371;30514;35624;30053;31843;30728;30728;35889;35889;35889;35889;73697;76975;64927;60624;35582;44300;69301;56631;62277;89056;99636;100604;96911;139489;165431;132260
-107;'384;Côte d'Ivoire;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;946;946;946;2625;3635;8723;2831;96;623;4990;1377;807;457;510;2961;2840;2337;2260;2314
-107;'384;Côte d'Ivoire;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1175;1175;1175;1175;3209;3866;6425;2981;40;173;3840;1025;543;374;527;3440;2966;2885;3019;3739
-107;'384;Côte d'Ivoire;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2300;2300;2796;2796;2796;2796;4044;4832;4573;3505;1177;5491;5809;5310;6921;9606;9893;10064;13029;15654;15267;15950
-107;'384;Côte d'Ivoire;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2861;2164;2164;3007;3007;3007;3007;5793;5940;6050;4841;1398;7435;7485;6448;7963;11245;12917;12516;15027;19355;24285;23056
-107;'384;Côte d'Ivoire;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;871;10;3;2;6;10;3;3;5;5;0;1;52;1;1
-107;'384;Côte d'Ivoire;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;997;8;3;0;7;6;11;11;4;4;4;2;47;6;7
-107;'384;Côte d'Ivoire;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57400;68399;53601;48800;53000;53000;50382;50382;50382;50382;67236;84253;61715;48494;51846;50819;65444;70990;74243;103761;97596;99906;109324;126934;122300;107138
-107;'384;Côte d'Ivoire;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30514;35624;30053;24169;23751;23751;28790;28790;28790;28790;60431;61995;48680;45452;33881;36464;55583;49898;51469;75692;83826;83029;77784;113794;136154;103580
-107;'384;Côte d'Ivoire;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879;879;879;879;2577;2429;8399;2823;52;575;4518;1217;795;443;498;2952;2823;2260;2241;2287
-107;'384;Côte d'Ivoire;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1136;1136;1136;1136;3073;2599;6141;2928;27;153;3700;976;527;365;520;3383;2823;2611;2858;3520
-107;'384;Côte d'Ivoire;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1400;1200;2100;2700;2700;9200;13500;11700;11900;19900;17400;11700;27000;25000;16300;16300;16300;17700;15800;16000;16300;16900;26000;19300;27700;27700;86700;61700;41600;45400;45400;34297;43364;40600;49300;60300;46300;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;288;383;408;546;546;1601;1975;1465;1617;3266;2765;2013;5389;8301;6000;6300;6600;7400;7900;8500;9500;10100;16200;12000;17200;17200;51435;40815;22306;20757;20727;14846;19108;18964;33630;31973;24371;;;;;;;;;;;;;;;;;;;;;;;;;;
-107;'384;Côte d'Ivoire;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40815;48637;38113;34700;38700;38700;36322;36322;36322;36322;49053;59929;34620;24837;35843;30914;39363;39351;47586;64173;56006;52777;62086;77168;61138;67675
-107;'384;Côte d'Ivoire;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17438;20358;17174;13812;15495;15495;16314;16314;16314;16314;39060;39008;22895;19064;19078;18569;27420;24432;26047;38655;39973;32336;33751;58954;55347;45193
-107;'384;Côte d'Ivoire;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;6077;478;21;83;141;331;331;331;331;223;89;25;41;0
-107;'384;Côte d'Ivoire;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;3172;449;12;51;64;187;187;187;187;128;66;10;41;0
-107;'384;Côte d'Ivoire;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8234;9811;7689;7000;4200;4200;5729;5729;5729;5729;8760;14221;16132;12185;10830;13194;15684;21080;12040;14191;14280;14303;16199;15265;17883;10573
-107;'384;Côte d'Ivoire;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705;8996;7589;6103;2252;2252;6801;6801;6801;6801;11698;14474;16295;14186;9628;11150;16991;16102;12981;15336;17965;16540;18449;23033;28427;22107
-107;'384;Côte d'Ivoire;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;372;93;4;385;114;329;329;24;24;44;5;112;6;10
-107;'384;Côte d'Ivoire;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;12;12;984;93;0;62;27;320;320;124;124;34;23;122;13;37
-107;'384;Côte d'Ivoire;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5881;7008;5492;5000;8000;8000;7972;7972;7972;7972;9410;10084;10912;11306;5007;6698;10373;10517;14278;25165;26605;32297;30345;34004;42167;27393
-107;'384;Côte d'Ivoire;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4236;4945;4172;3355;5105;5105;5547;5547;5547;5547;9643;8490;9458;12090;5063;6710;11153;9328;12265;21586;25363;33749;25082;31358;51268;35031
-107;'384;Côte d'Ivoire;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;864;864;864;2465;2317;1946;2245;18;70;4226;520;117;70;125;2667;2711;2105;2176;2259
-107;'384;Côte d'Ivoire;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1130;1130;1130;1130;2965;2491;1980;2377;3;12;3581;441;18;52;207;3219;2732;2477;2802;3481
-107;'384;Côte d'Ivoire;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470;2943;2307;2100;2100;2100;359;359;359;359;13;19;51;166;166;13;24;42;339;232;705;529;694;497;1112;1497
-107;'384;Côte d'Ivoire;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135;1325;1118;899;899;899;128;128;128;128;30;23;32;112;112;35;19;36;176;115;525;404;502;449;1112;1249
-107;'384;Côte d'Ivoire;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;4;7;9;37;37;37;18;18;18;18;18;18;18;18
-107;'384;Côte d'Ivoire;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;5;9;12;28;28;28;2;2;2;2;2;2;2;2
-107;'384;Côte d'Ivoire;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;400;300;600;700;700;2500;3600;2300;3000;5200;4800;1800;8100;14700;11300;11300;11300;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;6000;6000;6000;2025;2025;2025;2025;4087;7175;6467;7541;136;450;1641;297;381;291;387;722;536;836;866;713
-107;'384;Côte d'Ivoire;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;148;197;210;282;282;824;1018;913;1155;1678;1763;1947;2966;5890;5000;5300;5500;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4813;4813;4813;4092;4092;4092;4092;7473;9040;10197;10331;303;401;6233;285;2845;2119;2893;5059;4100;6340;4992;5624
-107;'384;Côte d'Ivoire;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;14;335;314;5;42;42;462;157;9;9;7;9;16;25;18;26
-107;'384;Côte d'Ivoire;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;82;270;276;50;13;13;134;38;5;5;3;53;141;227;155;212
-107;'384;Côte d'Ivoire;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24279;29330;33997;34572;48216;58566;43467
-107;'384;Côte d'Ivoire;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10816;10781;10031;6767;8249;9090;11315
-107;'384;Côte d'Ivoire;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;56;30;70;68;132;50
-107;'384;Côte d'Ivoire;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6080;7086;6787;3583;4328;4176;3582
-107;'384;Côte d'Ivoire;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;28;22;45;4;26;22
-107;'384;Côte d'Ivoire;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;1290;714;13;13;3;5
-107;'384;Côte d'Ivoire;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;28;8;25;64;106;28
-107;'384;Côte d'Ivoire;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5830;5796;6073;3570;4315;4173;3577
-107;'384;Côte d'Ivoire;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;598;667;2783;3455;5696;5451
-107;'384;Côte d'Ivoire;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;799;576;235;728;1082;1295;2050
-107;'384;Côte d'Ivoire;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;393;404;492;726;528;561
-107;'384;Côte d'Ivoire;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1676;154;218;162;279;138;474
-107;'384;Côte d'Ivoire;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3161;4835;4315;4342;6152;6323;5322
-107;'384;Côte d'Ivoire;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;333;303;149;476;1112;2342
-107;'384;Côte d'Ivoire;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11
-107;'384;Côte d'Ivoire;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1
-107;'384;Côte d'Ivoire;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186;985
-107;'384;Côte d'Ivoire;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112;1432
-107;'384;Côte d'Ivoire;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;41
-107;'384;Côte d'Ivoire;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;62
-107;'384;Côte d'Ivoire;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20027;22281;26879;25510;35595;43318;30421
-107;'384;Côte d'Ivoire;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;1648;1656;1399;1590;1732;2348
-107;'384;Côte d'Ivoire;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;302;294;108;224;731;53
-107;'384;Côte d'Ivoire;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;11;11;11;32;16
-107;'384;Côte d'Ivoire;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;865;1408;1267;1996;1838;1609
-107;'384;Côte d'Ivoire;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;930;821;735;483;605;503
-107;'384;Côte d'Ivoire;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45078;51468;50068;49874;60302;62337;58677
-107;'384;Côte d'Ivoire;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61464;71798;76824;76884;88111;90815;84653
-107;'384;Côte d'Ivoire;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;41;61;62;160;95
-107;'384;Côte d'Ivoire;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;0;2;2;2;2
-107;'384;Côte d'Ivoire;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6019;5612;6146;6045;7034;6685;7813
-107;'384;Côte d'Ivoire;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;50;128;145;297;316
-107;'384;Côte d'Ivoire;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2883;2765;2788;2711;3857;3436;3586
-107;'384;Côte d'Ivoire;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6191;6475;7497;8105;11018;10724;13928
-107;'384;Côte d'Ivoire;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960;32338;30227;29207;35517;33613;32080
-107;'384;Côte d'Ivoire;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49815;57671;64408;65074;72685;75348;64164
-107;'384;Côte d'Ivoire;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10216;10737;10866;11850;13832;18443;15103
-107;'384;Côte d'Ivoire;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5454;7597;4869;3575;4261;4444;6243
-98;'191;Croatia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027182.11;1173045.94;1194076;1114873;1385823;1689286;1630630
-98;'191;Croatia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251075.69;1355016.7;1309067;1314554;1804017;2100200;1821913
-98;'191;Croatia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55247;139376;119671;293999;313134;339336;298175;290891;286957;230632;242655;285925;348590;361365;378470;574614;555091;434929;353980;438047;389907;434402;506247;479616;492484;557620.14;652438.35;628295;582149;766713;959894;796302
-98;'191;Croatia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218777;239408;225986;384821;235017;284417;200843;229039;275004;223632;235461;274957;328020;347976;389054;538387;559380;444162;510600;596519;559588;663212;786895;708183;752593;825498.16;902305.84;828839;790113;1116327;1304707;1117750
-98;'191;Croatia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989000;2452000;2816000;2604000;2542000;3050000;3398000;3486000;3669000;3468000;3641000;3847000;3841000;4018000;4452000;4210000;4469000;4242000;4477000;5258000;5714000;5436000;4996590;5178471;5165279;5374500;5389721;5400097;5233867;4985791;5342700;5200000
-98;'191;Croatia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30184;20020;13600;88600;192200;278000;172200;139500;96000;98000;89000;95000;50000;63000;70000;50000;20000;11000;13000;15000;12000;25259;24134;84815;121426;118249;190243;227175;193551;261919;378071;451230
-98;'191;Croatia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1915;1639;2342;19438;40595;51561;43198;31807;2535;3113;4677;5351;3110;2926;3567;4122;2070;982;1565;1854;1352;2443;3312;8437;11400;12632.93;21005.36;20413;15102;24833;44733;48766
-98;'191;Croatia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274444;198468;213000;387400;385700;445500;339100;361000;586000;575000;544000;562000;540260;548000;907000;835000;728000;752000;825000;1080000;972000;1232849;1095643;1020156;1178010;1036425;781997;782532;794106;1014830;853429;793000
-98;'191;Croatia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25261;10747;19137;118422;125071;150772;111611;114552;25606;28926;29323;31622;45251;47367;51551;66969;67299;68140;77381;97833;75750;99867;104676;82022;99630;90693.66;77831.13;74166;81967;121841;150838;124026
-98;'191;Croatia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;358000;374000;364000;354000;421000;472000;503000;546000;578000;524000;532000;575000;623000;751000;657000;655000;621000;613000;707000;1012000;1025000;876558;837880;807602;887300;1059035;965010;876354;791163;657100;688000
-98;'191;Croatia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18514;70535;109363;71237;65617;177049;218970
-98;'191;Croatia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1748.25;5911.22;6291;3470;5286;16827;18286
-98;'191;Croatia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169035;133616;164269;123239;96865;115426;91580
-98;'191;Croatia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11143.4;10279.05;13080;8948;8275;14113;9139
-98;'191;Croatia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688000;2094000;2442000;2240000;2188000;2629000;2926000;2983000;3123000;2890000;3117000;3315000;3266000;3395000;3701000;3553000;3814000;3621000;3864000;4551000;4702000;4411000;4120032;4340591;4357677;4487200;4330686;4435087;4357513;4194628;4685600;4512000
-98;'191;Croatia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99735;119708;117812;122314;196302;201022;232260
-98;'191;Croatia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10884.68;15094.14;14122;11632;19547;27906;30480
-98;'191;Croatia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;867390;648381;618263;670867;917965;738003;701420
-98;'191;Croatia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79550.27;67552.08;61086;73019;113566;136725;114887
-98;'191;Croatia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568000;711000;1012000;860000;832000;1006000;1107000;1094000;976000;747000;755000;979000;954000;908000;915000;761000;763000;862000;1056000;1422000;1557000;1400000;1652811;1768741;1768454;2389000;2175341;2205259;2206911;2130105;2604000;2579000
-98;'191;Croatia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;817;248;200;0;0;0;0;0;1000;3000;5000;6000;2000;1000;3000;3000;3000;4000;7000;8000;7000;21783;17267;33245;49815;61470;66782;59009;72638;108173;96093;154920
-98;'191;Croatia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;16;10;0;0;0;0;0;12;40;90;104;92;59;153;183;167;277;534;546;542;1536;1466;2514;3811;4952.71;6492.27;5329;6157;10135;11565;12661
-98;'191;Croatia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39542;69595;26000;0;0;0;0;0;75000;135000;96000;97000;151000;163000;295000;314000;241000;312000;247000;484000;541000;707842;659485;689121;759902;745382;591210;548696;538228;676210;547376;522860
-98;'191;Croatia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2490;1249;0;0;0;0;0;1947;3216;3725;3758;8662;9863;14841;17107;16745;23560;20962;31615;32340;42327;54192;46278;51186;56126.7;56693.86;49511;45924;63217;75580;57825
-98;'191;Croatia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8000;6000;6000;7000;7000;82000;116000;45000;18000;18000;21000;27000;15000;12000;14000;22000;29000;40000;59000;64695;62546;58050;69000;66867;54022;57807;50109;43000;52000
-98;'191;Croatia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3970;4304;5133;1109;1587;23728;67740
-98;'191;Croatia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213.3;336.58;290;89;220;1800;3394
-98;'191;Croatia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67247;54813;49083;49709;49601;45013;43890
-98;'191;Croatia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5061.4;4818.01;4109;4244;5194;5901;3613
-98;'191;Croatia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568000;711000;1012000;852000;826000;1000000;1100000;1087000;894000;631000;710000;961000;936000;887000;888000;746000;751000;848000;1034000;1393000;1517000;1341000;1588116;1706195;1710404;2320000;2108474;2151237;2149104;2079996;2561000;2527000
-98;'191;Croatia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57500;62478;53876;71529;106586;72365;87180
-98;'191;Croatia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4739.41;6155.69;5039;6068;9915;9765;9267
-98;'191;Croatia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678135;536397;499613;488519;626609;502363;478970
-98;'191;Croatia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51065.31;51875.85;45402;41680;58023;69679;54212
-98;'191;Croatia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;817;248;200;0;0;0;0;0;1000;3000;5000;6000;2000;1000;3000;3000;3000;4000;7000;8000;7000;21783;17267;33245;49815;;;;;;;
-98;'191;Croatia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;16;10;0;0;0;0;0;12;40;90;104;92;59;153;183;167;277;534;546;542;1536;1466;2514;3811;;;;;;;
-98;'191;Croatia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39542;69595;26000;0;0;0;0;0;75000;135000;96000;97000;151000;163000;295000;314000;241000;312000;247000;484000;541000;707842;659485;689121;759902;;;;;;;
-98;'191;Croatia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2490;1249;0;0;0;0;0;1947;3216;3725;3758;8662;9863;14841;17107;16745;23560;20962;31615;32340;42327;54192;46278;51186;;;;;;;
-98;'191;Croatia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421000;1741000;1804000;1744000;1710000;2044000;2291000;2392000;2693000;2721000;2886000;2868000;2887000;3110000;3537000;3449000;3706000;3380000;3421000;3836000;4157000;4036000;3343779;3409730;3396825;2985500;3214380;3194838;3026956;2855686;2738700;2621000
-98;'191;Croatia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29367;19772;13400;88600;192200;278000;172200;139500;95000;95000;84000;89000;48000;62000;67000;47000;17000;7000;6000;7000;5000;3476;6867;51570;71611;56779;123461;168166;120913;153746;281978;296310
-98;'191;Croatia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878;1623;2332;19438;40595;51561;43198;31807;2523;3073;4587;5247;3018;2867;3414;3939;1903;705;1031;1308;810;907;1846;5923;7589;7680.23;14513.09;15084;8945;14698;33168;36105
-98;'191;Croatia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234902;128873;187000;387400;385700;445500;339100;361000;511000;440000;448000;465000;389260;385000;612000;521000;487000;440000;578000;596000;431000;525007;436158;331035;418108;291043;190787;233836;255878;338620;306053;270140
-98;'191;Croatia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23451;8257;17888;118422;125071;150772;111611;114552;23659;25710;25598;27864;36589;37504;36710;49862;50554;44580;56419;66218;43410;57540;50484;35744;48444;34566.96;21137.27;24655;36043;58624;75258;66201
-98;'191;Croatia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;358000;374000;356000;348000;415000;465000;496000;464000;462000;479000;514000;557000;602000;724000;642000;643000;607000;591000;678000;972000;966000;811863;775334;749552;818300;992168;910988;818547;741054;614100;636000
-98;'191;Croatia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14475;17281;7600;80000;183000;264000;158700;126000;17000;29000;27000;29000;24000;23000;25000;22000;15000;6000;4000;5000;2000;383;341;23696;40251;14544;66231;104230;70128;64030;153321;151230
-98;'191;Croatia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;1144;509;15908;36859;47231;38780;27428;499;1049;1186;1224;1724;1438;1599;1623;1269;554;403;466;162;68;127;1623;2978;1534.95;5574.64;6001;3381;5066;15027;14892
-98;'191;Croatia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7255;4496;4000;3400;2700;1900;1700;2200;4000;2000;1000;3000;15260;36000;100000;29000;32000;17000;5000;16000;17000;29653;66820;54825;74630;101788;78803;115186;73530;47264;70413;47690
-98;'191;Croatia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;286;916;852;558;335;590;615;229;66;48;148;641;1941;4269;1501;1785;850;413;1122;1008;2162;5258;3300;4194;6082;5461.04;8971;4704;3081;8212;5526
-98;'191;Croatia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14475;17281;7600;80000;183000;264000;158700;126000;17000;29000;27000;29000;24000;23000;25000;22000;15000;6000;4000;5000;2000;383;341;23696;40251;14544;66231;104230;70128;64030;153321;151230
-98;'191;Croatia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;1144;509;15908;36859;47231;38780;27428;499;1049;1186;1224;1724;1438;1599;1623;1269;554;403;466;162;68;127;1623;2978;1534.95;5574.64;6001;3381;5066;15027;14892
-98;'191;Croatia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7255;4496;4000;3400;2700;1900;1700;2200;4000;2000;1000;3000;15260;36000;100000;29000;32000;17000;5000;16000;17000;29653;66820;54825;74630;101788;78803;115186;73530;47264;70413;47690
-98;'191;Croatia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;286;916;852;558;335;590;615;229;66;48;148;641;1941;4269;1501;1785;850;413;1122;1008;2162;5258;3300;4194;6082;5461.04;8971;4704;3081;8212;5526
-98;'191;Croatia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120000;1383000;1430000;1388000;1362000;1629000;1826000;1896000;2229000;2259000;2407000;2354000;2330000;2508000;2813000;2807000;3063000;2773000;2830000;3158000;3185000;3070000;2531916;2634396;2647273;2167200;2222212;2283850;2208409;2114632;2124600;1985000
-98;'191;Croatia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14892;2491;5800;8600;9200;14000;13500;13500;78000;66000;57000;60000;24000;39000;42000;25000;2000;1000;2000;2000;3000;3093;6526;27874;31360;42235;57230;63936;50785;89716;128657;145080
-98;'191;Croatia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;479;1823;3530;3736;4330;4418;4379;2024;2024;3401;4023;1294;1429;1815;2316;634;151;628;842;648;839;1719;4300;4611;6145.28;8938.45;9083;5564;9632;18141;21213
-98;'191;Croatia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227647;124377;183000;384000;383000;443600;337400;358800;507000;438000;447000;462000;374000;349000;512000;492000;455000;423000;573000;580000;414000;495354;369338;276210;343478;189255;111984;118650;182348;291356;235640;222450
-98;'191;Croatia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23025;7971;16972;117570;124513;150437;111021;113937;23430;25644;25550;27716;35948;35563;32441;48361;48769;43730;56006;65096;42402;55378;45226;32444;44250;28484.96;15676.23;15684;31339;55543;67046;60675
-98;'191;Croatia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;0;15;1000;1000;0;0;0;0;0;0;0;49;23;0;0;0;15;0;11;64;138;32;36;81
-98;'191;Croatia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;408;0;13;403;541;45;116;0;382;73;0;0;21;10;0;0;0;3;0;1.5;12;9;11;19;7
-98;'191;Croatia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1297;1154;0
-98;'191;Croatia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;19;28;23;0;42;5;0;0;0;0;0;0;0;0;0;0;0;0;251;221;0
-98;'191;Croatia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14892;2491;5800;8600;9200;14000;13200;13200;78000;65985;56000;59000;24000;39000;42000;25000;2000;1000;2000;1951;2977;3093;6526;27874;31345;42235;57219;63872;50647;89684;128621;144999
-98;'191;Croatia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;479;1823;3530;3736;4330;3938;3971;2024;2011;2998;3482;1249;1313;1815;1934;561;151;628;821;638;839;1719;4300;4608;6145.28;8936.95;9071;5555;9621;18122;21206
-98;'191;Croatia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227647;124377;183000;384000;383000;443600;337400;358800;507000;438000;447000;462000;374000;349000;512000;492000;455000;423000;573000;580000;414000;495354;369338;276210;343478;189255;111984;118650;182348;290059;234486;222450
-98;'191;Croatia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23025;7971;16972;117570;124513;150437;111021;113937;23430;25644;25533;27697;35920;35540;32441;48319;48764;43730;56006;65096;42402;55378;45226;32444;44250;28484.96;15676.23;15684;31339;55292;66825;60675
-98;'191;Croatia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107000;1269000;1259000;1252000;1410000;1693000;1901000;1915000;1976000;1938000;1969000;2055000;2074000;2234000;2356000;2335000;2496000;2212000;2068000;2461000;2961000;2671000;2415341;2451082;2402013;2432000;2675384;2627906;2468908;2393866;2425700;2385000
-98;'191;Croatia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238000;268000;259000;227000;269000;324000;361000;360000;406000;395000;421000;452000;482000;493000;561000;544000;544000;504000;405000;480000;860000;657000;520229;492514;494272;519000;718777;623739;534354;516530;461100;454000
-98;'191;Croatia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;869000;1001000;1000000;1025000;1141000;1369000;1540000;1555000;1570000;1543000;1548000;1603000;1592000;1741000;1795000;1791000;1952000;1708000;1663000;1981000;2101000;2014000;1895112;1958568;1907741;1913000;1956607;2004167;1934554;1877336;1964600;1931000
-98;'191;Croatia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285000;311000;551000;561000;626000;594000;558000;610000;826000;758000;766000;758000;1205000;1302000;1117000;1218000;917575;948922;988338;547000;533213;562303;553806;457924;310000;229000
-98;'191;Croatia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91000;110000;32000;41000;37000;38000;44000;76000;112000;62000;64000;67000;175000;185000;82000;303000;289765;281176;253237;296000;269942;283495;280841;221667;151000;179000
-98;'191;Croatia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194000;201000;519000;520000;589000;556000;514000;534000;714000;696000;702000;691000;1030000;1117000;1035000;915000;627810;667746;735101;251000;263271;278808;272965;236257;159000;50000
-98;'191;Croatia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238000;382000;487000;345000;221000;259000;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;65000;98000;76000;73000;81000;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;317000;389000;269000;148000;178000;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;90000;58000;147000;79000;92000;105000;166000;166000;222000;291000;219000;255000;266000;355000;356000;444000;410000;148000;73000;79000;147000;10863;9726;6474;6500;5783;4629;4242;3896;3000;7000
-98;'191;Croatia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;25000;17000;53000;6000;10000;13000;26000;26000;26000;21000;24000;31000;33000;51000;36000;35000;36000;11000;13000;30000;6000;1869;1644;2043;3300;3449;3754;3352;2857;2000;3000
-98;'191;Croatia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;65000;41000;94000;73000;82000;92000;140000;140000;196000;270000;195000;224000;233000;304000;320000;409000;374000;137000;60000;49000;141000;8994;8082;4431;3200;2334;875;890;1039;1000;4000
-98;'191;Croatia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;7400;6800;6800;6800;6800;3500;3100;3800;3900;4200;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;6914;7603;8784;8584;9988;13630;12580;13016;10224;8892
-98;'191;Croatia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642;84;200;0;0;0;0;0;1000;2000;11000;13000;12000;12000;15000;15000;8000;6000;5000;3000;2000;3306;4898;6001;7825;10463;11932;12832;13576;14602;9227;12710
-98;'191;Croatia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;23;46;0;0;0;0;0;190;269;634;702;693;735;910;1045;904;986;1359;1405;965;1485;2384;2265;2604;3497.3;4762.93;4974;5127;5592;4607;7343
-98;'191;Croatia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7831;7431;6900;0;0;0;0;0;3000;3000;2000;2000;3000;3000;3000;3000;4000;3000;2000;2000;2000;2403;6845;7271;8585;8968;10403;11604;13197;17310;10718;10020
-98;'191;Croatia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2494;2170;2393;0;0;0;0;0;732;640;640;657;1125;1152;1423;1556;2644;1859;956;1057;1825;1380;4123;3785;4669;4947.68;5783.81;6471;7444;10000;6719;7204
-98;'191;Croatia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184000;189000;195000;212000;205000;147000;157000;153000;186000;206000;203000;424000;435000;423000;888000;930000;1210542;978594;883606;824000;906390;774025;575409;520173;385162;331404
-98;'191;Croatia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;6000;22100;61000;89000;88000;131000;242000;202000;256000;97000;63000;20000;9300;8906;27650;46996;58256;57945;63563;120408;159961;224855;194696;194946
-98;'191;Croatia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;320;99;101;241;416;447;668;1627;1645;2997;1606;1529;1856;683;841;1549;1806;2114;2344.77;3039.72;5048;4883;6202;6874;8636
-98;'191;Croatia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;2200;70000;99000;159000;202000;190000;202000;259000;354000;334000;460000;477000;589000;414000;805744;959502;975522;898883;715192;695947;480990;366101;432892;317132;431192
-98;'191;Croatia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2217;3636;1064;1403;2519;3069;4412;4310;6890;11209;12793;31651;36372;50898;20047;30470;34258;28465;26427;25189.7;32092.87;18569;12472;17233;17864;16112
-98;'191;Croatia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;30000;37000;32000;31000;45000;42000;57000;65000;72000;74000;179000;181000;175000;390000;400000;680542;628594;597606;589000;676390;567913;449173;449173;358162;331404
-98;'191;Croatia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;0;0;2000;4000;3000;100;100;1000;2000;4000;5000;2000;3000;5000;4000;2000;2000;1000;3000;3000;2719;17116;28474;37569;45466;50760;84261;80736;63359;62318;42120
-98;'191;Croatia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;411;540;420;330;320;14;6;19;30;34;60;223;318;241;314;158;176;199;362;1027;1153;1320;1772.77;2385.63;3720;3287;2617;2574;3190
-98;'191;Croatia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14413;3485;5300;3100;3200;10000;1200;2200;10000;12000;35000;27000;26000;24000;35000;42000;54000;124000;168000;164000;252000;598473;646109;627892;592344;467963;450497;258731;160640;200064;145936;277930
-98;'191;Croatia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;160;189;236;359;1205;2217;3636;223;317;981;691;614;435;568;2029;3939;8367;10796;15657;15341;24465;23775;19730;18839;18310.59;23065.92;11384;6519;8703;10426;9080
-98;'191;Croatia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;23000;12800;12900;92000;152000;159000;158000;180000;174000;102000;115000;96000;121000;134000;129000;245000;254000;248000;498000;530000;530000;350000;286000;235000;230000;206112;126236;71000;27000;0
-98;'191;Croatia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2515;2136;800;200;0;0;0;0;5000;20100;57000;84000;86000;128000;237000;198000;254000;95000;62000;17000;6300;6187;10534;18522;20687;12479;12803;36147;79225;161496;132378;152826
-98;'191;Croatia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;128;25;50;0;0;0;0;85;95;222;386;413;608;1404;1327;2756;1292;1371;1680;484;479;522;653;794;572;654.08;1328;1596;3585;4300;5446
-98;'191;Croatia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7340;10005;10000;12500;0;0;0;0;60000;87000;124000;175000;164000;178000;224000;312000;280000;336000;309000;425000;162000;207271;313393;347630;306539;247229;245450;222259;205461;232828;171196;153262
-98;'191;Croatia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;215;194;266;0;0;0;0;841;1086;1538;2378;3798;3875;6322;9180;8854;23284;25576;35241;4706;6005;10483;8735;7588;6879.11;9026.95;7185;5953;8530;7438;7032
-98;'191;Croatia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23203;35667
-98;'191;Croatia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2029;2422
-98;'191;Croatia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36359;101180
-98;'191;Croatia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2503;2507
-98;'191;Croatia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-98;'191;Croatia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-98;'191;Croatia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-98;'191;Croatia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-98;'191;Croatia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-98;'191;Croatia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197673;214910;234184;245642;266127;336265;348148;385686;380198;398661;411053;397287
-98;'191;Croatia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216;4496;4768;7716;16453;17708;25877;36673;46673;35751;22352;20980
-98;'191;Croatia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;1108;1072;1348;2588;3103.2;5459.81;6801;8588;7781;7364;5750
-98;'191;Croatia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;209278;203614;232156;270757;335704;326683;367887;407679;433986;433127;417060
-98;'191;Croatia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33086;44631;42014;37673;41751;50680.24;58458.68;63767;69366;80503;132990;107169
-98;'191;Croatia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166000;183237;192662;212653;235063;295864;295808;307686;311242;328843;335184;324413
-98;'191;Croatia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2360;3993;6681;13838;14059;22252;33187;42503;31427;20120;17980
-98;'191;Croatia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;636;898;1128;2169;2518.48;4712.34;6342;8088;7206;6749;5087
-98;'191;Croatia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138000;170924;161364;200554;235925;259104;250745;292223;334089;360016;355120;336580
-98;'191;Croatia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28630;38979;35700;33882;37824;43787.91;49348.68;54878;62869;71969;115284;91849
-98;'191;Croatia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31673;31673;41522;32989;31064;40401;52340;78000;68956;69818;75869;72874
-98;'191;Croatia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2216;2136;775;1035;2615;3649;3625;3486;4170;4324;2232;3000
-98;'191;Croatia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;472;174;220;419;584.72;747.47;459;500;575;615;663
-98;'191;Croatia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;38354;42250;31602;34832;76600;75938;75664;73590;73970;78007;80480
-98;'191;Croatia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4456;5652;6314;3791;3927;6892.33;9110;8889;6497;8534;17706;15320
-98;'191;Croatia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651000;699000;601000;578000;598000;644000;676000;685000;642000;574000;640000;585000;582000;624000;669000;702000;721000;653000;677000;754000;851000;1191800;1293763;1488353;1433500;1459483;1420630;1445954;1298155;1298155;1279131;984030
-98;'191;Croatia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63717;76784;95500;95800;7500;14400;76900;77600;238800;327650;475000;561000;338000;309000;371000;421000;424000;258000;239000;224000;156000;154552;345942;414507;376066;442207;481721;506133;454683;483843;447156;717840
-98;'191;Croatia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12724;14362;12937;16386;4403;7625;7539;6218;27136;35977;42219;60673;66164;60924;67259;77807;90294;76331;53637;55365;38570;40793;81326;92407;88971;114678.72;136730.74;122533;104655;133876;159136;137596
-98;'191;Croatia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418515;512680;414600;402000;21000;42200;413000;402000;532650;459700;459000;512000;355000;405000;477000;701000;536000;447000;555000;638000;754000;809204;1259176;1297816;1248660;1368878;1200094;1269280;1201195;1381813;1559649;921370
-98;'191;Croatia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143176;155277;102879;117680;15500;32014;12722;21573;112780;97024;104744;128747;140998;152047;181419;233097;253137;182406;206415;247226;255333;312001;410933;382516;379818;419668.85;461641.8;431430;391388;501939;574929;491057
-98;'191;Croatia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000;146000;127000;100000;114000;139000;154000;166000;95000;118000;122000;103000;79000;84000;89000;97000;91000;100000;93000;110000;115000;212804;207044;266893;219766;269469;259839;247372;256542;256542;139535;148461
-98;'191;Croatia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43306;60334;86600;94100;6000;11900;74900;58600;217300;288950;434000;489000;284000;263000;316000;263000;284000;226000;186000;187000;135000;124475;316568;363167;328103;368170;390273;425134;366331;352745;308490;468890
-98;'191;Croatia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7153;9475;10882;14600;2515;4737;5107;3738;23049;29626;33346;44391;46897;44357;48672;54129;67288;62382;38441;40844;28785;27483;64730;74268;65137;75416.83;84046.32;77697;68590;83513;98941;89553
-98;'191;Croatia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38858;12680;8600;0;0;0;11000;0;3450;2000;3000;4000;5000;11000;12000;19000;10000;13000;28000;53000;68000;167204;328754;396221;329108;346799;328094;365362;350316;265685;281131;157340
-98;'191;Croatia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7214;2215;1389;0;0;0;108;0;449;312;516;766;746;1744;2538;4529;2933;3020;5602;11197;13011;35203;75618;70930;59218;67528.01;66919.98;70293;66985;76408;87486;68853
-98;'191;Croatia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533000;553000;474000;478000;484000;505000;522000;519000;547000;456000;518000;482000;503000;540000;580000;605000;630000;553000;584000;644000;736000;978996;1086719;1221460;1213734;1190014;1160791;1198582;1041613;1041613;1139596;835569
-98;'191;Croatia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20411;16450;8900;1700;1500;2500;2000;19000;21500;38700;41000;72000;54000;46000;55000;158000;140000;32000;53000;37000;21000;30077;29374;51340;47963;74037;91448;80999;88352;131098;138666;248950
-98;'191;Croatia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5571;4887;2055;1786;1888;2888;2432;2480;4087;6351;8873;16282;19267;16567;18587;23678;23006;13949;15196;14521;9785;13310;16596;18139;23834;39261.89;52684.42;44836;36065;50363;60195;48043
-98;'191;Croatia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379657;500000;406000;402000;21000;42200;402000;402000;529200;457700;456000;508000;350000;394000;465000;682000;526000;434000;527000;585000;686000;642000;930422;901595;919552;1022079;872000;903918;850879;1116128;1278518;764030
-98;'191;Croatia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135962;153062;101490;117680;15500;32014;12614;21573;112331;96712;104228;127981;140252;150303;178881;228568;250204;179386;200813;236029;242322;276798;335315;311586;320600;352140.84;394721.82;361137;324403;425531;487443;422204
-98;'191;Croatia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;30000;31000;28000;27000;26000;28000;31000;27000;28000;26000;29000;26000;22000;21000;21000;22000;19000;19000;19000;19900;21461;19134;22875;25496;32203;33570;33891;32350;35207;37495;34655
-98;'191;Croatia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935;1238;2300;1900;2400;2700;1900;2400;10000;9000;8000;15000;15000;13000;8000;9000;9000;6000;10000;7000;10000;5313;4406;4796;6562;7036;9041;9068;10721;20002;24548;16530
-98;'191;Croatia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3129;2189;3822;3991;4783;5027;4075;4119;10384;9546;8729;14553;15231;12702;13072;14538;14187;10556;9863;11298;8850;7540;6856;6093;8336;10032.44;13885.02;13348;16866;28993;34942;27550
-98;'191;Croatia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673;13260;13200;12400;10500;12000;9500;10000;16100;17100;16000;21000;26000;18000;22000;27000;26000;14109;20000;17029;16000;15977;15322;15452;17955;21881;24866;22505;20828;45043;44717;38840
-98;'191;Croatia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13366;14276;28944;21494;18139;19002;18820;18660;24646;24676;25058;36047;44526;47074;42196;59470;51105;33322;35149;37700;31974;36153;38382;35804;40193;52217.93;67163.96;60740;57790;88936;110150;108818
-98;'191;Croatia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;78000;52400;47300;45700;56000;58000;62000;51000;57000;55000;67000;77000;106000;140000;154000;159000;124000;134000;124000;132000;190786;179656;176559;107999;157117;149781;126172;194562;233178;203976;258264
-98;'191;Croatia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25665;27912;30712;40400;60000;86900;53900;60000;112392;140495;175000;215000;235000;253000;236000;301000;294400;228000;228000;216910;192760;184244;200710;220831;282358;314387;343812;366871;369968;306904;352236;347898
-98;'191;Croatia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10861;11795;9001;15196;20327;26053;23078;23437;30460;38773;48183;63621;75047;79320;88404;113817;121028;90751;73018;84217;71249;80125;83761;75857;90464;105553.42;126990.33;127381;124023;151512;166667;172865
-98;'191;Croatia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26069;16539;18156;12900;12600;21100;15000;10800;22906;26200;28000;33000;42000;53000;104000;120000;119000;102811;95033;104000;103100;110019;113334;114022;135638;172987;174796;159217;190051;255400;230394;294825
-98;'191;Croatia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9602;8185;8134;9804;9404;12147;8622;7546;12549;12393;12282;15687;15471;20931;32258;49437;52784;35590;32256;40681;35186;36163;34470;30316;35648;42932.58;50338.17;45351;50826;91895;88193;89357
-98;'191;Croatia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;7400;7300;7500;7000;8000;9000;7000;6000;5000;6000;4000;1000;1000;1000;0;0;0;4000;4000;3886;1383;1328;1702;11758;11368;7282;2157;2157;1283;472
-98;'191;Croatia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5076;8898;4600;7300;8200;10300;0;0;8392;9495;10000;13000;22000;24000;18000;32000;37000;22000;32000;28000;27000;18112;17223;18680;25612;27979;31399;34708;31066;37179;81828;40008
-98;'191;Croatia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4104;5385;2803;5248;5491;6628;0;0;4455;5135;5924;8519;9374;9988;12332;18732;16635;19347;10419;12253;11807;13515;12984;12025;14888;17623.44;21711.22;22213;19185;28797;38629;37013
-98;'191;Croatia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7555;6728;6200;5300;4700;8200;0;0;6500;6200;5000;6000;5000;4000;3000;4000;6000;5000;6000;9000;11000;8353;6234;7031;7409;4460;7746;5818;5199;10175;14121;13880
-98;'191;Croatia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4744;4822;4030;4154;3700;5709;0;0;3347;2941;2415;3230;3040;2686;3677;5947;6419;5491;5336;8325;7517;5970;4622;4431;3964;3835.72;5634.54;4860;4459;7856;9787;6767
-98;'191;Croatia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;231
-98;'191;Croatia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;197
-98;'191;Croatia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70
-98;'191;Croatia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31
-98;'191;Croatia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;70000;45000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14647;13102;20200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4187;4165;3953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18153;8755;10900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4640;2922;3663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;38000;47000;48000;50000;44000;51000;50000;61000;73000;105000;139000;153000;159000;124000;134000;120000;128000;186900;177752;174731;106297;145338;138413;118890;192405;229027;200615;256299
-98;'191;Croatia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22900;38200;59100;43200;47100;76000;88000;111000;134000;147000;160000;156000;198000;149000;119000;117000;115000;98000;100000;108000;115000;159000;174827;184653;188392;181151;134154;137895;151390
-98;'191;Croatia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6827;11188;14467;16533;15358;14047;16589;21434;28165;34032;37962;43225;56485;51397;36047;32931;37335;30960;37671;40745;35471;44327;49773.28;58748.79;55679;51710;50051;53463;61202
-98;'191;Croatia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;7900;12900;13500;9400;16000;19000;22000;26000;35000;46000;99000;111000;108000;95000;85000;89000;91000;99275;101987;99117;109558;142363;137966;121342;150653;209812;161885;222535
-98;'191;Croatia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650;5704;6438;8377;7409;8872;8877;9299;11700;11374;17032;27053;40118;43654;28310;25230;30749;27200;28682;26461;21197;23092;29020.96;32057.62;26346;29184;57603;53548;55105
-98;'191;Croatia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;41;52;0;21;0;0;0;0;0;0
-98;'191;Croatia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1200;4000;4000;0;0;0;0;0;0;32000;27000;27000;17000;18000;15553;16077;19216;24810;31203;34873;39326;44494;40740;44194;56830
-98;'191;Croatia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;784;969;896;0;0;0;0;0;0;9451;7802;6545;7074;5395;6155;5900;5370;6507;8620.97;11107.01;10868;11494;15510;14547;16901
-98;'191;Croatia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;1000;2000;1000;1000;266;423;272;596;980;688;2412;3423;5686;3780;6030
-98;'191;Croatia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1210;861;856;580;402;303;280;216;296;409.76;329.27;780;1073;1784;1588;1792
-98;'191;Croatia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2000;2000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;480;448;0;0;0;0;0;1994;2078;1493
-98;'191;Croatia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5942;5912;5912;10200;13600;17500;9800;11700;24000;39000;54000;68000;66000;69000;62000;71000;76400;60000;52000;56910;49760;50579;59410;67935;72936;80378;92887;104445;113257;94831;88319;99670
-98;'191;Croatia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570;2245;2245;3121;3648;4958;5986;7295;10989;16153;20825;26937;31641;31370;32847;38600;43545;27555;23123;27555;23087;22784;24132;22991;24742;29535.73;35423.31;38621;41634;57154;60028;57749
-98;'191;Croatia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;1056;1056;0;0;0;1500;1400;406;1000;1000;1000;2000;3000;2000;5000;4000;1811;2033;5000;100;2125;4690;7602;18075;25184;28396;29645;30776;29727;50608;52380
-98;'191;Croatia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;441;441;0;0;0;245;137;330;575;568;757;1057;1213;1528;3372;1501;928;834;1027;67;1208;3107;4472;8296;9666.14;12316.74;13365;16110;24652;23270;25693
-98;'191;Croatia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;4000;6200;7800;9200;15000;22000;27000;36000;28000;28000;34000;27000;20000;21000;17000;10000;10000;8940;8299;8268;8761;9678;11006;13644;13841;14753;16983;19860
-98;'191;Croatia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2132;2002;3209;4826;5836;8623;12173;15310;20760;23515;21931;23737;19274;20745;13688;9768;10745;8900;8429;7917;6620;6905;8001.09;9650.57;10602;10213;10725;11672;12926
-98;'191;Croatia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1100;300;500;1000;1000;1000;1000;1000;3000;1000;1000;1000;1000;100;155;271;149;133;89;425;2113;4015;4436;6745;7900
-98;'191;Croatia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;102;251;395;300;441;579;532;776;2033;1009;682;156;299;67;129;290;127;79;140.15;375.97;1517;2873;3258;5276;6061
-98;'191;Croatia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;480;448;0;0;0;0;0;0;0;0
-98;'191;Croatia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;3400;2700;1300;1900;6000;9000;14000;13000;19000;23000;23000;35000;50000;35000;34000;43910;39760;38315;47072;53891;59373;65898;77210;86645;95684;79075;69021;76610
-98;'191;Croatia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;822;658;770;1102;2014;2928;3806;3355;5259;6162;7098;12524;20600;12367;12368;16178;14187;13727;15563;15398;17195;20863.18;25069.33;27295;30897;46131;47582;43887
-98;'191;Croatia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;100;300;0;0;1000;1000;1000;2000;0;0;1000;4000;0;1888;4186;7146;17834;24973;27913;27432;26653;25216;43653;44360
-98;'191;Croatia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;10;59;134;232;283;458;578;702;1237;0;0;668;723;0;1062;2780;4304;8206;9493.81;11923.02;11821;13209;21329;17963;19624
-98;'191;Croatia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2000;2000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1994;2078;1493
-98;'191;Croatia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2341;1891;1891;4700;6200;8600;700;600;3000;8000;13000;19000;19000;18000;5000;9000;6400;4000;1000;3000;0;3324;4039;5776;4802;4802;4671;4156;3732;1003;2315;3200
-98;'191;Croatia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;924;618;618;659;824;1091;390;357;352;1052;1709;2822;2867;3277;2012;6802;2200;1500;987;632;0;628;652;973;642;671.46;703.4;724;524;298;774;936
-98;'191;Croatia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;672;672;0;0;0;300;200;6;200;0;0;0;1000;0;0;3000;811;33;0;0;82;233;307;108;122;58;100;108;75;210;120
-98;'191;Croatia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;248;248;0;0;0;65;25;20;46;36;33;20;103;50;102;492;246;10;5;0;17;37;41;11;32.18;17.74;27;28;65;31;8
-98;'191;Croatia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3601;4021;4021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1646;1627;1627;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;384;384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;193;193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126000;183000;179000;167000;181000;157000;159000;159000;191000;179000;122000;119000;109000;98000;107000;97000;96000;84000;97000;99000;73000;85366;77648;76957;78596;83912;83767;91852;90108;92566;88808;84580
-98;'191;Croatia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65826;84182;73677;75775;9400;9300;5700;3700;3700;125000;117000;127000;129000;138000;142000;120001;96000;65472;105666;111503;78092;79854;99131;82491;187791;159415;135258;162776;162260;219057;191463;176211
-98;'191;Croatia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16766;13681;8831;15141;5211;4393;1830;1735;1735;9517;12185;12757;13654;12982;13420;14096;12849;4951;16142;22206;11499;12515;16013;11089;27729;27807.65;19543.13;19794;17541;47661;43336;22347
-98;'191;Croatia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54815;48815;46814;50225;36000;36500;37100;40100;37000;50000;58000;55000;74000;78000;80000;87000;81000;89002;104001;95004;100007;162230;164906;152503;163468;197651;192954;209979;191802;229406;214635;229050
-98;'191;Croatia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14899;14510;10806;15087;11269;8365;9018;10012;9867;10873;13096;11884;17829;17662;17959;23489;25364;24203;26583;29224;24636;35132;34237;27067;30809;38492.77;37140.6;37790;33767;57150;55957;45174
-98;'191;Croatia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126000;125000;127000;115000;129000;105000;95000;95000;127000;115000;122000;119000;109000;98000;107000;97000;96000;84000;97000;99000;73000;40366;32648;31957;33596;38912;38767;46852;45108;47566;43808;39580
-98;'191;Croatia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18095;20212;9707;11805;9400;9300;5700;3700;3700;2000;2000;2000;1000;1000;1000;1001;0;472;666;503;92;118;464;196;256;928;218;282;262;455;483;1251
-98;'191;Croatia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11251;8796;3946;10256;5211;4393;1830;1735;1735;1187;1286;1303;455;385;386;591;457;400;699;464;420;267;637;346;440;610.5;387.87;476;376;534;824;1371
-98;'191;Croatia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33118;35290;33289;36700;36000;36500;37100;40100;37000;38000;43000;40000;43000;43000;43000;47000;45000;46002;43001;37004;29007;39716;32262;31629;34168;41194;40242;47365;44510;49967;43295;39750
-98;'191;Croatia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11928;13364;9660;13941;11269;8365;9018;10012;9867;9661;11346;10144;13698;13330;13572;17472;19220;18688;16293;15753;11696;16767;13075;10505;11366;12809.71;14240.55;17784;17018;19678;20850;20773
-98;'191;Croatia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126000;125000;127000;115000;129000;105000;95000;95000;127000;115000;122000;119000;109000;98000;107000;97000;96000;84000;97000;99000;73000;40366;32648;31957;33596;38912;38767;46852;45108;47566;43808;39580
-98;'191;Croatia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18227;20412;9707;11805;9400;74300;67900;57800;111700;2000;2000;2000;1000;1000;1000;1001;0;419;404;399;69;88;287;126;150;813;174;195;225;424;414;1161
-98;'191;Croatia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10874;8604;3946;10256;5211;9209;6343;5702;13935;1187;1265;1278;436;372;372;384;319;307;315;312;197;196;301;236;246;399.18;297.99;315;319;468;577;1167
-98;'191;Croatia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32909;35289;33289;36700;36000;47600;49600;54200;50000;38000;43000;40000;43000;43000;43000;47000;45000;46002;43001;37004;29000;39715;32261;31628;32526;41193;40237;47359;44503;49961;43270;39730
-98;'191;Croatia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11817;13363;9660;13941;11269;9398;10287;11727;11313;9661;11346;10144;13698;13330;13572;17472;19220;18688;16293;15753;11687;16765;13070;10502;10662;12805.39;14226.58;17769;17002;19664;20785;20708
-98;'191;Croatia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38912;38767;46852;45108;47566;43808;39580
-98;'191;Croatia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;692;72;80;104;106;62;63
-98;'191;Croatia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110.22;40.04;45;59;61;42;44
-98;'191;Croatia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41191;40233;47355;44502;49960;43267;39728
-98;'191;Croatia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801.26;14217.5;17761;17000;19662;20777;20702
-98;'191;Croatia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;35000;34000;37000;36000;34000;37000;39000;38000;38000;44000;41000;43000;43000;43000;47000;44000;47000;44000;38000;30000;40366;32648;31957;33596;;;;;;;
-98;'191;Croatia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;0;0;0;2000;0;0;0;0;0;0;0;0;1;0;7;0;4;23;6;174;32;63;;;;;;;
-98;'191;Croatia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;0;0;0;1;0;0;0;3;4;0;0;0;1;2;4;0;2;5;37;84;18;34;;;;;;;
-98;'191;Croatia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32234;35000;33000;36700;36000;36500;37100;40100;37000;38000;43000;40000;43000;43000;43000;47000;45000;46000;43000;37000;29000;39715;31955;30777;32264;;;;;;;
-98;'191;Croatia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11596;13286;9583;13941;11269;8365;9014;10007;9862;9661;11327;10126;13692;13316;13560;17472;19220;18687;16292;15750;11687;16765;13036;10401;10649;;;;;;;
-98;'191;Croatia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;90000;93000;78000;93000;71000;58000;56000;89000;77000;78000;78000;66000;55000;64000;50000;52000;37000;53000;61000;43000;0;0;0;0;;;;;;;
-98;'191;Croatia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;200;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;116;52;0;0;0;0;7;8;13;14;29;37;0;0;0;0;5;0;0;0;0;;;;;;;
-98;'191;Croatia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;249;249;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;306;847;260;;;;;;;
-98;'191;Croatia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;57;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;91;9;;;;;;;
-98;'191;Croatia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17422;19607;9600;11800;9200;9200;3700;3700;3700;2000;2000;2000;1000;1000;1000;1000;0;412;404;395;46;82;113;94;87;121;102;115;121;318;352;1098
-98;'191;Croatia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10477;8207;3898;10254;5095;4341;1829;1735;1735;1187;1255;1266;423;358;343;346;317;303;315;310;187;159;217;218;212;288.96;257.63;270;260;407;535;1123
-98;'191;Croatia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;4;0;0;0;4;2;2;4;4;1;1;3;2
-98;'191;Croatia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;4;5;5;0;19;18;6;14;12;0;0;1;1;3;0;0;1;10;4;4.13;9.08;8;2;2;8;6
-98;'191;Croatia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2067;2359;3300;2700;3000;3000;1300;1300;1300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;914;900;1723;1410;1336;563;610;610;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;0;0;0;5;14;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12607;13798;5700;8700;5200;3600;2200;2200;2200;2000;2000;2000;1000;1000;1000;1000;0;180;213;179;23;28;45;0;0;0;0;0;6;204;265;1010
-98;'191;Croatia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7744;5854;2691;8206;3180;1842;1147;1021;1021;966;1183;1191;423;219;198;156;114;121;164;138;37;25;34;1;1;0.83;0.88;1;9;146;310;865
-98;'191;Croatia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;20;0;0;0;0;0;0;0;19;18;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-98;'191;Croatia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;102;115;115;114;87;88
-98;'191;Croatia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288.12;256.75;269;251;261;225;258
-98;'191;Croatia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;4;1;1;3;2
-98;'191;Croatia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.13;9.08;8;2;2;8;6
-98;'191;Croatia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;27;0;0;0;0;0;0;0;0;0;0;10;13;0;0;0;3;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-98;'191;Croatia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2643;3345;500;400;1000;2600;200;200;200;0;0;0;0;0;0;0;0;232;186;216;23;54;68;94;87;;;;;;;
-98;'191;Croatia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1587;1379;280;325;505;1163;119;104;104;164;72;75;0;129;132;190;203;182;148;172;150;134;183;217;211;;;;;;;
-98;'191;Croatia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;4;0;0;0;4;2;;;;;;;
-98;'191;Croatia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3;0;0;1;10;4;;;;;;;
-98;'191;Croatia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;698;698;0;0;0;65000;62200;54100;108000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;349;0;0;0;4816;4513;3967;12200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0.01;0.32;0;0;0;0;0
-98;'191;Croatia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100;12500;14100;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;1269;1715;1446;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;498;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;53;262;104;23;30;177;70;106;115;44;87;37;31;69;90
-98;'191;Croatia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726;541;0;0;0;0;0;0;0;0;21;25;19;13;14;207;138;93;384;152;223;71;336;110;194;211.32;90.21;161;57;66;247;204
-98;'191;Croatia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;1;1;1;1642;1;5;6;7;6;25;20
-98;'191;Croatia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;2;5;3;704;4.32;13.97;15;16;14;65;65
-98;'191;Croatia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;183;218;23;470;427;366;317;509;485;298;350;413;648;420
-98;'191;Croatia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;143;149;683;490;478;372;520;345;107;128;231;356;316;224;245;323.95;313.35;193;247;261;445;289
-98;'191;Croatia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;21;0;10;8;5;74;4;71;163;73;24;19;26;11;10
-98;'191;Croatia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;0;12;4;4;3;7;67;5;51;114.97;54.95;17;14;20;11;13
-98;'191;Croatia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;52000;52000;52000;52000;64000;64000;64000;64000;0;0;0;0;0;0;0;0;0;0;0;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000
-98;'191;Croatia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47731;63970;63970;63970;0;0;0;0;0;123000;115000;125000;128000;137000;141000;119000;96000;65000;105000;111000;78000;79736;98667;82295;187535;158487;135040;162494;161998;218602;190980;174960
-98;'191;Croatia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515;4885;4885;4885;0;0;0;0;0;8330;10899;11454;13199;12597;13034;13505;12392;4551;15443;21742;11079;12248;15376;10743;27289;27197.15;19155.25;19318;17165;47127;42512;20976
-98;'191;Croatia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21697;13525;13525;13525;0;0;0;0;0;12000;15000;15000;31000;35000;37000;40000;36000;43000;61000;58000;71000;122514;132644;120874;129300;156457;152712;162614;147292;179439;171340;189300
-98;'191;Croatia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2971;1146;1146;1146;0;0;0;0;0;1212;1750;1740;4131;4332;4387;6017;6144;5515;10290;13471;12940;18365;21162;16562;19443;25683.06;22900.05;20006;16749;37472;35107;24401
-98;'191;Croatia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;114000;247800;324800;304200;393000;403000;417000;406000;451000;467000;463000;464000;592000;564000;545000;535000;526000;560000;540000;499700;299285;264086;288740;337710;348962;341031;346790;341713;374168;353218;337130
-98;'191;Croatia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14299;94939;104000;157600;178600;204100;173900;184300;196200;168800;166000;174000;183000;208000;213000;376000;266000;235900;207000;218285;270000;302253;342098;379049;342065;353133;353901;366188;357652;400107;408298;346590
-98;'191;Croatia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9053;95210;82667;223386;237275;239441;213612;219288;202218;133336;125644;127703;173561;190618;189733;347172;310242;248421;196760;259718;255752;287196;309658;280090;258033;277645.74;320707.65;307810;285117;360002;491790;365160
-98;'191;Croatia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19950;47313;131300;130300;95500;128000;99400;113000;180000;158000;139000;139000;136000;131000;121000;152000;124000;118013;141330;125063;149754;120119;139663;151802;191907;194279;182712;185432;195153;228635;208762;206160
-98;'191;Croatia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9486;33868;53310;101832;55275;59879;36564;51345;86314;47697;47799;47244;58408;57433;55358;93158;94254;66979;95484;91896;81748;67408;83735;80530;93597;100559.78;111799.88;90538;85079;146810;167056;128820
-98;'191;Croatia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;6800;5800;5200;7000;18000;25000;225000;231000;238000;233000;241000;245000;268000;263000;238000;228000;234000;233000;184000;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5362;53508;49000;59500;59600;53600;49100;51700;152000;105000;114000;121000;138000;158000;161000;260000;185000;157900;152000;145000;128000;131177;144672;152576;138847;132887;130080;125569;109947;123932;118626;97330
-98;'191;Croatia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3936;67727;38533;57408;52986;35791;45709;46458;157297;75512;84997;87549;123610;137751;135008;206927;201065;160232;139042;147826;115378;119970;128409;110474;101400;100231.81;110391.08;104611;86836;105069;142341;112906
-98;'191;Croatia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;2477;300;300;800;5000;6400;7800;153000;10000;6000;7000;3000;3000;3000;2000;3000;1947;2304;2147;1618;971;1332;4764;5067;5010;5958;4704;7535;10830;12904;9360
-98;'191;Croatia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;2578;310;291;774;3362;3567;4117;52219;5466;3836;3873;2460;2393;2635;2748;2971;2057;2420;1756;1262;1271;1786;5101;6159;6791.46;9100.98;7957;6971;9978;13995;12005
-98;'191;Croatia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1700;1000;2000;9000;14000;14000;18000;14000;14000;18000;19000;3000;2000;2000;2000;2000;3000;1000;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;18342;24000;34100;33600;33600;34500;36100;40000;44000;35000;37000;41000;48000;53000;56000;57000;51000;47000;47000;43000;37937;43619;43151;39046;29461;29220;24739;21310;18270;17890;14310
-98;'191;Croatia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;8345;11033;25936;26685;18662;19127;20211;18608;23822;18687;18879;24127;29348;31243;42832;45041;38945;27830;33714;27686;23935;28050;21494;19049;14442.78;16468.94;14398;11380;10090;15214;10964
-98;'191;Croatia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;202;0;0;600;2300;5800;7100;5000;10000;4000;5000;1000;1000;1000;0;1000;281;82;28;26;26;0;2072;1491;4;124;15;0;27;418;1650
-98;'191;Croatia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;88;0;0;501;1315;2979;3412;2391;5034;1914;2015;404;480;467;292;330;179;47;16;15;12;0;1527;974;2.97;62.49;10;0;16;420;1338
-98;'191;Croatia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3800;4100;4200;5000;9000;11000;211000;213000;224000;219000;223000;226000;265000;261000;236000;226000;232000;230000;183000;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5288;35166;25000;25400;26000;20000;14600;15600;112000;61000;79000;84000;97000;110000;108000;204000;128000;106900;105000;98000;85000;93240;101053;109425;99801;103426;100860;100830;88637;105662;100736;83020
-98;'191;Croatia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901;59382;27500;31472;26301;17129;26582;26247;138689;51690;66310;68670;99483;108403;103765;164095;156024;121287;111212;114112;87692;96035;100359;88980;82351;85789.03;93922.13;90213;75456;94979;127127;101942
-98;'191;Croatia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;2275;300;300;200;2700;600;700;148000;0;2000;2000;2000;2000;2000;2000;2000;1666;2222;2119;1592;945;1332;2692;3576;5006;5834;4689;7535;10803;12486;7710
-98;'191;Croatia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;2490;310;291;273;2047;588;705;49828;432;1922;1858;2056;1913;2168;2456;2641;1878;2373;1740;1247;1259;1786;3574;5185;6788.49;9038.49;7947;6971;9962;13575;10667
-98;'191;Croatia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;11000;211000;213000;224000;219000;223000;226000;265000;261000;236000;226000;232000;230000;183000;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14600;15600;57000;9000;7000;7000;8000;7000;7000;8000;8000;7900;10000;7000;9000;13368;12662;13119;16117;18206;17850;16520;13637;15395;12477;8410
-98;'191;Croatia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26582;26247;94204;6137;2268;2159;6697;5679;5789;7884;8476;8076;8479;7360;7875;10994;10299;8385;10204;11468.73;12589.04;11439;8864;10647;12584;8763
-98;'191;Croatia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;700;142000;0;0;0;0;0;0;0;0;18;222;119;122;80;88;221;308;486;516;366;313;473;462;280
-98;'191;Croatia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;705;39751;3;13;15;57;44;32;76;146;14;166;89;91;94;110;209;298;474.24;486.16;369;425;429;678;459
-98;'191;Croatia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8000;13000;25000;26000;31000;34000;36000;41000;42000;39000;40000;40000;27000;33497;42445;50888;40095;42056;41193;39457;36509;43757;44967;38610
-98;'191;Croatia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7065;11045;22555;22997;32884;33052;32478;48001;54371;43963;44045;47955;29620;36646;43093;41775;34263;36447.52;40277.72;36941;31910;39421;57290;45625
-98;'191;Croatia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;648;1000;1000;470;483;778;1430;1275;2456;2919;1283;2152;5042;6149;4880
-98;'191;Croatia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;226;952;944;1071;1013;1213;1101;1138;780;1543;970;570;660;975;1750;1447;2346.95;3101.05;1405;2131;4823;7665;5952
-98;'191;Croatia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;47000;39000;47000;51000;58000;69000;65000;155000;78000;60000;55000;51000;49000;46375;45946;45418;43589;43164;41817;44853;38491;46510;43292;36000
-98;'191;Croatia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;37420;34508;41487;43514;59902;69672;65498;108210;93177;69248;58688;58797;50197;48395;46967;38820;37884;37872.78;41055.37;41833;34682;44911;57253;47554
-98;'191;Croatia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6000;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;382;466;1041;1993;2064;2399;3040;5070;5288;5875;2550
-98;'191;Croatia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10077;203;957;899;928;856;923;1279;1357;1084;664;681;586;505;701;1615;3440;3967.29;5451.28;6173;4415;4710;5232;4256
-98;'191;Croatia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;112000;241000;319000;299000;386000;385000;392000;181000;220000;229000;230000;223000;347000;296000;282000;297000;298000;326000;307000;315700;299285;264086;288740;337710;348962;341031;346790;341713;374168;353218;337130
-98;'191;Croatia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8937;41431;55000;98100;119000;150500;124800;132600;44200;63800;52000;53000;45000;50000;52000;116000;81000;78000;55000;73285;142000;171076;197426;226473;203218;220246;223821;240619;247705;276175;289672;249260
-98;'191;Croatia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5117;27483;44134;165978;184289;203650;167903;172830;44921;57824;40647;40154;49951;52867;54725;140245;109177;88189;57718;111892;140374;167226;181249;169616;156633;177413.93;210316.57;203199;198281;254933;349449;252254
-98;'191;Croatia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19813;44836;131000;130000;94700;123000;93000;105200;27000;148000;133000;132000;133000;128000;118000;150000;121000;116066;139026;122916;148136;119148;138331;147038;186840;189269;176754;180728;187618;217805;195858;196800
-98;'191;Croatia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367;31290;53000;101541;54501;56517;32997;47228;34095;42231;43963;43371;55948;55040;52723;90410;91283;64922;93064;90140;80486;66137;81949;75429;87438;93768.32;102698.9;82581;78108;136832;153061;116815
-98;'191;Croatia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156000;129000;178000;181000;179000;1000;1000;0;0;0;1000;1000;1000;2000;2000;2000;8000;17000;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18700;22600;28500;29900;28800;3000;3000;3000;3000;2000;3000;3000;3000;4000;4000;6000;12000;17000;21738;23366;25226;28755;28060;30722;35380;39715;34097;38980;37300
-98;'191;Croatia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38171;47389;55984;61531;62411;2118;2140;2150;2169;2468;2976;2866;3497;5599;5513;7716;15524;20367;26105;28280;26422;27929;28306.3;35900.25;38057;38334;36319;64016;49240
-98;'191;Croatia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;800;800;300;400;0;0;0;0;0;0;0;0;0;62;23;43;159;1021;846;1627;453;372;797;726;2751;3068;752;2470
-98;'191;Croatia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2028;1766;1285;655;715;0;10;41;45;0;83;79;28;101;111;42;67;242;802;885;1521;511;415.89;984.34;843;3045;3559;1179;4170
-98;'191;Croatia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135000;138000;168000;211000;220000;221000;208000;325000;279000;267000;284000;280000;313000;296000;296700;298880;264083;288688;337710;348731;340936;346703;341713;374168;353218;337130
-98;'191;Croatia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;40200;58800;42000;44000;35000;39000;41000;104000;65000;68000;47000;53000;122000;147557;171643;199337;172504;189947;190391;202717;205937;239861;225039;209580
-98;'191;Croatia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;41503;54530;26919;27970;24890;28507;29450;108916;68868;60807;40662;62195;107633;128992;140058;132076;117133;135614.26;158095.92;150487;145830;204457;230120;184175
-98;'191;Croatia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;26000;147000;131000;130000;131000;125000;115000;145000;117000;112004;134003;122728;147802;118086;137368;145250;186240;188665;175721;179865;184699;214603;194980;194180
-98;'191;Croatia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32819;41419;40137;39481;51885;46644;44631;72462;75492;49628;74203;89648;79731;64712;79810;72786;85868;91897.1;99965.5;80136;73168;131331;150176;110317
-98;'191;Croatia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;76000;137000;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;14900;15700;17000;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8885;26842;30582;30214;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;11600;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16932;15659;17312;;;;;;;;;;;;;;;;;;;;;;;;;;
-98;'191;Croatia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;78000;88000;121000;124000;122000;108000;178000;138000;132000;155000;145000;161000;145000;142000;138240;153282;158549;108779;214256;206834;213112;208961;228874;216980;207766
-98;'191;Croatia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5200;5800;5000;6000;14000;15000;17000;22000;19000;21000;23000;23000;74000;94302;114113;137546;111577;118550;117579;118378;116659;141647;132595;123570
-98;'191;Croatia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2396;2335;2847;6035;6084;6934;11740;11465;8589;12002;15213;39625;52216;63226;63733;50469;58412.17;68508.29;55609;51598;87347;99329;68974
-98;'191;Croatia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15000;132000;119000;117000;118000;108000;99000;124000;94000;79000;111000;106000;127000;95389;108761;110942;154722;159003;148258;154255;161002;187646;169244;169550
-98;'191;Croatia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16719;35222;34368;33266;43184;35379;33439;52830;54192;34658;58165;69423;63603;46835;55754;46402;62960;69457.45;75973.62;58915;54568;102136;118122;77587
-98;'191;Croatia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;60000;76000;80000;90000;92000;88000;109000;117000;115000;112000;109000;133000;133000;122000;0;0;0;0;475;509;472;485;540;82;89
-98;'191;Croatia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27000;26000;10000;10000;0;0;0;45000;18000;29000;7000;9000;29000;30657;33633;36824;35179;39906;39696;42277;43519;46016;23423;42940
-98;'191;Croatia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;34514;34554;5959;6011;853;1170;998;36674;25746;32781;11817;21536;49454;54139;53951;47067;45325;50274.21;55885.9;55845;55141;63934;45565;66388
-98;'191;Croatia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5000;0;0;0;0;0;0;0;0;4;3;312;769;428;648;2627;1217;1579;1237;1124;2575;1313;1201;2060
-98;'191;Croatia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6584;467;0;0;0;7;8;8;1;6;4;408;997;1169;1515;4360;2315;2656.22;2934.87;2929;3002;5928;4613;9298
-98;'191;Croatia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;2000;2000;4000;14000;6000;5000;12000;20000;13000;11000;25000;160640;110801;130139;228931;134000;133593;133119;132267;144754;136156;129275
-98;'191;Croatia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8000;27000;27000;28000;21000;24000;24000;37000;28000;18000;17000;17000;14000;16926;16348;18862;18376;22774;24721;32766;36709;43505;59566;32470
-98;'191;Croatia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6987;17580;18625;19112;18002;21253;21518;60502;31657;19437;16843;22917;15803;19602;19234;18632;18225;22908.25;29153.67;34656;35670;48510;78221;42826
-98;'191;Croatia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8000;12000;13000;13000;17000;16000;21000;23000;33000;23000;16319;20000;22246;27957;31680;30299;28075;26221;24484;21122;25639;24532;22540
-98;'191;Croatia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3831;5769;6215;8701;11258;11184;19624;21299;14964;16034;19756;15110;16697;22538;22018;20569;19743.36;21015.51;18282;15597;23255;27435;23405
-98;'191;Croatia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;8000;4000;5000;8000;24000;18000;15000;5000;6000;6000;7000;7700;0;0;0;0;0;0;0;0;0;0;0
-98;'191;Croatia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;5000;5672;7549;6105;7372;8717;8395;9296;9050;8693;9455;10600
-98;'191;Croatia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2529;2751;3035;3647;2644;3114;4019.63;4548.06;4377;3421;4666;7005;5987
-98;'191;Croatia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6000;7000;0;0;0;0;0;0;0;0;0;97;33;23;2;1;2;8;5;2;0;5;3;30
-98;'191;Croatia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9516;1899;0;0;0;0;0;0;0;0;0;61;21;11;3;6;24;40.07;41.5;10;1;12;6;27
-98;'191;Croatia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;112000;241000;89000;94000;71000;69000;75000;12000;8000;9000;9000;15000;21000;16000;14000;11000;16000;11000;3000;2000;405;3;52;0;231;95;87;0;0;0;0
-98;'191;Croatia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8937;41431;36000;64500;80700;105000;94900;103800;1000;2000;7000;6000;8000;8000;8000;9000;12000;6000;2000;8285;3000;1781;2417;1910;1959;2239;2708;2522;2053;2217;25653;2380
-98;'191;Croatia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5117;27483;35249;100965;106318;117452;106372;110419;1300;1154;11578;10015;22593;21384;22409;27832;34710;21869;9340;34173;12374;12129;12911;11118;11571;13493.38;16320.4;14655;14117;14157;55313;18839
-98;'191;Croatia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19813;44836;131000;119000;83900;110600;92700;104800;1000;1000;2000;2000;2000;3000;3000;5000;4000;4000;5000;145;175;41;117;161;147;232;236;137;168;134;126;150
-98;'191;Croatia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367;31290;53000;82581;37076;37920;32342;46513;1276;802;3785;3845;4063;8313;8013;17920;15690;15183;18819;425;513;623;1254;1122;1059;1455.33;1749.05;1602;1895;1942;1706;2328
-98;'191;Croatia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275377.43;317057.86;351701;327646;381493;437329;507969
-98;'191;Croatia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273941.07;284533.11;292034;313339;438140;489988;406089
-98;'191;Croatia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14064.63;15379.79;16245;16220;18394;19571;15820
-98;'191;Croatia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62614.95;62688.85;62872;63131;93330;104185;78800
-98;'191;Croatia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7130.06;8448.92;9314;9277;10879;11656;9830
-98;'191;Croatia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356.05;467.53;651;797;1282;1059;1111
-98;'191;Croatia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6934.57;6930.87;6931;6943;7515;7915;5990
-98;'191;Croatia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62258.89;62221.32;62221;62334;92048;103126;77689
-98;'191;Croatia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15548.34;16926.71;18412;18831;23076;33059;34780
-98;'191;Croatia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12022.94;14440.83;14999;16727;23279;31330;30592
-98;'191;Croatia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7023.41;7434.02;7862;7612;8340;8864;9306
-98;'191;Croatia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2131.64;1893.19;2135;1722;1644;1917;1784
-98;'191;Croatia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39809.69;46147.78;53025;49267;65117;67272;80851
-98;'191;Croatia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53323.7;63825.95;70757;91428;128412;133257;90150
-98;'191;Croatia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5462;5754
-98;'191;Croatia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5801;4734
-98;'191;Croatia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2188;1443
-98;'191;Croatia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3687;2776
-98;'191;Croatia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432;475
-98;'191;Croatia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;431
-98;'191;Croatia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-98;'191;Croatia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;27
-98;'191;Croatia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;33
-98;'191;Croatia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4
-98;'191;Croatia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-98;'191;Croatia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186966.31;217040.32;240299;220950;239228;280469;337191
-98;'191;Croatia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118924.63;118583.69;118409;117651;128508;148073;145116
-98;'191;Croatia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1822.17;1884.05;3666;2585;6765;6281;6532
-98;'191;Croatia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3892.17;3342.62;2007;2092;2860;2453;1342
-98;'191;Croatia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10142.88;12245.18;12192;12181;20573;21813;23489
-98;'191;Croatia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21031.04;19757.98;20855;20588;60107;68773;58305
-98;'191;Croatia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194184.54;203549.74;214080;205078;237617;292063;326359
-98;'191;Croatia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151636.46;168177.76;188194;211102;249550;305505;298074
-98;'191;Croatia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2926.57;2880.53;3037;3734;4380;5653;5857
-98;'191;Croatia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30.51;56.22;184;249;363;324;283
-98;'191;Croatia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30795.5;26633.92;26034;22968;30701;41542;39622
-98;'191;Croatia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19507.49;18844.28;16013;16324;18283;21339;16628
-98;'191;Croatia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78669.55;80802.2;84994;82880;88567;105875;127999
-98;'191;Croatia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22972.31;24654.09;29199;31236;24752;37109;58014
-98;'191;Croatia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45938.1;53341.11;58889;56374;65663;78323;86074
-98;'191;Croatia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72104.63;85207.26;95571;109511;145522;170186;143821
-98;'191;Croatia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35854.82;39891.98;41126;39122;48306;60670;66807
-98;'191;Croatia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37021.52;39415.9;47227;53782;60630;76547;79328
-49;'192;Cuba;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169833;144462;179258;146557;131217;118309;189772
-49;'192;Cuba;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43043;45473;46171;44293;39064;43558;57740
-49;'192;Cuba;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;24800;30775;16477;27817;24844;27765;24057;34290;35008;42920;47500;45200;63500;77050;78486;66686;74986;121287;103275;210118;186086;204803;211389;255948;255209;276814;269591;204777;203357;202178;202178;5772;10666;10461;23878;20393;24509;24509;24509;53425;55175;55175;55288;63493;63918;76316;103304;115021;47491;42369;76519;80035;88048;55258;89647;82244;74720;67376;99964;87726;84148;52587;89359
-49;'192;Cuba;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;1028;1028;1560;2021;2576;3169;4868;5359;2389;2166;2166;2171;3182;635;322;297;185;60;60;60;285;285;285;285;376;376;369;1558;1896;7530;8741.5;18222.5;26308.5;36928;41505;44982;43804;41408;43189;43363;42823;37549;42232;56427
-49;'192;Cuba;1861;Roundwood;5516;Production;m3;1815000;2382000;2382000;2248000;2340000;1284200;1365000;1837800;2219000;1839000;2123013;2082000;2215000;2085000;2075000;2075000;1830000;2110000;3000000;2940000;2968000;3017000;2909000;2920795;2896414;2994000;2866000;2923000;2756000;3198189;3298488;3405509;3539712;3555961;3557722;3518932;3517457;3491669;1593000;1819000;1696000;2778000;2636000;2513000;2579000;2579000;2174200;1912100;2361600;1730500;1732000;1702000;1748000;1748000;1794000;1752000;1752000;1752000;1752000;1752000;1752000;1752000;1752000
-49;'192;Cuba;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;6200;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;30900;30400;11300;20700;20700;5700;;;;;;0;100;0;0;0;0;0;0;0;112;112;112;30438;12034;6362;12668;14765;13442;2314;6602;1559;550;1011;6573;8961;7904;5313;3124;168
-49;'192;Cuba;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;250;200;200;200;200;200;200;200;200;200;200;200;200;200;3364;3228;1225;5018;5018;1179;;;;;;0;26;0;0;0;0;0;0;0;18;18;18;9769;6718;1321;821;1109;1028;1266;908;732;246;471;779;972;1858;637;411;43
-49;'192;Cuba;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;164;100;100;100;100;100;0;0;0;0;46;46;46;20;25;25;25;25;25;498;146;24;130;0;0;0;4;0;50;50
-49;'192;Cuba;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;19;18;18;18;18;18;0;0;0;0;3;3;3;1192;1530;1530;1530;1530;1530;1633;1601;16;59;0;0;0;2;0;21;1
-49;'192;Cuba;1862;Roundwood, coniferous;5516;Production;m3;20000;7000;7000;8000;6000;9000;14000;5000;2000;1000;1000;1000;1000;1000;1000;90000;90000;90000;130000;130000;130000;137000;132000;137000;141000;96000;91000;93000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;75000;220000;220000;220000;220000;220000;220000;220000;220000;220000;207500;178400;161000;140000;186000;186000;232000;190000;190000;190000;190000;190000;190000;190000;190000
-49;'192;Cuba;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;853;6263;8814;6271;4893;2989;15
-49;'192;Cuba;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;611;921;1048;524;378;15
-49;'192;Cuba;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-49;'192;Cuba;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-49;'192;Cuba;1863;Roundwood, non-coniferous;5516;Production;m3;1795000;2375000;2375000;2240000;2334000;1275200;1351000;1832800;2217000;1838000;2122013;2081000;2214000;2084000;2074000;1985000;1740000;2020000;2870000;2810000;2838000;2880000;2777000;2783795;2755414;2898000;2775000;2830000;2643000;3085189;3185488;3292509;3426712;3442961;3444722;3405932;3404457;3378669;1518000;1599000;1476000;2558000;2416000;2293000;2359000;2359000;1954200;1692100;2154100;1552100;1571000;1562000;1562000;1562000;1562000;1562000;1562000;1562000;1562000;1562000;1562000;1562000;1562000
-49;'192;Cuba;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;310;147;1633;420;135;153
-49;'192;Cuba;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;168;51;810;113;33;28
-49;'192;Cuba;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;0;50;50
-49;'192;Cuba;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;21;1
-49;'192;Cuba;1864;Wood fuel;5516;Production;m3;1525000;1947000;1947000;2031000;1960000;946200;980000;1427800;1798000;1457000;1738013;1697000;1830000;1700000;1690000;1601000;1356000;1636000;2486000;2426000;2454000;2496000;2393000;2399795;2371414;2370000;2272000;2347000;2145000;2587189;2687488;2794509;2928712;2944961;2946722;2907932;2906457;2880669;1187000;963000;888000;1970000;1828000;1798000;1818000;1818000;1413200;1272700;1743000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000
-49;'192;Cuba;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;;;;;;;
-49;'192;Cuba;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;;;;;;;
-49;'192;Cuba;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;22;24;130;;;;;;;
-49;'192;Cuba;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;11;16;59;;;;;;;
-49;'192;Cuba;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1628;Wood fuel, non-coniferous;5516;Production;m3;1525000;1947000;1947000;2031000;1960000;946200;980000;1427800;1798000;1457000;1738013;1697000;1830000;1700000;1690000;1601000;1356000;1636000;2486000;2426000;2454000;2496000;2393000;2399795;2371414;2370000;2272000;2347000;2145000;2587189;2687488;2794509;2928712;2944961;2946722;2907932;2906457;2880669;1187000;963000;888000;1970000;1828000;1798000;1818000;1818000;1413200;1272700;1743000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000;1141000
-49;'192;Cuba;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;;;;;;;
-49;'192;Cuba;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;;;;;;;
-49;'192;Cuba;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;22;24;130;;;;;;;
-49;'192;Cuba;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;11;16;59;;;;;;;
-49;'192;Cuba;1865;Industrial roundwood;5516;Production;m3;290000;435000;435000;217000;380000;338000;385000;410000;421000;382000;385000;385000;385000;385000;385000;474000;474000;474000;514000;514000;514000;521000;516000;521000;525000;624000;594000;576000;611000;611000;611000;611000;611000;611000;611000;611000;611000;611000;406000;856000;808000;808000;808000;715000;761000;761000;761000;639400;618600;589500;591000;561000;607000;607000;653000;611000;611000;611000;611000;611000;611000;611000;611000
-49;'192;Cuba;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;6200;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;30900;30400;11300;20700;20700;5700;;;;;;0;100;0;0;0;0;0;0;0;112;112;112;30438;12034;6362;12668;14765;13442;2314;6593;1550;541;1011;6573;8961;7904;5313;3124;168
-49;'192;Cuba;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;250;200;200;200;200;200;200;200;200;200;200;200;200;200;3364;3228;1225;5018;5018;1179;;;;;;0;26;0;0;0;0;0;0;0;18;18;18;9769;6718;1321;821;1109;1028;1266;907;731;245;471;779;972;1858;637;411;43
-49;'192;Cuba;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;164;100;100;100;100;100;0;0;0;0;46;46;46;20;25;25;25;25;25;25;124;0;0;0;0;0;4;0;50;50
-49;'192;Cuba;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;19;18;18;18;18;18;0;0;0;0;3;3;3;1192;1530;1530;1530;1530;1530;1530;1590;0;0;0;0;0;2;0;21;1
-49;'192;Cuba;1866;Industrial roundwood, coniferous;5516;Production;m3;20000;7000;7000;8000;6000;9000;14000;5000;2000;1000;1000;1000;1000;1000;1000;90000;90000;90000;130000;130000;130000;137000;132000;137000;141000;96000;91000;93000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;75000;220000;220000;220000;220000;220000;220000;220000;220000;220000;207500;178400;161000;140000;186000;186000;232000;190000;190000;190000;190000;190000;190000;190000;190000
-49;'192;Cuba;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;30326;11922;3499;0;1323;0;0;0;0;0;853;6263;8814;6271;4893;2989;15
-49;'192;Cuba;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;0;0;0;0;0;0;0;0;0;0;9751;6700;213;0;81;0;0;0;0;0;416;611;921;1048;524;378;15
-49;'192;Cuba;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;30326;11922;3499;0;1323;0;0;0;0;0;853;6263;8814;6271;4893;2989;15
-49;'192;Cuba;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;0;0;0;0;0;0;0;0;0;0;9751;6700;213;0;81;0;0;0;0;0;416;611;921;1048;524;378;15
-49;'192;Cuba;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1867;Industrial roundwood, non-coniferous;5516;Production;m3;270000;428000;428000;209000;374000;329000;371000;405000;419000;381000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;384000;528000;503000;483000;498000;498000;498000;498000;498000;498000;498000;498000;498000;498000;331000;636000;588000;588000;588000;495000;541000;541000;541000;419400;411100;411100;430000;421000;421000;421000;421000;421000;421000;421000;421000;421000;421000;421000;421000
-49;'192;Cuba;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;2863;12668;13442;13442;2314;6593;1550;541;158;310;147;1633;420;135;153
-49;'192;Cuba;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;1108;821;1028;1028;1266;907;731;245;55;168;51;810;113;33;28
-49;'192;Cuba;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;100;100;100;100;100;0;0;0;0;46;46;46;20;25;25;25;25;25;25;116;0;0;0;0;0;4;0;50;50
-49;'192;Cuba;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;0;0;0;0;3;3;3;1192;1530;1530;1530;1530;1530;1530;1590;0;0;0;0;0;2;0;21;1
-49;'192;Cuba;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;2863;12668;12668;12668;1300;5400;95;0;5;82;40;0;117;1;54
-49;'192;Cuba;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;1108;821;821;821;558;585;49;0;2;16;7;0;26;1;1
-49;'192;Cuba;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;91;0;0;0;0;0;4;0;50;50
-49;'192;Cuba;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;0;0;0;0;0;2;0;21;1
-49;'192;Cuba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;774;1014;1193;1455;541;153;228;107;1633;303;134;99
-49;'192;Cuba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;708;322;682;245;53;152;44;810;87;32;27
-49;'192;Cuba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;46;46;46;20;25;25;25;25;25;25;25;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;3;3;1192;1530;1530;1530;1530;1530;1530;1530;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1868;Sawlogs and veneer logs;5516;Production;m3;200000;148000;148000;87000;64000;59000;53000;60000;71000;32000;35000;35000;35000;35000;35000;124000;124000;124000;164000;164000;164000;171000;166000;171000;175000;149000;156000;159000;193000;193000;193000;193000;193000;193000;193000;193000;193000;193000;128000;400000;400000;400000;400000;400000;400000;400000;400000;278400;257600;228500;230000;200000;246000;246000;292000;250000;250000;250000;250000;250000;250000;250000;250000
-49;'192;Cuba;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;6200;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;30900;30400;11300;20700;20700;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;250;200;200;200;200;200;200;200;200;200;200;200;200;200;3364;3228;1225;5018;5018;1179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;20000;7000;7000;8000;6000;9000;14000;5000;2000;1000;1000;1000;1000;1000;1000;90000;90000;90000;130000;130000;130000;137000;132000;137000;141000;96000;91000;93000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;75000;220000;220000;220000;220000;220000;220000;220000;220000;220000;207500;178400;161000;140000;186000;186000;232000;190000;190000;190000;190000;190000;190000;190000;190000
-49;'192;Cuba;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;180000;141000;141000;79000;58000;50000;39000;55000;69000;31000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;53000;65000;66000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;53000;180000;180000;180000;180000;180000;180000;180000;180000;58400;50100;50100;69000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-49;'192;Cuba;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;6200;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;30900;30400;11300;20700;20700;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;250;200;200;200;200;200;200;200;200;200;200;200;200;200;3364;3228;1225;5018;5018;1179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1871;Other industrial roundwood;5516;Production;m3;90000;287000;287000;130000;316000;279000;332000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;475000;438000;417000;418000;418000;418000;418000;418000;418000;418000;418000;418000;418000;278000;456000;408000;408000;408000;315000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000
-49;'192;Cuba;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;90000;287000;287000;130000;316000;279000;332000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;475000;438000;417000;418000;418000;418000;418000;418000;418000;418000;418000;418000;418000;278000;456000;408000;408000;408000;315000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000;361000
-49;'192;Cuba;1630;Wood charcoal;5510;Production;t;15813;15865;15917;15970;16023;16076;16129;16182;16236;16290;16247;15787;15950;15972;16015;16413;16596;16369;16607;16837;16559;16601;16631;16454;16291;16732;17385;17631;18014;18528;19517;20590;21946;22098;22320;22034;22109;21989;21967;62000;59000;54200;60200;61200;61100;61100;55400;52200;73400;67700;63000;80000;95000;105000;120000;120000;120000;120000;120000;120000;120000;120000;150000
-49;'192;Cuba;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;18;18;20;567;854;3344;8055;9318;11758;24404;5;5;5;5;11;11;13;13;13;0;0;0;0;49
-49;'192;Cuba;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;5;5;5;118;210;796;1878;2527;3637;7757;42;42;42;42;16;16;27;27;27;0;0;0;0;139
-49;'192;Cuba;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498;31483;46553;64302;78221;91951;105917;102984;99103;101596;104325;99930;89036;91474;119678
-49;'192;Cuba;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5550;6786;16263;24373;34754;39277;44681;43264;40903;42678;43031;40549;37148;41795;56158
-49;'192;Cuba;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-49;'192;Cuba;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;0;0;0;0;338;338;338;338;338;338;338;84;84;85;7;11;20;10;22;9;9;9;11;9
-49;'192;Cuba;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;14;14;14;14;14;14;14;15;15;19;23;42;72;32;71;32;31;31;26;30
-49;'192;Cuba;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;89;89;89;89
-49;'192;Cuba;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;10;10;10
-49;'192;Cuba;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;500;500;500;500;500;500;500;500;500;500;500;500;500;500
-49;'192;Cuba;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;0;0;0;0;57;57;57;57;57;57;57;57;57;57;2;7;7;7;7;7;7;7;9;8
-49;'192;Cuba;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;0;0;0;0;3;3;3;3;3;3;3;3;3;3;7;30;30;30;30;30;30;30;25;30
-49;'192;Cuba;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;89;89;89;89
-49;'192;Cuba;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;10;10;10
-49;'192;Cuba;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;600;600;600;600;600;600;600;600;600;600;600;600;600;600
-49;'192;Cuba;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;300;300;300;300;0;0;0;0;281;281;281;281;281;281;281;27;27;28;5;4;13;3;15;2;2;2;2;1
-49;'192;Cuba;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;15;15;15;0;0;0;0;11;11;11;11;11;11;11;12;12;16;16;12;42;2;41;2;1;1;1;0
-49;'192;Cuba;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;31;31;1
-49;'192;Cuba;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;98;98;45
-49;'192;Cuba;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;31;31;1
-49;'192;Cuba;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;98;98;45
-49;'192;Cuba;1872;Sawnwood;5516;Production;m3;90000;130000;226000;151000;125000;106000;82000;77000;116000;96000;105000;105000;105000;105000;105000;105000;105000;105000;100800;112300;107700;107100;104100;108100;104100;108100;114100;118100;130100;130100;130100;130100;130100;130100;130100;130100;130100;130100;146000;179000;190000;147000;181000;189000;220000;243000;194800;166400;188700;157200;151000;130000;132000;132000;155000;134000;134000;134000;134000;130271;130271;130271;130271
-49;'192;Cuba;1872;Sawnwood;5616;Import quantity;m3;159400;260600;157200;250000;273500;331200;269650;369900;387000;450600;431400;365100;404900;623900;623900;451900;491900;542900;396500;542800;516300;500400;426400;606600;738300;723100;578800;524550;552850;552850;552850;1392;5300;9300;17300;15400;8100;8100;8100;41000;34000;34000;34000;21963;21963;7617;16500;37000;21500;21015;27890;38398;31911;18810;68871;32715;29320;21655;16834;17966;9819;7506;31117
-49;'192;Cuba;1872;Sawnwood;5622;Import value;1000 USD;8900;15192;8512;14612;14855;19309;15601;20900;21800;25800;24000;20500;43500;50500;50500;36100;41500;66758;39390;88470;84475;84949;70631;101760;118749;133819;106297;82210;86898;86898;86898;281;1381;1780;4607;4635;1857;1857;1857;11189;11100;11100;11100;4533;4533;2494;5481;13588;7790;6596;7435;10479;10399;5574;17329;7972;8699;6968;5319;7659;5175;4245;6715
-49;'192;Cuba;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;0;0;0;0;0;0;0;0;0;0;0;0;31;27;24;24;24;24;0;133;0;3;0;58;0;1;0
-49;'192;Cuba;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;125;0;0;0;0;0;0;0;0;0;0;0;0;21;0.5;24.5;0.5;0;0;0;21;0;6;2;52;0;4;0
-49;'192;Cuba;1632;Sawnwood, coniferous;5516;Production;m3;22500;25000;49000;29500;31500;27000;19500;21500;43500;32000;32500;32500;32500;32500;32500;32500;32500;32500;21250;28150;24650;35550;37550;43550;46550;33550;39550;45550;58550;58550;58550;58550;58550;58550;58550;58550;58550;58550;66000;101000;107000;88000;109000;114000;132000;146000;135200;115300;145100;125300;105000;91000;93000;93000;116000;95000;95000;95000;95000;95000;95000;95000;95000
-49;'192;Cuba;1632;Sawnwood, coniferous;5616;Import quantity;m3;150750;240750;146950;207250;245750;293850;232300;308100;324050;371500;398500;321650;361450;580450;580450;408450;448450;510500;367950;515650;489150;459600;385750;567950;694450;672150;536450;482200;510500;510500;510500;902;2100;4300;3500;2800;3900;3900;3900;27000;25000;25000;25000;16534;16534;4791;9000;21000;14000;12849;21240;29247;21777;9500;55290;26822;18850;11886;11623;7223;3806;4042;26875
-49;'192;Cuba;1632;Sawnwood, coniferous;5622;Import value;1000 USD;8300;13905;7789;11575;12928;16716;13008;16600;17400;20900;22000;17750;40750;47750;47750;33350;38750;61451;34599;82740;78745;78755;63411;94675;110464;122753;97005;72918;77606;77606;77606;171;267;439;680;544;613;613;613;5729;5600;5600;5600;2877;2877;1721;3086;7723;4969;2640;3844;6095;4965;2394;11849;5287;3557;2558;2603;1335;1393;1408;2306
-49;'192;Cuba;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;0;0;0;0;0;0;0;0;0;0;0;0;5;1;1;1;1;1;0;133;0;0;0;0;0;0;0
-49;'192;Cuba;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;125;0;0;0;0;0;0;0;0;0;0;0;0;2;0.5;0.5;0.5;0;0;0;21;0;0;0;0;0;0;0
-49;'192;Cuba;1633;Sawnwood, non-coniferous;5516;Production;m3;67500;105000;177000;121500;93500;79000;62500;55500;72500;64000;72500;72500;72500;72500;72500;72500;72500;72500;79550;84150;83050;71550;66550;64550;57550;74550;74550;72550;71550;71550;71550;71550;71550;71550;71550;71550;71550;71550;80000;78000;83000;59000;72000;75000;88000;97000;59600;51100;43600;31900;46000;39000;39000;39000;39000;39000;39000;39000;39000;35271;35271;35271;35271
-49;'192;Cuba;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;8650;19850;10250;42750;27750;37350;37350;61800;62950;79100;32900;43450;43450;43450;43450;43450;43450;32400;28550;27150;27150;40800;40650;38650;43850;50950;42350;42350;42350;42350;42350;490;3200;5000;13800;12600;4200;4200;4200;14000;9000;9000;9000;5429;5429;2826;7500;16000;7500;8166;6650;9151;10134;9310;13581;5893;10470;9769;5211;10743;6013;3464;4242
-49;'192;Cuba;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;600;1287;723;3037;1927;2593;2593;4300;4400;4900;2000;2750;2750;2750;2750;2750;2750;5307;4791;5730;5730;6194;7220;7085;8285;11066;9292;9292;9292;9292;9292;110;1114;1341;3927;4091;1244;1244;1244;5460;5500;5500;5500;1656;1656;773;2395;5865;2821;3956;3591;4384;5434;3180;5480;2685;5142;4410;2716;6324;3782;2837;4409
-49;'192;Cuba;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;26;23;23;23;23;0;0;0;3;0;58;0;1;0
-49;'192;Cuba;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0;24;0;0;0;0;0;0;6;2;52;0;4;0
-49;'192;Cuba;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;67;0;0;0;0;0;0;0;351;351;330;330;330;996;284;282;282;440;105;183;55;107;131;1792;203;6;1;0
-49;'192;Cuba;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;165;43;0;0;0;0;0;0;0;273;273;300;300;300;110;613;956;1787;1458;266;87;122;148;274;469;199;57;30;1
-49;'192;Cuba;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1873;Wood-based panels;5516;Production;m3;;;;15000;16800;17500;18800;19100;7300;5600;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;90000;98000;135000;123000;136000;137000;126000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000;149000
-49;'192;Cuba;1873;Wood-based panels;5616;Import quantity;m3;15800;10700;9100;9000;15600;11900;14800;16100;13900;15000;32800;22200;22200;22200;22200;22200;22200;47100;43800;69100;69100;99300;167100;141000;115100;100800;134300;107900;95100;95100;95100;1199;2633;3631;4156;6500;11900;11900;11900;24300;22300;22300;22300;32987;22470;14800;31719;25599;17764;17677;19125;40071;22381;6747;25236;23929;15993;23712;24591;27826;22788;9051;20971
-49;'192;Cuba;1873;Wood-based panels;5622;Import value;1000 USD;2600;1712;1593;1558;2395;1886;2086;2383;2189;2315;5100;3500;3500;3500;2086;2086;2086;11616;9620;17215;17215;26271;41783;34117;27041;31251;39698;26360;23457;23457;23457;705;1782;2228;2357;4058;5696;5696;5696;10311;12150;12150;12150;7568;6602;6715;12814;12656;7493;8591;12165;11887;14118;5801;17703;15577;11505;10495;14232;13074;12688;8749;15778
-49;'192;Cuba;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;9800;9400;22700;35000;15600;20900;20900;20900;966;2200;2200;1700;500;500;500;500;1300;1300;1300;1300;1042;1042;0;0;0;138;138;81;81;81;50;52;52;52;52;52;52;52;61;61
-49;'192;Cuba;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;502;820;2519;3574;1280;1847;1847;1847;88;166;154;130;42;42;42;42;124;124;124;124;176;176;0;0;0;54;54;34;34;34;24;24;24;24;24;24;24;24;29;29
-49;'192;Cuba;1640;Plywood and LVL;5516;Production;m3;;;;;1800;2500;3800;1900;1900;1900;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-49;'192;Cuba;1640;Plywood and LVL;5616;Import quantity;m3;15800;10700;9100;9000;15600;11900;14800;16100;13900;15000;32800;22200;22200;22200;22200;22200;22200;27900;17000;28500;28500;39200;47700;48400;39800;58000;63200;48400;43400;43400;43400;489;2400;1600;3800;5800;8000;8000;8000;16000;11000;11000;11000;10239;10239;7018;12700;12800;11939;9252;10317;31094;13306;3250;10000;9860;9321;19817;7697;7100;4167;4553;8051
-49;'192;Cuba;1640;Plywood and LVL;5622;Import value;1000 USD;2600;1712;1593;1558;2395;1886;2086;2383;2189;2315;5100;3500;3500;3500;2086;2086;2086;8841;5587;11439;11439;15427;20081;18868;14226;24675;25486;16104;14421;14421;14421;413;1681;971;2180;3752;3909;3909;3909;7361;7100;7100;7100;3635;3635;4930;8921;8978;4183;4155;6479;6321;6774;3067;8492;7326;5928;6981;5894;4629;4201;4793;8050
-49;'192;Cuba;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;15000;15000;15000;15000;17200;5400;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;3700;44000;48000;85000;73000;86000;87000;62000;62000;62000;62000;62000;62000;62000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;16800;16800;13200;27400;47300;31800;28400;26200;15900;16000;16000;16000;530;0;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;2584;2584;1242;3441;4599;2857;2862;2645;1668;1349;1349;1349;171;0;966;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;9800;9400;22700;35000;15600;20900;20900;20900;966;2200;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;502;820;2519;3574;1280;1847;1847;1847;88;166;154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000
-49;'192;Cuba;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;500;500;500;1000;1000;1000;1000;2769;2769;3133;5300;3200;482;3133;935;1104;942;899;202;202;154;154;2703;2564;2105;870;2332
-49;'192;Cuba;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;199;176;176;176;290;600;600;600;454;454;740;1059;1673;224;1400;733;613;936;917;162;162;140;140;1444;1327;1274;855;1850
-49;'192;Cuba;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;500;500;500;500;1300;1300;1300;1300;1042;1042;0;0;0;88;88;46;46;46;15;17;17;17;17;17;17;17;26;26
-49;'192;Cuba;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;42;42;42;42;124;124;124;124;176;176;0;0;0;32;32;15;15;15;5;5;5;5;5;5;5;5;10;10
-49;'192;Cuba;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;56;56;56;78;30;83;12;30;30;4
-49;'192;Cuba;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;23;23;23;163;148;27;1;5;5;5
-49;'192;Cuba;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;44000;48000;48000;48000;48000;48000;62000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000
-49;'192;Cuba;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;19200;26800;23800;23800;46900;92000;45300;43500;14400;44900;43600;35700;35700;35700;180;233;531;256;400;3400;3400;3400;7300;10300;10300;10300;19979;9462;4649;13719;9599;5343;5292;7843;7843;8103;2542;14978;13811;6440;3711;14108;18150;16486;3598;10584
-49;'192;Cuba;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;2775;4033;3192;3192;9602;18261;10650;9958;3714;11567;8588;7687;7687;7687;121;101;291;140;107;1611;1611;1611;2660;4450;4450;4450;3479;2513;1045;2834;2005;3086;3036;4918;4918;6373;1794;9026;8066;5274;3226;6867;7117;7208;3096;5873
-49;'192;Cuba;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;50;35;35;35;35;35;35;35;35;35;35;35;35;35
-49;'192;Cuba;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;19;19;19;19;19;19;19;19;19;19;19;19;19
-49;'192;Cuba;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000
-49;'192;Cuba;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;2800;2800;2800;7000;10000;10000;10000;378;378;630;4700;580;86;35;129;129;146;9;9;9;9;29;498;1003;382;234;234
-49;'192;Cuba;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;59;1437;1437;1437;2610;4400;4400;4400;175;175;200;945;116;57;7;95;95;87;12;12;12;12;31;430;902;243;314;314
-49;'192;Cuba;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18517;8000;3700;8700;8700;5139;5139;7670;7670;7314;2331;14767;13752;6352;2627;12835;15592;15194;2778;9764
-49;'192;Cuba;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3166;2200;700;1744;1744;2974;2974;4648;4648;5654;1544;8776;8011;5152;2939;6230;5822;6781;2345;5084
-49;'192;Cuba;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;56;300;600;600;600;300;300;300;300;1084;1084;319;319;319;118;118;44;44;643;202;202;50;79;1055;775;1555;910;586;586
-49;'192;Cuba;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;34;48;174;174;174;50;50;50;50;138;138;145;145;145;55;55;175;175;632;238;238;43;110;256;207;393;184;437;475
-49;'192;Cuba;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;50;35;35;35;35;35;35;35;35;35;35;35;35;35
-49;'192;Cuba;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;19;19;19;19;19;19;19;19;19;19;19;19;19
-49;'192;Cuba;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;44000;48000;48000;48000;48000;48000;62000;85000;85000;85000;85000;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;19200;26800;23800;23800;46900;92000;45300;43500;14400;44900;43600;35700;35700;35700;180;233;431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;2775;4033;3192;3192;9602;18261;10650;9958;3714;11567;8588;7687;7687;7687;121;101;216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1879;Total fibre furnish;5510;Production;t;23000;24900;27500;30700;27500;31800;35000;30000;32500;33700;36000;35000;43000;43000;44000;44000;37500;14400;29500;69900;71600;73400;74000;78000;89000;99000;92000;82000;92000;92000;92000;112000;111000;111000;111000;111000;111000;62000;63000;26000;22000;18000;21500;17800;19800;18500;16300;25080;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100;28100
-49;'192;Cuba;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;37500;39000;30000;39000;31000;31000;31000;31000;31000;31000;32200;38400;63500;45500;57200;45700;41300;45300;40600;50700;43100;42900;42900;42900;6982;4116;4937;9200;8000;4400;4400;4400;8300;8300;8300;8300;17004;13242;9525;13355;14355;4638;9097;7074;7074;5244;7452;10400;4761;3380;4144;8792;12966;10341;5778;6476
-49;'192;Cuba;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;5060;5300;5400;7500;7000;4000;5550;6800;8000;9000;11923;15457;28579;19874;20935;18190;16352;17627;17673;22723;14953;15607;15607;15607;1853;1333;1325;5139;3581;1443;1443;1443;3391;3391;3391;3391;4627;5432;5200;6070;6889;2724;4147;4231;4231;2862;2595;3688;3055;1963;3011;5976;9310;7459;7276;4614
-49;'192;Cuba;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;10600;10600;17600;28800;31300;33600;33600;26200;16000;7000;7000;7000;7000;7000;0;0;0;0;0;0;300;300;300;300;175;175;346;346;346;122;80;80;80;1268;412;407;554;607;607;837;459;808;808;219
-49;'192;Cuba;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;1028;1028;1560;2021;2074;2349;2349;1785;1109;319;319;319;319;319;0;0;0;0;0;0;38;38;38;38;17;17;42;42;42;9;5;5;5;132;77;51;60;104;104;84;25;165;165;21
-49;'192;Cuba;1878;Pulp for paper;5510;Production;t;23000;24900;27500;30700;27500;31800;35000;30000;32500;33700;36000;35000;43000;43000;44000;44000;37500;14400;29500;29900;31600;33400;34000;38000;49000;59000;52000;42000;52000;52000;52000;52000;52000;52000;52000;52000;52000;3000;4000;3000;2000;1000;1500;800;800;500;300;80;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-49;'192;Cuba;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;37500;39000;30000;39000;31000;31000;31000;31000;31000;31000;32200;38400;63500;45500;57200;45700;41300;45300;40600;50700;43100;42900;42900;42900;4009;3043;1565;5200;3200;1400;1400;1400;2400;2400;2400;2400;6242;6242;3355;3355;3355;1870;1934;2774;2774;2822;2096;3207;3772;2153;2917;3507;8064;5454;5471;1805
-49;'192;Cuba;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;5060;5300;5400;7500;7000;4000;5550;6800;8000;9000;11923;15457;28579;19874;20935;18190;16352;17627;17673;22723;14953;15607;15607;15607;1620;1180;832;4535;2759;930;930;930;1782;1782;1782;1782;3432;3432;2100;2100;2100;1406;1407;2747;2747;1963;1582;2262;2611;1476;2524;2979;6805;5696;7092;2165
-49;'192;Cuba;1875;Wood pulp;5610;Import quantity;t;;;;;;;;37500;39000;30000;39000;31000;31000;31000;31000;31000;31000;32200;38400;63500;45500;59800;51400;46100;50300;42600;52700;45100;44900;44900;44900;6009;5043;1365;4200;2200;1400;1400;1400;2400;2400;2400;2400;6242;6242;5204;5204;5204;3719;3783;4623;4623;4607;3942;5043;5608;3973;4737;3478;8064;5454;5471;1805
-49;'192;Cuba;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;5060;5300;5400;7500;7000;4000;5550;6800;8000;9000;11923;15457;28579;19874;22370;21643;18750;20088;18804;23699;15893;16558;16558;16558;2571;2131;710;3711;1935;930;930;930;1782;1782;1782;1782;3432;3432;2900;2900;2900;2206;2207;3547;3547;2627;2373;3049;3398;2242;3290;2946;6805;5696;7092;2165
-49;'192;Cuba;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2713;584
-49;'192;Cuba;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1913;388
-49;'192;Cuba;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;100;100;100;100;0;0;0;0;0;0;0;0;0;0;64;64;64;5;10;10;10;;;;;;;
-49;'192;Cuba;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;43;43;43;43;0;0;0;0;0;0;0;0;0;0;1;1;1;22;36;36;36;;;;;;;
-49;'192;Cuba;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;37500;39000;30000;39000;31000;31000;31000;31000;31000;31000;32200;38400;63500;45500;57200;45700;41300;45300;40600;50700;43100;42900;42900;42900;4009;3043;1365;4200;2100;1300;1300;1300;2400;2400;2400;2400;6242;6242;3355;3355;3355;1870;1870;2710;2710;2753;2083;3184;3749;2124;2888;3478;8064;5454;2758;1221
-49;'192;Cuba;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5060;5300;5400;7500;7000;4000;5550;6800;8000;9000;11923;15457;28579;19874;20935;18190;16352;17627;17673;22723;14953;15607;15607;15607;1620;1180;710;3711;1892;887;887;887;1782;1782;1782;1782;3432;3432;2100;2100;2100;1406;1406;2746;2746;1805;1537;2213;2562;1442;2490;2945;6804;5695;5178;1776
-49;'192;Cuba;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;9300;12800;12800;12800;12800;10500;16100;12600;13900;22300;26200;21800;21800;21800;597;597;597;3900;1800;1300;1300;1300;2400;2400;2400;2400;2400;2400;0;0;0;0;0;0;0;629;629;88;88;88;88;88;88;88;88;88
-49;'192;Cuba;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;3170;4767;4767;4767;4767;2720;5655;4204;5224;8392;8196;6836;6836;6836;322;322;322;3516;1692;887;887;887;1782;1782;1782;1782;1782;1782;0;0;0;0;0;0;0;316;316;79;79;79;79;79;79;79;79;79
-49;'192;Cuba;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;31000;31000;31000;16300;22800;47900;29000;35200;27300;17900;24900;18100;23400;14100;18000;18000;18000;312;448;760;300;0;0;0;0;0;0;0;0;3275;3275;3355;3355;3355;1870;1870;2710;2710;2120;1450;3089;2917;2034;2755;3384;7973;5363;2667;1130
-49;'192;Cuba;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;6800;8000;9000;6335;9565;22687;13630;12753;12422;7849;10456;8798;12148;5726;7681;7681;7681;208;176;378;195;0;0;0;0;0;0;0;0;1382;1382;2100;2100;2100;1406;1406;2746;2746;1466;1198;2109;1897;1357;2257;2838;6710;5601;5084;1682
-49;'192;Cuba;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;45;6;3;3;3;3
-49;'192;Cuba;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;154;28;15;15;15;15
-49;'192;Cuba;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;3900;2000;2000;2900;2900;4100;4200;4800;5700;3000;1000;1900;1900;1900;1900;1900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-49;'192;Cuba;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;1404;779;779;1131;1131;1130;1539;1722;2296;1231;338;626;626;626;626;626;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-49;'192;Cuba;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;2700;800;800;800;6300;3800;3100;3000;2900;2000;1800;1200;1200;1200;1200;98;8;0;300;0;0;0;0;0;0;0;567;567;0;0;0;0;0;0;0;4;4;7;744;;;;;;;
-49;'192;Cuba;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;1014;346;346;346;2284;1918;1309;1245;1355;952;693;464;464;464;464;56;10;0;200;0;0;0;0;0;0;0;268;268;0;0;0;0;0;0;0;23;23;25;586;;;;;;;
-49;'192;Cuba;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;2600;5700;4800;5000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;1849;1849;1849;1849;1849;1849;1849;1849;1849;1849;1849;1849;1849;0;0;0;0;0
-49;'192;Cuba;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1435;3453;2398;2461;1131;976;940;951;951;951;951;951;0;0;0;0;0;0;0;0;0;0;0;0;800;800;800;800;800;800;800;800;800;800;800;800;800;1;1;1;1;1
-49;'192;Cuba;1668;Pulp from fibres other than wood;5510;Production;t;23000;24900;27500;30700;27500;31800;35000;30000;32500;33700;36000;35000;43000;43000;44000;44000;37500;14400;29500;29900;31600;33400;34000;38000;49000;59000;52000;42000;52000;52000;52000;52000;52000;52000;52000;52000;52000;3000;4000;3000;2000;1000;1500;800;800;500;300;80;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-49;'192;Cuba;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;64;3;13;13;29;29;29;0;0;0;0
-49;'192;Cuba;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;824;824;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;136;9;13;13;34;34;34;1;1;1;1
-49;'192;Cuba;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41
-49;'192;Cuba;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-49;'192;Cuba;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;60000;59000;59000;59000;59000;59000;59000;59000;23000;20000;17000;20000;17000;19000;18000;16000;25000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000
-49;'192;Cuba;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2973;1073;3372;4000;4800;3000;3000;3000;5900;5900;5900;5900;10762;7000;6170;10000;11000;2768;7163;4300;4300;2422;5356;7193;989;1227;1227;5285;4902;4887;307;4671
-49;'192;Cuba;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;153;493;604;822;513;513;513;1609;1609;1609;1609;1195;2000;3100;3970;4789;1318;2740;1484;1484;899;1013;1426;444;487;487;2997;2505;1763;184;2449
-49;'192;Cuba;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;10600;10600;17600;28800;31300;33600;33600;26200;16000;7000;7000;7000;7000;7000;0;0;0;0;0;0;300;300;300;300;175;175;346;346;346;122;80;80;80;1268;412;407;554;607;607;837;459;808;808;219
-49;'192;Cuba;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;1028;1028;1560;2021;2074;2349;2349;1785;1109;319;319;319;319;319;0;0;0;0;0;0;38;38;38;38;17;17;42;42;42;9;5;5;5;132;77;51;60;104;104;84;25;165;165;21
-49;'192;Cuba;1876;Paper and paperboard;5510;Production;t;87100;89800;93400;96700;90000;93000;105100;87800;83300;79900;104300;103400;119500;121100;122600;122600;70400;72700;72700;72700;72700;111500;108800;122000;132000;150000;149000;140000;168000;123000;119000;60000;57000;57000;52000;53000;53000;53000;53000;43000;31000;24700;33400;19600;21800;22600;19800;21910;21400;19600;20000;25900;25600;31000;27500;25700;15600;15600;15600;15600;15600;15600;15600
-49;'192;Cuba;1876;Paper and paperboard;5610;Import quantity;t;63200;66600;30300;60700;39500;36400;35100;33200;31600;46300;49100;53700;50000;68000;67700;66300;69300;103800;118700;158100;135300;174600;171400;207000;204700;175400;182300;171600;163700;163700;163700;2589;8038;4034;10300;6800;24400;24400;24400;35400;35400;35400;35400;67770;67770;60927;64872;70847;19200;24115;50288;50288;64120;34574;60197;61410;45508;41917;56835;45566;40936;20248;36127
-49;'192;Cuba;1876;Paper and paperboard;5622;Import value;1000 USD;13300;13871;6372;11647;7594;6570;6370;5947;5719;9155;10700;14000;12300;17300;18900;20300;22200;30790;38608;75654;64322;71013;77132;97957;86103;91715;94879;75296;75265;75265;75265;1982;5219;4998;11582;8022;15485;15485;15485;28529;28529;28529;28529;46250;46250;58897;65529;70419;19482;20745;49766;49766;57084;39275;49250;54373;51075;44951;72959;55564;58002;31751;61993
-49;'192;Cuba;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528;99;99;100;0;0;0;0;300;300;300;300;375;375;239;239;239;242;242;242;242;262;306;71;474;475;475;427;607;429;433;433
-49;'192;Cuba;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2770;24;24;24;0;0;0;0;123;123;123;123;180;180;324;324;324;352;352;352;352;361;512;196;362;363;363;189;2147;188;194;194
-49;'192;Cuba;2042;Graphic papers;5510;Production;t;14100;21100;16500;23100;18800;16300;18900;20900;19900;20000;25000;24700;26900;28500;30000;30000;31300;31300;31300;31300;31300;36500;33800;44000;59000;66000;57000;46000;60000;39000;37000;15000;14000;14000;14000;14000;14000;14000;14000;1000;1000;1000;1000;600;400;800;500;1300;1200;400;0;400;900;800;0;800;0;0;0;0;0;0;0
-49;'192;Cuba;2042;Graphic papers;5610;Import quantity;t;34300;41900;18000;37000;22600;28400;25100;27200;24600;29300;34200;36300;35000;49000;48700;47300;50300;45300;48000;47400;47400;45400;54300;59500;60200;54200;52400;53900;51800;51800;51800;249;707;1315;7600;3500;16500;16500;16500;19600;19600;19600;19600;46391;46391;37476;33990;35990;15158;21852;37993;37993;48071;19035;37049;42684;30248;28223;30420;17648;13133;9519;19588
-49;'192;Cuba;2042;Graphic papers;5622;Import value;1000 USD;6400;7871;3064;6647;4111;4670;4370;4466;3730;5117;5800;6900;6200;9500;11100;12500;14400;14171;16861;22201;21822;21033;26971;31953;29524;31593;29796;25364;24567;24567;24567;397;797;1534;7746;3448;11142;11142;11142;16751;16751;16751;16751;31124;31124;31737;35769;37931;13479;16984;34199;34199;40198;19840;29538;32593;32628;26600;35941;24673;26394;19214;42258
-49;'192;Cuba;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;2;2;2;2;22;22;22;26;26;26;24;4;20;24;24
-49;'192;Cuba;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;27;27;27;27;36;36;36;42;42;42;16;7;9;15;15
-49;'192;Cuba;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1671;Newsprint;5610;Import quantity;t;27200;33900;16800;30700;18900;25400;20800;22900;19800;22800;27200;23500;25000;27000;26700;25300;28300;31700;32200;32000;32000;32100;38700;38800;43200;38000;35400;40500;38600;38600;38600;2;;0;5100;2100;5500;5500;5500;2300;2300;2300;2300;19639;19639;17300;14000;10000;12408;16685;16847;16847;24617;3287;17050;18602;10659;12193;10170;7593;4425;2762;5698
-49;'192;Cuba;1671;Newsprint;5622;Import value;1000 USD;4300;5471;2689;4817;3015;3798;3120;3374;2488;3370;4000;3600;3600;3900;4500;4800;6000;8249;9058;11679;11300;11727;15926;16855;18072;18973;18180;16877;16222;16222;16222;1;;0;4668;1438;2564;2564;2564;1407;1407;1407;1407;10016;10016;11250;11111;7548;8336;9651;10489;10489;14956;2198;8745;9295;5486;6981;6155;4746;3190;3154;4946
-49;'192;Cuba;1674;Printing and writing papers;5510;Production;t;14100;21100;16500;23100;18800;16300;18900;20900;19900;20000;25000;24700;26900;28500;30000;30000;31300;31300;31300;31300;31300;36500;33800;44000;59000;66000;57000;46000;60000;39000;37000;15000;14000;14000;14000;14000;14000;14000;14000;1000;1000;1000;1000;600;400;800;500;1300;1200;400;0;400;900;800;0;800;0;0;0;0;0;0;0
-49;'192;Cuba;1674;Printing and writing papers;5610;Import quantity;t;7100;8000;1200;6300;3700;3000;4300;4300;4800;6500;7000;12800;10000;22000;22000;22000;22000;13600;15800;15400;15400;13300;15600;20700;17000;16200;17000;13400;13200;13200;13200;247;707;1315;2500;1400;11000;11000;11000;17300;17300;17300;17300;26752;26752;20176;19990;25990;2750;5167;21146;21146;23454;15748;19999;24082;19589;16030;20250;10055;8708;6757;13890
-49;'192;Cuba;1674;Printing and writing papers;5622;Import value;1000 USD;2100;2400;375;1830;1096;872;1250;1092;1242;1747;1800;3300;2600;5600;6600;7700;8400;5922;7803;10522;10522;9306;11045;15098;11452;12620;11616;8487;8345;8345;8345;396;797;1534;3078;2010;8578;8578;8578;15344;15344;15344;15344;21108;21108;20487;24658;30383;5143;7333;23710;23710;25242;17642;20793;23298;27142;19619;29786;19927;23204;16060;37312
-49;'192;Cuba;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;2;2;2;2;22;22;22;26;26;26;24;4;20;24;24
-49;'192;Cuba;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;27;27;27;27;36;36;36;42;42;42;16;7;9;15;15
-49;'192;Cuba;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;14000;1000;1000;1000;1000;600;400;800;500;1300;1200;400;0;400;900;800;0;800;0;0;0;0;0;0;0
-49;'192;Cuba;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2120;2120;890;890;890;1061;1061;617;617;181;2198;2270;278;144;144;471;529;631;224;1548
-49;'192;Cuba;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672;1672;800;800;800;1438;1438;1108;1108;585;1548;2169;440;197;197;731;857;1169;582;4147
-49;'192;Cuba;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0
-49;'192;Cuba;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;1;1;0;0;0
-49;'192;Cuba;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5468;5468;8600;8600;8600;8600;17363;17363;14930;13100;13100;106;170;16095;16095;16119;8443;12777;20814;14319;11896;15301;7256;5821;4927;8738
-49;'192;Cuba;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4321;4321;7729;7729;7729;7729;13700;13700;14100;15117;15117;313;473;16604;16604;15533;11057;10825;18962;18841;12417;17680;9628;12714;8490;18118
-49;'192;Cuba;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;0;20;20;20
-49;'192;Cuba;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;0;9;9;9
-49;'192;Cuba;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5532;5532;8700;8700;8700;8700;7269;7269;4356;6000;12000;1583;3936;4434;4434;7154;5107;4952;2990;5126;3990;4478;2270;2256;1606;3604
-49;'192;Cuba;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4257;4257;7615;7615;7615;7615;5736;5736;5587;8741;14466;3392;5422;5998;5998;9124;5037;7799;3896;8104;7005;11375;9442;9321;6988;15047
-49;'192;Cuba;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;4;4
-49;'192;Cuba;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;0;6;6
-49;'192;Cuba;1675;Other paper and paperboard;5510;Production;t;73000;68700;76900;73600;71200;76700;86200;66900;63400;59900;79300;78700;92600;92600;92600;92600;39100;41400;41400;41400;41400;75000;75000;78000;73000;84000;92000;94000;108000;84000;82000;45000;43000;43000;38000;39000;39000;39000;39000;42000;30000;23700;32400;19000;21400;21800;19300;20610;20200;19200;20000;25500;24700;30200;27500;24900;15600;15600;15600;15600;15600;15600;15600
-49;'192;Cuba;1675;Other paper and paperboard;5610;Import quantity;t;28900;24700;12300;23700;16900;8000;10000;6000;7000;17000;14900;17400;15000;19000;19000;19000;19000;58500;70700;110700;87900;129200;117100;147500;144500;121200;129900;117700;111900;111900;111900;2340;7331;2719;2700;3300;7900;7900;7900;15800;15800;15800;15800;21379;21379;23451;30882;34857;4042;2263;12295;12295;16049;15539;23148;18726;15260;13694;26415;27918;27803;10729;16539
-49;'192;Cuba;1675;Other paper and paperboard;5622;Import value;1000 USD;6900;6000;3308;5000;3483;1900;2000;1481;1989;4038;4900;7100;6100;7800;7800;7800;7800;16619;21747;53453;42500;49980;50161;66004;56579;60122;65083;49932;50698;50698;50698;1585;4422;3464;3836;4574;4343;4343;4343;11778;11778;11778;11778;15126;15126;27160;29760;32488;6003;3761;15567;15567;16886;19435;19712;21780;18447;18351;37018;30891;31608;12537;19735
-49;'192;Cuba;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528;99;99;100;0;0;0;0;300;300;300;300;375;375;239;239;239;240;240;240;240;240;284;49;448;449;449;403;603;409;409;409
-49;'192;Cuba;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2770;24;24;24;0;0;0;0;123;123;123;123;180;180;324;324;324;325;325;325;325;325;476;160;320;321;321;173;2140;179;179;179
-49;'192;Cuba;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;6000;7000;11000;10000;12000;12000;11000;11000;9000;9000;5000;5000;5000;0;1000;1000;1000;1000;5000;4000;3000;4100;5400;6100;6600;6900;5600;4400;5400;6000;5700;5900;5500;5500;5900;5700;5700;5700;5700;5700;5700;5700
-49;'192;Cuba;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;695;136;200;100;181;504;15;15;344;473;664;264;264;109;4025;3667;3414;146;502
-49;'192;Cuba;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764;764;300;441;235;396;900;55;55;478;924;895;383;452;332;6221;4783;5195;332;1594
-49;'192;Cuba;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;238;238;238;238;238;238;238;238;238;3;3;4;4;4;4;4;4;4
-49;'192;Cuba;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;323;323;323;323;323;323;323;323;323;7;7;8;8;8;8;8;8;8
-49;'192;Cuba;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;24000;13000;6700;18200;13600;15300;15200;12400;14990;15700;13700;10000;14800;13800;14700;12000;9000;5200;5200;5200;5200;5200;5200;5200
-49;'192;Cuba;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12200;12200;12200;12200;16014;16014;10290;17657;26557;3059;1042;11422;11422;11656;10330;16079;12434;14191;13002;21338;23397;23618;9780;15443
-49;'192;Cuba;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7369;7369;7369;7369;9927;9927;10639;13098;22411;3034;2035;12438;12438;10866;13097;13106;13113;16593;16500;27922;22915;23743;10457;14896
-49;'192;Cuba;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;351;351;0;0;0;1;1;1;1;1;3;3;402;402;402;399;405;405;405;405
-49;'192;Cuba;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;154;154;0;0;0;1;1;1;1;1;11;11;171;171;171;160;171;171;171;171
-49;'192;Cuba;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;27000;33000;34000;32000;35000;44000;49000;52000;49000;48000;26000;25000;25000;25000;25000;25000;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;8000;10000;6000;7000;17000;14900;17400;15000;19000;19000;19000;19000;58500;70700;90400;71800;78900;84400;107300;97800;114500;123700;111200;106100;106100;106100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;1900;2000;1481;1989;4038;4900;7100;6100;7800;7800;7800;7800;16619;21747;37294;29600;28755;32188;45146;36272;51950;58872;44694;47237;47237;47237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-49;'192;Cuba;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;24000;13000;6700;9100;7800;9700;9000;7300;9390;10000;9800;10000;11400;10600;11900;10000;6300;5200;5200;5200;5200;5200;5200;5200
-49;'192;Cuba;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;5400;5400;5400;1632;1632;2483;8800;11000;1812;142;3336;3336;5231;693;2659;984;4307;3307;8744;11590;16038;6059;11238
-49;'192;Cuba;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2754;2754;2754;2754;1012;1012;1300;4411;5697;882;80;2507;2507;3646;488;1825;916;2743;2425;7164;7811;12631;5015;7421
-49;'192;Cuba;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;0;0;0;0;0;0;0;0;0;0;399;399;399;399;399;399;399;399
-49;'192;Cuba;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123;123;0;0;0;0;0;0;0;0;0;0;160;160;160;160;160;160;160;160
-49;'192;Cuba;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;3400;3800;4100;3400;4100;3700;1600;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;1300;9537;9537;4609;2600;7000;507;268;4842;4842;1846;4882;7102;6649;6022;4481;5890;4920;3585;991;1730
-49;'192;Cuba;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1305;1305;1305;1305;5912;5912;6800;3591;9799;658;418;6866;6866;2673;6677;5821;7855;9553;9083;14529;9462;6064;2141;4726
-49;'192;Cuba;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;2400;1800;2100;1700;1500;2000;2300;0;0;0;0;0;0;0;0;0;0;0;0;0
-49;'192;Cuba;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200;4200;4200;4200;4611;4611;3041;6100;8400;632;524;3175;3175;4457;4360;6109;4722;3839;4894;6686;6667;3126;2646;1701
-49;'192;Cuba;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623;2623;2623;2623;2858;2858;2339;4896;6715;1239;1282;2943;2943;4307;4969;5005;4227;4185;4784;6189;5452;4317;3210;2096
-49;'192;Cuba;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;0;1;1;1;1;1;3;3;3;3;3;0;6;6;6;6
-49;'192;Cuba;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;0;0;0;1;1;1;1;1;11;11;11;11;11;0;11;11;11;11
-49;'192;Cuba;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;3200;2800;2000;2700;0;0;0;0;0;0;0
-49;'192;Cuba;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;1300;234;234;157;157;157;108;108;69;69;122;395;209;79;23;320;18;220;869;84;774
-49;'192;Cuba;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687;687;687;687;145;145;200;200;200;255;255;122;122;240;963;455;115;112;208;40;190;731;91;653
-49;'192;Cuba;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;42000;35000;33000;31000;37000;36000;34000;45000;26000;25000;14000;13000;13000;13000;13000;13000;13000;13000;13000;13000;14000;10100;0;0;0;0;20;100;100;4000;5000;5000;10000;10000;10000;4700;4700;4700;4700;4700;4700;4700
-49;'192;Cuba;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;20300;16100;50300;32700;40200;46700;6700;6200;6500;5800;5800;5800;2340;7331;2719;2700;3300;7900;7900;7900;3600;3600;3600;3600;4670;4670;13025;13025;8200;802;717;858;858;4049;4736;6405;6028;805;583;1052;854;771;803;594
-49;'192;Cuba;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;16159;12900;21225;17973;20858;20307;8172;6211;5238;3461;3461;3461;1585;4422;3464;3836;4574;4343;4343;4343;4409;4409;4409;4409;4435;4435;16221;16221;9842;2573;826;3074;3074;5542;5414;5711;8284;1402;1519;2875;3193;2670;1748;3245
-49;'192;Cuba;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528;99;99;100;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;43;43;43;43;43;0;194;0;0;0
-49;'192;Cuba;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2770;24;24;24;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;142;142;142;142;142;5;1961;0;0;0
-49;'192;Cuba;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50341;31645;26585;20019;9213;23222;45360
-49;'192;Cuba;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1314;1712;2526;1260;1327;1265;1285
-49;'192;Cuba;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;894;903;218;219;818;994;1574
-49;'192;Cuba;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;6;6;6;6
-49;'192;Cuba;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;225;162;67;664;938;873
-49;'192;Cuba;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-49;'192;Cuba;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;678;56;152;154;56;701
-49;'192;Cuba;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;2;2;2;2
-49;'192;Cuba;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3674;3057;5931;2167;1673;4216;5597
-49;'192;Cuba;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;9;1;3;4;15;13
-49;'192;Cuba;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5071;4070;2739;3788;2058;1076;4130
-49;'192;Cuba;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;448;1202;55;219;178;185
-49;'192;Cuba;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5603;7445;5282;5270;2021;6842;15688
-49;'192;Cuba;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;8;3
-49;'192;Cuba;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;133
-49;'192;Cuba;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;459
-49;'192;Cuba;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9336;10730;5771;2354;2180;9222;16284
-49;'192;Cuba;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;249;281;212;66;79;113
-49;'192;Cuba;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25223;4314;3793;3390;58;437;95
-49;'192;Cuba;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;963;963;963;963;963;963;963
-49;'192;Cuba;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;1126;2851;2831;405;435;1992
-49;'192;Cuba;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;37;20;68;16;2
-49;'192;Cuba;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44772;45441;52709;38812;37856;42500;55053
-49;'192;Cuba;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321;572;282;210;188;61;28
-49;'192;Cuba;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;94;112;43;407;7;232
-49;'192;Cuba;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;4;4;4;4
-49;'192;Cuba;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4714;2482;9136;4867;2126;3092;1540
-49;'192;Cuba;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;82;82;2;2
-49;'192;Cuba;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5599;8203;1797;2249;2151;3821;11163
-49;'192;Cuba;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0
-49;'192;Cuba;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15172;16547;18358;14384;15791;18598;18507
-49;'192;Cuba;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;462;241;118;93;45;16
-49;'192;Cuba;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19130;18115;23306;17269;17381;16982;23611
-49;'192;Cuba;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;104;32;6;9;10;6
-279;'531;Curaçao;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38748;41906;45882;35638;35900;50531;61433
-279;'531;Curaçao;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1489;1663;1749;1405;1125;3780;5301
-279;'531;Curaçao;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18457;17880;18334;18975;17476;16963;12184;12363;12487;10241;13306;7357;11638
-279;'531;Curaçao;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;585;569;649;566;569;563;563;845;586;692;1141;1499
-279;'531;Curaçao;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2326;2326;2326;2326;546;4691;3391;2050;2706;1760;719;1235;1955
-279;'531;Curaçao;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;131;122;132;170;195;199;148;271;204;244;323;631
-279;'531;Curaçao;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;162
-279;'531;Curaçao;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;31
-279;'531;Curaçao;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;47;200;404;637;713;1433
-279;'531;Curaçao;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;14;23;117;210;290;598
-279;'531;Curaçao;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;162
-279;'531;Curaçao;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;31
-279;'531;Curaçao;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3233;2003;2506;1356;82;522;522
-279;'531;Curaçao;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;134;248;87;34;33;33
-279;'531;Curaçao;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-279;'531;Curaçao;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-279;'531;Curaçao;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;83;1;4;18;9;9;0;0
-279;'531;Curaçao;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;1;5;11;7;7;0;0
-279;'531;Curaçao;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;18;9;9;0;0
-279;'531;Curaçao;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;11;7;7;0;0
-279;'531;Curaçao;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;83;;;;;;;
-279;'531;Curaçao;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;;;;;;;
-279;'531;Curaçao;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2243;2243;2243;2243;463;4608;3390;2046;2688;1751;710;1235;1955
-279;'531;Curaçao;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;127;118;128;166;191;198;143;260;197;237;323;631
-279;'531;Curaçao;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;162
-279;'531;Curaçao;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;31
-279;'531;Curaçao;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;233;539;158;47;200;404;637;713;1433
-279;'531;Curaçao;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;4;14;50;49;40;14;23;117;210;290;598
-279;'531;Curaçao;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;162
-279;'531;Curaçao;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;31
-279;'531;Curaçao;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;233;539;158;47;200;404;637;713;1433
-279;'531;Curaçao;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;4;14;50;49;40;14;23;117;210;290;598
-279;'531;Curaçao;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;162
-279;'531;Curaçao;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;31
-279;'531;Curaçao;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233;2233;2233;2233;230;4069;3232;1999;2488;1347;73;522;522
-279;'531;Curaçao;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;114;114;116;142;158;129;237;80;27;33;33
-279;'531;Curaçao;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;230;165;305;519;361;27;36;18;18
-279;'531;Curaçao;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;116;30;93;118;192;26;9;8;8
-279;'531;Curaçao;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2216;2216;2216;2216;0;3904;2927;1480;2127;1320;37;504;504
-279;'531;Curaçao;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;0;112;65;11;45;54;18;25;25
-279;'531;Curaçao;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;343;343;343;343;343;343;343;97;182;201;22;79
-279;'531;Curaçao;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;149;149;149;149;149;149;149;96;93;165;30;111
-279;'531;Curaçao;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98
-279;'531;Curaçao;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26
-279;'531;Curaçao;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;1;3;6;1;1
-279;'531;Curaçao;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;0;1;3;0;0
-279;'531;Curaçao;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;26
-279;'531;Curaçao;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4
-279;'531;Curaçao;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;1;3;6;1;1
-279;'531;Curaçao;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;0;1;3;0;0
-279;'531;Curaçao;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;26
-279;'531;Curaçao;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4
-279;'531;Curaçao;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;11;8;34;8
-279;'531;Curaçao;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;6;8;4
-279;'531;Curaçao;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;11;8;34;8
-279;'531;Curaçao;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;6;8;4
-279;'531;Curaçao;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17892;20460;15805;31312;17119;15355;3801;3181;7307;4133;5192;5049;16096
-279;'531;Curaçao;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5787;6455;6620;7529;6290;6311;1135;1682;4018;2433;3127;2770;3157
-279;'531;Curaçao;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;22;1;0;0;0;0;0;2;0
-279;'531;Curaçao;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;1;1;2;1;0;0;0;0;0;4;0
-279;'531;Curaçao;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15430;17370;14830;27402;15653;14103;192;1593;5650;3900;4075;2135;6069
-279;'531;Curaçao;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4602;5602;5920;6908;5512;5411;84;729;2853;2184;2411;1847;2612
-279;'531;Curaçao;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2462;3090;975;3910;1466;1252;3609;1588;1657;233;1117;2914;10027
-279;'531;Curaçao;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185;853;700;621;778;900;1051;953;1165;249;716;923;545
-279;'531;Curaçao;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;0;1;0;0;0;0;0;2;0
-279;'531;Curaçao;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;1;1;0;1;0;0;0;0;0;4;0
-279;'531;Curaçao;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;7;24;0;5;28;1;10;3;4
-279;'531;Curaçao;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;18;5;3;17;9;0;7;17;10;56;51;17
-279;'531;Curaçao;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1
-279;'531;Curaçao;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11231;8165;9068;8126;8082;8250;9464;7712;6172;5295;6162;3566;17339
-279;'531;Curaçao;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4705;3494;3805;3539;3392;2937;3508;3491;2608;2185;2680;1549;3810
-279;'531;Curaçao;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;1;8;0;0;0;0;0;0;2063
-279;'531;Curaçao;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;5;85;1;5;0;0;2;0;0;729;828
-279;'531;Curaçao;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-279;'531;Curaçao;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9462;6396;7299;6357;6313;6481;7695;5943;4046;3005;3255;3026;7247
-279;'531;Curaçao;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3834;2623;2934;2668;2521;2066;2637;2620;1552;1135;1440;1170;2058
-279;'531;Curaçao;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;1;8;0;0;0;0;0;0;999
-279;'531;Curaçao;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;5;85;1;5;0;0;2;0;0;729;577
-279;'531;Curaçao;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;1121;1489;1388;218;5688
-279;'531;Curaçao;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;539;742;601;155;1283
-279;'531;Curaçao;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242
-279;'531;Curaçao;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67
-279;'531;Curaçao;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30
-279;'531;Curaçao;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27
-279;'531;Curaçao;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413
-279;'531;Curaçao;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-279;'531;Curaçao;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1731;1731;1731;1731;1731;1731;1731;1731;1005;801;1519;322;4374
-279;'531;Curaçao;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810;810;810;810;810;810;810;810;517;308;639;224;442
-279;'531;Curaçao;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409
-279;'531;Curaçao;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132
-279;'531;Curaçao;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;66;66;66;23;23;20;54;48
-279;'531;Curaçao;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;15;15;11;24;24
-279;'531;Curaçao;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157
-279;'531;Curaçao;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65
-279;'531;Curaçao;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;1356;1356;1356;1356;1356;1356;1356;660;758;1443;245;4324
-279;'531;Curaçao;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;689;689;689;689;689;689;689;312;271;614;179;417
-279;'531;Curaçao;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252
-279;'531;Curaçao;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67
-279;'531;Curaçao;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;309;309;309;309;309;309;309;322;20;56;23;2
-279;'531;Curaçao;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;78;78;190;22;14;21;1
-279;'531;Curaçao;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-279;'531;Curaçao;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600
-279;'531;Curaçao;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;74;74;40;44;22;1;40
-279;'531;Curaçao;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;9;13;6;0;8
-279;'531;Curaçao;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668;1668;1668;1668;1668;1668;1668;1668;2750;2285;2112;552;1681
-279;'531;Curaçao;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;454;454;454;454;454;454;454;376;296;438;138;313
-279;'531;Curaçao;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600
-279;'531;Curaçao;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;74;74;40;44;22;1;40
-279;'531;Curaçao;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;9;13;6;0;8
-279;'531;Curaçao;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668;1668;1668;1668;1668;1668;1668;1668;2750;2285;2112;552;1681
-279;'531;Curaçao;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;454;454;454;454;454;454;454;376;296;438;138;313
-279;'531;Curaçao;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6451;6451;6451;6827;6549;6411;6156;5622;5015;3477;2918;1948;2022
-279;'531;Curaçao;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;7600;7600;7590;7425;7329;7160;6853;5455;5294;7019;2626;3900
-279;'531;Curaçao;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;92;92;92;92;92;674;209;124;135;284
-279;'531;Curaçao;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;105;105;105;105;463;286;250;256;296
-279;'531;Curaçao;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4761;4761;4761;5137;4859;4721;4466;3932;3034;1970;1605;1502;1653
-279;'531;Curaçao;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4712;4712;4712;4702;4537;4441;4272;3965;3049;1961;1733;1775;2354
-279;'531;Curaçao;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;648;100;29;49;97
-279;'531;Curaçao;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;42;431;104;60;103;82
-279;'531;Curaçao;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2030;2030;2030;2406;2128;1990;1735;1201;1242;780;515;704;464
-279;'531;Curaçao;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449;1449;1449;1439;1274;1178;1009;702;821;504;351;563;431
-279;'531;Curaçao;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30
-279;'531;Curaçao;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-279;'531;Curaçao;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2731;2731;2731;2731;2731;2731;2731;2731;1792;1190;1090;798;1189
-279;'531;Curaçao;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3263;3263;3263;3263;3263;3263;3263;3263;2228;1457;1382;1212;1923
-279;'531;Curaçao;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;648;100;29;49;67
-279;'531;Curaçao;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;42;431;104;60;103;71
-279;'531;Curaçao;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;332;332;332;332;332;332;332;49;12;27;29;5
-279;'531;Curaçao;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376;376;376;376;376;376;376;376;64;24;30;39;5
-279;'531;Curaçao;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;1;2;1;2;1
-279;'531;Curaçao;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;3;5;2;2;1
-279;'531;Curaçao;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1803;1803;1803;1803;1803;1803;1803;1803;1385;1024;905;716;1107
-279;'531;Curaçao;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2163;2163;2163;2163;2163;2163;2163;2163;1777;1259;1091;1091;1787
-279;'531;Curaçao;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;81;28;47;65
-279;'531;Curaçao;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;87;57;99;68
-279;'531;Curaçao;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;596;596;596;596;596;596;596;358;154;158;53;77
-279;'531;Curaçao;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724;724;724;724;724;724;724;724;387;174;261;82;131
-279;'531;Curaçao;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;647;17;0;0;1
-279;'531;Curaçao;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;426;12;1;2;2
-279;'531;Curaçao;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690;1690;1690;1690;1690;1690;1690;1690;1981;1507;1313;446;369
-279;'531;Curaçao;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2888;2888;2888;2888;2888;2888;2888;2888;2406;3333;5286;851;1546
-279;'531;Curaçao;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;52;52;52;52;52;26;109;95;86;187
-279;'531;Curaçao;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;63;63;63;63;32;182;190;153;214
-279;'531;Curaçao;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;851;851;851;851;851;851;851;851;797;877;589;113;180
-279;'531;Curaçao;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1309;1309;1309;1309;1309;1309;1309;1309;1061;1293;1128;293;619
-279;'531;Curaçao;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;0;88;83;24;0
-279;'531;Curaçao;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;0;153;183;79;0
-279;'531;Curaçao;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;793;793;793;793;793;793;793;1176;539;515;276;151
-279;'531;Curaçao;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225;1225;1225;1225;1225;1225;1225;1225;1076;519;650;373;315
-279;'531;Curaçao;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;26;21;12;62;186
-279;'531;Curaçao;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;32;29;7;74;168
-279;'531;Curaçao;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;601;601;601;601;601;601;601;978;350;463;63;58
-279;'531;Curaçao;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961;961;961;961;961;961;961;961;783;231;519;88;78
-279;'531;Curaçao;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;26;21;12;62;93
-279;'531;Curaçao;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;32;29;7;74;56
-279;'531;Curaçao;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;128;92;39;142;10
-279;'531;Curaçao;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;154;139;75;152;44
-279;'531;Curaçao;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;156;156;156;156;156;156;48;84;13;52;83
-279;'531;Curaçao;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;207;207;207;207;207;207;129;132;56;113;193
-279;'531;Curaçao;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88
-279;'531;Curaçao;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105
-279;'531;Curaçao;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;22;13;0;19;0
-279;'531;Curaçao;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;10;17;0;20;0
-279;'531;Curaçao;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-279;'531;Curaçao;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7
-279;'531;Curaçao;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;8;91;209;57;38
-279;'531;Curaçao;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;354;354;354;354;354;354;354;269;1521;3508;185;612
-279;'531;Curaçao;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-279;'531;Curaçao;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46
-279;'531;Curaçao;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13541;16112;20166;14495;12417;30254;37082
-279;'531;Curaçao;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;629;502;509;70;2033;2829
-279;'531;Curaçao;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;356;318;345;99;174;394
-279;'531;Curaçao;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;18;18;11;0;10;30
-279;'531;Curaçao;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;17;1;11;1;6;3
-279;'531;Curaçao;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;11
-279;'531;Curaçao;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;339;317;334;98;168;391
-279;'531;Curaçao;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;18;18;11;0;9;19
-279;'531;Curaçao;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;83;136;80;25;169;233
-279;'531;Curaçao;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;72;74;32;1;8;11
-279;'531;Curaçao;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;274;383;250;467;820;618
-279;'531;Curaçao;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;50;77;7;82;19
-279;'531;Curaçao;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456;2413;2401;1669;2817;4562;5242
-279;'531;Curaçao;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;231;152;107;9;879;623
-279;'531;Curaçao;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234
-279;'531;Curaçao;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296
-279;'531;Curaçao;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62
-279;'531;Curaçao;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55
-279;'531;Curaçao;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35
-279;'531;Curaçao;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39
-279;'531;Curaçao;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9259;11488;15659;10185;7823;23195;28561
-279;'531;Curaçao;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;252;174;274;51;975;2069
-279;'531;Curaçao;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;397;672
-279;'531;Curaçao;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12
-279;'531;Curaçao;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151;1498;1269;1966;985;937;1362
-279;'531;Curaçao;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;37;34;8;2;59;65
-279;'531;Curaçao;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13023;13431;13229;10902;10177;12920;12713
-279;'531;Curaçao;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;471;402;310;363;606;973
-279;'531;Curaçao;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-279;'531;Curaçao;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;315;521;444;273;365;544
-279;'531;Curaçao;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;0;10;48;56
-279;'531;Curaçao;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4374;4339;4016;3340;2673;3532;3323
-279;'531;Curaçao;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;256;182;261;286;94;110
-279;'531;Curaçao;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3550;3478;3647;3148;3014;3379;4107
-279;'531;Curaçao;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;95;78;17;4;179;186
-279;'531;Curaçao;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4861;5299;5045;3970;4217;5644;4739
-279;'531;Curaçao;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;112;134;32;63;285;621
-50;'196;Cyprus;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219870.65;266859;267075;249613;301343;362591;349291
-50;'196;Cyprus;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11075.59;11383;7437;6842;12667;13937;14101
-50;'196;Cyprus;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3638;5305;4726;4504;5162;5693;5875;8473;8034;9466;12665;13787;21061;21118;11505;17649;26158;34710;48100;59672;56216;51714;42433;50269;48266;46733;62904;62904;67911;68163;86240;106985;84966;96061;122633;92737;107399;58287;57104;93380;92070;95021;121756;150927;157134;170324;214054;217689;147765;158362;155380;114575;106124;109146;92680;105420;113196.1;125980;122869;113271;123949;169365;152113
-50;'196;Cyprus;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3;28;28;21;3;4;4;4;4;4;19;17;21;329;302;296;279;380;57;74;63;173;270;168;168;216;202;1556;586;589;393;2410;1978;906;1662;3248;3820;2038;2062;2190;1993;1445;2224;2451;2418;2629;3859;5286;3457;6303;7710;6019;7424;5737;5249;5240;7090.79;5693;3695;3383;5086;7874;5187
-50;'196;Cyprus;1861;Roundwood;5516;Production;m3;48000;58000;55000;40600;55900;61700;72200;77700;70000;78700;82000;94700;85000;61700;76700;128000;157000;80000;82000;75000;70000;74000;68000;73700;75000;75400;70300;61300;63300;62800;53800;45100;53100;46500;48000;45100;41000;35342;36451;20580;18310;15430;11990;10058;9656;7437;19672;19831;9878;8958;8495;10990;9399;8810;10595;15738;15529;10951;9366;8615;10033;13818;8117
-50;'196;Cyprus;1861;Roundwood;5616;Import quantity;m3;9100;8100;3200;2600;3700;4700;3200;2700;4900;4400;5200;4000;1700;1100;5200;5400;3500;2300;4000;3500;5000;2500;6000;9200;10500;8100;26600;26600;26600;4050;4149;2968;2618;4600;3500;2900;13500;0;0;2110;3100;2280;781;777;493;787;698;520;944;594;611;2252;1668;1560;2444;2473;2838;3959;10219;7648;1559;6067;1304
-50;'196;Cyprus;1861;Roundwood;5622;Import value;1000 USD;288;396;187;225;199;347;241;179;272;300;366;248;170;113;886;844;601;481;827;688;1329;593;1549;1721;2196;1418;638;638;638;890;1090;644;577;1486;1051;763;1452;217;217;683;606;420;200;195;141;264;434;169;583;286;247;444;336;293;384;719;624.2;1388;4748;2791;748;2415;296
-50;'196;Cyprus;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1445;216;0;0;0;0;0;0;4;60;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;353;56;0;0;0;0;166;166;1;1;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1862;Roundwood, coniferous;5516;Production;m3;44000;52000;48000;37100;50300;51400;61200;66200;59200;67200;70800;84000;74000;60000;75000;125000;153000;77000;79000;73000;68000;70000;65000;71000;70000;72000;67000;58000;60000;60000;51500;42800;51300;43600;46100;42700;39100;32755;35094;19420;16930;13730;11019;8853;7699;6039;18616;18349;7830;8223;7565;9193;7319;7090;8704;14203;13943;9704;7853;7409;9167;12395;7064
-50;'196;Cyprus;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1326;2953;8255;5324;202;4135;180
-50;'196;Cyprus;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186.17;1057;3781;2157;87;1864;71
-50;'196;Cyprus;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1863;Roundwood, non-coniferous;5516;Production;m3;4000;6000;7000;3500;5600;10300;11000;11500;10800;11500;11200;10700;11000;1700;1700;3000;4000;3000;3000;2000;2000;4000;3000;2700;5000;3400;3300;3300;3300;2800;2300;2300;1800;2900;1900;2400;1900;2587;1357;1160;1380;1700;971;1205;1957;1398;1056;1482;2048;735;930;1797;2080;1720;1891;1535;1586;1247;1513;1206;866;1423;1053
-50;'196;Cyprus;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1512;1006;1964;2324;1357;1932;1124
-50;'196;Cyprus;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438.03;331;967;634;661;551;225
-50;'196;Cyprus;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1864;Wood fuel;5516;Production;m3;14000;17000;17000;12000;16500;15000;26000;27000;27000;27000;27000;27000;27000;6000;15000;22000;22000;23000;24000;15000;14000;14000;13000;16700;17000;17400;16300;14300;14300;14800;12100;11200;13900;11100;10900;9900;9700;8315;8039;5420;6550;5210;4271;3287;3857;2864;7730;6701;3718;3628;3545;6523;5666;4830;7488;12875;13618;8840;7385;6356;7178;11215;6247
-50;'196;Cyprus;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;29;0;0;0;0;0;0;0;30;30;110;351;325;483;313;372;599;237;82;2043;1558;1300;2332;1723;2355;793;1601;2163;1149;1750;1261
-50;'196;Cyprus;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;3;5;10;99;43;66;79;103;60;39;12;318;260;163;334;245;280.21;115;253;353;254;315;259
-50;'196;Cyprus;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1627;Wood fuel, coniferous;5516;Production;m3;10000;13000;12000;9000;12000;6000;17000;18000;18000;18000;18000;18000;18000;5000;14000;20000;20000;22000;23000;14000;13000;12000;11000;15000;14000;15000;14000;12000;12000;13000;10500;9500;13000;10000;10000;9000;9000;7127;7430;4840;5970;4510;3785;2581;2704;1983;6940;5956;2896;3194;2938;5141;3893;3570;5988;11561;12164;7848;5933;5203;6339;10113;5213
-50;'196;Cyprus;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301;283;611;284;202;185;150
-50;'196;Cyprus;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180.61;61;155;98;87;105;49
-50;'196;Cyprus;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1628;Wood fuel, non-coniferous;5516;Production;m3;4000;4000;5000;3000;4500;9000;9000;9000;9000;9000;9000;9000;9000;1000;1000;2000;2000;1000;1000;1000;1000;2000;2000;1700;3000;2400;2300;2300;2300;1800;1600;1700;900;1100;900;900;700;1188;609;580;580;700;486;706;1153;881;790;745;822;434;607;1382;1773;1260;1500;1314;1454;992;1452;1153;839;1102;1034
-50;'196;Cyprus;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;510;990;1879;947;1565;1111
-50;'196;Cyprus;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99.6;54;98;255;167;210;210
-50;'196;Cyprus;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;29;0;0;0;0;0;0;0;30;30;110;351;325;483;313;372;599;237;82;2043;1558;1300;2332;1723;;;;;;;
-50;'196;Cyprus;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;3;5;10;99;43;66;79;103;60;39;12;318;260;163;334;245;;;;;;;
-50;'196;Cyprus;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1865;Industrial roundwood;5516;Production;m3;34000;41000;38000;28600;39400;46700;46200;50700;43000;51700;55000;67700;58000;55700;61700;106000;135000;57000;58000;60000;56000;60000;55000;57000;58000;58000;54000;47000;49000;48000;41700;33900;39200;35400;37100;35200;31300;27027;28412;15160;11760;10220;7719;6771;5799;4573;11942;13130;6160;5330;4950;4467;3733;3980;3107;2863;1911;2111;1981;2259;2855;2603;1870
-50;'196;Cyprus;1865;Industrial roundwood;5616;Import quantity;m3;9100;8100;3200;2600;3700;4700;3200;2700;4900;4400;5200;4000;1700;1100;5200;5400;3500;2300;4000;3500;5000;2500;6000;9200;10500;8100;26600;26600;26600;4050;4149;2947;2589;4600;3500;2900;13500;0;0;2110;3070;2250;671;426;168;304;385;148;345;357;529;209;110;260;112;750;483;3166;8618;5485;410;4317;43
-50;'196;Cyprus;1865;Industrial roundwood;5622;Import value;1000 USD;288;396;187;225;199;347;241;179;272;300;366;248;170;113;886;844;601;481;827;688;1329;593;1549;1721;2196;1418;638;638;638;890;1090;643;576;1486;1051;763;1452;217;217;683;603;415;190;96;98;198;355;66;523;247;235;126;76;130;50;474;343.99;1273;4495;2438;494;2100;37
-50;'196;Cyprus;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1445;216;0;0;0;0;0;0;4;60;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;353;56;0;0;0;0;166;166;1;1;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1866;Industrial roundwood, coniferous;5516;Production;m3;34000;39000;36000;28100;38300;45400;44200;48200;41200;49200;52800;66000;56000;55000;61000;105000;133000;55000;56000;59000;55000;58000;54000;56000;56000;57000;53000;46000;48000;47000;41000;33300;38300;33600;36100;33700;30100;25628;27664;14580;10960;9220;7234;6272;4995;4056;11676;12393;4934;5029;4627;4052;3426;3520;2716;2642;1779;1856;1920;2206;2828;2282;1851
-50;'196;Cyprus;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;1002;313;182;300;0;200;10300;0;0;0;0;40;0;278;0;23;98;5;0;0;41;0;0;0;0;43;25;2670;7644;5040;0;3950;30
-50;'196;Cyprus;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;270;57;43;82;0;30;667;2;2;0;0;8;0;41;0;4;64;1;0;0;10;0;0;0;0;5;5.56;996;3626;2059;0;1759;22
-50;'196;Cyprus;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;166;166;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;1002;313;182;300;0;200;10300;0;0;0;0;40;0;278;0;23;98;5;0;0;41;0;0;0;0;43;25;2670;7644;5040;0;3950;30
-50;'196;Cyprus;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;270;57;43;82;0;30;667;2;2;0;0;8;0;41;0;4;64;1;0;0;10;0;0;0;0;5;5.56;996;3626;2059;0;1759;22
-50;'196;Cyprus;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;166;166;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;2000;2000;500;1100;1300;2000;2500;1800;2500;2200;1700;2000;700;700;1000;2000;2000;2000;1000;1000;2000;1000;1000;2000;1000;1000;1000;1000;1000;700;600;900;1800;1000;1500;1200;1399;748;580;800;1000;485;499;804;517;266;737;1226;301;323;415;307;460;391;221;132;255;61;53;27;321;19
-50;'196;Cyprus;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745;3147;2634;2407;4300;3500;2700;3200;0;0;2110;3070;2210;671;148;168;281;287;143;345;357;488;209;110;260;112;707;458;496;974;445;410;367;13
-50;'196;Cyprus;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822;820;586;533;1404;1051;733;785;215;215;683;603;407;190;55;98;194;291;65;523;247;225;126;76;130;50;469;338.43;277;869;379;494;341;15
-50;'196;Cyprus;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1405;216;0;0;0;0;0;0;4;60;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;338;56;0;0;0;0;0;0;1;1;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2999;3059;2319;2224;4000;2500;2200;2700;0;0;1990;3010;1230;0;12;39;113;40;0;8;78;291;4;28;10;13;371;311;198;804;441;309;347;7
-50;'196;Cyprus;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766;775;539;501;1336;780;679;647;160;160;647;586;297;0;7;36;122;49;0;5;66;95;5;33;8;12;335;299.77;255;830;377;380;336;14
-50;'196;Cyprus;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;88;315;183;300;1000;500;500;0;0;120;60;980;671;136;129;168;247;143;337;279;197;205;82;250;99;336;147;298;170;4;101;20;6
-50;'196;Cyprus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;45;47;32;68;271;54;138;55;55;36;17;110;190;48;62;72;242;65;518;181;130;121;43;122;38;134;38.66;22;39;2;114;5;1
-50;'196;Cyprus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1405;216;0;0;0;0;0;0;4;60;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;338;56;0;0;0;0;0;0;1;1;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1868;Sawlogs and veneer logs;5516;Production;m3;11000;15000;16000;11100;15300;23500;24000;27300;21800;26300;28200;33700;31000;34700;43700;98000;125000;40000;47000;41000;34000;40000;33000;36000;36000;34000;33000;35000;35000;36000;27700;23600;28800;25500;24900;25900;23000;18816;19583;11930;11740;10180;7702;6757;5796;4537;11907;12892;6124;5303;4850;4381;3720;3940;3049;2807;1748;2060;1971;2006;2396;2340;1862
-50;'196;Cyprus;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;600;1300;700;700;100;100;100;1700;1900;1300;100;100;100;100;800;2100;3700;6200;4000;26000;26000;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;24;36;21;21;10;4;4;220;178;135;15;16;16;16;121;378;523;939;688;468;468;468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;11000;14000;15000;11000;15000;23000;23000;26000;21000;25000;27000;33000;30000;34000;43000;97000;124000;39000;45000;40000;33000;38000;32000;35000;34000;33000;32000;34000;34000;35000;27000;23000;28000;24000;24000;24600;22000;17417;19028;11360;10940;9180;7218;6260;4993;4023;11642;12199;4904;5010;4591;3982;3418;3480;2664;2601;1624;1809;1913;1953;2379;2019;1843
-50;'196;Cyprus;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;600;1300;700;700;100;100;100;1700;1900;1300;100;100;100;100;800;2100;3700;6200;4000;26000;26000;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;24;36;21;21;10;4;4;220;178;135;15;16;16;16;121;378;523;939;688;468;468;468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;1000;1000;100;300;500;1000;1300;800;1300;1200;700;1000;700;700;1000;1000;1000;2000;1000;1000;2000;1000;1000;2000;1000;1000;1000;1000;1000;700;600;800;1500;900;1300;1000;1399;555;570;800;1000;484;497;803;514;265;693;1220;293;259;399;302;460;385;206;124;251;58;53;17;321;19
-50;'196;Cyprus;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8182;8792;3180;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8182;8616;3180;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;176;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;7000;8000;16000;11000;19000;22000;20000;22000;21000;22000;24000;21000;12000;14000;12000;14000;10300;10200;9500;12000;9000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;7000;8000;16000;11000;19000;22000;20000;22000;21000;22000;24000;21000;12000;14000;12000;14000;10300;10200;9500;12000;9000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1871;Other industrial roundwood;5516;Production;m3;23000;26000;22000;17500;24100;23200;22200;23400;21200;25400;26800;34000;27000;21000;18000;1000;2000;1000;;;;;;;;;;;;;;;200;400;200;300;300;29;37;50;20;40;17;14;3;36;35;238;36;27;100;86;13;40;58;56;163;51;10;253;459;263;8
-50;'196;Cyprus;1871;Other industrial roundwood;5616;Import quantity;m3;9100;8100;3200;2600;3700;4700;3200;2100;3600;3700;4500;3900;1600;1000;3500;3500;2200;2200;3900;3400;4900;1700;3900;5500;4300;4100;600;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1871;Other industrial roundwood;5622;Import value;1000 USD;288;396;187;225;199;347;241;155;236;279;345;238;166;109;666;666;466;466;811;672;1313;472;1171;1198;1257;730;170;170;170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;23000;25000;21000;17100;23300;22400;21200;22200;20200;24200;25800;33000;26000;21000;18000;1000;1000;;;;;;;;;;;;;;;;100;100;100;100;100;29;20;40;20;40;16;12;2;33;34;194;30;19;36;70;8;40;52;41;155;47;7;253;449;263;8
-50;'196;Cyprus;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;1000;1000;400;800;800;1000;1200;1000;1200;1000;1000;1000;0;0;;1000;1000;;;;;;;;;;;;;;;100;300;100;200;200;0;17;10;0;0;1;2;1;3;1;44;6;8;64;16;5;0;6;15;8;4;3;0;10;0;0
-50;'196;Cyprus;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;9100;8100;3200;2600;3700;4700;3200;2100;3600;3700;4500;3900;1600;1000;3500;3500;2200;2200;3900;3400;4900;1700;3900;5500;4300;4100;600;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;288;396;187;225;199;347;241;155;236;279;345;238;166;109;666;666;466;466;811;672;1313;472;1171;1198;1257;730;170;170;170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1630;Wood charcoal;5510;Production;t;1564;1555;1547;1539;1531;1523;1515;1507;1500;1492;1450;1432;1433;1528;1637;1549;1479;1452;1422;1416;1431;1433;1441;1439;1448;1462;1455;1441;1437;1439;1476;144;145;0;0;0;0;3400;3400;3000;3000;3000;3000;2500;2500;2000;4000;1500;1000;1000;1000;1400;1200;1000;1553;2283;2415;1567;1309;1127;1273;1988;1107
-50;'196;Cyprus;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1331;1464;2900;3400;2600;4100;4100;4450;14300;13800;21490;4343;5630;7868;8224;8814;9584;9800;9537;11028;11246;11474;11520;12393;13336;13222;12464;13172;14460;13233;14180;13696
-50;'196;Cyprus;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;739;780;805;587;1066;1066;1066;659;583;966;1269;1766;2900;3321;3883;4945;5109;4668;5724;6059;6597;6635;6437;6738;6741.3;6586;7062;7953;7612;9728;9040
-50;'196;Cyprus;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;100;0;140;100;100;150;3;30;10;0;68;37;27;0;14;43;0;43;80;15;0;0;0;0;33;0;0;0;0;0
-50;'196;Cyprus;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;9;0;28;8;8;8;1;2;2;0;31;23;16;0;5;25;0;17;16;9;0;0;0;0;18;0;0;0;0;0
-50;'196;Cyprus;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5500;5000;4000;3000;3000;2000;2000;2000;1500;5100;5200;5200;6064;4520;8070;4200;4494;9940;8466;7559;7530;6907;6967
-50;'196;Cyprus;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;200;1190;1180;1200;1255;1102;983;1084;930;1110;2576;3533;1886;1191;1378;1180;1148;1264;584;470;533;789;724;1358;1460
-50;'196;Cyprus;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;193;372;216;226;211;180;176;142;227;501;772;452;283;344;271;204;269;80.94;87;117;121;109;285;343
-50;'196;Cyprus;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;8;0;10;18;0
-50;'196;Cyprus;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2;0;5;10;0
-50;'196;Cyprus;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5500;5000;4000;3000;3000;2000;2000;2000;1500;1500;1500;1500;1819;1360;2420;1260;1348;2982;2540;2268;2259;2072;2075
-50;'196;Cyprus;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;576;576;400;100;100;100;0;130;80;70;31;90;82;52;66;25;18;89;103;241;34;110;227;53;108;188;205;126;210;438;473
-50;'196;Cyprus;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;29;29;19;8;8;4;4;31;197;17;7;29;20;16;18;30;11;71;34;46;10;18;23;8;28.34;57;73;47;49;148;186
-50;'196;Cyprus;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;8;0;10;18;0
-50;'196;Cyprus;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2;0;5;10;0
-50;'196;Cyprus;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3600;3700;3700;4245;3160;5650;2940;3146;6958;5926;5291;5271;4835;4892
-50;'196;Cyprus;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1263;621;621;2000;1500;800;800;200;1060;1100;1130;1224;1012;901;1032;864;1085;2558;3444;1783;950;1344;1070;921;1211;476;282;328;663;514;920;987
-50;'196;Cyprus;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;21;21;74;85;102;15;15;162;175;199;219;182;160;160;124;197;490;701;418;237;334;253;181;261;52.6;30;44;74;60;137;157
-50;'196;Cyprus;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;595
-50;'196;Cyprus;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;96
-50;'196;Cyprus;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-50;'196;Cyprus;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;553;1800;6377;2333;4272;2364;3485;4672;4312;7986;3234
-50;'196;Cyprus;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;134;290;685;382;767.38;553;787;1097;1115;2010;1105
-50;'196;Cyprus;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;432;1360;5780;2130;3367;1907;3275;4299;4042;7696;2785
-50;'196;Cyprus;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;104;220;624;359;611.76;397;683;937;929;1920;827
-50;'196;Cyprus;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;121;440;597;203;905;457;210;373;270;290;449
-50;'196;Cyprus;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;30;70;61;23;155.62;156;104;160;186;90;278
-50;'196;Cyprus;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1872;Sawnwood;5516;Production;m3;25200;23200;22400;16100;22800;14400;14700;16000;13700;16000;16900;20500;18500;21500;38100;70400;74800;71600;83100;76000;63500;72500;55300;58600;62700;59000;57300;55400;60000;22000;16430;14160;17160;14900;14900;15600;13600;11290;11750;8740;8600;7460;5645;4953;4255;3850;8717;9657;4571;3971;2909;2628;2241;2390;1865;1718;1146;1267;1187;1356;1713;1562;1122
-50;'196;Cyprus;1872;Sawnwood;5616;Import quantity;m3;22900;48700;33300;29400;35700;31300;34100;42600;46000;51700;62300;70000;65100;37500;600;15000;47000;64800;66100;53900;58900;48300;58600;68000;62000;49400;52500;52500;72400;72400;64000;108932;90218;98000;121900;76900;90900;95000;95050;66800;77280;84480;183085;120907;134780;120312;157497;115605;63263;73642;56045;35129;28982;33160;33380;39762;41142;42337;48475;35448;37156;43128;34819
-50;'196;Cyprus;1872;Sawnwood;5622;Import value;1000 USD;1247;2567;1839;1633;2023;1655;1815;2965;2799;3514;4291;4909;6310;6674;140;2676;8012;10421;13441;14567;14904;10581;11532;13103;9723;9745;12005;12005;19209;19209;19310;23957;19835;23189;29491;21181;27266;10416;10416;18010;19333;21402;33448;40442;41173;42240;69524;52005;28318;29890;25901;16829;13812;16084;11774;12787;15738.04;17349;18598;13739;18545;26043;17881
-50;'196;Cyprus;1872;Sawnwood;5916;Export quantity;m3;100;500;500;300;100;100;100;100;100;100;500;400;200;3000;3000;2000;1600;2800;500;300;100;1000;1600;1300;1300;1300;1300;1300;1300;1300;1300;1359;1197;200;150;3900;5500;5500;8175;1350;160;240;397;188;210;159;0;572;0;0;0;0;5;0;0;0;0;0;33;46;14;0;0
-50;'196;Cyprus;1872;Sawnwood;5922;Export value;1000 USD;3;28;28;21;3;4;4;4;4;4;19;17;21;329;302;176;134;235;47;42;33;161;258;156;156;156;156;156;156;156;156;342;215;31;29;1094;1077;1077;1077;400;107;45;101;53;101;63;0;391;0;0;0;0;4;0;0;0;0;0;18;11;7;0;0
-50;'196;Cyprus;1632;Sawnwood, coniferous;5516;Production;m3;24800;22600;21800;15900;22400;14000;14000;15000;13000;15000;16000;20000;18000;21000;38000;70000;74200;66900;75400;69100;57600;61000;50900;55700;53400;52700;50900;53000;54000;21000;16000;13800;16700;14000;14400;14800;13000;10450;11417;8310;8000;6710;5282;4580;3653;2943;8519;9149;3678;3757;2754;2389;2056;2110;1630;1585;1067;1114;1150;1324;1697;1369;1111
-50;'196;Cyprus;1632;Sawnwood, coniferous;5616;Import quantity;m3;21500;47400;32100;28300;34600;29200;32100;27600;34000;40500;54400;59700;52100;28600;;9300;40200;59600;56900;45400;52000;38100;49000;57800;52600;37900;43500;43500;50500;50500;38800;83802;71102;75000;102000;49300;50500;75000;75000;41910;61240;67200;144308;102319;108026;99048;139157;96680;54487;64443;47748;29785;24251;26470;25899;31847;28768;33127;35618;28120;30793;31955;25812
-50;'196;Cyprus;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1133;2475;1749;1546;1912;1460;1600;1475;1823;2400;3425;3759;4288;4417;;1492;6281;8897;10344;10943;12133;7159;8346;9748;6903;6656;8847;8847;12434;12434;11171;14459;12709;14288;19433;10362;14284;3980;3980;10159;11654;13432;23943;28342;26694;29376;52576;36771;18655;22488;19230;11565;10809;10988;8284;8429;9555.25;11307;11931;9766;13664;16675;10727
-50;'196;Cyprus;1632;Sawnwood, coniferous;5916;Export quantity;m3;100;500;500;300;100;100;100;100;100;100;500;400;200;3000;3000;2000;1600;2800;500;300;100;1000;1600;1300;1300;1300;1300;1300;1300;1300;1300;1359;1197;200;100;700;3300;3300;4900;1120;0;40;110;188;210;159;0;572;0;0;0;0;5;0;0;0;0;0;0;46;14;0;0
-50;'196;Cyprus;1632;Sawnwood, coniferous;5922;Export value;1000 USD;3;28;28;21;3;4;4;4;4;4;19;17;21;329;302;176;134;235;47;42;33;161;258;156;156;156;156;156;156;156;156;342;215;31;14;198;476;476;476;306;0;23;84;53;101;63;0;391;0;0;0;0;4;0;0;0;0;0;0;11;7;0;0
-50;'196;Cyprus;1633;Sawnwood, non-coniferous;5516;Production;m3;400;600;600;200;400;400;700;1000;700;1000;900;500;500;500;100;400;600;4700;7700;6900;5900;11500;4400;2900;9300;6300;6400;2400;6000;1000;430;360;460;900;500;800;600;840;333;430;600;750;363;373;602;907;198;508;893;214;155;239;185;280;235;133;79;153;37;32;16;193;11
-50;'196;Cyprus;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1400;1300;1200;1100;1100;2100;2000;15000;12000;11200;7900;10300;13000;8900;600;5700;6800;5200;9200;8500;6900;10200;9600;10200;9400;11500;9000;9000;21900;21900;25200;25130;19116;23000;19900;27600;40400;20000;20050;24890;16040;17280;38777;18588;26754;21264;18340;18925;8776;9199;8297;5344;4731;6690;7481;7915;12374;9210;12857;7328;6363;11173;9007
-50;'196;Cyprus;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;114;92;90;87;111;195;215;1490;976;1114;866;1150;2022;2257;140;1184;1731;1524;3097;3624;2771;3422;3186;3355;2820;3089;3158;3158;6775;6775;8139;9498;7126;8901;10058;10819;12982;6436;6436;7851;7679;7970;9505;12100;14479;12864;16948;15234;9663;7402;6671;5264;3003;5096;3490;4358;6182.8;6042;6667;3973;4881;9368;7154
-50;'196;Cyprus;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;3200;2200;2200;3275;230;160;200;287;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;0;0;0;0
-50;'196;Cyprus;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;896;601;601;601;94;107;22;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;0;0;0;0
-50;'196;Cyprus;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;488;390;176;114;80;77;70;74;88;95;86;77;81;77;56
-50;'196;Cyprus;1634;Veneer sheets;5616;Import quantity;m3;0;0;0;0;0;100;100;100;100;200;100;100;100;100;100;1800;3800;3700;5000;7700;5400;6800;7300;7500;6500;7000;2200;2200;2800;2800;2000;1809;2238;2000;3300;3100;1600;1600;1400;1610;1640;2200;1916;3022;5552;2831;3087;6945;1811;5737;835;426;447;600;3439;10781;7040;1403;543;661;1407;794;757
-50;'196;Cyprus;1634;Veneer sheets;5622;Import value;1000 USD;0;0;0;0;0;21;17;29;31;42;23;30;83;40;67;292;671;1280;1473;2347;1863;1943;1996;1791;1694;1710;865;865;1100;1100;1415;2255;2026;1935;3250;3630;3659;665;665;3743;3209;3314;3629;5775;6919;4964;5927;6010;3192;3175;1803;929;604;630;3426;10550;6594.19;952;401;951;1246;972;697
-50;'196;Cyprus;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;125;0;0;0;0;0;0;11;20;50;0;10;0;6;1;0;83;26;8;0;0;0;46;133;0;0;0;0;0;0;0
-50;'196;Cyprus;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;61;0;0;0;0;0;0;34;62;22;0;25;0;15;3;0;86;125;11;0;0;0;38;83;0;0;0;0;0;0;0
-50;'196;Cyprus;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;21000;22000;23000;24000;23000;24000;24000;22000;13800;11400;12100;22000;22000;21000;21000;20100;19300;20500;12200;4200;2600;2340;1900;1718;2500;2534;2312;1396;1067;480;12;8;5;10;6;7;7;6;6;6;5;4
-50;'196;Cyprus;1873;Wood-based panels;5616;Import quantity;m3;4900;5800;5700;4900;5300;8143;9564;17974;15764;12585;24348;21858;38464;19327;16400;20000;19300;11200;23500;22800;14200;20000;15700;26600;27500;32500;45500;45500;78100;78100;63700;60025;61481;61400;59700;51200;69900;51600;48250;79280;107240;132020;112761;118613;165368;125590;139268;141249;94224;102958;90017;60351;50388;53860;46996;66089;81872;95770;94530;95913;90183;94585;104142
-50;'196;Cyprus;1873;Wood-based panels;5622;Import value;1000 USD;619;728;805;657;644;1268;1144;2188;1748;1377;2809;2962;6451;4225;2114;2395;2976;2911;7503;8110;5164;6587;4011;4873;5948;7040;9678;9678;11957;11957;15324;19261;17249;20693;20020;17277;18573;9379;9379;13653;16369;18500;25537;34738;37997;41358;49395;58937;33798;34189;32381;21733;17486;19298;14728;18594;25412.87;35700;32808;32263;38505;46639;50879
-50;'196;Cyprus;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;1400;1200;1200;100;200;200;100;100;100;100;200;100;3000;900;900;200;2009;277;0;0;1500;2800;2800;4200;152;80;80;94;190;166;124;349;268;154;167;16;14;27;1;0;7;0;40;157;89;57;38;0
-50;'196;Cyprus;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;120;145;145;10;32;30;12;12;12;12;60;46;1400;430;430;234;834;132;0;0;365;1045;39;39;16;27;56;44;156;85;88;259;332;186;107;19;20;20;0;0;5;0;19;85;37;45;24;0
-50;'196;Cyprus;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;1000;2000;3000;4000;3000;3000;3000;3000;1800;1800;1800;2000;2000;2000;2000;1800;1900;2500;3700;4200;2600;2340;1900;1718;2500;2534;2312;1396;1067;480;12;8;5;10;6;7;7;6;6;6;5;4
-50;'196;Cyprus;1640;Plywood and LVL;5616;Import quantity;m3;1500;1500;1800;1500;1600;2900;2600;12100;9600;3900;16200;15300;25700;12200;7300;3000;4200;7700;15300;11900;6500;9300;5600;4200;4500;4900;2000;2000;23300;23300;24600;7558;4344;8000;6800;9000;7400;7400;7700;17790;30540;55550;16629;14118;14341;16040;19153;22971;6384;7902;8175;4448;3526;3960;6761;10974;10225;14704;21021;17021;12788;14432;21536
-50;'196;Cyprus;1640;Plywood and LVL;5622;Import value;1000 USD;313;337;336;286;303;725;474;1830;1300;726;2169;2340;5000;3148;1103;865;1417;2375;5547;5257;3191;3897;2042;1421;2594;1680;1807;1807;2539;2539;3081;3346;2186;4048;3445;3619;2877;705;705;3124;3690;4648;5599;7724;7690;7919;12085;15483;4810;5125;5235;3266;2648;2991;3694;4271;6119.72;8844;8848;7680;7772;10690;15650
-50;'196;Cyprus;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996;267;0;0;400;1900;1900;2850;130;0;60;74;128;97;124;99;172;102;120;0;0;2;0;0;0;0;0;149;40;57;0;0
-50;'196;Cyprus;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831;130;0;0;198;931;4;4;7;0;33;22;87;57;88;119;157;120;86;0;0;7;0;0;0;0;0;82;20;45;0;0
-50;'196;Cyprus;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;19
-50;'196;Cyprus;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;9
-50;'196;Cyprus;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;21000;21000;19000;12000;9600;10300;20000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1500;1800;1400;1100;2700;2400;3700;4400;4900;7000;7200;5400;11500;6600;3900;1800;3100;1600;7400;9500;6600;9100;7400;14300;9700;12400;9100;9100;24200;24200;15000;21241;27301;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;127;159;146;110;223;204;292;220;330;489;523;482;1255;908;488;230;450;276;1756;2329;1514;2011;1300;2203;1395;1877;1806;1806;3977;3977;3950;4965;6130;4582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;1400;1200;1200;100;200;200;100;100;100;100;200;100;3000;900;900;200;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;120;145;145;10;32;30;12;12;12;12;60;46;1400;430;430;234;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;19000;18300;17400;18000;8500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23300;20300;41300;23000;22850;40020;44690;20590;33374;23181;43354;30661;29503;67076;56269;51868;45704;29588;22895;30200;18786;23036;42579;43359;42091;43421;46919;49323;51251
-50;'196;Cyprus;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6393;4998;8332;1310;1310;5871;6544;4868;7923;8194;9666;12388;8594;23144;16130;14595;12814;9109;6830;9034;4987;6030;9790.29;13098;12404;12767;17343;20986;20887
-50;'196;Cyprus;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;500;500;750;0;80;0;0;23;65;0;4;4;17;47;16;14;25;0;0;0;0;40;8;49;0;23;0
-50;'196;Cyprus;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;112;84;0;0;3;26;0;0;19;25;0;8;1;9;21;19;20;13;0;0;0;0;19;3;17;0;17;0
-50;'196;Cyprus;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1580;33010;31006;53262;74507;50501;56824;19969;11682;17515;11795;10165;9897;7200;8843;9446;11426;16640;14826;20231;15153;10824;13705
-50;'196;Cyprus;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;332;3868;4326;10194;9684;10072;13875;5022;3360;4774;3657;2820;2936;2170;2070;2133;2829.33;4984;4138;4649;5681;4195;4653
-50;'196;Cyprus;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1874;Fibreboard;5616;Import quantity;m3;1900;2500;2500;2300;1000;2843;3264;1474;1264;1685;948;1158;1264;527;5200;15200;12000;1900;800;1400;1100;1600;2700;8100;13300;15200;34400;34400;30600;30600;24100;31226;29836;32400;29600;21900;21200;21200;17700;20470;30430;22870;31752;28052;33166;28388;33788;31233;19889;25673;24343;16150;14070;12500;12606;22633;17642;21067;16592;15240;15323;20006;17650
-50;'196;Cyprus;1874;Fibreboard;5622;Import value;1000 USD;179;232;323;261;118;339;378;138;118;162;117;140;196;169;523;1300;1109;260;200;524;459;679;669;1249;1959;3483;6065;6065;5441;5441;8293;10950;8933;12063;10182;8660;7364;7364;7364;4214;5803;5116;7689;8626;10957;10979;14841;15288;9498;9695;10675;6538;5072;5103;3977;6160;6673.53;8774;7418;7167;7709;10768;9689
-50;'196;Cyprus;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;600;400;400;600;2;0;20;20;38;4;0;246;92;35;0;0;0;0;0;0;7;0;0;0;0;0;15;0
-50;'196;Cyprus;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;55;30;35;35;4;1;23;22;49;3;0;132;174;57;0;0;0;0;0;0;5;0;0;0;0;0;7;0
-50;'196;Cyprus;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;1400;1400;1400;0;1740;2290;2500;2516;3903;5025;4906;2898;2281;1718;3318;4276;2733;2034;2120;1344;861;963;1491;1287;1785;1173;1663;1679
-50;'196;Cyprus;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1070;1026;1112;1112;1112;816;1307;1679;2546;3880;4565;5072;3305;3227;2300;2176;3088;1735;974;1311;684;453;982.46;1464;1492;2104;1452;2410;2583
-50;'196;Cyprus;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;10;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;3;0;19;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22500;17100;13700;13700;9300;12210;20270;12990;22071;17981;21586;17650;26437;24687;15912;19284;17653;11858;10972;8730;10028;18283;13248;15215;13189;12274;13219;15833;14452
-50;'196;Cyprus;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8444;6990;5220;5220;5220;2229;3349;2141;3626;3550;4961;4494;10382;10918;6521;6805;6759;4302;3775;3308;2819;4380;4226.41;5583;4378;4395;5638;6843;5917
-50;'196;Cyprus;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;246;68;35;0;0;0;0;0;0;7;0;0;0;0;0;0;0
-50;'196;Cyprus;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;132;158;57;0;0;0;0;0;0;5;0;0;0;0;0;0;0
-50;'196;Cyprus;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;2300;7300;4100;1400;100;300;100;100;800;4500;6700;9100;17700;17700;16200;16200;400;2863;2442;2400;1500;3400;6100;6100;8400;6520;7870;7380;7165;6168;6555;5832;4453;4265;2259;3071;2414;1559;1064;1650;1234;3489;3431;4361;2116;1181;931;2510;1519
-50;'196;Cyprus;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;123;400;209;93;12;45;35;35;78;459;1257;2282;4788;4788;4621;4621;139;1196;863;1000;668;644;1032;1032;1032;1169;1147;1296;1517;1196;1431;1413;1154;1143;677;714;828;501;323;484;474;1327;1464.66;1727;1548;668;619;1515;1189
-50;'196;Cyprus;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;600;400;400;600;1;0;10;12;35;4;0;0;24;0;0;0;0;0;0;0;0;0;0;0;0;0;15;0
-50;'196;Cyprus;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;55;30;30;30;1;1;4;7;46;3;0;0;16;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0
-50;'196;Cyprus;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1900;2500;2500;2300;1000;2843;3264;1474;1264;1685;948;1158;1264;527;2900;7900;7900;500;700;1100;1000;1500;1900;3600;6600;6100;16700;16700;14400;14400;23700;28363;27394;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;179;232;323;261;118;339;378;138;118;162;117;140;196;169;400;900;900;167;188;479;424;644;591;790;702;1201;1277;1277;820;820;8154;9754;8070;11063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;0;0;10000;10000;11000;11000;13800;15900;16860;23295;25760;28585;45162;43197;43316;44966;41800;42243;43627;47255;50321;47805;44401;47708;54240;53785
-50;'196;Cyprus;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;100;200;200;200;200;200;200;200;500;300;200;200;100;100;100;600;1600;1600;2100;2100;2400;4893;3811;3603;4400;5600;3800;4433;4133;1991;2560;4170;2814;2355;2279;1685;1305;706;7;121;81;207;81;83;95;109;340;792;317;358;282;190;235
-50;'196;Cyprus;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;19;30;17;17;17;17;17;17;251;220;117;74;67;36;37;362;1194;1194;1818;1818;1792;2742;2257;2259;2937;2789;2128;2130;2130;1594;1892;1758;1754;1643;1673;1194;1066;630;25;148;58;199;63;82;74;89;267.15;633;267;257;266;245;406
-50;'196;Cyprus;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641;1181;5300;6800;5800;6200;1000;1000;11050;11410;11380;12008;13976;15900;16860;23295;25760;28585;45166;43247;43317;44969;41800;42243;43645;47255;50322;47805;44422;47708;54243;53840
-50;'196;Cyprus;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;163;649;1175;642;675;675;675;1323;1251;1205;1411;1876;2143;2330;3451;4379;2983;5592;7428;5868;7056;5692;5106;4971;6877.66;5614;3513;3221;4963;7771;4748
-50;'196;Cyprus;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;100;200;200;200;200;200;200;200;500;300;200;200;100;100;100;600;1600;1600;2100;2100;2400;3534;3724;3603;4400;4300;3200;3200;2600;1990;2560;4170;2790;2321;2279;1685;1304;706;7;118;31;149;59;83;95;91;340;791;317;337;282;190;180
-50;'196;Cyprus;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;19;30;17;17;17;17;17;17;251;220;117;74;67;36;37;362;1194;1194;1818;1818;1792;2245;2250;2259;2937;2570;2069;2071;2071;1589;1892;1758;1751;1638;1673;1194;1061;630;25;145;51;190;59;81;74;71;267.15;631;267;246;266;245;266
-50;'196;Cyprus;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;90;0;10;39;103;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84;0;13;25;70;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;100;200;200;200;200;200;200;200;500;300;200;200;100;100;100;600;1600;1600;2100;2100;2400;3534;3724;3603;4400;4300;3200;3200;2600;1980;2550;4130;2766;2274;2223;1643;1302;685;1;62;28;147;58;83;95;91;340;791;317;337;282;190;150
-50;'196;Cyprus;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;19;30;17;17;17;17;17;17;251;220;117;74;67;36;37;362;1194;1194;1818;1818;1792;2245;2250;2259;2937;2570;2069;2071;2071;1583;1876;1736;1721;1562;1597;1140;1054;574;4;60;37;183;54;72;74;71;267.15;631;267;246;266;245;188
-50;'196;Cyprus;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;90;0;10;39;103;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84;0;13;25;70;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;20;5;0;0
-50;'196;Cyprus;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17.71;18;0;18;4;0;0
-50;'196;Cyprus;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;120;31;50;70;23;;;;;;;
-50;'196;Cyprus;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;1;158;28;42;52;17;;;;;;;
-50;'196;Cyprus;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;100;200;200;200;200;200;200;200;500;300;200;200;100;100;100;600;1600;1600;2100;2100;2400;3534;3721;3600;4400;4300;3200;3200;2600;1980;2550;4130;2766;2274;2223;1643;1302;685;1;62;28;27;27;33;25;68;317;768;317;317;277;190;150
-50;'196;Cyprus;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;19;30;17;17;17;17;17;17;251;220;117;74;67;36;37;362;1194;1194;1818;1818;1792;2245;2248;2257;2937;2570;2069;2069;2069;1583;1876;1736;1721;1562;1597;1140;1054;574;4;60;36;25;26;30;22;54;249.44;613;267;228;262;245;188
-50;'196;Cyprus;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;90;0;10;39;103;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84;0;13;25;70;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989;202;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;89;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1600;1860;2726;3600;4400;4300;3200;3200;2600;1920;2500;4000;2673;2201;2197;1638;1298;676;0;58;23;25;25;30;25;68;317;372;317;317;277;190;150
-50;'196;Cyprus;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;832;832;953;953;1229;1439;1667;2257;2937;2570;2069;2069;2069;1487;1787;1586;1541;1373;1518;1127;1045;553;0;52;24;22;21;24;22;54;249.44;314;267;228;262;245;188
-50;'196;Cyprus;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;90;0;10;39;103;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;84;0;13;25;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;396;0;0;0;0;0
-50;'196;Cyprus;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;299;0;0;0;0;0
-50;'196;Cyprus;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;500;300;200;200;100;100;100;600;600;600;600;600;600;600;600;0;0;0;0;0;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;251;220;117;74;67;36;37;362;362;362;362;362;362;362;362;0;0;0;0;0;0;0;0;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;200;85;193;0;0;0;0;0;0;60;50;130;93;61;26;5;4;9;1;4;5;2;2;3;0;0;;;;;;;
-50;'196;Cyprus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;503;201;87;130;0;0;0;0;0;0;96;89;150;180;175;79;13;9;21;4;8;12;3;5;6;0;0;;;;;;;
-50;'196;Cyprus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;;;;;;;
-50;'196;Cyprus;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;40;24;47;56;42;2;21;6;56;3;2;1;0;0;0;0;0;0;0;0;0;30
-50;'196;Cyprus;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;22;30;76;76;54;7;56;21;85;14;7;5;9;0;0;0;0;0;0;0;0;78
-50;'196;Cyprus;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;7;16;18;18;15;16;14;10;14;124;97;40;23;16;15;8;8
-50;'196;Cyprus;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;11;27;29;27;24;22;19;9;15;171;105.19;54;26;19;19;10;11
-50;'196;Cyprus;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;0;0;10000;10000;11000;11000;13800;15900;16860;23295;25760;28585;45162;43197;43316;44966;41800;42243;43627;47255;50321;47805;44401;47708;54240;53785
-50;'196;Cyprus;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1359;87;0;0;1300;600;1233;1533;1;0;0;24;34;0;0;1;0;0;3;50;58;22;0;0;18;0;1;0;21;0;0;55
-50;'196;Cyprus;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;7;0;0;219;59;59;59;5;0;0;3;5;0;0;5;0;0;3;7;9;4;1;0;18;0;2;0;11;0;0;140
-50;'196;Cyprus;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641;1181;5300;6800;5800;6200;1000;1000;10960;11410;11370;11969;13873;15900;16860;23295;25760;28585;45162;43247;43317;44969;41800;42243;43645;47255;50322;47805;44422;47708;54243;53840
-50;'196;Cyprus;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;163;649;1175;642;675;675;675;1239;1251;1192;1386;1806;2143;2330;3451;4379;2983;5583;7428;5868;7056;5692;5106;4971;6877.66;5614;3513;3221;4963;7771;4748
-50;'196;Cyprus;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1876;Paper and paperboard;5610;Import quantity;t;5200;5200;6100;6500;7500;7800;9300;10900;13700;15800;21100;20200;25500;21800;14900;22800;27800;35900;43700;50000;52100;47300;43200;52100;49000;36800;48000;48000;34800;34800;43300;62716;48480;49200;50200;49100;50600;50621;51585;54610;55540;57710;60216;67516;63614;105003;71408;74925;67360;75795;74063;59100;55192;55660;52052;53433;52642;50556;50409;46043;44443;58222;46893
-50;'196;Cyprus;1876;Paper and paperboard;5622;Import value;1000 USD;1484;1614;1895;1989;2296;2402;2658;3112;3184;4233;5157;5608;8030;10049;8281;11425;13881;19600;24605;33740;32839;31936;23278;28745;28668;26458;38524;38524;33189;33189;47309;57428;42233;45669;64986;46417;53145;34395;33212;54845;49706;48445;55693;66157;66151;76807;83672;94739;76210;85207;88790;67996;66729;65554;54953;55121;56864.84;62678;58055;54080;55784;81018;71455
-50;'196;Cyprus;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;1853;200;300;1400;1400;2102;2118;1026;230;340;2656;402;21;48;118;37;61;291;145;73;232;4;35;48;101;68;81;63;33;49;255
-50;'196;Cyprus;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;1338;217;458;1119;1015;73;97;415;543;107;668;310;66;117;144;179;177;479;235;115;335;43;105;181;213.13;41;77;114;66;69;439
-50;'196;Cyprus;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;2042;Graphic papers;5610;Import quantity;t;1700;1700;2000;2500;2200;2600;2300;3800;4600;5800;5100;5200;6800;4800;3200;3800;4300;5600;5700;5900;5500;6900;7400;8600;7900;8600;10600;10600;8900;8900;19900;23386;20547;22800;25300;17100;22400;25300;25300;23230;25830;25590;28112;33862;32930;39806;43908;45727;37492;40811;42375;30853;27833;28740;24158;26789;22923;21747;19485;14140;12444;19617;14357
-50;'196;Cyprus;2042;Graphic papers;5622;Import value;1000 USD;474;510;537;612;563;652;658;812;998;1433;1307;1458;2217;2593;1957;2063;2310;3100;3804;4598;4261;5137;4649;5671;5479;6645;8524;8524;10782;10782;20627;23345;17092;19213;29501;16065;20400;6040;6040;21995;20110;19612;23549;29311;29453;36645;45070;50399;37705;40415;44606;30326;25782;26013;20135;22216;20267.08;20909;18205;12568;11841;22910;17531
-50;'196;Cyprus;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;852;100;0;0;1000;2100;2100;22;30;0;70;375;10;6;27;0;14;218;99;46;21;0;8;0;0;1;0;0;0;0;179
-50;'196;Cyprus;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;590;139;0;0;703;64;64;18;47;10;34;241;16;6;11;0;51;294;86;50;10;5;11;0;0;3;0;0;0;0;271
-50;'196;Cyprus;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1671;Newsprint;5610;Import quantity;t;1100;1000;1300;1500;1500;1400;1500;1300;1600;1700;1700;1800;2500;1600;1300;1600;1800;2100;1800;2600;2500;2700;3100;3000;3200;3400;3600;3600;3100;3100;4000;5912;5435;6800;6000;7900;6000;6000;6000;8630;8380;7310;7472;9435;9070;10313;11465;11233;11022;10295;10463;6651;6099;4670;3948;4554;2891;2823;2743;1514;2001;2570;3086
-50;'196;Cyprus;1671;Newsprint;5622;Import value;1000 USD;189;176;208;260;249;243;251;216;274;309;336;373;576;616;609;718;738;935;850;1438;1367;1436;1500;1533;1638;2084;2507;2507;3821;3821;3170;4338;3035;4122;5256;6453;3865;1080;1080;4798;5004;3846;4226;5532;5735;7166;9133;9419;8876;7175;8015;4642;4391;3320;2361;2826;2126.37;2144;1967;1006;1296;2103;2815
-50;'196;Cyprus;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;0;0;0;0;266;0;0;0;0;0;25;56;0;21;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;4;0;0;20;122;0;0;0;0;1;10;23;0;10;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1674;Printing and writing papers;5610;Import quantity;t;600;700;700;1000;700;1200;800;2500;3000;4100;3400;3400;4300;3200;1900;2200;2500;3500;3900;3300;3000;4200;4300;5600;4700;5200;7000;7000;5800;5800;15900;17474;15112;16000;19300;9200;16400;19300;19300;14600;17450;18280;20640;24427;23860;29493;32443;34494;26470;30516;31912;24202;21734;24070;20210;22235;20032;18924;16742;12626;10443;17047;11271
-50;'196;Cyprus;1674;Printing and writing papers;5622;Import value;1000 USD;285;334;329;352;314;409;407;596;724;1124;971;1085;1641;1977;1348;1345;1572;2165;2954;3160;2894;3701;3149;4138;3841;4561;6017;6017;6961;6961;17457;19007;14057;15091;24245;9612;16535;4960;4960;17197;15106;15766;19323;23779;23718;29479;35937;40980;28829;33240;36591;25684;21391;22693;17774;19390;18140.71;18765;16238;11562;10545;20807;14716
-50;'196;Cyprus;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;852;100;0;0;1000;1000;1000;22;30;0;70;109;10;6;27;0;14;193;43;46;0;0;8;0;0;1;0;0;0;0;179
-50;'196;Cyprus;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;590;139;0;0;703;11;11;14;47;10;14;119;16;6;11;0;50;284;63;50;0;5;11;0;0;3;0;0;0;0;271
-50;'196;Cyprus;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;480;1090;1481;297;696;258;581;390;92;343;1283;634;516;630;977;1864;2296;1975;1842;1246;302;285;482
-50;'196;Cyprus;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165;439;1013;1327;457;608;284;525;783;140;440;1415;747;538;765;1119;1518;1992.17;1852;1620;1068;421;568;775
-50;'196;Cyprus;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;2;15;0;0;0;0;0;191;42;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;5;38;0;0;0;0;0;282;62;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;5400;7000;8550;9913;10120;10818;13010;11443;10399;11374;10687;10409;9968;9980;9537;10000;9724;10106;8933;7422;6562;9238;7324
-50;'196;Cyprus;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6015;4945;6454;8317;10331;10574;10963;15214;15694;11727;13127;13177;11669;10822;10712;8655;8848;8980.51;10387;8975;6899;6474;12566;9085
-50;'196;Cyprus;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;0;0;1;7;0;0;0;2;0;0;26;0;0;8;0;0;1;0;0;0;0;54
-50;'196;Cyprus;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;9;0;5;13;0;0;0;11;1;0;30;0;0;11;0;0;3;0;0;0;0;65
-50;'196;Cyprus;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19300;19300;11350;11570;10190;10609;14217;13044;18417;18852;22661;15979;18799;19942;13159;11250;13460;9696;10371;8012;6843;5967;3958;3579;7524;3465
-50;'196;Cyprus;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960;4960;10017;9722;8299;9679;12991;12536;18232;20198;24503;16962;19673;21999;13268;10031;11216;8000;9024;7168.03;6526;5643;3595;3650;7673;4856
-50;'196;Cyprus;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;10;10;0;68;93;3;6;27;0;12;2;1;20;0;0;0;0;0;0;0;0;0;0;125
-50;'196;Cyprus;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;2;33;1;9;76;3;6;11;0;39;1;1;20;0;5;0;0;0;0;0;0;0;0;206
-50;'196;Cyprus;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1675;Other paper and paperboard;5610;Import quantity;t;3500;3500;4100;4000;5300;5200;7000;7100;9100;10000;16000;15000;18700;17000;11700;19000;23500;30300;38000;44100;46600;40400;35800;43500;41100;28200;37400;37400;25900;25900;23400;39330;27933;26400;24900;32000;28200;25321;26285;31380;29710;32120;32104;33654;30684;65197;27500;29198;29868;34984;31688;28247;27359;26920;27894;26644;29719;28809;30924;31903;31999;38605;32536
-50;'196;Cyprus;1675;Other paper and paperboard;5622;Import value;1000 USD;1010;1104;1358;1377;1733;1750;2000;2300;2186;2800;3850;4150;5813;7456;6324;9362;11571;16500;20801;29142;28578;26799;18629;23074;23189;19813;30000;30000;22407;22407;26682;34083;25141;26456;35485;30352;32745;28355;27172;32850;29596;28833;32144;36846;36698;40162;38602;44340;38505;44792;44184;37670;40947;39541;34818;32905;36597.75;41769;39850;41512;43943;58108;53924
-50;'196;Cyprus;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;1001;100;300;1400;400;2;18;1004;200;340;2586;27;11;42;91;37;47;73;46;27;211;4;27;48;101;67;81;63;33;49;76
-50;'196;Cyprus;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;748;78;458;1119;312;9;33;397;496;97;634;69;50;111;133;179;126;185;149;65;325;38;94;181;213.13;38;77;114;66;69;168
-50;'196;Cyprus;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;1000;1000;1100;3000;1000;1000;500;1000;1000;300;2000;1400;2000;2500;3000;3200;2800;2800;3400;2700;3200;4000;4000;4400;4400;4900;6000;6500;5900;6000;7700;6000;6000;6000;7490;7770;7320;9021;7949;7708;8818;9134;9730;9231;10158;9635;9235;8721;8700;8847;8171;8809;8229;9433;9696;9219;13082;12936
-50;'196;Cyprus;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;572;280;230;656;200;350;240;194;600;150;1019;914;1300;1625;2280;2229;2090;2457;3000;2247;2724;4029;4029;5694;5694;6299;7000;6569;5922;8532;7284;6600;6600;6600;7947;7627;7173;8358;8862;8226;10075;11876;14812;11791;13612;13322;12286;12479;12161;10868;9694;10555.43;10876;12225;11549;11609;19700;19611
-50;'196;Cyprus;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;20;20;7;13;2;0;57;0;0;14;2;3;5;0;0;0;19;0;0;0;0;0;0
-50;'196;Cyprus;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;26;34;13;25;11;0;58;0;0;21;3;7;11;0;0;0;24.48;0;0;0;0;0;0
-50;'196;Cyprus;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19321;20285;22160;20520;24120;20774;25094;22569;56073;18046;19289;20439;24510;21839;18818;18405;18120;18915;18325;20741;19915;21287;22037;22532;25353;19435
-50;'196;Cyprus;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21755;20572;21429;18946;19086;20062;25658;26328;28535;25160;28187;25303;28884;28908;23603;26155;25816;22760;21903;24566.63;26158;25673;26871;29802;36304;31890
-50;'196;Cyprus;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;864;10;150;2542;8;5;38;31;26;45;58;33;24;147;1;11;14;42;54;54;12;12;37;60
-50;'196;Cyprus;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;33;122;47;28;419;9;11;83;51;66;111;156;90;56;129;6;18;18;76.55;9;10;2;3;15;43
-50;'196;Cyprus;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;2200;4000;3400;3500;5000;10000;9000;12100;10300;5400;10000;11500;13000;16300;19000;20000;17300;21100;25600;22000;800;1000;1000;4400;4400;17900;32330;21033;20400;18800;24300;22200;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;638;1000;840;600;1200;2000;2160;3348;3622;2931;4500;5000;5900;7500;10500;10300;9600;8355;10300;9273;746;1000;1000;5566;5566;19406;25783;17942;20071;26358;23068;26145;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;1001;100;300;1400;400;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;748;78;458;1119;312;;;;;;;;;;;;;;;;;;;;;;;;;;
-50;'196;Cyprus;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13044;13784;12510;12190;15010;12351;15462;14210;17949;10228;11481;12244;15419;12930;10315;9619;8620;9332;8692;9198;9242;10424;9478;10334;12577;6816
-50;'196;Cyprus;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6186;5711;6113;4777;6265;5474;7470;7239;9803;6648;7466;6340;9821;9187;6358;6497;5724;5407;4741;5483.94;6575;6128;5344;7737;11640;5055
-50;'196;Cyprus;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;620;0;0;0;0;0;0;0;0;0;0;0;0;113;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;82;29;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5470;5662;6680;5510;5540;5383;6985;5315;6187;5422;5188;5813;6871;6388;6649;6892;7300;7536;7603;8657;7851;8573;10206;10501;10140;9861
-50;'196;Cyprus;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14459;13648;12437;10725;8481;9679;14980;15845;15449;15203;16917;15886;16060;15987;14844;16803;16948;14771;14659;15968.13;15969;16521;18907;19522;19684;21665
-50;'196;Cyprus;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;240;10;40;2;3;0;0;20;2;0;0;4;0;23;1;11;14;15;0;13;12;12;37;60
-50;'196;Cyprus;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;35;17;7;5;7;0;0;13;8;0;0;1;0;88;3;18;18;38.54;0;2;2;3;15;43
-50;'196;Cyprus;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807;839;2970;2820;3570;2969;2285;2452;31244;1769;1999;1912;1568;2039;1243;1407;1850;1601;1737;2282;2513;1888;1885;1327;2387;2119
-50;'196;Cyprus;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110;1212;2879;3444;4340;4811;3005;2922;2913;2817;3372;2789;2608;3404;1999;2515;2931;2285;2357;2721.35;3421;2811;2350;2327;4766;4746
-50;'196;Cyprus;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;4;0;110;1737;2;2;38;11;24;45;58;29;24;11;0;0;0;27;1;0;0;0;0;0
-50;'196;Cyprus;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;5;1;21;324;1;7;83;38;58;111;156;89;56;30;3;0;0;38.01;1;0;0;0;0;0
-50;'196;Cyprus;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;71;362;592;693;627;621;470;652;482;611;487;350;446;293;604;309;402;468;370;249;639
-50;'196;Cyprus;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;98;203;322;370;492;432;288;395;330;402;340;213;297;146;393.21;193;213;270;216;214;424
-50;'196;Cyprus;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;803;3;3;0;0;0;0;0;0;0;0;0;0;0;0;53;41;0;0;0;0
-50;'196;Cyprus;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;90;1;4;0;0;0;0;0;0;0;0;0;0;0;0;8;8;0;0;0;0
-50;'196;Cyprus;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-50;'196;Cyprus;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;2000;2000;2600;2600;4000;5000;5500;5600;5700;6000;7000;10600;15300;19200;22100;23400;20300;11900;14500;16400;24200;32400;32400;17100;17100;600;1000;400;100;100;0;0;0;0;1730;1420;680;2309;611;407;306;320;179;198;316;214;194;233;100;132;148;169;665;204;170;248;170;165
-50;'196;Cyprus;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;540;720;1230;930;1400;1500;1750;2271;3234;3243;3843;5657;9300;11676;16362;16049;15109;7817;9774;11669;16343;24971;24971;11147;11147;977;1300;630;463;595;0;0;0;0;3474;3023;2574;3724;2326;2144;1552;1566;1341;1411;2296;1954;1781;2313;1564;1190;1308;1475.7;4735;1952;3092;2532;2104;2423
-50;'196;Cyprus;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;170;170;37;6;4;4;3;11;2;1;11;0;59;3;16;34;40;13;27;51;21;12;16
-50;'196;Cyprus;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;423;35;202;35;28;28;24;113;15;8;56;2;185;32;76;163;112.1;29;67;112;63;54;125
-50;'196;Cyprus;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60028.65;87494;91836;84662;119184;118291;121790
-50;'196;Cyprus;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2819.14;4755;2626;2010;5126;2643;4715
-50;'196;Cyprus;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1459.07;1714;1932;1163;2608;2048;1250
-50;'196;Cyprus;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11;1;0;0;0;0;0
-50;'196;Cyprus;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263.98;413;582;295;589;695;224
-50;'196;Cyprus;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195.09;1301;1350;868;2019;1353;1026
-50;'196;Cyprus;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11;1;0;0;0;0;0
-50;'196;Cyprus;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680.14;849;777;1133;2019;2327;2399
-50;'196;Cyprus;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230.06;49;88;486;640;818;1051
-50;'196;Cyprus;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2166.19;2607;2442;2848;2597;3646;3229
-50;'196;Cyprus;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25.22;49;56;28;2670;206;178
-50;'196;Cyprus;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5476.14;7732;9083;7874;9500;8873;10402
-50;'196;Cyprus;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114.05;6;16;8;0;8;67
-50;'196;Cyprus;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;164
-50;'196;Cyprus;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;187
-50;'196;Cyprus;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;25
-50;'196;Cyprus;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;55
-50;'196;Cyprus;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-50;'196;Cyprus;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8
-50;'196;Cyprus;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-50;'196;Cyprus;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46743.74;70760;73082;67406;97952;92789;95824
-50;'196;Cyprus;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2336.85;4643;2457;1480;1801;1586;3047
-50;'196;Cyprus;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864.37;468;817;670;428;3427;3409
-50;'196;Cyprus;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;338
-50;'196;Cyprus;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639;3364;3703;3568;4080;5181;5277
-50;'196;Cyprus;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112.85;7;9;8;15;25;34
-50;'196;Cyprus;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46645.9;53385;52370;51680;58210;74935;75388
-50;'196;Cyprus;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165.65;935;1116;1449;2455;3420;4199
-50;'196;Cyprus;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101.78;161;235;164;319;831;634
-50;'196;Cyprus;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-50;'196;Cyprus;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3122.4;4142;3611;4157;4611;5623;4949
-50;'196;Cyprus;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.37;0;0;11;7;0;1
-50;'196;Cyprus;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18967.77;20490;18240;19768;18592;20187;24811
-50;'196;Cyprus;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318.26;238;305;300;219;130;149
-50;'196;Cyprus;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12424.23;14917;15570;14289;18873;25592;23492
-50;'196;Cyprus;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474.61;392;371;598;775;1153;1512
-50;'196;Cyprus;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12029.71;13675;14714;13302;15815;22702;21502
-50;'196;Cyprus;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372.4;305;440;540;1454;2137;2537
-167;'203;Czechia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3272008.1;4117691;3972686;3832715;4869620;5417141;4778365
-167;'203;Czechia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4212669.18;5215459;5140290;5318153;6741235;7022737;5911222
-167;'203;Czechia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249717;330301;433472;515773;625316;682279;667273;728276;739516;838860;1019060;1213594;1379444;1509679;1789168;2107700;1614229;1750313;1980582;1919829;2015312;2133497;1873084;1856997;1724177.09;2279123;2034524;1893959;2462421;2771493;2239131
-167;'203;Czechia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443410;564493;736260;802051;839593;853523;866007;905306;889751;925492;1210126;1441146;1617561;1827545;2304125;2421098;1943901;2067467;2619134;2435179;2636167;2802965;2388122;2472609;2426276.02;3195699;3194653;3293426;4153830;4228824;3364877
-167;'203;Czechia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10406000;11950000;12365000;12600000;13491000;13991000;14203000;14441000;14374000;14541000;15140000;15601000;15510000;17678000;18508000;16187000;15502000;16736000;15381000;15061000;15331000;15476000;16163000;17617000;19387000;25689000;32572000;33313000;30255000;25091000;18493000
-167;'203;Czechia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257826;274000;334000;217100;504000;784000;817000;954000;976000;994000;597000;707000;1162000;1273000;884000;780321;569000;1049000;1830050;1896000;2498000;2461000;2347800;1820526;1933779;1459800;1403788;1080502;1204956;1449253;1569000
-167;'203;Czechia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20447;21292;28161;13410;30488;35991;36073;40866;34232;42485;41985;47820;74273;84407;77967;68949;43618;87328;186154;172508;197387;219149;167443;139502;121506.55;137394;111591;93555;114000;172762;171802
-167;'203;Czechia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1263490;1989000;2335000;2817000;2827000;2661000;2798000;2030000;2485000;2514000;3174000;3096000;3216000;2959000;2511000;2006000;2729606;1839000;3599200;4049000;4464000;5100000;4690350;5420145;6800799;8516500;14411452;18270280;12999240;9367984;5143000
-167;'203;Czechia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89391;98272;122291;141046;146559;135718;148717;94054;101224;111035;183820;181099;191615;194114;266057;243610;162366;140495;391267;373522;460977;456290;373591;442660;408802.07;565049;737669;899628;1157768;1021991;536207
-167;'203;Czechia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9650000;11157000;11308000;11276000;11942000;12250000;12422000;12851000;12680000;13010000;13660000;13920000;13883000;16118000;17278000;14877000;14047000;15066000;13340000;13056000;13229000;13472000;14385000;15924000;17735000;24213000;31299000;32008000;28713000;23031000;16600000
-167;'203;Czechia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1638330;1259100;1204742;906048;1041468;1244297;1440000
-167;'203;Czechia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93586.01;99419;78447;57297;78006;126435;132200
-167;'203;Czechia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6495140;8167535;14038691;17980975;12590218;8898385;4748000
-167;'203;Czechia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391796.62;543386;713302;876967;1074811;934279;486604
-167;'203;Czechia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756000;793000;1057000;1324000;1549000;1741000;1781000;1590000;1694000;1531000;1480000;1681000;1627000;1560000;1230000;1310000;1455000;1670000;2041000;2005000;2102000;2004000;1778000;1693000;1652000;1476000;1273000;1305000;1542000;2060000;1893000
-167;'203;Czechia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295449;200700;199046;174454;163488;204956;129000
-167;'203;Czechia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27920.54;37975;33144;36258;35994;46327;39602
-167;'203;Czechia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305659;348965;372761;289305;409022;469599;395000
-167;'203;Czechia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17005.45;21663;24367;22661;82957;87712;49603
-167;'203;Czechia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;778000;649000;718000;610000;820000;840000;940000;1010000;1007000;1180000;1190000;1225000;1345000;1770000;1880000;1733000;1965000;1914000;2020000;2182000;2111000;2336000;2344000;2376000;4246000;5922000;6726000;5110000;4405000;2974000
-167;'203;Czechia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;8000;5000;5000;1000;3000;2000;4000;4000;3000;0;6000;15000;48000;20000;29321;31000;70000;46000;21000;56000;22000;18800;24813;35667;37800;50646;13311;50377;80140;10000
-167;'203;Czechia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;440;275;275;28;31;29;52;79;61;0;234;627;2181;1002;1737;1629;4165;4323;1699;2905;1075;768;1014;1269.99;1673;1647;1438;1798;2748;1363
-167;'203;Czechia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77000;120000;174000;130000;170000;164000;172000;173000;209000;212000;219000;238000;274000;280000;127000;100000;133606;96000;112000;137000;172000;169000;160500;195130;217690;207500;239216;105715;344229;321573;50000
-167;'203;Czechia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2250;3480;5046;4220;4854;4805;4628;5008;6100;6201;8383;10219;12824;17379;9199;8561;9857;7005;6996;7718;10378;9542;7627;6856;7212.17;8450;7795;6846;10164;9316;5452
-167;'203;Czechia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564000;688000;517000;535000;413000;620000;610000;660000;680000;650000;690000;700000;720000;820000;1410000;1390000;1159000;1337000;1049000;1196000;1267000;1166000;1514000;1550000;1647000;3600000;5396000;6186000;4463000;3610000;2344000
-167;'203;Czechia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15218;13100;17771;3600;21233;22196;1000
-167;'203;Czechia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510.96;499;451;360;444;500;280
-167;'203;Czechia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115140;67535;138691;80975;290218;270261;36000
-167;'203;Czechia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3808.04;2620;3632;3847;7879;6862;3612
-167;'203;Czechia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;90000;132000;183000;197000;200000;230000;280000;330000;357000;490000;490000;505000;525000;360000;490000;574000;628000;865000;824000;915000;945000;822000;794000;729000;646000;526000;540000;647000;795000;630000
-167;'203;Czechia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20449;24700;32875;9711;29144;57944;9000
-167;'203;Czechia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;759.03;1174;1196;1078;1354;2248;1083
-167;'203;Czechia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102550;139965;100525;24740;54011;51312;14000
-167;'203;Czechia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3404.13;5830;4163;2999;2285;2454;1840
-167;'203;Czechia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;8000;5000;5000;1000;3000;2000;4000;4000;3000;0;6000;15000;48000;20000;29321;31000;70000;46000;21000;56000;22000;18800;24813;;;;;;;
-167;'203;Czechia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;440;275;275;28;31;29;52;79;61;0;234;627;2181;1002;1737;1629;4165;4323;1699;2905;1075;768;1014;;;;;;;
-167;'203;Czechia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77000;120000;174000;130000;170000;164000;172000;173000;209000;212000;219000;238000;274000;280000;127000;100000;133606;96000;112000;137000;172000;169000;160500;195130;;;;;;;
-167;'203;Czechia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2250;3480;5046;4220;4854;4805;4628;5008;6100;6201;8383;10219;12824;17379;9199;8561;9857;7005;6996;7718;10378;9542;7627;6856;;;;;;;
-167;'203;Czechia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706000;11172000;11716000;11882000;12881000;13171000;13363000;13501000;13364000;13534000;13960000;14411000;14285000;16333000;16738000;14307000;13769000;14771000;13467000;13041000;13149000;13365000;13827000;15273000;17011000;21443000;26650000;26587000;25145000;20686000;15519000
-167;'203;Czechia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257772;266000;329000;212100;503000;781000;815000;950000;972000;991000;597000;701000;1147000;1225000;864000;751000;538000;979000;1784050;1875000;2442000;2439000;2329000;1795713;1898112;1422000;1353142;1067191;1154579;1369113;1559000
-167;'203;Czechia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20444;20852;27886;13135;30460;35960;36044;40814;34153;42424;41985;47586;73646;82226;76965;67212;41989;83163;181831;170809;194482;218074;166675;138488;120236.56;135721;109944;92117;112202;170014;170439
-167;'203;Czechia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186490;1869000;2161000;2687000;2657000;2497000;2626000;1857000;2276000;2302000;2955000;2858000;2942000;2679000;2384000;1906000;2596000;1743000;3487200;3912000;4292000;4931000;4529850;5225015;6583109;8309000;14172236;18164565;12655011;9046411;5093000
-167;'203;Czechia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87141;94792;117245;136826;141705;130913;144089;89046;95124;104834;175437;170880;178791;176735;256858;235049;152509;133490;384271;365804;450599;446748;365964;435804;401589.9;556599;729874;892782;1147604;1012675;530755
-167;'203;Czechia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9086000;10469000;10791000;10741000;11529000;11630000;11812000;12191000;12000000;12360000;12970000;13220000;13163000;15298000;15868000;13487000;12888000;13729000;12291000;11860000;11962000;12306000;12871000;14374000;16088000;20613000;25903000;25822000;24250000;19421000;14256000
-167;'203;Czechia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221000;140000;248000;107700;450000;704000;739000;850000;790000;784000;469000;555000;967000;1024000;578000;548000;416000;786000;1670000;1749000;2166000;2058000;1980000;1500000;1623112;1246000;1186971;902448;1020235;1222101;1439000
-167;'203;Czechia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;10700;18954;6452;18435;30256;29622;34119;25293;29194;19359;24261;44739;52374;39816;47089;26999;59757;165889;148274;166506;175361;135418;105468;93075.05;98920;77996;56937;77562;125935;131920
-167;'203;Czechia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151000;1580000;1735000;2251000;2143000;2018000;2145000;1484000;1849000;2005000;2688000;2494000;2540000;2434000;2300000;1825000;2514000;1658000;3100000;3611000;3986000;4601000;4242000;5079000;6380000;8100000;13900000;17900000;12300000;8628124;4712000
-167;'203;Czechia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80600;84327;100387;120104;125714;116343;129596;78590;85633;97037;167836;156994;159408;160907;244501;220987;144595;123140;333453;329896;427987;421207;351005;422524;387988.58;540766;709670;873120;1066932;927417;482992
-167;'203;Czechia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221000;140000;248000;107700;450000;704000;739000;850000;790000;784000;469000;555000;967000;1024000;578000;548000;416000;786000;1670000;1749000;2166000;2058000;1980000;1500000;1623112;1246000;1186971;902448;1020235;1222101;1439000
-167;'203;Czechia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;10700;18954;6452;18435;30256;29622;34119;25293;29194;19359;24261;44739;52374;39816;47089;26999;59757;165889;148274;166506;175361;135418;105468;93075.05;98920;77996;56937;77562;125935;131920
-167;'203;Czechia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151000;1580000;1735000;2251000;2143000;2018000;2145000;1484000;1849000;2005000;2688000;2494000;2540000;2434000;2300000;1825000;2514000;1658000;3100000;3611000;3986000;4601000;4242000;5079000;6380000;8100000;13900000;17900000;12300000;8628124;4712000
-167;'203;Czechia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80600;84327;100387;120104;125714;116343;129596;78590;85633;97037;167836;156994;159408;160907;244501;220987;144595;123140;333453;329896;427987;421207;351005;422524;387988.58;540766;709670;873120;1066932;927417;482992
-167;'203;Czechia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620000;703000;925000;1141000;1352000;1541000;1551000;1310000;1364000;1174000;990000;1191000;1122000;1035000;870000;820000;881000;1042000;1176000;1181000;1187000;1059000;956000;899000;923000;830000;747000;765000;895000;1265000;1263000
-167;'203;Czechia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772;126000;81000;104400;53000;77000;76000;100000;182000;207000;128000;146000;180000;201000;286000;203000;122000;193000;114050;126000;276000;381000;349000;295713;275000;176000;166171;164743;134344;147012;120000
-167;'203;Czechia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3644;10152;8932;6683;12025;5704;6422;6695;8860;13230;22626;23325;28907;29852;37149;20123;14990;23406;15942;22535;27976;42713;31257;33020;27161.51;36801;31948;35180;34640;44079;38519
-167;'203;Czechia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35490;289000;426000;436000;514000;479000;481000;373000;427000;297000;267000;364000;402000;245000;84000;81000;82000;85000;387200;301000;306000;330000;287850;146015;203109;209000;272236;264565;355011;418287;381000
-167;'203;Czechia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6541;10465;16858;16722;15991;14570;14493;10456;9491;7797;7601;13886;19383;15828;12357;14062;7914;10350;50818;35908;22612;25541;14959;13280;13601.32;15833;20204;19662;80672;85258;47763
-167;'203;Czechia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;2000;1000;3211;3141;3387;3274;6052;6000;3500;800;1524;2068;858;411;288;420;383;913;0
-167;'203;Czechia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;347;234;263;460;710;1014;2172;1023;1257;1323;1086;1778;3140;2593;2846;603;1066;1324;444.49;237;153;161;229;514;0
-167;'203;Czechia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;40;30;76;200;117;89;540;2057;3490;0;0;9;5;3;0;146;12;11;0
-167;'203;Czechia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;42;2;28;91;43;32;222;1287;2448;0;0;6;2.88;2;0;3;6;6;0
-167;'203;Czechia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772;126000;81000;104400;53000;76000;75000;99000;181000;206000;127000;145000;178000;200000;282789;199859;118613;189726;107998;120000;272500;380200;347476;293645;274142;175589;165883;164323;133961;146099;120000
-167;'203;Czechia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3644;10152;8932;6683;12025;5177;6075;6461;8597;12770;21916;22311;26735;28829;35892;18800;13904;21628;12802;19942;25130;42110;30191;31696;26717.02;36564;31795;35019;34411;43565;38519
-167;'203;Czechia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35490;289000;426000;436000;514000;479000;481000;373000;427000;297000;267000;364000;401960;244970;83924;80800;81883;84911;386660;298943;302510;330000;287850;146006;203104;208997;272236;264419;354999;418276;381000
-167;'203;Czechia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6541;10465;16858;16722;15991;14570;14493;10456;9491;7797;7601;13886;19341;15826;12329;13971;7871;10318;50596;34621;20164;25541;14959;13274;13598.43;15831;20204;19659;80666;85252;47763
-167;'203;Czechia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4745000;5409000;5812000;6230000;6761000;7420000;7673000;8020000;7920000;8073000;8605000;8428000;8153000;9841000;10504000;8928000;8852000;9427000;8838000;8621000;8645000;8548000;8964000;10341000;11488000;14428000;19101000;18810000;17738000;14616000;10333000
-167;'203;Czechia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4485000;5156000;5465000;5810000;6221000;6680000;6937000;7370000;7250000;7580000;8108000;7819000;7613000;9355000;10004000;8503000;8332000;8982000;8014000;7911000;7925000;7955000;8468000;9869000;10986000;13993000;18700000;18400000;17300000;14000000;9723000
-167;'203;Czechia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260000;253000;347000;420000;540000;740000;736000;650000;670000;493000;497000;609000;540000;486000;500000;425000;520000;445000;824000;710000;720000;593000;496000;472000;502000;435000;401000;410000;438000;616000;610000
-167;'203;Czechia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5340000;5290000;5081000;5054000;5081000;4965000;5593000;5742000;6399000;6135000;5280000;4827000;5245000;4538000;4334000;4417000;4728000;4774000;4843000;5429000;6929000;7434000;7660000;7294000;5962000;5078000
-167;'203;Czechia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4550000;4490000;4436000;4380000;4420000;4492000;5031000;5180000;5868000;5784000;4904000;4484000;4668000;4204000;3881000;3968000;4282000;4334000;4436000;5031000;6537000;7093000;7310000;6841000;5316000;4428000
-167;'203;Czechia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790000;800000;645000;674000;661000;473000;562000;562000;531000;351000;376000;343000;577000;334000;453000;449000;446000;440000;407000;398000;392000;341000;350000;453000;646000;650000
-167;'203;Czechia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4208000;5063000;5204000;5152000;5819000;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3868000;4663000;4676000;4483000;5022000;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340000;400000;528000;669000;797000;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753000;700000;700000;500000;301000;411000;400000;400000;390000;380000;390000;390000;390000;93000;99000;99000;90000;99000;91000;86000;87000;89000;89000;89000;94000;86000;115000;117000;113000;108000;108000
-167;'203;Czechia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733000;650000;650000;448000;286000;400000;385000;385000;370000;360000;370000;370000;370000;75000;80000;80000;72000;79000;73000;68000;69000;69000;69000;69000;71000;83000;110000;112000;109000;105000;105000
-167;'203;Czechia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;50000;50000;52000;15000;11000;15000;15000;20000;20000;20000;20000;20000;18000;19000;19000;18000;20000;18000;18000;18000;20000;20000;20000;23000;3000;5000;5000;4000;3000;3000
-167;'203;Czechia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;0;0;0;0;5000;6000;6000;6000;6000;6000;6000;6000;6600;6400;6000;6000;6000;6000;6000;7983;5601;6071;6071;6115;5556;5556
-167;'203;Czechia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2400;0;0;0;4000;0;2000;3000;3000;3000;5000;5000;5000;6098;6430;15000;18000;16000;19700;19900;20524;7426;9661;10462;11825;10023;9539;9000
-167;'203;Czechia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;217;0;0;0;182;0;522;995;1131;1295;2260;2803;3378;3334;3555;4305;4846;2741;5516;4709;4293;3369.72;5609;5838;6078;6000;5542;7206
-167;'203;Czechia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4000;4000;3000;2000;3000;1000;1544;1934;1300;2000;2000;1000;1700;2090;1379;197;304;220;235;430;911;300
-167;'203;Czechia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1412;1669;1326;877;1421;493;900;908;580;626;690;206;333;345;227;131.12;254;185;267;283;556;286
-167;'203;Czechia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037000;1345000;1595000;1660000;1886000;2000000;2138000;2221000;2489000;2801000;2520000;2252000;2535000;2330000;1127000;1401000;1358000;1381000;1395000;1412000;1547234;1676008;1676008;1733000;1699000;1460000
-167;'203;Czechia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;73000;95000;84000;166000;153000;139000;160000;174700;202000;171000;450756;776000;292148;360000;417000;490000;640200;743871;749315;479125;399620;299484;202496;456065;155000
-167;'203;Czechia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1364;1215;1375;894;2671;4937;2535;3174;3641;5274;4888;11484;19352;21461;15585;20926;21215;23616;27035;21618.42;18138;15761;12287;8502;17174;11841
-167;'203;Czechia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339000;497000;662000;670000;775000;845000;945000;1079000;1325000;1636000;1646000;1883000;1895000;740261;271000;536000;692000;610500;638211;412947;483068;507334;629065;257017;846283;533000
-167;'203;Czechia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7285;9257;8095;8203;8657;11615;14627;19424;31085;43825;57649;61091;61228;48516;14883;23398;20389;17146;18354;15504.26;21886;17690;23121;9624;36333;32013
-167;'203;Czechia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557000;736000;725000;770000;836000;890000;988000;1071000;1471000;1623000;1380000;1074000;1259000;1157000;590000;733000;726000;743400;750400;759540;806228;1011006;1011006;1036000;1009000;867000
-167;'203;Czechia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;4000;3000;21000;31000;36000;60000;80000;44000;120000;93000;59000;68000;45000;75000;43000;117756;191000;156000;178000;293000;344000;374400;381377;581219;406919;364936;182084;180624;246303;106000
-167;'203;Czechia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;247;185;307;412;992;1099;1245;552;2241;3303;1443;1754;1294;2777;1763;4324;6988;8599;8766;14370;14252;14433;14606;16996.75;15189;14478;7943;7682;9692;8624
-167;'203;Czechia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298400;220000;225000;253700;234000;132000;207000;111000;109000;45000;45000;45000;69000;227000;377000;384000;373000;375000;361000;169000;356000;460000;374800;361001;236233;303561;300395;214994;18650;366152;199000
-167;'203;Czechia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6900;8100;8240;6383;5711;2263;3732;1790;1709;798;1030;1482;1796;6292;12060;16979;13285;13398;15415;8253;17099;13589;10573;10369;8801.23;12972;10545;8824;706;16111;11137
-167;'203;Czechia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;600000;600000;939000;1049000;480000;609000;870000;890000;1050000;1110000;1150000;1150000;1018000;1178000;1140000;1178000;1276000;1173000;537000;668000;632000;637600;644600;652460;741006;665002;665002;697000;690000;593000
-167;'203;Czechia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;2800;5000;2000;23000;29000;13000;15000;40000;46000;60000;80000;92000;129700;127000;128000;333000;585000;136148;182000;124000;146000;265800;362494;168096;72206;34684;117400;21872;209762;49000
-167;'203;Czechia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;95;158;61;244;372;116;130;342;430;1634;1092;1420;2347;2497;3125;7160;12364;12862;6819;6556;6963;9183;12429;4621.67;2949;1283;4344;820;7482;3217
-167;'203;Czechia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207100;292600;296000;298000;245000;207000;290000;551000;561000;730000;800000;900000;1010000;1098000;1259000;1262000;1510000;1520000;379261;102000;180000;232000;235700;277210;176714;179507;206939;414071;238367;480131;334000
-167;'203;Czechia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7030;7100;6051;6092;5022;5525;6305;6494;7859;10585;13145;17628;24793;31765;40670;47806;47830;33101;6630;6299;6800;6573;7985;6703.03;8914;7145;14297;8918;20222;20876
-167;'203;Czechia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803;21000
-167;'203;Czechia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944;948
-167;'203;Czechia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67865;228000
-167;'203;Czechia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2325;14750
-167;'203;Czechia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772340;772340;849561;849561;882000;795000;780000
-167;'203;Czechia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;120000;65000;65000;59334;251960;19000
-167;'203;Czechia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2689.11;3539;1979;1979;4256;16891;2269
-167;'203;Czechia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156094;238423;197013;197013;93431;184876;71000
-167;'203;Czechia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7472.07;14200;9580;9580;6836;12562;6126
-167;'203;Czechia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277000;293000;342000;422000;472000;522000;535000;608119;619705;634000;709000;603000
-167;'203;Czechia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61699;84686;77232;51933;87252;84498;83737;74528;92671;84932;69222;59750
-167;'203;Czechia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12397;15300;22704;9942;14676;11019;15021;12597;13175;14512;17306;14982
-167;'203;Czechia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321476;349075;305372;347011;393655;371609;403985;354435;445721;475409;431132;358000
-167;'203;Czechia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54843;59580;52883;57384;69447;59803.65;83465;70261;82522;92174;94483;106217
-167;'203;Czechia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157000;163000;200000;280000;330000;367000;377000;466115;475000;490000;540000;470000
-167;'203;Czechia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25999;42286;35700;26600;39010;34721;33703;33384;40853;39115;38472;29000
-167;'203;Czechia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4932;7532;14059;4661;4662;4711.41;6233;5702;5781;7104;9945;7621
-167;'203;Czechia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147476;150647;162800;241900;302649;302233;332063;304739;375276;402806;344243;322000
-167;'203;Czechia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31730;34644;33984;43430;57660;51765.14;72743;62093;72627;80793;79299;95030
-167;'203;Czechia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;130000;142000;142000;142000;155000;158000;142004;144705;144000;169000;133000
-167;'203;Czechia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35700;42400;41532;25333;48242;49777;50034;41144;51818;45817;30750;30750
-167;'203;Czechia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7465;7768;8645;5281;10014;6307.59;8788;6895;7394;7408;7361;7361
-167;'203;Czechia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174000;198428;142572;105111;91006;69376;71922;49696;70445;72603;86889;36000
-167;'203;Czechia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23113;24936;18899;13954;11787;8038.51;10722;8168;9895;11381;15184;11187
-167;'203;Czechia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3025000;3155000;3490000;3405000;3393000;3427000;3584000;4106000;3889000;3800000;3805000;3940000;4003000;5080000;5454000;4636000;4048000;4744000;4454000;4259000;4037000;3861000;4150000;4063000;4305000;4550000;4816000;4891000;5160000;4942000;4421000
-167;'203;Czechia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46353;355000;250000;263200;204000;247000;260000;336000;336000;381000;369000;406000;535000;507000;557000;554000;380360;449000;568300;581000;476000;767876;873600;748192;834222;977770;890290;928784;864697;719035;498000
-167;'203;Czechia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10964;29466;27289;40208;48101;59334;48917;53112;48062;57068;77045;95562;122396;118720;146055;168424;154482;148373;156937;150902;153077;206075;183097;164016;145233.4;200203;168364;180065;235020;237213;146192
-167;'203;Czechia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;819200;1196000;1548000;1406500;1419000;1290000;1544000;1778000;1667000;1448000;1454000;1616000;1758000;2000000;2308000;1960000;1837000;1772000;1621000;1656000;1730000;1714106;1537000;1565385;2336452;3870040;3681212;3622803;2358562;2372339;1687000
-167;'203;Czechia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103131;152818;164846;225225;214779;212753;230466;212367;190697;179002;244349;315978;329175;369919;466468;458138;391141;409315;417126;386564;419760;471969;336997;331771;398309.54;464909;445814;437169;758096;694488;429832
-167;'203;Czechia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2770000;2925000;3220000;3100000;3100000;3100000;3251000;3782000;3559000;3500000;3502000;3648000;3730000;4830000;5187000;4409000;3800000;4492000;4153000;3997000;3760000;3610000;3920000;3830000;4070000;4350000;4675000;4747000;5015000;4720000;4201000
-167;'203;Czechia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;245000;100000;108000;138000;158000;169000;219000;226000;248000;256000;270000;380000;355000;389000;387000;269360;364000;482300;502000;399000;694200;783600;628878;724116;700440;563208;615155;526188;583011;448000
-167;'203;Czechia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;10107;7249;14366;24590;27993;21754;25609;24241;30483;40316;47391;67297;62478;76625;88049;66267;80773;102990;102629;105472;155645;141292;126965;115736.07;137056;106342;120594;182345;162447;100840
-167;'203;Czechia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787100;1170000;1512000;1384000;1397000;1231000;1480000;1701000;1596000;1394000;1413000;1568000;1710000;1943000;2262000;1897000;1780000;1729000;1576000;1623000;1704000;1688797;1510000;1537194;2224331;3750000;3520000;3502877;2291350;2338128;1677000
-167;'203;Czechia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95131;148994;156635;217222;208243;190743;211837;194205;174606;165955;227654;295149;310043;346143;446349;425100;333955;366073;370284;353734;385259;448469;318345;311368;384326.56;440457;420038;417994;737971;673164;420372
-167;'203;Czechia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255000;230000;270000;305000;293000;327000;333000;324000;330000;300000;303000;292000;273000;250000;267000;227000;248000;252000;301000;262000;277000;251000;230000;233000;235000;200000;141000;144000;145000;222000;220000
-167;'203;Czechia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3353;110000;150000;155200;66000;89000;91000;117000;110000;133000;113000;136000;155000;152000;168000;167000;111000;85000;86000;79000;77000;73676;90000;119314;110106;277330;327082;313629;338509;136024;50000
-167;'203;Czechia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;19359;20040;25842;23511;31341;27163;27503;23821;26585;36729;48171;55099;56242;69430;80375;88215;67600;53947;48273;47605;50430;41805;37051;29497.33;63147;62022;59471;52675;74766;45352
-167;'203;Czechia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32100;26000;36000;22500;22000;59000;64000;77000;71000;54000;41000;48000;48000;57000;46000;63000;57000;43000;45000;33000;26000;25309;27000;28191;112121;120040;161212;119926;67212;34211;10000
-167;'203;Czechia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;3824;8211;8003;6536;22010;18629;18162;16091;13047;16695;20829;19132;23776;20119;33038;57186;43242;46842;32830;34501;23500;18652;20403;13982.99;24452;25776;19175;20125;21324;9460
-167;'203;Czechia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;8000;9000;9000;8000;12000;12000;11000;15000;14000;17000;19000;19000;19000;19000;16000;32000;37000;30000;30000;28000;30000;28000;24200;24660;27000;28002;29000;30000;28000;27000
-167;'203;Czechia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5939;7600;20000;17500;39000;38000;21000;24000;25000;24000;21000;24000;24000;25300;36000;33006;7829;14000;52100;53000;48560;51000;61320;64252;65640;64966;61151;40329;41796;58196;13000
-167;'203;Czechia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10908;12517;17865;26692;27065;26071;24299;25297;25582;25234;27600;31867;36844;41474;65846;71239;15679;16313;50912;38544;33375;33493;37075;39721;35648.09;44454;37730;25002;28816;37549;35416
-167;'203;Czechia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1764;4000;15000;8600;10000;10000;10000;15000;17000;18000;18000;23000;23000;24600;29000;27000;21821;28256;50170;49000;48600;54464;61150;58518;62216;57382;52594;51754;53301;58089;16000
-167;'203;Czechia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1606;4172;6143;11710;13231;13020;13422;13155;14960;19555;33887;47352;50713;58498;75119;77673;55201;35565;65515;52788;52821;64811;63580;61614;64390.41;75777;65280;62335;77183;83206;65061
-167;'203;Czechia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665000;707000;776000;833000;952000;853000;880000;910000;1045000;1095000;1328000;1371000;1473000;1547000;1697000;1665000;1147000;1335000;1275000;1252000;1253000;1258000;1264000;1356000;1409000;1498312;1582215;1612800;2015000;1932000;1908000
-167;'203;Czechia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48225;109600;120000;133100;158000;176000;350000;438000;532000;587000;490000;520000;559000;616000;687000;670000;553749;726000;757650;762000;951500;1008000;1052250;1061612;1027386;1112689;1141358;1048111;1109625;1067442;774596
-167;'203;Czechia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17239;22450;27619;51555;61650;70587;79956;82922;93942;109225;132883;161713;171355;204167;256439;296245;187670;208292;245647;223728;251681;266331;235392;252250;263006.04;331680;333658;325564;423581;431657;337204
-167;'203;Czechia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167606;323100;323000;445000;535000;564000;612000;624000;730000;709000;683000;744000;754300;959000;1209000;1151550;1205801;1407721;1565130;1537000;1544600;1557000;1606650;1701835;1730439;1842437;1670680;1725817;1511076;1473680;1393368
-167;'203;Czechia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48584;56526;50017;103834;105564;111414;94535;95870;111874;113492;136152;181410;201307;281062;391497;360919;318102;326273;459689;412326;412589;468436;370659;400278;366628.7;515788;448372;494276;610521;629649;578711
-167;'203;Czechia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;76000;77000;100000;110000;108000;110000;115000;150000;139000;127000;153000;165000;170000;175000;149000;175000;204000;181000;178000;180000;181000;180000;212000;220000;234032;254216;259000;260000;240000;228000
-167;'203;Czechia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12100;15200;20000;37000;26000;30000;54000;72000;80000;71000;52000;55000;59000;67000;65000;59000;42650;48000;64510;71000;78400;82000;87900;92997;95899;98025;83545;100128;185679;230095;217000
-167;'203;Czechia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;8800;11733;13371;13707;14818;17993;18707;20876;21612;25326;32296;37304;46227;50518;54180;33423;37707;55604;51629;57347;64825;55791;60554;59257.33;79937;66057;76342;108679;128528;84120
-167;'203;Czechia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68600;55100;30000;63300;82000;92000;120000;140000;147000;111000;82000;92000;96000;103000;105000;44550;82090;35721;128750;117000;118700;124000;123950;161024;163448;177926;186957;177581;112207;277113;299000
-167;'203;Czechia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33800;27200;14836;34969;36552;40083;41077;41695;40411;34750;40281;50355;58399;68169;76534;38888;64114;27987;107545;82997;83050;98356;77296;98714;98792.06;134118;130245;131783;93447;184476;241219
-167;'203;Czechia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000
-167;'203;Czechia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;959
-167;'203;Czechia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;731;1209
-167;'203;Czechia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;141
-167;'203;Czechia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;377
-167;'203;Czechia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501000;536000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34200;84000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9030;9500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85213;220000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11714;17140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587000;635000;737000;640000;700000;720000;820000;874000;1113000;1128000;1165000;1027000;978000;928000;478000;559000;527000;516000;513000;506000;519000;467000;483000;511200;380112;387000;965000;962000;960000
-167;'203;Czechia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;67800;91000;92000;199000;220000;247000;256000;214000;165000;242000;245000;305000;294000;240600;368000;386410;389000;522600;546000;625420;595680;576866;645292;568433;596031;578838;529891;269000
-167;'203;Czechia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12060;26137;31127;33170;38184;38270;36362;43868;53139;53086;63329;70768;103457;118306;63296;78932;90773;83664;95264;99157;97796;99704;88915.77;122544;117192;123787;140969;139386;120133
-167;'203;Czechia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230000;312100;381000;405000;421000;398000;482000;502000;520000;553000;605000;785000;614000;684000;627245;876000;728060;852000;805800;843000;935500;853800;862329;923335;760230;746651;804447;699250;646000
-167;'203;Czechia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17919;50992;53274;55242;40152;40839;55503;62502;79531;107770;128412;193607;148298;164926;126578;172386;179478;171009;163215;195626;159203;153005;139476.95;173677;134002;145075;219532;207878;168235
-167;'203;Czechia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;53000;260000;450000;508000;450000;526000;525000;517000;519000;530000;521000;645000;673000;719080;905491;924000;745000;689000;680000
-167;'203;Czechia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77000;53000;80000;46000;51000;47400;105000;90030;91000;115100;144000;117270;133000;180333;194730;295279;159741;126506;126004;135000
-167;'203;Czechia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18059;14871;23833;15592;20072;15006;20971;19780;17963;21319;27061;22339;27488;33922.94;46203;67810;38095;51846;49093;36587
-167;'203;Czechia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000;4000;403000;345000;414491;409000;611330;483000;529200;499000;454700;588200;650120;684920;650770;726782;516556;434353;389000
-167;'203;Czechia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1092;752;1276;139471;129520;100658;95987;138666;130504;138490;146928;110047;124169;105485.93;181731;155634;186010;258042;199471;138971
-167;'203;Czechia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89000;95000;112000;98000;105000;105000;70000;75000;75000;82000;88000;90000;90000;90000;94000;80000;44000;46000;42000;41000;41000;41000;44000;32000;33000;34000;42396;42800;45000;41000;40000
-167;'203;Czechia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1925;10400;20000;28300;41000;54000;97000;146000;205000;260000;224000;223000;205000;224000;271000;266000;223099;205000;216700;211000;235400;236000;221660;239935;174288;174642;194101;192211;218602;181452;153596
-167;'203;Czechia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1209;4150;3826;12047;16816;22599;23779;25945;36704;43745;54418;58272;55851;63339;86872;103687;75945;70682;79490;70472;77751;75288;59466;64504;80910;82996;82599;87340;122087;114650;96364
-167;'203;Czechia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13793;48000;63000;69600;72000;67000;71000;86000;101000;96000;81000;95000;50300;67000;87000;78000;81975;87000;96990;85000;90900;91000;92500;98811;54542;56256;72723;74803;77866;62964;59368
-167;'203;Czechia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3070;12186;17262;17873;15738;16089;13306;13336;15960;16240;16340;22193;13744;18010;27194;27585;26752;29913;34000;27816;27834;27526;24113;24390;22873.77;26262;28491;31408;39500;37824;30286
-167;'203;Czechia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;35000;39000;36000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-167;'203;Czechia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;21100;33000;39000;71000;116000;162000;181000;150000;168000;160000;165000;206000;105000;81237;80000;82450;83000;88200;83000;77760;74735;28328;27185;21833;19963;15941;15984;16000
-167;'203;Czechia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3581;8909;12400;18290;18514;20497;28895;32172;38824;45128;44364;47957;66927;42988;29576;28980;32025;29149;30986;27495;21230;21066;16961;19629;16279;16595;16436;13308;13694
-167;'203;Czechia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;22200;23000;16000;20000;19000;20000;17000;6000;32000;12000;12000;20000;5606;6065;10000;8240;9000;8400;5000;4200;7668;1760;1930;2393;2066;2824;2670;1933
-167;'203;Czechia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5201;6200;5400;5580;3876;2932;3208;3101;2593;7918;3217;3495;6415;2150;2176;3245;3223;2986;2988;1150;1143;2088;2228.77;2909;3567;4205;5443;3802;2583
-167;'203;Czechia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;63000;66000;69000;70000;75000;75000;82000;88000;90000;90000;90000;94000;80000;44000;46000;28900;29000;29000;30000;32000;32000;33000;34000;42396;42800;45000;41000;40000
-167;'203;Czechia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;7200;8000;9000;19000;20000;33000;49000;42000;33000;36000;41000;49000;130000;113302;108000;119590;116000;129500;137000;130800;129010;103644;109330;132129;129848;151970;121008;98861
-167;'203;Czechia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;3138;4416;2573;3558;3606;5916;8718;11367;9790;10276;12771;17326;54249;41848;39058;44991;39578;44151;44434;35982;36681;55418;55443;58719;61417;92311;89131;71995
-167;'203;Czechia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;47400;49000;50000;49000;58000;62000;51000;48000;49000;38000;39000;51000;42000;47350;60000;61760;57000;63900;64000;68200;68185;40978;43711;58567;59022;72298;59572;57000
-167;'203;Czechia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12061;11673;10338;10292;9083;8977;9728;8626;10479;12091;10485;12003;17614;17810;17990;22785;24667;20788;20801;20610;17657;17688;16572;19269;20527;22387;32928;33739;27444
-167;'203;Czechia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;13100;12000;12000;11000;12000;0;0;0;0;0;0;0;0
-167;'203;Czechia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646;400;0;0;0;6000;7000;10000;10000;30000;32000;22000;9000;18000;16000;31000;28560;17000;14660;12000;17700;16000;13100;36190;42316;38127;40139;42400;50691;44460;38735
-167;'203;Czechia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;230;0;0;0;1736;1707;1842;1893;2855;4227;3354;1211;2611;2619;6450;4521;2644;2474;1745;2614;3359;2254;6757;8531;7924;7601;9328;13340;12211;10675
-167;'203;Czechia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;9000;19000;28000;27000;14000;300;16000;16000;30394;28560;17000;26990;19000;18600;22000;20100;22958;11804;10615;11763;13715;2744;722;435
-167;'203;Czechia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;347;1427;3024;4513;3268;2184;42;2512;3165;7625;6586;3883;6110;4042;4045;5766;5313;4614;4073;4084;4397;4816;1129;283;259
-167;'203;Czechia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89000;95000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879;3920;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13793;48000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3070;12186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876000;764000;772000;752300;761000;885000;891000;1003000;1078000;1081000;1107000;1184000;1237000;1222000;1250500;1129600;1123740;1188927;1124600;1211000;1335600;1333073;1385435;1452909;1477262;1377448;1545016;1581709;1719000;1667000;1431000
-167;'203;Czechia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100975;116013;110000;112100;119800;172700;180700;170000;185000;194000;201000;198000;224182;205000;201685;205509;213976;251249;212780;242325;221060;241521;266304;276491;322094;342592;310749;270416;347142;350046;238400
-167;'203;Czechia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49993;59294;43906;50657;51480;61256;63525;79162;65230;76254;86317;89868;114335;114696;130784;145824;111477;152404;139000;148713;148713;154739;168323;160181;155144.65;230357;201712;138566;207579;260566;223617
-167;'203;Czechia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211696;248296;234000;270300;273000;305300;326100;371000;413000;464000;478000;519040;571580;588422;644200;735154;830270;907008;818227;826807;899048;879783;821020;611220;890924;910745;819865;802069;887806;918997;966266
-167;'203;Czechia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79588;90348;154114;101055;89918;107663;109781;172204;128726;136239;158246;189796;205401;231097;280772;322913;273093;374359;361497;257221;246185;217872;124182;121995;131872.92;123506;143099;132736;252826;268290;163553
-167;'203;Czechia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676000;512000;520000;491300;514000;569000;567000;638000;685000;702000;721000;736000;757000;766000;782500;701600;732145;721927;703100;691000;459600;445500;435229;448502;460218;343284;553307;590000;611000;637000;501000
-167;'203;Czechia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98814;113013;96000;98800;108800;128700;128700;118000;126000;153000;165000;159000;189182;171000;167685;178332;167440;172249;141020;170325;185160;196221;226344;236745;246618;271911;241528;221318;272452;284046;198400
-167;'203;Czechia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49732;59051;41645;49539;50671;58559;58781;72494;60287;70943;81699;85148;108403;106719;120804;136793;105953;140095;123840;135021;142052;146849;162486;154343;143676.74;218960;193846;128670;194671;248114;215204
-167;'203;Czechia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174296;203296;191000;224700;225000;245300;258100;290000;318000;332000;338000;345040;362580;346422;369200;351279;420405;386008;326146;247010;187191;148152;25597;21320;20702;8663;41865;56069;117113;113782;72800
-167;'203;Czechia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74688;86871;146312;95864;86276;103540;105500;164991;121837;124973;144784;171113;185475;203312;230752;256835;227239;287381;251517;155762;138290;108181;21746;17434;16390.21;11418;43289;48429;86353;104433;64523
-167;'203;Czechia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689000;516000;524000;487000;512000;569000;566000;637000;684000;702000;718000;732000;753000;762000;780000;698000;728218;718000;754500;789000;686000;705500;698229;702502;720218;593284;775307;812000;833000;859000;696000
-167;'203;Czechia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107851;129413;113000;130100;131800;152700;144700;122000;133000;160000;174000;163000;193182;183600;180685;187950;170470;177249;145350;169325;187530;198311;229594;239087;245302;283382;254241;231273;309634;324000;203900
-167;'203;Czechia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56441;71366;55408;76500;69138;76911;72348;77994;67754;78004;90330;88932;111745;119503;137920;147309;109308;144587;128200;132519;145273;148863;165484;156739;155917.41;233701;211439;141214;248655;302123;224264
-167;'203;Czechia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172296;201696;190000;224000;224000;244300;257100;289000;317000;330000;335000;340040;357580;343122;366021;347157;416105;386008;328083;360660;405872;399943;318587;258675;269580;264941;301407;324226;120822;117000;340300
-167;'203;Czechia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73771;85955;144918;94566;84753;101215;103649;163797;120128;120890;137680;161128;174154;193964;221349;243988;213381;281465;246906;239242;314312;316613;274343;219233;238758.23;242719;260958;217204;88059;103528;296511
-167;'203;Czechia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;0;0;0;0;0;0
-167;'203;Czechia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20130;30439;27875;722;1089;0;1400
-167;'203;Czechia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12351.63;23622;23381;408;617;0;833
-167;'203;Czechia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7006;0;13;103;20;0;1300
-167;'203;Czechia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4273.24;0;8033;9;14;0;183
-167;'203;Czechia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;68000;78000;75000;59000;79000;62000;68000;88000;82000;84000;82000;84000;91000;86000;46000;27331;13000;2900;0;0;0;0;0;;;;;;;
-167;'203;Czechia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;0;0;700;400;0;0;0;0;6000;13000;2000;685;115;93;205;330;215;210;200;170;188;;;;;;;
-167;'203;Czechia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;0;0;248;145;130;79;184;213;5578;13284;2171;1116;226;114;140;236;158;199;165;134;190;;;;;;;
-167;'203;Czechia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;600;0;0;0;200;100;0;0;0;0;40;80;228;0;82;60;6;6;10;21;27;3;5;;;;;;;
-167;'203;Czechia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;282;0;0;0;62;29;52;0;0;0;39;84;247;0;92;7;7;8;3;22;26;2;4;;;;;;;
-167;'203;Czechia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2000;0;0;0;0;0;0;3500;4000;3551;;;;;;;
-167;'203;Czechia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3013;3013;0;0;0;3000;2000;2000;2000;4000;2000;1000;182;0;0;21;9;44;80;30;7260;1;24;9;;;;;;;
-167;'203;Czechia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1298;1298;0;0;0;1178;694;1090;1078;1566;853;312;84;0;0;16;16;40;73;18;3374;0;18;4;;;;;;;
-167;'203;Czechia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;2;0;0;13;1;24;5;;;;;;;
-167;'203;Czechia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;6;0;18;3;;;;;;;
-167;'203;Czechia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616000;442000;440000;412000;453000;490000;504000;569000;596000;620000;634000;650000;669000;671000;692000;652000;700887;705000;696600;689000;456000;442000;431229;444951;452218;343284;553307;590000;611000;637000;501000
-167;'203;Czechia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95700;110000;94000;95100;100800;121000;121300;111000;122000;147000;162000;151000;175000;168000;166000;177058;166778;171000;139210;169080;176560;194510;225080;234368;224132;239387;211994;218880;270079;282000;195500
-167;'203;Czechia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48330;57753;39610;47399;47054;55025;55541;68316;58052;68180;79958;78634;93615;102804;117730;133370;104417;137323;119821;132343;136452;144133;160799;151777;128283.07;191979;168257;125907;192291;245306;210587
-167;'203;Czechia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172000;201000;190000;224000;224000;244100;257000;289000;317000;330000;335000;340000;357500;341894;366000;347075;416041;381000;322377;244000;183147;143114;20560;11203;5474;1271;33933;52398;113401;110000;69000
-167;'203;Czechia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73641;85638;144918;94566;84753;101153;103620;163745;120128;120890;137680;161089;174070;192388;221328;243896;213372;274592;238150;149900;130911;99436;13007;6725;2752.99;1016;26082;40141;77210;94049;57159
-167;'203;Czechia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;110000;109000;94000;130000;154000;151000;179000;181000;196000;205000;204000;210000;219000;220000;208000;237716;240000;245500;256000;255000;253000;248625;261068;261997;202373;295562;286000;295000;299000;235000
-167;'203;Czechia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;6000;7000;4600;4400;8000;6000;5000;5000;3000;4000;3000;3000;3000;3000;3934;6995;14000;9180;14000;11500;13900;15700;15396;5147;9248;8829;10710;5250;6000;5000
-167;'203;Czechia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;2921;4221;2478;1919;3472;2372;2543;2024;1197;1563;1560;1671;1671;2321;2667;5979;12023;12400;22735;18736;18289;17929;17785;5542.24;8086;20809;5363;3878;5639;3506
-167;'203;Czechia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;1000;3000;2600;400;100;200;0;0;0;0;0;500;194;0;0;0;0;1518;3000;207;0;0;0;0;0;0;3;14;0;0
-167;'203;Czechia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4641;243;1696;1118;145;31;87;0;0;0;71;0;334;247;0;0;0;0;1113;1843;155;0;0;0;0;0;1;4;14;134;21
-167;'203;Czechia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;98000;104000;100000;109000;126000;124000;155000;161000;161000;171000;177000;179000;189000;192000;175000;185717;194000;195400;203000;191000;189000;182604;183883;190221;140911;257745;304000;316000;338000;266000
-167;'203;Czechia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83600;87000;77000;81000;91000;111000;113000;104000;108000;132000;134000;128000;152000;146000;153000;163998;145858;145000;128000;154000;163800;179300;208000;217042;214746;220601;201449;205963;262572;274000;189000
-167;'203;Czechia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;44088;29459;40497;43057;50716;52301;64424;52242;61427;68200;68336;81793;88988;107291;120777;89717;116714;105476;108297;115728;123816;140958;131787;119549.63;168080;144684;118100;185713;236752;204217
-167;'203;Czechia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23900;21000;30000;30700;38000;58000;52000;79000;90000;94000;99000;89000;96000;95700;106000;98157;143027;144000;135359;130000;174987;143062;20500;11109;5438;1191;33834;52395;113387;110000;69000
-167;'203;Czechia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;9979;23217;16291;17835;25482;22795;48182;40910;37176;43407;45011;51507;56404;73468;69763;73756;105018;101626;79748;117175;99350;12920;6582;2641.41;838;25915;40137;77196;93915;57138
-167;'203;Czechia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-167;'203;Czechia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4239;9538;1716;2207;2257;2000;1500
-167;'203;Czechia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3191.2;15813;2764;2444;2700;2915;2864
-167;'203;Czechia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;80;99;0;0;0;0
-167;'203;Czechia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111.58;178;166;0;0;0;0
-167;'203;Czechia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220000;46000;53000;40000;31000;26000;21000;17000;13000;9000;0;0;0;0;0;0;0;0;0;48000;0;0;0;0;;;;;;;
-167;'203;Czechia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;0;2000;5000;12000;12000;8000;6000;2000;2365;4345;2000;360;80;130;140;100;18;;;;;;;
-167;'203;Czechia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;116;52;631;1535;4085;4408;3634;2879;964;1639;3314;1163;375;61;113;98;61;137;;;;;;;
-167;'203;Czechia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6700;19000;8000;5400;6600;10000;800;2000;3000;1000;0;0;0;0;0;0;0;0;0;0;50;0;0;0;;;;;;;
-167;'203;Czechia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;3373;3581;1390;1454;2790;174;389;605;215;0;0;0;0;0;0;0;0;0;0;34;0;0;0;;;;;;;
-167;'203;Czechia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;188000;174000;178000;183000;184000;208000;218000;241000;254000;258000;269000;280000;263000;280000;269000;277454;271000;255700;182000;10000;0;0;0;;;;;;;
-167;'203;Czechia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;17000;10000;9500;5400;1000;2000;2000;7000;7000;12000;8000;12000;13000;8000;6761;9580;10000;1670;1000;1130;1170;1280;1912;;;;;;;
-167;'203;Czechia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6900;10744;5930;4424;2078;589;752;1297;3155;4021;6110;4330;6517;9266;7154;8287;5407;7423;1570;1250;1875;1930;1851;2068;;;;;;;
-167;'203;Czechia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129500;160000;149000;185300;179000;176000;204000;208000;224000;235000;236000;251000;261000;246000;260000;248918;273014;237000;185500;111000;7903;52;60;94;;;;;;;
-167;'203;Czechia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55700;72043;116424;75767;65319;72850;80564;115174;78613;83499;94202;116078;122229;135737;147860;174133;139616;169574;135411;68309;13547;86;87;143;;;;;;;
-167;'203;Czechia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55000;100000;230000;260000;263000;254000;260000;250000;222000;222000;222000;222000;195000
-167;'203;Czechia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9100;16400;19000;35000;31000;28000;21000;9000;9000;9000;10000;5000;5000;13600;14000;10756;3590;6000;5730;0;3500;3600;4320;4522;1040;13556;14372;11671;38466;42000;7000
-167;'203;Czechia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;12315;15798;29101;22084;20460;15968;8458;8545;8074;9306;4408;4762;14528;19074;13697;4761;7084;8070;0;5248;4565;4533;4768;15282.71;18100;19801;14899;55747;56817;12844
-167;'203;Czechia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;21;0;0;5000;5700;116650;222691;256801;298000;247462;257100;263670;267461;271725;7401;7000;270000
-167;'203;Czechia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1329;21;0;0;6864;8748;89339;183373;217151;261316;212501;231732;241703;226843;177054;10835;9479;239169
-167;'203;Czechia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;4300;2000;0;1000;1000;1000;0;3000;4000;4000;4000;2500;3600;3927;3927;3600;2000;3600;0;0;0;0;0;0;0;0;0;0
-167;'203;Czechia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;2000;3700;8000;4000;5000;5000;2000;2000;1000;1000;1000;1000;1000;1138;560;1000;1400;1000;1130;1510;1070;2180;2356;2085;1659;1716;1284;2046;1500
-167;'203;Czechia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;0;2035;2140;3617;2108;2401;2958;1078;1013;675;624;1420;1744;1958;3181;1406;2592;3710;2502;2027;2551;1535;2372;3042.03;3359;2208;2355;1763;2808;3784
-167;'203;Czechia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1600;1000;700;1000;1000;1000;1000;1000;2000;3000;5000;5000;4300;3200;4122;4300;5000;3763;3000;4010;5010;5010;10107;8222;7392;7919;3568;3692;3782;2500
-167;'203;Czechia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;917;916;1394;1298;1523;2325;1851;1194;1709;4083;7104;9985;11321;10677;9424;12847;13858;12780;13359;5859;7351;8719;8719;10702;9363.98;10402;9174;8279;9129;10384;7181
-167;'203;Czechia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;8000;9000;11000;5000;2000;0;1000;2100;2050;3827;3803;3000;2570;900;3090;170;750;290;296;460;613;576;1034;1309;1372
-167;'203;Czechia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147;1649;1868;2445;1443;817;0;292;879;408;925;835;717;574;903;4596;237;905;355;318.63;623;786;741;503;785;1135
-167;'203;Czechia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;0;0;2000;2000;0;0;2000;2000;3217;3400;3000;4270;3000;3020;170;1490;856;599;710;911;5567;3710;2840;3000
-167;'203;Czechia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;116;130;131;307;462;0;0;682;982;1460;1215;748;1734;2108;4429;212;1367;1435;893.07;1317;1603;2939;2051;1785;2029
-167;'203;Czechia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;252000;252000;261000;247000;316000;324000;365000;393000;379000;386000;448000;480000;456000;468000;428000;391595;467000;421500;520000;876000;887573;950206;1004407;1017044;1034164;991709;991709;1108000;1030000;930000
-167;'203;Czechia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2161;3000;14000;13300;11000;44000;52000;52000;59000;41000;36000;39000;35000;34000;34000;27177;46536;79000;71760;72000;35900;45300;39960;39746;75476;70681;69221;49098;74690;66000;40000
-167;'203;Czechia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;243;2261;1118;809;2697;4744;6668;4943;5311;4618;4720;5932;7977;9980;9031;5524;12309;15160;13692;6661;7890;5837;5838;11467.91;11397;7866;9896;12908;12452;8413
-167;'203;Czechia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400;45000;43000;45600;48000;60000;68000;81000;95000;132000;140000;174000;209000;242000;275000;383875;409865;521000;492081;579797;711857;731631;795423;589900;870222;902082;778000;746000;770693;805215;893466
-167;'203;Czechia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;3477;7802;5191;3642;4123;4281;7213;6889;11266;13462;18683;19926;27785;50020;66078;45854;86978;109980;101459;107895;109691;102436;104561;115482.71;112088;99810;84307;166473;163857;99030
-167;'203;Czechia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;643000;700000;738000;714000;772000;768000;770000;804000;864000;870000;950000;934000;969000;1042000;1023000;932000;804786;769000;775200;781000;610900;686100;740320;794596;908414;843411;882124;829000;901000;938000;784000
-167;'203;Czechia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168769;216000;244000;273700;461700;450000;500000;581000;625000;670000;823000;996000;1270000;1249300;1317000;1389231;1208118;1289000;1236430;1283000;1287600;1404450;1448200;1444881;1493877;1603821;1453213;1537395;1541425;1531000;1380000
-167;'203;Czechia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133095;172625;272310;303565;383792;406069;395671;435034;460584;515884;637175;778690;850718;924907;1084518;1334131;1080889;1106895;1167522;1151703;1182268;1199473;1038049;1050200;949340.75;1274005;1124707;1082048;1363905;1517231;1274623
-167;'203;Czechia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166000;259000;269000;248600;382000;436000;467000;536000;561000;572000;681000;704000;828000;768700;814000;813115;758261;786200;657490;755000;660000;764280;851210;948472;913264;917371;885954;909915;884062;996357;778600
-167;'203;Czechia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109210;147227;223509;206747;257739;265546;259713;309431;333936;355793;439926;509558;619049;658338;778891;897836;680784;712040;864416;790895;772849;832619;781555;812327;740736.2;1087845;1028257;971799;1175633;1376002;1205673
-167;'203;Czechia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122000;246000;262000;259000;279000;279000;262000;242000;283000;286000;279000;283000;295000;317000;304000;220000;127133;93000;100800;90000;58000;63800;58907;60970;119034;101308;65905;63000;72000;86000;73000
-167;'203;Czechia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124769;149000;156000;176000;235000;210000;216000;268000;286000;349000;365000;454000;667000;610800;686000;713653;559849;488000;550770;531000;473300;489570;471300;449778;417373;435048;417501;448779;404572;448000;365000
-167;'203;Czechia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88095;111500;169680;179247;194504;179149;170326;200536;217593;267289;302426;389423;439458;463747;590358;660729;552725;514838;550727;494249;483613;471342;404752;391296;332693.71;442109;418792;362168;390008;500693;427692
-167;'203;Czechia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;121000;125000;131000;141400;141000;137000;160000;170000;176000;182000;196000;272000;218000;221000;192089;123046;103000;75069;70000;115700;73730;74340;83595;77950;86253;89204;68537;69281;132828;82200
-167;'203;Czechia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56300;76400;104718;117748;101630;94457;83745;101682;115370;118711;131037;152625;205066;184170;211492;250018;160851;119706;120100;104374;170105;105995;90742;95426;86691.6;123710;124484;99184;116777;186534;155713
-167;'203;Czechia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;86000;89000;101000;94000;102000;104000;119000;123000;106000;101000;108000;117000;125000;127000;53000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-167;'203;Czechia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31769;22000;10000;6000;42600;39000;39000;42000;51000;77000;83000;97000;107000;109000;95000;115284;112751;70000;108030;101000;98600;105750;99800;87176;82796;77079;73549;51156;60814;60000;49000
-167;'203;Czechia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13095;9500;6784;4663;23575;21979;20336;19356;27712;41351;45929;54958;64916;69864;67992;90107;83763;70778;76891;69287;68691;69401;55167;48553;38170.14;45311;41328;31159;31427;52911;38298
-167;'203;Czechia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;57000;53000;62000;62000;60000;57000;72000;73000;65000;68000;72000;136000;78000;71000;28622;736;1000;1073;500;1600;1220;1090;3818;1196;1739;1365;960;428;950;800
-167;'203;Czechia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12100;25000;32372;55338;27002;27962;25774;29241;35652;30238;32786;36430;74482;47448;46978;22072;937;1195;1568;673;1108;814;609;2107;601.76;1109;1092;1067;585;899;711
-167;'203;Czechia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;160000;173000;158000;185000;177000;158000;123000;160000;180000;178000;175000;178000;192000;177000;167000;127133;93000;100800;90000;58000;63800;58907;60970;119034;101308;65905;63000;72000;86000;73000
-167;'203;Czechia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;127000;146000;170000;192400;171000;177000;226000;235000;272000;282000;357000;560000;501800;591000;598369;447098;418000;442740;430000;374700;383820;371500;362602;334577;357969;343952;397623;343758;388000;316000
-167;'203;Czechia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;102000;162896;174584;170929;157170;149990;181180;189881;225938;256497;334465;374542;393883;522366;570622;468962;444060;473836;424962;414922;401941;349585;342743;294523.57;396798;377464;331009;358581;447782;389394
-167;'203;Czechia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;64000;72000;69000;79400;81000;80000;88000;97000;111000;114000;124000;136000;140000;150000;163467;122310;102000;73996;69500;114100;72510;73250;79777;76754;84514;87839;67577;68853;131878;81400
-167;'203;Czechia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44200;51400;72346;62410;74628;66495;57971;72441;79718;88473;98251;116195;130584;136722;164514;227946;159914;118511;118532;103701;168997;105181;90133;93319;86089.84;122601;123392;98117;116192;185635;155002
-167;'203;Czechia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;47000;47000;44000;43000;50000;52000;53000;72000;55000;48000;50927;25000;38000;22000;1000;0;0;0;0;0;0;0;0;0;0
-167;'203;Czechia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;29000;41000;52000;45000;55000;74000;88000;81200;87000;98432;89505;72000;91950;86000;96300;97070;71000;70466;67406;73323;71457;105898;107228;134000;83000
-167;'203;Czechia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23436;18369;23248;31708;28641;38682;51525;68258;60413;72143;87741;82091;61560;80358;67470;82345;78147;66358;66283;59447.8;81025;82015;70647;71223;93721;88562
-167;'203;Czechia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;12000;18000;22000;25000;30000;33000;40000;38400;31000;34600;32945;13000;602;500;500;1480;1370;2405;2170;2594;3898;1245;1866;2448;1400
-167;'203;Czechia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6789;7695;9808;12936;13722;18684;21882;28072;27791;24796;30609;27662;11536;1026;580;580;1641;1281;2411;2578.22;2982;4403;1741;2268;2601;2081
-167;'203;Czechia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000;98000;63000;100000;124000;116000;111000;112000;105000;111000;111000;69188;62000;56100;61000;52000;59700;55621;57859;116254;98392;63713;62000;71000;84000;71000
-167;'203;Czechia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;29000;45000;42000;84000;87000;101000;271000;184300;205000;187897;129151;127000;137380;146000;145900;146630;154000;152458;163359;171591;160335;127165;143390;161000;104000
-167;'203;Czechia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25854;23345;37180;36651;74351;85357;102036;108904;127240;159115;164922;137279;139470;153422;151066;152554;144462;129508;129009;112144.03;148488;133892;120095;133060;159546;125373
-167;'203;Czechia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;52000;52000;61000;75000;73000;78000;84000;83200;90000;91781;67649;76000;65794;62000;60800;65820;67700;72217;68505;74297;78456;61333;60369;115786;69000
-167;'203;Czechia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43803;35176;44627;51769;62594;65003;77073;86471;88281;103595;128902;96042;92120;102476;92597;97322;97118;84521;85443;76137.25;107630;107117;88978;98259;160016;127476
-167;'203;Czechia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;13000;13000;16000;13000;12000;12000;13000;15000;11000;8000;7018;6000;6700;7000;5000;4100;3286;3111;2780;2916;2192;1000;1000;2000;2000
-167;'203;Czechia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108000;119000;140000;141000;143000;140000;182000;201000;236300;299000;312040;228442;219000;213410;198000;132500;140120;146500;139678;103812;113055;112160;164560;93140;93000;129000
-167;'203;Czechia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107880;108276;120752;121522;122946;132458;180904;197380;206230;291108;317959;249592;243030;240056;206426;180023;179332;153719;147451;122931.73;167285;161557;140267;154298;194515;175459
-167;'203;Czechia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;16000;18000;14000;11000;11000;13000;12000;18400;29000;37086;21716;13000;7600;7000;52800;5210;4180;5155;6079;7623;5485;4999;6618;13644;11000
-167;'203;Czechia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15903;15100;18006;15013;12157;14564;17240;16041;20650;36123;68435;36210;14855;15030;10524;71095;6422;4331;5465;7374.37;11989;11872;7398;15665;23018;25445
-167;'203;Czechia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521000;454000;476000;455000;493000;489000;508000;562000;581000;584000;671000;651000;674000;725000;719000;712000;677653;676000;674400;691000;552900;622300;681413;733626;789380;742103;816219;766000;829000;852000;711000
-167;'203;Czechia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000;67000;88000;97700;226700;240000;284000;313000;339000;321000;458000;542000;603000;638500;631000;675578;648269;801000;685660;752000;814300;914880;976900;995103;1076504;1168773;1035712;1088616;1136853;1083000;1015000
-167;'203;Czechia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;61125;102630;124318;189288;226920;225345;234498;242991;248595;334749;389267;411260;461160;494160;673402;528164;592057;616795;657454;698655;728131;633297;658904;616647.04;831896;705915;719880;973897;1016538;846931
-167;'203;Czechia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;138000;144000;117600;240600;295000;330000;376000;391000;396000;499000;508000;556000;550700;593000;621026;635215;683200;582421;685000;544300;690550;776870;864877;835314;831118;796750;841378;814781;863529;696400
-167;'203;Czechia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52910;70827;118791;88999;156109;171089;175968;207749;218566;237082;308889;356933;413983;474168;567399;647818;519933;592334;744316;686521;602744;726624;690813;716901;654044.6;964135;903773;872615;1058856;1189468;1049960
-167;'203;Czechia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;16000;18000;23000;25000;24000;29000;33000;33000;32000;31000;32000;42000;54000;23000;20000;13615;11000;5800;5000;6000;5200;5315;3300;8220;6926;7891;5000;6000;5000;8000
-167;'203;Czechia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;2600;38700;11000;11000;11000;15000;17000;23000;31000;28000;27000;35000;21971;11552;11000;9940;16000;25000;23180;10600;25184;26655;23738;27534;35560;26070;35000;28000
-167;'203;Czechia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1599;2902;2891;29493;8711;7521;7031;9675;12249;19430;26601;29534;29706;42990;34507;18124;16876;18213;25670;40256;35190;12514;29784;26319.17;29569;33612;39364;31703;56582;46413
-167;'203;Czechia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4000;2900;6400;3000;3000;1000;1000;2000;6000;2000;2000;2200;21000;2605;2501;2000;1395;1000;2700;2990;2370;2144;2662;1702;1196;770;844;1797;400
-167;'203;Czechia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4277;4108;3368;5279;2294;1736;882;894;1259;4440;2418;2465;2512;29080;4444;3941;2859;2170;1271;3483;4060;2722;2525;2852.22;2456;2203;1796;1813;2886;1611
-167;'203;Czechia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434000;451000;473000;482000;509000;586000;585000;599000;631000;656000;652000;636826;633000;637100;654000;515500;586900;642856;692964;717896;685145;774502;664000;782000;804000;668000
-167;'203;Czechia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197000;240000;268000;288000;277000;393000;481000;550000;593000;585000;643149;628648;767000;656890;688000;757600;843400;918300;919532;1014076;1113911;973323;1016104;1071745;1007000;975000
-167;'203;Czechia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167152;168936;179234;180048;191404;267295;337547;356913;402319;432377;597010;476998;532547;557268;550263;603955;614807;555100;559852;533375.16;739933;617801;622744;874458;894049;742250
-167;'203;Czechia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253000;286000;323000;330000;356000;426000;449000;501000;490000;527000;568821;597888;645000;551314;650000;510800;647800;732100;811990;782000;788082;762603;805732;775668;815082;661000
-167;'203;Czechia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150350;146317;169920;171661;189346;252198;292341;360011;406034;483577;569851;450458;521574;669605;609383;525491;639356;613181;633567;570268.67;877377;822838;787572;963088;1082068;950330
-167;'203;Czechia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317000;406000;426000;430000;450000;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000;65000;83000;93400;182000;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;55493;95243;115228;145422;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;132000;138000;111600;208900;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52910;65646;112731;82597;132567;;;;;;;;;;;;;;;;;;;;;;;;;;
-167;'203;Czechia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212000;219000;145000;129000;241000;266000;263000;257000;276000;278000;278000;297585;279000;278000;271000;166000;174400;182982;184338;180884;159379;177539;147178;172000;186000;139000
-167;'203;Czechia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;100000;113000;124000;112000;233000;310000;361000;358000;360000;381949;367467;492000;413860;415000;499300;464000;528400;520629;589910;667217;572984;589740;719449;676000;658000
-167;'203;Czechia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31868;34250;42707;44565;40767;89371;131329;143409;165811;186577;235331;159319;212035;283504;260629;325233;279439;265305;264150;257447.52;368545;265050;241832;427354;495112;349028
-167;'203;Czechia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;30000;42000;35000;59000;107000;107000;124000;118200;121000;130913;187122;217000;194643;187000;114700;144790;150300;143524;210900;211657;156671;143064;98501;143729;89000
-167;'203;Czechia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9269;9604;15178;11937;23177;38540;43529;47162;51511;58530;71589;64837;94249;118915;98442;66276;85328;74811;74382;103363.7;130909;83974;70879;69156;67698;60557
-167;'203;Czechia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;12000;29000;26000;15000;39000;20000;25000;40000;38000;33000;14800;14000;17700;20000;18500;12100;13931;33782;31997;35950;12801;32000;13000;13000;13000
-167;'203;Czechia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;60000;71000;71000;94000;91000;99000;107000;109800;120000;142300;127498;115000;137360;144000;155400;139900;144200;143351;168934;173323;177714;193463;203773;208000;175000
-167;'203;Czechia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94023;91787;89669;84135;103883;123258;143069;145831;140798;156912;231004;201182;181921;197260;190631;213342;179654;155906;156038;144826.35;187302;183772;203477;244425;269063;243753
-167;'203;Czechia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;28000;32000;36000;34000;26000;27000;47000;58800;64000;58194;58169;57000;63528;66000;75900;69200;66400;75351;83080;90522;69082;62733;68202;86137;57000
-167;'203;Czechia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19933;17270;21587;24583;23975;27209;32062;51507;67214;82459;138198;106218;99948;114864;109611;130853;107005;86705;99341;98323.57;151996;105099;101776;116220;138924;130367
-167;'203;Czechia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149000;153000;195000;215000;233000;251000;254000;267000;274000;293000;292000;290829;308000;307500;327000;298000;391400;412253;436914;467976;442606;533708;443000;547000;556000;469000
-167;'203;Czechia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;45000;48000;55000;63000;54000;58000;66000;70100;59000;94923;109385;132000;58990;101000;53300;179500;181100;186905;181544;204523;160006;169179;101827;65000;118000
-167;'203;Czechia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30628;30663;32977;37492;43254;47349;55504;58817;63612;58917;113946;102512;122952;59711;80737;43451;130762;111222;115424;109199.3;158142;148242;156333;178551;101842;131375
-167;'203;Czechia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194000;212000;228000;237000;259000;285000;306000;321000;298000;311000;371609;344019;362000;283203;390000;280400;423540;504800;583055;437961;432063;478665;591563;550081;566850;509000
-167;'203;Czechia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117397;114930;126331;128226;140260;182613;212186;256914;275557;316023;354265;274459;322246;429859;396991;308368;442084;447368;455734;350356.65;569158;606886;610439;751255;867371;753639
-167;'203;Czechia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;67000;104000;112000;20000;30000;48000;50000;41000;47000;49000;33612;32000;33900;36000;33000;9000;33690;37930;37039;47210;50454;41822;50000;49000;47000
-167;'203;Czechia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;35000;36000;38000;8000;15000;14000;16000;55100;46000;23977;24298;28000;46680;28000;49600;60000;64600;68647;73688;68848;62619;63722;46696;58000;24000
-167;'203;Czechia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10633;12236;13881;13856;3500;7317;7645;8856;32098;29971;16729;13985;15639;16793;18266;21929;24952;22667;24240;21901.99;25944;20737;21102;24128;28032;18094
-167;'203;Czechia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;16000;21000;22000;4000;8000;9000;9000;15000;31000;8105;8578;9000;9940;7000;39800;10270;10600;10060;50059;53840;58185;8372;58884;18366;6000
-167;'203;Czechia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3751;4513;6824;6915;1934;3836;4564;4428;11752;26565;5799;4944;5131;5967;4339;19994;4939;4297;4110;18224.74;25314;26879;4478;26457;8075;5767
-167;'203;Czechia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188000;32000;32000;2000;18000;31000;28000;56000;66000;43000;54000;34000;33000;40000;40000;40000;27212;32000;31500;32000;31400;30200;33242;37362;63264;50032;33826;97000;41000;43000;35000
-167;'203;Czechia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1700;6000;32000;33000;34000;36000;27000;42000;30000;25000;18500;11000;10458;8069;23000;18830;48000;31700;48300;48000;50387;35773;31124;34855;36952;39038;41000;12000
-167;'203;Czechia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4033;4485;6199;14373;51057;48888;48233;53268;44942;48024;25119;24813;29135;18793;41885;33042;42634;41314;81521;54444;78134;65683;69268;56952.71;62394;54502;57772;67736;65907;58268
-167;'203;Czechia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;3100;25300;39000;41000;52000;60000;38000;67000;57000;53000;58500;45000;49600;34826;36200;29712;34000;30800;39760;42400;50743;50652;41334;32951;34876;38269;46650;35000
-167;'203;Czechia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;904;1952;3034;18263;18445;27915;36947;46011;46477;52251;62174;51507;65622;54742;73523;65534;67901;72541;75867;73770;83208;74910;80809;80923.71;84302;78732;83247;93955;104514;98019
-167;'203;Czechia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;723786.88;857160;960077;968665;1318964;1390021;1299601
-167;'203;Czechia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169170.45;1291214;1226051;1263186;1691919;1767098;1567209
-167;'203;Czechia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25007.98;37998;42462;42462;65244;62272;44469
-167;'203;Czechia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44794.94;60528;58287;58287;72201;71001;52552
-167;'203;Czechia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17536.06;25463;28552;28552;46898;41577;28901
-167;'203;Czechia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26937.4;34703;32370;32370;41788;34754;27440
-167;'203;Czechia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7471.92;12535;13910;13910;18346;20695;15568
-167;'203;Czechia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17857.54;25825;25917;25917;30413;36247;25112
-167;'203;Czechia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85088;98541;105325;96541;152842;176159;164234
-167;'203;Czechia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222284;259668;250902;230731;348658;414719;354443
-167;'203;Czechia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17733.47;24947;27321;27321;26687;34013;33410
-167;'203;Czechia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18910.87;26538;27227;27227;27319;26849;39562
-167;'203;Czechia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83224.43;112207;115075;115075;158468;138550;136362
-167;'203;Czechia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184647.64;240243;232426;232426;282995;259335;262800
-167;'203;Czechia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;11000
-167;'203;Czechia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11959;12101
-167;'203;Czechia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11989;9288
-167;'203;Czechia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17695;14817
-167;'203;Czechia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20350;12482
-167;'203;Czechia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;57000
-167;'203;Czechia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3779;5041
-167;'203;Czechia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3362;4035
-167;'203;Czechia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4485;10193
-167;'203;Czechia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5266;9704
-167;'203;Czechia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000;47000
-167;'203;Czechia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;160
-167;'203;Czechia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;232
-167;'203;Czechia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;117
-167;'203;Czechia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;177
-167;'203;Czechia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461809;522587;601424;616746;825361;874141;832436
-167;'203;Czechia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548183;546290;523366;564056;763561;778584;655512
-167;'203;Czechia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9534;9861;10645;12776;18710;19940;18254
-167;'203;Czechia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74681;72520;54099;62504;80007;99463;94619
-167;'203;Czechia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41390;51019;57825;57744;71652;84946;70436
-167;'203;Czechia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75669;85427;79744;87955;117178;117147;107721
-167;'203;Czechia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824044.13;981408;978085;970091;1088235;1255627;1239633
-167;'203;Czechia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617222.71;728546;719586;761541;895486;1026815;979136
-167;'203;Czechia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14826.53;19208;19502;19502;25947;26804;15950
-167;'203;Czechia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997.89;1363;1715;1715;1867;2871;1632
-167;'203;Czechia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62179.75;77502;71727;71727;78308;94615;85179
-167;'203;Czechia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17533.17;25876;22604;22604;26727;31960;25171
-167;'203;Czechia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163598.1;215300;212168;212168;248201;305170;328422
-167;'203;Czechia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24422.51;29658;31329;31329;43197;51084;61199
-167;'203;Czechia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374830;399406;395681;387687;455648;530330;523305
-167;'203;Czechia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357218;395858;398537;440492;529752;623439;560641
-167;'203;Czechia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208609.74;269992;279007;279007;280131;298708;286777
-167;'203;Czechia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217051.14;275791;265401;265401;293943;317461;330493
-51;'200;Czechoslovakia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;22987;23055;20391;24239;30004;35280;39310;50145;55610;60274;67556;75770;82860;82150;121500;122300;123300;117100;115950;124300;107600;102750;96505;82940;105330;99310;109690;119475;172340;141331;113699;98608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;56915;60850;65434;69062;71558;78924;76646;77011;83509;90690;94462;108180;134121;181819;221969;229585;275950;360220;378172;377582;368674;431110;388550;381798;396736;395402;381281;374288;432691;453376;493971;511150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1861;Roundwood;5516;Production;m3;13238000;12939000;12559000;12726000;12881000;14096000;14078000;14436000;13725000;15026000;15094000;15215000;15518000;15783000;16553000;17330000;17622000;18513000;18764000;18767000;18796000;18925000;18833000;18913000;19002000;18933000;18679000;18096000;18232000;18180000;15289000;14556000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1861;Roundwood;5616;Import quantity;m3;67300;65500;67200;61900;69400;72900;74500;68300;64000;72800;76400;84500;91000;89000;88000;104000;90000;76000;83000;83000;85000;80000;73000;80000;78000;114400;154600;154600;92300;95239;324121;356900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1861;Roundwood;5622;Import value;1000 USD;3334;2917;3334;3195;3750;3334;3473;3056;3200;4584;3750;4675;6600;8200;7000;8500;7400;6300;7000;7500;7650;7200;6600;7000;7000;9500;12000;12200;9500;12738;24021;22834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1861;Roundwood;5916;Export quantity;m3;600700;557100;762200;744700;829200;1070500;1311800;1442100;1436100;1463200;1303000;1410600;1956800;2329400;2301000;2101000;2395000;2636000;2988000;3098000;2539000;2173100;1759600;1449400;1462000;1233300;820500;967400;747800;723903;889772;1154200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1861;Roundwood;5922;Export value;1000 USD;11154;11397;14596;14348;15182;19065;20473;22224;26438;25760;27676;31700;41360;65100;75600;73100;89250;106687;126902;128702;107809;114800;89000;73300;74160;60900;42150;47350;32850;37597;47846;64969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1862;Roundwood, coniferous;5516;Production;m3;10536000;10393000;9944000;9954000;10150000;11025000;10864000;10964000;10198000;10867000;11080000;11187000;11486000;11802000;12447000;13228000;13345000;14069000;14212000;14307000;14402000;14418000;14358000;14468000;14922000;14922000;14651000;14062000;14255000;14464000;11833000;11316000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1863;Roundwood, non-coniferous;5516;Production;m3;2702000;2546000;2615000;2772000;2731000;3071000;3214000;3472000;3527000;4159000;4014000;4028000;4032000;3981000;4106000;4102000;4277000;4444000;4552000;4460000;4394000;4507000;4475000;4445000;4080000;4011000;4028000;4034000;3977000;3716000;3456000;3240000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1864;Wood fuel;5516;Production;m3;1551000;1428000;1506000;1689000;1811000;2199000;2162000;2132000;2041000;2175000;2175000;2197000;1951000;1733000;1732000;1902000;1827000;1985000;1906000;1764000;1681000;1504000;1328000;1306000;1382000;1382000;1476000;1532000;1376000;1782000;1519000;1532000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1864;Wood fuel;5916;Export quantity;m3;5700;1100;1900;3200;5600;6300;83700;20000;19000;5000;4000;5000;3000;3000;8000;8000;4000;13000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1864;Wood fuel;5922;Export value;1000 USD;42;7;12;14;28;28;611;139;278;70;110;140;150;150;500;500;250;850;65;65;65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1627;Wood fuel, coniferous;5516;Production;m3;825000;806000;823000;913000;1031000;1202000;1165000;1091000;936000;989000;989000;970000;924000;872000;861000;989000;953000;1092000;1113000;1045000;1024000;855000;844000;762000;850000;850000;956000;948000;851000;1289000;886000;897000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1628;Wood fuel, non-coniferous;5516;Production;m3;726000;622000;683000;776000;780000;997000;997000;1041000;1105000;1186000;1186000;1227000;1027000;861000;871000;913000;874000;893000;793000;719000;657000;649000;484000;544000;532000;532000;520000;584000;525000;493000;633000;635000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;5700;1100;1900;3200;5600;6300;83700;20000;19000;5000;4000;5000;3000;3000;8000;8000;4000;13000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;42;7;12;14;28;28;611;139;278;70;110;140;150;150;500;500;250;850;65;65;65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1865;Industrial roundwood;5516;Production;m3;11687000;11511000;11053000;11037000;11070000;11897000;11916000;12304000;11684000;12851000;12919000;13018000;13567000;14050000;14821000;15428000;15795000;16528000;16858000;17003000;17115000;17421000;17505000;17607000;17620000;17551000;17203000;16564000;16856000;16398000;13770000;13024000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1865;Industrial roundwood;5616;Import quantity;m3;67300;65500;67200;61900;69400;72900;74500;68300;64000;72800;76400;84500;91000;89000;88000;104000;90000;76000;83000;83000;85000;80000;73000;80000;78000;114400;154600;154600;92300;95239;324121;356900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1865;Industrial roundwood;5622;Import value;1000 USD;3334;2917;3334;3195;3750;3334;3473;3056;3200;4584;3750;4675;6600;8200;7000;8500;7400;6300;7000;7500;7650;7200;6600;7000;7000;9500;12000;12200;9500;12738;24021;22834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1865;Industrial roundwood;5916;Export quantity;m3;595000;556000;760300;741500;823600;1064200;1228100;1422100;1417100;1458200;1299000;1405600;1953800;2326400;2293000;2093000;2391000;2623000;2987000;3097000;2538000;2173100;1759600;1449400;1462000;1233300;820500;967400;747800;723903;889772;1154200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1865;Industrial roundwood;5922;Export value;1000 USD;11112;11390;14584;14334;15154;19037;19862;22085;26160;25690;27566;31560;41210;64950;75100;72600;89000;105837;126837;128637;107744;114800;89000;73300;74160;60900;42150;47350;32850;37597;47846;64969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1866;Industrial roundwood, coniferous;5516;Production;m3;9711000;9587000;9121000;9041000;9119000;9823000;9699000;9873000;9262000;9878000;10091000;10217000;10562000;10930000;11586000;12239000;12392000;12977000;13099000;13262000;13378000;13563000;13514000;13706000;14072000;14072000;13695000;13114000;13404000;13175000;10947000;10419000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3936;281911;304500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;18642;18015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279239;513630;713000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20669;34026;48653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3936;281911;304500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;18642;18015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279239;513630;713000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20669;34026;48653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1976000;1924000;1932000;1996000;1951000;2074000;2217000;2431000;2422000;2973000;2828000;2801000;3005000;3120000;3235000;3189000;3403000;3551000;3759000;3741000;3737000;3858000;3991000;3901000;3548000;3479000;3508000;3450000;3452000;3223000;2823000;2605000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91303;42210;52400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12258;5379;4819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444664;376142;441200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16928;13820;16316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32883;42210;52400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4415;5379;4819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444664;376142;441200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16928;13820;16316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1868;Sawlogs and veneer logs;5516;Production;m3;7199000;7197000;6789000;6577000;6537000;7137000;7171000;7413000;7041000;7763000;7763000;8049000;8177000;8301000;8628000;9085000;9133000;9611000;9850000;9863000;9967000;10395000;10421000;10333000;10301000;10183000;10160000;9362000;9562000;8822000;7184000;6696000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;67300;65500;67200;61900;69400;72900;74500;68300;64000;72800;76400;84500;91000;89000;88000;104000;90000;76000;83000;83000;85000;80000;73000;80000;78000;75000;78000;75000;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3334;2917;3334;3195;3750;3334;3473;3056;3200;4584;3750;4675;6600;8200;7000;8500;7400;6300;7000;7500;7650;7200;6600;7000;7000;8000;9000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;165000;163300;249300;215700;147100;233900;199500;291900;333000;355100;340200;406400;470900;591000;599000;395000;667000;953000;1249000;1163000;746000;989000;536500;452900;513000;377000;289000;232000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4723;4723;6528;5584;3903;6389;5139;7223;8600;8700;9788;12050;15665;24300;24000;22000;38300;57500;77200;73500;52900;70400;40700;33800;35600;25800;20800;16800;3400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;5987000;5930000;5558000;5344000;5372000;5838000;5788000;5868000;5557000;6020000;6020000;6282000;6410000;6522000;6839000;7376000;7315000;7772000;7930000;7932000;8055000;8445000;8476000;8453000;8597000;8548000;8465000;7725000;7923000;7412000;5987000;5377000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;165000;163300;249300;214400;143200;226900;191300;188800;192100;188000;166200;219500;279900;376000;390000;332000;488000;791000;987000;884000;545000;791000;332500;340900;464000;358000;270000;213000;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;4723;4723;6528;5556;3820;6250;5000;4584;5000;4500;5278;6710;9165;14000;14500;18500;27300;47500;61200;55000;35400;53000;22300;22800;31100;24000;19000;15000;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1212000;1267000;1231000;1233000;1165000;1299000;1383000;1545000;1484000;1743000;1743000;1767000;1767000;1779000;1789000;1709000;1818000;1839000;1920000;1931000;1912000;1950000;1945000;1880000;1704000;1635000;1695000;1637000;1639000;1410000;1197000;1319000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;67300;65500;67200;61900;69400;72900;74500;68300;64000;72800;76400;84500;91000;89000;88000;104000;90000;76000;83000;83000;85000;80000;73000;80000;78000;75000;78000;75000;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;3334;2917;3334;3195;3750;3334;3473;3056;3200;4584;3750;4675;6600;8200;7000;8500;7400;6300;7000;7500;7650;7200;6600;7000;7000;8000;9000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;1300;3900;7000;8200;103100;140900;167100;174000;186900;191000;215000;209000;63000;179000;162000;262000;279000;201000;198000;204000;112000;49000;19000;19000;19000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;28;83;139;139;2639;3600;4200;4510;5340;6500;10300;9500;3500;11000;10000;16000;18500;17500;17400;18400;11000;4500;1800;1800;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;39400;76600;79600;12300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3000;3200;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;327900;266800;364100;393900;549000;682400;885400;1002500;943300;931700;824100;847500;1309500;1562000;1560000;1581000;1604000;1604000;1678000;1874000;1716000;1083100;1118600;893000;844000;727300;528500;734300;706900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;3472;3056;3889;5000;7640;8342;10140;11112;13400;12000;13750;13780;19395;34500;45000;45600;45600;45600;47000;52500;51500;40000;43600;34800;33760;29100;21200;30000;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;2558000;2388000;2428000;2601000;2777000;3002000;3325000;3468000;3293000;3380000;3399000;3359000;3672000;3905000;4141000;4310000;4492000;4584000;4733000;4825000;4705000;4238000;4280000;4361000;4578000;4613000;4390000;4759000;4934000;4890000;5853000;5418000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;39400;76600;79600;12300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3000;3200;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;327900;266800;364100;393900;549000;682400;885400;1002500;943300;931700;824100;847500;1309500;1562000;1560000;1581000;1604000;1604000;1678000;1874000;1716000;1083100;1118600;893000;844000;727300;528500;734300;706900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;3472;3056;3889;5000;7640;8342;10140;11112;13400;12000;13750;13780;19395;34500;45000;45600;45600;45600;47000;52500;51500;40000;43600;34800;33760;29100;21200;30000;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;2165000;2050000;2030000;2148000;2280000;2500000;2723000;2847000;2619000;2683000;2849000;2821000;2954000;3175000;3460000;3604000;3741000;3776000;3793000;3941000;3846000;3639000;3565000;3661000;3940000;3975000;3763000;4132000;4307000;4263000;4356000;4245000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;393000;338000;398000;453000;497000;502000;602000;621000;674000;697000;550000;538000;718000;730000;681000;706000;751000;808000;940000;884000;859000;599000;715000;700000;638000;638000;627000;627000;627000;627000;1497000;1173000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1871;Other industrial roundwood;5516;Production;m3;1930000;1926000;1836000;1859000;1756000;1758000;1420000;1423000;1350000;1708000;1757000;1610000;1718000;1844000;2052000;2033000;2170000;2333000;2275000;2315000;2443000;2788000;2804000;2913000;2741000;2755000;2653000;2443000;2360000;2686000;733000;910000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1871;Other industrial roundwood;5916;Export quantity;m3;102100;125900;146900;131900;127500;147900;143200;127700;140800;171400;134700;151700;173400;173400;134000;117000;120000;66000;60000;60000;76000;101000;104500;103500;105000;129000;3000;1100;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1871;Other industrial roundwood;5922;Export value;1000 USD;2917;3611;4167;3750;3611;4306;4583;3750;4160;4990;4028;5730;6150;6150;6100;5000;5100;2737;2637;2637;3344;4400;4700;4700;4800;6000;150;550;450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1559000;1607000;1533000;1549000;1467000;1485000;1188000;1158000;1086000;1175000;1222000;1114000;1198000;1233000;1287000;1259000;1336000;1429000;1376000;1389000;1477000;1479000;1473000;1592000;1535000;1549000;1467000;1257000;1174000;1500000;604000;797000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;371000;319000;303000;310000;289000;273000;232000;265000;264000;533000;535000;496000;520000;611000;765000;774000;834000;904000;899000;926000;966000;1309000;1331000;1321000;1206000;1206000;1186000;1186000;1186000;1186000;129000;113000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;102100;125900;146900;131900;127500;147900;143200;127700;140800;171400;134700;151700;173400;173400;134000;117000;120000;66000;60000;60000;76000;101000;104500;103500;105000;129000;3000;1100;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;2917;3611;4167;3750;3611;4306;4583;3750;4160;4990;4028;5730;6150;6150;6100;5000;5100;2737;2637;2637;3344;4400;4700;4700;4800;6000;150;550;450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;4400;15100;8900;4800;1000;7000;9300;10400;10400;10400;10400;10400;10400;10400;31000;32000;37000;29000;25600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;28;97;57;31;6;33;60;150;150;150;150;150;150;150;620;800;1000;900;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1620;Wood residues;5916;Export quantity;m3;;;;51000;51200;49800;17700;23400;26600;37800;71200;59800;134400;234000;210000;180000;298000;275000;337000;317000;362000;407000;325000;321000;416000;170000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1620;Wood residues;5922;Export value;1000 USD;;;;530;535;520;236;139;140;278;695;530;1200;2500;2400;2100;3600;3400;4100;4800;8700;10200;8400;8700;11500;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1872;Sawnwood;5516;Production;m3;4192000;4198000;3869000;3733800;3747300;3790600;3884900;3758000;3632100;3761800;3969100;4161000;4224000;4332000;4348000;4455000;4524000;4695000;4762000;4923000;4956000;5093000;5143000;5227000;5219000;5251000;5186000;5128000;4860000;4764000;3621000;2650000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1872;Sawnwood;5616;Import quantity;m3;185600;200500;171900;191800;218400;162800;160700;178100;180200;164500;172000;156000;149400;157000;174000;238000;220000;149000;126000;108000;127000;114400;148000;141100;133200;113300;89000;64800;57100;30800;12700;29600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1872;Sawnwood;5622;Import value;1000 USD;8195;8751;7223;8612;10279;7778;7917;8612;8760;8110;7820;7750;5910;9650;14500;20500;20200;14200;12200;11300;13400;13450;17405;16560;16020;13660;11120;8220;7840;4342;2489;7278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1872;Sawnwood;5916;Export quantity;m3;632100;763700;789800;798900;742100;765700;752000;617400;634500;743800;665900;698800;764700;769100;815000;820000;903000;1040000;1070000;1122000;1145000;1086800;1180300;1179600;1129700;1307400;1347800;1157600;1114700;928100;1149500;1118900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1872;Sawnwood;5922;Export value;1000 USD;27222;32637;32915;34447;34032;35142;32227;25698;29430;34271;34183;39100;54061;76666;89450;89800;101400;111183;133300;121900;121600;126700;137800;137500;129506;146350;160600;134500;130600;177847;161180;169969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1632;Sawnwood, coniferous;5516;Production;m3;3590000;3575500;3266500;3136400;3180150;3171800;3203450;3065000;2960550;3042400;3220550;3336000;3393500;3516000;3556000;3655500;3693500;3856500;3921500;4059000;4091500;4207000;4270000;4363500;4364500;4394000;4329000;4212000;3988000;4082000;3037000;2400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1632;Sawnwood, coniferous;5616;Import quantity;m3;170500;184200;155200;171800;192800;146500;146300;168900;177300;155000;170300;153800;148500;156000;171000;235000;219000;148000;125000;107000;125000;114200;147800;140900;133000;113200;88800;64600;55700;30000;12200;26400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;7223;7640;6112;7223;8473;6389;6806;7917;8480;7410;7490;7360;5790;9500;14000;20000;20000;14000;12000;11050;12900;13400;17350;16500;15960;13600;11000;8100;7000;3488;1903;5124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1632;Sawnwood, coniferous;5916;Export quantity;m3;619650;753100;779950;787350;732600;754200;739800;595850;594250;676300;597050;619250;668150;683050;715500;755500;792000;923500;944500;1048000;1096000;1038550;1124650;1125500;1018900;1225150;1115350;1051900;999100;838100;1017000;931800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;26598;32014;32292;33822;33545;34447;31462;24517;27215;30591;30523;34030;47633;65833;75950;80900;85500;94383;115200;110450;114100;119450;129300;129400;112079;134350;122800;118250;112300;159824;137650;132625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1633;Sawnwood, non-coniferous;5516;Production;m3;602000;622500;602500;597400;567150;618800;681450;693000;671550;719400;748550;825000;830500;816000;792000;799500;830500;838500;840500;864000;864500;886000;873000;863500;854500;857000;857000;916000;872000;682000;584000;250000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;15100;16300;16700;20000;25600;16300;14400;9200;2900;9500;1700;2200;900;1000;3000;3000;1000;1000;1000;1000;2000;200;200;200;200;100;200;200;1400;800;500;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;972;1111;1111;1389;1806;1389;1111;695;280;700;330;390;120;150;500;500;200;200;200;250;500;50;55;60;60;60;120;120;840;854;586;2154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;12450;10600;9850;11550;9500;11500;12200;21550;40250;67500;68850;79550;96550;86050;99500;64500;111000;116500;125500;74000;49000;48250;55650;54100;110800;82250;232450;105700;115600;90000;132500;187100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;624;623;623;625;487;695;765;1181;2215;3680;3660;5070;6428;10833;13500;8900;15900;16800;18100;11450;7500;7250;8500;8100;17427;12000;37800;16250;18300;18023;23530;37344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1634;Veneer sheets;5516;Production;m3;35800;41000;45600;45000;45000;45000;44400;48700;50300;52600;58800;61100;62500;65500;67100;66000;75000;52000;57000;58000;59000;57000;59000;60000;56000;59000;63000;56000;55000;47000;27000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1634;Veneer sheets;5616;Import quantity;m3;1200;1500;1500;2200;4200;5200;4900;7300;12300;10000;7300;8800;12800;10000;12000;9000;8000;7600;8800;7900;7900;7900;5900;3000;7400;4400;6800;5700;4400;2300;4300;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1634;Veneer sheets;5622;Import value;1000 USD;694;694;833;1250;1945;2361;2500;1667;5280;3055;4590;6330;10350;8500;9000;4000;4000;4000;4700;4700;4700;4700;3500;1780;4366;2600;4020;3400;2600;1440;3872;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1873;Wood-based panels;5516;Production;m3;292000;331000;343500;358200;403600;495800;533900;547300;534900;554900;670000;678700;729900;736400;788100;825000;940000;1032000;1078000;1100000;1156000;1193000;1279000;1358000;1337000;1361000;1364000;1389000;1379000;1361000;944000;714000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1873;Wood-based panels;5616;Import quantity;m3;42200;33400;21500;27400;37000;52200;56000;59500;102300;111300;104000;145000;125800;139000;174800;185200;175000;129000;101000;109000;83000;68100;94700;47200;58400;66300;98500;79700;169800;83400;9700;10500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1873;Wood-based panels;5622;Import value;1000 USD;2917;2360;1667;2778;4029;5000;4862;5418;7370;8273;10005;11925;11850;13600;18500;19600;19100;15400;16500;17300;16000;14600;17500;11200;13408;14350;18050;14855;28000;13531;3913;5256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1873;Wood-based panels;5916;Export quantity;m3;21700;27000;32000;46700;47000;65500;78800;84000;73100;68400;62200;68900;61300;35300;42500;51900;61000;61000;73200;63000;50600;54500;70900;55100;44800;42500;45800;37500;59300;76800;276600;210700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1873;Wood-based panels;5922;Export value;1000 USD;2404;2973;3014;3764;4168;5001;5279;5696;5290;4955;4510;6490;6300;6250;7650;8900;11150;11700;18920;17520;14115;15010;20300;15749;12782;12160;13395;10238;19641;17642;44684;45247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1640;Plywood and LVL;5516;Production;m3;184900;186700;183300;169300;162800;164400;162500;167300;148800;161100;182700;188800;191200;254000;274000;282000;283000;286000;300000;283000;276000;272000;258000;260000;247000;250000;250000;249000;245000;234000;157000;87000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1640;Plywood and LVL;5616;Import quantity;m3;9600;6700;5100;9900;19500;26400;20700;21700;21200;21100;23600;23600;20700;17000;20000;20000;22000;21000;19000;17000;12000;11100;10700;12200;14400;13600;10700;9300;7800;5100;3100;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1640;Plywood and LVL;5622;Import value;1000 USD;1250;972;694;1389;2778;3750;3056;3195;3340;3470;4170;4830;4050;4100;5600;6000;6000;6000;8000;7100;5100;4700;4500;5100;6048;5750;4600;4000;3300;1098;2200;1958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1640;Plywood and LVL;5916;Export quantity;m3;16200;20400;21400;25000;25400;25200;24400;25300;24700;23600;21500;21100;23800;22000;26000;26000;32000;33000;39000;39000;21000;24500;39000;29800;28000;25800;29000;32000;55200;72200;34900;43100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1640;Plywood and LVL;5922;Export value;1000 USD;2084;2500;2500;2917;3056;3056;2917;2917;2920;2800;2600;2870;3450;5100;6500;7000;9000;9500;11200;11700;6300;7400;11800;9000;8400;7750;9000;9000;18850;16444;14819;20260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1646;Particle board and OSB (1961-1994);5516;Production;m3;65800;92000;100900;117400;164500;213600;247200;252700;255900;264800;359700;383500;402900;345000;344000;348000;446000;531000;563000;592000;657000;700000;813000;900000;895000;903000;913000;934000;939000;950000;665000;560000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;10000;15000;7900;9000;6500;2000;1000;3500;24200;26700;30000;48900;43700;67000;118000;141000;128000;89000;66000;73000;48000;40000;74000;25000;34000;42700;86200;68800;160400;77100;4400;7500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;556;694;417;417;556;139;139;278;1390;1528;1945;3015;3600;5500;8900;11000;10500;7400;5500;6200;5000;5500;10400;3500;4760;6000;13000;10400;24200;11892;1185;2739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;1900;2000;2900;12400;11100;23500;38200;40600;34000;30200;26000;31400;30100;8000;6000;7000;3000;2000;1200;1000;2600;5000;2900;2200;2300;2200;2800;2400;2700;1800;209000;144000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;42;56;97;278;417;1250;1667;2084;1670;1435;1250;2260;1950;550;450;500;250;200;120;120;315;610;400;304;322;310;395;338;381;549;23840;19498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1874;Fibreboard;5516;Production;m3;41300;52300;59300;71500;76300;117800;124200;127300;130200;129000;127600;106400;135800;137400;170100;195000;211000;215000;215000;225000;223000;221000;208000;198000;195000;208000;201000;206000;195000;177000;122000;67000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1874;Fibreboard;5616;Import quantity;m3;22600;11700;8500;8500;11000;23800;34300;34300;56900;63500;50400;72500;61400;55000;36800;24200;25000;19000;16000;19000;23000;17000;10000;10000;10000;10000;1600;1600;1600;1200;2200;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1874;Fibreboard;5622;Import value;1000 USD;1111;694;556;972;695;1111;1667;1945;2640;3275;3890;4080;4200;4000;4000;2600;2600;2000;3000;4000;5900;4400;2600;2600;2600;2600;450;455;500;541;528;559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1874;Fibreboard;5916;Export quantity;m3;3600;4600;7700;9300;10500;16800;16200;18100;14400;14600;14700;16400;7400;5300;10500;18900;26000;26000;33000;23000;27000;25000;29000;23100;14500;14500;14000;3100;1400;2800;32700;23600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1874;Fibreboard;5922;Export value;1000 USD;278;417;417;569;695;695;695;695;700;720;660;1360;900;600;700;1400;1900;2000;7600;5700;7500;7000;8100;6445;4060;4100;4000;900;410;649;6025;5489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1650;Other fibreboard;5516;Production;m3;10000;9900;10200;11200;11200;46400;48000;48400;50400;47600;44000;31600;51600;49200;59200;61000;64000;65000;61000;65000;70000;70000;70000;59000;63000;70000;64000;67000;62000;56000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1650;Other fibreboard;5616;Import quantity;m3;;;;1000;2000;11200;13200;8000;31600;28800;16000;36000;20000;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1650;Other fibreboard;5622;Import value;1000 USD;;;;139;139;278;278;139;695;495;420;1060;450;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1650;Other fibreboard;5916;Export quantity;m3;1600;1600;3000;2300;2500;8400;8800;7600;2800;7200;8400;4800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1650;Other fibreboard;5922;Export value;1000 USD;139;139;139;153;139;139;278;139;140;360;300;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;31300;42400;49100;60300;65100;71400;76200;78900;79800;81400;83600;74800;84200;88200;110900;134000;147000;150000;154000;160000;153000;151000;138000;139000;132000;138000;137000;139000;133000;121000;82000;67000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;22600;11700;8500;7500;9000;12600;21100;26300;25300;34700;34400;36500;41400;39000;36800;24200;25000;19000;16000;19000;23000;17000;10000;10000;10000;10000;1600;1600;1600;1200;2200;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1111;694;556;833;556;833;1389;1806;1945;2780;3470;3020;3750;3500;4000;2600;2600;2000;3000;4000;5900;4400;2600;2600;2600;2600;450;455;500;541;528;559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;2000;3000;4700;7000;8000;8400;7400;10500;11600;7400;6300;11600;7400;5300;10500;18900;26000;26000;33000;23000;27000;25000;29000;23100;14500;14500;14000;3100;1400;2800;32700;23600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;139;278;278;416;556;556;417;556;560;360;360;1210;900;600;700;1400;1900;2000;7600;5700;7500;7000;8100;6445;4060;4100;4000;900;410;649;6025;5489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1879;Total fibre furnish;5510;Production;t;567800;571400;572500;576300;585000;607300;615000;611600;590700;828500;866400;876400;838700;924400;1005000;1085000;1163000;1178000;1219000;1224000;1330000;1541000;1626000;1759000;1808000;1843000;1830000;1890000;1804000;1824000;1641000;755000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;53100;46000;53000;52000;56000;68000;68000;84000;78000;79000;70000;63000;78000;93000;84000;101500;74500;75000;71800;77200;74400;64800;47300;22900;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;7084;6534;8473;8889;10410;12900;12900;19500;18500;18800;16700;15350;19300;29850;26900;30100;22100;22500;21600;22000;21600;19100;36734;14084;8362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1879;Total fibre furnish;5910;Export quantity;t;;;;6000;11000;35000;20000;51100;77600;34000;40000;88000;77000;111700;109600;130700;146000;181800;151800;106300;252000;215600;235300;300600;345800;380100;357300;305200;357000;334200;217200;206300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;139;278;833;417;4723;5010;4167;4167;5430;4650;6153;5719;7335;8200;9700;8600;9540;19750;31400;35950;51629;65342;64456;61200;60300;112200;125745;79990;94463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1878;Pulp for paper;5510;Production;t;567800;571400;572500;576300;585000;607300;615000;611600;590700;604500;616400;626400;588700;603400;684000;764000;791000;801000;806000;811000;835000;1023000;1100000;1223000;1266000;1286000;1252000;1301000;1234000;1306000;1123000;755000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;53100;46000;53000;52000;56000;68000;68000;84000;78000;79000;70000;63000;78000;93000;84000;101500;74500;75000;71800;77200;74400;64800;47300;22900;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;7084;6534;8473;8889;10410;12900;12900;19500;18500;18800;16700;15350;19300;29850;26900;30100;22100;22500;21600;22000;21600;19100;36734;14084;8362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1878;Pulp for paper;5910;Export quantity;t;;;;6000;11000;35000;20000;51100;77600;34000;40000;88000;77000;77000;63000;80000;80000;76700;77300;9300;12000;64000;89200;150700;202700;235900;209300;160200;207000;184200;166500;206300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1878;Pulp for paper;5922;Export value;1000 USD;;;;139;278;833;417;4723;5010;4167;4167;5430;4650;4350;3250;4600;4600;3800;4000;2750;3450;22000;26850;42329;56756;55756;52200;40000;93000;106545;75433;94463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1875;Wood pulp;5510;Production;t;623500;631100;632400;638700;643900;668000;676900;672100;649400;664300;672900;677600;650100;666400;748000;822000;847000;857000;850000;861000;881000;1066000;1131000;1247000;1295000;1313000;1278000;1326000;1277000;1350000;1155000;768000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1875;Wood pulp;5610;Import quantity;t;20000;19000;20000;22000;22000;22000;22000;80100;68000;78000;86000;81000;93000;93000;117000;108000;110000;97000;87000;113000;93000;84000;101500;74500;75000;71800;77200;74400;64800;47300;22900;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1875;Wood pulp;5622;Import value;1000 USD;4306;3889;4167;4862;5000;5000;4862;12779;11260;13890;16667;16590;19200;19200;30000;27000;27600;24400;22150;29300;29850;26900;30100;22100;22500;21600;22000;21600;19100;36734;14084;8362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1875;Wood pulp;5910;Export quantity;t;3100;2200;2000;3000;2700;3600;2000;33100;26600;22000;18000;21000;16000;16000;7000;10000;10000;6700;7300;9300;12000;64000;89200;150700;202700;235900;209300;160200;207000;184200;166500;206300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1875;Wood pulp;5922;Export value;1000 USD;717;509;463;694;695;695;417;4723;3750;4028;3472;3620;3000;2700;1650;2600;2600;1800;2000;2750;3450;22000;26850;42329;56756;55756;52200;40000;93000;106545;75433;94463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;135000;130000;130000;140000;150000;170500;170700;166000;166000;172000;169000;166000;172000;173000;169000;164000;159000;157000;152000;150000;159000;156000;148000;90000;69000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;6800;48000;74000;80000;82000;82000;86000;91000;90000;92000;89000;90000;86000;76000;71000;83000;80000;62000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1656;Chemical wood pulp;5510;Production;t;567800;571400;572500;576300;585000;607300;615000;476600;460700;474500;476400;476400;418200;425900;470000;524000;534000;545000;556000;551000;569000;762000;842000;973000;1017000;1046000;1024000;1069000;993000;1076000;969000;686000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;53100;46000;53000;52000;56000;68000;68000;84000;78000;79000;70000;63000;78000;93000;84000;101500;74500;75000;71800;77200;74400;64800;47300;22900;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;7084;6534;8473;8889;10410;12900;12900;19500;18500;18800;16700;15350;19300;29850;26900;30100;22100;22500;21600;22000;21600;19100;36734;14084;8362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;31100;25600;20000;18000;21000;16000;16000;7000;10000;10000;6700;7300;9300;12000;64000;89200;150700;202700;235900;209300;160200;207000;184200;166500;206300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;4306;3610;3750;3472;3620;3000;2700;1650;2600;2600;1800;2000;2750;3450;22000;26850;42329;56756;55756;52200;40000;93000;106545;75433;94463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;99200;105200;103800;104300;107800;111000;112200;114600;114200;113900;114800;116100;80700;93700;127000;167000;168000;171000;161000;183000;193000;298000;355000;382000;384000;372000;363000;369000;297000;377000;358000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;27100;17000;18000;18000;19000;20000;20000;20000;18000;18000;16000;14000;17000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;3334;2224;2361;2500;3020;3300;3300;4000;3600;3600;3200;2800;3500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;2700;6100;11200;16500;15600;16000;15000;15000;15000;15000;4000;2500;33000;64000;78000;82000;96000;93000;108000;201000;257000;273000;274000;278000;270000;290000;285000;305000;308000;84000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;14000;14000;17000;17000;20000;22000;22000;32000;34000;35000;30300;27600;35000;57000;51500;77000;56100;54200;51800;56200;39600;41400;29700;18200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;1945;1946;2917;3195;3920;4350;4350;8000;8500;8800;7600;7000;9000;14650;13200;19750;14400;16260;15600;15700;11100;12000;21986;10428;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;4000;6000;3000;3000;3000;3000;3000;2000;7000;7000;4700;5100;5100;8000;64000;89200;150700;202700;235900;209300;160200;102000;95200;68700;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;417;694;555;555;450;450;450;450;1750;1750;1200;1300;1300;2050;22000;26850;42329;56756;55756;52200;40000;27000;49918;31033;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;345500;347100;349200;347900;346700;353700;357000;215300;206000;212300;207900;200400;174600;169700;167000;160000;160000;161000;157000;132000;132000;139000;136000;136000;134000;128000;130000;130000;144000;144000;78000;252000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;5000;8000;4000;3000;2000;4000;4000;10000;3000;3000;2700;2400;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;695;1112;555;555;300;600;600;2000;600;600;600;550;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;11100;7000;7000;6000;9000;9000;9000;4000;3000;3000;2000;2200;4200;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;1528;972;1250;1111;1510;1510;1510;900;850;850;600;700;1450;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;123100;119100;116800;118000;119300;126100;130200;130700;125500;133300;138700;144900;158900;160000;143000;133000;128000;131000;142000;143000;136000;124000;94000;182000;225000;268000;261000;280000;267000;250000;225000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;7000;7000;14000;14000;15000;22000;22000;22000;23000;23000;21000;19000;23000;36000;32500;24500;18400;20800;20000;21000;34800;23400;17600;4700;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1110;1252;2640;2639;3170;4650;4650;5500;5800;5800;5300;5000;6100;15200;13700;10350;7700;6240;6000;6300;10500;7100;14748;3656;8362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;16000;12600;10000;9000;9000;4000;4000;1000;;;;;;;;;;;;;;105000;89000;97800;206300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;2361;1944;1945;1806;1660;1040;740;300;;;;;;;;;;;;;;66000;56627;44400;94463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1667;Dissolving wood pulp;5510;Production;t;55700;59700;59900;62400;58900;60700;61900;60500;58700;59800;56500;51200;61400;63000;64000;58000;61000;61000;46000;52000;48000;45000;33000;26000;31000;29000;28000;27000;45000;46000;34000;13000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1667;Dissolving wood pulp;5610;Import quantity;t;20000;19000;20000;22000;22000;22000;22000;27000;22000;25000;34000;25000;25000;25000;33000;30000;31000;27000;24000;35000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1667;Dissolving wood pulp;5622;Import value;1000 USD;4306;3889;4167;4862;5000;5000;4862;5695;4726;5417;7778;6180;6300;6300;10500;8500;8800;7700;6800;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1667;Dissolving wood pulp;5910;Export quantity;t;3100;2200;2000;3000;2700;3600;2000;2000;1000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1667;Dissolving wood pulp;5922;Export value;1000 USD;717;509;463;694;695;695;417;417;140;278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;5000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6000;11000;35000;20000;20000;52000;14000;22000;67000;61000;61000;56000;70000;70000;70000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;139;278;833;417;417;1400;417;695;1810;1650;1650;1600;2000;2000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1669;Recovered paper;5510;Production;t;;;;;;;;;;224000;250000;250000;250000;321000;321000;321000;372000;377000;413000;413000;495000;518000;526000;536000;542000;557000;578000;589000;570000;518000;518000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;34700;46600;50700;66000;105100;74500;97000;240000;151600;146100;149900;143100;144200;148000;145000;150000;150000;50700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;1803;2469;2735;3600;5900;4600;6790;16300;9400;9100;9300;8586;8700;9000;20300;19200;19200;4557;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1876;Paper and paperboard;5510;Production;t;631700;656000;659500;678600;701500;729900;777400;801300;823500;846900;866800;898200;922700;944600;1041000;1115000;1140000;1145000;556600;1185000;1201000;1228000;1231000;1237000;1258000;1255000;1272000;1266000;1305000;1300000;1087000;688000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1876;Paper and paperboard;5610;Import quantity;t;11200;16000;16800;8900;19700;61000;94700;96300;102600;129000;120700;130000;132000;76000;142000;138000;139000;138000;138000;138000;91000;86300;47400;49600;78800;67800;76400;101800;149500;121700;73500;63200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1876;Paper and paperboard;5622;Import value;1000 USD;3541;4444;3167;3542;5001;11807;15696;18613;19740;22362;24724;28500;28950;23000;42500;42700;45000;52800;53400;54200;36000;35900;21400;24300;42036;37600;42500;59200;105300;72546;65320;54878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1876;Paper and paperboard;5910;Export quantity;t;63200;56800;69700;66300;82800;90300;92400;97400;98500;112500;116000;119300;114800;102000;137000;149000;186000;295800;213100;231300;227000;285200;198100;174800;175700;176400;130400;156500;174900;126400;305800;260600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1876;Paper and paperboard;5922;Export value;1000 USD;15418;13334;14446;15140;16668;17640;17500;18057;17030;20975;23198;24870;26400;25000;41000;48200;62200;117400;86200;94500;95900;132000;96200;94120;103446;106536;103936;121900;137400;94545;160271;136502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;2042;Graphic papers;5510;Production;t;164200;169900;170400;189100;214200;233800;252400;259300;252500;257900;262800;275200;241700;230600;229000;240000;247000;248000;237000;239000;240000;240000;241000;227000;225000;221000;208000;221000;234000;227000;131000;124000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;2042;Graphic papers;5610;Import quantity;t;500;1000;3800;1000;700;6000;13000;26000;28600;35000;31700;32000;33000;26000;38000;38000;39000;28000;28000;28000;22000;16300;15800;15600;17200;20600;23600;27500;26900;56000;47900;37600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;2042;Graphic papers;5622;Import value;1000 USD;69;139;417;208;278;1806;3612;6390;6115;5278;7361;8290;8400;8000;10000;10700;12000;8700;8900;9100;7000;5900;5600;5600;6308;7600;8500;11200;11300;14856;41223;30781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;2042;Graphic papers;5910;Export quantity;t;32200;27800;38700;41300;60800;75200;77000;78700;75600;79700;85000;94300;85800;77000;65000;71000;86100;72000;41000;41000;38000;34900;15600;8500;6600;4900;2800;14500;12200;33400;94700;49500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;2042;Graphic papers;5922;Export value;1000 USD;7084;5833;6945;7084;10001;12362;12223;12501;10920;13335;15557;17340;17250;17000;15000;17200;21100;17900;10200;11500;12500;11600;5000;2620;1986;1536;936;6900;6100;17002;57470;33701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1671;Newsprint;5510;Production;t;37600;39900;42000;59500;77800;86500;94500;98600;94300;81400;77700;80500;76700;79800;77000;78000;79000;74000;74000;71000;76000;79000;68000;72000;72000;68000;65000;74000;74000;75000;27000;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1671;Newsprint;5610;Import quantity;t;500;1000;3800;500;;;1000;3000;6600;9000;6700;5000;6000;6000;8000;8000;9000;8000;8000;8000;9000;9000;9600;9200;9000;10600;14700;8100;5700;35000;15800;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1671;Newsprint;5622;Import value;1000 USD;69;139;417;69;;;139;417;835;1111;1250;750;900;1000;1500;1700;2000;2000;2100;2200;2500;2700;2900;2800;2700;3200;4500;2500;1800;5559;8992;4835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1671;Newsprint;5910;Export quantity;t;5200;5800;13700;20300;34800;42200;45000;45700;43600;40700;33000;38300;25800;17000;17000;17000;17000;17000;10000;7000;12000;11900;9400;7600;6500;4800;2700;600;;14000;1500;5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1671;Newsprint;5922;Export value;1000 USD;695;833;1806;2639;4584;5556;5556;5556;4520;5140;4723;5130;3750;3000;3000;3200;3200;3400;2000;2000;3500;3500;2800;2300;1950;1500;900;200;;4700;633;2441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1674;Printing and writing papers;5510;Production;t;126600;130000;128400;129600;136400;147300;157900;160700;158200;176500;185100;194700;165000;150800;152000;162000;168000;174000;163000;168000;164000;161000;173000;155000;153000;153000;143000;147000;160000;152000;104000;75000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1674;Printing and writing papers;5610;Import quantity;t;;;;500;700;6000;12000;23000;22000;26000;25000;27000;27000;20000;30000;30000;30000;20000;20000;20000;13000;7300;6200;6400;8200;10000;8900;19400;21200;21000;32100;27800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;139;278;1806;3473;5973;5280;4167;6111;7540;7500;7000;8500;9000;10000;6700;6800;6900;4500;3200;2700;2800;3608;4400;4000;8700;9500;9297;32231;25946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1674;Printing and writing papers;5910;Export quantity;t;27000;22000;25000;21000;26000;33000;32000;33000;32000;39000;52000;56000;60000;60000;48000;54000;69100;55000;31000;34000;26000;23000;6200;900;100;100;100;13900;12200;19400;93200;44300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1674;Printing and writing papers;5922;Export value;1000 USD;6389;5000;5139;4445;5417;6806;6667;6945;6400;8195;10834;12210;13500;14000;12000;14000;17900;14500;8200;9500;9000;8100;2200;320;36;36;36;6700;6100;12302;56837;31260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1675;Other paper and paperboard;5510;Production;t;467500;486100;489100;489500;487300;496100;525000;542000;571000;589000;604000;623000;681000;714000;812000;875000;893000;897000;319600;946000;961000;988000;990000;1010000;1033000;1034000;1064000;1045000;1071000;1073000;956000;564000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1675;Other paper and paperboard;5610;Import quantity;t;10700;15000;13000;7900;19000;55000;81700;70300;74000;94000;89000;98000;99000;50000;104000;100000;100000;110000;110000;110000;69000;70000;31600;34000;61600;47200;52800;74300;122600;65700;25600;25600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1675;Other paper and paperboard;5622;Import value;1000 USD;3472;4305;2750;3334;4723;10001;12084;12223;13625;17084;17363;20210;20550;15000;32500;32000;33000;44100;44500;45100;29000;30000;15800;18700;35728;30000;34000;48000;94000;57690;24097;24097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1675;Other paper and paperboard;5910;Export quantity;t;31000;29000;31000;25000;22000;15100;15400;18700;22900;32800;31000;25000;29000;25000;72000;78000;99900;223800;172100;190300;189000;250300;182500;166300;169100;171500;127600;142000;162700;93000;211100;211100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1675;Other paper and paperboard;5922;Export value;1000 USD;8334;7501;7501;8056;6667;5278;5277;5556;6110;7640;7641;7530;9150;8000;26000;31000;41100;99500;76000;83000;83400;120400;91200;91500;101460;105000;103000;115000;131300;77543;102801;102801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1676;Household and sanitary papers;5510;Production;t;;;;;;;19700;20300;21000;18000;19000;21000;29000;16000;17000;21000;25000;33000;33000;34000;34000;35000;39000;44000;46000;48000;50000;47000;55000;53000;47000;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1676;Household and sanitary papers;5610;Import quantity;t;300;400;300;200;600;1700;2400;2000;3000;3000;4000;3000;3000;3000;3000;3000;3000;3300;3300;3300;2100;2200;900;900;1600;1200;1300;2300;2300;2300;500;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1676;Household and sanitary papers;5622;Import value;1000 USD;312;387;248;300;425;900;1088;1111;1252;1389;1667;1810;1500;1500;1500;1500;1700;2100;2110;2120;1350;1600;580;700;1337;1005;1100;2000;2000;2000;337;337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1676;Household and sanitary papers;5910;Export quantity;t;4000;3800;4000;3300;2900;2000;2000;2400;2000;2000;3000;3000;6000;5000;15000;17000;21000;36300;36300;37300;36000;37000;38000;35000;35600;36200;27000;30000;30000;30000;18200;18200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1676;Household and sanitary papers;5922;Export value;1000 USD;2917;2625;2625;2820;2333;1847;1847;1945;1944;1945;1945;2410;3300;2750;9000;11000;14000;34400;26000;28600;31000;42000;29000;29100;32268;33000;27000;30000;31000;31000;14385;14385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;390600;426300;438000;489000;511000;526000;544000;541000;592000;632000;640000;652000;65600;662000;668000;678000;692000;682000;674000;660000;683000;685000;667000;671000;598000;332000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;5400;7500;6500;4000;9500;27400;40800;35000;40000;56000;51000;33000;59000;30000;62000;59000;59000;59000;59000;59000;37000;41000;18000;19400;35200;27000;30200;42000;90300;33400;24800;24800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1563;1938;1237;1500;2125;4501;5438;5556;5978;8612;8056;5880;9600;5000;10200;9600;9800;13600;13800;14000;8800;8400;4300;5100;9744;7600;8500;12000;58000;21690;21966;21966;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;24800;23200;24800;20000;17600;12100;12300;15000;18500;24000;23000;20000;21000;18100;52100;56500;72000;172000;124000;140000;140000;195000;132000;120000;122000;123000;90000;104000;120000;50300;169100;169100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;5167;4651;4651;4995;4134;3272;3272;3472;3749;4723;4723;4670;5250;4500;15000;18000;24000;57800;44400;48600;46500;69700;52800;53000;58769;59000;58000;67000;78000;24243;79166;79166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;114700;95400;112000;82000;74000;76000;108000;157000;203000;222000;228000;212000;221000;250000;259000;275000;259000;284000;313000;326000;331000;313000;349000;349000;311000;207000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;5000;7100;6200;3700;8900;25900;38500;33300;31000;35000;34000;62000;37000;17000;39000;38000;38000;47700;47700;47700;29900;26800;12700;13700;24800;19000;21300;30000;30000;30000;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1597;1980;1265;1534;2173;4600;5558;5556;6395;7083;7640;12520;9450;8500;20800;20900;21500;28400;28590;28980;18850;20000;10920;12900;24647;21395;24400;34000;34000;34000;1794;1794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;2200;2000;2200;1700;1500;1000;1100;1300;2400;6800;5000;2000;2000;1900;4900;4500;6900;15500;11800;13000;13000;18300;12500;11300;11500;12300;10600;8000;12700;12700;23800;23800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-51;'200;Czechoslovakia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;250;225;225;241;200;159;158;139;417;972;973;450;600;750;2000;2000;3100;7300;5600;5800;5900;8700;9400;9400;10423;13000;18000;18000;22300;22300;9250;9250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110409;97196;144365;48399;39414;63326;158920
-116;'408;Democratic People's Republic of Korea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164;6370;3031;2470;1953;1828;2064
-116;'408;Democratic People's Republic of Korea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;1260;1280;815;1029;1815;1815;1815;1815;1815;1815;1815;1866;1868;1880;1882;24500;29000;29000;29000;7137;4098;2942;3517;4950;4526;4526;9550;32950;40264;46597;19517;15660;8781;8781;8781;32144;32144;32144;32144;32144;32144;28932;53494;30531;30301;31355;20317;28195;48761;37285;43522;51476;34590;71763;16769;13304;44897;93410
-116;'408;Democratic People's Republic of Korea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;220;14;10663;1151;4614;7514;9098;7245;5793;19613;29768;14892;14892;14892;6019;6019;6019;15643;10123;23742;20279;10750;14371;8838;8331;10052;8093;17554;21419;18231;13068;3631;1546;1992;1611;1483;1781
-116;'408;Democratic People's Republic of Korea;1861;Roundwood;5516;Production;m3;2867000;2923000;2983000;3040000;3107000;3180000;3266000;3355000;3435000;4274567;4326006;4361736;4400317;4436884;4455424;4476753;4485838;4487007;4494487;4508840;4525623;4541441;4557489;4573808;4590724;4662333;4712374;4797770;4901471;4962858;5082871;5232934;5355471;5455280;5587452;6145141;6506348;6856356;6929281;7002863;7061040;7119539;7178357;7237495;7296953;7334996;7373000;7410900;7448867;7486734;7526762;7546658;7576422;7606054;7635553;7669056;7702463;7735773;7768985;7802099;7836910;7871637;7906279
-116;'408;Democratic People's Republic of Korea;1861;Roundwood;5616;Import quantity;m3;;;;;;;;2000;1300;1500;1500;1500;1500;1500;1500;1500;20700;20700;20700;20700;70600;70600;70600;70600;;;;;;;;;3969;8954;1852;1221;38633;11200;11200;11200;0;0;0;0;0;0;51987;45756;25780;20644;3112;3647;8354;22582;32843;5537;2196;306;2732;0;864;773;174
-116;'408;Democratic People's Republic of Korea;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;171;119;135;135;135;135;135;135;135;186;188;200;202;8300;8300;8300;8300;;;;;;;;;1186;824;451;253;1379;535;535;535;0;0;0;0;0;0;4230;4551;2180;2193;407;451;824;2281;2975;514;379;81;493;0;248;345;45
-116;'408;Democratic People's Republic of Korea;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;400;115300;14293;76649;92198;141227;124881;83627;372000;353294;219040;219040;219040;39800;39800;39800;146100;99900;210711;162758;92476;97418;30404;13649;14350;27684;116909;142772;112083;43906;11357;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;220;14;10663;1151;4614;6125;7736;6377;5279;17565;27155;12979;12979;12979;2163;2163;2163;11787;6267;14099;11321;6135;8103;2725;1662;1650;3239;12215;16393;12885;6300;1635;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1862;Roundwood, coniferous;5516;Production;m3;1567000;1598000;1628000;1660000;1697000;1740000;1786000;1835000;1885000;2738361;2771095;2793832;2818384;2841654;2853452;2867025;2872806;2873550;2878310;2887444;2898124;2908190;2918402;2928787;2939552;2985121;3016965;3071308;3137300;3176364;3252736;3348231;3426209;3489724;3573833;4024181;4276767;4508590;4554997;4601822;4638844;4676070;4713500;4751133;4788970;4813179;4837400;4861500;4885643;4909740;4938849;4947873;4966814;4985671;5004443;5025763;5047022;5068219;5089354;5110427;5132579;5154678;5176723
-116;'408;Democratic People's Republic of Korea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;146
-116;'408;Democratic People's Republic of Korea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;43
-116;'408;Democratic People's Republic of Korea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19083;3737;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2174;419;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1863;Roundwood, non-coniferous;5516;Production;m3;1300000;1325000;1355000;1380000;1410000;1440000;1480000;1520000;1550000;1536206;1554911;1567904;1581933;1595230;1601972;1609728;1613032;1613457;1616177;1621396;1627499;1633251;1639087;1645021;1651172;1677212;1695409;1726462;1764171;1786494;1830135;1884703;1929262;1965556;2013619;2120960;2229581;2347766;2374284;2401041;2422196;2443469;2464857;2486362;2507983;2521817;2535600;2549400;2563224;2576994;2587913;2598785;2609608;2620383;2631110;2643293;2655441;2667554;2679631;2691672;2704331;2716959;2729556
-116;'408;Democratic People's Republic of Korea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191;306;2732;0;864;773;28
-116;'408;Democratic People's Republic of Korea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;81;493;0;248;345;2
-116;'408;Democratic People's Republic of Korea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24823;7620;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4126;1216;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1864;Wood fuel;5516;Production;m3;2267000;2323000;2383000;2440000;2507000;2580000;2666000;2755000;2835000;3674567;3726006;3761736;3800317;3836884;3855424;3876753;3885838;3887007;3894487;3908840;3925623;3941441;3957489;3973808;3990724;4062333;4112374;4197770;4301471;4362858;4482871;4632934;4755471;4855280;4987452;5145141;5306348;5356356;5429281;5502863;5561040;5619539;5678357;5737495;5796953;5834996;5873000;5910900;5948867;5986734;6026762;6046658;6076422;6106054;6135553;6169056;6202463;6235773;6268985;6302099;6336910;6371637;6406279
-116;'408;Democratic People's Republic of Korea;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;364;8;8;8;8;8;190;38;;;;;;28;174
-116;'408;Democratic People's Republic of Korea;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;0;0;0;0;0;13;3;;;;;;2;45
-116;'408;Democratic People's Republic of Korea;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;0;0;0;0;0;0;0;0;0;0;0;49;49;49;35;35;40;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;1;1;1;2;2;2;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1627;Wood fuel, coniferous;5516;Production;m3;1167000;1198000;1228000;1260000;1297000;1340000;1386000;1435000;1485000;2338361;2371095;2393832;2418384;2441654;2453452;2467025;2472806;2473550;2478310;2487444;2498124;2508190;2518402;2528787;2539552;2585121;2616965;2671308;2737300;2776364;2852736;2948231;3026209;3089724;3173833;3274181;3376767;3408590;3454997;3501822;3538844;3576070;3613500;3651133;3688970;3713179;3737400;3761500;3785643;3809740;3838849;3847873;3866814;3885671;3904443;3925763;3947022;3968219;3989354;4010427;4032579;4054678;4076723
-116;'408;Democratic People's Republic of Korea;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146
-116;'408;Democratic People's Republic of Korea;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43
-116;'408;Democratic People's Republic of Korea;1628;Wood fuel, non-coniferous;5516;Production;m3;1100000;1125000;1155000;1180000;1210000;1240000;1280000;1320000;1350000;1336206;1354911;1367904;1381933;1395230;1401972;1409728;1413032;1413457;1416177;1421396;1427499;1433251;1439087;1445021;1451172;1477212;1495409;1526462;1564171;1586494;1630135;1684703;1729262;1765556;1813619;1870960;1929581;1947766;1974284;2001041;2022196;2043469;2064857;2086362;2107983;2121817;2135600;2149400;2163224;2176994;2187913;2198785;2209608;2220383;2231110;2243293;2255441;2267554;2279631;2291672;2304331;2316959;2329556
-116;'408;Democratic People's Republic of Korea;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28
-116;'408;Democratic People's Republic of Korea;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-116;'408;Democratic People's Republic of Korea;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;364;8;8;8;8;8;190;38;;;;;;;
-116;'408;Democratic People's Republic of Korea;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;0;0;0;0;0;13;3;;;;;;;
-116;'408;Democratic People's Republic of Korea;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;0;0;0;0;0;0;0;0;0;0;0;49;49;49;35;35;;;;;;;
-116;'408;Democratic People's Republic of Korea;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;1;1;1;2;2;;;;;;;
-116;'408;Democratic People's Republic of Korea;1865;Industrial roundwood;5516;Production;m3;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;1000000;1200000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000;1500000
-116;'408;Democratic People's Republic of Korea;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;2000;1300;1500;1500;1500;1500;1500;1500;1500;20700;20700;20700;20700;70600;70600;70600;70600;;;;;;;;;3969;8954;1852;1221;38633;11200;11200;11200;0;0;0;0;0;0;51987;45392;25416;20636;3104;3639;8346;22574;32653;5499;2196;306;2732;0;864;745;0
-116;'408;Democratic People's Republic of Korea;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;171;119;135;135;135;135;135;135;135;186;188;200;202;8300;8300;8300;8300;;;;;;;;;1186;824;451;253;1379;535;535;535;0;0;0;0;0;0;4230;4504;2133;2193;407;451;824;2281;2962;511;379;81;493;0;248;343;0
-116;'408;Democratic People's Republic of Korea;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;400;115300;14293;76649;92198;141227;124881;83627;372000;353254;219000;219000;219000;39800;39800;39800;146100;99900;210711;162758;92476;97418;30404;13649;14301;27635;116860;142737;112048;43866;11357;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;220;14;10663;1151;4614;6125;7736;6377;5279;17565;27151;12975;12975;12975;2163;2163;2163;11787;6267;14099;11321;6135;8103;2725;1662;1649;3238;12214;16391;12883;6298;1635;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1866;Industrial roundwood, coniferous;5516;Production;m3;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;750000;900000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000;1100000
-116;'408;Democratic People's Republic of Korea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2228;8023;921;921;38367;10100;10100;10100;0;0;0;0;0;0;51987;42160;23504;18765;2510;2880;2726;19567;28391;0;5;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;521;148;148;1247;225;225;225;0;0;0;0;0;0;4230;4230;2000;1963;323;355;287;2050;2471;0;1;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13243;74215;71966;120056;119249;79526;319800;260021;177000;177000;177000;39000;39000;39000;58900;76100;163200;115149;84089;92334;28127;11372;13051;24784;104135;135915;98651;19083;3737;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010;3624;3341;5671;5884;4614;12540;15112;9216;9216;9216;1925;1925;1925;3600;4191;10368;6815;5330;7602;2492;1429;1473;2833;10384;14064;8914;2174;419;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2228;8023;921;921;38367;10100;10100;10100;0;0;0;0;0;0;51987;42160;23504;18765;2510;2880;2726;19567;28391;0;5;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;521;148;148;1247;225;225;225;0;0;0;0;0;0;4230;4230;2000;1963;323;355;287;2050;2471;0;1;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13243;74215;71966;120056;119249;79526;319800;260021;177000;177000;177000;39000;39000;39000;58900;76100;163200;115149;84089;92334;28127;11372;13051;24784;104135;135915;98651;19083;3737;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010;3624;3341;5671;5884;4614;12540;15112;9216;9216;9216;1925;1925;1925;3600;4191;10368;6815;5330;7602;2492;1429;1473;2833;10384;14064;8914;2174;419;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;250000;300000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000
-116;'408;Democratic People's Republic of Korea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741;931;931;300;266;1100;1100;1100;0;0;0;0;0;0;0;3232;1912;1871;594;759;5620;3007;4262;5499;2191;306;2732;0;864;745;0
-116;'408;Democratic People's Republic of Korea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;303;303;105;132;310;310;310;0;0;0;0;0;0;0;274;133;230;84;96;537;231;491;511;378;81;493;0;248;343;0
-116;'408;Democratic People's Republic of Korea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1050;2434;20232;21171;5632;4101;52200;93233;42000;42000;42000;800;800;800;87200;23800;47511;47609;8387;5084;2277;2277;1250;2851;12725;6822;13397;24783;7620;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;990;2784;2065;493;665;5025;12039;3759;3759;3759;238;238;238;8187;2076;3731;4506;805;501;233;233;176;405;1830;2327;3969;4124;1216;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4546;1818;3201;5451;1622;306;2732;0;864;0;0
-116;'408;Democratic People's Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;433;124;379;507;330;81;493;0;248;0;0
-116;'408;Democratic People's Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741;931;931;300;266;1100;1100;1100;0;0;0;0;0;0;0;3232;1912;1871;594;759;1074;1189;1061;48;569;0;0;0;0;745;0
-116;'408;Democratic People's Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;303;303;105;132;310;310;310;0;0;0;0;0;0;0;274;133;230;84;96;104;107;112;4;48;0;0;0;0;343;0
-116;'408;Democratic People's Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1050;2434;20232;21171;5632;4101;52200;93233;42000;42000;42000;800;800;800;87200;23800;47511;47609;8387;5084;2277;2277;1250;2851;12725;6822;13397;24783;7620;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;990;2784;2065;493;665;5025;12039;3759;3759;3759;238;238;238;8187;2076;3731;4506;805;501;233;233;176;405;1830;2327;3969;4124;1216;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1868;Sawlogs and veneer logs;5516;Production;m3;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;700000;800000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000
-116;'408;Democratic People's Republic of Korea;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;2000;1300;1500;1500;1500;1500;1500;1500;1500;20700;20700;20700;20700;70600;70600;70600;70600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;171;119;135;135;135;135;135;135;135;186;188;200;202;8300;8300;8300;8300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;400;115300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;220;14;10663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;450000;500000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000
-116;'408;Democratic People's Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;2000;1300;1500;1500;1500;1500;1500;1500;1500;20700;20700;20700;20700;70600;70600;70600;70600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;171;119;135;135;135;135;135;135;135;186;188;200;202;8300;8300;8300;8300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;400;115300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;220;14;10663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;250000;300000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000
-116;'408;Democratic People's Republic of Korea;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;400000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000
-116;'408;Democratic People's Republic of Korea;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;400000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000
-116;'408;Democratic People's Republic of Korea;1630;Wood charcoal;5510;Production;t;111293;110773;110256;109740;109227;108717;108209;107703;107199;106698;107707;108056;108647;109317;109318;108074;106437;104572;103040;101815;101040;100267;99514;98815;98180;99060;99066;100418;102415;102729;107162;112811;117431;121124;126228;131226;136444;137632;139473;141339;143019;144718;146438;148178;149939;151258;152600;153900;155286;156652;157925;159208;160502;161806;163120;164445;165781;167128;168486;169854;171173;172501;173840
-116;'408;Democratic People's Republic of Korea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;0;0;0;0;700;700;700;700;700;700;700;52;27;6;45;439;2689;668;40;42;29;29;115;117;1;20;22
-116;'408;Democratic People's Republic of Korea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;0;89;89;89;89;89;89;89;14;7;9;33;127;1031;167;30;51;39;39;250;62;7;67;54
-116;'408;Democratic People's Republic of Korea;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;82;355;647;647;647;647;647;647;647
-116;'408;Democratic People's Republic of Korea;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;105;80;117;117;117;117;117;117;117
-116;'408;Democratic People's Republic of Korea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;950;950;600;600;600;600;600;600;600;600;26;23;54;54;506;31;5513;56;50;50;50;50;50;50;50
-116;'408;Democratic People's Republic of Korea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;15;15;15;15;15;15;15;15;16;13;5;5;71;8;528;9;8;8;8;8;8;8;8
-116;'408;Democratic People's Republic of Korea;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34101;34101;34101;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20891;20561;20561;20561;20561;20561;20561;20561;20561;20561;20561;20561;20561
-116;'408;Democratic People's Republic of Korea;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;922;922;552;552;552;552;552;552;552;552;552;552;572;557;557;557;557;557;557;557;557;557;557;557;557
-116;'408;Democratic People's Republic of Korea;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40511;40511;40511;40511;950;950;950;950;0;0;0;0;0;0;0;0;9;6;6;6;6;6;6;36;36;36;36;36;36;36;36
-116;'408;Democratic People's Republic of Korea;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;1979;1979;1979;32;32;32;32;0;0;0;0;0;0;0;0;6;3;3;3;3;3;3;6;6;6;6;6;6;6;6
-116;'408;Democratic People's Republic of Korea;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;397;397;397;0;0;0;0;0;0;0;0;0;0;491;161;161;161;161;161;161;161;161;161;161;161;161
-116;'408;Democratic People's Republic of Korea;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;0;0;0;0;0;0;0;0;0;0;20;5;5;5;5;5;5;5;5;5;5;5;5
-116;'408;Democratic People's Republic of Korea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;600;600;600;600;600;600;600;600;17;17;48;48;500;25;5507;20;14;14;14;14;14;14;14
-116;'408;Democratic People's Republic of Korea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;15;15;15;15;15;15;15;10;10;2;2;68;5;525;3;2;2;2;2;2;2;2
-116;'408;Democratic People's Republic of Korea;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15891;33200;33704;33704;33704;33704;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400
-116;'408;Democratic People's Republic of Korea;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;963;907;907;907;907;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552;552
-116;'408;Democratic People's Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;0;5507;3761;3761;3761;3761;3761;3761;3761;3761
-116;'408;Democratic People's Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;67;0;525;337;337;337;337;337;337;337;337
-116;'408;Democratic People's Republic of Korea;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;0;5507;3761;3761;3761;3761;3761;3761;3761;3761
-116;'408;Democratic People's Republic of Korea;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;67;0;525;337;337;337;337;337;337;337;337
-116;'408;Democratic People's Republic of Korea;1872;Sawnwood;5516;Production;m3;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;279325;279325;279325;279325
-116;'408;Democratic People's Republic of Korea;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;1731;2682;2315;2500;4338;1200;1200;1200;500;500;500;500;500;500;500;795;733;218;2005;1434;415;2627;3530;362;1193;1440;1961;4086;1254;1502;0
-116;'408;Democratic People's Republic of Korea;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;607;871;824;505;1668;307;307;307;286;286;286;286;286;286;286;963;454;166;459;455;266;766;754;194;315;623;1245;789;413;320;0
-116;'408;Democratic People's Republic of Korea;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;640;2371;1471;11000;11837;5100;5100;5100;21800;21800;21800;21800;21800;61178;58668;3525;862;2883;13643;17620;13381;6920;4904;6723;20641;2996;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;69;260;154;916;1084;551;551;551;1907;1907;1907;1907;1907;7694;7009;1075;234;502;2350;2850;2019;1997;1835;1923;3208;309;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1632;Sawnwood, coniferous;5516;Production;m3;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;184325;184325;184325;184325
-116;'408;Democratic People's Republic of Korea;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;706;755;1071;2000;1612;1000;1000;1000;200;200;200;200;200;200;200;109;555;92;1962;273;135;1908;3395;9;891;171;0;337;0;0;0
-116;'408;Democratic People's Republic of Korea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;157;377;212;273;356;238;238;238;45;45;45;45;45;45;45;134;239;32;358;205;112;498;643;2;154;29;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;364;2197;775;9500;9679;4100;4100;4100;21100;21100;21100;21100;21100;18562;19790;603;367;2141;9614;12553;11014;5955;4465;6344;19476;1859;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;38;180;76;616;848;338;338;338;1678;1678;1678;1678;1678;1752;2053;276;78;326;1561;1921;1530;1774;1444;1632;2697;244;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1633;Sawnwood, non-coniferous;5516;Production;m3;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000
-116;'408;Democratic People's Republic of Korea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;1025;1927;1244;500;2726;200;200;200;300;300;300;300;300;300;300;686;178;126;43;1161;280;719;135;353;302;1269;1961;3749;1254;1502;0
-116;'408;Democratic People's Republic of Korea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;450;494;612;232;1312;69;69;69;241;241;241;241;241;241;241;829;215;134;101;250;154;268;111;192;161;594;1245;789;413;320;0
-116;'408;Democratic People's Republic of Korea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;276;174;696;1500;2158;1000;1000;1000;700;700;700;700;700;42616;38878;2922;495;742;4029;5067;2367;965;439;379;1165;1137;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;31;80;78;300;236;213;213;213;229;229;229;229;229;5942;4956;799;156;176;789;929;489;223;391;291;511;65;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;1775;1775;1775;1775
-116;'408;Democratic People's Republic of Korea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;796;48;419;200;1055;100;100;100;300;300;300;300;300;300;300;3610;23;9;46;230;230;247;75;20;16;78;381;506;309;360;575
-116;'408;Democratic People's Republic of Korea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;446;160;152;154;380;46;46;46;92;92;92;92;92;92;92;1946;20;8;66;170;3;40;38;24;33;125;365;403;228;458;1812
-116;'408;Democratic People's Republic of Korea;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;19;19;0;23;0;0;0;100;100;100;100;100;100;100;150;11;77;89;0;62;56;144;0;2;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;4;4;0;3;0;0;0;23;23;23;23;23;23;23;12;2;12;30;0;8;10;15;0;1;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2447;7876;2142;7071;7649;9032;1300;1300;1300;8800;8800;8800;8800;8800;8800;9300;4229;2682;7543;10675;12251;13849;17078;17795;18789;35433;23650;51757;8001;8286;24881;78270
-116;'408;Democratic People's Republic of Korea;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;4134;1055;2090;2917;2688;357;357;357;1445;1445;1445;1445;1445;1445;1809;2035;1828;2925;4157;4996;5637;9816;9937;8833;17672;10822;19908;2734;2863;12552;53220
-116;'408;Democratic People's Republic of Korea;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;8;0;0;0;0;0;0;0;0;0;0;165;551;178;100;85;83;82;71;75;61;56;50;76;5;5;50
-116;'408;Democratic People's Republic of Korea;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;2;0;0;0;0;0;0;0;0;0;0;106;284;69;24;53;197;41;52;53;35;32;31;32;4;7;31
-116;'408;Democratic People's Republic of Korea;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365;7303;1642;4789;5400;2316;1100;1100;1100;3000;3000;3000;3000;3000;3000;3000;1053;1073;5985;8747;10249;10467;11784;11801;14663;27711;22995;30693;3056;3273;10757;45108
-116;'408;Democratic People's Republic of Korea;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;4053;856;1663;2498;812;307;307;307;824;824;824;824;824;824;824;929;1289;2166;3332;4102;4054;7314;7134;6841;13174;10286;10908;1230;1386;6887;40247
-116;'408;Democratic People's Republic of Korea;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;386;173;95;32;30;30;19;23;5;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;178;55;10;9;153;1;12;13;3;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052;539;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;59;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;4472;200;200;200;200;200;200;200;200;200;200;584;740;2;11;40;8;3;29;19;31;31;1228;2590;1295;182;3702
-116;'408;Democratic People's Republic of Korea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;1470;50;50;50;50;50;50;50;50;50;50;284;163;1;11;31;11;3;17;6;10;10;430;342;153;99;1984
-116;'408;Democratic People's Republic of Korea;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;0;0;0;0;0;0;0;0;0;0;163;163;3;3;3;3;2;2;2;6;6;0;26;0;0;0
-116;'408;Democratic People's Republic of Korea;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;0;0;0;0;0;105;105;13;13;13;13;9;9;9;1;1;0;1;0;3;0
-116;'408;Democratic People's Republic of Korea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;231;52;36;120;129;95;145;262;262;658;17;17;48;48
-116;'408;Democratic People's Republic of Korea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;61;22;17;41;39;39;56;81;81;276;3;3;21;21
-116;'408;Democratic People's Republic of Korea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;34;494;2249;2249;2244;0;0;0;5600;5600;5600;5600;5600;5600;6100;2592;854;1325;1865;1926;3254;5162;5870;3962;7429;362;19178;2338;3701;13894;29412
-116;'408;Democratic People's Republic of Korea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;22;196;419;419;406;0;0;0;571;571;571;571;571;571;935;822;372;697;792;846;1531;2460;2747;1930;4407;445;8294;1159;1321;5545;10968
-116;'408;Democratic People's Republic of Korea;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;2;2;2;2;50;50;50;50;50;50;50;50;50;5;5;50
-116;'408;Democratic People's Republic of Korea;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;;;;;;;;;;;1;1;1;1;31;31;31;31;31;31;31;31;31;4;4;31
-116;'408;Democratic People's Republic of Korea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;0;100;100;100;100;100;100;100;11;67;166;39;80;156;35;35;49;299;299;151;151;198;391;476
-116;'408;Democratic People's Republic of Korea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;58;58;58;58;58;58;58;6;99;246;74;50;72;21;21;12;315;315;92;92;264;316;380
-116;'408;Democratic People's Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;79;0;0;0;5500;5500;5500;5500;5500;5500;6000;2581;783;1150;1815;1820;3078;5101;5819;3907;7125;58;18967;2182;3498;13480;28367
-116;'408;Democratic People's Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;58;0;0;0;513;513;513;513;513;513;877;816;270;439;706;781;1449;2406;2714;1904;4087;125;8175;1062;1052;5226;10328
-116;'408;Democratic People's Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;50;50;50;50;50;50;50;50;50;5;5;50
-116;'408;Democratic People's Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;31;31;31;31;31;31;31;31;31;4;4;31
-116;'408;Democratic People's Republic of Korea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;21;2152;2152;2152;0;0;0;0;0;0;0;0;0;0;0;4;9;11;26;20;26;16;6;5;5;60;5;5;23;569
-116;'408;Democratic People's Republic of Korea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;8;338;338;338;0;0;0;0;0;0;0;0;0;0;0;3;12;12;15;10;33;12;14;5;5;27;5;5;3;260
-116;'408;Democratic People's Republic of Korea;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;29;473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;15;188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-116;'408;Democratic People's Republic of Korea;1879;Total fibre furnish;5510;Production;t;3000;3000;3000;15000;20000;25000;30000;30000;35000;40000;40000;45000;45000;45000;68000;89000;93000;97000;101000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000
-116;'408;Democratic People's Republic of Korea;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301;43491;59339;52316;24629;13749;12300;12300;12300;47000;47000;47000;47000;47000;47000;36523;61210;20507;5649;4329;2072;8351;5330;5716;2839;2352;2340;19355;1869;1861;2464;6164
-116;'408;Democratic People's Republic of Korea;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;13212;26408;38511;10404;4980;3903;3903;3903;13248;13248;13248;13248;13248;13248;13600;25440;6866;3343;3517;1082;4787;2360;2554;1474;1107;1094;11959;1123;1197;2328;5394
-116;'408;Democratic People's Republic of Korea;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;387;100;100;100;400;400;400;400;400;400;400;844;808;2091;625;862;451;544;521;644;974;974;599;978;741;601;1363
-116;'408;Democratic People's Republic of Korea;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;97;37;37;37;74;74;74;74;74;74;74;169;178;1766;353;403;329;337;334;336;402;402;339;432;373;341;585
-116;'408;Democratic People's Republic of Korea;1878;Pulp for paper;5510;Production;t;3000;3000;3000;15000;20000;25000;30000;30000;35000;40000;40000;45000;45000;45000;68000;89000;93000;97000;101000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000
-116;'408;Democratic People's Republic of Korea;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;42849;55765;51616;24029;11909;11500;11500;11500;45000;45000;45000;45000;45000;45000;35000;37995;17332;3795;3672;1424;8287;3231;3617;2789;2345;2333;19073;664;598;2163;5756
-116;'408;Democratic People's Republic of Korea;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;13099;24861;38407;10345;4763;3869;3869;3869;13031;13031;13031;13031;13031;13031;13381;20299;6355;3002;3336;976;4770;1658;1852;1458;1106;1093;11891;696;600;2163;5162
-116;'408;Democratic People's Republic of Korea;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;387;100;100;100;400;400;400;400;400;400;400;130;94;2046;468;610;433;433;433;550;559;559;559;559;559;559;559
-116;'408;Democratic People's Republic of Korea;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;97;37;37;37;74;74;74;74;74;74;74;32;41;1762;332;374;321;321;321;325;328;328;328;328;328;328;328
-116;'408;Democratic People's Republic of Korea;1875;Wood pulp;5510;Production;t;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;18000;39000;43000;47000;51000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000
-116;'408;Democratic People's Republic of Korea;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918;43026;56217;51571;23984;12085;11500;11500;11500;44800;44800;44800;44800;44800;44800;34800;37463;17198;3288;3322;1583;8318;3785;3805;2819;2317;2305;18405;694;628;2193;4898
-116;'408;Democratic People's Republic of Korea;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;12945;24837;38331;10269;4886;3869;3869;3869;12882;12882;12882;12882;12882;12882;13232;19535;6201;2103;2083;1134;4824;2120;2003;1481;1095;1082;11369;719;623;2186;3821
-116;'408;Democratic People's Republic of Korea;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;0;0;0;0;0;0;0;0;0;0;0;0;62;1904;419;419;419;419;419;536;536;536;536;536;536;536;536
-116;'408;Democratic People's Republic of Korea;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;1723;317;317;317;317;317;321;321;321;321;321;321;321;321
-116;'408;Democratic People's Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;13000;13000;13000;13000
-116;'408;Democratic People's Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;153;21;21;522;2672
-116;'408;Democratic People's Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;244;28;28;411;1670
-116;'408;Democratic People's Republic of Korea;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;8000;9000;10000;11000;12000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;;;;;;;
-116;'408;Democratic People's Republic of Korea;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;485;1722;1722;1722;1722;0;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;7;30;33;;;;;;;
-116;'408;Democratic People's Republic of Korea;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;133;572;572;572;572;0;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;8;36;42;;;;;;;
-116;'408;Democratic People's Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;386;386;386;386;0;0;0;0;0;0;0;0;0;0;0;100;100;100;100;100;0;0;0;;;;;;;
-116;'408;Democratic People's Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;164;164;164;164;0;0;0;0;0;0;0;0;0;0;0;36;36;36;36;36;0;0;0;;;;;;;
-116;'408;Democratic People's Republic of Korea;1656;Chemical wood pulp;5510;Production;t;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;10000;30000;33000;36000;39000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000
-116;'408;Democratic People's Republic of Korea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;41343;52931;49287;21700;9801;11500;11500;11500;44700;44700;44700;44700;44700;44700;34700;37363;16980;2945;2983;1146;7947;3167;3555;2716;2266;2266;18213;634;568;1632;2187
-116;'408;Democratic People's Republic of Korea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;12286;23617;37472;9410;4027;3869;3869;3869;12859;12859;12859;12859;12859;12859;13209;19512;6129;1897;1854;860;4605;1597;1795;1381;1045;1045;11088;654;558;1738;2114
-116;'408;Democratic People's Republic of Korea;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;1904;419;419;419;419;419;536;536;536;536;536;536;536;536
-116;'408;Democratic People's Republic of Korea;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;1723;317;317;317;317;317;321;321;321;321;321;321;321;321
-116;'408;Democratic People's Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878;364;0;0;426;0;0;0;200;200;200;200;200;200;200;13900;5279;261;441;294;1174;1174;1174;1174;1174;1174;7;60;60;60;13
-116;'408;Democratic People's Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609;126;0;0;205;0;0;0;91;91;91;91;91;91;91;5804;1554;113;206;96;344;344;344;344;344;344;11;44;39;39;16
-116;'408;Democratic People's Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602;38898;52567;49287;21700;9375;11500;11500;11500;44000;44000;44000;44000;44000;44000;34000;23350;11609;2295;1914;487;6408;1628;2016;1177;1092;1092;18206;574;508;1534;2114
-116;'408;Democratic People's Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;11390;23491;37472;9410;3822;3869;3869;3869;12650;12650;12650;12650;12650;12650;13000;13637;4512;1561;1216;538;4035;1027;1225;811;701;701;11077;610;519;1659;1998
-116;'408;Democratic People's Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;1904;419;419;419;419;419;536;536;536;536;536;536;536;536
-116;'408;Democratic People's Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;1723;317;317;317;317;317;321;321;321;321;321;321;321;321
-116;'408;Democratic People's Republic of Korea;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;43000
-116;'408;Democratic People's Republic of Korea;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;60
-116;'408;Democratic People's Republic of Korea;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;100
-116;'408;Democratic People's Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;;;;;;;
-116;'408;Democratic People's Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;0;0;0;0;0;0;0;500;500;500;500;500;500;500;85;85;290;290;290;290;290;290;290;;;;;;;
-116;'408;Democratic People's Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;0;0;0;0;0;118;118;118;118;118;118;118;51;51;168;168;168;168;168;168;168;;;;;;;
-116;'408;Democratic People's Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;263;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;7;99;338;75;75;75;75;75;;;;;;;
-116;'408;Democratic People's Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;136;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;12;55;264;58;58;58;58;58;;;;;;;
-116;'408;Democratic People's Republic of Korea;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;1178;176;176;176;0;0;0;0;0;0;0;0;0;0;0;18;143;139;237;171;611;220;70;39;39;39;39;39;39;39
-116;'408;Democratic People's Republic of Korea;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;484;123;123;123;0;0;0;0;0;0;0;0;0;0;0;13;147;170;215;160;515;172;58;37;37;37;37;37;37;37
-116;'408;Democratic People's Republic of Korea;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1668;Pulp from fibres other than wood;5510;Production;t;3000;3000;3000;5000;10000;15000;20000;20000;25000;30000;30000;35000;35000;35000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-116;'408;Democratic People's Republic of Korea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;635;726;221;221;0;0;0;0;200;200;200;200;200;200;200;532;152;650;489;78;140;57;32;40;67;67;707;9;9;9;897
-116;'408;Democratic People's Republic of Korea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;516;508;199;199;0;0;0;0;149;149;149;149;149;149;149;764;167;1046;1423;57;106;53;21;35;48;48;559;14;14;14;1378
-116;'408;Democratic People's Republic of Korea;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;387;100;100;100;400;400;400;400;400;400;400;130;32;142;49;191;14;14;14;14;23;23;23;23;23;23;23
-116;'408;Democratic People's Republic of Korea;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;97;37;37;37;74;74;74;74;74;74;74;32;9;39;15;57;4;4;4;4;7;7;7;7;7;7;7
-116;'408;Democratic People's Republic of Korea;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;320;320;320;320;320;320;320;320;320;320;320;320;320;255
-116;'408;Democratic People's Republic of Korea;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;42;42;42;42;42;42;42;42;42;42;42;42;42;64
-116;'408;Democratic People's Republic of Korea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;642;3574;700;600;1840;800;800;800;2000;2000;2000;2000;2000;2000;1523;23215;3175;1854;657;648;64;2099;2099;50;7;7;282;1205;1263;301;408
-116;'408;Democratic People's Republic of Korea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;113;1547;104;59;217;34;34;34;217;217;217;217;217;217;219;5141;511;341;181;106;17;702;702;16;1;1;68;427;597;165;232
-116;'408;Democratic People's Republic of Korea;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;714;45;157;252;18;111;88;94;415;415;40;419;182;42;804
-116;'408;Democratic People's Republic of Korea;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;4;21;29;8;16;13;11;74;74;11;104;45;13;257
-116;'408;Democratic People's Republic of Korea;1876;Paper and paperboard;5510;Production;t;60000;60000;60000;60000;60000;60000;65000;70000;75000;75000;75000;80000;80000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-116;'408;Democratic People's Republic of Korea;1876;Paper and paperboard;5610;Import quantity;t;;;;;;6300;6400;2800;4200;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;22800;30500;30500;30500;14600;6700;3300;3200;5900;6700;6700;10871;18380;14319;2558;2902;4360;4600;4600;4600;24500;24500;24500;24500;24500;24500;12800;14149;12946;15046;21741;13819;14619;26723;21273;31000;32426;20493;33356;9506;5799;22878;27122
-116;'408;Democratic People's Republic of Korea;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;1260;1280;644;910;1680;1680;1680;1680;1680;1680;1680;1680;1680;1680;1680;16200;20700;20700;20700;7137;4098;2942;3517;4950;4526;4526;7641;11024;8471;2455;3170;4410;3601;3601;3601;16969;16969;16969;16969;16969;16969;8811;18524;19141;21455;22499;12774;15307;32766;19730;31986;31507;21382;37119;11234;7924;28403;32439
-116;'408;Democratic People's Republic of Korea;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465;2049;709;301;200;826;550;550;550;2050;2050;2050;2050;2050;2050;2050;2389;5807;3718;3927;5785;2019;2660;2579;2671;2630;681;605;1118;667;394;562
-116;'408;Democratic People's Republic of Korea;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178;1123;516;134;162;505;403;403;403;1300;1300;1300;1300;1300;1300;1300;2701;5018;3212;3340;4539;1744;2397;2128;2397;2448;579;502;854;560;461;491
-116;'408;Democratic People's Republic of Korea;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;1000;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;9600;12800;12800;12800;6700;4000;1300;1200;1400;1700;1700;5883;4936;9944;1419;1902;2982;3300;3300;3300;22300;22300;22300;22300;22300;22300;10600;6252;6179;8012;14784;8310;9428;13300;15045;19210;18502;9822;19302;5057;4236;15891;19099
-116;'408;Democratic People's Republic of Korea;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;274;745;745;745;745;745;745;745;745;745;745;745;6600;8600;8600;8600;3887;2141;1282;1284;1597;1599;1599;4358;3020;5792;1438;2314;2918;2187;2187;2187;15761;15761;15761;15761;15761;15761;7603;5058;5136;6649;13329;7870;9471;13515;13105;15768;16508;8951;18759;4720;4785;17044;20923
-116;'408;Democratic People's Republic of Korea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;2007;485;201;100;71;0;0;0;1800;1800;1800;1800;1800;1800;1800;1960;4813;3435;3678;4225;1444;1388;1435;1534;1007;306;455;755;556;299;383
-116;'408;Democratic People's Republic of Korea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;1103;380;61;89;61;0;0;0;1154;1154;1154;1154;1154;1154;1154;1661;3935;2851;3016;3187;945;966;1025;1129;822;226;338;515;456;372;370
-116;'408;Democratic People's Republic of Korea;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;3700;4900;4900;4900;3200;2700;300;200;200;200;200;650;1101;2966;1002;1002;804;400;400;400;5400;5400;5400;5400;5400;5400;1800;663;246;125;1112;166;115;421;4246;4774;2255;2255;4185;722;1360;1371;1797
-116;'408;Democratic People's Republic of Korea;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;160;160;160;160;160;160;160;160;160;160;160;1800;2400;2400;2400;1137;875;186;120;153;153;153;375;597;1379;884;884;549;148;148;148;3423;3423;3423;3423;3423;3423;1100;408;173;91;440;128;85;366;3046;3216;1630;1630;3464;536;1029;1434;2115
-116;'408;Democratic People's Republic of Korea;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;1200;1200;1200;1200;1200;1200;1200;422;2314;1690;2357;2357;842;902;856;852;249;249;249;249;373;51;155
-116;'408;Democratic People's Republic of Korea;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;672;672;672;672;672;672;672;264;1636;1159;1652;1652;511;640;509;477;135;135;135;135;292;57;148
-116;'408;Democratic People's Republic of Korea;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;1000;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;5900;7900;7900;7900;3500;1300;1000;1000;1200;1500;1500;5233;3835;6978;417;900;2178;2900;2900;2900;16900;16900;16900;16900;16900;16900;8800;5589;5933;7887;13672;8144;9313;12879;10799;14436;16247;7567;15117;4335;2876;14520;17302
-116;'408;Democratic People's Republic of Korea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;274;585;585;585;585;585;585;585;585;585;585;585;4800;6200;6200;6200;2750;1266;1096;1164;1444;1446;1446;3983;2423;4413;554;1430;2369;2039;2039;2039;12338;12338;12338;12338;12338;12338;6503;4650;4963;6558;12889;7742;9386;13149;10059;12552;14878;7321;15295;4184;3756;15610;18808
-116;'408;Democratic People's Republic of Korea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;2007;481;201;100;71;;;;600;600;600;600;600;600;600;1538;2499;1745;1321;1868;602;486;579;682;758;57;206;506;183;248;228
-116;'408;Democratic People's Republic of Korea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;1103;378;61;89;61;;;;482;482;482;482;482;482;482;1397;2299;1692;1364;1535;434;326;516;652;687;91;203;380;164;315;222
-116;'408;Democratic People's Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;194;121;247;404;318;1664;4828;392;390;390;162;513;1191;1433;965
-116;'408;Democratic People's Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;152;86;232;380;331;1451;3771;393;388;388;246;389;923;1352;1318
-116;'408;Democratic People's Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;2;172;172;172;393;393;20;20;0;25;0;0;16
-116;'408;Democratic People's Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;8;4;4;4;348;348;19;19;1;0;1;1;26
-116;'408;Democratic People's Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2540;2540;2540;14800;14800;14800;14800;14800;14800;6700;3856;3548;5092;10460;3418;4316;5229;858;9263;8681;1;8334;2141;155;6886;7537
-116;'408;Democratic People's Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1774;1774;1774;10735;10735;10735;10735;10735;10735;4900;3019;2762;3786;9570;2986;4013;5156;849;7537;7559;2;8346;2201;230;7432;7949
-116;'408;Democratic People's Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;86;69;22;32;106;63;16;42;225;31;95;0;83;152;191
-116;'408;Democratic People's Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;142;144;45;172;116;75;17;62;256;59;88;0;50;201;173
-116;'408;Democratic People's Republic of Korea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;360;360;2100;2100;2100;2100;2100;2100;2100;1481;2191;2674;2965;4322;4679;5986;5113;4781;7176;7176;6621;1681;1530;6201;8800
-116;'408;Democratic People's Republic of Korea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;265;265;1603;1603;1603;1603;1603;1603;1603;1445;2049;2686;3087;4376;5042;6542;5439;4622;6931;6931;6703;1594;2603;6826;9541
-116;'408;Democratic People's Republic of Korea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;1453;2340;1603;1297;1664;324;251;170;247;513;6;111;481;100;96;21
-116;'408;Democratic People's Republic of Korea;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;482;482;482;482;482;482;1316;2101;1492;1311;1359;314;247;151;242;412;13;114;380;113;113;23
-116;'408;Democratic People's Republic of Korea;1675;Other paper and paperboard;5510;Production;t;60000;60000;60000;60000;60000;60000;65000;70000;75000;75000;75000;80000;80000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-116;'408;Democratic People's Republic of Korea;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;6300;6400;2800;3200;4700;4700;4700;4700;4700;4700;4700;4700;4700;4700;4700;13200;17700;17700;17700;7900;2700;2000;2000;4500;5000;5000;4988;13444;4375;1139;1000;1378;1300;1300;1300;2200;2200;2200;2200;2200;2200;2200;7897;6767;7034;6957;5509;5191;13423;6228;11790;13924;10671;14054;4449;1563;6987;8023
-116;'408;Democratic People's Republic of Korea;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;1260;1280;644;636;935;935;935;935;935;935;935;935;935;935;935;9600;12100;12100;12100;3250;1957;1660;2233;3353;2927;2927;3283;8004;2679;1017;856;1492;1414;1414;1414;1208;1208;1208;1208;1208;1208;1208;13466;14005;14806;9170;4904;5836;19251;6625;16218;14999;12431;18360;6514;3139;11359;11516
-116;'408;Democratic People's Republic of Korea;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;42;224;100;100;755;550;550;550;250;250;250;250;250;250;250;429;994;283;249;1560;575;1272;1144;1137;1623;375;150;363;111;95;179
-116;'408;Democratic People's Republic of Korea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;20;136;73;73;444;403;403;403;146;146;146;146;146;146;146;1040;1083;361;324;1352;799;1431;1103;1268;1626;353;164;339;104;89;121
-116;'408;Democratic People's Republic of Korea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;59;49;67;71;68;88;128;60;220;220;184;81;20;198;164
-116;'408;Democratic People's Republic of Korea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;119;53;66;84;106;149;273;100;260;260;280;102;33;253;181
-116;'408;Democratic People's Republic of Korea;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;25;2;2;2;2;0;0;0;0;0
-116;'408;Democratic People's Republic of Korea;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;66;1;1;1;1;0;1;0;0;0
-116;'408;Democratic People's Republic of Korea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;2200;2200;2200;2200;2200;2200;2200;4668;3543;4066;5067;5151;4735;9772;5797;8557;11777;8524;10427;2932;564;4765;5853
-116;'408;Democratic People's Republic of Korea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414;1414;1414;1208;1208;1208;1208;1208;1208;1208;3548;3883;4756;5165;4488;5344;9018;6032;8773;11359;8791;11607;3492;861;6487;6699
-116;'408;Democratic People's Republic of Korea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;176;715;109;72;1436;446;1146;1115;1008;1494;365;150;355;103;87;171
-116;'408;Democratic People's Republic of Korea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;495;555;205;131;1275;470;1053;1095;938;1296;348;162;334;100;85;117
-116;'408;Democratic People's Republic of Korea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;336;56;304;164;392;149;666;312;622;1798;1798;1322;197;14;377;991
-116;'408;Democratic People's Republic of Korea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;75;75;75;174;61;182;96;253;166;529;310;691;1518;1518;1391;206;26;393;1011
-116;'408;Democratic People's Republic of Korea;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;10;10;10;10;10;10;10;1;200;8;1;0;86;86;86
-116;'408;Democratic People's Republic of Korea;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;1;1;1;1;1;1;1;2;90;12;27;0;71;71;71
-116;'408;Democratic People's Republic of Korea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;2148;2339;2178;2651;4007;3868;4995;4463;4489;6430;6430;6546;2148;273;3463;3740
-116;'408;Democratic People's Republic of Korea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;362;362;362;362;362;362;1944;2984;3436;3633;3580;4474;5433;4646;5290;6927;6927;7400;2385;422;4780;4425
-116;'408;Democratic People's Republic of Korea;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;240;36;16;232;129;164;149;51;338;338;22;338;17;1;1
-116;'408;Democratic People's Republic of Korea;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;210;107;48;186;136;140;204;46;316;316;24;316;15;0;0
-116;'408;Democratic People's Republic of Korea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;1200;1200;1200;1200;1200;1200;1200;2167;1146;1581;2250;748;716;4058;969;3442;3277;24;2418;572;270;507;969
-116;'408;Democratic People's Republic of Korea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414;1414;1414;629;629;629;629;629;629;629;1417;836;1134;1434;649;702;3012;1032;2782;2586;18;2664;880;401;801;1109
-116;'408;Democratic People's Republic of Korea;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;463;36;19;1167;280;939;939;939;939;2;110;0;0;0;84
-116;'408;Democratic People's Republic of Korea;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;33;330;38;23;1029;274;872;872;872;872;2;93;0;0;0;32
-116;'408;Democratic People's Republic of Korea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;17;2;3;2;4;2;53;53;4;272;272;141;15;7;418;153
-116;'408;Democratic People's Republic of Korea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;142;142;142;142;142;142;13;2;4;2;6;2;44;44;10;328;328;152;21;12;513;154
-116;'408;Democratic People's Republic of Korea;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;27;27;27;27;33;17;17;17;17;17;17;0;0;0
-116;'408;Democratic People's Republic of Korea;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;59;59;59;59;40;18;18;18;18;18;18;14;14;14
-116;'408;Democratic People's Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;60000;60000;60000;60000;60000;60000;65000;70000;75000;75000;75000;80000;80000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-116;'408;Democratic People's Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3163;3165;2919;1823;287;388;3563;303;3173;1927;1927;3443;1436;979;2024;2006
-116;'408;Democratic People's Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9846;10003;9997;3939;332;386;10084;320;7345;3380;3380;6473;2920;2245;4619;4636
-116;'408;Democratic People's Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;550;550;250;250;250;250;250;250;250;253;265;160;163;110;115;101;27;127;127;8;0;8;8;8;8
-116;'408;Democratic People's Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;403;403;146;146;146;146;146;146;146;545;506;134;171;55;307;312;7;329;329;4;2;4;4;4;4
-116;'408;Democratic People's Republic of Korea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20835;26937;35209;25236;24722;8686;36688
-116;'408;Democratic People's Republic of Korea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3971;459;47;33;36;70;60
-116;'408;Democratic People's Republic of Korea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;11;7;7;7;114;47
-116;'408;Democratic People's Republic of Korea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33
-116;'408;Democratic People's Republic of Korea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;11;46
-116;'408;Democratic People's Republic of Korea;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-116;'408;Democratic People's Republic of Korea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;3;3;3;103;1
-116;'408;Democratic People's Republic of Korea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32
-116;'408;Democratic People's Republic of Korea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;428;1034;0;0;13;18
-116;'408;Democratic People's Republic of Korea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;1;0
-116;'408;Democratic People's Republic of Korea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;481;236;6;6;17;16
-116;'408;Democratic People's Republic of Korea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;10;9;0;1;1;0
-116;'408;Democratic People's Republic of Korea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674;6202;8553;573;55;2338;4023
-116;'408;Democratic People's Republic of Korea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;1;0;15
-116;'408;Democratic People's Republic of Korea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13720;19384;24614;24614;24614;5821;31795
-116;'408;Democratic People's Republic of Korea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;3;4;0;0;31;10
-116;'408;Democratic People's Republic of Korea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325
-116;'408;Democratic People's Republic of Korea;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-116;'408;Democratic People's Republic of Korea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;971;431;765;36;40;383;464
-116;'408;Democratic People's Republic of Korea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3634;412;0;0;1;4;0
-116;'408;Democratic People's Republic of Korea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098;35669;37393;6394;1388;9743;28822
-116;'408;Democratic People's Republic of Korea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125;2280;1438;445;306;275;223
-116;'408;Democratic People's Republic of Korea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;13;11;11;1;56
-116;'408;Democratic People's Republic of Korea;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59
-116;'408;Democratic People's Republic of Korea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4858;6249;6000;1849;461;2737;2580
-116;'408;Democratic People's Republic of Korea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;509;39;136;136;3;1
-116;'408;Democratic People's Republic of Korea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336;1023;1614;970;0;110;1149
-116;'408;Democratic People's Republic of Korea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;9;11;11;9;6;1
-116;'408;Democratic People's Republic of Korea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18188;10954;12049;2126;531;3171;12478
-116;'408;Democratic People's Republic of Korea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;23;85;9;3;52;12
-116;'408;Democratic People's Republic of Korea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13715;17443;17717;1438;385;3724;12559
-116;'408;Democratic People's Republic of Korea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;1680;1244;230;99;155;150
-250;'180;Democratic Republic of the Congo;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45179;60048;55630;52214;59312;82994;158157
-250;'180;Democratic Republic of the Congo;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70440;76529;71369;99493;157129;159676;152577
-250;'180;Democratic Republic of the Congo;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;806;2390;3983;2923;3052;6309;3221;3542;3542;3542;8718;11341;11925;11303;5145;8205;5199;4914;5496;5648;3204;4454;4450;4005;9021;12248;9749;9927;8359;8906;8057;1439;4624;8995;4169;11457;3332;3333;3967;3967;3967;1128;4772;8271;9317;11425;14372;20890;19628.3;36256;32864;16606;18117;19350;16018;12578;15437;18811;16464;14678;19947;24659;47664
-250;'180;Democratic Republic of the Congo;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;8148;8588;9665;7164;6626;7147;5161;3370;3726;4100;5100;7614;8500;9750;9750;14531;10693;13260;15670;22162;22952;19074;22580;14697;16544;16351;16803;18852;18391;44629;44777;59578;49836;62565;65173;75137;40687;35054;24615;25668;9695;27197;35946;54045;65597;135931;186918;194206;115128;148485;187333;171244;136495;139542;111767;85336;69502;74497;69305;97484;155550;157617;147661
-250;'180;Democratic Republic of the Congo;1861;Roundwood;5516;Production;m3;19838844;20299888;20932920;21526456;22194036;22856206;23577538;24293616;25038040;25804438;26274626;27050912;27388224;28010236;28888344;30054208;31007060;32410648;33443968;34464916;35442532;36759372;37936612;38863192;40173160;41107104;42205132;43618092;45243276;47236460;49756932;52936248;57010496;60054960;62127544;63688368;64877800;66049724;67152720;68466848;69712688;71024264;72383264;73887400;75274400;76498004;77800800;78950504;80101418;81133569;82346615;83505164;84689351;85899854;87137375;88148851;89181523;90235913;91312556;92412005;93541135;94694250;95871948
-250;'180;Democratic Republic of the Congo;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;0;326;326;0;0;0;0;0;100;46;122;122;920;1764;4628;10100;1564;877;1035;2715;804;1596;345;3524;33051;16380;1859;2121;3832;2764
-250;'180;Democratic Republic of the Congo;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;0;45;45;0;0;0;0;0;12;11;8;8;72;178;1447;2695.3;570;157;108;238;546;177;95;309;1817;1129;145;485;466;198
-250;'180;Democratic Republic of the Congo;1861;Roundwood;5916;Export quantity;m3;79800;75900;88800;84400;72300;84600;68900;44800;40000;33500;12600;30800;43000;29900;29900;50107;56600;43200;48200;66100;58000;53000;76000;97000;112000;176000;112000;133000;116400;105508;135194;100167;94464;112056;127811;137724;81024;62024;65424;74928;33024;46024;68165;116738;128484;209387;317861;227934;124510;164002;183975;161240;155315;157388;182005;117185;63161;69503;79061;141018;225704;272228;236195
-250;'180;Democratic Republic of the Congo;1861;Roundwood;5922;Export value;1000 USD;2640;2500;3135;2415;2203;2330;1974;1081;960;800;500;1484;3200;3250;3250;6131;4961;4100;5600;8300;7300;6800;8997;6947;9524;9139;9845;12672;12832;35037;36621;30818;26627;29020;36161;36283;20318;16067;17744;19273;6806;6647;24254;46729;58281;80738;117199;103621;57630;77635;110469;102594;87730;94378;67897;45322;42968;40998;34915;62324;106817;104772;78853
-250;'180;Democratic Republic of the Congo;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664;32971;15389;78;592;775;550
-250;'180;Democratic Republic of the Congo;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;1799;809;7;26;13;57
-250;'180;Democratic Republic of the Congo;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1863;Roundwood, non-coniferous;5516;Production;m3;19838844;20299888;20932920;21526456;22194036;22856206;23577538;24293616;25038040;25804438;26274626;27050912;27388224;28010236;28888344;30054208;31007060;32410648;33443968;34464916;35442532;36759372;37936612;38863192;40173160;41107104;42205132;43618092;45243276;47236460;49756932;52936248;57010496;60054960;62127544;63688368;64877800;66049724;67152720;68466848;69712688;71024264;72383264;73887400;75274400;76498004;77800800;78950504;80101418;81133569;82346615;83505164;84689351;85899854;87137375;88148851;89181523;90235913;91312556;92412005;93541135;94694250;95871948
-250;'180;Democratic Republic of the Congo;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860;80;991;1781;1529;3057;2214
-250;'180;Democratic Republic of the Congo;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;18;320;138;459;453;141
-250;'180;Democratic Republic of the Congo;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63141;69503;79061;141018;225704;272228;236195
-250;'180;Democratic Republic of the Congo;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42959;40998;34915;62324;106817;104772;78853
-250;'180;Democratic Republic of the Congo;1864;Wood fuel;5516;Production;m3;18200844;18756888;19329920;19920456;20529036;21156206;21802538;22468616;23155040;23862438;24273626;24989912;25301224;25881236;26946344;28126208;28999060;30303648;31328968;32240916;33189532;34388372;35479612;36330192;37565160;38426104;39449132;40709092;42329276;44183460;46675932;49802248;53799496;56745960;58758544;60143368;61299800;62405724;63639720;64902848;66080688;67285264;68517264;69777400;71066400;72126004;73208800;74315257;75446134;76602030;77735602;78894151;80078338;81288841;82526362;83537838;84570510;85624900;86701543;87800992;88930122;90083237;91260935
-250;'180;Democratic Republic of the Congo;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;20;12;12;30;30;30;;15;15;9;9;0;0
-250;'180;Democratic Republic of the Congo;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;10;1;1;9;9;9;;9;9;9;9;0;0
-250;'180;Democratic Republic of the Congo;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;24;24;24;24;24;24;76;76;76;76;76;76;76;20;20;20;20;25;25;25;;18;1;18;18;55;195
-250;'180;Democratic Republic of the Congo;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;4;4;4;4;4;4;4;2;2;2;2;18;18;18;;2;0;2;2;106;435
-250;'180;Democratic Republic of the Congo;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1628;Wood fuel, non-coniferous;5516;Production;m3;18200844;18756888;19329920;19920456;20529036;21156206;21802538;22468616;23155040;23862438;24273626;24989912;25301224;25881236;26946344;28126208;28999060;30303648;31328968;32240916;33189532;34388372;35479612;36330192;37565160;38426104;39449132;40709092;42329276;44183460;46675932;49802248;53799496;56745960;58758544;60143368;61299800;62405724;63639720;64902848;66080688;67285264;68517264;69777400;71066400;72126004;73208800;74315257;75446134;76602030;77735602;78894151;80078338;81288841;82526362;83537838;84570510;85624900;86701543;87800992;88930122;90083237;91260935
-250;'180;Democratic Republic of the Congo;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;9;9;0;0
-250;'180;Democratic Republic of the Congo;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;0;0
-250;'180;Democratic Republic of the Congo;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;18;18;55;195
-250;'180;Democratic Republic of the Congo;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;2;106;435
-250;'180;Democratic Republic of the Congo;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;20;12;12;30;30;30;;;;;;;
-250;'180;Democratic Republic of the Congo;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;10;1;1;9;9;9;;;;;;;
-250;'180;Democratic Republic of the Congo;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;24;24;24;24;24;24;76;76;76;76;76;76;76;20;20;20;20;25;25;25;;;;;;;
-250;'180;Democratic Republic of the Congo;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;4;4;4;4;4;4;4;2;2;2;2;18;18;18;;;;;;;
-250;'180;Democratic Republic of the Congo;1865;Industrial roundwood;5516;Production;m3;1638000;1543000;1603000;1606000;1665000;1700000;1775000;1825000;1883000;1942000;2001000;2061000;2087000;2129000;1942000;1928000;2008000;2107000;2115000;2224000;2253000;2371000;2457000;2533000;2608000;2681000;2756000;2909000;2914000;3053000;3081000;3134000;3211000;3309000;3369000;3545000;3578000;3644000;3513000;3564000;3632000;3739000;3866000;4110000;4208000;4372000;4592000;4635247;4655284;4531539;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013
-250;'180;Democratic Republic of the Congo;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;0;326;326;0;0;0;0;0;100;46;122;122;916;1760;4624;10096;1560;857;1023;2703;774;1566;315;3524;33036;16365;1850;2112;3832;2764
-250;'180;Democratic Republic of the Congo;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;0;45;45;0;0;0;0;0;12;11;8;8;70;176;1445;2693.3;568;147;107;237;537;168;86;309;1808;1120;136;476;466;198
-250;'180;Democratic Republic of the Congo;1865;Industrial roundwood;5916;Export quantity;m3;79800;75900;88800;84400;72300;84600;68900;44800;40000;33500;12600;30800;43000;29900;29900;50107;56600;43200;48200;66100;58000;53000;76000;97000;112000;176000;112000;133000;116400;105508;135194;100167;94464;112056;127787;137700;81000;62000;65400;74904;33000;46000;68089;116662;128408;209311;317785;227858;124434;163982;183955;161220;155295;157363;181980;117160;63161;69485;79060;141000;225686;272173;236000
-250;'180;Democratic Republic of the Congo;1865;Industrial roundwood;5922;Export value;1000 USD;2640;2500;3135;2415;2203;2330;1974;1081;960;800;500;1484;3200;3250;3250;6131;4961;4100;5600;8300;7300;6800;8997;6947;9524;9139;9845;12672;12832;35037;36621;30818;26627;29020;36160;36282;20317;16066;17743;19272;6805;6646;24250;46725;58277;80734;117195;103617;57626;77633;110467;102592;87728;94360;67879;45304;42968;40996;34915;62322;106815;104666;78418
-250;'180;Democratic Republic of the Congo;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;101;1588;131;3;0;250;2;2579;160;1530;288;2664;32971;15389;78;592;775;550
-250;'180;Democratic Republic of the Congo;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;2;2;6;97;10;0.3;0;20;0;225;13;166;76;211;1799;809;7;26;13;57
-250;'180;Democratic Republic of the Congo;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;173;69;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;12;109;254;0;462;438;1363;0;160;20;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;53;21;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;2;82;29;0;59;46;136;0;25;9;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;101;1588;131;3;0;250;2;2579;160;1530;288;2664;32971;15389;78;592;775;550
-250;'180;Democratic Republic of the Congo;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;2;2;6;97;10;0.3;0;20;0;225;13;166;76;211;1799;809;7;26;13;57
-250;'180;Democratic Republic of the Congo;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;173;69;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;12;109;254;0;462;438;1363;0;160;20;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;53;21;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;2;82;29;0;59;46;136;0;25;9;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1638000;1543000;1603000;1606000;1665000;1700000;1775000;1825000;1883000;1942000;2001000;2061000;2087000;2129000;1942000;1928000;2008000;2107000;2115000;2224000;2253000;2371000;2457000;2533000;2608000;2681000;2756000;2909000;2914000;3053000;3081000;3134000;3211000;3309000;3369000;3545000;3578000;3644000;3513000;3564000;3632000;3739000;3866000;4110000;4208000;4372000;4592000;4635247;4655284;4531539;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013;4611013
-250;'180;Democratic Republic of the Congo;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;0;326;326;0;0;0;0;0;63;9;85;85;815;172;4493;10093;1560;607;1021;124;614;36;27;860;65;976;1772;1520;3057;2214
-250;'180;Democratic Republic of the Congo;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;0;45;45;0;0;0;0;0;6;5;6;6;64;79;1435;2693;568;127;107;12;524;2;10;98;9;311;129;450;453;141
-250;'180;Democratic Republic of the Congo;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105379;135021;100098;94408;112000;127787;137700;81000;62000;65400;74904;33000;46000;68089;116662;128408;209311;317785;227846;124325;163728;183955;160758;154857;156000;181980;117000;63141;69485;79060;141000;225686;272173;236000
-250;'180;Democratic Republic of the Congo;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35021;36568;30797;26607;29000;36160;36282;20317;16066;17743;19272;6805;6646;24250;46725;58277;80734;117195;103615;57544;77604;110467;102533;87682;94224;67879;45279;42959;40996;34915;62322;106815;104666;78418
-250;'180;Democratic Republic of the Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4261;10090;1560;607;41;0;24;16;5;860;0;0;0;2;654;0
-250;'180;Democratic Republic of the Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1335;2692;568;127;12;0;7;1;1;98;0;0;0;7;293;0
-250;'180;Democratic Republic of the Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105379;135021;100098;94408;112000;97000;112000;65000;46000;49400;58904;17000;30000;52089;100662;112408;193311;301785;227558;124037;163440;183667;160470;154857;156000;181980;117000;63141;69485;79060;141000;225686;269701;236000
-250;'180;Democratic Republic of the Congo;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35021;36568;30797;26607;29000;25636;27738;15687;11436;13113;14642;2175;2016;19620;42095;53647;76104;112565;103414;57343;77403;110266;102332;87682;94224;67879;45279;42959;40996;34915;62322;106815;103854;78418
-250;'180;Democratic Republic of the Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;30;0;326;326;0;0;0;0;0;63;9;85;85;815;167;232;3;0;0;980;124;590;20;22;0;65;976;1772;1518;2403;2214
-250;'180;Democratic Republic of the Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;0;45;45;0;0;0;0;0;6;5;6;6;64;78;100;1;0;0;95;12;517;1;9;0;9;311;129;443;160;141
-250;'180;Democratic Republic of the Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30787;25700;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;288;288;288;288;288;0;0;0;0;0;0;0;0;0;2472;0
-250;'180;Democratic Republic of the Congo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10524;8544;4630;4630;4630;4630;4630;4630;4630;4630;4630;4630;4630;201;201;201;201;201;0;0;0;0;0;0;0;0;0;812;0
-250;'180;Democratic Republic of the Congo;1868;Sawlogs and veneer logs;5516;Production;m3;550000;425000;454000;425000;450000;450000;488000;500000;520000;540000;560000;580000;565000;565000;334000;272000;303000;350000;303000;355000;325000;380000;401000;410000;415000;418000;421000;498000;419000;465000;391000;330000;288000;272000;226000;309000;258000;244000;30000;60000;40000;50000;70000;200000;180000;220000;310000;353247;373284;249539;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013
-250;'180;Democratic Republic of the Congo;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1868;Sawlogs and veneer logs;5916;Export quantity;m3;79800;75900;88800;84400;72300;84600;68900;44800;40000;33500;12600;30800;43000;29900;29900;50107;56600;43200;48200;66100;58000;53000;76000;97000;112000;176000;112000;133000;116400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2640;2500;3135;2415;2203;2330;1974;1081;960;800;500;1484;3200;3250;3250;6131;4961;4100;5600;8300;7300;6800;8997;6947;9524;9139;9845;12672;12832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;550000;425000;454000;425000;450000;450000;488000;500000;520000;540000;560000;580000;565000;565000;334000;272000;303000;350000;303000;355000;325000;380000;401000;410000;415000;418000;421000;498000;419000;465000;391000;330000;288000;272000;226000;309000;258000;244000;30000;60000;40000;50000;70000;200000;180000;220000;310000;353247;373284;249539;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013;329013
-250;'180;Democratic Republic of the Congo;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;79800;75900;88800;84400;72300;84600;68900;44800;40000;33500;12600;30800;43000;29900;29900;50107;56600;43200;48200;66100;58000;53000;76000;97000;112000;176000;112000;133000;116400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2640;2500;3135;2415;2203;2330;1974;1081;960;800;500;1484;3200;3250;3250;6131;4961;4100;5600;8300;7300;6800;8997;6947;9524;9139;9845;12672;12832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1871;Other industrial roundwood;5516;Production;m3;1088000;1118000;1149000;1181000;1215000;1250000;1287000;1325000;1363000;1402000;1441000;1481000;1522000;1564000;1608000;1656000;1705000;1757000;1812000;1869000;1928000;1991000;2056000;2123000;2193000;2263000;2335000;2411000;2495000;2588000;2690000;2804000;2923000;3037000;3143000;3236000;3320000;3400000;3483000;3504000;3592000;3689000;3796000;3910000;4028000;4152000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000
-250;'180;Democratic Republic of the Congo;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1088000;1118000;1149000;1181000;1215000;1250000;1287000;1325000;1363000;1402000;1441000;1481000;1522000;1564000;1608000;1656000;1705000;1757000;1812000;1869000;1928000;1991000;2056000;2123000;2193000;2263000;2335000;2411000;2495000;2588000;2690000;2804000;2923000;3037000;3143000;3236000;3320000;3400000;3483000;3504000;3592000;3689000;3796000;3910000;4028000;4152000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000;4282000
-250;'180;Democratic Republic of the Congo;1630;Wood charcoal;5510;Production;t;278609;288481;298702;309285;320243;331589;343338;355502;368098;381140;386373;399679;402172;411630;433712;458728;475146;503108;523245;539875;557701;582172;603290;617323;641997;659408;681486;709889;747840;791358;856957;941976;1056619;1141526;1199659;1246635;1289350;1333420;1381481;1431274;1482124;1534781;1589308;1645773;1704243;1764057;1826000;1890000;1956391;2025055;2095096;2167561;2242532;2320095;2400342;2475018;2552018;2631413;2713278;2797690;2884443;2973887;3066104
-250;'180;Democratic Republic of the Congo;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;19;19;10;56;24;83;34;177;45;6;7;4;32;13;173;48;68
-250;'180;Democratic Republic of the Congo;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;3;21;21;14;111;16;50;20;42;27;8;9;10;11;6;35;16;86
-250;'180;Democratic Republic of the Congo;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;38;31;15;15;34;214;20;2;74;0;19;19;85;291
-250;'180;Democratic Republic of the Congo;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;26;4;26;26;5;68;7;0;22;0;1;1;6;246
-250;'180;Democratic Republic of the Congo;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5;122;120;119;119;31;31;55;70;28;28;3;10;9;17;37;1;1
-250;'180;Democratic Republic of the Congo;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;7;15;31;9;9;20;20;51;75;17;17;2;17;13;17;15;6;2
-250;'180;Democratic Republic of the Congo;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;8;790;790;790;40;103021;210022;353002;353008;353008;57;67;67;53;79;59;59;59;59;14;14
-250;'180;Democratic Republic of the Congo;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;10;32;32;32;11;11893;14144;23104;23122;23119;22;20;20;36;275;68;68;68;68;65;65
-250;'180;Democratic Republic of the Congo;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;117;117;6;6;2;17;2;2;2;3;2;9;29;0;1
-250;'180;Democratic Republic of the Congo;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;12;12;6;30;1;1;1;6;2;13;11;0;2
-250;'180;Democratic Republic of the Congo;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;103000;210000;353000;353000;353000;45;45;45;45;45;45;45;45;45;0;0
-250;'180;Democratic Republic of the Congo;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11840;14134;23104;23104;23104;3;3;3;3;3;3;3;3;3;0;0
-250;'180;Democratic Republic of the Congo;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;5;3;2;2;25;25;53;53;26;26;1;7;7;8;8;1;0
-250;'180;Democratic Republic of the Congo;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;7;7;23;1;1;8;8;45;45;16;16;1;11;11;4;4;6;0
-250;'180;Democratic Republic of the Congo;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3407;61;1121;200;600;600;600;600;600;600;600;8;790;790;790;11;21;22;2;8;8;12;22;22;8;34;14;14;14;14;14;14
-250;'180;Democratic Republic of the Congo;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;2;37;9;31;31;31;31;31;31;31;10;32;32;32;2;53;10;0;18;15;19;17;17;33;272;65;65;65;65;65;65
-250;'180;Democratic Republic of the Congo;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34
-250;'180;Democratic Republic of the Congo;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41
-250;'180;Democratic Republic of the Congo;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34
-250;'180;Democratic Republic of the Congo;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41
-250;'180;Democratic Republic of the Congo;1872;Sawnwood;5516;Production;m3;220000;141000;145000;141000;157000;150000;142000;145000;150000;160000;179000;180000;162000;162000;115000;78000;90000;123000;136000;121000;105000;95000;112000;120000;118000;120000;127000;135000;131000;117000;105000;105000;105000;75000;65000;85000;90000;80000;70000;40000;10000;35000;59000;70000;81000;92000;92000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;151000;401000;401000;401000
-250;'180;Democratic Republic of the Congo;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;29;4;62;6;0;0;0;0;0;10;1125;477;477;779;387;1750;339;9876;10083;3621;5049;1180;1250;380;698;1797;403;1440;9528;12020;6818
-250;'180;Democratic Republic of the Congo;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;3;35;2;0;0;0;0;0;2;14;88;88;132;97;508;47;4975;5383;1811;2579;443;429;59;81;206;131;156;3637;877;894
-250;'180;Democratic Republic of the Congo;1872;Sawnwood;5916;Export quantity;m3;36600;35100;35100;43000;34700;36600;32400;31600;33000;36200;36700;37500;29000;24700;24700;24000;23500;37500;30700;24000;19700;22300;18000;29700;26000;26000;25500;21400;22500;32000;31000;40803;37719;58000;38300;57000;20500;19000;12000;20000;7000;29440;10544;15250;15250;65754;61635;129387;58890;56770;55000;51720;55860;61120;57720;51400;28240;56170;74589;96739;362000;345583;382016
-250;'180;Democratic Republic of the Congo;1872;Sawnwood;5922;Export value;1000 USD;2411;2831;3320;2193;1890;1772;1509;1169;1200;1400;2100;3730;2900;3300;3300;5200;5032;5800;4800;4000;3349;3791;5100;4692;4775;4595;4801;3643;4295;7910;6366;21099;19485;22322;15600;24699;12318;11062;5942;6000;2494;20252;10616;6216;6216;52912;66005;75907;40813;41252;47245;38480;45805;42173;40577;36751;21406;30613;31531;33724;47784;51314;67244
-250;'180;Democratic Republic of the Congo;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;1000
-250;'180;Democratic Republic of the Congo;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;0;0;0;0;0;0;1;439;439;730;202;481;53;217;149;627;651;680;660;320;340;472;213;663;378;1925;2818
-250;'180;Democratic Republic of the Congo;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;0;0;0;0;0;0;2;76;76;100;52;134;13;65;37;138;157;171;84;27;53;138;25;25;14;49;34
-250;'180;Democratic Republic of the Congo;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;440;28;250;250;250;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16
-250;'180;Democratic Republic of the Congo;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;252;30;42;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12
-250;'180;Democratic Republic of the Congo;1633;Sawnwood, non-coniferous;5516;Production;m3;220000;141000;145000;141000;157000;150000;142000;145000;150000;160000;179000;180000;162000;162000;115000;78000;90000;123000;136000;121000;105000;95000;112000;120000;118000;120000;127000;135000;131000;117000;105000;105000;105000;75000;65000;85000;90000;80000;70000;40000;10000;35000;59000;70000;81000;92000;92000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;400000;400000;400000
-250;'180;Democratic Republic of the Congo;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;29;4;56;0;0;0;0;0;0;10;1124;38;38;49;185;1269;286;9659;9934;2994;4398;500;590;60;358;1325;190;777;9150;10095;4000
-250;'180;Democratic Republic of the Congo;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;3;33;0;0;0;0;0;0;2;12;12;12;32;45;374;34;4910;5346;1673;2422;272;345;32;28;68;106;131;3623;828;860
-250;'180;Democratic Republic of the Congo;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;36600;35100;35100;43000;34700;36600;32400;31600;33000;36200;36700;37500;29000;24700;24700;24000;23500;37500;30700;24000;19700;22300;18000;29700;26000;26000;25500;21400;22500;32000;31000;40803;37719;58000;38300;57000;20500;19000;12000;20000;7000;29000;10516;15000;15000;65504;61635;129387;58890;56770;55000;51720;55860;61120;57720;51400;28240;56170;74589;96739;362000;345583;382000
-250;'180;Democratic Republic of the Congo;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;2411;2831;3320;2193;1890;1772;1509;1169;1200;1400;2100;3730;2900;3300;3300;5200;5032;5800;4800;4000;3349;3791;5100;4692;4775;4595;4801;3643;4295;7910;6366;21099;19485;22322;15600;24699;12318;11062;5942;6000;2494;20000;10586;6174;6174;52870;66005;75907;40813;41252;47245;38480;45805;42173;40577;36751;21406;30613;31531;33724;47784;51314;67232
-250;'180;Democratic Republic of the Congo;1634;Veneer sheets;5516;Production;m3;34000;34000;31000;40000;45000;40000;43000;49000;50000;50000;50000;50000;43000;43000;18000;18000;8500;14000;18000;14000;13000;9000;16000;19000;22000;22000;19000;19000;19000;15000;14000;14000;14000;8000;8000;10000;10000;10000;1000;1000;1000;1000;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3490;3490;5000;5000;10000;5000;5000;5000;5000
-250;'180;Democratic Republic of the Congo;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;7;3;3;40;14;69;13;315;139;41;135;40;93;25;13;57;557;733;168;0;941
-250;'180;Democratic Republic of the Congo;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;7;2;2;15;41;67;29;309;149;67;158;22;65;19;10;49;235;414;436;306;348
-250;'180;Democratic Republic of the Congo;1634;Veneer sheets;5916;Export quantity;m3;30700;30300;26200;36700;25000;34100;15700;14400;40200;31000;24500;23000;7800;17900;17900;17900;3800;14000;18000;26300;33800;23500;16000;11200;8100;8500;9200;8100;4000;4500;6000;6022;3531;7000;7600;8600;4500;4500;800;800;800;1;163;1060;1060;1129;1504;1202;1309;239;263;926;1852;1993;2867;2979;4940;2935;5519;2005;679;3251;1827
-250;'180;Democratic Republic of the Congo;1634;Veneer sheets;5922;Export value;1000 USD;2212;2747;2613;1959;1814;2326;1097;470;1566;1900;2500;2400;2400;3200;3200;3200;700;3360;5270;9862;12303;8483;8483;3058;2245;2617;2157;2537;1264;1682;1790;7474;3722;11186;13403;14124;8020;7894;898;364;364;266;986;837;837;1994;3150;2090;2112;347;388;925;2193;2597;2715;2879;4586;2460;2678;1267;764;1358;1146
-250;'180;Democratic Republic of the Congo;1873;Wood-based panels;5516;Production;m3;9000;20000;31000;43000;24000;15000;19000;20000;24000;24000;24000;24000;18300;18300;9000;9300;9900;12500;12500;12000;16000;18000;16000;19000;17000;18000;18000;19000;17000;17000;13000;12000;13000;8000;8000;10000;10000;10000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;2000;2000;1319;1319;1319;1319
-250;'180;Democratic Republic of the Congo;1873;Wood-based panels;5616;Import quantity;m3;;;200;400;500;500;100;100;100;100;100;100;100;100;100;1300;300;300;2000;2100;1100;2100;2200;4700;700;600;900;900;400;500;100;32;19;19;98;10;10;10;10;10;10;195;698;2153;4397;10348;3896;4058;1735;8187;2104;3389;6998;2998;6673;2947;4784;3975;7016;9044;5803;9034;19555
-250;'180;Democratic Republic of the Congo;1873;Wood-based panels;5622;Import value;1000 USD;;;82;104;119;119;10;23;23;23;23;70;70;70;70;552;130;130;702;844;459;804;800;725;312;230;386;428;208;443;51;11;15;16;50;4;4;4;4;4;4;30;374;682;1728;1408;1474;2973;899;4298;1906;2140;3633;1953;2401;1597;2141;2104;2280;3288;1914;4024;6208
-250;'180;Democratic Republic of the Congo;1873;Wood-based panels;5916;Export quantity;m3;6700;5600;6600;6600;10400;10400;8400;10100;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;18;18;72;106;257;32;46;21;16;16;38;262;19;24;171;16;8;76;50;50
-250;'180;Democratic Republic of the Congo;1873;Wood-based panels;5922;Export value;1000 USD;885;510;597;597;719;719;581;650;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;6;6;57;162;292;26;26;10;5;5;37;160;12;10;79;5;3;9;20;20
-250;'180;Democratic Republic of the Congo;1640;Plywood and LVL;5516;Production;m3;9000;20000;31000;43000;24000;15000;19000;18000;20000;20000;20000;20000;17800;17800;8800;9300;9400;12000;12000;12000;16000;18000;16000;19000;17000;18000;18000;19000;17000;17000;13000;12000;13000;8000;8000;10000;10000;10000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;2000;2000;1319;1319;1319;1319
-250;'180;Democratic Republic of the Congo;1640;Plywood and LVL;5616;Import quantity;m3;;;200;400;500;500;100;100;100;100;100;100;100;100;100;1300;300;300;2000;2100;1100;2100;2200;4700;700;600;900;900;400;500;100;24;14;14;64;0;0;0;0;0;0;100;159;800;3044;10256;3595;2473;856;7184;1470;2663;6151;2589;6119;2439;3166;2271;5907;7707;4382;6746;6746
-250;'180;Democratic Republic of the Congo;1640;Plywood and LVL;5622;Import value;1000 USD;;;82;104;119;119;10;23;23;23;23;70;70;70;70;552;130;130;702;844;459;804;800;725;312;230;386;428;208;443;51;8;12;13;40;0;0;0;0;0;0;25;86;402;1448;1376;1176;1567;287;2787;643;1375;2983;1553;1733;1088;1036;1211;1897;2863;1331;2951;2951
-250;'180;Democratic Republic of the Congo;1640;Plywood and LVL;5916;Export quantity;m3;6700;5600;6600;6600;10400;10400;8400;10100;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;18;18;62;96;247;1;43;18;0;0;22;246;3;8;155;0;8;76;0;0
-250;'180;Democratic Republic of the Congo;1640;Plywood and LVL;5922;Export value;1000 USD;885;510;597;597;719;719;581;650;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;6;6;54;159;289;2;24;8;0;0;32;155;7;5;74;0;3;9;0;0
-250;'180;Democratic Republic of the Congo;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;2000;4000;4000;4000;4000;500;500;200;0;500;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;0;0;0;13;271;271;59;108;437;161;299;370;87;269;218;311;202;503;503;70;223;562;420;9363
-250;'180;Democratic Republic of the Congo;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;0;6;44;44;18;134;391;188;270;268;168;173;229;206;117;392;392;34;55;155;261;1402
-250;'180;Democratic Republic of the Congo;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;31;3;3;16;16;16;16;16;16;16;16;0;0;50;50
-250;'180;Democratic Republic of the Congo;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;24;2;2;5;5;5;5;5;5;5;5;0;0;20;20
-250;'180;Democratic Republic of the Congo;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;10;8;3;88;50;56;25;4;18;2;22;22;0;1;184;93;32;118;633
-250;'180;Democratic Republic of the Congo;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;5;4;6;24;28;13;11;24;19;22;22;0;5;14;4;34;63;249
-250;'180;Democratic Republic of the Congo;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;10;10;10;10;10;10;10;95;518;1072;1072;25;190;1060;668;648;239;635;560;189;221;284;1115;1200;855;1021;827;1750;2813
-250;'180;Democratic Republic of the Congo;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;4;4;4;4;4;4;5;279;234;234;9;160;1009;400;1213;982;586;453;152;440;370;713;496;335;366;394;749;1606
-250;'180;Democratic Republic of the Congo;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;175;175;1;185;597;43;11;11;11;11;9;9;9;488;597;9;5;5;17;238
-250;'180;Democratic Republic of the Congo;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;81;81;3;143;672;20;12;12;12;13;11;11;11;235;256;4;2;7;8;184
-250;'180;Democratic Republic of the Congo;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;880;880;1;3;431;624;626;217;494;447;171;203;272;508;438;760;983;755;1701;2462
-250;'180;Democratic Republic of the Congo;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;151;151;0;10;316;377;416;185;461;355;135;423;346;445;153;320;351;298;676;1384
-250;'180;Democratic Republic of the Congo;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;88;367;17;17;23;2;32;1;11;11;130;102;9;9;3;119;165;86;33;67;32;113
-250;'180;Democratic Republic of the Congo;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;2;216;2;2;6;7;21;3;785;785;113;85;6;6;13;33;87;11;13;89;65;38
-250;'180;Democratic Republic of the Congo;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;72;176;156;156;156;156;156;356;238;4981;4981;259;172;136;245;964;826;753;841;686;449;361;1040;1040;1885;1375;3877;3762;697
-250;'180;Democratic Republic of the Congo;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;49;40;25;25;25;25;25;107;112;620;620;108;140;95;160;559;475;564;716;519;406;307;647;647;769;535;1431;1884;723
-250;'180;Democratic Republic of the Congo;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;260;260;167;682;682;682;685;685;685;195;195;195;195;87;87;9;9;9;9;9
-250;'180;Democratic Republic of the Congo;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;101;101;74;250;250;250;296;296;296;124;124;124;124;84;84;46;46;46;47;46
-250;'180;Democratic Republic of the Congo;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;6;6;6;6;6;206;206;206;206;206;155;119;228;951;761;634;824;661;424;291;1031;1031;209;202;764;776;695
-250;'180;Democratic Republic of the Congo;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;8;8;8;8;8;90;90;90;90;90;138;93;158;553;441;505;712;514;401;286;630;630;160;149;537;667;719
-250;'180;Democratic Republic of the Congo;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;260;260;167;167;167;167;170;170;170;170;170;170;170;62;62;4;4;4;4;4
-250;'180;Democratic Republic of the Congo;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;101;101;74;74;74;74;120;120;120;120;120;120;120;80;80;46;46;46;47;46
-250;'180;Democratic Republic of the Congo;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;0;0;0;0;0;200;200;201;201;201;152;116;228;951;761;634;723;658;411;251;1025;1025;203;203;750;776;695
-250;'180;Democratic Republic of the Congo;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;0;0;0;0;0;82;82;83;83;83;134;89;158;553;441;505;627;499;348;166;625;625;155;149;514;666;717
-250;'180;Democratic Republic of the Congo;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;260;260;167;167;167;167;167;167;167;167;167;167;167;59;59;1;1;1;1;1
-250;'180;Democratic Republic of the Congo;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;101;101;74;74;74;74;74;74;74;74;74;74;74;34;34;0;0;0;1;0
-250;'180;Democratic Republic of the Congo;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;;;;;;;
-250;'180;Democratic Republic of the Congo;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;;;;;;;
-250;'180;Democratic Republic of the Congo;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;;;;;;;
-250;'180;Democratic Republic of the Congo;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;40;40;40;;;;;;;
-250;'180;Democratic Republic of the Congo;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;0;0;0;0;0;200;200;200;200;200;146;110;222;945;755;628;717;652;405;245;1024;1024;202;202;749;775;694
-250;'180;Democratic Republic of the Congo;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;0;0;0;0;0;82;82;82;82;82;131;86;155;550;438;502;624;496;345;163;624;624;154;148;513;665;716
-250;'180;Democratic Republic of the Congo;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;152;152;59;59;59;59;59;59;59;59;59;59;59;59;59;1;1;1;1;1
-250;'180;Democratic Republic of the Congo;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;61;61;34;34;34;34;34;34;34;34;34;34;34;34;34;0;0;0;1;0
-250;'180;Democratic Republic of the Congo;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;2;2;2;2;2;2;2;2;2;2
-250;'180;Democratic Republic of the Congo;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;2;2;2;2;2;2;2;2;2;2
-250;'180;Democratic Republic of the Congo;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;200;200;200;200;200;25;26;143;866;676;549;678;650;403;243;1022;1022;200;200;747;773;692
-250;'180;Democratic Republic of the Congo;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;82;82;82;82;82;18;18;98;493;381;445;605;494;343;161;622;622;152;146;511;663;714
-250;'180;Democratic Republic of the Congo;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;152;152;59;59;59;59;59;59;59;59;59;59;59;59;59;1;1;1;1;1
-250;'180;Democratic Republic of the Congo;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;61;61;34;34;34;34;34;34;34;34;34;34;34;34;34;0;0;0;1;0
-250;'180;Democratic Republic of the Congo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;0;0;0;0;0;0;0;0;0;0;121;52;47;47;47;47;7;0;0;0;;;;;;;
-250;'180;Democratic Republic of the Congo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;0;0;0;0;0;0;0;0;0;0;113;55;44;44;44;44;6;0;0;0;;;;;;;
-250;'180;Democratic Republic of the Congo;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-250;'180;Democratic Republic of the Congo;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-250;'180;Democratic Republic of the Congo;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;4;4;1;1;1;1;102;4;14;41;7;7;7;0;15;1;1
-250;'180;Democratic Republic of the Congo;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;5;5;1;1;1;1;86;16;54;121;6;6;6;1;24;2;3
-250;'180;Democratic Republic of the Congo;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-250;'180;Democratic Republic of the Congo;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46;46;46;46;46
-250;'180;Democratic Republic of the Congo;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;46;150;150;150;150;150;150;150;32;4775;4775;53;17;17;17;13;65;119;17;25;25;70;9;9;1676;1173;3113;2986;2
-250;'180;Democratic Republic of the Congo;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;26;17;17;17;17;17;17;17;22;530;530;18;2;2;2;6;34;59;4;5;5;21;17;17;609;386;894;1217;4
-250;'180;Democratic Republic of the Congo;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;515;515;515;515;515;25;25;25;25;25;25;5;5;5;5;5
-250;'180;Democratic Republic of the Congo;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;176;176;176;176;4;4;4;4;4;4;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1876;Paper and paperboard;5510;Production;t;600;600;700;700;800;800;800;1200;1300;1400;1400;1400;1500;1500;1500;1500;1500;1500;1500;1500;1500;2000;3000;2000;2000;3000;3000;2000;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-250;'180;Democratic Republic of the Congo;1876;Paper and paperboard;5610;Import quantity;t;2600;5400;7100;8600;8800;16300;8200;8200;8200;8200;19000;12900;13900;17000;7500;7100;6200;5800;5800;5800;3300;4500;4500;4000;11500;15300;11000;9900;7200;10100;8800;1174;5889;10631;3630;11627;3300;3302;5100;5100;5100;1655;3811;9041;9041;10246;11902;14990;13715;17680;20934;10970;12570;14884;11356;10355;14117;10354;15955;15074;18455;26853;27422
-250;'180;Democratic Republic of the Congo;1876;Paper and paperboard;5622;Import value;1000 USD;806;2390;3901;2819;2933;6190;3211;3519;3519;3519;8695;11271;11855;11233;5075;7653;5069;4784;4794;4804;2745;3650;3650;3280;8709;12018;9363;9499;8151;8463;8005;1409;4590;8972;3989;11365;3303;3304;3938;3938;3938;977;4253;6869;6869;9679;12405;15747;15774;25424;24757;11845;10721;15749;12495;10475;12237;13960;11895;10116;11993;17079;39163
-250;'180;Democratic Republic of the Congo;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;;0;0;0;0;0;0;0;0;0;0;176;176;176;154;157;157;4043;4043;4043;250;400;376;378;315;315;57;28;31;12;13
-250;'180;Democratic Republic of the Congo;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;;0;0;0;0;0;0;0;0;0;0;124;124;124;141;153;153;5799;5799;5799;590;208;206;205;173;173;62;51;61;35;41
-250;'180;Democratic Republic of the Congo;2042;Graphic papers;5610;Import quantity;t;1200;2500;3300;3100;3100;2600;3200;2900;2900;2900;9000;5000;5000;7000;3000;4800;4100;3700;3700;3700;2300;3000;3000;2500;5900;6400;4700;5500;3800;2800;2300;1088;5328;10009;1497;10627;2900;2901;4100;4100;4100;727;2564;6642;6642;8053;6244;9333;6679;9722;9238;9087;6268;8377;8734;8137;8091;7352;11142;7514;10644;12429;15225
-250;'180;Democratic Republic of the Congo;2042;Graphic papers;5622;Import value;1000 USD;381;1192;1859;1160;1160;1024;1052;1074;1074;1074;3195;6337;6337;5233;2150;5426;3472;3187;3197;3207;1945;2450;2450;2080;5265;6422;5012;5357;4992;4478;4405;1249;4263;8463;1737;10438;2955;2956;2825;2825;2825;455;3135;5060;5060;7260;8655;11160;9530;16974;13798;9940;6355;10009;7966;7532;8053;10089;7708;4680;6520;7918;28154
-250;'180;Democratic Republic of the Congo;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;21;21;3730;3730;3730;133;254;230;230;141;141;0;0;3;0;0
-250;'180;Democratic Republic of the Congo;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;15;15;4688;4688;4688;24;114;112;112;56;56;1;2;12;0;0
-250;'180;Democratic Republic of the Congo;1671;Newsprint;5610;Import quantity;t;300;400;1100;500;500;;800;500;500;500;1000;1000;1000;2000;1000;1400;1400;1000;1000;1000;1000;1000;1000;500;1000;300;300;200;200;800;800;59;152;150;599;27;0;0;300;300;300;300;622;651;651;252;514;649;663;2211;467;502;127;274;211;451;805;189;1119;259;122;34;225
-250;'180;Democratic Republic of the Congo;1671;Newsprint;5622;Import value;1000 USD;53;126;364;136;136;;171;165;165;165;165;337;337;700;337;1534;1005;720;730;740;745;750;750;380;800;223;223;99;99;405;405;29;78;80;447;41;0;0;154;154;154;200;390;332;332;221;389;402;433;1362;481;414;157;245;123;346;1156;115;482;153;88;42;230
-250;'180;Democratic Republic of the Congo;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;5;5;5;5;0;0;1;0;0
-250;'180;Democratic Republic of the Congo;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;4;4;4;1;2;3;0;0
-250;'180;Democratic Republic of the Congo;1674;Printing and writing papers;5610;Import quantity;t;900;2100;2200;2600;2600;2600;2400;2400;2400;2400;8000;4000;4000;5000;2000;3400;2700;2700;2700;2700;1300;2000;2000;2000;4900;6100;4400;5300;3600;2000;1500;1029;5176;9859;898;10600;2900;2901;3800;3800;3800;427;1942;5991;5991;7801;5730;8684;6016;7511;8771;8585;6141;8103;8523;7686;7286;7163;10023;7255;10522;12395;15000
-250;'180;Democratic Republic of the Congo;1674;Printing and writing papers;5622;Import value;1000 USD;328;1066;1495;1024;1024;1024;881;909;909;909;3030;6000;6000;4533;1813;3892;2467;2467;2467;2467;1200;1700;1700;1700;4465;6199;4789;5258;4893;4073;4000;1220;4185;8383;1290;10397;2955;2956;2671;2671;2671;255;2745;4728;4728;7039;8266;10758;9097;15612;13317;9526;6198;9764;7843;7186;6897;9974;7226;4527;6432;7876;27924
-250;'180;Democratic Republic of the Congo;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;21;21;3730;3730;3730;133;225;225;225;136;136;0;0;2;0;0
-250;'180;Democratic Republic of the Congo;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;15;15;4688;4688;4688;24;108;108;108;52;52;0;0;9;0;0
-250;'180;Democratic Republic of the Congo;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2717;3560;3560;3560;400;858;771;771;2766;919;491;468;668;678;1309;889;1228;741;732;753;753;383;466;460;489;544
-250;'180;Democratic Republic of the Congo;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2596;2346;2346;2346;224;659;608;608;1925;742;597;458;640;813;1421;972;1383;925;833;839;839;327;233;359;270;1289
-250;'180;Democratic Republic of the Congo;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;4;57;57;57;41;41;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;37;37;37;4;4;0;0;2;0;0
-250;'180;Democratic Republic of the Congo;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;178;178;178;20;804;3920;3920;3757;3260;6648;3832;4496;5845;4679;3040;4874;5153;5573;4552;5244;7387;5038;7563;9392;11788
-250;'180;Democratic Republic of the Congo;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;241;241;241;23;1710;3093;3093;3532;5584;8020;6442;12083;9756;5565;2720;6210;4586;5150;4295;5878;4388;2855;3713;4982;22581
-250;'180;Democratic Republic of the Congo;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3624;3624;3624;54;87;87;87;87;87;0;0;2;0;0
-250;'180;Democratic Republic of the Congo;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4515;4515;4515;12;34;34;34;34;34;0;0;7;0;0
-250;'180;Democratic Republic of the Congo;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;62;62;62;7;280;1300;1300;1278;1551;1545;1716;2347;2248;2597;2212;2001;2629;1381;1981;1166;2253;1751;2499;2514;2668
-250;'180;Democratic Republic of the Congo;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;84;84;84;8;376;1027;1027;1582;1940;2141;2197;2889;2748;2540;2506;2171;2332;1203;1763;3257;2511;1439;2360;2624;4054
-250;'180;Democratic Republic of the Congo;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;103;103;103;75;81;81;81;8;8;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;172;172;172;11;37;37;37;14;14;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1675;Other paper and paperboard;5510;Production;t;600;600;700;700;800;800;800;1200;1300;1400;1400;1400;1500;1500;1500;1500;1500;1500;1500;1500;1500;2000;3000;2000;2000;3000;3000;2000;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-250;'180;Democratic Republic of the Congo;1675;Other paper and paperboard;5610;Import quantity;t;1400;2900;3800;5500;5700;13700;5000;5300;5300;5300;10000;7900;8900;10000;4500;2300;2100;2100;2100;2100;1000;1500;1500;1500;5600;8900;6300;4400;3400;7300;6500;86;561;622;2133;1000;400;401;1000;1000;1000;928;1247;2399;2399;2193;5658;5657;7036;7958;11696;1883;6302;6507;2622;2218;6026;3002;4813;7560;7811;14424;12197
-250;'180;Democratic Republic of the Congo;1675;Other paper and paperboard;5622;Import value;1000 USD;425;1198;2042;1659;1773;5166;2159;2445;2445;2445;5500;4934;5518;6000;2925;2227;1597;1597;1597;1597;800;1200;1200;1200;3444;5596;4351;4142;3159;3985;3600;160;327;509;2252;927;348;348;1113;1113;1113;522;1118;1809;1809;2419;3750;4587;6244;8450;10959;1905;4366;5740;4529;2943;4184;3871;4187;5436;5473;9161;11009
-250;'180;Democratic Republic of the Congo;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;;0;0;0;0;0;0;0;0;0;0;158;158;158;136;136;136;313;313;313;117;146;146;148;174;174;57;28;28;12;13
-250;'180;Democratic Republic of the Congo;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;;0;0;0;0;0;0;0;0;0;0;110;110;110;127;138;138;1111;1111;1111;566;94;94;93;117;117;61;49;49;35;41
-250;'180;Democratic Republic of the Congo;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;66;183;183;137;175;72;184;376;354;252;397;729;377;140;301;732;289;330;482;937;1196
-250;'180;Democratic Republic of the Congo;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;121;201;201;174;260;114;439;626;455;454;624;1277;990;289;545;1011;434;410;382;687;2055
-250;'180;Democratic Republic of the Congo;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;1;1;1;1;6
-250;'180;Democratic Republic of the Congo;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;3;3;3;3;11
-250;'180;Democratic Republic of the Congo;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;1000;1000;1000;807;1122;1509;1509;1631;5117;5039;6440;6795;10920;1457;5739;5199;2048;1622;5513;2035;4261;6904;7005;11722;10556
-250;'180;Democratic Republic of the Congo;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;1113;1113;1113;373;759;935;935;1487;2632;3299;4739;5599;9318;997;3414;3173;3266;1429;3132;2114;2972;4128;4249;7188;7734
-250;'180;Democratic Republic of the Congo;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;128;128;128;128;193;193;193;45;140;140;140;149;149;56;27;27;10;6
-250;'180;Democratic Republic of the Congo;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;635;635;635;543;81;81;81;101;101;58;46;46;28;26
-250;'180;Democratic Republic of the Congo;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1400;2900;3800;5500;5700;13000;4500;5000;5000;5000;9000;6400;7500;8000;3500;1100;1200;1200;1200;1200;600;900;900;900;4000;7000;5000;3000;2000;5000;4200;86;561;622;2133;1000;400;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;425;1198;2042;1659;1773;4166;1651;1145;1145;1145;4200;3372;3952;4080;1925;1180;789;789;789;789;500;700;700;700;2000;4000;3000;3000;2000;2000;2000;160;327;509;2252;927;348;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-250;'180;Democratic Republic of the Congo;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;372;372;372;300;881;832;832;482;3666;4005;5053;5056;8118;628;4560;3863;898;462;4362;1126;2993;5697;5827;7953;9382
-250;'180;Democratic Republic of the Congo;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;367;367;367;123;432;515;515;273;1646;1929;3025;3691;6267;334;2611;2134;470;316;2164;749;1937;3325;3333;4563;5801
-250;'180;Democratic Republic of the Congo;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;128;128;128;128;148;148;148;0;0;0;0;0;0;1;0;0;0;0
-250;'180;Democratic Republic of the Congo;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;92;92;92;0;0;0;0;0;0;1;0;0;1;1
-250;'180;Democratic Republic of the Congo;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;561;561;561;453;170;228;228;707;977;589;542;1165;1958;548;939;856;1094;830;891;808;551;516;466;2751;667
-250;'180;Democratic Republic of the Congo;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;621;621;621;208;253;142;142;949;512;584;373;825;1530;426;581;570;2676;795;603;1120;525;323;303;1772;1047
-250;'180;Democratic Republic of the Congo;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;127;127;127;127;127;33;5;5;5;5
-250;'180;Democratic Republic of the Congo;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;537;537;537;75;75;75;75;75;31;20;20;20;20
-250;'180;Democratic Republic of the Congo;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;67;67;67;54;71;370;370;419;470;441;841;570;840;163;122;477;28;302;244;85;633;691;712;1011;501
-250;'180;Democratic Republic of the Congo;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;125;125;125;42;74;229;229;259;470;782;1337;1079;1517;127;112;457;40;238;356;236;480;480;613;834;799
-250;'180;Democratic Republic of the Congo;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;22;22;22;22;22;5;1
-250;'180;Democratic Republic of the Congo;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;26;26;26;26;26;7;5
-250;'180;Democratic Republic of the Congo;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;23;4;4;4;4;4;118;118;3;28;28;16;16;84;0;0;7;6
-250;'180;Democratic Republic of the Congo;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;6;4;4;4;4;4;110;110;12;80;80;9;9;30;0;0;19;87
-250;'180;Democratic Republic of the Congo;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-250;'180;Democratic Republic of the Congo;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;700;500;300;300;300;1000;1500;1400;2000;1000;1200;900;900;900;900;400;600;600;600;1600;1900;1300;1400;1400;2300;2300;;;;;;;;;;;3;59;707;707;425;366;546;412;787;422;174;166;579;197;456;212;235;263;326;324;1765;445
-250;'180;Democratic Republic of the Congo;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;1000;508;1300;1300;1300;1300;1562;1566;1920;1000;1047;808;808;808;808;300;500;500;500;1444;1596;1351;1142;1159;1985;1600;;;;;;;;;;;10;238;673;673;758;858;1174;1066;2225;1186;454;328;1290;273;1225;507;746;781;898;842;1286;1220
-250;'180;Democratic Republic of the Congo;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;30;30;30;8;8;8;120;120;120;72;6;6;8;8;8;0;0;0;1;1
-250;'180;Democratic Republic of the Congo;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;33;33;33;50;61;61;476;476;476;23;13;13;12;12;12;0;0;0;4;4
-250;'180;Democratic Republic of the Congo;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12163;18322;16405;15201;17047;25044;47093
-250;'180;Democratic Republic of the Congo;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790;1792;1821;1911;1505;1896;4900
-250;'180;Democratic Republic of the Congo;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;221;88;88;44;9;492
-250;'180;Democratic Republic of the Congo;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;1443;1443;1443;1443;1443;2135
-250;'180;Democratic Republic of the Congo;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;45;1;1;2;1;60
-250;'180;Democratic Republic of the Congo;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7
-250;'180;Democratic Republic of the Congo;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;176;87;87;42;8;432
-250;'180;Democratic Republic of the Congo;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;1436;1436;1436;1436;1436;2128
-250;'180;Democratic Republic of the Congo;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684;1465;1048;1051;774;800;488
-250;'180;Democratic Republic of the Congo;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;1;1;7;7;25;0
-250;'180;Democratic Republic of the Congo;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;120;124;90;140;79;980
-250;'180;Democratic Republic of the Congo;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;3;6;0;13
-250;'180;Democratic Republic of the Congo;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1539;1108;992;1373;2129;1264;7520
-250;'180;Democratic Republic of the Congo;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;3;3;0;34;2505
-250;'180;Democratic Republic of the Congo;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-250;'180;Democratic Republic of the Congo;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-250;'180;Democratic Republic of the Congo;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;760
-250;'180;Democratic Republic of the Congo;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34
-250;'180;Democratic Republic of the Congo;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39
-250;'180;Democratic Republic of the Congo;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54
-250;'180;Democratic Republic of the Congo;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9686;15319;13505;12486;13875;22482;37006
-250;'180;Democratic Republic of the Congo;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;346;370;455;49;394;239
-250;'180;Democratic Republic of the Congo;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197
-250;'180;Democratic Republic of the Congo;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-250;'180;Democratic Republic of the Congo;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;89;648;113;85;410;410
-250;'180;Democratic Republic of the Congo;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;3;0;0;0;0
-250;'180;Democratic Republic of the Congo;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17579;22915;22761;22335;22318;33291;63400
-250;'180;Democratic Republic of the Congo;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;240;243;98;74;163;16
-250;'180;Democratic Republic of the Congo;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;2;25;5;2;0;11
-250;'180;Democratic Republic of the Congo;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-250;'180;Democratic Republic of the Congo;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;726;563;575;807;754;5487
-250;'180;Democratic Republic of the Congo;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;68;8
-250;'180;Democratic Republic of the Congo;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375;2057;2883;2388;3560;2940;2940
-250;'180;Democratic Republic of the Congo;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;13;73;4;10;6;0
-250;'180;Democratic Republic of the Congo;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3558;4410;5204;4789;6551;7664;15086
-250;'180;Democratic Republic of the Congo;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;42;43;31;60;63;4
-250;'180;Democratic Republic of the Congo;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11158;15720;14086;14578;11398;21933;39876
-250;'180;Democratic Republic of the Congo;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;177;119;55;4;26;4
-54;'208;Denmark;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4018943.4;4741241;4437694;4396555;4844816;5030961;4683780
-54;'208;Denmark;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904385.06;3096233;3124751;3243571;3547769;3501128;3288381
-54;'208;Denmark;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;117580;126513;125822;155581;176924;174671;175118;186229;235504;259619;252010;319109;487320;585927;511620;697363;690796;755878;919046;933173;786855;758287;754371;855633;850149;1189078;1369729;1652686;1645720;1990122;1907547;1779054;1287353;1737685;1962459;1784017;1950245;1915016;1832426;1727798;1578216;1664440;1989314;2199178;2235716;2714433;2975691;2667339;1938329;2125168;2408552;1904931;2100303;1994773;1788632;1768261;1912676.07;2382725;2101133;1987744;2096611;2170879;2162705
-54;'208;Denmark;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;14469;16941;19692;24812;28366;28628;30563;39447;43811;50325;48912;52027;70058;121773;98014;97391;105025;129806;189232;230886;236147;258766;237297;247375;193259;244511;290453;355028;392290;459117;435824;439331;368230;417725;525179;444486;460443;459223;408973;421913;317997;349156;399739;447709;477823;592562;648237;699455;555706;603002;671339;453205;442284;454354;373925;416680;448447.98;620830;665259;704224;656132;616475;576578
-54;'208;Denmark;1861;Roundwood;5516;Production;m3;1729000;1802000;1711000;1815000;1934000;1978000;2105000;2559000;2297000;2293000;2109000;2130000;2131000;1565000;1528000;1795000;1728000;1935000;2006000;2110000;2186000;3708000;2952000;2578000;2302000;2314000;2122000;2163000;2101000;2017800;1913500;1915499;1777799;1852398;1925800;1876300;1817501;1845400;1969600;4660600;2191800;1870000;2099700;2175200;3566400;2796600;3010500;2864300;2713300;3057500;2894900;3420300;3862600;4166200;4311300;3842100;3842100;3842100;3842100;3842100;3842100;3842100;3842100
-54;'208;Denmark;1861;Roundwood;5616;Import quantity;m3;164600;155400;184100;190200;192700;190000;179100;174400;153800;161800;145300;173200;344700;323900;129500;123800;131351;58500;60700;105400;74100;103100;118900;177700;280300;340300;232800;230700;282500;286536;319306;364276;221877;484400;680500;524000;977600;804000;753000;637000;533000;596459;870374;782809;771072;617090;788998;547745;517906;1140263;828654;649519;566154;566154;529341;486410;460022;793410;633399;633399;633399;633399;633399
-54;'208;Denmark;1861;Roundwood;5622;Import value;1000 USD;9596;10681;12920;13445;14513;15263;11236;14284;12577;11582;10152;11828;18566;25995;9480;11072;13982;7221;7615;12603;8754;10595;9576;16847;19338;26044;21202;22789;31309;24661;22367;25833;23187;32652;59679;49105;86623;63722;66945;48324;40862;41932;56447;58520;69178;76023;82232;81942;74691;83302;84510;82664;70066;70066;57735;55247;53345.04;91961;75388;75388;75388;75388;75388
-54;'208;Denmark;1861;Roundwood;5916;Export quantity;m3;72000;73000;87300;118500;134000;123300;147300;369900;388800;310700;200400;157900;133200;69600;446200;534400;487320;506300;474100;391600;455700;1131700;1168100;930600;844000;748900;744600;619500;560600;417731;506022;433801;197537;292000;324800;222000;255600;288000;290000;877000;726000;239600;249533;306458;681479;473018;893861;891270;658794;851884;792556;599051;672706;672706;854562;833580;676349;545145;691618;691618;691618;691618;691618
-54;'208;Denmark;1861;Roundwood;5922;Export value;1000 USD;1698;2706;2563;2387;3037;2621;2451;4391;4672;3567;2747;2407;3018;3464;9980;10829;10328;11668;14031;13441;13957;36032;27372;20995;17176;20667;23139;26956;27238;23994;26055;23612;13896;18073;25106;22065;27633;38502;53181;69265;47112;21965;26495;27488;47134;44877;77481;78436;46426;62269;71588;55810;64357;64357;64245;66625;64931.15;62316;66909;66909;66909;66909;66909
-54;'208;Denmark;1862;Roundwood, coniferous;5516;Production;m3;897000;1010000;853000;913000;1011000;1008000;1170000;1443000;1393000;1267000;1168000;1182000;1183000;836000;852000;1172000;1090000;1219000;1212000;1243000;1293000;2913000;2150000;1811000;1547000;1552000;1395000;1451000;1395000;1328799;1178200;1202399;1080299;1153099;1219600;1194900;1168901;1253500;1391800;4020400;1685700;1445900;1643300;1741700;3132500;2332700;2570600;2410300;2155600;2432500;2205300;2469500;2755400;3335900;3301300;2913100;2913100;2913100;2913100;2913100;2913100;2913100;2913100
-54;'208;Denmark;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150256;390585;313186;313186;313186;313186;313186
-54;'208;Denmark;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20768.34;50772;38493;38493;38493;38493;38493
-54;'208;Denmark;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533207;388381;513542;513542;513542;513542;513542
-54;'208;Denmark;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41180.25;34414;46521;46521;46521;46521;46521
-54;'208;Denmark;1863;Roundwood, non-coniferous;5516;Production;m3;832000;792000;858000;902000;923000;970000;935000;1116000;904000;1026000;941000;948000;948000;729000;676000;623000;638000;716000;794000;867000;893000;795000;802000;767000;755000;762000;727000;712000;706000;689001;735300;713100;697500;699299;706200;681400;648600;591900;577800;640200;506100;424100;456400;433500;433900;463900;439900;454000;557700;625000;689600;950800;1107200;830300;1010000;929000;929000;929000;929000;929000;929000;929000;929000
-54;'208;Denmark;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309766;402825;320213;320213;320213;320213;320213
-54;'208;Denmark;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32576.7;41189;36895;36895;36895;36895;36895
-54;'208;Denmark;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143142;156764;178076;178076;178076;178076;178076
-54;'208;Denmark;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23750.91;27902;20388;20388;20388;20388;20388
-54;'208;Denmark;1864;Wood fuel;5516;Production;m3;391000;361000;351000;345000;277000;262000;228000;193000;151000;138000;117000;105000;105000;88000;63000;68000;48000;85000;166000;260000;342000;374000;364000;345000;388000;400000;475000;473000;421000;405600;461700;485300;541300;555900;560600;627400;625300;546900;556500;699200;685200;730100;907400;949700;1280900;1155200;1094800;1056100;1391100;1362200;1416600;1827700;2218000;2068700;2278200;2061100;2061100;2061100;2061100;2061100;2061100;2061100;2061100
-54;'208;Denmark;1864;Wood fuel;5616;Import quantity;m3;400;400;1600;700;400;400;400;300;500;500;500;2900;9400;2900;2900;400;800;1400;10400;7000;4500;26000;31900;28600;11800;20300;28000;25200;14500;15800;24800;40467;40000;36000;26000;47000;72000;75000;89000;107000;85000;139330;288171;292137;304817;239565;173643;272707;225717;213721;309718;290172;161287;161287;152021;101782;75394;140991;69544;69544;69544;69544;69544
-54;'208;Denmark;1864;Wood fuel;5622;Import value;1000 USD;40;40;17;12;7;6;8;11;21;18;16;62;162;50;50;32;66;71;728;403;195;1100;900;801;696;795;1440;1126;531;551;1032;1703;1990;2405;1737;3100;3913;3134;4014;3841;4567;7499;14202;13771;17655;18343;16043;26254;21735;25162;35383;29574;17786;17786;14916;10892;8990;15093;9635;9635;9635;9635;9635
-54;'208;Denmark;1864;Wood fuel;5916;Export quantity;m3;44500;44100;56600;74400;76100;81100;93600;151500;156400;148000;105400;104700;86200;9500;2100;3000;2800;4700;7300;12900;10600;49100;78500;76800;11300;10500;10500;3400;4500;4100;2000;3025;2483;4000;6800;1000;16900;9000;1000;1000;0;680;787;211;36769;2456;32636;31565;53285;77260;115445;114837;113146;113146;222586;166630;9399;8527;45596;45596;45596;45596;45596
-54;'208;Denmark;1864;Wood fuel;5922;Export value;1000 USD;95;402;459;524;575;595;608;877;1129;1150;963;1077;1058;237;51;71;62;91;186;581;510;2400;2500;2500;338;387;387;258;253;190;61;116;86;120;204;50;317;149;0;0;0;34;107;24;3173;1083;1557;1468;1566;2393;3431;3215;3881;3881;5137;2791;1097;1051;1334;1334;1334;1334;1334
-54;'208;Denmark;1627;Wood fuel, coniferous;5516;Production;m3;114000;101000;87000;88000;69000;63000;65000;63000;48000;44000;34000;33000;33000;24000;13000;15000;11000;21000;33000;58000;108000;132000;138000;105000;145000;150000;211000;229000;199000;186600;195400;211400;253000;268300;270100;316200;331900;280100;300000;442800;406800;474200;587400;637200;969200;827000;815600;744700;961200;898200;916200;1093500;1337100;1443200;1532400;1357500;1357500;1357500;1357500;1357500;1357500;1357500;1357500
-54;'208;Denmark;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20376;57490;35430;35430;35430;35430;35430
-54;'208;Denmark;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2176;5863;3623;3623;3623;3623;3623
-54;'208;Denmark;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2231;2409;893;893;893;893;893
-54;'208;Denmark;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;194;101;101;101;101;101
-54;'208;Denmark;1628;Wood fuel, non-coniferous;5516;Production;m3;277000;260000;264000;257000;208000;199000;163000;130000;103000;94000;83000;72000;72000;64000;50000;53000;37000;64000;133000;202000;234000;242000;226000;240000;243000;250000;264000;244000;222000;219000;266300;273900;288300;287600;290500;311200;293400;266800;256500;256400;278400;255900;320000;312500;311700;328200;279200;311400;429900;464000;500400;734200;880900;625500;745800;703600;703600;703600;703600;703600;703600;703600;703600
-54;'208;Denmark;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55018;83501;34114;34114;34114;34114;34114
-54;'208;Denmark;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6814;9230;6012;6012;6012;6012;6012
-54;'208;Denmark;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7168;6118;44703;44703;44703;44703;44703
-54;'208;Denmark;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810;857;1233;1233;1233;1233;1233
-54;'208;Denmark;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;400;400;1600;700;400;400;400;300;500;500;500;2900;9400;2900;2900;400;800;1400;10400;7000;4500;26000;31900;28600;11800;20300;28000;25200;14500;15800;24800;40467;40000;36000;26000;47000;72000;75000;89000;107000;85000;139330;288171;292137;304817;239565;173643;272707;225717;213721;309718;290172;161287;161287;152021;101782;;;;;;;
-54;'208;Denmark;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;40;40;17;12;7;6;8;11;21;18;16;62;162;50;50;32;66;71;728;403;195;1100;900;801;696;795;1440;1126;531;551;1032;1703;1990;2405;1737;3100;3913;3134;4014;3841;4567;7499;14202;13771;17655;18343;16043;26254;21735;25162;35383;29574;17786;17786;14916;10892;;;;;;;
-54;'208;Denmark;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;44500;44100;56600;74400;76100;81100;93600;151500;156400;148000;105400;104700;86200;9500;2100;3000;2800;4700;7300;12900;10600;49100;78500;76800;11300;10500;10500;3400;4500;4100;2000;3025;2483;4000;6800;1000;16900;9000;1000;1000;0;680;787;211;36769;2456;32636;31565;53285;77260;115445;114837;113146;113146;222586;166630;;;;;;;
-54;'208;Denmark;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;95;402;459;524;575;595;608;877;1129;1150;963;1077;1058;237;51;71;62;91;186;581;510;2400;2500;2500;338;387;387;258;253;190;61;116;86;120;204;50;317;149;0;0;0;34;107;24;3173;1083;1557;1468;1566;2393;3431;3215;3881;3881;5137;2791;;;;;;;
-54;'208;Denmark;1865;Industrial roundwood;5516;Production;m3;1338000;1441000;1360000;1470000;1657000;1716000;1877000;2366000;2146000;2155000;1992000;2025000;2026000;1477000;1465000;1727000;1680000;1850000;1840000;1850000;1844000;3334000;2588000;2233000;1914000;1914000;1647000;1690000;1680000;1612200;1451800;1430199;1236499;1296498;1365200;1248900;1192201;1298500;1413100;3961400;1506600;1139900;1192300;1225500;2285500;1641400;1915700;1808200;1322200;1695300;1478300;1592600;1644600;2097500;2033100;1781000;1781000;1781000;1781000;1781000;1781000;1781000;1781000
-54;'208;Denmark;1865;Industrial roundwood;5616;Import quantity;m3;164200;155000;182500;189500;192300;189600;178700;174100;153300;161300;144800;170300;335300;321000;126600;123400;130551;57100;50300;98400;69600;77100;87000;149100;268500;320000;204800;205500;268000;270736;294506;323809;181877;448400;654500;477000;905600;729000;664000;530000;448000;457129;582203;490672;466255;377525;615355;275038;292189;926542;518936;359347;404867;404867;377320;384628;384628;652419;563855;563855;563855;563855;563855
-54;'208;Denmark;1865;Industrial roundwood;5622;Import value;1000 USD;9556;10641;12903;13433;14506;15257;11228;14273;12556;11564;10136;11766;18404;25945;9430;11040;13916;7150;6887;12200;8559;9495;8676;16046;18642;25249;19762;21663;30778;24110;21335;24130;21197;30247;57942;46005;82710;60588;62931;44483;36295;34433;42245;44749;51523;57680;66189;55688;52956;58140;49127;53090;52280;52280;42819;44355;44355.04;76868;65753;65753;65753;65753;65753
-54;'208;Denmark;1865;Industrial roundwood;5916;Export quantity;m3;27500;28900;30700;44100;57900;42200;53700;218400;232400;162700;95000;53200;47000;60100;444100;531400;484520;501600;466800;378700;445100;1082600;1089600;853800;832700;738400;734100;616100;556100;413631;504022;430776;195054;288000;318000;221000;238700;279000;289000;876000;726000;238920;248746;306247;644710;470562;861225;859705;605509;774624;677111;484214;559560;559560;631976;666950;666950;536618;646022;646022;646022;646022;646022
-54;'208;Denmark;1865;Industrial roundwood;5922;Export value;1000 USD;1603;2304;2104;1863;2462;2026;1843;3514;3543;2417;1784;1330;1960;3227;9929;10758;10266;11577;13845;12860;13447;33632;24872;18495;16838;20280;22752;26698;26985;23804;25994;23496;13810;17953;24902;22015;27316;38353;53181;69265;47112;21931;26388;27464;43961;43794;75924;76968;44860;59876;68157;52595;60476;60476;59108;63834;63834.15;61265;65575;65575;65575;65575;65575
-54;'208;Denmark;1866;Industrial roundwood, coniferous;5516;Production;m3;783000;909000;766000;825000;942000;945000;1105000;1380000;1345000;1223000;1134000;1149000;1150000;812000;839000;1157000;1079000;1198000;1179000;1185000;1185000;2781000;2012000;1706000;1402000;1402000;1184000;1222000;1196000;1142199;982800;990999;827299;884799;949500;878700;837001;973400;1091800;3577600;1278900;971700;1055900;1104500;2163300;1505700;1755000;1665600;1194400;1534300;1289100;1376000;1418300;1892700;1768900;1555600;1555600;1555600;1555600;1555600;1555600;1555600;1555600
-54;'208;Denmark;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128591;108914;136563;44000;180000;178000;115000;222000;242000;252000;162000;124000;194363;254842;195549;244561;148156;195388;116474;148713;633652;149504;154232;118881;118881;117116;129880;129880;333095;277756;277756;277756;277756;277756
-54;'208;Denmark;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10642;7372;9166;7603;10077;9964;12000;22569;28205;28240;22056;15864;19134;23279;25665;26433;28754;35359;25080;33416;36719;20993;28184;24229;24229;19325;18592;18592.34;44909;34870;34870;34870;34870;34870
-54;'208;Denmark;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355904;450800;399776;157875;234000;248000;149000;114000;145000;124000;706000;591000;166200;180052;237711;550383;379797;768315;745068;536578;646136;563820;370570;435178;435178;515617;530976;530976;385972;512649;512649;512649;512649;512649
-54;'208;Denmark;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15888;17587;16868;5986;8568;9082;6200;4688;7014;7167;23295;20311;7303;10152;13632;31249;28165;57217;60520;32861;46602;45444;29509;34352;34352;37920;40893;40893.25;34220;46420;46420;46420;46420;46420
-54;'208;Denmark;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128591;108914;136563;44000;180000;178000;115000;222000;242000;252000;162000;124000;194363;254842;195549;244561;148156;195388;116474;148713;633652;149504;154232;118881;118881;117116;129880;129880;333095;277756;277756;277756;277756;277756
-54;'208;Denmark;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10642;7372;9166;7603;10077;9964;12000;22569;28205;28240;22056;15864;19134;23279;25665;26433;28754;35359;25080;33416;36719;20993;28184;24229;24229;19325;18592;18592.34;44909;34870;34870;34870;34870;34870
-54;'208;Denmark;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355904;450800;399776;157875;234000;248000;149000;114000;145000;124000;706000;591000;166200;180052;237711;550383;379797;768315;745068;536578;646136;563820;370570;435178;435178;515617;530976;530976;385972;512649;512649;512649;512649;512649
-54;'208;Denmark;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15888;17587;16868;5986;8568;9082;6200;4688;7014;7167;23295;20311;7303;10152;13632;31249;28165;57217;60520;32861;46602;45444;29509;34352;34352;37920;40893;40893.25;34220;46420;46420;46420;46420;46420
-54;'208;Denmark;1867;Industrial roundwood, non-coniferous;5516;Production;m3;555000;532000;594000;645000;715000;771000;772000;986000;801000;932000;858000;876000;876000;665000;626000;570000;601000;652000;661000;665000;659000;553000;576000;527000;512000;512000;463000;468000;484000;470001;469000;439200;409200;411699;415700;370200;355200;325100;321300;383800;227700;168200;136400;121000;122200;135700;160700;142600;127800;161000;189200;216600;226300;204800;264200;225400;225400;225400;225400;225400;225400;225400;225400
-54;'208;Denmark;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142145;185592;187246;137877;268400;476500;362000;683600;487000;412000;368000;324000;262766;327361;295123;221694;229369;419967;158564;143476;292890;369432;205115;285986;285986;260204;254748;254748;319324;286099;286099;286099;286099;286099
-54;'208;Denmark;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13468;13963;14964;13594;20170;47978;34005;60141;32383;34691;22427;20431;15299;18966;19084;25090;28926;30830;30608;19540;21421;28134;24906;28051;28051;23494;25763;25762.7;31959;30883;30883;30883;30883;30883
-54;'208;Denmark;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57727;53222;31000;37179;54000;70000;72000;124700;134000;165000;170000;135000;72720;68694;68536;94327;90765;92910;114637;68931;128488;113291;113644;124382;124382;116359;135974;135974;150646;133373;133373;133373;133373;133373
-54;'208;Denmark;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7916;8407;6628;7824;9385;15820;15815;22628;31339;46014;45970;26801;14628;16236;13832;12712;15629;18707;16448;11999;13274;22713;23086;26124;26124;21188;22941;22940.91;27045;19155;19155;19155;19155;19155
-54;'208;Denmark;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173;4831;4957;1772;1400;1500;1000;92000;11000;9000;6000;7000;5446;6593;4955;6694;5369;15881;3615;2120;3679;1672;3467;3100;3100;1812;1253;1253;3282;3264;3264;3264;3264;3264
-54;'208;Denmark;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;1020;1113;694;1116;1196;900;23517;6417;5591;3841;4687;3541;4508;3778;5897;4525;6334;3899;1786;1721;1971;3511;3245;3245;1521;1051;1051.48;1376;1368;1368;1368;1368;1368
-54;'208;Denmark;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;9464;5004;4885;4308;53057;18277;1752;1300;936;1106;929;858;858;835;683;683;307;240;240;240;240;240
-54;'208;Denmark;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1343;1433;2478;1803;1914;1761;1687;3133;3539;5162;950;619;190;388;248;162;162;358;293;292.94;186;146;146;146;146;146
-54;'208;Denmark;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135972;180761;182289;136105;267000;475000;361000;591600;476000;403000;362000;317000;257320;320768;290168;215000;224000;404086;154949;141356;289211;367760;201648;282886;282886;258392;253495;253495;316042;282835;282835;282835;282835;282835
-54;'208;Denmark;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12175;12943;13851;12900;19054;46782;33105;36624;25966;29100;18586;15744;11758;14458;15306;19193;24401;24496;26709;17754;19700;26163;21395;24806;24806;21973;24712;24711.22;30583;29515;29515;29515;29515;29515
-54;'208;Denmark;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57727;53222;31000;37179;54000;70000;72000;124700;133000;163000;168000;133000;63256;63690;63651;90019;37708;74633;112885;67631;127552;112185;112715;123524;123524;115524;135291;135291;150339;133133;133133;133133;133133;133133
-54;'208;Denmark;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7916;8407;6628;7824;9385;15820;15815;22628;29996;44581;43492;24998;12714;14475;12145;9579;12090;13545;15498;11380;13084;22325;22838;25962;25962;20830;22648;22647.96;26859;19009;19009;19009;19009;19009
-54;'208;Denmark;1868;Sawlogs and veneer logs;5516;Production;m3;930000;1012000;937000;1015000;1138000;1169000;1305000;1788000;1552000;1476000;1321000;1425000;1425000;955000;796000;888000;927000;1159000;1184000;1194000;1188000;2016000;1520000;1233000;941000;941000;806000;942000;970000;873962;808727;741520;631262;659927;686128;622713;464349;565558;734700;1788100;590300;505600;522100;550300;1005800;668800;764500;692100;613300;767900;711400;855400;939200;1182300;1053800;1069900;1069900;1069900;1069900;1069900;1069900;1069900;1069900
-54;'208;Denmark;1868;Sawlogs and veneer logs;5616;Import quantity;m3;149600;126900;160600;174200;171200;160800;147600;146400;137500;149000;129700;152100;318900;304200;115700;111600;118300;44000;39700;87000;55900;63000;79000;124300;253600;293200;188000;82000;105000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;9136;10011;12378;13018;13987;14484;10326;13478;12006;11106;9576;10988;17524;24765;8476;9855;12449;5242;5134;10165;6175;7100;7049;11060;16049;22675;16952;8200;10734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1868;Sawlogs and veneer logs;5916;Export quantity;m3;8700;12700;15600;13900;24000;19600;13600;130400;175700;64200;43400;36700;31600;29100;16800;11900;14720;24500;58100;93000;84700;365300;232400;99900;55000;24300;48900;567000;507000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1288;2049;1872;1429;2008;1736;1466;2752;2951;1454;1196;1079;1731;2616;2161;1348;2006;2680;5627;5611;4458;18150;8941;4360;2991;2802;4159;22558;20753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;498000;599000;480000;516000;610000;605000;733000;956000;893000;723000;640000;720000;720000;468000;383000;529000;504000;675000;662000;668000;668000;1548000;1032000;784000;523000;523000;453000;526000;529000;465145;395663;367387;282772;312083;334904;309932;285789;392588;542200;1544200;448100;409700;433500;467300;916500;576100;673200;600200;534200;660900;586500;710800;787900;1042100;871300;928400;928400;928400;928400;928400;928400;928400;928400
-54;'208;Denmark;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;11400;11400;6500;8500;5800;7500;10700;4600;10100;20600;22300;43900;206500;171900;44400;52900;57900;21700;18500;31400;9900;8000;10600;33600;85600;127400;70600;82000;105000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;372;360;206;332;241;320;387;202;440;538;538;1025;5372;4959;1622;2074;2730;1304;1190;2649;833;700;947;2990;4344;8528;6146;8200;10734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;1100;1800;100;3100;4500;5700;800;104300;151600;39700;20200;11400;3500;10500;8600;3700;7420;12200;17700;23100;29000;330300;209400;82300;43200;12700;23900;567000;507000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;22;55;4;67;93;135;33;1102;1716;560;382;247;138;552;487;246;665;999;1129;1450;1887;16500;6564;2550;1394;674;1589;22558;20753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;432000;413000;457000;499000;528000;564000;572000;832000;659000;753000;681000;705000;705000;487000;413000;359000;423000;484000;522000;526000;520000;468000;488000;449000;418000;418000;353000;416000;441000;408817;413064;374133;348490;347844;351224;312781;178560;172970;192500;243900;142200;95900;88600;83000;89300;92700;91300;91900;79100;107000;124900;144600;151300;140200;182500;141500;141500;141500;141500;141500;141500;141500;141500
-54;'208;Denmark;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;138200;115500;154100;165700;165400;153300;136900;141800;127400;128400;107400;108200;112400;132300;71300;58700;60400;22300;21200;55600;46000;55000;68400;90700;168000;165800;117400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;8764;9651;12172;12686;13746;14164;9939;13276;11566;10568;9038;9963;12152;19806;6854;7781;9719;3938;3944;7516;5342;6400;6102;8070;11705;14147;10806;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;7600;10900;15500;10800;19500;13900;12800;26100;24100;24500;23200;25300;28100;18600;8200;8200;7300;12300;40400;69900;55700;35000;23000;17600;11800;11600;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1266;1994;1868;1362;1915;1601;1433;1650;1235;894;814;832;1593;2064;1674;1102;1341;1681;4498;4161;2571;1650;2377;1810;1597;2128;2570;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270840;395700;1147100;486500;343200;353500;350400;650800;499100;603700;573500;373300;483700;407400;379700;371300;476000;512500;380800;380800;380800;380800;380800;380800;380800;380800
-54;'208;Denmark;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;274800;1016700;415400;281000;311200;318600;623400;464800;540900;532700;330100;436700;351300;332600;315200;425300;448800;313600;313600;313600;313600;313600;313600;313600;313600
-54;'208;Denmark;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20840;120900;130400;71100;62200;42300;31800;27400;34300;62800;40800;43200;47000;56100;47100;56100;50700;63700;67200;67200;67200;67200;67200;67200;67200;67200
-54;'208;Denmark;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;100;1100;2600;3000;500;1600;2400;5500;4400;109000;161000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;5;42;64;75;27;86;82;195;505;10450;19326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;300;500;1100;9500;17700;12700;34700;65500;41700;86100;41500;11500;10400;19000;424000;515600;467000;468500;402000;277300;338400;695300;847100;743400;772000;711200;679000;49000;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;2;4;8;64;156;119;284;492;387;775;407;132;81;278;7575;9136;8036;8445;7594;5980;7413;13906;15227;13400;13478;17190;18363;4114;6207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1870;Pulpwood and particles (1961-1997);5516;Production;m3;11000;13000;49000;23000;40000;52000;62000;75000;83000;124000;121000;77000;77000;109000;280000;431000;389000;336000;287000;287000;287000;910000;707000;639000;612000;612000;506000;459000;374000;441555;378477;409861;376965;394711;420910;388046;390290;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;100;1100;2600;3000;500;1600;2400;5500;4400;109000;161000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;5;42;64;75;27;86;82;195;505;10450;19326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;300;500;1100;9500;17700;12700;34700;65500;41700;86100;41500;11500;10400;19000;424000;515600;467000;468500;402000;277300;338400;695300;847100;743400;772000;711200;679000;49000;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;2;4;8;64;156;119;284;492;387;775;407;132;81;278;7575;9136;8036;8445;7594;5980;7413;13906;15227;13400;13478;17190;18363;4114;6207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;27000;5000;10000;13000;13000;34000;35000;45000;44000;24000;24000;24000;152000;326000;291000;238000;207000;207000;207000;848000;646000;588000;545000;545000;456000;435000;357000;404474;344055;367387;337543;352701;378492;350270;342290;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;11000;13000;22000;18000;30000;39000;49000;41000;48000;79000;77000;53000;53000;85000;128000;105000;98000;98000;80000;80000;80000;62000;61000;51000;67000;67000;50000;24000;17000;37081;34422;42474;39422;42010;42418;37776;48000;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1871;Other industrial roundwood;5516;Production;m3;397000;416000;374000;432000;479000;495000;510000;503000;511000;555000;550000;523000;524000;413000;389000;408000;364000;355000;369000;369000;369000;408000;361000;361000;361000;361000;335000;289000;336000;296683;264596;278818;228272;241860;258162;238141;337562;462102;282700;1026200;429800;291100;316700;324800;628900;473500;547500;542600;335600;443700;359500;357500;334100;439200;466800;330300;330300;330300;330300;330300;330300;330300;330300
-54;'208;Denmark;1871;Other industrial roundwood;5616;Import quantity;m3;14600;28100;21900;15300;21100;28800;31100;27700;15800;12300;15100;18200;16400;16800;10900;11800;12251;13100;10500;10300;11100;11100;7500;23200;12500;21300;12400;14500;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1871;Other industrial roundwood;5622;Import value;1000 USD;420;630;525;415;519;773;902;795;550;458;560;778;880;1180;954;1185;1467;1908;1748;1993;2320;2320;1600;4900;2511;2379;2305;3013;718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1871;Other industrial roundwood;5916;Export quantity;m3;18500;15700;14000;20700;16200;9900;5400;22500;15000;12400;10100;5000;5000;12000;3300;3900;2800;8600;6700;8400;22000;22000;10100;10500;5700;2900;6200;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1871;Other industrial roundwood;5922;Export value;1000 USD;313;251;224;370;298;171;93;270;205;188;181;119;148;333;193;274;224;452;624;1269;1576;1576;704;735;369;288;230;26;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;285000;310000;259000;304000;322000;327000;359000;390000;417000;455000;450000;405000;406000;320000;304000;302000;284000;285000;310000;310000;310000;385000;334000;334000;334000;334000;275000;261000;310000;272580;243082;256225;206984;220015;236104;218498;208922;330812;274800;1016700;415400;281000;311200;318600;623400;464800;540900;532700;330100;436700;351300;332600;315200;425300;448800;313600;313600;313600;313600;313600;313600;313600;313600
-54;'208;Denmark;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;112000;106000;115000;128000;157000;168000;151000;113000;94000;100000;100000;118000;118000;93000;85000;106000;80000;70000;59000;59000;59000;23000;27000;27000;27000;27000;60000;28000;26000;24103;21514;22593;21288;21845;22058;19643;128640;131290;7900;9500;14400;10100;5500;6200;5500;8700;6600;9900;5500;7000;8200;24900;18900;13900;18000;16700;16700;16700;16700;16700;16700;16700;16700
-54;'208;Denmark;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;14600;28100;21900;15300;21100;28800;31100;27700;15800;12300;15100;18200;16400;16800;10900;11800;12251;13100;10500;10300;11100;11100;7500;23200;12500;21300;12400;14500;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;420;630;525;415;519;773;902;795;550;458;560;778;880;1180;954;1185;1467;1908;1748;1993;2320;2320;1600;4900;2511;2379;2305;3013;718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;18500;15700;14000;20700;16200;9900;5400;22500;15000;12400;10100;5000;5000;12000;3300;3900;2800;8600;6700;8400;22000;22000;10100;10500;5700;2900;6200;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;313;251;224;370;298;171;93;270;205;188;181;119;148;333;193;274;224;452;624;1269;1576;1576;704;735;369;288;230;26;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;645;1140;408;976;3498;2445;3955;3481;333;650;1616;0;1917;2328;3019;3461;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1630;Wood charcoal;5610;Import quantity;t;100;100;58;100;100;100;300;100;100;58;300;300;900;1000;1000;2200;2651;1100;2300;3200;3000;3000;4300;4300;2400;3900;2700;3600;7100;7200;6600;10019;7293;7293;7100;7100;13400;10000;11000;13000;12000;17273;20462;17006;23753;20436;12856;10685;14116;9249;9047;15427;15540;15540;20825;10588;10588;12116;11708;11708;11708;11708;11708
-54;'208;Denmark;1630;Wood charcoal;5622;Import value;1000 USD;14;14;7;12;10;18;26;14;8;7;39;43;127;196;229;610;759;513;926;403;195;195;410;410;821;1683;1275;1820;2810;3198;3214;5006;1517;1517;1477;1477;4924;3880;3870;4213;3846;5568;9697;6435;10601;9258;7305;6492;8700;5572;6776;7048;9486;9486;12367;5781;5780.59;6487;7061;7061;7061;7061;7061
-54;'208;Denmark;1630;Wood charcoal;5910;Export quantity;t;0;0;0;0;0;0;0;0;0;0;200;300;300;300;100;200;200;100;100;200;100;100;100;100;100;100;100;100;100;100;100;424;86;86;200;200;600;0;0;0;1000;311;424;795;767;669;887;507;512;644;1242;1278;1352;1352;3570;2127;2127;4482;1941;1941;1941;1941;1941
-54;'208;Denmark;1630;Wood charcoal;5922;Export value;1000 USD;0;0;0;0;0;0;0;0;0;0;24;51;61;89;39;47;71;45;54;97;49;49;49;49;40;44;44;52;52;52;52;282;41;41;107;107;240;149;0;0;361;146;278;471;487;473;624;385;813;707;1148;1205;1454;1454;2757;1708;1708.05;2599;1451;1451;1451;1451;1451
-54;'208;Denmark;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291000;258000;348000;166000;111068;159036;145702;226000;280246;280246;274246;168000;158871;168027;168027;168030;168030;168030;168030;168030;168030;168030;168030;168030;168030;168030
-54;'208;Denmark;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735000;809000;945000;458000;907808;886131;1066769;1378640;1412378;1334337;1582118;1735943;2707330;2931645;544090;308000;288000;288000;288000;288000;1045143;916047;916047;916047;916047;916047
-54;'208;Denmark;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19699;16055;15488;20431;43595;57040;68640;96312;153231;147736;164603;179444;309701;438059;46203;37879;37879;37879;37879;37879.32;65540;59299;59299;59299;59299;59299
-54;'208;Denmark;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702000;222000;212000;91000;37866;67635;28593;69764;86360;362624;201955;175132;252149;203588;115646;140000;32000;32000;32000;32000;116333;90853;90853;90853;90853;90853
-54;'208;Denmark;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15818;5448;3346;3245;2111;5710;2472;12009;7718;17538;11101;11140;17772;11609;9544;9598;9598;9598;9598;9598.47;7303;5896;5896;5896;5896;5896
-54;'208;Denmark;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14771;13843;120000;174000;174000;168000;168000;158871;168027;168027;168030;168030;168030;168030;168030;168030;168030;168030;168030;168030;168030
-54;'208;Denmark;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;1500;200;200;100;400;500;500;300;300;1800;17700;3300;11700;17200;31700;54000;46437;16000;66000;53000;40000;275000;541000;399000;329000;148000;368153;276498;253816;214603;314879;304116;507897;437566;336979;808645;479090;250000;240000;240000;240000;240000;877032;852513;852513;852513;852513;852513
-54;'208;Denmark;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;29;5;5;6;48;34;34;30;30;90;1400;464;738;589;1077;1462;1722;1419;3742;1677;2400;16501;14625;7884;4956;5168;13369;11070;12432;12109;14401;16187;30317;20996;19970;45066;37353;28637;28637;28637;28637;28637.36;57196;52864;52864;52864;52864;52864
-54;'208;Denmark;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;64300;91500;103900;90000;110000;126300;126300;194600;217300;170500;167200;154000;176000;214800;224900;150300;126278;54000;95000;93000;90000;228000;691000;211000;198000;86000;34185;55812;21766;29233;9848;278037;172594;142688;179832;174532;98346;70000;18000;18000;18000;18000;95340;75656;75656;75656;75656;75656
-54;'208;Denmark;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;1498;2427;2872;2576;3663;3751;3751;4581;5200;4762;6275;5900;8187;9421;10468;5695;6092;17181;5172;5063;5125;9345;15072;4731;2726;2644;1529;3948;1462;2092;1536;8731;6896;5828;7791;8682;7875;7964;7964;7964;7964;7964.47;5815;4540;4540;4540;4540;4540
-54;'208;Denmark;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;73000;73000;73000;75000;291000;258000;348000;166000;111068;144265;131859;106000;106246;106246;106246;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;12900;12900;31200;38000;27600;26200;24800;22200;22200;20200;20600;20800;23400;31500;32600;40800;49600;49700;87936;10000;14000;8600;12400;42600;194000;410000;616000;310000;539655;609633;812953;1164037;1097499;1030221;1074221;1298377;2370351;2123000;65000;58000;48000;48000;48000;48000;168111;63534;63534;63534;63534;63534
-54;'208;Denmark;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;220;220;704;871;781;880;837;758;758;538;538;499;1302;1782;1474;1609;1811;1930;2666;941;1249;1315;1572;3511;5074;8171;10532;15263;30226;45970;56208;84203;138830;131549;134286;158448;289731;392993;8850;9242;9242;9242;9242;9241.96;8344;6435;6435;6435;6435;6435
-54;'208;Denmark;1620;Wood residues;5916;Export quantity;m3;;;;;;;68000;98000;154000;297000;243000;191000;148000;75500;82900;33800;42100;22000;19700;18300;21200;21200;63600;61400;72700;58900;53700;30000;28200;23900;22900;17443;4000;6400;2400;1400;2900;11000;11000;14000;5000;3681;11823;6827;40531;76512;84587;29361;32444;72317;29056;17300;70000;14000;14000;14000;14000;20993;15197;15197;15197;15197;15197
-54;'208;Denmark;1620;Wood residues;5922;Export value;1000 USD;;;;;;;680;980;1500;3000;2400;1900;1600;1660;2030;898;1089;671;648;858;924;924;1622;1622;1975;2483;4159;1484;1227;1194;1290;1270;432;632;424;418;446;746;717;620;601;582;1762;1010;9917;6182;8807;4205;5312;9981;2927;1669;1634;1634;1634;1634;1634;1488;1356;1356;1356;1356;1356
-54;'208;Denmark;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160000;160000;160000;160000;160000;160000;160000
-54;'208;Denmark;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99930;92000;92000;150000;150000;180000;180000;180000;180000;180000;180000;180000
-54;'208;Denmark;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100000;2326558;2343370;2188596;2143721;2908721;3504177;3273362;2713852;3334179;2823085;2823085
-54;'208;Denmark;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366375;421355;440198;336358;309994;456818;638676;565377;448975;550677;629097;629097
-54;'208;Denmark;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54800;128279;149794;53621;215237;327237;711971;1065190;1445776;840494;266231;266231
-54;'208;Denmark;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11150;29026;31647;10859;31426;54113;128339;193839;243080;132743;100398;100398
-54;'208;Denmark;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99930;92000;92000;150000;150000;180000;180000;180000;180000;180000;180000;180000
-54;'208;Denmark;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2016000;2236000;2256100;2072000;2053000;2818000;3340884;3124510;2565000;3185327;2674233;2674233
-54;'208;Denmark;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352488;406293;423374;319712;298148;444972;610603;541764;425362;527064;605484;605484
-54;'208;Denmark;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;126700;149500;53400;215000;327000;709476;1064414;1445000;839718;265455;265455
-54;'208;Denmark;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10956;28633;31501;10749;31265;53952;127886;193609;242850;132513;100168;100168
-54;'208;Denmark;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;90558;87270;116596;90721;90721;163293;148852;148852;148852;148852;148852
-54;'208;Denmark;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13887;15062;16824;16646;11846;11846;28073;23613;23613;23613;23613;23613
-54;'208;Denmark;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1579;294;221;237;237;2495;776;776;776;776;776
-54;'208;Denmark;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;393;146;110;161;161;453;230;230;230;230;230
-54;'208;Denmark;1872;Sawnwood;5516;Production;m3;575000;610000;585000;650000;695000;710502;775000;850000;822000;861000;852000;816000;805000;770000;700000;810000;810000;806000;800000;800000;829000;829000;829000;829000;879000;879000;861000;861000;861000;861000;861000;620000;583000;583000;583000;583000;583000;238000;344000;364000;283000;244000;248000;196000;196000;300000;300000;300000;441000;448016;372160;372160;357602;356887;376887;386887;386887;386887;386887;386887;386887;386887;386887
-54;'208;Denmark;1872;Sawnwood;5616;Import quantity;m3;924600;1005000;894000;1152000;1260000;1054000;1122500;1013800;1279200;1336700;1174400;1534800;1839400;1273200;1000900;1521400;1369400;1479400;1583600;1317000;926200;1046100;1317900;1490200;1427900;1736900;1539800;1547500;1439000;1496000;1483000;1735833;1722000;2326000;1921000;1630000;2354000;4383000;4744000;2925000;2659000;2679269;2301681;2350616;2200547;2650861;2298201;1775438;1246520;1831415;1356124;1370738;1886000;2390000;2003100;1634000;1634000;2543653;2978046;2978046;2978046;2978046;2978046
-54;'208;Denmark;1872;Sawnwood;5622;Import value;1000 USD;46024;48996;45698;61427;73294;63440;63202;57165;76104;83129;74725;102122;173132;202476;144476;234546;233181;241491;300714;290659;181604;204480;212048;248786;222453;324130;337016;342210;329416;420447;391086;464675;371654;578860;495396;469503;612463;565737;531680;505429;448395;459697;563437;603536;592395;809053;861182;614732;400382;424226;441975;380671;390144;437179;358830;354528;354528;413493;367819;367819;367819;367819;367819
-54;'208;Denmark;1872;Sawnwood;5916;Export quantity;m3;65200;75500;81900;102000;110300;95500;85900;132600;138000;140200;128300;117400;98300;99000;88200;88200;89300;111400;112800;210000;193700;198500;267800;198400;135200;106700;207500;111900;176000;89000;81000;193337;122667;100000;94000;87000;176100;352000;175000;117000;142000;280532;127285;132963;143410;489623;418018;463064;449717;454476;567247;306882;204000;223967;250200;230271;230271;190815;154672;154672;154672;154672;154672
-54;'208;Denmark;1872;Sawnwood;5922;Export value;1000 USD;4772;5369;6233;7493;8634;8101;7324;9279;9899;10369;11048;12084;14330;20271;18965;20829;23871;26669;31448;40810;36357;37396;40793;35614;30050;31989;36626;22902;34953;42758;45180;73725;56302;76902;104968;90995;120155;112371;69811;56255;46149;63302;51743;51297;54869;94998;68689;92291;73475;70521;64427;54236;51934;64756;61000;57470;57470.42;66481;56341;56341;56341;56341;56341
-54;'208;Denmark;1632;Sawnwood, coniferous;5516;Production;m3;265000;325000;255000;290000;320000;320251;395000;350000;416000;403000;398500;363000;382500;370000;350000;405000;405000;403000;400000;400000;414500;414500;414500;414500;464500;464500;455500;455500;455500;455500;455500;368000;338000;338000;338000;338000;338000;191000;297000;327000;240000;217000;225000;175000;175000;250000;250000;250000;250000;239158;248397;248397;290715;290000;310000;320000;320000;320000;320000;320000;320000;320000;320000
-54;'208;Denmark;1632;Sawnwood, coniferous;5616;Import quantity;m3;864850;949650;834350;1084650;1185700;978050;1052850;944000;1192850;1247250;1109700;1447600;1725150;1184700;933350;1421200;1287000;1405450;1506000;1232550;871750;988550;1236100;1360650;1330200;1634000;1466500;1473750;1430500;1483500;1433000;1663604;1682000;2278000;1868000;1585000;2254000;4046000;4569000;2794000;2465000;2428633;2171681;2065652;2024780;1858123;1723397;1645256;1166577;1742415;1242124;1272738;1784000;2290000;1904100;1535000;1535000;1983779;2144015;2144015;2144015;2144015;2144015
-54;'208;Denmark;1632;Sawnwood, coniferous;5622;Import value;1000 USD;39124;41843;37746;52704;63099;52980;54055;47409;63062;69568;64871;88171;149355;178496;126629;195622;204318;217089;269269;261788;160282;181890;181219;200043;195620;285296;304432;310433;324542;413125;381078;420456;346484;522921;428799;410550;544561;494255;448968;422409;360783;376715;474510;492142;481711;580380;720503;497816;330867;351650;354858;307387;314896;363204;283173;278871;278871;312334;264687;264687;264687;264687;264687
-54;'208;Denmark;1632;Sawnwood, coniferous;5916;Export quantity;m3;17500;23600;24300;24750;19000;14700;9950;21800;30450;35400;32550;23400;15200;25250;27850;27100;25700;36050;51800;101200;104450;133250;161300;115300;76500;58100;68500;93050;167500;81000;73000;137065;73468;54000;47000;47000;110100;227000;114000;102000;84000;233313;96999;94795;88497;262854;309591;284275;268390;274822;386226;224393;176000;190967;207200;165400;165400;111878;80971;80971;80971;80971;80971
-54;'208;Denmark;1632;Sawnwood, coniferous;5922;Export value;1000 USD;777;1012;987;1026;862;713;487;970;1185;1494;1709;1516;1319;3747;3884;4537;4861;7056;10488;19257;19854;25398;24607;17607;11607;12629;14773;18492;30194;33390;37830;37952;24057;32699;47145;41865;70695;74914;33257;27012;18628;35328;24374;21000;19577;30249;34897;49691;47533;39166;37130;29883;30482;31564;28114;28269;28269;27300;19759;19759;19759;19759;19759
-54;'208;Denmark;1633;Sawnwood, non-coniferous;5516;Production;m3;310000;285000;330000;360000;375000;390251;380000;500000;406000;458000;453500;453000;422500;400000;350000;405000;405000;403000;400000;400000;414500;414500;414500;414500;414500;414500;405500;405500;405500;405500;405500;252000;245000;245000;245000;245000;245000;47000;47000;37000;43000;27000;23000;21000;21000;50000;50000;50000;191000;208858;123763;123763;66887;66887;66887;66887;66887;66887;66887;66887;66887;66887;66887
-54;'208;Denmark;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;59750;55350;59650;67350;74300;75950;69650;69800;86350;89450;64700;87200;114250;88500;67550;100200;82400;73950;77600;84450;54450;57550;81800;129550;97700;102900;73300;73750;8500;12500;50000;72229;40000;48000;53000;45000;100000;337000;175000;131000;194000;250636;130000;284964;175767;792738;574804;130182;79943;89000;114000;98000;102000;100000;99000;99000;99000;559874;834031;834031;834031;834031;834031
-54;'208;Denmark;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;6900;7153;7952;8723;10195;10460;9147;9756;13042;13561;9854;13951;23777;23980;17847;38924;28863;24402;31445;28871;21322;22590;30829;48743;26833;38834;32584;31777;4874;7322;10008;44219;25170;55939;66597;58953;67902;71482;82712;83020;87612;82982;88927;111394;110684;228673;140679;116916;69515;72576;87117;73284;75248;73975;75657;75657;75657;101159;103132;103132;103132;103132;103132
-54;'208;Denmark;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;47700;51900;57600;77250;91300;80800;75950;110800;107550;104800;95750;94000;83100;73750;60350;61100;63600;75350;61000;108800;89250;65250;106500;83100;58700;48600;139000;18850;8500;8000;8000;56272;49199;46000;47000;40000;66000;125000;61000;15000;58000;47219;30286;38168;54913;226769;108427;178789;181327;179654;181021;82489;28000;33000;43000;64871;64871;78937;73701;73701;73701;73701;73701
-54;'208;Denmark;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3995;4357;5246;6467;7772;7388;6837;8309;8714;8875;9339;10568;13011;16524;15081;16292;19010;19613;20960;21553;16503;11998;16186;18007;18443;19360;21853;4410;4759;9368;7350;35773;32245;44203;57823;49130;49460;37457;36554;29243;27521;27974;27369;30297;35292;64749;33792;42600;25942;31355;27297;24353;21452;33192;32886;29201;29201.42;39181;36582;36582;36582;36582;36582
-54;'208;Denmark;1634;Veneer sheets;5516;Production;m3;15000;15000;20400;22500;22800;23000;25000;27000;28000;29200;29200;29200;29200;20000;25000;14000;11000;9000;12000;8000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;8000;14000;14000;14000;2000;11000;12000;30000;0;1000;0;0;0;2000;1000;83000;83000;82254;79759;79759;79760;79760;79760;79760;79760;79760;79760;79760;79760;79760;79760
-54;'208;Denmark;1634;Veneer sheets;5616;Import quantity;m3;4400;5100;3900;4100;5300;5400;6000;7000;9700;12000;11000;17900;31900;19900;17600;27600;27900;24200;34800;23700;21700;25600;30300;37900;39500;37000;72500;71000;67000;36000;35000;25416;15000;18000;15000;13000;27400;65000;149000;40000;47000;70791;77596;81118;85141;61441;61400;43533;22955;30718;31280;19372;87506;87506;29573;49571;49571;46921;39710;39710;39710;39710;39710
-54;'208;Denmark;1634;Veneer sheets;5622;Import value;1000 USD;2313;2786;2363;3123;4711;4773;4775;5430;8778;10762;9135;15974;32058;23851;18237;32240;34050;32220;35529;33092;27378;32300;30795;38506;39000;40403;78916;43108;42210;50196;40856;41480;25020;44018;45783;40399;49812;55365;53326;50555;42784;44561;42902;47989;48745;52920;53901;44489;23279;24999;25867;21461;26620;26620;33631;33665;33664.64;69418;58621;58621;58621;58621;58621
-54;'208;Denmark;1634;Veneer sheets;5916;Export quantity;m3;7800;9400;12300;15300;16800;15200;15300;19000;18900;19900;18200;15600;13200;11300;9200;8700;6500;7500;10700;8900;8900;8900;9200;12600;11500;9600;11000;32000;12000;8000;12000;5374;3100;8000;6000;5000;5400;13500;22000;7000;5018;7947;5048;5966;6289;89738;40309;95625;35639;1484;34204;10464;1176;1176;5425;6274;6274;381;156;156;156;156;156
-54;'208;Denmark;1634;Veneer sheets;5922;Export value;1000 USD;3428;4379;5029;6428;7667;7545;7708;9647;10085;10200;9317;9410;10886;11238;8603;8067;7204;7704;8567;10415;8015;8015;8648;11844;9250;12101;14892;20223;19203;18469;17374;15722;7542;14856;13969;13038;15834;15222;14478;12143;10696;9769;8756;11126;11923;13627;12531;11455;6794;5374;4936;2118;799;799;2520;2700;2700.31;831;1841;1841;1841;1841;1841
-54;'208;Denmark;1873;Wood-based panels;5516;Production;m3;47900;49900;71000;72400;76400;89700;109300;142400;202600;248000;230500;306300;383200;365200;340200;386200;344200;395200;430200;347200;336200;267200;270200;270200;323200;328200;322200;320200;325200;300200;258200;281000;406000;418000;418000;418000;415000;394000;340000;418000;378000;349000;401000;360000;345000;655000;355000;363000;363000;353160;376634;360632;351080;351080;348540;348540;348540;348540;348540;348540;348540;348540;348540
-54;'208;Denmark;1873;Wood-based panels;5616;Import quantity;m3;68500;97300;87800;119100;137300;176758;187200;190937;266351;248404;255114;323715;480297;302138;342459;433000;413800;420600;413300;330800;378800;398400;371400;435400;500800;600500;488100;506900;483800;553200;521000;511302;461600;558000;555000;512100;697300;925000;887000;992000;1041000;1113407;1264521;1443371;1466543;1673788;1890060;1151446;986440;852217;996164;726152;662106;662106;815829;877554;877554;738521;892728;932727;883187;839746;840206
-54;'208;Denmark;1873;Wood-based panels;5622;Import value;1000 USD;7560;9864;9288;12137;14520;15889;17152;17629;28142;26048;28136;40636;73267;50873;57711;87807;80505;93103;105941;92804;91535;94590;89284;103589;100140;138824;146373;152135;151518;189691;181190;188767;138605;184342;227569;186439;227658;227058;203985;207177;207433;220289;265314;340455;360166;395012;460960;350663;196963;197334;232162;210882;208834;208834;221490;233546;233545.37;303570;250647;253731;257469;252451;248077
-54;'208;Denmark;1873;Wood-based panels;5916;Export quantity;m3;5200;5700;5700;6600;5600;6400;8600;17400;26400;25500;28400;23700;21000;41400;60700;43700;39700;46000;62500;88500;130800;114000;90400;88500;63500;72100;99400;117700;105600;97500;90200;105373;104859;118000;112000;119000;233400;186000;185000;137000;89000;100705;146744;166875;109561;166226;156607;128470;133761;123761;142835;163871;125492;125492;156423;152432;152432;192813;216659;216659;216659;216659;216659
-54;'208;Denmark;1873;Wood-based panels;5922;Export value;1000 USD;1272;1408;1486;1773;1647;1765;2199;2836;3572;3773;4301;4241;4172;8138;11233;11713;10823;15286;24657;33374;39415;37750;29674;28720;20011;27441;37116;43169;53978;57689;55817;59490;36420;63670;71790;67226;78357;68687;56910;50678;36895;40933;54178;70453;61966;62613;49935;61091;50673;42065;48365;39242;45786;45786;44987;44569;44568.81;70953;53157;53157;53157;53157;53157
-54;'208;Denmark;1640;Plywood and LVL;5516;Production;m3;12600;13400;14400;16300;16200;17000;23300;22600;24500;21800;22400;17000;15000;15000;28000;28000;28000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;14000;11000;18000;11000;11000;11000;16000;14000;15000;16000;14000;15000;17000;0;0;44000;5000;13000;13000;8360;9089;9089;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1640;Plywood and LVL;5616;Import quantity;m3;22500;26100;25700;28600;32300;39600;45800;53200;93300;77500;84400;114900;174800;101600;138100;154000;146600;171600;174300;135900;156000;136000;139500;161300;137000;177800;158400;202100;173000;206000;161000;160715;152000;171000;188000;167000;188700;302000;222000;247000;250000;253677;393957;412533;371077;365000;357598;402429;229464;219079;261687;270176;266449;266449;211365;241581;241581;281028;276292;276292;276292;276292;276292
-54;'208;Denmark;1640;Plywood and LVL;5622;Import value;1000 USD;3428;3872;4091;4623;5399;6717;7827;8990;16920;14320;15785;24828;45669;29380;32747;54641;44598;54290;62022;51622;48949;42700;46168;53400;44061;61169;62030;68164;66201;85086;73675;86958;73782;90363;109300;86600;105475;95807;79845;85250;79199;76396;98870;126648;134562;148399;171379;177937;86704;83831;103645;90054;86153;86153;81619;87764;87764.06;125863;88349;88349;88349;88349;88349
-54;'208;Denmark;1640;Plywood and LVL;5916;Export quantity;m3;3700;4000;4600;5200;4900;4800;5800;6200;5900;6700;7500;6800;4800;13000;13900;14100;17000;23700;33300;46500;74100;86000;63900;60100;38900;38200;58000;76400;69000;60000;53000;41838;28000;37000;28000;29000;37800;38000;69000;41000;52000;69709;109938;115726;57000;42040;62879;70603;60392;48221;55206;63461;67316;67316;15577;11116;11116;45049;41617;41617;41617;41617;41617
-54;'208;Denmark;1640;Plywood and LVL;5922;Export value;1000 USD;1055;1131;1305;1578;1521;1575;1922;2028;1939;2161;2653;2715;2404;4665;4862;7744;7280;11353;19198;24720;27426;31800;24382;22960;15047;19123;25779;32645;42176;42967;39613;37778;17489;28502;26866;25309;27007;17460;16915;18586;20190;26571;37647;48070;37813;35847;25019;31842;27287;19230;22412;18123;21306;21306;7852;5785;5784.55;19458;17965;17965;17965;17965;17965
-54;'208;Denmark;1646;Particle board and OSB (1961-1994);5516;Production;m3;35300;36500;56600;56100;60200;72700;85500;119300;177800;225900;207900;289000;368000;350000;312000;358000;316000;365000;400000;317000;306000;237000;240000;240000;293000;298000;292000;290000;295000;270000;244000;230000;321000;328000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;11000;23200;19100;36800;52100;55900;52500;47300;66400;61200;68000;99300;180000;132900;135100;199800;201100;181400;169900;134500;165500;201000;162800;218600;285300;330400;245000;245500;266000;293000;302000;283451;269600;316000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;836;1667;1347;2534;3523;3710;3567;3200;4660;4524;4978;7438;16315;12209;15464;21766;25214;28404;31160;27215;31271;38000;26316;35413;39679;58288;63052;62303;67459;81107;82613;75941;50501;68213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;1400;1500;1000;1200;500;800;2000;10400;19700;18000;20100;16100;15400;25600;40400;27600;20400;19500;21200;40700;48700;25000;23500;25800;21200;28500;34500;37000;32000;34000;32000;30177;45000;42000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;196;238;150;154;69;137;218;745;1575;1541;1579;1452;1678;3275;5571;3708;3340;3659;4656;8303;10589;5400;4692;5160;4264;6818;9063;8894;10396;14077;14463;13408;10189;20453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328000;328000;320000;283000;324000;395000;364000;334000;384000;360000;345000;507000;343000;343000;343000;314872;323348;349000;346000;346000;346000;346000;346000;346000;346000;346000;346000;346000;346000
-54;'208;Denmark;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306000;290000;400200;441000;442000;474000;491000;459000;526411;669270;767563;502725;872652;283559;396999;270805;332457;274215;214430;214430;386724;369184;369184;195651;284212;284212;284212;284212;284212
-54;'208;Denmark;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85959;73037;88834;79838;80276;74965;76435;71084;86002;121775;132990;144373;174351;67943;41411;40259;44964;46789;49394;49394;63207;59499;59498.66;63573;57421;57421;57421;57421;57421
-54;'208;Denmark;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;58000;105000;104000;77000;53000;13000;9073;16053;27830;27164;77535;72298;33241;52838;52747;52761;84398;43593;43593;131006;133579;133579;129183;158255;158255;158255;158255;158255
-54;'208;Denmark;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29500;27000;32722;30145;25659;15117;7211;6878;8307;11578;12047;14638;14231;13617;12139;10197;13017;15396;19131;19131;32896;33242;33241.47;43074;27580;27580;27580;27580;27580
-54;'208;Denmark;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7380;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;49000;53000;62000;178611;124060;138650;88155;397275;116421;34651;46731;42308;68209;36155;25570;25570;27617;28929;28929;52524;58821;58821;58821;58821;58821
-54;'208;Denmark;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15819;12041;11400;10576;21378;19725;22142;19222;16299;15446;10793;6391;8833;11891;10445;8839;8839;7222;8172;8171.85;15443;12512;12512;12512;12512;12512
-54;'208;Denmark;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;5000;5647;5191;6032;8430;13731;2306;1073;1236;4816;18219;8060;6407;6407;854;507;507;3196;3167;3167;3167;3167;3167
-54;'208;Denmark;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1791;1864;1735;2163;2227;2274;3556;4772;4796;560;735;370;559;681;538;375;375;564;335;335.31;928;1311;1311;1311;1311;1311
-54;'208;Denmark;1874;Fibreboard;5516;Production;m3;;;;;;;500;500;300;300;200;300;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;40000;67000;79000;79000;79000;79000;97000;1000;7000;0;0;0;0;0;104000;7000;7000;7000;29928;36817;2543;5080;5080;2540;2540;2540;2540;2540;2540;2540;2540;2540
-54;'208;Denmark;1874;Fibreboard;5616;Import quantity;m3;35000;48000;43000;53700;52900;81258;88900;90437;106651;109704;102714;109515;125497;67638;69259;79200;66100;67600;69100;60400;57300;61400;69100;55500;78500;92300;84700;59300;44800;54200;58000;67136;40000;71000;61000;55100;108400;92000;174000;218000;238000;222119;220093;222918;239748;408788;543389;430807;313246;320025;333811;145606;155657;155657;190123;237860;237860;209318;273403;313402;263862;220421;220881
-54;'208;Denmark;1874;Fibreboard;5622;Import value;1000 USD;3296;4325;3850;4980;5598;5462;5758;5439;6562;7204;7373;8370;11283;9284;9500;11400;10693;10409;12759;13967;11315;13890;16800;14776;16400;19367;21291;21668;17858;23498;24902;25868;14322;25766;32310;26802;33349;35594;31823;35562;41223;51431;60717;69890;73392;85941;99784;93990;62457;64411;71662;63594;64448;64448;69442;78111;78110.8;98691;92365;95449;99187;94169;89795
-54;'208;Denmark;1874;Fibreboard;5916;Export quantity;m3;100;200;100;200;200;800;800;800;800;800;800;800;800;2800;6400;2000;2300;2800;8000;1300;8000;3000;3000;2600;3400;5400;6900;4300;4600;3500;5200;33358;31859;39000;34000;32000;90600;40000;35000;39000;19000;16276;15562;17287;16967;32920;19124;23553;19295;17977;16649;7952;8176;8176;8986;7230;7230;15385;13620;13620;13620;13620;13620
-54;'208;Denmark;1874;Fibreboard;5922;Export value;1000 USD;21;39;31;41;57;53;59;63;58;71;69;74;90;198;800;261;203;274;803;351;1400;550;600;600;700;1500;2274;1630;1406;645;1741;8304;8742;14715;15424;14917;18628;19291;12472;15240;7331;5257;5950;7249;7334;7332;10125;14897;10877;12079;12255;5185;4974;4974;3675;5207;5207.49;7493;6301;6301;6301;6301;6301
-54;'208;Denmark;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;79000;79000;0;0;0;0;0;0;0;0;0;2000;2000;2000;2299;2543;2543;2540;2540;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;50000;47400;52000;137000;149000;163000;81049;76697;80265;76522;77541;44316;39232;30737;28395;24555;2040;2229;2229;36973;48104;48104;37353;34087;34087;34087;34087;34087
-54;'208;Denmark;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28938;23982;22866;24104;21646;21808;23676;31379;37594;45207;41842;26758;17032;15113;12125;12246;11126;8073;9118;9118;17911;21327;21326.67;25794;23539;23539;23539;23539;23539
-54;'208;Denmark;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;30000;2400;3000;6000;5000;4000;1923;2059;1975;1791;608;5272;7422;5053;6591;6926;394;67;67;457;477;477;1447;2476;2476;2476;2476;2476
-54;'208;Denmark;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13555;12958;2752;3174;2437;3469;2524;1394;1663;1858;1585;628;5331;8049;5344;6851;7564;1424;423;423;721;824;823.62;1014;316;316;316;316;316
-54;'208;Denmark;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97000;1000;1000;0;0;0;0;0;99000;5000;5000;5000;27424;34133;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38200;24000;24000;48000;49000;100234;111107;109374;124398;253594;431477;303320;212301;205246;230144;132000;144000;144000;83282;86293;86293;123947;128330;128330;128330;128330;128330
-54;'208;Denmark;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6852;7312;7597;11028;14542;15441;17863;18872;23923;50248;74428;68358;42591;42146;50860;44750;46253;46253;37368;39383;39382.96;62737;59316;59316;59316;59316;59316
-54;'208;Denmark;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82400;31000;24000;27000;7000;6063;6183;6247;3763;2763;7074;10006;6758;9471;7285;6900;5800;5800;8147;5733;5733;10297;9775;9775;9775;9775;9775
-54;'208;Denmark;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13573;13580;8028;9417;2283;1323;1501;1721;1270;1330;3416;5396;3697;4712;4029;3320;4023;4023;2893;4155;4155.44;5611;5512;5512;5512;5512;5512
-54;'208;Denmark;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6000;0;0;0;0;0;5000;0;0;0;205;141;0;2540;2540;2540;2540;2540;2540;2540;2540;2540;2540;2540
-54;'208;Denmark;1650;Other fibreboard;5616;Import quantity;m3;10000;14000;13000;12400;10000;36400;43200;44000;52000;52000;48800;51600;60000;19200;20400;23600;20100;25800;24400;20400;28000;23400;21100;20900;42600;56800;48300;17500;3700;6600;5400;6650;7000;13000;5000;5100;22800;16000;13000;21000;26000;40836;32289;33279;38828;77653;67596;88255;70208;86384;79112;11566;9428;9428;69868;103463;103463;48018;110986;150985;101445;58004;58464
-54;'208;Denmark;1650;Other fibreboard;5622;Import value;1000 USD;946;1175;1000;1215;1150;1066;1282;1039;1362;1654;1693;1600;1600;784;800;1600;2030;2383;2728;2427;2293;2000;1800;1776;3500;5869;5788;2331;331;910;652;1727;1172;2390;3372;2820;3631;4178;2580;2726;3005;4611;5260;5811;7627;8935;8324;10519;7741;10019;9676;10771;9077;9077;14163;17401;17401.17;10160;9510;12594;16332;11314;6940
-54;'208;Denmark;1650;Other fibreboard;5916;Export quantity;m3;100;200;100;200;200;800;800;800;800;800;800;800;800;2800;6400;2000;2300;2800;8000;1300;8000;3000;3000;2600;3400;3500;3900;2600;900;700;400;2667;1700;2000;2000;2000;5800;6000;5000;7000;8000;8290;7320;9065;11413;29549;6778;6125;7484;1915;2438;658;2309;2309;382;1020;1020;3641;1369;1369;1369;1369;1369
-54;'208;Denmark;1650;Other fibreboard;5922;Export value;1000 USD;21;39;31;41;57;53;59;63;58;71;69;74;90;198;800;261;203;274;803;351;1400;550;600;600;700;755;971;803;152;128;74;1684;921;1368;1869;1959;2303;2537;2007;2354;2524;2540;2786;3670;4479;5374;1378;1452;1836;516;662;441;528;528;61;228;228.42;868;473;473;473;473;473
-54;'208;Denmark;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;500;500;300;300;200;300;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;40000;67000;79000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;25000;34000;30000;41300;42900;44858;45700;46437;54651;57704;53914;57915;65497;48438;48859;55600;46000;41800;44700;40000;29300;38000;48000;34600;35900;35500;36400;41800;41100;47600;52600;60486;33000;58000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;2350;3150;2850;3765;4448;4396;4476;4400;5200;5550;5680;6770;9683;8500;8700;9800;8663;8026;10031;11540;9022;11890;15000;13000;12900;13498;15503;19337;17527;22588;24250;24141;13150;23376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;1900;3000;1700;3700;2800;4800;30691;30159;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;745;1303;827;1254;517;1667;6620;7821;13347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1879;Total fibre furnish;5510;Production;t;121400;125800;121100;169100;142100;171500;169500;188200;233900;268500;252900;290300;319000;381000;294000;309000;294000;297000;315000;314000;316000;337000;358000;404000;438000;461000;463000;471000;485000;415000;527000;633000;630000;646000;646000;646000;646000;151000;84000;294000;325000;327000;346000;430000;435000;829000;632886;607639;659300;561819;658878;678878;673880;683880;623880;623880;594830;594830;594830;594830;594830;594830;594830
-54;'208;Denmark;1879;Total fibre furnish;5610;Import quantity;t;27000;32100;32800;32600;33700;33500;23200;118400;111600;139400;75900;101000;102000;107800;65700;71500;71000;99700;109400;119900;136100;114900;136100;161300;146900;147200;137700;150700;162000;152500;185200;194198;83633;234500;169400;137500;149200;149090;144087;175150;182070;168790;162450;153164;167009;166771;212996;190774;181246;219085;204801;219048;144724;121660;111464;124249;114868;104527;93142;101453;97812;102863;100929
-54;'208;Denmark;1879;Total fibre furnish;5622;Import value;1000 USD;1913;2199;2233;2391;2663;2548;1769;13041;13149;17984;10914;14792;16974;28841;22464;24290;22630;27921;41283;50409;57785;51249;48649;50107;44233;50945;66374;80039;89210;91902;76565;65049;28569;51234;52803;40457;39927;36113;38274;49563;41222;48080;48816;49499;54666;62755;86360;80432;64475;85256;86873;81429;60663;56883;54306;59618;59111.57;64504;49524;49453;52880;53746;49946
-54;'208;Denmark;1879;Total fibre furnish;5910;Export quantity;t;4700;5000;10700;27600;33800;42600;49600;57600;67600;128600;122500;123900;145300;174800;124700;143100;126100;114200;145200;143200;130900;130000;120600;140400;163500;181200;178600;193300;232500;255500;173800;269426;306584;373500;337700;370400;383500;368470;379460;417800;456084;432225;446590;492226;530059;706967;773647;732177;778713;699141;814281;787835;676488;657081;633259;629011;615745;507072;535638;507009;548134;525712;545250
-54;'208;Denmark;1879;Total fibre furnish;5922;Export value;1000 USD;310;333;728;1829;2280;3068;3587;3864;4650;9494;8997;9752;13302;25887;19286;21653;18030;14897;23759;29865;28682;24910;17830;22798;24475;30619;33763;41889;53833;59691;49888;45794;35047;50142;56051;49031;39679;27756;23509;46962;34131;41416;49629;54109;54684;84541;114504;115770;81160;126451;169931;133688;118434;115061;92844;99941;110713.6;84756;62998;52722;114967;107655;67758
-54;'208;Denmark;1878;Pulp for paper;5510;Production;t;24400;32800;39100;62100;74100;90500;92500;107200;119900;147500;134900;124300;142000;160000;104000;112000;98000;101000;110000;109000;110000;103000;113000;131000;126000;128000;133000;133000;136000;102000;102000;167000;164000;180000;180000;180000;180000;65000;0;0;0;0;0;0;0;0;0;5000;5000;7000;39828;59828;54830;64830;4830;4830;4830;4830;4830;4830;4830;4830;4830
-54;'208;Denmark;1878;Pulp for paper;5610;Import quantity;t;27000;32100;32800;32600;33700;33500;23200;118400;111600;123400;68900;93000;90000;96200;56500;55500;56100;86100;100600;96800;112300;100300;116600;124300;115100;119200;113800;112900;112700;123200;128400;101346;53796;63600;51700;52500;64200;54090;62087;53150;54070;66309;63884;65310;72252;81512;99170;81685;69132;77153;71254;73529;72873;80058;60391;66110;66110;64789;53452;53452;53452;53452;53452
-54;'208;Denmark;1878;Pulp for paper;5622;Import value;1000 USD;1913;2199;2233;2391;2663;2548;1769;13041;13149;17313;10640;14440;16263;27465;21848;21535;20861;26590;40020;46950;55115;49701;47057;47222;41725;48796;63483;75508;83510;89175;73279;59018;25852;37892;43614;32811;34394;30741;32540;35685;31487;37568;37785;39951;44035;50921;68524;60798;48930;57059;55000;54175;50229;50273;47684;50413;50412.57;57417;43829;43829;43829;43829;43829
-54;'208;Denmark;1878;Pulp for paper;5910;Export quantity;t;4700;5000;10700;27600;33800;42600;49600;57600;67600;80600;72500;79900;90300;99500;64700;62500;51200;45000;62400;67400;63700;57700;48700;65400;63500;67700;60200;75000;93300;92000;90900;79233;48281;65300;71200;64200;76500;31470;1460;1800;3084;3099;1663;816;467;23972;26935;20450;12509;16833;63097;72521;74242;95122;45886;28343;28343;11014;26263;26263;26263;26263;26263
-54;'208;Denmark;1878;Pulp for paper;5922;Export value;1000 USD;310;333;728;1829;2280;3068;3587;3864;4650;6650;6107;7142;9394;16438;13110;14140;10478;8798;14806;18906;18171;16519;10256;13803;13066;17524;18835;27141;35657;37591;30966;26895;15824;20826;30702;21049;21773;9550;860;744;1562;1606;1001;559;339;11177;13422;9944;5778;8128;22900;19586;17025;21999;10858;9033;9033.6;7594;7166;7166;7166;7166;7166
-54;'208;Denmark;1875;Wood pulp;5510;Production;t;11800;11800;18100;38100;48100;64500;64500;77200;88900;112500;97900;84300;102000;112000;72000;69000;58000;58000;65000;64000;65000;58000;51000;68000;63000;65000;70000;70000;68000;68000;68000;133000;130000;146000;146000;146000;146000;65000;0;0;0;0;0;0;0;0;0;5000;5000;7000;4828;4828;4830;4830;4830;4830;4830;4830;4830;4830;4830;4830;4830
-54;'208;Denmark;1875;Wood pulp;5610;Import quantity;t;27000;32100;32800;32600;33700;33500;23200;118400;111600;123400;68900;93000;90000;96200;56500;55500;56100;86100;100600;96800;112300;100300;116600;124300;115100;119200;113800;112900;112700;123200;128400;100834;53240;62500;49400;50200;63700;54090;62087;52150;53286;60909;58823;57729;63990;78315;92786;78253;66237;72922;69319;68453;56959;56959;52492;54311;54311;58770;55297;55297;55297;55297;55297
-54;'208;Denmark;1875;Wood pulp;5622;Import value;1000 USD;1913;2199;2233;2391;2663;2548;1769;13041;13149;17313;10640;14440;16263;27465;21848;21535;20861;26590;40020;46950;55115;49701;47057;47222;41725;48796;63483;75508;83510;89175;73279;58255;25056;36708;41138;30335;33838;30741;32540;35189;31126;34790;34740;35418;39492;48498;63064;57289;46002;53087;52934;50559;43933;43933;42558;42758;42758.05;46214;40870;40870;40870;40870;40870
-54;'208;Denmark;1875;Wood pulp;5910;Export quantity;t;4700;5000;10700;26100;32200;40000;47500;55700;65900;77900;71500;78300;89000;98300;61400;55600;46600;41900;59600;62400;61000;55000;48100;64800;62900;64200;53000;53300;65400;61900;68300;68746;43333;63300;70000;63000;75600;31470;1460;1400;3000;1452;673;628;343;23892;26872;20328;12656;16751;15955;16582;12622;12622;1786;1543;1543;1243;3342;3342;3342;3342;3342
-54;'208;Denmark;1875;Wood pulp;5922;Export value;1000 USD;310;333;728;1715;2154;2864;3421;3726;4408;6405;5937;6882;9150;16050;12344;11559;8867;7943;13742;17636;16852;15200;10126;13673;12936;16236;15773;17176;20592;22348;21978;22805;14521;19971;30189;20536;21409;9550;860;620;1322;865;449;391;233;11087;13346;9764;5940;8217;7577;8085;5854;5854;474;363;363.6;883;622;622;622;622;622
-54;'208;Denmark;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4830;4830;4830;4830;4830;4830;4830
-54;'208;Denmark;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6604;5252;6543;6543;6543;6543;6543
-54;'208;Denmark;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2674.41;2264;2654;2654;2654;2654;2654
-54;'208;Denmark;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-54;'208;Denmark;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.09;0;0;0;0;0;0
-54;'208;Denmark;1654;Mechanical wood pulp (1961-2016);5510;Production;t;6400;3600;2700;5400;6400;7300;7300;7300;7300;8200;4500;4500;5000;5000;7000;6000;5000;6000;6000;;;;;;;;;;;;;68000;67000;75000;75000;75000;75000;65000;0;0;0;0;0;0;0;0;0;5000;5000;5000;4828;4828;4830;4830;4830;4830;;;;;;;
-54;'208;Denmark;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;26900;30900;31200;31500;31400;31700;21600;30100;27500;27800;15100;19500;18500;21200;11600;5800;6700;7700;11400;12200;17200;14600;12900;13500;20700;20600;11400;8500;5000;7000;6700;6359;8000;8000;8400;7500;7100;6000;8000;7000;9000;8646;8046;8283;7908;13938;19344;25660;20134;15747;17844;19340;15411;15411;5802;5499;;;;;;;
-54;'208;Denmark;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1903;2140;2179;2288;2412;2408;1644;2319;2133;2411;1375;1854;2201;4375;3387;1514;1659;1746;3120;4013;4931;4100;2912;3051;5094;5973;3943;3039;2084;3037;2639;2414;2483;2704;3475;3171;2305;1940;2580;2354;2884;2940;3130;3172;3159;5425;8778;12513;9266;7178;8621;8753;6982;6982;2293;2018;;;;;;;
-54;'208;Denmark;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;24;0;0;1;5567;11820;17806;11300;10061;13823;14027;9846;9846;0;0;;;;;;;
-54;'208;Denmark;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;14;0;0;1;1923;4836;8130;5136;4551;6533;6361;4602;4602;0;0;;;;;;;
-54;'208;Denmark;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;5400;8200;15400;32700;41700;57200;57200;69900;81600;104300;93400;79800;97000;107000;65000;63000;53000;52000;59000;64000;65000;58000;51000;68000;63000;65000;70000;70000;68000;68000;68000;65000;63000;71000;71000;71000;71000;0;0;0;0;0;0;0;0;0;0;0;0;2000;0;0;0;0;0;0;;;;;;;
-54;'208;Denmark;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;100;1200;1600;1100;2300;1800;1600;1200;1200;1500;1500;2200;2600;2700;1000;1100;800;600;1300;200;700;700;400;300;300;300;300;500;4100;4900;3600;3045;2600;3500;400;0;0;90;87;150;70;192;614;378;103;16138;14342;2946;858;3318;1884;484;561;561;906;1105;;;;;;;
-54;'208;Denmark;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;10;59;54;103;251;140;125;109;117;174;182;290;384;667;280;271;187;126;360;84;246;246;110;82;68;86;64;354;3050;3859;2141;1353;984;2264;259;0;0;149;143;248;120;116;329;195;60;8063;7818;1811;443;1624;1044;263;314;314;541;656;;;;;;;
-54;'208;Denmark;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;4700;5000;10700;26100;32200;40000;47500;55700;65900;77900;71500;78300;89000;98300;61400;55600;46600;41900;59600;62400;61000;55000;48100;64800;62900;64200;53000;53300;65400;61900;68300;67346;42733;62200;68100;62600;75200;30000;0;0;0;0;33;9;1;16153;14927;2331;806;4984;1695;204;24;24;0;1;;;;;;;
-54;'208;Denmark;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;310;333;728;1715;2154;2864;3421;3726;4408;6405;5937;6882;9150;16050;12344;11559;8867;7943;13742;17636;16852;15200;10126;13673;12936;16236;15773;17176;20592;22348;21978;22260;14309;19211;28774;20298;21171;8954;0;0;0;1;19;6;4;7964;8419;1439;417;2181;878;94;11;11;0;1;;;;;;;
-54;'208;Denmark;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;87100;82900;94100;52300;71300;68900;72300;43900;48600;48600;77800;87900;84400;94400;85000;103300;110500;94100;98300;102100;103900;103600;111300;118100;91403;42640;51000;40600;42700;56600;48000;54000;45000;44000;51907;49909;48710;55345;46961;58691;49353;45004;53567;49550;48625;40986;40986;45783;47706;47706;48266;42211;42211;42211;42211;42211
-54;'208;Denmark;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;10613;10899;14728;9083;12296;13678;22423;18181;19750;19015;24718;36540;42853;49938;45355;44035;44089;36563;42737;59476;72115;78376;82279;68499;54469;21589;31740;37404;27164;31533;28652;29817;32587;28002;31644;31112;31786;35813;34079;46127;42699;36084;43934;43217;41535;36635;36635;39722;40080;40079.16;41686;35562;35562;35562;35562;35562
-54;'208;Denmark;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;600;1100;1900;400;400;1470;1460;1400;3000;1428;640;602;341;2100;74;160;355;1507;400;2349;2752;2752;1786;1542;1542;1243;3342;3342;3342;3342;3342
-54;'208;Denmark;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;212;760;1415;238;238;596;860;620;1322;832;430;377;228;1150;43;161;174;1230;115;1627;1241;1241;474;362;362.52;883;622;622;622;622;622
-54;'208;Denmark;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;23200;18500;21300;9700;12400;12900;11000;7900;7700;6300;7800;5200;3900;5900;2500;2800;3000;2300;2000;1900;9600;3300;9400;5100;4813;0;3100;1100;1700;4600;7000;5000;5000;5000;24251;34102;34278;41228;35415;43930;28610;27129;28945;25742;20080;21022;21022;9;0;0;1;0;0;0;0;0
-54;'208;Denmark;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;2338;2005;2845;1504;1860;2391;3116;3030;2602;1792;2616;1980;1795;2838;1200;1092;1146;936;899;992;6298;2608;7110;3085;2879;0;1422;900;1201;2406;4029;2867;3593;3125;13020;19262;20237;24580;22963;31768;22018;19357;21517;20167;15367;16573;16573;12;0;0;1;0;0;0;0;0
-54;'208;Denmark;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;;;;;470;460;400;1000;564;551;470;331;210;1;126;165;1450;6;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;0;;;;;149;143;124;361;303;355;291;195;135;1;99;93;1165;5;0;0;0;0;0;0;0;2;2;2;2;2
-54;'208;Denmark;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;23300;27800;31200;22400;40300;43300;46500;30500;35900;36100;61200;76400;67900;67800;78400;96500;103200;87900;88400;96300;84300;88900;92800;84400;67714;35238;37200;31500;33500;43000;34000;44000;37000;35000;22161;10461;10641;10443;7570;10630;16213;14235;19901;19682;24568;15730;15730;41803;43875;43875;44719;39412;39412;39412;39412;39412
-54;'208;Denmark;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;3132;3978;5207;4031;7206;8774;14410;12965;15155;14979;19440;31898;34611;36330;42000;41235;41092;34052;37989;55913;57245;65493;66400;46646;38404;16255;21438;28708;18308;21922;18505;22219;25525;20070;12722;5244;6273;6107;5374;7909;12969;10555;15735;16350;19661;12981;12981;33877;34105;34104.54;36291;31313;31313;31313;31313;31313
-54;'208;Denmark;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;600;;;;;0;1000;1000;2000;766;0;54;0;1798;0;0;142;54;376;2317;2714;2714;1749;1507;1507;724;3274;3274;3274;3274;3274
-54;'208;Denmark;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;212;;;;;298;717;496;961;480;0;28;0;972;0;0;57;54;80;1574;1166;1166;337;255;255.48;546;422;422;422;422;422
-54;'208;Denmark;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-54;'208;Denmark;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3831;3546;2799;2799;2799;2799;2799
-54;'208;Denmark;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5974.62;5394;4249;4249;4249;4249;4249
-54;'208;Denmark;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;519;68;68;68;68;68
-54;'208;Denmark;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107.03;337;198;198;198;198;198
-54;'208;Denmark;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-54;'208;Denmark;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;17700;15200;15600;6500;7400;6200;5300;2200;1600;1400;2000;1100;1500;1300;1300;1400;1500;2100;700;200;200;200;200;200;99;99;100;400;0;0;0;0;0;0;0;0;0;3;11;22;16;0;41;33;62;10;10;23;7;;;;;;;
-54;'208;Denmark;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2029;1838;2318;1073;1215;1132;1528;813;636;482;582;418;652;654;655;557;617;719;265;123;123;123;123;123;52;52;24;96;0;0;0;0;0;0;0;0;0;8;25;36;42;0;83;67;77;4;4;51;15;;;;;;;
-54;'208;Denmark;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;0;0;3;0;0;0;6;27;3;4;32;33;33;15;16;;;;;;;
-54;'208;Denmark;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;0;0;33;6;11;11;53;69;69;57;64;;;;;;;
-54;'208;Denmark;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-54;'208;Denmark;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;22900;21400;26000;13700;11200;6500;9500;3300;3400;4800;6800;5200;11100;19400;2800;2600;2800;1800;7200;3700;9800;11200;8900;28400;18777;7303;10600;7600;7500;9000;7000;5000;3000;4000;5495;5346;3791;3671;3965;4109;4514;3640;4680;4093;3915;4224;4224;3948;3824;;;;;;;
-54;'208;Denmark;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3114;3078;4358;2475;2015;1381;3369;1373;1357;1762;2080;2244;5795;10116;1500;1151;1234;856;3584;2448;8449;10152;8646;18645;13134;5282;8856;7700;7655;7205;6118;4731;3469;4807;5902;6606;5276;5118;5717;6414;7670;6172;6599;6633;6430;7077;7077;5782;5960;;;;;;;
-54;'208;Denmark;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;0;1100;1900;400;400;0;0;0;0;98;89;75;10;92;73;28;21;0;14;0;5;5;22;19;;;;;;;
-54;'208;Denmark;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;0;760;1415;238;238;149;0;0;0;49;75;53;33;43;42;29;18;0;19;0;6;6;80;43;;;;;;;
-54;'208;Denmark;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0;216;164;254;358;634;1278;409;294;241;290;41;4;1;1;1;1;1;5252;6543;6543;6543;6543;6543
-54;'208;Denmark;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;120;90;169;265;460;931;341;266;209;351;52;8;2;2;2;4;4.48;2264;2654;2654;2654;2654;2654
-54;'208;Denmark;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;17;0;72;51;31;195;199;37;2;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;18;0;8;0;50;48;34;213;255;51;3;0;0;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1668;Pulp from fibres other than wood;5510;Production;t;12600;21000;21000;24000;26000;26000;28000;30000;31000;35000;37000;40000;40000;48000;32000;43000;40000;43000;45000;45000;45000;45000;62000;63000;63000;63000;63000;63000;68000;34000;34000;34000;34000;34000;34000;34000;34000;0;0;0;0;0;0;0;0;0;0;0;0;0;35000;55000;50000;60000;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;556;1100;2300;2300;500;0;0;1000;1000;5564;5315;7939;8896;4475;6793;3726;3136;4521;1976;5080;15915;23100;7900;11800;11800;11271;4698;4698;4698;4698;4698
-54;'208;Denmark;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782;796;1184;2476;2476;556;0;0;496;481;2868;3214;4798;5003;3354;5801;3775;3137;4323;2118;3624;6298;6342;5128;7659;7659;13467;5613;5613;5613;5613;5613
-54;'208;Denmark;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;1500;1600;2600;2100;1900;1700;2700;1000;1600;1300;1200;3300;6900;4600;3100;2800;5000;2700;2700;600;600;600;3500;7200;21700;27900;30100;22600;10487;4948;2000;1200;1200;900;0;0;400;84;1647;990;205;124;152;114;153;48;281;47179;55941;61620;82500;44100;26800;26800;9771;22921;22921;22921;22921;22921
-54;'208;Denmark;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;114;126;204;166;138;242;245;170;260;244;388;766;2581;1611;855;1064;1270;1319;1319;130;130;130;1288;3062;9965;15065;15243;8988;4090;1303;855;513;513;364;0;0;124;240;759;552;176;106;140;124;214;51;166;15374;11504;11171;16145;10384;8670;8670;6711;6544;6544;6544;6544;6544
-54;'208;Denmark;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;8000;9000;14000;9163;5373;2179;5545;8590;8351;10659;4651;4840;6026;5352;4460;4460;1947;2546;2546;279;1343;1343;1343;1343;1343
-54;'208;Denmark;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;3154;4832;5649;3853;2603;1388;3237;5398;6420;8637;4019;4635;5264;5794;5007;5007;1690;2256;2256;173;653;653;653;653;653
-54;'208;Denmark;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4000;4000;19;5;8;12;623;1920;1038;45;40837;22427;18;70;70;0;20;20;2359;1842;1842;1842;1842;1842
-54;'208;Denmark;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;124;120;71;18;12;16;49;151;119;8;7530;4035;34;147;147;0;8;8;1362;392;392;392;392;392
-54;'208;Denmark;1669;Recovered paper;5510;Production;t;97000;93000;82000;107000;68000;81000;77000;81000;114000;121000;118000;166000;177000;221000;190000;197000;196000;196000;205000;205000;206000;234000;245000;273000;312000;333000;330000;338000;349000;313000;425000;466000;466000;466000;466000;466000;466000;86000;84000;294000;325000;327000;346000;430000;435000;829000;632886;602639;654300;554819;619050;619050;619050;619050;619050;619050;590000;590000;590000;590000;590000;590000;590000
-54;'208;Denmark;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;16000;7000;8000;12000;11600;9200;16000;14900;13600;8800;23100;23800;14600;19500;37000;31800;28000;23900;37800;49300;29300;56800;92852;29837;170900;117700;85000;85000;95000;82000;122000;128000;102481;98566;87854;94757;85259;113826;109089;112114;141932;133547;145519;71851;41602;51073;58139;48758;39738;39690;48001;44360;49411;47477
-54;'208;Denmark;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;671;274;352;711;1376;616;2755;1769;1331;1263;3459;2670;1548;1592;2885;2508;2149;2891;4531;5700;2727;3286;6031;2717;13342;9189;7646;5533;5372;5734;13878;9735;10512;11031;9548;10631;11834;17836;19634;15545;28197;31873;27254;10434;6610;6622;9205;8699;7087;5695;5624;9051;9917;6117
-54;'208;Denmark;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;48000;50000;44000;55000;75300;60000;80600;74900;69200;82800;75800;67200;72300;71900;75000;100000;113500;118400;118300;139200;163500;82900;190193;258303;308200;266500;306200;307000;337000;378000;416000;453000;429126;444927;491410;529592;682995;746712;711727;766204;682308;751184;715314;602246;561959;587373;600668;587402;496058;509375;480746;521871;499449;518987
-54;'208;Denmark;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;2844;2890;2610;3908;9449;6176;7513;7552;6099;8953;10959;10511;8391;7574;8995;11409;13095;14928;14748;18176;22100;18922;18899;19223;29316;25349;27982;17906;18206;22649;46218;32569;39810;48628;53550;54345;73364;101082;105826;75382;118323;147031;114102;101409;93062;81986;90908;101680;77162;55832;45556;107801;100489;60592
-54;'208;Denmark;1876;Paper and paperboard;5510;Production;t;190400;191900;189000;197300;210800;217000;204000;265000;276000;296000;274000;236000;239000;256000;173000;231000;243000;270000;284600;224800;227000;171400;322000;332000;302000;293000;326000;343000;326000;377000;398000;376000;398000;387000;387000;387000;391000;393000;397000;263000;389000;383728;388331;402043;422624;441917;416936;517936;518936;534932;522699;522110;481520;481520;167000;147000;147000;152000;152000;152000;152000;152000;152000
-54;'208;Denmark;1876;Paper and paperboard;5610;Import quantity;t;288600;280900;284300;336300;347300;368700;390400;389400;466800;503800;470000;514200;575500;572100;485300;583500;563900;624300;665300;624600;640300;641600;682900;742700;742200;803900;827500;1128100;1131000;1165700;1203700;1034124;880000;1091000;1044000;1047000;1147300;1154000;1185000;1151000;1139150;1138274;1165920;1219631;1207876;1205837;1302009;1208739;980856;1026095;993767;727965;936922;761665;875924;873067;873067;807522;790151;790151;790151;790151;790151
-54;'208;Denmark;1876;Paper and paperboard;5622;Import value;1000 USD;50160;51973;53313;63046;67213;72740;76958;78666;96746;110107;118909;133714;173196;253475;258803;306065;304813;352623;426152;452318;418812;364086;363041;396820;423575;604347;716327;1008373;997049;1207139;1188877;983837;696441;840071;1076760;992665;908826;942696;915137;842217;767474;796775;942889;1022451;999956;1149852;1269254;1315083;986167;989792;1087014;702396;870247;702619;674344;675743;675743.08;726639;664090;664090;664090;664090;664090
-54;'208;Denmark;1876;Paper and paperboard;5910;Export quantity;t;12100;10900;13800;19600;19000;26700;27000;41500;40900;48000;36800;36800;51300;87100;39100;48200;55700;82500;116600;121300;143800;149000;164300;186200;153600;160300;165500;201400;198200;218100;223300;189060;129765;242300;241500;241000;251500;236000;254000;239270;200170;239011;230331;275522;307525;266551;264939;253737;238827;233427;254882;155479;127898;127898;104657;115996;115996;131361;176476;176476;176476;176476;176476
-54;'208;Denmark;1876;Paper and paperboard;5922;Export value;1000 USD;2989;2746;3653;4902;5101;5528;6614;8450;9433;9922;10078;12182;22689;51026;27878;21857;31182;49994;83492;98363;104997;109939;106728;120533;85520;112892;134814;190166;192385;244802;234473;213344;201369;188237;247701;196481;168754;180718;185636;183140;139288;169425;202932;230273;234735;283616;306736;328773;285004;270058;295249;146175;120749;120749;85115;102635;102636.17;195890;222435;222435;222435;222435;222435
-54;'208;Denmark;2042;Graphic papers;5510;Production;t;63200;60200;59200;61500;62900;71000;64000;69000;73000;71000;63000;74000;83000;107000;59000;73000;79000;95000;117000;113000;133000;157000;155000;165000;142000;133000;130000;127000;130000;124000;132000;117000;93000;93000;93000;93000;114000;117000;102000;119000;116000;132917;135577;140299;151093;170093;156722;157722;157722;158029;159539;159538;159540;159540;39000;36000;34000;28000;28000;28000;28000;28000;28000
-54;'208;Denmark;2042;Graphic papers;5610;Import quantity;t;125400;138500;143000;167200;172900;190700;197400;184400;219800;233800;218000;238200;249500;253100;217300;263700;253000;303600;320300;289100;293200;288600;297900;324400;337800;376000;402000;437500;432800;449200;450700;461124;488000;581000;602000;570000;659000;668000;663000;683000;659000;648546;687413;724165;717952;702666;765610;694811;555946;553387;542334;304662;434080;258823;403967;385217;385217;311232;296111;296111;296111;296111;296111
-54;'208;Denmark;2042;Graphic papers;5622;Import value;1000 USD;19860;21975;23143;26852;28963;32512;34498;31482;39548;43653;43537;51465;63171;97530;102490;123435;124329;155918;188326;188398;171230;171440;152841;168420;183599;267486;332242;387454;377542;456879;432549;428308;285398;419959;601200;555789;518281;528130;495986;466274;444549;452397;546588;591778;592901;660165;718306;720803;532137;485248;533532;273989;399563;231935;294163;282885;282884.81;264253;242777;242777;242777;242777;242777
-54;'208;Denmark;2042;Graphic papers;5910;Export quantity;t;2500;3000;3900;6600;7300;5700;6000;13500;13900;11000;8800;13800;28300;50100;15100;18200;22200;36500;57400;58300;73500;82300;88100;92700;74000;65600;61000;64100;59500;67600;75000;71793;58565;77300;90500;79500;90600;99000;103000;106130;100050;120302;120760;127461;137935;149385;161911;160965;142264;130460;137280;46436;21789;21789;9070;19860;19860;13765;5231;5231;5231;5231;5231
-54;'208;Denmark;2042;Graphic papers;5922;Export value;1000 USD;695;706;1032;1697;1792;1585;1756;3502;3787;3293;3227;5364;11871;31170;10632;12382;14800;25762;47906;54251;60916;68139;59028;62033;54607;62488;70715;80930;74588;92576;89895;81451;53420;82404;117471;90102;84043;92225;90309;90455;82444;99623;124239;135374;133750;173198;180287;201130;167577;149183;159997;58897;28199;28199;14362;24095;24095.41;14240;10559;10559;10559;10559;10559
-54;'208;Denmark;1671;Newsprint;5510;Production;t;200;200;200;100;200;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;19000;2000;2000;2000;3393;4226;4226;4230;4230;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1671;Newsprint;5610;Import quantity;t;94600;109200;106600;116100;116200;128700;125200;117500;136500;149200;140100;176100;181000;137100;125700;143000;134100;169900;179300;153300;163700;153000;165800;174000;188800;205300;231800;223400;219400;217100;213000;219026;223000;267000;263000;256000;290000;282000;269000;269000;259000;244756;231577;253071;252036;267178;315878;263397;218587;177399;178904;140775;130770;130770;115243;107013;107013;66012;75456;75456;75456;75456;75456
-54;'208;Denmark;1671;Newsprint;5622;Import value;1000 USD;12509;14490;14341;15359;15734;17225;16776;15921;18721;20828;20963;29304;33964;37606;44587;50662;49360;65842;78778;73787;70231;65640;62999;66120;73713;103799;138537;139717;135384;151554;149579;151567;71235;132464;184490;204370;175156;163707;149656;132708;122224;119739;123271;140846;143855;179747;216890;182671;138354;88844;119802;89741;75930;75930;54996;50562;50561.71;40097;39467;39467;39467;39467;39467
-54;'208;Denmark;1671;Newsprint;5910;Export quantity;t;;;;0;0;;;100;200;200;200;200;400;800;400;400;400;500;500;700;300;700;700;1000;1000;1000;1500;600;600;700;600;866;565;1300;1500;500;600;1000;0;130;50;266;193;214;1131;3227;5521;1716;4310;6964;5576;5835;6533;6533;1088;6897;6897;3128;457;457;457;457;457
-54;'208;Denmark;1671;Newsprint;5922;Export value;1000 USD;;;;0;0;;;16;31;32;35;39;111;371;154;164;158;206;302;437;188;439;303;433;441;551;1350;461;479;641;657;686;361;824;979;465;451;597;573;372;120;378;181;118;419;2508;5369;1680;3621;5311;4368;4210;4824;4824;590;3719;3719.49;1794;281;281;281;281;281
-54;'208;Denmark;1674;Printing and writing papers;5510;Production;t;63000;60000;59000;61400;62700;71000;64000;69000;73000;71000;63000;74000;83000;107000;59000;73000;79000;95000;117000;113000;133000;157000;155000;165000;142000;133000;130000;127000;130000;124000;132000;117000;93000;93000;93000;93000;114000;117000;102000;119000;116000;132917;135577;140299;151093;151093;154722;155722;155722;154636;155313;155312;155310;155310;39000;36000;34000;28000;28000;28000;28000;28000;28000
-54;'208;Denmark;1674;Printing and writing papers;5610;Import quantity;t;30800;29300;36400;51100;56700;62000;72200;66900;83300;84600;77900;62100;68500;116000;91600;120700;118900;133700;141000;135800;129500;135600;132100;150400;149000;170700;170200;214100;213400;232100;237700;242098;265000;314000;339000;314000;369000;386000;394000;414000;400000;403790;455836;471094;465916;435488;449732;431414;337359;375988;363430;163887;303310;128053;288724;278204;278204;245220;220655;220655;220655;220655;220655
-54;'208;Denmark;1674;Printing and writing papers;5622;Import value;1000 USD;7351;7485;8802;11493;13229;15287;17722;15561;20827;22825;22574;22161;29207;59924;57903;72773;74969;90076;109548;114611;100999;105800;89842;102300;109886;163687;193705;247737;242158;305325;282970;276741;214163;287495;416710;351419;343125;364423;346330;333566;322325;332658;423317;450932;449046;480418;501416;538132;393783;396404;413730;184248;323633;156005;239167;232323;232323.09;224156;203310;203310;203310;203310;203310
-54;'208;Denmark;1674;Printing and writing papers;5910;Export quantity;t;2500;3000;3900;6600;7300;5700;6000;13400;13700;10800;8600;13600;27900;49300;14700;17800;21800;36000;56900;57600;73200;81600;87400;91700;73000;64600;59500;63500;58900;66900;74400;70927;58000;76000;89000;79000;90000;98000;103000;106000;100000;120036;120567;127247;136804;146158;156390;159249;137954;123496;131704;40601;15256;15256;7982;12963;12963;10637;4774;4774;4774;4774;4774
-54;'208;Denmark;1674;Printing and writing papers;5922;Export value;1000 USD;695;706;1032;1697;1792;1585;1756;3486;3756;3261;3192;5325;11760;30799;10478;12218;14642;25556;47604;53814;60728;67700;58725;61600;54166;61937;69365;80469;74109;91935;89238;80765;53059;81580;116492;89637;83592;91628;89736;90083;82324;99245;124058;135256;133331;170690;174918;199450;163956;143872;155629;54687;23375;23375;13772;20376;20375.92;12446;10278;10278;10278;10278;10278
-54;'208;Denmark;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1000;1000;996;1245;1244;1240;1240;6000;5000;6000;6000;6000;6000;6000;6000;6000
-54;'208;Denmark;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;37000;49000;48000;66809;58550;62187;53777;43993;53322;37059;30151;27326;45277;20647;13679;13679;17586;20433;20433;22363;14591;14591;14591;14591;14591
-54;'208;Denmark;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31040;24799;29243;28723;44076;38804;42067;38467;43529;50375;43763;33495;28447;42643;20714;16393;16393;15743;16593;16592.98;18707;14249;14249;14249;14249;14249
-54;'208;Denmark;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;2000;1000;3453;2748;2128;689;5430;2933;4649;4882;2616;25391;25274;1161;1161;489;563;563;2037;202;202;202;202;202
-54;'208;Denmark;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1642;1147;1983;1923;3342;14996;11171;1105;8637;3041;5409;5034;2505;20685;30085;2054;2054;1729;2355;2354.77;2262;1100;1100;1100;1100;1100
-54;'208;Denmark;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;46000;47000;51000;57585;61002;140122;150722;150722;150722;150722;150722;150722;150722;150722;150720;150720;33000;31000;28000;22000;22000;22000;22000;22000;22000
-54;'208;Denmark;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;135000;142000;146000;159570;149777;180673;176849;161749;168378;181777;156035;165943;150024;126567;101259;101259;75016;59019;59019;59351;46609;46609;46609;46609;46609
-54;'208;Denmark;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132070;117116;116228;113331;130849;146064;174091;172842;182482;196677;232958;181163;171411;180354;141635;120263;120263;71375;56154;56153.93;66292;58021;58021;58021;58021;58021
-54;'208;Denmark;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;47000;38000;36000;42931;39263;43569;46421;48019;52739;57432;47191;43204;38619;14828;13714;13714;4782;4548;4548;4047;3107;3107;3107;3107;3107
-54;'208;Denmark;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40740;43291;35562;30165;39731;40197;45924;48556;58702;66017;79812;61033;53765;52925;23489;20527;20527;7230;6446;6445.74;5527;5819;5819;5819;5819;5819
-54;'208;Denmark;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;56000;72000;65000;75332;74575;177;371;371;4000;4000;4000;2918;3346;3346;3350;3350;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207000;222000;223000;206000;177411;247509;228234;235290;229746;228032;212578;151173;182719;168129;16673;188372;13115;196122;198752;198752;163506;159455;159455;159455;159455;159455
-54;'208;Denmark;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201313;204415;188095;180271;157733;238449;234774;237737;254407;254364;261411;179125;196546;190733;21899;186977;19349;152049;159576;159576.18;139157;131040;131040;131040;131040;131040
-54;'208;Denmark;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;55000;66000;63000;73652;78556;81550;89694;92709;100718;97168;85881;77676;67694;499;381;381;2711;7852;7852;4553;1465;1465;1465;1465;1465
-54;'208;Denmark;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49246;45298;52538;50236;56172;68865;78161;83670;103351;105860;114229;97889;87602;82019;1113;794;794;4813;11575;11575.41;4657;3359;3359;3359;3359;3359
-54;'208;Denmark;1675;Other paper and paperboard;5510;Production;t;127200;131700;129800;135800;147900;146000;140000;196000;203000;225000;211000;162000;156000;149000;114000;158000;164000;175000;167600;111800;94000;14400;167000;167000;160000;160000;196000;216000;196000;253000;266000;259000;305000;294000;294000;294000;277000;276000;295000;144000;273000;250811;252754;261744;271531;271824;260214;360214;361214;376903;363160;362572;321980;321980;128000;111000;113000;124000;124000;124000;124000;124000;124000
-54;'208;Denmark;1675;Other paper and paperboard;5610;Import quantity;t;163200;142400;141300;169100;174400;178000;193000;205000;247000;270000;252000;276000;326000;319000;268000;319800;310900;320700;345000;335500;347100;353000;385000;418300;404400;427900;425500;690600;698200;716500;753000;573000;392000;510000;442000;477000;488300;486000;522000;468000;480150;489728;478507;495466;489924;503171;536399;513928;424910;472708;451433;423303;502842;502842;471957;487850;487850;496290;494040;494040;494040;494040;494040
-54;'208;Denmark;1675;Other paper and paperboard;5622;Import value;1000 USD;30300;29998;30170;36194;38250;40228;42460;47184;57198;66454;75372;82249;110025;155945;156313;182630;180484;196705;237826;263920;247582;192646;210200;228400;239976;336861;384085;620919;619507;750260;756328;555529;411043;420112;475560;436876;390545;414566;419151;375943;322925;344378;396301;430673;407055;489687;550948;594280;454030;504544;553482;428407;470684;470684;380181;392858;392858.27;462386;421313;421313;421313;421313;421313
-54;'208;Denmark;1675;Other paper and paperboard;5910;Export quantity;t;9600;7900;9900;13000;11700;21000;21000;28000;27000;37000;28000;23000;23000;37000;24000;30000;33500;46000;59200;63000;70300;66700;76200;93500;79600;94700;104500;137300;138700;150500;148300;117267;71200;165000;151000;161500;160900;137000;151000;133140;100120;118709;109571;148061;169590;117166;103028;92772;96563;102967;117602;109043;106109;106109;95587;96136;96136;117596;171245;171245;171245;171245;171245
-54;'208;Denmark;1675;Other paper and paperboard;5922;Export value;1000 USD;2294;2040;2621;3205;3309;3943;4858;4948;5646;6629;6851;6818;10818;19856;17246;9475;16382;24232;35586;44112;44081;41800;47700;58500;30913;50404;64099;109236;117797;152226;144578;131893;147949;105833;130230;106379;84711;88493;95327;92685;56844;69802;78693;94899;100985;110418;126449;127643;117427;120875;135252;87278;92550;92550;70753;78540;78540.76;181650;211876;211876;211876;211876;211876
-54;'208;Denmark;1676;Household and sanitary papers;5510;Production;t;;;;;;12000;11000;11000;13000;13000;12000;13000;10000;14000;16000;2000;3000;3000;3600;4800;5000;800;14000;14000;12000;12000;18000;20000;18000;16000;17000;17000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100000;100000;100000;100000;100000;100000;100000;0;0;0;0;0;0;0;0;0
-54;'208;Denmark;1676;Household and sanitary papers;5610;Import quantity;t;4900;4300;4200;5000;5200;5000;6000;7000;10000;12000;14000;14000;14000;13000;8000;8100;8300;8000;8300;13600;16800;12700;14000;15000;19100;19700;17800;6300;4500;2900;3600;89000;59000;66300;57500;71000;2000;2000;3000;3000;3000;2996;1899;1518;1946;2306;2506;1974;1648;2080;2124;2152;2188;2188;3123;3483;3483;8833;3288;3288;3288;3288;3288
-54;'208;Denmark;1676;Household and sanitary papers;5622;Import value;1000 USD;1212;1200;1207;1448;1530;1500;1800;2200;3300;4200;5500;6000;6300;7500;5300;5370;5860;5600;6700;15255;17519;13246;14000;15300;16019;24935;26948;8832;6146;5101;6467;19816;28222;40000;35000;40000;3747;3731;5017;4089;3726;4256;4275;4926;5211;7205;7209;6568;5405;6317;10976;9464;8419;8419;7203;8028;8027.94;12208;6704;6704;6704;6704;6704
-54;'208;Denmark;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;3000;2000;900;300;1000;1000;2900;3400;3200;3600;4300;7200;3500;3500;600;500;200;100;17000;10000;16500;15100;0;0;0;0;140;120;641;679;268;435;710;382;436;374;1194;635;441;516;516;959;750;750;5559;534;534;534;534;534
-54;'208;Denmark;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;2000;1500;741;347;1000;1000;2693;2709;2500;2800;3400;4640;4054;5192;1449;1646;441;170;3575;1544;2000;2000;0;0;149;573;1115;961;842;2190;912;1512;2331;1933;1887;1806;3940;2586;2354;2587;2587;3308;3047;3047.21;7415;6005;6005;6005;6005;6005
-54;'208;Denmark;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254000;272000;119000;258000;250794;252754;261725;271518;267824;259214;259214;260214;275903;260800;260212;219620;219620;125000;107000;109000;120000;120000;120000;120000;120000;120000
-54;'208;Denmark;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408000;430000;399000;376150;436830;434773;485690;478135;491120;520695;501682;414161;456654;442271;415421;491664;491664;463405;478662;478662;484017;487086;487086;487086;487086;487086
-54;'208;Denmark;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287868;271932;263681;217406;282315;337078;401058;376197;457499;513734;557300;424993;478617;520534;398758;440459;440459;357735;368276;368276.05;438063;403920;403920;403920;403920;403920
-54;'208;Denmark;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;127000;111000;92000;110153;97434;146351;167749;112953;97887;90412;94396;100530;115937;107756;105011;105011;93930;94536;94536;108194;169707;169707;169707;169707;169707
-54;'208;Denmark;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50738;53326;51423;43024;54407;59672;84473;89785;97167;110897;112793;102306;105380;119147;72123;76215;76215;52860;57107;57107.16;152578;185703;185703;185703;185703;185703
-54;'208;Denmark;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;48000;45000;65000;70000;80000;86000;66000;75000;57000;49000;125000;132000;146000;140000;92000;76000;11600;117000;117000;113000;113000;136000;150000;136000;195000;207000;200000;246000;252000;252000;252000;269000;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;114200;99700;99000;118400;122100;125000;136000;135000;157000;164000;154000;177000;194000;211000;172000;200400;198900;201000;216000;194700;246100;119000;130000;141400;174900;165000;160100;323800;340800;354300;375500;145000;164000;61200;53000;329000;350400;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;18180;17999;18102;21716;22950;24000;26000;27000;32000;36000;42600;49000;62000;84000;78000;91979;88558;90500;109400;138324;143943;69600;76000;82700;75654;129096;144845;233575;238432;294994;295925;124577;102817;60000;50000;316876;192858;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;6000;4900;6100;8100;7300;13000;13000;18000;9000;12000;11000;7000;8000;11000;6000;9500;12100;15000;19000;23900;46000;43000;49000;60100;36400;41200;45100;91500;93100;101700;98100;1000;600;84100;75500;84000;126900;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;1285;1142;1468;1795;1853;2200;2500;3000;1900;2500;3000;2400;3500;5000;3000;4712;5013;6300;9000;17035;23759;22000;25000;30600;9688;20521;27422;43042;45404;53103;50483;1910;649;43833;73230;56379;50785;;;;;;;;;;;;;;;;;;;;;;;;;;
-54;'208;Denmark;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161000;197000;45000;181000;196815;199764;200151;210524;210524;210524;210524;210524;210524;210524;210524;210520;210520;22000;23000;22000;21000;21000;21000;21000;21000;21000
-54;'208;Denmark;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225000;253000;228000;242000;232081;246209;280214;285651;303430;320052;298819;226881;260154;249077;237498;291835;291835;264359;259200;259200;268788;274135;274135;274135;274135;274135
-54;'208;Denmark;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104313;106795;101111;105038;98114;128593;152322;140973;185292;217621;216936;132989;173004;188126;143553;167522;167522;140258;129759;129759.1;177287;146042;146042;146042;146042;146042
-54;'208;Denmark;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73000;100000;89000;74000;83423;71362;85939;103561;40227;15072;14751;16069;18353;16428;2851;4568;4568;5062;5976;5976;5558;8539;8539;8539;8539;8539
-54;'208;Denmark;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25369;33257;31969;25358;27937;26821;34276;37706;28192;21172;22458;22794;24111;23519;2446;2984;2984;3013;3052;3051.77;4963;5744;5744;5744;5744;5744
-54;'208;Denmark;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;0;24295;24627;35407;40069;40690;40690;40690;40690;40408;40590;40590;0;0;53000;24000;24000;30000;30000;30000;30000;30000;30000
-54;'208;Denmark;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97000;97000;98000;63000;107039;108447;117929;105977;102619;104143;113308;103688;101812;101281;103339;77189;77189;97394;113004;113004;122539;123865;123865;123865;123865;123865
-54;'208;Denmark;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105656;95470;97517;50115;109720;128534;155208;142842;163452;168680;207594;184232;184592;199864;161424;127702;127702;120130;136956;136955.59;164154;163628;163628;163628;163628;163628
-54;'208;Denmark;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;9000;7000;20027;19063;43744;39864;46124;48572;47868;43433;35265;37669;42015;41784;41784;28186;33457;33457;72629;110578;110578;110578;110578;110578
-54;'208;Denmark;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760;9174;9417;8292;17665;20880;31587;32836;37787;43117;43092;32957;29006;35731;34899;40234;40234;14066;16365;16365.46;113987;148707;148707;148707;148707;148707
-54;'208;Denmark;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;29000;30000;29000;16378;17226;16203;14610;14610;6000;6000;6000;10616;588;0;0;0;12000;14000;14000;12000;12000;12000;12000;12000;12000
-54;'208;Denmark;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;63000;72000;71000;83323;65357;69290;69835;76632;84619;75161;68044;78653;72513;60107;64419;64419;87268;90999;90999;69820;68752;68752;68752;68752;68752
-54;'208;Denmark;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65811;60206;64433;62013;68185;72175;82983;83021;103206;118035;122373;96338;109096;115631;81789;84232;84232;87899;91577;91577.35;82214;80131;80131;80131;80131;80131
-54;'208;Denmark;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;4000;3000;4106;4454;4024;10064;15318;22074;17291;16268;17040;33390;39673;37525;37525;40437;38465;38465;13642;36783;36783;36783;36783;36783
-54;'208;Denmark;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6118;5304;7063;6610;7905;10933;12788;12580;25420;39718;41005;36339;36047;41454;20609;20223;20223;25589;29311;29310.98;23065;23998;23998;23998;23998;23998
-54;'208;Denmark;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;44000;42000;48000;13306;11137;9964;6315;2000;2000;2000;3000;14355;9098;9098;9100;9100;38000;46000;49000;57000;57000;57000;57000;57000;57000
-54;'208;Denmark;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;17000;1000;150;14387;14760;18257;16672;8439;11881;14394;15548;16035;19400;14477;58221;58221;14384;15459;15459;22870;20334;20334;20334;20334;20334
-54;'208;Denmark;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12088;9461;620;240;6296;7776;10545;9361;5549;9398;10397;11434;11925;16913;11992;61003;61003;9448;9984;9984.01;14408;14119;14119;14119;14119;14119
-54;'208;Denmark;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;18000;9000;8000;2597;2555;12644;14260;11284;12169;10502;18626;29872;28450;23217;21134;21134;20245;16638;16638;16365;13807;13807;13807;13807;13807
-54;'208;Denmark;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11491;5591;2974;2764;900;1038;5822;6663;5768;6890;6238;10216;16216;18443;14169;12774;12774;10192;8379;8378.94;10563;7254;7254;7254;7254;7254
-54;'208;Denmark;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;86000;84000;120000;120000;132000;113000;83000;71000;78000;49000;31000;29000;26000;24000;15000;13000;2000;36000;36000;35000;35000;42000;46000;42000;42000;42000;42000;42000;42000;42000;42000;8000;22000;23000;25000;15000;17;0;19;13;4000;1000;1000;1000;1000;2360;2360;2360;2360;3000;4000;4000;4000;4000;4000;4000;4000;4000
-54;'208;Denmark;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;44100;38400;38100;45700;47100;48000;51000;63000;80000;94000;84000;85000;118000;95000;88000;111300;103700;111700;120700;127200;84200;221300;241000;261900;210400;243200;247600;360500;352900;359300;373900;339000;169000;382500;331500;77000;135900;76000;89000;66000;101000;49902;41835;8258;9843;9745;13198;10272;9101;13974;7038;5730;8990;8990;5429;5705;5705;3440;3666;3666;3666;3666;3666
-54;'208;Denmark;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;10908;10799;10861;13030;13770;14728;14660;17984;21898;26254;27272;27249;41725;64445;73013;85281;86066;100605;121726;110341;86120;109800;120200;130400;148303;182830;212292;378512;374929;450165;453936;411136;280004;320112;390560;80000;193940;122967;142202;108173;101793;57807;54948;24689;25647;24983;30005;30412;23632;19610;21972;20185;21806;21806;15243;16554;16554.28;12115;10689;10689;10689;10689;10689
-54;'208;Denmark;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;3600;3000;3800;4900;4400;8000;8000;10000;18000;25000;17000;16000;15000;23000;16000;19600;21100;30000;39200;36200;20900;20500;23600;29100;36000;50000;55900;45200;45100;48600;50100;99267;60600;64400;60400;77500;34000;24000;24000;22000;8000;7915;11458;1442;1406;3503;4759;1924;1793;1243;1030;846;582;582;698;850;850;3843;1004;1004;1004;1004;1004
-54;'208;Denmark;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;1009;898;1153;1410;1456;1743;2358;1948;3746;4129;3851;4418;7318;12856;12746;4022;11022;16932;25586;24384;17613;17300;19900;24500;16585;25829;31485;64745;70747;98682;93925;126408;145756;60000;55000;50000;33926;37606;41428;40147;12859;14553;16831;9514;9688;10920;13619;12963;13315;11555;13519;12801;13748;13748;14585;18386;18386.4;21657;20168;20168;20168;20168;20168
-54;'208;Denmark;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386259.46;1495939;1476983;1632203;1939095;2032788;1752044
-54;'208;Denmark;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1840956.23;1845459;1844263;1876798;2217971;2191012;2013779
-54;'208;Denmark;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28600.48;28601;28601;28601;28601;28601;28601
-54;'208;Denmark;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23423.18;23423;23423;23423;23423;23423;23423
-54;'208;Denmark;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15443.76;15444;15444;15444;15444;15444;15444
-54;'208;Denmark;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14811.87;14812;14812;14812;14812;14812;14812
-54;'208;Denmark;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13156.72;13157;13157;13157;13157;13157;13157
-54;'208;Denmark;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8611.3;8611;8611;8611;8611;8611;8611
-54;'208;Denmark;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64221;79356;74110;78899;99685;152940;107492
-54;'208;Denmark;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68132;59220;71455;65116;92933;87976;75881
-54;'208;Denmark;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39188.33;39188;39188;39188;39188;39188;39188
-54;'208;Denmark;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38304.12;38304;38304;38304;38304;38304;38304
-54;'208;Denmark;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367713;408877;417166;441392;457480;447375;396803
-54;'208;Denmark;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311637;320502;288944;288831;315702;350251;324507
-54;'208;Denmark;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19879;16436
-54;'208;Denmark;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22843;21934
-54;'208;Denmark;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4917;4621
-54;'208;Denmark;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8891;6663
-54;'208;Denmark;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781344;832962;819020;928142;1172984;1201680;1070488
-54;'208;Denmark;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1340111;1339123;1358947;1392835;1652216;1611232;1457358
-54;'208;Denmark;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13746.65;13747;13747;13747;13747;13747;13747
-54;'208;Denmark;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15685.93;15686;15686;15686;15686;15686;15686
-54;'208;Denmark;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91446;93208;85151;102234;127410;149257;95725
-54;'208;Denmark;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43663;49201;47504;52603;79707;64140;78620
-54;'208;Denmark;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720007.87;862577;859578;776608;809110;827294;769031
-54;'208;Denmark;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614980.85;629944;615229;662549;673666;693641;698024
-54;'208;Denmark;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16158.64;16159;16159;16159;16159;16159;16159
-54;'208;Denmark;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6630.52;6631;6631;6631;6631;6631;6631
-54;'208;Denmark;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121659;143918;140854;147404;138845;138657;115155
-54;'208;Denmark;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79825;81619;79283;79474;77251;85938;88961
-54;'208;Denmark;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224237.74;224238;224238;224238;224238;224238;224238
-54;'208;Denmark;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43994.97;43995;43995;43995;43995;43995;43995
-54;'208;Denmark;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224383;344693;344758;255238;296299;314671;279910
-54;'208;Denmark;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256151;269320;256941;304070;317410;328698;330058
-54;'208;Denmark;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133569.49;133569;133569;133569;133569;133569;133569
-54;'208;Denmark;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228379.36;228379;228379;228379;228379;228379;228379
-72;'262;Djibouti;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150314;126730;170124;105417;93062;126840;89174
-72;'262;Djibouti;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14841;3429;5364;3229;7298;11734;35206
-72;'262;Djibouti;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;141;142;257;265;266;148;148;148;190;190;190;190;190;190;190;190;118;118;118;118;371;749;1377;1377;728;1374;1962;2474;1531;2160;2200;1770;1940;1787;1184;1066;1405;3604;4472;7153;9708;4823;8333;13008;13008;10343;11169;14461;18418;25836;24768;36737;47759;47637;32768;63885;57270;47809;86062;49658;54945;74124;44214
-72;'262;Djibouti;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;371;368;42;0;0;49;189;337;362;295;326;158;157;157;168;254;213;494;209;209;271;363;19407;16134;19055;14722;3347;5321;3154;2666;1912;20276
-72;'262;Djibouti;1861;Roundwood;5516;Production;m3;;;;;;29629;32070;34712;37572;40668;44265;47646;50960;55150;59408;63856;70946;76706;83126;89764;96962;104168;112050;122686;134148;149447;162657;175713;190058;202759;212772;220683;230960;240025;249978;260478;270200;276813;281584;293339;299366;305519;311799;318209;324752;330763;336886;343125;349480;355953;361561;367259;373047;378927;384902;389739;394638;399598;404621;409708;414887;420132;425444
-72;'262;Djibouti;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;133;133;59;59;50;450;450;65;3450;3461;41;74;183;850;850;902;273;3171;712;447;60;79;60;1098;92;76;16;186;349;380;0;5;181
-72;'262;Djibouti;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;66;66;6;6;4;45;45;5;82;82;12;28;56;52;52;92;25;216;66;123;26;28;26;81;96;91;5;38;138;138;2;1;56
-72;'262;Djibouti;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;0;0;0;0;0;15;2099;1695;1256;0;0;0;0;0;0;0
-72;'262;Djibouti;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;14;1141;577;231;0;0;0;0;0;0;0
-72;'262;Djibouti;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;275;0;5;181
-72;'262;Djibouti;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;88;2;1;56
-72;'262;Djibouti;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-72;'262;Djibouti;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-72;'262;Djibouti;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;29629;32070;34712;37572;40668;44265;47646;50960;55150;59408;63856;70946;76706;83126;89764;96962;104168;112050;122686;134148;149447;162657;175713;190058;202759;212772;220683;230960;240025;249978;260478;270200;276813;281584;293339;299366;305519;311799;318209;324752;330763;336886;343125;349480;355953;361561;367259;373047;378927;384902;389739;394638;399598;404621;409708;414887;420132;425444
-72;'262;Djibouti;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;174;349;105;0;0;0
-72;'262;Djibouti;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;31;138;50;0;0;0
-72;'262;Djibouti;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-72;'262;Djibouti;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-72;'262;Djibouti;1864;Wood fuel;5516;Production;m3;;;;;;29629;32070;34712;37572;40668;44265;47646;50960;55150;59408;63856;70946;76706;83126;89764;96962;104168;112050;122686;134148;149447;162657;175713;190058;202759;212772;220683;230960;240025;249978;260478;270200;276813;281584;293339;299366;305519;311799;318209;324752;330763;336886;343125;349480;355953;361561;367259;373047;378927;384902;389739;394638;399598;404621;409708;414887;420132;425444
-72;'262;Djibouti;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3370;3370;0;0;0;0;0;0;0;23;23;23;23;23;23;1000;76;76;;;;;;;
-72;'262;Djibouti;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;0;0;0;0;0;0;0;2;2;2;2;2;2;56;91;91;;;;;;;
-72;'262;Djibouti;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;2099;1695;1256;;;;;;;
-72;'262;Djibouti;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1141;577;231;;;;;;;
-72;'262;Djibouti;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;29629;32070;34712;37572;40668;44265;47646;50960;55150;59408;63856;70946;76706;83126;89764;96962;104168;112050;122686;134148;149447;162657;175713;190058;202759;212772;220683;230960;240025;249978;260478;270200;276813;281584;293339;299366;305519;311799;318209;324752;330763;336886;343125;349480;355953;361561;367259;373047;378927;384902;389739;394638;399598;404621;409708;414887;420132;425444
-72;'262;Djibouti;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3370;3370;0;0;0;0;0;0;0;23;23;23;23;23;23;1000;76;76;;;;;;;
-72;'262;Djibouti;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;0;0;0;0;0;0;0;2;2;2;2;2;2;56;91;91;;;;;;;
-72;'262;Djibouti;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;2099;1695;1256;;;;;;;
-72;'262;Djibouti;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1141;577;231;;;;;;;
-72;'262;Djibouti;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;133;133;59;59;50;450;450;65;80;91;41;74;183;850;850;902;273;3148;689;424;37;56;37;98;16;0;16;186;349;380;0;5;181
-72;'262;Djibouti;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;66;66;6;6;4;45;45;5;16;16;12;28;56;52;52;92;25;214;64;121;24;26;24;25;5;0;5;38;138;138;2;1;56
-72;'262;Djibouti;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;50;50;50;50;50;0;33;33;789;789;789;90;3112;653;336;0;19;0;61;16;0;0;12;0;275;0;5;181
-72;'262;Djibouti;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;4;4;0;16;16;48;48;48;6;190;40;81;0;2;0;1;5;0;0;7;0;88;2;1;56
-72;'262;Djibouti;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;50;50;50;50;50;0;33;33;789;789;789;90;3112;653;336;0;19;0;61;16;0;0;12;0;275;0;5;181
-72;'262;Djibouti;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;4;4;0;16;16;48;48;48;6;190;40;81;0;2;0;1;5;0;0;7;0;88;2;1;56
-72;'262;Djibouti;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;133;133;59;59;0;400;400;15;30;41;41;41;150;61;61;113;183;36;36;88;37;37;37;37;0;0;16;174;349;105;0;0;0
-72;'262;Djibouti;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;66;66;6;6;0;41;41;1;12;12;12;12;40;4;4;44;19;24;24;40;24;24;24;24;0;0;5;31;138;50;0;0;0
-72;'262;Djibouti;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;0;0;0;0;65;0;0;0;0
-72;'262;Djibouti;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;0;0;0;0;35;0;0;0;0
-72;'262;Djibouti;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;133;133;59;59;0;400;400;15;30;41;41;41;150;61;61;113;183;18;18;70;19;19;19;19;0;0;16;174;284;105;0;0;0
-72;'262;Djibouti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;66;66;6;6;0;41;41;1;12;12;12;12;40;4;4;44;19;14;14;30;14;14;14;14;0;0;5;31;103;50;0;0;0
-72;'262;Djibouti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1630;Wood charcoal;5510;Production;t;1965;2151;2355;2577;2822;3089;3381;3701;4052;4435;4893;5328;5780;6325;6882;7465;8435;9203;10040;10960;11911;12888;13937;15348;16928;19003;20812;22628;24604;26374;27758;28868;30293;31598;33005;34493;35850;36939;38087;39110;39949;40806;41681;42575;43488;44333;45194;46100;46968;47881;48675;49483;50305;92416;60390;55120;53355;54052;54758;55473;56203;56943;57693
-72;'262;Djibouti;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;9;2;0;0;1;1;1;1;1;1;1;1;1;1;1;504;520;4;4;3;4;7;4;2;2
-72;'262;Djibouti;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;8;8;8;8;8;8;8;8;8;8;8;252;73;7;7;0;6;12;6;7;7
-72;'262;Djibouti;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;170;170;170;0;0;0;0;0;0;0;0;23;23;23;25;25;92920;60910;55124;44291;5080;5080;5080;5080;5080;5080
-72;'262;Djibouti;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;55;55;55;0;0;0;0;0;0;0;0;1;1;1;13;13;17984;15263;18530;14428;1572;1572;1572;1572;1572;1572
-72;'262;Djibouti;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;50;583;583;583;555;555;555;558;558;558;58;173;886;221;221;221
-72;'262;Djibouti;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;19;409;409;409;416;416;416;409;409;409;58;130;492;292;292;292
-72;'262;Djibouti;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;67;67;67;67;67;67;67;67;67;67;67
-72;'262;Djibouti;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;29;29;29;29;29;29;29;29;29;29;29
-72;'262;Djibouti;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;551;551;551;551;551;551;551;551;551;51;166;879;214;214;214
-72;'262;Djibouti;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;408;408;408;408;408;408;408;408;408;57;129;491;291;291;291
-72;'262;Djibouti;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51;51;51
-72;'262;Djibouti;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19
-72;'262;Djibouti;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32;32;4;4;4;7;7;7;7;7;7;7;7;7
-72;'262;Djibouti;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;8;8;8;1;1;1;1;1;1;1;1;1
-72;'262;Djibouti;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16
-72;'262;Djibouti;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10
-72;'262;Djibouti;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;1400;2600;1400;1400;3588;2713;2963;5705;2619;7690;7690;1466;621;62;600;1171;5;675;2359;1032;1032;1033;1052;1587;1587;1918;938;1304;3191;3110;5940;3963;22134;30519;14881;15646;13880;21881;48244;22721;17398;26026;21129
-72;'262;Djibouti;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;224;529;343;343;409;378;601;800;426;1145;1145;200;83;25;117;240;3;122;261;117;117;117;123;286;286;390;448;662;1595;704;1726;1001;5868;5360;3306;3359;3874;5789;13190;6076;6557;9646;6962
-72;'262;Djibouti;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;46;46;0;0;0;46;22;22;22;22;46;46;46;46;51;51;221;11;11;108;122;122;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;10;10;0;0;0;7;4;4;4;4;19;19;19;19;30;30;271;0;0;40;36;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;1400;2600;1400;1400;3588;2713;2963;5705;2619;7690;7690;1070;621;62;571;571;4;670;1990;1028;1028;1028;1028;1509;1509;1917;873;852;2790;3103;4940;3937;22012;30499;14661;15626;13592;21486;48031;22467;17361;25572;20928
-72;'262;Djibouti;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;224;529;343;343;409;378;601;800;426;1145;1145;161;83;25;101;101;1;119;243;114;114;114;114;262;262;390;377;391;1259;700;1292;942;5755;5301;3191;3326;3727;5573;13121;5952;6536;9502;6846
-72;'262;Djibouti;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;46;46;0;0;0;46;22;22;22;22;46;46;46;46;46;46;216;11;11;108;108;108;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;10;10;0;0;0;7;4;4;4;4;19;19;19;19;19;19;260;0;0;40;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;0;0;29;600;1;5;369;4;4;5;24;78;78;1;65;452;401;7;1000;26;122;20;220;20;288;395;213;254;37;454;201
-72;'262;Djibouti;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;0;0;16;139;2;3;18;3;3;3;9;24;24;0;71;271;336;4;434;59;113;59;115;33;147;216;69;124;21;144;116
-72;'262;Djibouti;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;14;14;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;0;0;0;36;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;11;11;11;219;62;748;37;67;67;67;67;48;142;44;61;56;78;14;893;102
-72;'262;Djibouti;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;9;9;9;224;218;642;95;219;122;62;186;287;110;22;25;36;126;48;852;185
-72;'262;Djibouti;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;0;0;0;4;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;0;0;0;31;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1873;Wood-based panels;5616;Import quantity;m3;600;600;800;1100;1100;1100;1100;1100;400;400;400;400;400;400;400;400;400;400;400;400;400;400;2000;2000;217;1868;3196;3483;2715;1746;1746;2284;2321;2275;1461;600;1449;2902;3901;3077;8127;6288;3761;6845;6845;10572;3702;3801;9759;10105;13140;14938;24693;38533;33536;61946;56691;35603;69868;35482;23663;15128;17707
-72;'262;Djibouti;1873;Wood-based panels;5622;Import value;1000 USD;40;41;51;69;70;70;70;70;57;57;57;57;57;57;57;57;57;57;57;57;57;120;878;878;93;571;1128;1273;595;655;655;1006;1142;1258;818;269;465;889;871;1017;2513;2268;746;1723;1723;4068;1684;2657;7292;4547;6618;8217;13742;20695;17781;25401;22159;16178;22484;15293;11490;14993;7801
-72;'262;Djibouti;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;20;;;;23;65;65;65;24;25;25;25;25;25;25;25;24;24;24;24;49;24;24;24;27;24;24;24;24;1197
-72;'262;Djibouti;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;13;39;39;39;17;19;19;19;19;19;19;19;15;15;15;15;22;15;15;15;25;15;15;15;15;796
-72;'262;Djibouti;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1640;Plywood and LVL;5616;Import quantity;m3;600;600;800;1100;1100;1100;1100;1100;400;400;400;400;400;400;400;400;400;400;400;400;400;400;2000;2000;217;1868;3196;3483;2715;1746;1746;2244;2200;2196;1411;600;1292;2051;1833;2890;6000;6000;1;3010;3010;5732;38;2261;5260;6396;6990;7533;12291;17671;15064;29400;23698;12265;17363;12273;9522;5665;6584
-72;'262;Djibouti;1640;Plywood and LVL;5622;Import value;1000 USD;40;41;51;69;70;70;70;70;57;57;57;57;57;57;57;57;57;57;57;57;57;120;878;878;93;571;1128;1273;595;655;655;985;1100;1230;784;269;429;765;732;982;2120;2120;143;1069;1069;3403;498;1921;4938;2520;3146;3839;6744;11770;10088;13624;9560;6062;7578;5247;3702;3291;2894
-72;'262;Djibouti;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;1;1;1;1;1;1;1;1;0;0;0;0;25;0;0;0;3;0;0;0;0;0
-72;'262;Djibouti;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;4;4;4;4;4;4;4;4;0;0;0;0;7;0;0;0;10;0;0;0;0;0
-72;'262;Djibouti;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;82;52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;33;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;44;664;595;28;2000;138;3724;3422;3422;3271;2098;940;1493;1358;476;200;199;3;256;0;1032;1032;3553;924;3438;1691;0
-72;'262;Djibouti;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;10;85;82;9;374;123;584;561;561;467;486;330;524;442;199;111;178;4;182;0;537;537;660;1408;2802;7320;0
-72;'262;Djibouti;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-72;'262;Djibouti;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-72;'262;Djibouti;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;569;777;83;83;83;3;75;2;46;9;111;5;5;5;3;14;5;5
-72;'262;Djibouti;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;177;24;24;24;3;24;6;112;15;209;5;5;5;5;8;5;5
-72;'262;Djibouti;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;27;48;0;113;187;1473;159;127;150;36;413;413;1000;789;517;2923;2268;5671;7130;12201;20813;18207;32435;31956;22301;48947;22282;10689;7767;11118
-72;'262;Djibouti;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;33;0;26;39;57;26;19;25;19;93;93;141;523;382;1806;1561;3270;4243;6814;8809;7496;11568;12057;9574;14241;8633;4978;4377;4902
-72;'262;Djibouti;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;20;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;1196
-72;'262;Djibouti;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;794
-72;'262;Djibouti;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;24;24;24;24;47;23;62;62;25;101;101;101;83;206;72;490;1032;277;1655;41;41;768;121;28;6;6
-72;'262;Djibouti;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;13;13;13;19;12;29;29;15;39;39;39;91;131;92;362;638;611;1004;72;72;581;92;194;25;25
-72;'262;Djibouti;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23
-72;'262;Djibouti;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-72;'262;Djibouti;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;341;341;963;605;330;2410;1699;4831;6636;11021;19237;17915;30474;31641;22245;48179;22138;10651;7590;10941
-72;'262;Djibouti;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;58;58;120;355;214;1276;790;2361;3587;5489;7205;6875;10071;11565;9480;13659;8512;4764;4330;4855
-72;'262;Djibouti;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1173
-72;'262;Djibouti;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781
-72;'262;Djibouti;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;48;0;73;160;1446;132;100;100;10;10;10;12;83;86;412;486;634;422;690;544;15;306;274;15;0;23;10;171;171
-72;'262;Djibouti;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;33;0;7;25;43;12;5;5;6;6;6;6;129;129;491;680;778;564;963;966;10;493;420;22;1;29;20;22;22
-72;'262;Djibouti;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;645;370;702;664;596;1346;1346;630;630;1465;674;2427;2137;3902;3097;2824;5800;5364;4654;4898;4898;4522;4286;4482;1079;267;1296;1147;14889;9277;5021;11103;5695;3201;12005;8342;12185;4294;3233
-72;'262;Djibouti;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;79;41;71;83;76;137;137;84;84;221;165;512;323;823;426;482;990;928;878;862;862;877;823;904;236;73;608;577;7750;4747;2778;4883;3086;2078;7026;2898;7756;5426;4783
-72;'262;Djibouti;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;26;26;0;752;34;34;34;55;55;52;52;52;52;52;52;34;34;34;34;34;34;34;34;34;52
-72;'262;Djibouti;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;0;189;4;4;4;20;20;16;16;16;16;16;16;4;4;4;4;4;4;4;4;4;74
-72;'262;Djibouti;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;2101;405;425;3700;3700;3700;3700;3700;3700;3700;3700;91;38;533;833;14525;8375;4747;9690;5371;2877;9780;5386;11399;3124;3124
-72;'262;Djibouti;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;612;114;129;729;729;729;729;729;729;729;729;62;41;328;507;7684;4578;2733;4492;3027;2019;6430;2316;7536;4688;4688
-72;'262;Djibouti;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;26;26;0;0;0;0;0;21;21;18;18;18;18;18;18;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;0;0;0;0;0;16;16;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;2101;405;425;3700;3700;3700;3700;3700;3700;3700;3700;91;38;38;338;14030;7880;4735;9678;5359;2865;9768;5374;11387;2995;2995
-72;'262;Djibouti;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;612;114;129;729;729;729;729;729;729;729;729;62;41;41;220;7397;4291;2718;4477;3012;2004;6415;2301;7521;3961;3961
-72;'262;Djibouti;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;26;26;0;0;0;0;0;21;21;18;18;18;18;18;18;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;0;0;0;0;0;16;16;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;;;;;;;
-72;'262;Djibouti;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;179;179;179;179;;;;;;;
-72;'262;Djibouti;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;2101;405;425;3700;3700;3700;3700;3700;3700;3700;3700;91;38;38;38;13730;7580;4435;9378;5359;2865;9768;5374;11387;2995;2995
-72;'262;Djibouti;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;612;114;129;729;729;729;729;729;729;729;729;62;41;41;41;7218;4112;2539;4298;3012;2004;6415;2301;7521;3961;3961
-72;'262;Djibouti;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;26;26;0;0;0;0;0;21;21;18;18;18;18;18;18;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;0;0;0;0;0;16;16;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-72;'262;Djibouti;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-72;'262;Djibouti;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;2101;5;25;3300;3300;3300;3300;3300;3300;3300;3300;90;37;37;37;13729;7579;4434;9377;5358;2864;9767;5373;11386;2994;2994
-72;'262;Djibouti;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;612;3;18;618;618;618;618;618;618;618;618;61;40;40;40;7217;4111;2538;4297;3011;2003;6414;2300;7520;3960;3960
-72;'262;Djibouti;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;26;26;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-72;'262;Djibouti;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;18;18;18;18;18;18;0;0;0;;;;;;;
-72;'262;Djibouti;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;12;12;12;12;12;12;0;0;0;;;;;;;
-72;'262;Djibouti;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;495;495;495;12;12;12;12;12;12;12;129;129
-72;'262;Djibouti;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;287;287;287;15;15;15;15;15;15;15;727;727
-72;'262;Djibouti;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;182;1;12;12;12
-72;'262;Djibouti;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;5;31;31;31
-72;'262;Djibouti;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;645;370;702;664;596;1346;1346;630;630;1438;647;2400;2110;1801;2692;2399;2100;1664;954;1198;1198;822;586;782;988;229;763;314;364;902;274;1413;324;324;2225;2956;786;1170;109
-72;'262;Djibouti;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;79;41;71;83;76;137;137;84;84;205;149;496;307;211;312;353;261;199;149;133;133;148;94;175;174;32;280;70;66;169;45;391;59;59;596;582;220;738;95
-72;'262;Djibouti;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;752;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;52
-72;'262;Djibouti;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;189;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;74
-72;'262;Djibouti;1876;Paper and paperboard;5610;Import quantity;t;300;300;700;700;700;300;300;300;300;300;300;300;300;300;300;300;100;100;100;100;100;100;100;100;137;287;103;163;282;94;94;253;373;140;36;0;451;2459;4322;7647;9805;2575;9046;13248;13248;8646;13338;13048;9577;20707;18519;28103;22201;19146;9039;32011;30329;29222;46809;29638;30113;34204;17515
-72;'262;Djibouti;1876;Paper and paperboard;5622;Import value;1000 USD;101;101;206;196;196;78;78;78;133;133;133;133;133;133;133;133;61;61;61;61;90;100;156;156;147;384;162;318;434;197;197;414;625;277;80;0;568;1764;2831;5455;6076;1482;6522;10067;10067;4898;7956;9777;8170;19877;15154;26368;19887;15900;8038;29625;27708;23526;42935;24618;28763;42876;24097
-72;'262;Djibouti;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;113;54;0;0;73;117;284;286;286;125;125;125;125;111;150;135;140;140;140;140;182;186;221;221;221;270;260;190;225;195;16127
-72;'262;Djibouti;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;352;26;0;0;45;102;227;242;242;106;106;105;105;100;132;138;177;177;177;177;209;227;246;246;246;1717;3701;1534;1046;292;17805
-72;'262;Djibouti;2042;Graphic papers;5610;Import quantity;t;;;400;400;400;;;;;;;;;;;;;;;;;;;;;;0;;;;;149;55;67;16;0;310;1922;3601;6965;8500;2326;6936;11557;11557;4352;5720;6627;5855;18209;8788;23829;16150;11209;5910;22163;21533;18628;33168;16261;14370;22163;13479
-72;'262;Djibouti;2042;Graphic papers;5622;Import value;1000 USD;;;105;118;118;;;;;;;;;;;;;;;;;;;;;;0;;;;;285;133;106;16;0;273;1476;2227;5058;5465;1346;4982;8821;8821;2947;4280;5875;4253;17741;8266;23265;15462;9731;5390;18442;17373;14902;29817;11620;11877;28217;19356
-72;'262;Djibouti;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;77;244;246;246;85;85;85;85;85;124;107;87;87;87;87;87;87;101;101;101;101;20;21;79;74;12593
-72;'262;Djibouti;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;0;0;0;77;202;217;217;81;81;80;80;80;112;112;82;82;82;82;82;82;94;94;94;94;17;18;52;47;14622
-72;'262;Djibouti;1671;Newsprint;5610;Import quantity;t;;;400;400;400;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;13;0;0;65;80;1294;1800;1800;18;1057;1057;496;496;2054;197;245;507;1596;143;28;28;114;99;32;190;161;123;7;241
-72;'262;Djibouti;1671;Newsprint;5622;Import value;1000 USD;;;105;118;118;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;12;0;0;48;43;618;971;971;8;539;539;270;270;1682;115;136;341;2754;231;95;20;49;47;20;99;58;56;18;154
-72;'262;Djibouti;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200
-72;'262;Djibouti;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133
-72;'262;Djibouti;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;55;67;3;0;310;1857;3521;5671;6700;526;6918;10500;10500;3856;5224;4573;5658;17964;8281;22233;16007;11181;5882;22049;21434;18596;32978;16100;14247;22156;13238
-72;'262;Djibouti;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;133;106;4;0;273;1428;2184;4440;4494;375;4974;8282;8282;2677;4010;4193;4138;17605;7925;20511;15231;9636;5370;18393;17326;14882;29718;11562;11821;28199;19202
-72;'262;Djibouti;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;77;244;246;246;85;85;85;85;85;124;107;87;87;87;87;87;87;101;101;101;101;20;21;79;74;12393
-72;'262;Djibouti;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;0;0;0;77;202;217;217;81;81;80;80;80;112;112;82;82;82;82;82;82;94;94;94;94;17;18;52;47;14489
-72;'262;Djibouti;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;21;100;2;382;1347;1347;31;1170;1324;1306;1025;3144;3563;2460;1284;1924;923;2446;2446;1874;745;232;98;330
-72;'262;Djibouti;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;58;24;81;4;235;1063;1063;47;832;1007;926;1009;2885;3243;2042;1071;1951;1351;2309;2309;2708;995;609;427;321
-72;'262;Djibouti;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815
-72;'262;Djibouti;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918
-72;'262;Djibouti;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1722;3265;3888;6200;124;6166;8233;8233;3730;3405;2701;3918;16084;1618;15493;10125;7766;2686;16711;17651;14450;27644;12253;10664;17307;10118
-72;'262;Djibouti;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1284;1964;2958;4160;118;4458;6494;6494;2601;2641;2507;2861;16051;1533;14327;10328;6671;2360;12922;13837;11411;23752;8152;7618;19919;10669
-72;'262;Djibouti;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;241;241;241;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;3;4;9;4;8538
-72;'262;Djibouti;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;197;197;197;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;2;3;8;3;9954
-72;'262;Djibouti;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;226;1762;400;400;370;920;920;95;649;548;434;855;3519;3177;3422;2131;1272;4415;1337;1700;3460;3102;3351;4751;2790
-72;'262;Djibouti;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;162;1458;253;253;281;725;725;29;537;679;351;545;3507;2941;2861;1894;1059;4120;1180;1162;3258;2415;3594;7853;8212
-72;'262;Djibouti;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;5;5;1;1;1;1;1;40;23;3;3;3;3;3;3;17;17;17;17;17;17;70;70;3040
-72;'262;Djibouti;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;20;20;2;2;1;1;1;33;33;3;3;3;3;3;3;15;15;15;15;15;15;44;44;3617
-72;'262;Djibouti;1675;Other paper and paperboard;5610;Import quantity;t;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;100;100;100;100;100;100;100;100;137;287;103;163;282;94;94;104;318;73;20;0;141;537;721;682;1305;249;2110;1691;1691;4294;7618;6421;3722;2498;9731;4274;6051;7937;3129;9848;8796;10594;13641;13377;15743;12041;4036
-72;'262;Djibouti;1675;Other paper and paperboard;5622;Import value;1000 USD;101;101;101;78;78;78;78;78;133;133;133;133;133;133;133;133;61;61;61;61;90;100;156;156;147;384;162;318;434;197;197;129;492;171;64;0;295;288;604;397;611;136;1540;1246;1246;1951;3676;3902;3917;2136;6888;3103;4425;6169;2648;11183;10335;8624;13118;12998;16886;14659;4741
-72;'262;Djibouti;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;31;0;0;73;40;40;40;40;40;40;40;40;26;26;28;53;53;53;53;95;99;120;120;120;169;240;169;146;121;3534
-72;'262;Djibouti;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;336;12;0;0;45;25;25;25;25;25;25;25;25;20;20;26;95;95;95;95;127;145;152;152;152;1623;3684;1516;994;245;3183
-72;'262;Djibouti;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;5;5;5;42;35;35;23;30;207;66;8;373;474;587;682;34;891;1080;867;1466;497;841;242;806
-72;'262;Djibouti;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;7;7;7;54;39;39;26;49;223;80;14;476;614;801;945;66;1203;2367;1053;1933;682;1156;590;1151
-72;'262;Djibouti;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;633
-72;'262;Djibouti;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;933
-72;'262;Djibouti;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;549;583;1200;229;1451;1106;1106;4258;6524;5864;3457;2273;6814;3519;4509;6790;2713;8173;7399;9224;11862;12873;14742;11636;3207
-72;'262;Djibouti;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;303;227;441;111;813;684;684;1899;2916;3241;3480;1748;5009;2137;2768;4641;2294;8544;7535;6971;10976;12267;15414;13981;3156
-72;'262;Djibouti;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;13;38;38;38;38;80;80;101;101;101;101;101;101;101;101;2882
-72;'262;Djibouti;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;12;81;81;81;81;113;113;120;120;120;120;120;120;120;120;1910
-72;'262;Djibouti;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;400;600;8;702;451;451;509;1111;2668;476;468;3352;1594;2908;4211;1874;2107;3894;5543;8754;9891;11269;8701;1163
-72;'262;Djibouti;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;198;114;225;7;363;280;280;163;479;1398;149;285;1970;917;1633;2425;942;1208;2827;3245;4363;4957;8069;7410;525
-72;'262;Djibouti;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1237
-72;'262;Djibouti;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602
-72;'262;Djibouti;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;107;100;5;239;133;133;92;464;170;797;1208;1391;1782;1488;2074;806;3128;1543;2168;1755;1889;1515;2040;848
-72;'262;Djibouti;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;56;20;9;116;82;82;36;279;126;420;661;974;998;850;1005;1306;4035;1905;2553;3547;3453;3637;5344;1314
-72;'262;Djibouti;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;44;44;65;65;65;65;65;65;65;65;595
-72;'262;Djibouti;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;38;38;45;45;45;45;45;45;45;45;494
-72;'262;Djibouti;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;64;300;16;401;248;248;2542;4692;2961;2140;590;2070;121;96;497;31;2852;1413;1110;1269;810;1853;795;1069
-72;'262;Djibouti;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;50;129;28;297;153;153;1413;2023;1637;2875;797;2064;116;99;1207;44;2922;1747;903;2940;1741;2991;1141;1133
-72;'262;Djibouti;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;36;36;36;36;36;36;36;36;36;36;36;36;36;36;923
-72;'262;Djibouti;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;75;75;75;75;75;75;75;75;75;75;75;75;75;75;630
-72;'262;Djibouti;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;200;200;109;274;274;1115;257;65;44;7;1;22;17;8;2;86;549;403;84;283;105;100;127
-72;'262;Djibouti;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;67;67;37;169;169;287;135;80;36;5;1;106;186;4;2;379;1056;270;126;2116;717;86;184
-72;'262;Djibouti;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127
-72;'262;Djibouti;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184
-72;'262;Djibouti;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;84;94;100;15;617;550;550;13;1064;350;199;217;2544;281;955;465;382;784;317;503;313;7;160;163;23
-72;'262;Djibouti;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288;197;163;163;18;673;523;523;26;711;438;357;374;1403;352;856;583;288;1436;433;600;209;49;316;88;434
-72;'262;Djibouti;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;53;124;53;30;5;19
-72;'262;Djibouti;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;1489;3550;1382;860;111;340
-72;'262;Djibouti;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31758;38300;35571;26616;9672;11593;8625
-72;'262;Djibouti;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;39;40;72;1765;6232;4923
-72;'262;Djibouti;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;105;132;53;119;5;510
-72;'262;Djibouti;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;12;12;5;473
-72;'262;Djibouti;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;1599;2845;1225;69;71;353
-72;'262;Djibouti;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;3;0;10;67;617
-72;'262;Djibouti;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3846;3822;2856;2044;630;917;557
-72;'262;Djibouti;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;2;210
-72;'262;Djibouti;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25292;31489;28305;21393;8841;10499;7170
-72;'262;Djibouti;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;38;25;60;1676;6105;3589
-72;'262;Djibouti;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-72;'262;Djibouti;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1418;1285;1433;1901;13;101;35
-72;'262;Djibouti;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;34
-72;'262;Djibouti;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61286;40621;48491;29143;28445;41123;36335
-72;'262;Djibouti;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;43;3;3;2867;3590;10007
-72;'262;Djibouti;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;57
-72;'262;Djibouti;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57
-72;'262;Djibouti;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748;654;1875;1577;341;369;1065
-72;'262;Djibouti;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;327;788
-72;'262;Djibouti;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3359;2146;2141;1871;2051;1531;2152
-72;'262;Djibouti;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;48;959;215
-72;'262;Djibouti;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680;6557;8763;10033;3028;12832;3455
-72;'262;Djibouti;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;1;2499;2207;8944
-72;'262;Djibouti;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50499;31264;35712;15662;23025;26391;29606
-72;'262;Djibouti;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;3;2;28;97;3
-55;'212;Dominica;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10370;19396;22439;10666;13117;14176;15337
-55;'212;Dominica;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;496;387;386;486;509;474
-55;'212;Dominica;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1158;1340;880;1224;1065;1102;1452;2341;5108;4049;7102;2576;4323;3525;3488;5703;5613;5122;8357;10342;6597;3363;3923;4020;4020;3825;6541;6819;10527;11017;8329;7751;4911;4500;3602;4002;3276;10487;7576;3720;5348;5908;5140
-55;'212;Dominica;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;239;588;566;211;228;292;688;688;1084;1181;850;999;455;362;551;596;524;388;435;515;456;366;354;356;427;407
-55;'212;Dominica;1861;Roundwood;5516;Production;m3;11404;11333;11262;11191;11121;11051;10982;10913;10845;10777;10771;10423;10385;10815;10662;10459;10353;10254;10603;10120;9853;9449;9475;9160;9154;9048;8723;8625;8717;8608;8521;8506;8357;8339;8018;7988;8262;8203;8168;8086;8038;7990;7943;7895;7848;7781;7714;7648;7582;7517;7519;7521;7523;7525;7528;7490;7453;7417;7380;7343;7309;7275;7241
-55;'212;Dominica;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;500;100;200;100;400;700;700;600;;;;;0;627;786;8100;7725;1492;425;200;254;546;1376;1376;1118;1384;1056;477;954;781;781;1093;3127;681;48;30;1140;1101;858;873;1678;3052
-55;'212;Dominica;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;80;86;30;78;25;119;191;138;149;;;;;0;56;82;426;398;150;97;111;117;133;92;92;239;540;199;354;225;215;223;291;217;177;6;5;566;383;337;298;465;1130
-55;'212;Dominica;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;25;25;25;25;25;477;477;64;64;64;64;147;53;53;53;53;24;24;138;0;0;0;0;0;0
-55;'212;Dominica;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;2;26;26;7;7;7;7;11;6;6;6;6;1;1;59;0;0;0;0;0;0
-55;'212;Dominica;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1006;845;569;873;1017;2667
-55;'212;Dominica;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;520;256;172;298;425;1108
-55;'212;Dominica;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-55;'212;Dominica;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-55;'212;Dominica;1863;Roundwood, non-coniferous;5516;Production;m3;11404;11333;11262;11191;11121;11051;10982;10913;10845;10777;10771;10423;10385;10815;10662;10459;10353;10254;10603;10120;9853;9449;9475;9160;9154;9048;8723;8625;8717;8608;8521;8506;8357;8339;8018;7988;8262;8203;8168;8086;8038;7990;7943;7895;7848;7781;7714;7648;7582;7517;7519;7521;7523;7525;7528;7490;7453;7417;7380;7343;7309;7275;7241
-55;'212;Dominica;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;134;256;289;0;661;385
-55;'212;Dominica;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;46;127;165;0;40;22
-55;'212;Dominica;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;0;0;0;0;0;0
-55;'212;Dominica;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;0;0;0;0;0
-55;'212;Dominica;1864;Wood fuel;5516;Production;m3;11404;11333;11262;11191;11121;11051;10982;10913;10845;10777;10771;10423;10385;10815;10662;10459;10353;10254;10603;10120;9853;9449;9475;9160;9154;9048;8723;8625;8717;8608;8521;8506;8357;8339;8018;7988;8262;8203;8168;8086;8038;7990;7943;7895;7848;7781;7714;7648;7582;7517;7519;7521;7523;7525;7528;7490;7453;7417;7380;7343;7309;7275;7241
-55;'212;Dominica;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;286;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;;;;;;;
-55;'212;Dominica;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;;;;;;;
-55;'212;Dominica;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;;;;;;;
-55;'212;Dominica;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-55;'212;Dominica;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1628;Wood fuel, non-coniferous;5516;Production;m3;11404;11333;11262;11191;11121;11051;10982;10913;10845;10777;10771;10423;10385;10815;10662;10459;10353;10254;10603;10120;9853;9449;9475;9160;9154;9048;8723;8625;8717;8608;8521;8506;8357;8339;8018;7988;8262;8203;8168;8086;8038;7990;7943;7895;7848;7781;7714;7648;7582;7517;7519;7521;7523;7525;7528;7490;7453;7417;7380;7343;7309;7275;7241
-55;'212;Dominica;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;286;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;;;;;;;
-55;'212;Dominica;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;;;;;;;
-55;'212;Dominica;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;;;;;;;
-55;'212;Dominica;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-55;'212;Dominica;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;500;100;200;100;400;700;700;600;;;;;0;341;500;8100;7725;1492;425;200;254;546;1376;1376;1118;1384;1056;477;954;781;781;1093;3127;643;10;30;1140;1101;858;873;1678;3052
-55;'212;Dominica;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;80;86;30;78;25;119;191;138;149;;;;;0;40;66;426;398;150;97;111;117;133;92;92;239;540;199;354;225;215;223;291;217;173;2;5;566;383;337;298;465;1130
-55;'212;Dominica;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;1;453;453;40;40;40;40;123;29;29;29;29;0;0;138;0;0;0;0;0;0
-55;'212;Dominica;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;25;25;6;6;6;6;10;5;5;5;5;0;0;59;0;0;0;0;0;0
-55;'212;Dominica;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;341;100;7700;7700;1186;34;100;100;277;199;199;725;164;767;405;744;571;571;760;2794;643;10;18;1006;845;569;873;1017;2667
-55;'212;Dominica;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;20;380;380;69;20;58;58;17;12;12;44;10;47;25;45;35;43;244;170;173;2;3;520;256;172;298;425;1108
-55;'212;Dominica;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;444;444;11;11;11;11;94;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;24;24;1;1;1;1;5;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;341;100;7700;7700;1186;34;100;100;277;199;199;725;164;767;405;744;571;571;760;2794;643;10;18;1006;845;569;873;1017;2667
-55;'212;Dominica;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;20;380;380;69;20;58;58;17;12;12;44;10;47;25;45;35;43;244;170;173;2;3;520;256;172;298;425;1108
-55;'212;Dominica;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;444;444;11;11;11;11;94;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;24;24;1;1;1;1;5;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;25;306;391;100;154;269;1177;1177;393;1220;289;72;210;210;210;333;333;0;0;12;134;256;289;0;661;385
-55;'212;Dominica;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;46;46;18;81;77;53;59;116;80;80;195;530;152;329;180;180;180;47;47;0;0;2;46;127;165;0;40;22
-55;'212;Dominica;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;9;9;29;29;29;29;29;29;29;29;29;0;0;138;0;0;0;0;0;0
-55;'212;Dominica;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;5;5;5;5;5;5;5;5;5;0;0;59;0;0;0;0;0;0
-55;'212;Dominica;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;27;27;24;24;24;24;24;26;26;26;26;26;26;0;0;12;0;46;0;0;0;0
-55;'212;Dominica;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9;9;4;4;4;4;4;10;10;10;10;10;10;0;0;2;0;46;0;0;0;0
-55;'212;Dominica;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;0;0;138;0;0;0;0;0;0
-55;'212;Dominica;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;59;0;0;0;0;0;0
-55;'212;Dominica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;25;306;391;100;127;242;1153;1153;369;1196;265;46;184;184;184;307;307;0;0;0;134;210;289;0;661;385
-55;'212;Dominica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;46;46;18;81;77;53;50;107;76;76;191;526;148;319;170;170;170;37;37;0;0;0;46;81;165;0;40;22
-55;'212;Dominica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;21;21;21;21;21;21;21;21;21;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;4;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;500;100;200;100;400;700;700;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;80;86;30;78;25;119;191;138;149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;500;100;200;100;400;700;700;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;80;86;30;78;25;119;191;138;149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1630;Wood charcoal;5510;Production;t;166;172;177;183;189;196;202;209;215;223;225;232;240;258;274;276;284;281;320;308;293;293;292;285;283;276;268;261;264;257;253;252;256;255;253;251;249;249;281;248;247;246;245;244;243;243;243;243;243;243;241;239;238;236;234;234;234;234;234;234;234;233;233
-55;'212;Dominica;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;260;260;260;260;260;260;1;1;1;1;1;1;1;1;1;1;1;21;21;0;0;0;0;10
-55;'212;Dominica;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;52;52;52;52;52;52;2;2;2;2;2;2;2;2;2;2;2;11;11;1;0;1;1;1
-55;'212;Dominica;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;37;4;4;4;4;4;4;4;4;4;4;4;4;4;43;60;42;42;42;42;1;0;1;1;1
-55;'212;Dominica;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;1;1;1;1;1;1;1;1;1;1;1;1;1;22;33;22;22;22;22;0;0;0;0;0
-55;'212;Dominica;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;10;11;11;11;11;11;11;11;11;14;14;14;14;794;794;794;794;794;10;10;10;10;1
-55;'212;Dominica;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;9;9;9;9;9;9;9;9;1;1;1;1;32;32;32;32;32;1;1;1;1;0
-55;'212;Dominica;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94
-55;'212;Dominica;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-55;'212;Dominica;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;4;4;4;4;784;784;784;784;784;0;0;0;0;0
-55;'212;Dominica;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;0;0;0;0;31;31;31;31;31;0;0;0;0;0
-55;'212;Dominica;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;1
-55;'212;Dominica;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0
-55;'212;Dominica;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94
-55;'212;Dominica;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-55;'212;Dominica;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;2200;3200;1800;2700;2600;2100;3000;4200;4300;7051;8615;3744;4104;5700;6821;8400;8600;5525;10022;7495;15300;3470;2078;9299;9299;3907;9168;3751;4585;11499;7644;11875;5292;6245;3659;5851;1643;7264;9718;4588;5653;7379;5063
-55;'212;Dominica;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;828;1007;561;815;768;599;707;1395;1768;1822;2576;744;980;1490;1597;2459;2210;1106;2845;2477;1965;1077;1249;1662;1662;1562;2576;2955;3775;6453;5558;4648;2768;1549;1309;2356;852;3724;3833;2023;2200;3077;2209
-55;'212;Dominica;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;103;13;13;13;13;55;104;104;2472;2491;192;192;4;4;0;202;4;0;51;0;0;0;0;0;0;1
-55;'212;Dominica;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;29;0;0;0;0;31;17;17;417;433;88;88;1;12;0;114;42;0;43;0;0;0;0;0;22;2
-55;'212;Dominica;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;900;400;1300;1200;1000;300;500;600;5515;5515;3647;3889;4500;5621;5500;8200;4191;6022;7334;14300;2835;1907;8970;8970;3462;8973;3393;3613;7799;4236;5585;4097;5519;3568;4737;493;5794;9630;4310;5433;7078;4848
-55;'212;Dominica;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;72;230;98;352;305;193;90;295;368;1427;1427;722;863;999;1106;1441;2056;751;1764;2391;1715;941;1100;1561;1561;1279;2516;2614;1749;2028;1897;1723;1529;1494;1178;1423;94;1853;3719;1483;2190;2550;1933
-55;'212;Dominica;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;31;103;103;2465;2465;188;188;0;0;0;202;0;0;47;0;0;0;0;0;0;0
-55;'212;Dominica;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;20;17;17;411;411;59;59;0;0;0;114;0;0;12;0;0;0;0;0;0;0
-55;'212;Dominica;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;1900;2300;1400;1400;1400;1100;2700;3700;3700;1536;3100;97;215;1200;1200;2900;400;1334;4000;161;1000;635;171;329;329;445;195;358;972;3700;3408;6290;1195;726;91;1114;1150;1470;88;278;220;301;215
-55;'212;Dominica;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;756;777;463;463;463;406;617;1100;1400;395;1149;22;117;491;491;1018;154;355;1081;86;250;136;149;101;101;283;60;341;2026;4425;3661;2925;1239;55;131;933;758;1871;114;540;10;527;276
-55;'212;Dominica;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;13;13;13;13;24;1;1;7;26;4;4;4;4;0;0;4;0;4;0;0;0;0;0;0;1
-55;'212;Dominica;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;11;0;0;6;22;29;29;1;12;0;0;42;0;31;0;0;0;0;0;22;2
-55;'212;Dominica;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;15;6;6;1;1;576;576;225;10;2;10;1;1;6;0;0;1;0;0;122;0;1;0;0;6
-55;'212;Dominica;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;22;3;3;0;0;449;449;50;30;4;43;4;0;50;0;0;3;0;2;79;12;1;9;0;23
-55;'212;Dominica;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;147;147;147;147;418;418;418;418;418;418;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;57;57;57;57;330;330;330;330;330;330;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;400;700;800;500;1000;1100;3300;8900;5538;5538;2245;3162;2682;2353;2700;1900;2109;4371;6243;3775;2106;4027;1916;1916;3081;2013;2433;1414;4461;2607;3064;2831;2436;3028;2331;5314;20275;4844;2201;3472;2351;2716
-55;'212;Dominica;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;250;247;289;331;272;384;554;808;2008;1221;1221;566;914;878;648;1021;730;758;1994;2509;1620;1013;1167;639;639;1351;1916;2105;1123;2123;1113;1697;1210;1109;1320;873;1675;5215;2786;1048;2565;1266;1315
-55;'212;Dominica;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;2;42;31;31;31;31;2;64;64;0;0;0;0;0;0;4;0;0;0;0;2;60;60
-55;'212;Dominica;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;12;17;17;17;17;7;65;65;0;0;1;0;0;0;4;0;0;0;0;2;29;29
-55;'212;Dominica;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;300;400;700;800;500;1000;1100;3300;8900;5538;5538;2195;3080;2600;2353;2700;1900;2044;3816;5154;3000;1874;3961;1696;1696;2893;1886;2309;1355;4413;2565;2828;2604;2308;2918;2300;5287;20222;4818;2154;3430;2314;2631
-55;'212;Dominica;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;250;247;289;331;272;384;554;808;2008;1221;1221;550;887;851;648;1021;730;729;1932;2199;1324;923;1142;602;602;1309;1883;2025;1089;2072;1069;1612;1131;991;1249;846;1662;5194;2716;1016;2543;1172;1234
-55;'212;Dominica;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;2;42;31;31;31;31;2;64;64;0;0;0;0;0;0;4;0;0;0;0;2;0;0
-55;'212;Dominica;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;12;17;17;17;17;7;65;65;0;0;1;0;0;0;4;0;0;0;0;2;0;0
-55;'212;Dominica;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;76;464;464;7;4;71;71;24;3;6;6;6;6;200;200;6;6;5;9;9;8;30;8;16;55
-55;'212;Dominica;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;27;196;196;5;4;12;12;11;2;5;5;24;24;65;65;5;5;10;4;4;69;24;9;29;34
-55;'212;Dominica;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;0;0;0;0;0;0;0;1
-55;'212;Dominica;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;0;0;0;0;0;0;0;1
-55;'212;Dominica;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;82;82;0;0;0;62;479;625;311;225;62;149;149;164;124;118;53;42;36;36;27;50;32;26;18;44;18;17;34;21;29
-55;'212;Dominica;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;27;27;0;0;0;26;35;114;100;85;21;25;25;31;31;75;29;27;20;20;14;72;25;17;9;17;1;8;13;65;46
-55;'212;Dominica;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60
-55;'212;Dominica;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29
-55;'212;Dominica;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;191;191;191;28;17;17;20;15;31;31;31;6;6;15;15;19;13;13;13;0;13;9;9;14
-55;'212;Dominica;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;69;69;69;5;8;8;6;13;18;16;16;4;4;7;7;13;5;5;5;0;5;2;2;16
-55;'212;Dominica;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;62;62;20;20;20;20;19;19;53;18;70;5;7;26;26;8;31;9;9;1;27;15;3;25;12;2
-55;'212;Dominica;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;26;26;15;15;15;15;3;3;13;6;47;3;8;13;13;4;62;9;9;1;9;1;3;11;63;27
-55;'212;Dominica;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60
-55;'212;Dominica;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29
-55;'212;Dominica;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;414;100;14;14;113;113;91;91;17;17;4;4;4;4;4;4;4;4;4;3;1;0;0;13
-55;'212;Dominica;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;16;1;1;14;14;12;12;10;10;3;3;3;3;3;3;3;3;3;0;0;0;0;3
-55;'212;Dominica;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;82;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-55;'212;Dominica;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;41;41;41;1319;1300;1331;32;80;80;80;80;80;80;80;80;80;119;1465;83;83;83;52;52;52;52;52;52;52;52;254;48
-55;'212;Dominica;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;14;14;14;230;219;226;8;33;33;33;33;33;33;33;33;33;38;401;38;38;38;31;31;31;31;31;31;31;31;60;25
-55;'212;Dominica;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;168;169;223;223;223;223;223;223;225;8;8;142;142;142;1077;485;370;46;46;261;261;261;67;67;409;409
-55;'212;Dominica;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;29;30;34;34;34;34;34;34;39;7;7;30;30;30;223;134;90;12;12;78;78;78;12;12;137;137
-55;'212;Dominica;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;0;31;31;79;79;79;79;79;79;79;79;79;79;79;79;79;79;48;48;48;48;48;48;48;48;48;48
-55;'212;Dominica;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;0;7;7;32;32;32;32;32;32;32;32;32;32;32;32;32;32;25;25;25;25;25;25;25;25;25;25
-55;'212;Dominica;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;3;3;3;3;3;3;3;3;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;6;6;6;6;6;6;6;6;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;0;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;0;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;3;3;3;3;3;3;3;3;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;6;6;6;6;6;6;6;6;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;0;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;0;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;3;3;3;3;3;3;3;3;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;6;6;6;6;6;6;6;6;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-55;'212;Dominica;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-55;'212;Dominica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;;;;;;;
-55;'212;Dominica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0;;;;;;;
-55;'212;Dominica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-55;'212;Dominica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;0;0;0;;;;;;;
-55;'212;Dominica;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48
-55;'212;Dominica;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25
-55;'212;Dominica;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-55;'212;Dominica;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6
-55;'212;Dominica;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;1300;1300;1300;1;1;1;1;1;1;1;1;1;1;40;1386;4;4;4;4;4;4;4;4;4;4;4;206;0
-55;'212;Dominica;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;3;3;219;219;219;1;1;1;1;1;1;1;1;1;1;6;369;6;6;6;6;6;6;6;6;6;6;6;35;0
-55;'212;Dominica;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;168;168;222;222;222;222;222;222;222;5;5;139;139;139;1074;482;369;45;45;260;260;260;66;66;408;408
-55;'212;Dominica;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;29;29;33;33;33;33;33;33;33;1;1;24;24;24;217;128;89;11;11;77;77;77;11;11;136;136
-55;'212;Dominica;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1674;1465;4004;2886;4613;1951;1660;3683;4200;3453;4571;6777;3825;689;1344;1489;1489;687;738;700;9109;988;949;377;544;989;640;671;482;646;343;183;171;789;212
-55;'212;Dominica;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;1006;3305;1259;2403;1131;1161;1911;2028;2634;3337;5170;2812;1062;1280;1084;1084;579;1435;1512;5183;1802;1396;1086;595;1554;722;696;662;823;523;273;237;1032;431
-55;'212;Dominica;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;288;613;619;187;188;198;411;411;353;448;411;521;480;389;394;394;408;408;408;406;406;348;381;381;278;278
-55;'212;Dominica;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;181;489;470;115;123;150;263;263;264;387;343;469;403;304;311;311;344;344;344;347;347;279;333;333;230;230
-55;'212;Dominica;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;204;204;371;1175;851;60;83;1100;1067;2106;1010;1425;187;994;427;427;270;322;356;667;634;441;162;119;601;253;253;186;197;197;156;148;615;158
-55;'212;Dominica;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;297;297;370;796;559;78;76;443;889;1278;823;1046;260;695;360;360;262;408;410;713;340;515;374;179;499;223;258;171;222;225;181;175;733;212
-55;'212;Dominica;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;49;372;372;1;1;12;293;293;246;246;246;246;254;163;168;168;168;168;168;170;170;145;170;170;186;186
-55;'212;Dominica;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;33;266;266;0;0;30;207;207;210;210;210;210;203;104;111;111;111;111;111;121;121;84;121;121;152;152
-55;'212;Dominica;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;651;651;0;0;0;1;10;14;14;64;128;13;13;117;138;138;25;25;25;25;25;422;120;120;120;120;120;120;120;120;120
-55;'212;Dominica;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;338;338;0;0;0;1;12;19;19;32;75;6;6;106;101;101;15;15;15;15;15;251;73;73;73;73;73;73;73;73;73
-55;'212;Dominica;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;1;1;1;1;1;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135;135
-55;'212;Dominica;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;0;0;0;0;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64
-55;'212;Dominica;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;204;204;235;524;200;60;83;1100;1066;2096;996;1411;123;866;414;414;153;184;218;642;609;416;137;94;179;133;133;66;77;77;36;28;495;38
-55;'212;Dominica;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;297;297;220;458;221;78;76;443;888;1266;804;1027;228;620;354;354;156;307;309;698;325;500;359;164;248;150;185;98;149;152;108;102;660;139
-55;'212;Dominica;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;371;371;0;0;11;158;158;111;111;111;111;119;28;33;33;33;33;33;35;35;10;35;35;51;51
-55;'212;Dominica;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;266;266;0;0;30;143;143;146;146;146;146;139;40;47;47;47;47;47;57;57;20;57;57;88;88
-55;'212;Dominica;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;48;11;11;7;13;13;13;16;15;15;9;103;19;6;25;59;59;3;3;3;20;0;0;6;7
-55;'212;Dominica;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;103;9;9;17;38;38;38;12;39;39;23;117;38;130;23;56;56;6;6;6;48;3;2;15;39
-55;'212;Dominica;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;75;75;75;75;75;2;7;7;7;7;7;7;7;7;7;7;23;23
-55;'212;Dominica;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;79;79;79;79;79;3;10;10;10;10;10;10;10;10;10;10;41;41
-55;'212;Dominica;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;456;45;200;97;810;260;260;44;130;178;87;503;314;3;30;60;45;60;60;70;24;1;2;446;1
-55;'212;Dominica;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;328;90;236;164;539;205;205;73;206;220;153;179;366;83;83;128;48;132;89;123;40;8;5;561;5
-55;'212;Dominica;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;0;0;0;28;28;25;25;25;25;25;25;25;25;25;25;25;25;25;0;25;25;25;25
-55;'212;Dominica;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;0;22;22;37;37;37;37;37;37;37;37;37;37;37;37;37;0;37;37;37;37
-55;'212;Dominica;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810;1592;940;1200;19;43;141;141;93;39;25;546;3;83;128;39;60;29;70;3;4;33;35;26;43;30
-55;'212;Dominica;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;586;835;705;782;47;43;111;111;71;62;50;522;29;96;146;58;64;46;47;3;20;64;97;95;84;95
-55;'212;Dominica;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;0;0;11;11;11;11;11;11;11;19;1;1;1;1;1;1;3;3;3;3;3;3;3
-55;'212;Dominica;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;0;0;30;30;30;30;30;30;30;23;0;0;0;0;0;0;10;10;10;10;10;10;10
-55;'212;Dominica;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1556;1261;3800;2515;3438;1100;1600;3600;3100;2386;2465;5767;2400;502;350;1062;1062;417;416;344;8442;354;508;215;425;388;387;418;296;449;146;27;23;174;54
-55;'212;Dominica;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;941;709;3008;889;1607;572;1083;1835;1585;1745;2059;4347;1766;802;585;724;724;317;1027;1102;4470;1462;881;712;416;1055;499;438;491;601;298;92;62;299;219
-55;'212;Dominica;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;239;241;247;186;187;186;118;118;107;202;165;275;226;226;226;226;240;240;240;236;236;203;211;211;92;92
-55;'212;Dominica;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;148;223;204;115;123;120;56;56;54;177;133;259;200;200;200;200;233;233;233;226;226;195;212;212;78;78
-55;'212;Dominica;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;165;165;165;6;15;15;43;143;28;255;104;100;1;44;21;24;6;69;30;6;19;14;37;6
-55;'212;Dominica;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;138;138;138;9;16;16;75;129;59;272;122;189;105;86;32;67;21;77;58;59;40;11;64;22
-55;'212;Dominica;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;13;13;13;13;13;13;13;13;13;9;9;0;9;9;0;0
-55;'212;Dominica;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;22;22;22;22;22;22;22;22;22;15;15;0;15;15;0;0
-55;'212;Dominica;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2353;5413;2135;217;249;896;896;350;83;209;8133;135;325;188;315;273;320;345;160;352;139;5;9;137;48
-55;'212;Dominica;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523;4011;1479;357;442;564;564;192;289;555;4092;698;530;566;232;770;363;226;223;352;234;31;51;235;183
-55;'212;Dominica;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;245;184;185;185;110;110;86;102;102;212;212;212;212;212;201;201;201;201;201;201;201;201;92;92
-55;'212;Dominica;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;201;112;114;114;47;47;33;37;37;163;163;163;163;163;175;175;175;175;175;175;175;175;77;77
-55;'212;Dominica;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;2662;1000;90;90;41;41;193;3;11;8047;21;205;30;277;99;99;105;48;261;106;0;0;17;1
-55;'212;Dominica;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;1017;371;36;36;26;26;45;3;18;3738;33;42;6;196;83;83;40;22;155;70;1;2;8;8
-55;'212;Dominica;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84
-55;'212;Dominica;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30
-55;'212;Dominica;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1659;2351;1000;41;49;733;733;3;37;163;64;82;91;91;26;75;151;23;23;2;23;1;4;47;37
-55;'212;Dominica;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125;2744;946;213;306;455;455;6;197;464;322;600;459;459;14;588;217;15;15;11;124;4;29;155;135
-55;'212;Dominica;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;154;0;1;1;1;1;1;17;17;17;17;17;17;17;6;6;6;6;6;6;6;6;6;6
-55;'212;Dominica;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;161;0;2;2;2;2;2;6;6;6;6;6;6;6;18;18;18;18;18;18;18;18;18;18
-55;'212;Dominica;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;365;100;51;89;101;101;133;22;14;1;11;8;57;2;31;2;149;21;21;8;4;5;73;9
-55;'212;Dominica;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;202;114;60;79;62;62;120;68;52;11;44;8;95;16;39;3;111;126;126;30;23;17;69;30
-55;'212;Dominica;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;7;100;100;100;25;25;1;1;1;111;111;111;111;111;111;111;111;111;111;111;111;111;2;2
-55;'212;Dominica;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;10;82;82;82;15;15;1;1;1;127;127;127;127;127;127;127;127;127;127;127;127;127;29;29
-55;'212;Dominica;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;35;35;35;21;21;21;21;21;21;21;21;21;10;10;68;68;68;68;68;2;0;0;0;1
-55;'212;Dominica;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;48;48;48;21;21;21;21;21;21;21;21;21;6;6;60;60;60;60;60;10;3;3;3;10
-55;'212;Dominica;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1600;3600;3100;2386;101;189;100;120;95;151;151;24;190;107;54;115;83;26;66;94;43;67;67;67;1;3;0;0;0
-55;'212;Dominica;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;1083;1835;1585;1745;523;198;149;307;134;144;144;50;609;488;106;642;162;41;98;253;69;191;191;191;5;21;0;0;14
-55;'212;Dominica;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;17;2;2;2;1;8;8;21;21;50;50;1;1;1;1;26;26;26;26;26;2;1;1;0;0
-55;'212;Dominica;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;60;3;3;9;6;9;9;21;21;74;74;15;15;15;15;36;36;36;36;36;20;22;22;1;1
-55;'212;Dominica;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788;4931;9717;3031;3410;3668;5281
-55;'212;Dominica;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;26;11;16;75;50;62
-55;'212;Dominica;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;714;1465;694;807;587;1219
-55;'212;Dominica;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;33;33;33
-55;'212;Dominica;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642;704;1270;636;799;574;1150
-55;'212;Dominica;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-55;'212;Dominica;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;10;195;58;8;13;69
-55;'212;Dominica;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;33;33;33
-55;'212;Dominica;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;5;5;3;13;9
-55;'212;Dominica;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0
-55;'212;Dominica;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;48;120;48;19;78;462
-55;'212;Dominica;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;14;0;0
-55;'212;Dominica;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;1106;2338;612;818;1077;1565
-55;'212;Dominica;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;1;1;1;1;2;2
-55;'212;Dominica;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1260;2940;5756;1652;1739;1770;1936
-55;'212;Dominica;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;8;8;4;27;13;26
-55;'212;Dominica;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4
-55;'212;Dominica;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;121;33;20;24;141;86
-55;'212;Dominica;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;11;0;2;1
-55;'212;Dominica;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4306;3978;5146;3915;4359;4600;4916
-55;'212;Dominica;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;14;10;16;55;32;5
-55;'212;Dominica;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;2;1;0;2
-55;'212;Dominica;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-55;'212;Dominica;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;136;82;97;108;130;87
-55;'212;Dominica;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-55;'212;Dominica;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060;1702;1844;1314;1525;1767;1786
-55;'212;Dominica;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;1
-55;'212;Dominica;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;741;1278;1051;1250;1082;1095
-55;'212;Dominica;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;3;5;8;49;25;0
-55;'212;Dominica;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1163;1399;1942;1451;1475;1621;1946
-55;'212;Dominica;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;1;4;2;3;0
-56;'214;Dominican Republic;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785615;758343;809306;697287;995515.39;1175765;1082440
-56;'214;Dominican Republic;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112162;120517;122992;115654;160838.5;167981;148067
-56;'214;Dominican Republic;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3034;2322;1863;3713;1202;2183;2217;9281;9307;12512;13586;21304;19904;22560;26241;34141;56541;79164;48764;74587;73492;62435;58979;62675;50558;54559;57451;83930;72770;71541;81907;91600;106967;120533;135527;127879;172750;156427;163027;152485;153606;154544;139992;194598;200813;266294;258156;289963;205160;310338;375901;340383;295571;377011;399228;382584;466708;432994;469884;421772;623004.39;772111;681780
-56;'214;Dominican Republic;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;349;224;250;250;84;109;96;101;44;44;8;15;31;31;31;31;;;;;;;;;;;;;;;;1211;549;1211;1972;952;1321;1321;1321;1321;2177;2976;2817;3257;3778;6417;7774;10326;8087;15744;32670;23097;27651.5;39170.5;26691;27202.45;41585;23974;36979;36685;57851.5;66244;48467
-56;'214;Dominican Republic;1861;Roundwood;5516;Production;m3;405000;429000;438000;462000;533000;517000;379000;389000;398000;409000;411000;433000;450000;457000;453000;462000;466300;476800;486300;498300;515700;524300;537300;549300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;567700;891981;903400;905000;913633;922354;929813;937337;970228;969885;1000610;1007347;1017126;1043127;1077641;1028718;1146830;1152675;1125555
-56;'214;Dominican Republic;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;61000;45400;38200;42100;27300;30300;40500;40500;40500;17500;2375;962;3925;1494;12699;11246;8200;5400;14000;9200;9200;9200;9200;9200;12673;12673;16672;5638;5195;7096;10758;28899;24182;21411;23324;35170;21999;50521;9252;25888;13501;35651;37493;26013
-56;'214;Dominican Republic;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;9659;8478;5046;6517;4630;3661;5882;5882;5882;977;284;145;255;109;721;985;742;1097;2010;2346;2346;2346;2346;2346;789;789;1035;638;966;1287;1383;7512;6994;2014;9777;13988;9130;18088;1556;2830;2386;13722;15940;12346
-56;'214;Dominican Republic;1861;Roundwood;5916;Export quantity;m3;3700;2600;2900;2900;1500;1800;1200;1400;500;400;100;100;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2681;1699;771;174;14401;5461;2282;472;11855;4060;1102;116;762;454;0;0;412;814
-56;'214;Dominican Republic;1861;Roundwood;5922;Export value;1000 USD;349;224;250;250;84;109;96;101;44;44;8;15;31;31;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;413;344;98;1241;507;152;185;1157;1932;213;50;352;122;0;0;9;268
-56;'214;Dominican Republic;1862;Roundwood, coniferous;5516;Production;m3;;;;;30000;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26000;26000;47000;40000;32000;20200;35660;15000;84480;74060;81110
-56;'214;Dominican Republic;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21051;8671;25625;13308;12304;11778;11477
-56;'214;Dominican Republic;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4383;1244;2682;2102;2720;1801;2734
-56;'214;Dominican Republic;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;151;0;0;0;35;0
-56;'214;Dominican Republic;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;0;0;0;0;0
-56;'214;Dominican Republic;1863;Roundwood, non-coniferous;5516;Production;m3;405000;429000;438000;462000;503000;517000;379000;389000;398000;409000;411000;433000;450000;457000;453000;462000;466300;476800;486300;498300;515700;524300;537300;549300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;562300;567700;891981;903400;905000;913633;922354;929813;937337;944228;943885;953610;967347;985126;1022927;1041981;1013718;1062350;1078615;1044445
-56;'214;Dominican Republic;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29470;581;263;193;23347;25715;14536
-56;'214;Dominican Republic;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13705;312;148;284;11002;14139;9612
-56;'214;Dominican Republic;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;611;454;0;0;377;814
-56;'214;Dominican Republic;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;338;122;0;0;9;268
-56;'214;Dominican Republic;1864;Wood fuel;5516;Production;m3;295000;304000;313000;322000;332000;341000;351000;361000;371000;382000;393000;404000;416000;428000;440000;451000;462000;473000;483000;495000;506000;518000;531000;543000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;878281;886700;895300;903933;912654;920113;927637;935228;942885;950610;956347;962126;967947;973811;979718;994900;1008815;1014815
-56;'214;Dominican Republic;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;487;10023;7400;7400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;33;33;82;82;82;;;;;;;
-56;'214;Dominican Republic;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;495;495;495;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;14;14;14;;;;;;;
-56;'214;Dominican Republic;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547;178;163;58;7;206;108;100;38;38;0;;;;;;;
-56;'214;Dominican Republic;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;13;27;7;1;99;13;9;4;4;0;;;;;;;
-56;'214;Dominican Republic;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9270;17230;17230
-56;'214;Dominican Republic;1628;Wood fuel, non-coniferous;5516;Production;m3;295000;304000;313000;322000;332000;341000;351000;361000;371000;382000;393000;404000;416000;428000;440000;451000;462000;473000;483000;495000;506000;518000;531000;543000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;556000;878281;886700;895300;903933;912654;920113;927637;935228;942885;950610;956347;962126;967947;973811;979718;985630;991585;997585
-56;'214;Dominican Republic;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;487;10023;7400;7400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;33;33;82;82;82;;;;;;;
-56;'214;Dominican Republic;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;495;495;495;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;14;14;14;;;;;;;
-56;'214;Dominican Republic;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547;178;163;58;7;206;108;100;38;38;0;;;;;;;
-56;'214;Dominican Republic;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;13;27;7;1;99;13;9;4;4;0;;;;;;;
-56;'214;Dominican Republic;1865;Industrial roundwood;5516;Production;m3;110000;125000;125000;140000;201000;176000;28000;28000;27000;27000;18000;29000;34000;29000;13000;11000;4300;3800;3300;3300;9700;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;11700;13700;16700;9700;9700;9700;9700;9700;35000;27000;50000;51000;55000;75180;103830;49000;151930;143860;110740
-56;'214;Dominican Republic;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;61000;45400;38200;42100;27300;30300;40500;40500;40500;17500;2375;962;3438;1007;2676;3846;800;5400;14000;9200;9200;9200;9200;9200;12673;12673;16672;5638;5195;7096;10758;28866;24149;21378;23242;35088;21917;50521;9252;25888;13501;35651;37493;26013
-56;'214;Dominican Republic;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;9659;8478;5046;6517;4630;3661;5882;5882;5882;977;284;145;232;86;226;490;247;1097;2010;2346;2346;2346;2346;2346;789;789;1035;638;966;1287;1383;7508;6990;2010;9763;13974;9116;18088;1556;2830;2386;13722;15940;12346
-56;'214;Dominican Republic;1865;Industrial roundwood;5916;Export quantity;m3;3700;2600;2900;2900;1500;1800;1200;1400;500;400;100;100;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;1521;608;116;14394;5255;2174;372;11817;4022;1102;116;762;454;0;0;412;814
-56;'214;Dominican Republic;1865;Industrial roundwood;5922;Export value;1000 USD;349;224;250;250;84;109;96;101;44;44;8;15;31;31;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;400;317;91;1240;408;139;176;1153;1928;213;50;352;122;0;0;9;268
-56;'214;Dominican Republic;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;30000;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26000;26000;47000;40000;32000;20200;35660;15000;75210;56830;63880
-56;'214;Dominican Republic;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375;919;2901;702;1930;3100;800;5400;14000;9200;9200;9200;9200;9200;9414;9414;12953;5349;4459;6792;10319;15577;10479;14988;5853;15965;3233;21051;8671;25625;13308;12304;11778;11477
-56;'214;Dominican Republic;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;129;184;55;161;425;247;1097;2010;2346;2346;2346;2346;2346;574;574;790;548;621;1042;1174;1640;1097;1568;584;4029;488;4383;1244;2682;2102;2720;1801;2734
-56;'214;Dominican Republic;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;1521;608;116;14394;3662;1996;60;1827;1294;588;0;151;0;0;0;35;0
-56;'214;Dominican Republic;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;400;317;91;1240;292;106;5;97;113;43;0;14;0;0;0;0;0
-56;'214;Dominican Republic;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375;919;2901;702;1930;3100;800;5400;14000;9200;9200;9200;9200;9200;9414;9414;12953;5349;4459;6792;10319;15577;10479;14988;5853;15965;3233;21051;8671;25625;13308;12304;11778;11477
-56;'214;Dominican Republic;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;129;184;55;161;425;247;1097;2010;2346;2346;2346;2346;2346;574;574;790;548;621;1042;1174;1640;1097;1568;584;4029;488;4383;1244;2682;2102;2720;1801;2734
-56;'214;Dominican Republic;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;1521;608;116;14394;3662;1996;60;1827;1294;588;0;151;0;0;0;35;0
-56;'214;Dominican Republic;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;400;317;91;1240;292;106;5;97;113;43;0;14;0;0;0;0;0
-56;'214;Dominican Republic;1867;Industrial roundwood, non-coniferous;5516;Production;m3;110000;125000;125000;140000;171000;176000;28000;28000;27000;27000;18000;29000;34000;29000;13000;11000;4300;3800;3300;3300;9700;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;11700;13700;16700;9700;9700;9700;9700;9700;9000;1000;3000;11000;23000;54980;68170;34000;76720;87030;46860
-56;'214;Dominican Republic;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;537;305;746;746;0;0;0;0;0;0;0;0;3259;3259;3719;289;736;304;439;13289;13670;6390;17389;19123;18684;29470;581;263;193;23347;25715;14536
-56;'214;Dominican Republic;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;48;31;65;65;0;0;0;0;0;0;0;0;215;215;245;90;345;245;209;5868;5893;442;9179;9945;8628;13705;312;148;284;11002;14139;9612
-56;'214;Dominican Republic;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1593;178;312;9990;2728;514;116;611;454;0;0;377;814
-56;'214;Dominican Republic;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;33;171;1056;1815;170;50;338;122;0;0;9;268
-56;'214;Dominican Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7997;7997;33;16985;18978;18672;25369;144;115;0;22263;24631;14536
-56;'214;Dominican Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5519;5519;22;9079;9883;8624;12019;113;73;0;10954;14091;9612
-56;'214;Dominican Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;226;75;2728;514;116;611;454;0;0;377;814
-56;'214;Dominican Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;166;471;1815;170;50;338;122;0;0;9;268
-56;'214;Dominican Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;537;305;746;746;0;0;0;0;0;0;0;0;3259;3259;3719;289;736;304;439;5292;5673;6357;404;145;12;4101;437;148;193;1084;1084;0
-56;'214;Dominican Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;48;31;65;65;0;0;0;0;0;0;0;0;215;215;245;90;345;245;209;349;374;420;100;62;4;1686;199;75;284;48;48;0
-56;'214;Dominican Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577;162;86;9915;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;10;5;585;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1868;Sawlogs and veneer logs;5516;Production;m3;110000;125000;125000;140000;145000;150000;2000;2000;1000;1000;15000;8000;8000;7000;7000;8000;2300;2300;2300;2300;7000;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;9000;11000;14000;7000;7000;7000;7000;7000;35000;27000;50000;51000;55000;75180;103830;49000;151930;107010;75930
-56;'214;Dominican Republic;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;61000;45400;38200;42100;27300;30300;40500;40500;40500;17500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;9659;8478;5046;6517;4630;3661;5882;5882;5882;977;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1868;Sawlogs and veneer logs;5916;Export quantity;m3;3700;2600;2900;2900;1500;1800;1200;1400;500;400;100;100;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;349;224;250;250;84;109;96;101;44;44;8;15;31;31;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26000;26000;47000;40000;32000;20200;35660;15000;75210;56830;44490
-56;'214;Dominican Republic;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;61000;45400;38200;42100;27300;30300;40500;40500;40500;17500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;9659;8478;5046;6517;4630;3661;5882;5882;5882;977;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;110000;125000;125000;140000;145000;150000;2000;2000;1000;1000;15000;8000;8000;7000;7000;8000;2300;2300;2300;2300;7000;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;9000;11000;14000;7000;7000;7000;7000;7000;9000;1000;3000;11000;23000;54980;68170;34000;76720;50180;31440
-56;'214;Dominican Republic;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;3700;2600;2900;2900;1500;1800;1200;1400;500;400;100;100;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;349;224;250;250;84;109;96;101;44;44;8;15;31;31;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1871;Other industrial roundwood;5516;Production;m3;;;;;56000;26000;26000;26000;26000;26000;3000;21000;26000;22000;6000;3000;2000;1500;1000;1000;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;0;0;0;0;0;0;0;0;0;36850;34810
-56;'214;Dominican Republic;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;30000;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19390
-56;'214;Dominican Republic;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;26000;26000;26000;26000;26000;26000;3000;21000;26000;22000;6000;3000;2000;1500;1000;1000;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;0;0;0;0;0;0;0;0;0;36850;15420
-56;'214;Dominican Republic;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;67000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;14000;25000;30000;40000;40000;18789;18829;18868;18908;18948;18988;18960;18931;18902;18874;18845;35030;24520;24520
-56;'214;Dominican Republic;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;37;17;25;60;60;72;79;255;465;573;237;850;951;1123;400;790
-56;'214;Dominican Republic;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;17;14;27;33;33;82;48;148;340;301;530;1542;2357;2918.23;600;783
-56;'214;Dominican Republic;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982;1730;1686;2070;1259;2326;2632;4544;3618;2205;313;761;1878;300;1123;1579;2279
-56;'214;Dominican Republic;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;260;275;281;261;471;823;1502;974;558;156;264;2234;135;352;860;1077
-56;'214;Dominican Republic;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;0;0;15;11;2;30;30;763;920;725;1882;216;992;8;83;179;32;132
-56;'214;Dominican Republic;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;42;8;1;6;6;59;68;200;329;47;53;39;60;106;149;221
-56;'214;Dominican Republic;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;425;0;0;0;0;0;1;1;77.48;76.08;0;1;2;2;2;2;2;2;0
-56;'214;Dominican Republic;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;0;0;0;0;0;6.5;6.5;0;0.45;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;465;9;14;31;981;8;6;8;26;18
-56;'214;Dominican Republic;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;34;55;12;20;45;39;43;44;146;144
-56;'214;Dominican Republic;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;206;0;0;0;0;0;0;0;1.48;1.08;0;1;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;0;0.5;0.5;0;0.45;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;0;0;15;11;2;30;30;369;455;716;1868;185;11;0;77;171;6;114
-56;'214;Dominican Republic;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;42;8;1;6;6;29;34;145;317;27;8;0;17;62;3;77
-56;'214;Dominican Republic;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;219;0;0;0;0;0;1;1;76;75;0;0;2;2;2;2;2;2;0
-56;'214;Dominican Republic;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;0;0;0;0;6;6;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;400;750;900;900;419;1;1;53;2
-56;'214;Dominican Republic;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;134;267;331;348;118;7;6;70;10
-56;'214;Dominican Republic;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;400;750;900;900;419;1;1;1;1
-56;'214;Dominican Republic;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;134;267;331;348;118;7;6;11;6
-56;'214;Dominican Republic;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;1
-56;'214;Dominican Republic;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;4
-56;'214;Dominican Republic;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15000;58000;56000;39000;36000;12000;12000;12000;27000;31000;35000;26000;26000;26000;26000;26000;26000;26000;26000
-56;'214;Dominican Republic;1872;Sawnwood;5616;Import quantity;m3;;;;;1300;2000;3400;107400;86100;94100;103700;317800;279600;245400;245400;342600;285100;467500;61700;107400;79100;95100;80500;60700;41600;41600;27100;66500;164400;136600;136600;215633;224353;261609;287500;234000;299000;312800;326700;289000;335500;314100;257600;259621;264721;301100;244116;328369;294369;272088;238592;205779;240529;262370;282228;259895;183047;273771;372293;286106;631969;411206;605266
-56;'214;Dominican Republic;1872;Sawnwood;5622;Import value;1000 USD;;;;;218;339;177;3312;2890;5470;5700;16000;14600;14100;14100;21500;30244;49600;9961;21361;16388;13289;10092;8932;5831;5831;4100;7493;27500;17800;19300;34884;43668;55136;61746;54792;72176;75378;78354;68763;70059;71068;56257;55722;61941;80811;81969;103797;59589;91540;73772;62349;90613;84437;92461;85357;92289;111567;98137;82342;164170;159972;156341
-56;'214;Dominican Republic;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;217;269;200;100;0;0;0;0;0;0;0;200;200;57;314;411;117;1096;1319;1423;1572;1380;1189;1410;629;1875;1592;663;302;71;198
-56;'214;Dominican Republic;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;52;93;53;32;0;0;0;0;0;0;0;61;61;119;85;192;247;313;326;347;571;534;594;311;265;736;556;133;51;90;47
-56;'214;Dominican Republic;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;46000;53000;37000;32000;10000;10000;10000;20000;23000;33000;19000;19000;19000;19000;19000;19000;19000;19000
-56;'214;Dominican Republic;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;1300;2000;3400;107400;86100;91900;100100;301100;220200;213300;213300;256900;213800;351000;54500;59600;75300;90600;76700;53400;35300;35300;21400;60000;149800;122000;122000;206202;212358;247440;265800;203200;272000;275000;273700;243000;282300;260900;204400;188700;193800;241200;178016;239369;239369;227843;201254;177982;201977;206000;242102;217383;116447;218752;248115;236123;533707;246206;547934
-56;'214;Dominican Republic;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;218;339;177;3312;2890;5170;5200;15000;11000;12000;12000;15500;24244;40000;8373;8890;14561;11289;8492;7578;4183;4183;2600;6000;24500;16300;16300;32010;39942;48406;49913;38290;58144;55797;55656;49510;49743;50752;35941;34091;40310;51611;49769;59951;32597;50896;41707;37235;56853;51500;61902;54117;53544;75399;55057;59837;129006;96942;105722
-56;'214;Dominican Republic;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;161;0;0;0;0;0;0;0;0;0;0;0;0;313;264;37;1048;1290;1385;1282;1192;778;1398;302;1134;1400;563;102;0;0
-56;'214;Dominican Republic;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;0;0;0;0;0;0;0;0;0;0;0;0;79;80;37;245;315;333;337;297;192;290;70;294;423;130;23;0;0
-56;'214;Dominican Republic;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15000;12000;3000;2000;4000;2000;2000;2000;7000;8000;2000;7000;7000;7000;7000;7000;7000;7000;7000
-56;'214;Dominican Republic;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;2200;3600;16700;59400;32100;32100;85700;71300;116500;7200;47800;3800;4500;3800;7300;6300;6300;5700;6500;14600;14600;14600;9431;11995;14169;21700;30800;27000;37800;53000;46000;53200;53200;53200;70921;70921;59900;66100;89000;55000;44245;37338;27797;38552;56370;40126;42512;66600;55019;124178;49983;98262;165000;57332
-56;'214;Dominican Republic;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;300;500;1000;3600;2100;2100;6000;6000;9600;1588;12471;1827;2000;1600;1354;1648;1648;1500;1493;3000;1500;3000;2874;3726;6730;11833;16502;14032;19581;22698;19253;20316;20316;20316;21631;21631;29200;32200;43846;26992;40644;32065;25114;33760;32937;30559;31240;38745;36168;43080;22505;35164;63030;50619
-56;'214;Dominican Republic;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;56;108;200;100;0;0;0;0;0;0;0;200;200;57;1;147;80;48;29;38;290;188;411;12;327;741;192;100;200;71;198
-56;'214;Dominican Republic;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;23;64;53;32;0;0;0;0;0;0;0;61;61;119;6;112;210;68;11;14;234;237;402;21;195;442;133;3;28;90;47
-56;'214;Dominican Republic;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;141;64;700;300;300;600;600;400;400;400;400;989;989;1000;804;974;1059;696;405;200;255;750;1122;865;1017;957;430;295;340;211;347
-56;'214;Dominican Republic;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;59;92;740;164;164;585;552;344;344;344;344;771;771;1900;1500;1200;766;1292;1141;1703;1254;1572;2346;1890;1920;1830;1458;1070;1751;1422;1224
-56;'214;Dominican Republic;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;2;87;1;14;12;6;0;10;0;0;30
-56;'214;Dominican Republic;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;375;25;102;12;46;11;27;0;16;7;6;8
-56;'214;Dominican Republic;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1873;Wood-based panels;5616;Import quantity;m3;300;600;1400;1400;800;1600;2000;1600;2600;4900;4600;4600;4600;4600;4600;4600;16300;34900;44600;7200;6700;5700;5700;12400;12300;12300;19300;16400;13400;14400;14400;27749;27866;28888;33500;36900;52900;46100;40100;43100;43100;43100;43100;30180;30180;57490;50600;76600;42950;80055;57143;63537;66929;52809;80791;68944;97016;123783;137230;80295;115836;154819;169546
-56;'214;Dominican Republic;1873;Wood-based panels;5622;Import value;1000 USD;57;111;241;293;190;334;376;324;460;612;713;713;713;713;713;713;3699;6955;10143;919;821;885;885;3426;3458;3458;5854;5774;3525;3525;13525;8020;8755;9133;10668;10452;18363;14442;12180;13684;13749;13749;13749;9258;9258;22927;20523;32040;18180;27852;23147;30748;31465;27689;32809;26513;39552;52426;42756;25273;50293;67896;71563
-56;'214;Dominican Republic;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;201;201;0;0;0;0;270;9;279;1204;454;2683;1480;1325;1652;1000;866;4197;1200;2002
-56;'214;Dominican Republic;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;66;66;0;0;0;0;102;42;224;545;869;779;666;770;1095;575;301;890;718;1327
-56;'214;Dominican Republic;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-56;'214;Dominican Republic;1640;Plywood and LVL;5616;Import quantity;m3;300;600;1400;1400;800;1600;2000;1600;2600;4800;4500;4500;4500;4500;4500;4500;4500;2500;12200;4200;4200;4200;4200;11000;11200;11200;17300;14400;12000;13000;13000;22544;22642;24515;26700;32400;43600;36200;30000;33000;33000;33000;33000;14375;14375;39040;35300;52000;30600;65155;47470;53864;54200;44538;71772;57679;78481;89197;74960;44580;63598;71232;74366
-56;'214;Dominican Republic;1640;Plywood and LVL;5622;Import value;1000 USD;57;111;241;293;190;334;376;324;460;607;706;706;706;706;706;706;706;700;3888;545;545;545;545;3265;3258;3258;5400;5000;3000;3000;13000;6741;7420;8172;9091;9433;16713;12148;9823;11318;11383;11383;11383;5103;5103;18600;16824;25382;14996;23937;17129;24730;24838;21579;26048;19270;28783;37741;28003;12220;26079;26688;25800
-56;'214;Dominican Republic;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;201;201;0;0;0;0;270;9;253;1082;105;1099;422;953;1280;900;500;3764;0;84
-56;'214;Dominican Republic;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;66;66;0;0;0;0;102;42;185;485;232;426;370;513;835;214;209;680;34;71
-56;'214;Dominican Republic;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;186
-56;'214;Dominican Republic;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;90
-56;'214;Dominican Republic;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;100;100;100;100;100;100;100;11800;32400;32400;3000;2500;1500;1500;1400;1100;1100;2000;2000;1400;1400;1400;2329;2302;2688;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;5;7;7;7;7;7;7;2993;6255;6255;374;276;340;340;161;200;200;454;774;525;525;525;393;464;557;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;1900;2400;3800;4000;4000;4000;4000;4000;4861;4861;2750;4300;8600;4100;5500;2983;2983;411;737;928;1000;5597;5597;14210;14231;23811;28504;29097
-56;'214;Dominican Republic;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;337;373;810;957;966;966;966;966;797;797;767;1202;2409;1154;1555;1708;1708;382;527;639;566;2730;2730;4777;4757;12102;18399;15664
-56;'214;Dominican Republic;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;60;54;0;2;12;12;0;11;0;513;160
-56;'214;Dominican Republic;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;16;0;6;8;7;5;7;36;135;322
-56;'214;Dominican Republic;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;0;0;275;275;376;494;354;1030;1660;628;371;334;536;609;212
-56;'214;Dominican Republic;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;142;142;152;273;182;417;651;257;97;104;208;413;132
-56;'214;Dominican Republic;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7
-56;'214;Dominican Republic;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-56;'214;Dominican Republic;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2876;2922;1685;4100;2600;6900;6100;6100;6100;6100;6100;6100;10914;10914;15700;11000;16000;8250;9400;6415;6415;11942;7040;7737;9235;11278;28361;47689;21150;27891;54474;65871
-56;'214;Dominican Republic;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;871;404;1073;682;1277;1484;1400;1400;1400;1400;1400;3353;3353;3560;2497;4249;2030;2360;4168;4168;6093;5310;5940;6260;7388;11698;9879;8192;11904;22396;29967
-56;'214;Dominican Republic;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;62;295;1584;1056;360;360;100;355;433;680;1751
-56;'214;Dominican Republic;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;45;621;353;290;249;253;356;85;174;543;928
-56;'214;Dominican Republic;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100;2600;4700;6000;6000;6000;6000;6000;6000;5198;5198;11400;6700;12000;6400;7000;1885;1885;5787;2390;2098;1628;1447;4052;3605;1130;1890;3293;2128
-56;'214;Dominican Republic;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073;682;1121;1469;1385;1385;1385;1385;1385;2413;2413;2550;1487;2690;1363;1598;1396;1396;2573;2045;1849;1237;1031;2028;1209;356;939;2213;1005
-56;'214;Dominican Republic;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;282;1578;1036;314;314;44;351;70;25;83
-56;'214;Dominican Republic;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;606;338;265;219;223;308;82;19;24;40
-56;'214;Dominican Republic;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4859;4859;4000;4000;2000;1000;1700;4185;4185;5874;4240;5358;7270;9268;24216;41905;20000;26000;51000;63562
-56;'214;Dominican Republic;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831;831;860;860;504;245;410;2582;2582;3273;2919;3848;4791;5911;9584;8010;7834;10965;20124;28903
-56;'214;Dominican Republic;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;42;9;4;13;39;39;50;3;362;654;1667
-56;'214;Dominican Republic;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;10;10;17;22;22;41;2;154;518;887
-56;'214;Dominican Republic;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;0;0;0;2200;100;100;100;100;100;100;857;857;300;300;2000;850;700;345;345;281;410;281;337;563;93;2179;20;1;181;181
-56;'214;Dominican Republic;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;156;15;15;15;15;15;15;109;109;150;150;1055;422;352;190;190;247;346;243;232;446;86;660;2;0;59;59
-56;'214;Dominican Republic;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;7;7;7;6;1;1;1;1
-56;'214;Dominican Republic;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;8;8;8;7;1;1;1;1
-56;'214;Dominican Republic;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2876;2827;1685;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;801;404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;10000;15000;15000;23000;22000;23000;23000;25000;30000;23000;21000;29000;35000;42000;50000;60000;53000;65000;86000;86000;110000;110000;110000;130000;130000;130000;130000;130000;130000;130000
-56;'214;Dominican Republic;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;5900;4300;5400;6000;6000;6000;15000;15000;15000;12300;8000;14600;16300;7100;5500;5500;10800;11500;11500;11500;11500;13700;11653;11720;2290;1513;1473;2400;2300;2400;2950;1800;1800;1100;549;2455;2934;2804;2555;3190;5037;3976;15839;9988;22461;24346;17844;19193;16897;17946;19207;5284;19681;19595.4;26222;16928
-56;'214;Dominican Republic;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;980;720;900;1000;1000;1000;2888;2888;2888;2047;975;3294;4164;1316;1114;1114;1375;1615;1615;1615;1608;3079;1702;1718;275;366;303;620;885;689;773;384;384;144;73;332;566;562;760;843;1347;779;3795;5401;9880;11601;9477;9642;6890;6767;9762;2698;9059;15799.15;15671;13424
-56;'214;Dominican Republic;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;1891;5125;8200;12277;20868;20868;20868;20868;22771;26714;22266;19735;27986;33122;40536;50135;60090;62504;65592;85856;80912;112018;104143;98971;121057;121057;80644;44001;80001;111194;104587
-56;'214;Dominican Republic;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;324;963;1919;920;1321;1321;1321;1321;2177;2976;2817;2131;2652;3779;4895;7980;5970;9148;12240;12378;18488;18401;13380;13198;21760;16060;11346;10614;22319;24747;16576
-56;'214;Dominican Republic;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;5900;4300;5400;6000;6000;6000;6000;6000;6000;6000;1800;3800;4000;4000;4000;4000;100;100;100;100;100;2300;253;320;102;255;269;1100;1400;200;150;0;0;0;0;0;589;589;984;900;920;446;2851;6130;11461;14484;13297;14060;10758;8643;11207;1563;13681;16116.4;14222;13144
-56;'214;Dominican Republic;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;980;720;900;1000;1000;1000;1000;1000;1000;1000;298;1362;969;969;969;969;37;53;53;53;46;1517;140;156;54;174;131;411;741;125;119;0;0;0;0;0;245;245;545;515;590;269;2313;4562;8574;9426;8508;8529;5767;4939;8452;1253;8004;13819.15;13447;11412
-56;'214;Dominican Republic;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1875;Wood pulp;5610;Import quantity;t;;;;;;;;5900;4300;5400;6000;6000;6000;6000;6000;6000;6000;1800;3800;4000;4000;4000;4000;100;100;100;100;100;2300;277;330;117;306;276;1200;1400;200;150;0;0;0;0;0;594;594;984;906;926;446;2851;6130;13571;16594;15407;16170;12868;10753;13317;3673;3472;3861.26;4171;4020
-56;'214;Dominican Republic;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;980;720;900;1000;1000;1000;1000;1000;1000;1000;298;1362;969;969;969;969;37;53;53;53;46;1517;156;161;62;185;134;435;741;125;119;0;0;0;0;0;248;248;545;519;594;269;2313;4562;9718;10570;9652;9673;6911;6083;9596;2397;2130;2721;3353;3032
-56;'214;Dominican Republic;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;12;8;8;8;8;8;8;8
-56;'214;Dominican Republic;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;4;4;4;4;4;4;4
-56;'214;Dominican Republic;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;388;281;281;10;10
-56;'214;Dominican Republic;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;271;201;201;9;9
-56;'214;Dominican Republic;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;0;19;19;123;0;8;10;;;;;;;
-56;'214;Dominican Republic;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;0;0;0;0;7;7;0;0;0;0;0;9;9;65;0;5;5;;;;;;;
-56;'214;Dominican Republic;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0;0;0;0;0;0;0;0;368;368;0;0;13;0;25;125;125;110;0;2;0;;;;;;;
-56;'214;Dominican Republic;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0;0;0;0;0;0;0;0;146;146;0;0;6;0;27;63;63;62;0;1;0;;;;;;;
-56;'214;Dominican Republic;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;5900;4300;5400;6000;6000;6000;6000;6000;6000;6000;1800;3800;4000;4000;4000;4000;100;100;100;100;100;2300;253;316;102;255;171;1100;1400;200;150;0;0;0;0;0;199;199;984;900;907;446;2826;5986;11317;14251;13297;14050;10748;8563;11127;1175;1081;1470.26;2051;1900
-56;'214;Dominican Republic;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;980;720;900;1000;1000;1000;1000;1000;1000;1000;298;1362;969;969;969;969;37;53;53;53;46;1517;140;152;54;174;103;411;741;125;119;0;0;0;0;0;92;92;545;515;584;269;2286;4490;8502;9299;8508;8523;5762;4908;8421;982;785;1376;2200;1879
-56;'214;Dominican Republic;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;721.26;703;703
-56;'214;Dominican Republic;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;678;651;651
-56;'214;Dominican Republic;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;93;78;120;144;1100;1400;200;150;0;0;0;0;0;47;47;732;500;723;436;2815;5967;11298;14238;13285;14032;10708;8562;11107;1169;1030;747;1347;1197
-56;'214;Dominican Republic;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;47;40;78;85;411;741;125;119;0;0;0;0;0;20;20;417;300;426;260;2273;4468;8480;9290;8502;8514;5741;4906;8384;979;751;694;1544;1225
-56;'214;Dominican Republic;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1
-56;'214;Dominican Republic;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;20;6;1;2;1;0
-56;'214;Dominican Republic;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;37;3;2;4;5;3
-56;'214;Dominican Republic;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;220;182;8;8;8;8;8;0;0;0;;;;;;;
-56;'214;Dominican Republic;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;115;155;6;6;6;6;6;0;0;0;;;;;;;
-56;'214;Dominican Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;223;13;135;27;0;0;0;0;0;0;0;0;0;152;152;152;180;2;2;3;11;11;5;12;18;40;;;;;;;
-56;'214;Dominican Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;11;96;18;0;0;0;0;0;0;0;0;0;72;72;72;100;3;3;7;16;16;3;6;9;21;;;;;;;
-56;'214;Dominican Republic;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;10;15;51;7;100;0;0;0;0;0;0;0;0;5;5;0;6;6;0;0;0;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110
-56;'214;Dominican Republic;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;5;8;11;3;24;0;0;0;0;0;0;0;0;3;3;0;4;4;0;0;0;1144;1144;1144;1144;1144;1144;1144;1144;1144;1144;1144;1144
-56;'214;Dominican Republic;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7
-56;'214;Dominican Republic;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3
-56;'214;Dominican Republic;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12319;14365.14;12161;11234
-56;'214;Dominican Republic;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7018;12242.15;11238;9524
-56;'214;Dominican Republic;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;59;60;89;52;55;70;110;14;63
-56;'214;Dominican Republic;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;18;60;66;113;64;106;79;121;16;91
-56;'214;Dominican Republic;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;10000;15000;15000;23000;22000;23000;23000;25000;30000;23000;21000;29000;35000;42000;50000;60000;53000;65000;86000;86000;110000;110000;110000;130000;130000;130000;130000;130000;130000;130000
-56;'214;Dominican Republic;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;9000;9000;9000;6300;6200;10800;12300;3100;1500;1500;10700;11400;11400;11400;11400;11400;11400;11400;2188;1258;1204;1300;900;2200;2800;1800;1800;1100;549;2455;2345;2215;1571;2290;4117;3530;12988;3858;11000;9862;4547;5133;6139;9303;8000;3721;6000;3479;12000;3784
-56;'214;Dominican Republic;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;1888;1888;1888;1047;677;1932;3195;347;145;145;1338;1562;1562;1562;1562;1562;1562;1562;221;192;172;209;144;564;654;384;384;144;73;332;321;317;215;328;757;510;1482;839;1306;2175;969;1113;1123;1828;1310;1445;1055;1980;2224;2012
-56;'214;Dominican Republic;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;1891;5125;8200;12277;20868;20868;20868;20868;22771;26714;22266;19735;27986;33122;40536;50135;60090;62504;65592;85856;80912;112018;104143;98966;121056;121056;80643;44000;80000;111193;104586
-56;'214;Dominican Republic;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;324;963;1919;920;1321;1321;1321;1321;2177;2976;2817;2131;2652;3779;4895;7980;5970;9148;12240;12378;18488;18401;13380;13195;21759;16059;11345;10613;22318;24746;16575
-56;'214;Dominican Republic;1876;Paper and paperboard;5510;Production;t;900;1900;1900;2300;2900;6900;7200;6500;8000;8100;8200;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9600;9600;9600;9600;9600;9600;9600;9600;9600;7000;7000;7000;21000;21000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000
-56;'214;Dominican Republic;1876;Paper and paperboard;5610;Import quantity;t;12700;10600;8900;15600;4200;7800;7500;21000;23300;27700;27300;10600;10600;14100;18500;18500;41600;42400;49500;72900;74800;67900;65800;75800;56900;60800;77000;85000;57000;71081;69081;85201;104597;104055;89300;95200;124200;119100;134100;129300;129300;129300;129300;182274;182274;207166;198193;211900;176012;226073;257548;241707;218083;212927;228340;259594;329813;285368;315379;259985;360879.46;484940;317036
-56;'214;Dominican Republic;1876;Paper and paperboard;5622;Import value;1000 USD;2977;2211;1622;3420;794;1510;1664;4665;5237;5530;6173;3591;3591;4859;8540;9040;20551;21634;25366;38484;46489;42101;40371;44312;35993;37773;40000;63173;37689;48214;47214;48068;53998;55144;60743;60843;80260;63239;69211;66964;66964;66964;66964;127484;127484;158861;152679;150550;124537;184448;264889;227526;157335;242759;246296;250658;306156;253714;319056;297995;372974;509231;424633
-56;'214;Dominican Republic;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;162;144;0;0;0;0;0;0;0;0;0;963;963;1375;1398;894;1208;6354;10469;4828;3831;11253;6779;9700;8511;2266;10309;13390;10075;18995;7302
-56;'214;Dominican Republic;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110;173;155;0;0;0;0;0;0;0;0;0;980;980;1862;2239;1550;1497;4659;19278;9150;7008;16599;9017;12207;18570;5437;22143;25483;34229.5;39811;29161
-56;'214;Dominican Republic;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-56;'214;Dominican Republic;2042;Graphic papers;5610;Import quantity;t;3700;4600;4600;5800;1500;6200;5700;5700;6200;7800;8500;8500;8500;11700;12500;12500;15400;16200;26100;38300;43500;43100;42100;47200;31200;35100;52000;45000;32000;46081;44081;34718;38339;37797;16200;29100;41200;30000;41800;37000;37000;37000;37000;62044;62044;72373;63400;108800;85112;109810;88479;83830;80793;70746;85019;89592;118792;84982;80176;74000;69379.46;107485;75695
-56;'214;Dominican Republic;2042;Graphic papers;5622;Import value;1000 USD;688;1005;810;920;343;1164;1335;1374;1438;1696;1891;1891;1891;2891;3591;4091;7551;8634;14056;20979;25469;25150;23462;24100;19149;20929;25000;28500;24689;35214;34214;23443;23901;25047;12942;25455;37443;16385;18196;15949;15949;15949;15949;43116;43116;51521;45339;79902;62183;92254;81951;84541;65800;70190;80295;77986;99794;75383;85159;64067;65127;95468;100936
-56;'214;Dominican Republic;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;67;67;0;0;0;;;;;;;180;180;48;153;232;280;897;2364;1892;2153;4065;4479;3980;2269;1371;2241;6350;6393;6733;2175
-56;'214;Dominican Republic;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;113;113;0;0;0;;;;;;;138;138;244;754;873;699;1870;3112;6844;4999;6616;5354;4551;5287;1256;5520;8932;7722.5;8673;5176
-56;'214;Dominican Republic;1671;Newsprint;5610;Import quantity;t;2600;3500;3500;3800;700;3500;3200;2500;2700;4200;2600;2600;2600;5800;6600;6600;8600;9400;10200;12400;15000;14000;14100;12100;7800;11700;17000;15000;17000;15000;13000;16245;18403;14254;12500;18100;27900;30000;41800;37000;37000;37000;37000;20925;20925;23279;18500;30000;21612;29278;29614;21300;23831;19875;20193;20525;22312;15985;16928;6000;8868.46;11985;8320
-56;'214;Dominican Republic;1671;Newsprint;5622;Import value;1000 USD;405;450;450;500;100;465;450;325;383;607;400;400;400;1400;2100;2600;3551;4634;4023;4957;7168;6606;6901;5400;4700;6480;10000;8500;10000;9000;8000;8020;9096;6453;7070;9762;12914;16385;18196;15949;15949;15949;15949;10672;10672;14371;11418;18729;12909;16638;18392;18479;14508;13247;13335;11137;11512;9577;8675;3378;5249;6241;6996
-56;'214;Dominican Republic;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;231;2253;838;580;824;824;467;800;2000;2000;568
-56;'214;Dominican Republic;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;1735;631;437;398;374;447;392;1014.4;1037;597
-56;'214;Dominican Republic;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-56;'214;Dominican Republic;1674;Printing and writing papers;5610;Import quantity;t;1100;1100;1100;2000;800;2700;2500;3200;3500;3600;5900;5900;5900;5900;5900;5900;6800;6800;15900;25900;28500;29100;28000;35100;23400;23400;35000;30000;15000;31081;31081;18473;19936;23543;3700;11000;13300;;;;;;;41119;41119;49094;44900;78800;63500;80532;58865;62530;56962;50871;64826;69067;96480;68997;63248;68000;60511;95500;67375
-56;'214;Dominican Republic;1674;Printing and writing papers;5622;Import value;1000 USD;283;555;360;420;243;699;885;1049;1055;1089;1491;1491;1491;1491;1491;1491;4000;4000;10033;16022;18301;18544;16561;18700;14449;14449;15000;20000;14689;26214;26214;15423;14805;18594;5872;15693;24529;;;;;;;32444;32444;37150;33921;61173;49274;75616;63559;66062;51292;56943;66960;66849;88282;65806;76484;60689;59878;89227;93940
-56;'214;Dominican Republic;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;67;67;0;0;0;;;;;;;180;180;48;153;232;280;897;2364;1661;1922;1812;3641;3400;1445;547;1774;5550;4393;4733;1607
-56;'214;Dominican Republic;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;113;113;0;0;0;;;;;;;138;138;244;754;873;699;1870;3112;6676;4831;4881;4723;4114;4889;882;5073;8540;6708.1;7636;4579
-56;'214;Dominican Republic;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3733;3733;3794;3100;4800;2800;2800;2305;2860;6710;2029;3023;3826;5608;5608;2499;15000;2511;6500;3455
-56;'214;Dominican Republic;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2946;2946;3050;2458;3847;2287;2287;2684;2916;6189;2353;3042;3523;4341;3691;3293;11899;3597;4658;6864
-56;'214;Dominican Republic;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;0;0;0;0;0;26;5;2;5;43;29;47;47;37;250;265;220;101
-56;'214;Dominican Republic;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;0;0;0;0;0;21;24;17;124;114;100;79;79;75;383;265;330;168
-56;'214;Dominican Republic;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22319;22319;26100;24600;40000;31700;45700;36290;39400;27717;33437;46576;43761;53693;38202;43141;33000;40000;70000;49284
-56;'214;Dominican Republic;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17610;17610;19800;18714;32144;25344;45461;38597;40868;24355;37056;46672;42676;51052;35935;49297;31175;41665;67676;66219
-56;'214;Dominican Republic;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;153;232;145;449;778;1036;1300;1638;3516;3284;1210;476;1207;5000;4000;4100;1308
-56;'214;Dominican Republic;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;754;873;632;1428;1146;6005;4167;4581;4362;3711;3866;768;4748;7648;6229.1;6717;3857
-56;'214;Dominican Republic;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-56;'214;Dominican Republic;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15067;15067;19200;17200;34000;29000;32032;20270;20270;22535;15405;15227;21480;37179;25187;17608;20000;18000;19000;14636
-56;'214;Dominican Republic;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11888;11888;14300;12749;25182;21643;27868;22278;22278;20748;17534;17246;20650;32889;26180;23894;17615;14616;16893;20857
-56;'214;Dominican Republic;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;448;1560;620;620;169;82;87;188;24;530;300;128;413;198
-56;'214;Dominican Republic;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;442;1945;647;647;176;247;303;944;35;250;509;214;589;554
-56;'214;Dominican Republic;1675;Other paper and paperboard;5510;Production;t;900;1900;1900;2300;2900;6900;7200;6500;8000;8100;8200;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9600;9600;9600;9600;9600;9600;9600;9600;9600;7000;7000;7000;11000;11000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000
-56;'214;Dominican Republic;1675;Other paper and paperboard;5610;Import quantity;t;9000;6000;4300;9800;2700;1600;1800;15300;17100;19900;18800;2100;2100;2400;6000;6000;26200;26200;23400;34600;31300;24800;23700;28600;25700;25700;25000;40000;25000;25000;25000;50483;66258;66258;73100;66100;83000;89100;92300;92300;92300;92300;92300;120230;120230;134793;134793;103100;90900;116263;169069;157877;137290;142181;143321;170002;211021;200386;235203;185985;291500;377455;241341
-56;'214;Dominican Republic;1675;Other paper and paperboard;5622;Import value;1000 USD;2289;1206;812;2500;451;346;329;3291;3799;3834;4282;1700;1700;1968;4949;4949;13000;13000;11310;17505;21020;16951;16909;20212;16844;16844;15000;34673;13000;13000;13000;24625;30097;30097;47801;35388;42817;46854;51015;51015;51015;51015;51015;84368;84368;107340;107340;70648;62354;92194;182938;142985;91535;172569;166001;172672;206362;178331;233897;233928;307847;413763;323697
-56;'214;Dominican Republic;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047;95;77;0;0;0;0;0;0;0;0;0;783;783;1327;1245;662;928;5457;8105;2936;1678;7188;2300;5720;6242;895;8068;7040;3682;12262;5127
-56;'214;Dominican Republic;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1064;60;42;0;0;0;0;0;0;0;0;0;842;842;1618;1485;677;798;2789;16166;2306;2009;9983;3663;7656;13283;4181;16623;16551;26507;31138;23985
-56;'214;Dominican Republic;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000
-56;'214;Dominican Republic;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;2100;2100;2400;6000;6000;2100;2100;2500;4900;3800;3000;2900;3400;2900;2900;2000;6000;2000;2000;2000;4000;5000;5000;5800;5300;6000;7000;6700;6700;6700;6700;6700;7583;7583;10819;10819;8000;9000;18302;16228;16228;7995;6715;6479;7262;9550;15245;10879;8000;7500;38000;30829
-56;'214;Dominican Republic;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;1700;1700;1968;4949;4949;1700;1700;1968;4200;3264;2600;2500;2524;1822;1822;1500;6000;1500;1500;1500;3500;4000;4000;5000;3539;4000;4500;6256;6256;6256;6256;6256;8341;8341;11200;11200;8200;9270;22454;24405;16270;9760;9984;10005;10095;11865;18065;16378;9233;8928;41840;43744
-56;'214;Dominican Republic;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;0;183;97;179;19;88;72;74;60;59;140;67;35;502
-56;'214;Dominican Republic;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;0;0;0;0;0;369;139;513;121;178;153;176;158;173;285;166;73;1283
-56;'214;Dominican Republic;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000
-56;'214;Dominican Republic;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73100;80900;80900;80900;80900;80900;93906;93906;113500;113500;88600;75400;89661;145007;133815;127768;128323;134206;154769;198152;181223;222661;174500;267000;324455;207497
-56;'214;Dominican Republic;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37854;40821;40821;40821;40821;40821;58224;58224;72740;72740;47970;38685;56028;138758;106940;80195;139484;141788;146099;178178;155587;195465;175859;236714;317108;232695
-56;'214;Dominican Republic;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;227;145;362;344;1188;5973;2338;1378;6764;2040;5393;5900;608;5778;5200;2844;8427;4171
-56;'214;Dominican Republic;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;340;207;506;638;1768;12465;1751;1235;8941;2681;6393;8532;1122;7280;6786;3882;10406;5041
-56;'214;Dominican Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;900;1900;1900;2300;2900;6900;7200;6500;8000;8100;8200;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9600;9600;9600;9600;9600;9600;9600;9600;9600;7000;7000;7000;11000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;22300;22300;18300;20100;24100;19000;18000;22200;19000;19000;20000;30000;20000;20000;20000;40483;54258;54258;59300;53500;69000;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;10000;10000;7411;8989;14913;12000;12000;15096;13300;13300;11500;24673;10000;10000;10000;18125;22597;22597;37801;28310;34817;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000
-56;'214;Dominican Republic;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73100;80900;80900;80900;80900;80900;52074;52074;82800;82800;82000;73500;68700;94718;94718;101898;85971;89596;99952;129561;126819;146004;115000;200000;220000;136763
-56;'214;Dominican Republic;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37854;40821;40821;40821;40821;40821;32286;32286;41800;41800;41239;36741;38880;63416;57149;58341;64234;65933;62733;79871;87497;90916;78922;129003;144713;107111
-56;'214;Dominican Republic;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;118;1;234;1;242;241;99;344;40;151;700;164;2170;1208
-56;'214;Dominican Republic;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;218;0;267;7;465;362;254;235;28;466;576;299;1897;1334
-56;'214;Dominican Republic;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20883;20883;17300;17300;3600;900;5700;23670;12500;10435;19573;22000;24952;32550;35236;38521;32000;32000;56024;31435
-56;'214;Dominican Republic;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12949;12949;20900;20900;4335;1109;6834;42371;16679;10216;46397;48872;50649;59930;50792;70282;68277;68163;113664;79991
-56;'214;Dominican Republic;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;4000;1002;1002;5896;1689;5000;4648;386;400;300;1000;1100;600
-56;'214;Dominican Republic;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;4351;649;649;7317;2097;5675;7228;738;690;535;1673;1936;956
-56;'214;Dominican Republic;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20679;20679;13300;13300;2900;900;12400;26472;26472;14950;21967;21062;27865;32891;17094;35931;25000;33000;45731;37563
-56;'214;Dominican Republic;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12821;12821;9900;9900;2256;695;9068;32637;32637;11156;28166;25828;30989;36567;15847;33082;27225;38676;57107;44377
-56;'214;Dominican Republic;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;227;145;362;206;1070;1786;1048;321;577;90;214;823;97;4815;4000;1618;4457;2149
-56;'214;Dominican Republic;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;340;207;506;386;1550;5484;765;509;1141;201;358;1020;279;6004;5536;1822;6122;2466
-56;'214;Dominican Republic;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;100;100;100;100;2861;147;125;485;812;1548;2000;3150;2074;2205;2500;2000;2700;1736
-56;'214;Dominican Republic;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;140;140;140;140;1246;334;475;482;687;1155;1728;1810;1451;1185;1435;872;1624;1216
-56;'214;Dominican Republic;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;186;54;54;49;20;80;85;85;412;200;62;700;214
-56;'214;Dominican Republic;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;2630;70;70;18;21;106;49;77;120;139;88;451;285
-56;'214;Dominican Republic;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;1800;1800;2600;9600;3400;2800;2800;3000;3800;3800;3000;4000;3000;3000;3000;6000;7000;7000;8000;7300;8000;9000;4700;4700;4700;4700;4700;18741;18741;10474;10474;6500;6500;8300;7834;7834;1527;7143;2636;7971;3319;3918;1663;3485;17000;15000;3015
-56;'214;Dominican Republic;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;1300;1300;1931;4316;2843;2351;2409;2592;1722;1722;2000;4000;1500;1500;1500;3000;3500;3500;5000;3539;4000;4500;3938;3938;3938;3938;3938;17803;17803;23400;23400;14478;14399;13712;19775;19775;1580;23101;14208;16478;16319;4679;22054;48836;62205;54815;47258
-56;'214;Dominican Republic;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047;95;77;0;0;0;0;0;0;0;0;0;715;715;1100;1100;300;584;4269;1949;501;121;405;172;255;268;227;2231;1700;771;3800;454
-56;'214;Dominican Republic;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1064;60;42;0;0;0;0;0;0;0;0;0;786;786;1278;1278;171;160;1021;3332;416;261;921;804;1110;4575;2901;9170;9480;22459;20659;17661
-56;'214;Dominican Republic;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106315;103718;119796;67998;95312;110187;112094
-56;'214;Dominican Republic;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11046;31373;17678;5600;7944;7097;12481
-56;'214;Dominican Republic;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549;2631;1259;485;841;988;1314
-56;'214;Dominican Republic;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;38;5;2;14;2
-56;'214;Dominican Republic;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1813;1935;675;183;362;355;482
-56;'214;Dominican Republic;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;20;38;4;0;0;0
-56;'214;Dominican Republic;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;696;584;302;479;633;832
-56;'214;Dominican Republic;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;0;1;2;14;2
-56;'214;Dominican Republic;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7715;8829;11112;4841;7950;9998;10870
-56;'214;Dominican Republic;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;2317;1905;1098;549;633;494
-56;'214;Dominican Republic;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5054;5464;5100;4955;5338;10070;10049
-56;'214;Dominican Republic;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1587;1308;1452;186;166;171;1157
-56;'214;Dominican Republic;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7025;10016;16255;13286;9852;12758;18869
-56;'214;Dominican Republic;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;1222;1268;257;158;20;1349
-56;'214;Dominican Republic;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;167
-56;'214;Dominican Republic;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;257
-56;'214;Dominican Republic;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77087;69958;79279;39778;63739;68504;63969
-56;'214;Dominican Republic;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5758;24328;12329;3839;6928;6004;9246
-56;'214;Dominican Republic;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;72;58;144;66;94;161
-56;'214;Dominican Republic;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-56;'214;Dominican Republic;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6796;6748;6733;4509;7526;7775;6862
-56;'214;Dominican Republic;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766;2175;686;215;141;255;233
-56;'214;Dominican Republic;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212592;221631;219626;207517;277199;293467;288566
-56;'214;Dominican Republic;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59531;65170;68335;73369;95043;94640;87119
-56;'214;Dominican Republic;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;88;82;10;86;171;211
-56;'214;Dominican Republic;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;0;10;26;2
-56;'214;Dominican Republic;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22646;24353;24489;22687;28075;35436;30391
-56;'214;Dominican Republic;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1159;1998;2295;2261;6131;4814;2665
-56;'214;Dominican Republic;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41906;44367;43401;39809;52222;46298;45045
-56;'214;Dominican Republic;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9279;12477;11069;14089;12162;10180;12031
-56;'214;Dominican Republic;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54899;68381;67673;66508;94653;99807;92984
-56;'214;Dominican Republic;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31641;34682;37242;39501;52550;54766;51506
-56;'214;Dominican Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93009;84442;83981;78503;102163;111755;119935
-56;'214;Dominican Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451;16012;17727;17518;24190;24854;20915
-58;'218;Ecuador;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453438;491773;463562;346076;443570.16;647642;523163
-58;'218;Ecuador;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381448;473986;528614;640849;684707;680592;598442
-58;'218;Ecuador;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2730;2582;3467;7926;5065;4415;4638;24643;19979;27270;21450;27869;31593;37988;39778;50982;54141;49295;56085;92321;124642;139294;122955;119562;129124;116442;147005;172325;101939;158788;162385;169268;113369;133524;232857;199951;206633;304185;254101;145241;146439;278233;270951;199791;199813;216121;219988;215791;258312.1;347230;389459;402094;417916;401491;304274;313791;366270;397035;362110;267717;321577.16;489403;384410
-58;'218;Ecuador;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1245;1224;1601;1977;2641;3569;4292;4254;4215;3410;4026;4991;6417;7478;9038;11965;12600;7744;9278;27234;29370;29888;16125;18657;11547;15342;21145;22536;21496;24499;25052;26652;31120;52117;72923;103421;93696;61861;59629;56542;59273;67353;118839;128320;143242;188593;219657;222734;200360;234049;252321;256366;305628;345321;364803;396638;336274;367467;400234;441613;544547;525716;488490
-58;'218;Ecuador;1861;Roundwood;5516;Production;m3;2548000;2431000;2433000;2445000;2356000;2914999;2995999;3107999;3289999;3527999;3733999;3859999;4012999;4081999;3996999;4080999;4360999;4279999;6014442;6143442;6140442;6102442;6312442;6464029;5955029;6120029;6473129;6546929;6696929;7175929;6790029;6975029;4704000;9361000;10673000;11292000;12103000;12008318;5878869;5908756;6234789;6304239;6319111;6632410;6648142;5840356;6082000;6016000;6855375;7031180;7043454;7299106;7418134;7431536;7445312;7455657;7466346;7477375;7488738;7500430;7306483;7272006;7284659
-58;'218;Ecuador;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;77000;88000;0;300;922;176;690;0;0;0;152;68;83;171;896;7;36;141;112;190;108;395;414;136;0;40
-58;'218;Ecuador;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;4260;3251;0;53;901;34;114;0;0;0;65;42.1;32;88;370;2;13;32;12;45;60;23;74;48;1;8
-58;'218;Ecuador;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;19688;199;52680;29000;20400;115700;112100;39000;149400;108188;174226;81520;78569;116806;38150;63522;145244;95817;56791;110525;140445;168440;174185;203391;186174;241772;220898;308691;283164;205712;511074;346829;365401
-58;'218;Ecuador;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;1760;35;4104;3097;2283;13005;20173;3099;7146;4738;6926;5180;5314;4594;10663;17461;30140;31724;17708;15471;33368;20553;63090;75714;68127;86435;75535;93195;89067;48616;125049;92481;104744
-58;'218;Ecuador;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;353701;364538;375573;386805;398430;410056;422076;434490;447298;460698;474688;489270;504442;504442;504442;504442;504442;504442;532029;532029;532029;532029;532029;532029;532029;532029;532029;924000;1861000;2109000;2231000;2390000;2278318;980869;1010756;1024789;1039239;1054111;1100410;1116142;1339356;1376000;1472000;1476375;1501180;1513454;1475106;1566134;1579536;1593312;1603657;1614346;1625375;1636738;1648430;2378595;2343198;2355851
-58;'218;Ecuador;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;103;71;38;136;0;0
-58;'218;Ecuador;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;58;17;18;44;0;0
-58;'218;Ecuador;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;740;3014;272;1297;6952;10401
-58;'218;Ecuador;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;185;555;38;286;1048;1794
-58;'218;Ecuador;1863;Roundwood, non-coniferous;5516;Production;m3;2548000;2431000;2433000;2445000;2356000;2561298;2631461;2732426;2903194;3129569;3323943;3437923;3578509;3634701;3536301;3606311;3871729;3775557;5510000;5639000;5636000;5598000;5808000;5932000;5423000;5588000;5941100;6014900;6164900;6643900;6258000;6443000;3780000;7500000;8564000;9061000;9713000;9730000;4898000;4898000;5210000;5265000;5265000;5532000;5532000;4501000;4706000;4544000;5379000;5530000;5530000;5824000;5852000;5852000;5852000;5852000;5852000;5852000;5852000;5852000;4927888;4928808;4928808
-58;'218;Ecuador;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;5;324;376;0;0;40
-58;'218;Ecuador;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;6;56;4;1;8
-58;'218;Ecuador;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220034;307951;280150;205440;509777;339877;355000
-58;'218;Ecuador;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75332;93010;88512;48578;124763;91433;102950
-58;'218;Ecuador;1864;Wood fuel;5516;Production;m3;1818000;1630000;1630000;1630000;1300000;1794999;1849999;1905999;1962999;2021999;2080999;2141999;2204999;2269999;2337999;2408999;2482999;2559999;4146442;4114442;4086442;4050442;4204442;4232029;3263029;3487029;3544029;3578029;3611029;3645029;3673029;3707029;3500000;4524000;4850000;5048000;5420000;5304318;5332869;5362756;5376789;5391239;5406111;5421410;5437142;3977356;4112000;4076000;4925375;4940180;4952454;4965106;4978134;4991536;5005312;5015657;5026346;5037375;5048738;5060430;5072446;5084783;5097436
-58;'218;Ecuador;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;112;112;41;0;240;312;0;0;0
-58;'218;Ecuador;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;12;12;1;0;1;1;1;1;1
-58;'218;Ecuador;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;28;;;;;;;
-58;'218;Ecuador;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;9;;;;;;;
-58;'218;Ecuador;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;353701;364538;375573;386805;398430;410056;422076;434490;447298;460698;474688;489270;504442;504442;504442;504442;504442;504442;532029;532029;532029;532029;532029;532029;532029;532029;532029;700000;905000;956000;995000;1068000;952318;980869;1010756;1024789;1039239;1054111;1069410;1085142;1098356;1112000;1126000;1140375;1155180;1167454;1180106;1193134;1206536;1220312;1230657;1241346;1252375;1263738;1275430;1287446;1299783;1312436
-58;'218;Ecuador;1628;Wood fuel, non-coniferous;5516;Production;m3;1818000;1630000;1630000;1630000;1300000;1441298;1485461;1530426;1576194;1623569;1670943;1719923;1770509;1822701;1877301;1934311;1993729;2055557;3642000;3610000;3582000;3546000;3700000;3700000;2731000;2955000;3012000;3046000;3079000;3113000;3141000;3175000;2800000;3619000;3894000;4053000;4352000;4352000;4352000;4352000;4352000;4352000;4352000;4352000;4352000;2879000;3000000;2950000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000;3785000
-58;'218;Ecuador;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;0;240;312;0;0;0
-58;'218;Ecuador;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;1;1;1;1
-58;'218;Ecuador;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;112;112;;;;;;;
-58;'218;Ecuador;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;12;12;;;;;;;
-58;'218;Ecuador;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;28;;;;;;;
-58;'218;Ecuador;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;9;;;;;;;
-58;'218;Ecuador;1865;Industrial roundwood;5516;Production;m3;730000;801000;803000;815000;1056000;1120000;1146000;1202000;1327000;1506000;1653000;1718000;1808000;1812000;1659000;1672000;1878000;1720000;1868000;2029000;2054000;2052000;2108000;2232000;2692000;2633000;2929100;2968900;3085900;3530900;3117000;3268000;1204000;4837000;5823000;6244000;6683000;6704000;546000;546000;858000;913000;913000;1211000;1211000;1863000;1970000;1940000;1930000;2091000;2091000;2334000;2440000;2440000;2440000;2440000;2440000;2440000;2440000;2440000;2234037;2187223;2187223
-58;'218;Ecuador;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;77000;88000;0;300;922;176;690;0;0;0;152;68;83;171;896;7;1;29;0;149;108;155;102;136;0;40
-58;'218;Ecuador;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;4260;3251;0;53;901;34;114;0;0;0;65;42.1;32;88;370;2;9;20;0;44;60;22;73;47;0;7
-58;'218;Ecuador;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;19688;199;52680;29000;20400;115700;112100;39000;149400;108188;174226;81520;78569;116806;38150;63522;145244;95817;56791;110525;140445;168440;174011;203217;186000;241744;220898;308691;283164;205712;511074;346829;365401
-58;'218;Ecuador;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;1760;35;4104;3097;2283;13005;20173;3099;7146;4738;6926;5180;5314;4594;10663;17461;30140;31724;17708;15471;33368;20553;63039;75663;68076;86426;75535;93195;89067;48616;125049;92481;104744
-58;'218;Ecuador;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224000;956000;1153000;1236000;1322000;1326000;0;0;0;0;0;31000;31000;241000;264000;346000;336000;346000;346000;295000;373000;373000;373000;373000;373000;373000;373000;373000;1091149;1043415;1043415
-58;'218;Ecuador;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622;142;4;0;0;0;55;2;54;0;292;0;0;0;0;130;103;71;38;136;0;0
-58;'218;Ecuador;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;29;6;0;0;0;12;0.1;6;0;39;0;0;0;0;38;58;17;18;44;0;0
-58;'218;Ecuador;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;217;174;73;300;400;200;100;2000;8400;17188;226;39596;10000;0;4;0;130;0;181;0;0;39;0;0;0;345;864;740;3014;272;1297;6952;10401
-58;'218;Ecuador;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;31;19;10;37;38;25;27;166;1896;926;76;2809;1516;0;2;0;48;0;16;0;0;4;0;0;0;31;203;185;555;38;286;1048;1794
-58;'218;Ecuador;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622;142;4;0;0;0;55;2;54;0;292;0;0;0;0;130;103;71;38;136;0;0
-58;'218;Ecuador;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;29;6;0;0;0;12;0.1;6;0;39;0;0;0;0;38;58;17;18;44;0;0
-58;'218;Ecuador;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;217;174;73;300;400;200;100;2000;8400;17188;226;39596;10000;0;4;0;130;0;181;0;0;39;0;0;0;345;864;740;3014;272;1297;6952;10401
-58;'218;Ecuador;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;31;19;10;37;38;25;27;166;1896;926;76;2809;1516;0;2;0;48;0;16;0;0;4;0;0;0;31;203;185;555;38;286;1048;1794
-58;'218;Ecuador;1867;Industrial roundwood, non-coniferous;5516;Production;m3;730000;801000;803000;815000;1056000;1120000;1146000;1202000;1327000;1506000;1653000;1718000;1808000;1812000;1659000;1672000;1878000;1720000;1868000;2029000;2054000;2052000;2108000;2232000;2692000;2633000;2929100;2968900;3085900;3530900;3117000;3268000;980000;3881000;4670000;5008000;5361000;5378000;546000;546000;858000;913000;913000;1180000;1180000;1622000;1706000;1594000;1594000;1745000;1745000;2039000;2067000;2067000;2067000;2067000;2067000;2067000;2067000;2067000;1142888;1143808;1143808
-58;'218;Ecuador;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;77000;88000;0;300;300;34;686;0;0;0;97;66;29;171;604;7;1;29;0;19;5;84;64;0;0;40
-58;'218;Ecuador;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;4260;3251;0;53;52;5;108;0;0;0;53;42;26;88;331;2;9;20;0;6;2;5;55;3;0;7
-58;'218;Ecuador;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;19471;25;52607;28700;20000;115500;112000;37000;141000;91000;174000;41924;68569;116806;38146;63522;145114;95817;56610;110525;140445;168401;174011;203217;186000;241399;220034;307951;280150;205440;509777;339877;355000
-58;'218;Ecuador;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;1729;16;4094;3060;2245;12980;20146;2933;5250;3812;6850;2371;3798;4594;10661;17461;30092;31724;17692;15471;33368;20549;63039;75663;68076;86395;75332;93010;88512;48578;124763;91433;102950
-58;'218;Ecuador;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;66;0;0;0;0;0;0;0;0;1;0;64;0;0;0
-58;'218;Ecuador;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;42;0;0;0;0;0;0;0;0;0;0;55;0;0;0
-58;'218;Ecuador;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;19471;25;52607;28700;20000;115500;112000;37000;141000;91000;174000;20380;11225;116806;38146;63490;145114;95817;56610;110525;140445;168121;174011;203217;186000;241399;219990;307951;280150;205440;509777;338184;355000
-58;'218;Ecuador;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;1729;16;4094;3060;2245;12980;20146;2933;5250;3812;6850;1195;924;4594;10661;17452;30092;31724;17692;15471;33368;20453;63039;75663;68076;86395;75322;93010;88512;48578;124763;91024;102950
-58;'218;Ecuador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;77000;88000;0;300;300;34;686;0;0;0;11;0;29;171;604;7;1;29;0;19;4;84;0;0;0;40
-58;'218;Ecuador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;4260;3251;0;53;52;5;108;0;0;0;3;0;26;88;331;2;9;20;0;6;2;5;0;3;0;7
-58;'218;Ecuador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21544;57344;0;0;32;0;0;0;0;0;280;0;0;0;0;44;0;0;0;0;1693;0
-58;'218;Ecuador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176;2874;0;0;9;0;0;0;0;0;96;0;0;0;0;10;0;0;0;0;409;0
-58;'218;Ecuador;1868;Sawlogs and veneer logs;5516;Production;m3;730000;801000;803000;815000;959000;1070000;1100000;1160000;1280000;1453000;1593000;1652000;1740000;1744000;1591000;1604000;1810000;1652000;1800000;1961000;1961000;1961000;1962000;2077000;2350000;2285000;2580000;2610000;2701000;3106000;2685000;2793000;680000;4216000;5164000;5544000;5931000;5952000;0;0;0;0;0;298000;298000;1121000;1198000;1280000;1270000;1280000;1280000;1280000;1280000;1280000;1280000;1280000;1280000;1280000;1280000;1280000;32043;72337;72337
-58;'218;Ecuador;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;843000;1033000;1109000;1186000;1190000;0;0;0;0;0;31000;31000;23000;14000;96000;86000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;18941;30435;30435
-58;'218;Ecuador;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;730000;801000;803000;815000;959000;1070000;1100000;1160000;1280000;1453000;1593000;1652000;1740000;1744000;1591000;1604000;1810000;1652000;1800000;1961000;1961000;1961000;1962000;2077000;2350000;2285000;2580000;2610000;2701000;3106000;2685000;2793000;544000;3373000;4131000;4435000;4745000;4762000;0;0;0;0;0;267000;267000;1098000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;1184000;13102;41902;41902
-58;'218;Ecuador;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;682000;546000;546000;858000;913000;913000;913000;913000;492000;476000;364000;364000;481000;481000;481000;481000;481000;481000;481000;481000;481000;481000;481000;1522994;1435886;1435886
-58;'218;Ecuador;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;795208;735980;735980
-58;'218;Ecuador;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546000;546000;546000;858000;913000;913000;913000;913000;492000;476000;364000;364000;481000;481000;481000;481000;481000;481000;481000;481000;481000;481000;481000;727786;699906;699906
-58;'218;Ecuador;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;71000;71000;69000;73000;260000;262000;261000;264000;290000;330000;170000;184000;442000;564000;599000;635000;682000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;113000;120000;127000;136000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;71000;71000;69000;73000;260000;262000;261000;264000;290000;330000;170000;184000;354000;451000;479000;508000;546000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1871;Other industrial roundwood;5516;Production;m3;;;;;97000;50000;46000;42000;47000;53000;60000;66000;68000;68000;68000;68000;68000;68000;68000;68000;22000;20000;77000;82000;82000;86000;88100;94900;94900;94900;262000;291000;82000;57000;60000;65000;70000;70000;0;0;0;0;0;0;0;250000;296000;296000;296000;330000;330000;573000;679000;679000;679000;679000;679000;679000;679000;679000;679000;679000;679000
-58;'218;Ecuador;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218000;250000;250000;250000;250000;250000;199000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000
-58;'218;Ecuador;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;97000;50000;46000;42000;47000;53000;60000;66000;68000;68000;68000;68000;68000;68000;68000;68000;22000;20000;77000;82000;82000;86000;88100;94900;94900;94900;262000;291000;82000;57000;60000;65000;70000;70000;0;0;0;0;0;0;0;32000;46000;46000;46000;80000;80000;374000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000;402000
-58;'218;Ecuador;1630;Wood charcoal;5510;Production;t;1554476;1359040;1188176;1038793;908191;794009;694183;606907;530604;463894;434870;312693;182531;174401;169038;146641;138127;127976;123168;121032;120356;129158;150874;149252;152000;164000;167000;169000;171000;173000;175000;176000;84169;64000;68000;71000;78000;91506;99958;109190;106494;103865;101301;98800;96361;93425;90600;87800;85143;82549;79476;76517;73668;68325;43957;79406;85753;85753;105000;105000;111880;102678;48850
-58;'218;Ecuador;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;2;36;7;1;6;18;64;69;1;41;9;3;23;51;59;0
-58;'218;Ecuador;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;4;21;25;7;17;38;114;72;14;56;31;12;43;52;102;46
-58;'218;Ecuador;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;700;600;600;600;0;0;0;0;0;0;14;14;14;14;14;14;0;42;246;340;340;340;60;1154;62;14;12;12;12;12
-58;'218;Ecuador;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;44;43;43;43;0;0;0;0;0;0;6;6;6;6;6;6;0;17;49;23;23;23;18;347;24;10;4;4;4;4
-58;'218;Ecuador;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525000;525000;525000;525000;525000;525000;574000;574000;144000;158000;158000;158000;358000;358000;358000;358000;358000;358000;358000;358000;358000;358000;358000;358000;358000;358000
-58;'218;Ecuador;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;12;2;3;1;4;2;4;3.43;60.5;30;45;47;45;44;366;3965;857;16;32
-58;'218;Ecuador;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;19;19;2;2;1;7;2;3;7;40;25;30;33;30;32;32;38;9;37;2
-58;'218;Ecuador;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;1;62025;132096;141569.91;127001.45;65008;237969;182912;86212;40001;232;235;234;2165
-58;'218;Ecuador;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4091;8381;8449;9897;3778;21389;21199;7382;4040;92;100;97;217
-58;'218;Ecuador;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000
-58;'218;Ecuador;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0.43;0.5;3;3;5;3;2;324;3923;128;16;31
-58;'218;Ecuador;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;1;1;1;5;5;8;5;7;7;13;6;37;2
-58;'218;Ecuador;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62003;132082;141569;127000;65000;237864;182714;86000;39789;20;23;22;1953
-58;'218;Ecuador;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4083;8374;8444;9888;3764;21345;21121;7302;3960;12;20;17;137
-58;'218;Ecuador;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;325000;382000;476000;525000;525000;525000;525000;525000;525000;525000;574000;574000;144000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000;158000
-58;'218;Ecuador;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;200;0;0;0;0;0;0;12;12;2;3;1;2;0;2;3;60;27;42;42;42;42;42;42;729;0;1
-58;'218;Ecuador;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;55;192;0;0;0;0;0;0;19;19;2;2;1;4;0;2;6;39;20;25;25;25;25;25;25;3;0;0
-58;'218;Ecuador;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;22;14;0.91;1.45;8;105;198;212;212;212;212;212;212
-58;'218;Ecuador;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;7;5;9;14;44;78;80;80;80;80;80;80
-58;'218;Ecuador;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103463;108823;230309
-58;'218;Ecuador;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;8;23;50;39;0
-58;'218;Ecuador;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;5;6;41;43;5
-58;'218;Ecuador;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-58;'218;Ecuador;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127
-58;'218;Ecuador;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103463;108823;230309
-58;'218;Ecuador;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;8;23;30;22;0
-58;'218;Ecuador;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;2;3;4;12;5
-58;'218;Ecuador;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;17;0
-58;'218;Ecuador;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;37;31;0
-58;'218;Ecuador;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-58;'218;Ecuador;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127
-58;'218;Ecuador;1872;Sawnwood;5516;Production;m3;316800;347800;347800;374300;367200;577500;553700;584100;643500;703500;769800;796200;837600;834500;746500;751500;851600;761600;830000;904600;985600;979600;1141600;1211600;1214600;1257600;1264600;1279600;1491600;1640600;865000;908000;196000;1600000;1696000;1886000;2075000;2079000;1455000;715000;794000;750000;750000;755000;755000;350000;393000;417000;428000;716500;710930;838450;426430;426430;615561;558779;558779;558779;306000;306000;411417;416685;283730
-58;'218;Ecuador;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;163;200;200;200;1600;1700;0;4;87;115;71;128;93;332;16;1197;5833;935;1330;3050;3695;5125;5314;3393;8249;15100;18330;32258;27390;17877;6244
-58;'218;Ecuador;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;13;36;96;287;1068;1174;0;3;35;80;38;57;38;141;6;295;1827;560;569;1697;1878;2179;2147;1673;2947;4709;5758;9709;7761;7898;8629
-58;'218;Ecuador;1872;Sawnwood;5916;Export quantity;m3;31300;32900;44600;42400;48400;47300;63300;62900;63900;62500;65200;78300;94000;82800;62900;63300;67000;13300;12800;7700;11900;10400;23000;30500;22600;26600;2700;15400;17600;18500;11700;13773;20300;38100;116500;115400;22200;30000;28000;28200;22900;29467;22934;28658;34141;36631;42779;83792;89350;139792;158653;142148;134061;177151;203582;181117;129146;104316;125081;227763;113252;123235;119010
-58;'218;Ecuador;1872;Sawnwood;5922;Export value;1000 USD;1245;1224;1601;1794;2249;2795;3631;3839;3717;3178;3760;4458;6334;6673;8588;8645;9200;2000;2000;3978;6200;5400;12000;15900;8420;10397;1708;13670;13950;14389;12055;6060;8741;22481;24485;27121;19339;22693;22140;17313;17663;19382;21934;33503;36659;47397;62792;70344;50616;93148;82147;77184;76888;95946;137986;127574;90435;79340;100479;175455;94948;62201;60596
-58;'218;Ecuador;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;39000;320000;340000;377000;415000;416000;291000;121000;134000;150000;150000;95000;95000;107000;107000;107000;118000;118000;118000;118000;110782;110782;110782;54000;54000;54000;54000;54000;54000;54000;54000
-58;'218;Ecuador;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;;200;100;100;1500;1600;0;0;84;70;46;34;55;154;13;1168;5717;249;861;1366;1827;2773;1381;1324;5912;12947;16291;16626;11072;10252;2078
-58;'218;Ecuador;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;36;74;74;796;875;0;0;30;27;14;15;19;53;4;267;1735;66;241;422;514;1035;611;491;1637;3499;4305;4133;3148;3822;3448
-58;'218;Ecuador;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8041;1300;4700;2500;200;200;4000;2000;2000;2900;4500;5236;6261;4464;3020;3633;5864;3967;2057;837;289;36;568;227;94;785;677;1081;996;252;4235;10
-58;'218;Ecuador;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2791;136;1092;587;79;79;1512;913;913;967;592;844;1282;1016;1096;856;1547;490;410;270;143;9;89;73;23;94;84;163;126;141;1630;25
-58;'218;Ecuador;1633;Sawnwood, non-coniferous;5516;Production;m3;316800;347800;347800;374300;367200;577500;553700;584100;643500;703500;769800;796200;837600;834500;746500;751500;851600;761600;830000;904600;985600;979600;1141600;1211600;1214600;1257600;1264600;1279600;1491600;1640600;865000;900000;157000;1280000;1356000;1509000;1660000;1663000;1164000;594000;660000;600000;600000;660000;660000;243000;286000;310000;310000;598500;592930;720450;315648;315648;504779;504779;504779;504779;252000;252000;357417;362685;229730
-58;'218;Ecuador;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;163;0;100;100;100;100;0;4;3;45;25;94;38;178;3;29;116;686;469;1684;1868;2352;3933;2069;2337;2153;2039;15632;16318;7625;4166
-58;'218;Ecuador;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;13;0;22;213;272;299;0;3;5;53;24;42;19;88;2;28;92;494;328;1275;1364;1144;1536;1182;1310;1210;1453;5576;4613;4076;5181
-58;'218;Ecuador;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;31300;32900;44600;42400;48400;47300;63300;62900;63900;62500;65200;78300;94000;82800;62900;63300;67000;13300;12800;7700;11900;10400;23000;30500;22600;26600;2700;15400;17600;18500;11700;5732;19000;33400;114000;115200;22000;26000;26000;26200;20000;24967;17698;22397;29677;33611;39146;77928;85383;137735;157816;141859;134025;176583;203355;181023;128361;103639;124000;226767;113000;119000;119000
-58;'218;Ecuador;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1245;1224;1601;1794;2249;2795;3631;3839;3717;3178;3760;4458;6334;6673;8588;8645;9200;2000;2000;3978;6200;5400;12000;15900;8420;10397;1708;13670;13950;14389;12055;3269;8605;21389;23898;27042;19260;21181;21227;16400;16696;18790;21090;32221;35643;46301;61936;68797;50126;92738;81877;77041;76879;95857;137913;127551;90341;79256;100316;175329;94807;60571;60571
-58;'218;Ecuador;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;1400;3000;3000;2000;1900;2000;2200;2000;2000;2000;2000;1000;1300;1350;1200;1000;8700;120000;110000;143000;151000;168000;185000;185000;55000;55000;55000;87000;52000;112000;121000;198000;234000;234000;243000;242900;242900;242900;242900;242900;242900;243400;243400;243400;243400;243400;243400;243400;243400
-58;'218;Ecuador;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;159;100;200;200;200;2000;700;1600;200;333;250;360;356;300;330;525;942;712;2372;3190;4015;3980;3746;1655;1536;1574;1355;519;691;614;778
-58;'218;Ecuador;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;72;194;109;109;109;1163;570;1010;152;585;663;811;844;1097;1133;1427;1565;1694;3247;3528;3997;3438;3450;2798;2571;3179;3012;1485;2030;2300;2304
-58;'218;Ecuador;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;4500;8100;15000;131000;1300;1000;600;600;500;806;786;904;1652;1583;1856;2878;2165;2181;1940;902;206;281;224;142;153;1712;2486;2168;139;19;20
-58;'218;Ecuador;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5643;5277;2412;6045;18251;1701;1620;1381;1346;989;1460;2120;2357;3928;4615;5709;8524;7003;7663;7857;4246;775;825;802;482;358;4379;6327;5026;603;210;210
-58;'218;Ecuador;1873;Wood-based panels;5516;Production;m3;;;800;8000;7000;11000;15000;19000;20000;20000;23600;26400;28800;30000;38000;38000;48000;64000;73500;85400;93000;95000;95000;95000;73000;77000;71000;32100;48000;45000;172000;178000;110000;148000;189000;212000;234000;234000;234000;234000;234000;263500;269100;613800;613800;623000;661000;707000;722000;727000;744000;779000;779000;821000;821076;821076;821000;821000;821000;820978;820978;820978;820978
-58;'218;Ecuador;1873;Wood-based panels;5616;Import quantity;m3;74;37;105;74;68;105;105;9161;4949;1790;17480;80;150;105;105;100;;;;;;;;;;;;;;;;1318;645;3799;5400;5800;5100;4400;1400;6900;12270;17093;22786;66467;66660;39785;43785;41132;55747;98870;120696;108008;152756;101039;79672;72971;87685;102889;112955;78684;99956.34;87016;93344
-58;'218;Ecuador;1873;Wood-based panels;5622;Import value;1000 USD;12;6;17;12;11;17;22;1309;672;265;2516;13;23;41;46;46;;;;;;;;;;;;;;;;394;354;1139;1630;2399;1927;2260;591;1489;2823;6809;8724;13370;13492;16380;18932;17662;19498;35736;51872;49650;62701;45473;30815;26328;29678;37813;47377;32408;44823.23;49074;38489
-58;'218;Ecuador;1873;Wood-based panels;5916;Export quantity;m3;;;;900;1900;4300;4400;2400;2900;1500;1300;2400;400;2300;1500;10400;10500;15900;20200;70100;54300;55600;11600;11600;12300;17700;52800;24000;31900;42500;40700;32112;28042;78700;75500;74600;65400;38200;41400;92000;98000;125550;254861;215173;222661;220414;229577;229108;288296;262187;245657;285954;284340;318178;323161;343816;301750;343798;318635;370668;488161;461154;573371
-58;'218;Ecuador;1873;Wood-based panels;5922;Export value;1000 USD;;;;183;392;774;661;415;498;232;266;533;83;805;450;3320;3400;5744;7278;23256;23170;24488;4125;2757;3127;4945;19437;8866;7546;9984;11237;9859;8917;19600;29321;30599;38843;10869;12814;31155;30421;33307;76645;74281;78407;107320;102464;87630;99608;96892;94751;115604;117776;126630;128297;135827;120873;151892;183004;204593;292364.28;334707;298161
-58;'218;Ecuador;1640;Plywood and LVL;5516;Production;m3;;;800;8000;7000;11000;15000;19000;20000;20000;23600;26400;28800;30000;38000;38000;40000;50000;54500;59400;65000;65000;65000;65000;57000;60000;48000;27000;28000;20000;91000;94000;22000;88000;93000;99000;109000;109000;109000;109000;109000;125000;132000;487000;487000;487000;487000;487000;487000;487000;487000;487000;487000;487000;487076;487076;487000;487000;487000;486978;486978;486978;486978
-58;'218;Ecuador;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1137;59;200;100;400;400;400;300;800;270;301;1208;634;827;1300;1500;809;966;781;10016;8444;7729;7821;4138;1571;2488;1877;1214;494;1460;390;651
-58;'218;Ecuador;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;34;86;56;210;112;123;169;250;160;242;793;352;474;1346;1518;418;652;398;5315;5013;4846;4045;2524;941;618;847;943;522;1262;618;563
-58;'218;Ecuador;1640;Plywood and LVL;5916;Export quantity;m3;;;;900;1900;4300;4400;2400;2900;1500;1300;2400;400;2300;1500;10400;10500;15600;1200;51100;26300;25600;8000;9000;11000;15300;34300;20000;13300;18400;23000;21245;17433;46800;46700;59700;44000;19000;26000;75000;68000;26537;115815;132240;139728;108006;79769;76722;59050;72029;52637;67085;62544;46843;65363;82046;35260;74064;84940;115126;140599;144800;139222
-58;'218;Ecuador;1640;Plywood and LVL;5922;Export value;1000 USD;;;;183;392;774;661;415;498;232;266;533;83;805;450;3320;3400;5622;428;16406;13075;13672;2794;2240;2910;4586;17232;8140;4623;6567;8187;8130;6944;13792;22452;27040;31420;6012;10060;27995;24729;7748;46962;57076;61202;47809;39033;42798;34452;38658;29457;38209;36048;32872;31671;38428;17427;47234;50078;67561;84923;99680;91973
-58;'218;Ecuador;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;8000;14000;19000;26000;28000;30000;30000;30000;16000;17000;23000;5100;20000;25000;81000;84000;88000;60000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;31;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;12;624;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;300;19000;19000;28000;30000;3600;2600;1300;2400;18500;4000;18600;24100;17700;10867;10609;31900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;122;6850;6850;10095;10816;1331;517;217;359;2205;726;2923;3417;3050;1729;1973;5808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71000;85000;94000;94000;94000;94000;94000;94000;94000;94000;94000;94000;126000;160000;180000;182000;199000;234000;234000;276000;276000;276000;276000;276000;276000;276000;276000;276000;276000
-58;'218;Ecuador;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;1000;300;100;100;700;700;5052;2054;4059;4059;5398;9198;5089;4089;8186;31156;17133;49328;21619;17283;17590;29650;29650;44773;21546;41126.96;35398;50274
-58;'218;Ecuador;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;528;154;44;44;122;122;1844;852;1048;1048;2663;2938;1910;1607;2786;8165;5543;14228;6691;5560;5283;7601;7601;17450;9822;14309.36;15763;15981
-58;'218;Ecuador;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28800;14900;21400;19200;15400;17000;30000;55492;96000;39266;39266;34290;65990;97990;115000;122000;161000;183000;189000;239000;232000;241000;246047;246047;207987;228454;323734;289691;418971
-58;'218;Ecuador;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6869;3559;7423;4857;2754;3160;5692;7214;12818;9114;9114;14248;17920;29214;34261;39590;54988;64326;69942;82350;87222;90655;97000;97000;125132;128112;196101.28;216583;194810
-58;'218;Ecuador;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;802;802;802;2949;1015;1556;844;1688;1306;1610;636;1388;3102;2095;1837;893;5472.05;517;4837
-58;'218;Ecuador;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;168;168;1026;410;615;490;726;755;547;185;347;815;1043;865;387;2454.11;240;1258
-58;'218;Ecuador;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;0;0;0;0;0;0;0;0;0;0;0;0;0;53;53
-58;'218;Ecuador;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;41;41
-58;'218;Ecuador;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;28000;31000;31000;31000;31000;31000;44500;43100;32800;32800;42000;48000;60000;55000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000
-58;'218;Ecuador;1874;Fibreboard;5616;Import quantity;m3;74;37;105;74;68;105;105;9161;4949;1790;17480;80;150;105;105;100;;;;;;;;;;;;;;;;90;555;1099;2900;4400;4400;3900;1000;5400;11300;11740;19524;60972;60972;32285;32285;32285;49677;88347;78680;80743;94393;69989;57615;52422;52445;69267;65131;55751;51897.32;50711;37582
-58;'218;Ecuador;1874;Fibreboard;5622;Import value;1000 USD;12;6;17;12;11;17;22;1309;672;265;2516;13;23;41;46;46;;;;;;;;;;;;;;;;36;308;429;621;1661;1661;2093;378;1117;2541;4723;7079;11802;11802;12203;14308;14308;16829;31937;37902;38368;42872;34190;22546;19757;20644;28322;28119;21677;26797.77;32453;20687
-58;'218;Ecuador;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;43521;43046;43657;43657;78108;83808;54386;114246;68158;32020;35869;32796;32335;25798;20770;20443;23687;25708;27088;23828;26610;15125
-58;'218;Ecuador;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;18345;16865;8090;8090;45262;45510;15617;30895;18644;10306;13069;11786;11408;9404;6744;6446;7658;7794;8920;11340;18403;11337
-58;'218;Ecuador;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;28000;31000;31000;31000;31000;31000;18400;18000;18000;18000;21000;24000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-58;'218;Ecuador;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;600;600;1100;600;700;700;3400;3500;2077;2077;2077;2077;2077;4163;7119;8411;9923;11757;8949;12260;9775;5745;7018;6678;4077;6134.16;7091;8861
-58;'218;Ecuador;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;272;272;481;128;251;251;1621;1700;1273;1273;1273;1273;1273;2521;4373;5503;6145;7766;6875;7032;5636;3840;5315;5404;3013;5551.03;7219;4608
-58;'218;Ecuador;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17381;17953;17;17;17200;16800;16800;80000;24352;3;0;7;0;0;0;0;16;2;0;0;15;0
-58;'218;Ecuador;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7345;6401;17;17;8961;7170;7170;24000;9786;11;0;11;0;0;0;0;21;1;0;0;65;0
-58;'218;Ecuador;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26100;25100;14800;14800;21000;24000;30000;25000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000
-58;'218;Ecuador;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;3800;3800;2800;400;3600;8900;6740;14424;56687;56687;28000;28000;28000;45141;67628;51169;51620;64036;44208;32479;37174;46216;61831;51218;44529;44062.01;42740;28668
-58;'218;Ecuador;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;1389;1389;1612;250;703;2000;2723;5000;10197;10197;10598;12703;12703;14244;22381;25525;25379;29955;22869;12882;13174;16660;22893;19301;15499;20619.41;24794;15905
-58;'218;Ecuador;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26140;25093;43432;43432;60700;66800;37431;34186;43806;32017;35869;32789;32330;25796;20770;20438;23671;25706;27088;23827;26419;14730
-58;'218;Ecuador;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10464;8051;8051;36279;38318;8330;6872;8858;10295;13069;11775;11401;9402;6744;6435;7637;7793;8920;11340;18288;11242
-58;'218;Ecuador;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;0;2100;0;0;0;0;1100;1700;1600;1600;2208;2208;2208;2208;2208;373;13600;19100;19200;18600;16832;12876;5473;484;418;7235;7145;1701.15;880;53
-58;'218;Ecuador;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;0;220;0;0;0;0;163;290;379;379;332;332;332;332;332;64;5183;6874;6844;5151;4446;2632;947;144;114;3414;3165;627.32;440;174
-58;'218;Ecuador;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;208;208;208;208;155;60;0;0;0;0;5;2;0;5;0;0;0;1;176;395
-58;'218;Ecuador;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;22;22;22;22;117;23;0;0;0;0;7;2;0;11;0;0;0;0;50;95
-58;'218;Ecuador;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;74;37;105;74;68;105;105;9161;4949;1790;17480;80;150;105;105;100;;;;;;;;;;;;;;;;90;258;1099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;12;6;17;12;11;17;22;1309;672;265;2516;13;23;41;46;46;;;;;;;;;;;;;;;;36;89;429;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1879;Total fibre furnish;5510;Production;t;;;;;;;;;1100;2200;4000;4000;4000;5000;6000;6000;7000;8000;5000;5000;5000;5000;5000;5000;500;500;500;500;500;500;500;500;500;59100;64000;67100;70200;70200;70200;70200;70200;70200;70000;34700;34700;81000;95000;152000;168000;168000;168000;168000;168000;200857;200857;200857;198857;198857;198857;198857;198857;198857;198857
-58;'218;Ecuador;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;100;1000;9900;4100;7800;8100;5700;6400;6300;61700;59800;53300;25600;27700;36100;30400;31400;41000;13100;8300;8265;12202;24100;66900;5300;12800;37500;40300;36300;40000;56522;50100;58143;58143;55381;57086;58209;39831;66828;72059;106132;93072;102391;99127;88087;78031;78882;66852;61002;51833.53;71274;58795
-58;'218;Ecuador;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;13;274;1659;1212;2316;1682;965;2531;3613;34957;32360;29842;10300;11240;13502;12762;13138;25101;5308;5700;4359;4927;8047;17268;4182;4147;10309;10969;13468;14328;13747;14463;17435;17435;16225;18289;20699;15851;28557;28812;32408;34765;30964;31801;28791;31577;34086;27857;25584;28915.21;39206;35942
-58;'218;Ecuador;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;427;0;0;0;1600;2600;400;400;400;900;3000;12205;12205;12205;12205;21718;29446;27755;35939;27101;25342;18210;11962;8950;6713;6889;4747;1643;3762.62;3628.2;3579
-58;'218;Ecuador;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;165;0;0;0;245;278;35;35;35;112;319;1790;1790;1790;1790;4447;4980;5871;9537;6212;6121;4284;2404;1584;1131;1261;696;155;1206.15;1242;883
-58;'218;Ecuador;1878;Pulp for paper;5510;Production;t;;;;;;;;;1100;2200;4000;4000;4000;5000;6000;6000;7000;8000;5000;5000;5000;5000;5000;5000;500;500;500;500;500;500;500;500;500;1100;2000;2100;2200;2200;2200;2200;2200;2200;2000;2000;2000;2000;2000;2000;18000;18000;18000;18000;18000;18000;18000;18000;16000;16000;16000;16000;16000;16000;16000
-58;'218;Ecuador;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;100;1000;1800;1900;2100;2100;1900;4500;5100;59100;59300;52800;24600;26500;29900;26600;25600;36400;8500;6100;6186;11322;12800;6500;5300;12800;13500;14300;14600;18300;19522;23100;24096;24096;21334;23039;24162;16545;20351;18755;20419;26757;20141;19987;22506;24851;25702;23946;29290;23911.53;23350;1017
-58;'218;Ecuador;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;13;274;775;886;916;916;594;2236;3303;34438;32326;29808;10039;10857;12150;12015;11734;24147;4354;5314;3613;4790;6558;5870;4182;4147;7036;7233;8514;9374;8942;10517;13391;13391;12181;14245;16655;11010;17613;17633;14841;19064;14591;15102;14799;18039;20548;18291;17981;20664.21;24975;24154
-58;'218;Ecuador;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;427;0;0;0;0;0;0;0;0;0;0;260;260;260;260;260;260;159;159;139;60;1;1;130;104;280;90;31;676;258.2;4
-58;'218;Ecuador;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;165;0;0;0;0;0;0;0;0;0;0;159;159;159;159;159;159;141;141;99;27;1;1;103;86;216;84;24;552;323;383
-58;'218;Ecuador;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;2000;2100;2200;2200;2200;2200;2200;2200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;;;;;;;
-58;'218;Ecuador;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;100;1000;1800;1900;2100;2100;1900;4500;5100;59100;59300;52800;24600;26500;29900;26600;25600;36400;8500;6100;6147;11309;12800;6500;5300;12800;13500;14300;14600;18300;19522;23100;24068;24068;21306;23011;24134;16336;20329;18724;20361;26676;20117;19910;22188;24841;25409;23852;27781;23880.53;23337;1020
-58;'218;Ecuador;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;13;274;775;886;916;916;594;2236;3303;34438;32326;29808;10039;10857;12150;12015;11734;24147;4354;5314;3578;4783;6558;5870;4182;4147;7036;7233;8514;9374;8942;10517;13327;13327;12117;14181;16591;10827;17556;17548;14687;18856;14565;15002;14377;18019;20084;18164;17165;20623.21;24953;24139
-58;'218;Ecuador;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;421;0;0;0;0;0;0;0;0;0;0;260;260;260;260;260;260;159;159;139;60;1;1;129;104;280;90;31;676;254.2;0
-58;'218;Ecuador;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;149;0;0;0;0;0;0;0;0;0;0;159;159;159;159;159;159;141;141;99;27;1;1;101;86;216;84;24;552;311;371
-58;'218;Ecuador;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;256;398;379;452;539;591
-58;'218;Ecuador;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;182;387;265;344;547;372
-58;'218;Ecuador;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;0;0;10;10.2;0
-58;'218;Ecuador;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;0;0;10;10;0
-58;'218;Ecuador;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;2000;2100;2200;2200;2200;2200;2200;2200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;;;;;;;
-58;'218;Ecuador;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;200;200;200;200;200;200;200;52200;46100;46100;20000;20000;20000;20000;20000;22400;400;500;165;165;0;0;0;0;900;900;900;900;0;0;0;0;0;0;0;21;20;20;1;41;156;169;164;;;;;;;
-58;'218;Ecuador;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;60;59;59;59;59;59;59;30754;26565;26565;7400;7400;7400;7400;7400;13701;212;198;97;97;0;0;0;0;350;350;350;350;0;0;0;0;0;0;0;23;22;22;1;42;135;103;100;;;;;;;
-58;'218;Ecuador;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;0;0;0;;;;;;;
-58;'218;Ecuador;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;;;;;;;
-58;'218;Ecuador;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186;1186;400;400;400;400;4100;4100;4100;4100;4100;4100;4243;4243;4243;4243;4243;0;0;0;3;6130;1;0;0;;;;;;;
-58;'218;Ecuador;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524;524;202;203;203;203;1810;1810;1810;1810;1810;1810;2107;2107;2107;2107;2107;0;0;0;7;3465;3;0;0;;;;;;;
-58;'218;Ecuador;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;100;1000;1600;1700;1900;1900;1700;4300;4900;6900;13200;6700;4600;6500;9900;6600;5600;14000;8100;5600;4796;9958;12400;6100;4900;12400;8500;9300;9600;13300;15422;19000;19825;19825;17063;18768;19891;16315;20309;18704;20357;20505;19959;19740;22021;24548;25150;23451;27399;23425.53;22795;426
-58;'218;Ecuador;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;13;274;715;827;857;857;535;2177;3244;3684;5761;3243;2639;3457;4750;4615;4334;10446;4142;5116;2957;4162;6356;5667;3979;3944;4876;5073;6354;7214;7132;8707;11220;11220;10010;12074;14484;10804;17534;17526;14679;15349;14424;14896;14271;17811;19896;17771;16894;20273.21;24400;23761
-58;'218;Ecuador;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;421;0;0;0;0;0;0;0;0;0;0;260;260;260;260;260;260;159;159;101;22;1;1;129;103;266;90;31;666;244;0
-58;'218;Ecuador;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;149;0;0;0;0;0;0;0;0;0;0;159;159;159;159;159;159;141;141;88;16;1;1;101;84;202;84;24;542;301;371
-58;'218;Ecuador;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;100;600;1400;1500;1700;1700;1200;2000;2500;2500;2500;3300;2100;2500;6100;2800;900;6100;2000;200;3009;4984;6100;0;0;300;0;0;0;0;6422;7000;5833;5833;5833;5833;5833;3343;84;234;3189;128;1210;1344;711;1425;1425;641;454;595;229;266
-58;'218;Ecuador;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;13;160;602;702;732;732;383;1160;1581;1581;1581;1363;1148;1151;2587;2452;616;3580;384;126;1394;1805;3014;0;0;166;0;0;0;0;2670;2866;2820;2820;2820;2820;2820;1778;115;251;1691;208;956;901;459;1048;1048;583;435;563;345;194
-58;'218;Ecuador;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;400;200;200;200;200;500;2300;2400;4400;10700;3400;2500;4000;3800;3800;4700;7900;6100;5400;587;4798;6000;6100;4900;12100;8500;9300;9600;13300;7000;10000;13950;13950;11188;12893;14016;12970;20194;18467;17166;20363;18643;18312;21204;23123;23725;22704;26945;22825.53;22565;23
-58;'218;Ecuador;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;114;113;125;125;125;152;1017;1663;2103;4180;1880;1491;2306;2163;2163;3718;6866;3758;4990;543;2244;3114;5667;3979;3778;4876;5073;6354;7214;3393;4893;8344;8344;7134;9198;11608;9022;17386;17269;12987;15122;13253;13853;13623;16763;18848;16977;16457;19699.21;24051;23467
-58;'218;Ecuador;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;421;0;0;0;0;0;0;0;0;0;0;260;260;260;260;260;260;159;159;101;22;1;1;129;103;266;90;31;666;244;0
-58;'218;Ecuador;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;149;0;0;0;0;0;0;0;0;0;0;159;159;159;159;159;159;141;141;88;16;1;1;101;84;202;84;24;542;301;371
-58;'218;Ecuador;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;0;5;1;137
-58;'218;Ecuador;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;2;11;4;100
-58;'218;Ecuador;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-58;'218;Ecuador;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-58;'218;Ecuador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;176;300;0;0;0;0;0;0;0;2000;2000;42;42;42;42;42;2;31;3;2;14;106;84;106;;;;;;;
-58;'218;Ecuador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1020;113;228;0;0;0;0;0;0;0;1069;948;56;56;56;56;56;4;33;6;1;19;215;142;189;;;;;;;
-58;'218;Ecuador;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;3;3;3;3;3;3;3;3
-58;'218;Ecuador;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;6;6;6;6;6;6;6;6
-58;'218;Ecuador;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;1100;2200;4000;4000;4000;5000;6000;6000;7000;8000;5000;5000;5000;5000;5000;5000;500;500;500;500;500;500;500;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-58;'218;Ecuador;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;13;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;209;22;31;58;81;25;78;321;13;296;97;1512;34;16;0
-58;'218;Ecuador;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;7;0;0;0;0;0;0;0;0;0;0;64;64;64;64;64;183;57;85;154;208;29;103;428;26;470;133;822;47;28;21
-58;'218;Ecuador;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;4;4
-58;'218;Ecuador;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;12;12
-58;'218;Ecuador;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;18;3;2;12;5;14;16;25;5;2;4;130;0
-58;'218;Ecuador;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;21;51;10;16;27;22;30;29;47;10;4;11;60;11
-58;'218;Ecuador;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;0;0;0
-58;'218;Ecuador;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;0;0;0
-58;'218;Ecuador;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;62000;65000;68000;68000;68000;68000;68000;68000;68000;32700;32700;79000;93000;150000;150000;150000;150000;150000;150000;182857;182857;182857;182857;182857;182857;182857;182857;182857;182857
-58;'218;Ecuador;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;8100;2200;5700;6000;3800;1900;1200;2600;500;500;1000;1200;6200;3800;5800;4600;4600;2200;2079;880;11300;60400;0;0;24000;26000;21700;21700;37000;27000;34047;34047;34047;34047;34047;23286;46477;53304;85713;66315;82250;79140;65581;53180;53180;42906;31712;27922;47924;57778
-58;'218;Ecuador;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;884;326;1400;766;371;295;310;519;34;34;261;383;1352;747;1404;954;954;386;746;137;1489;11398;0;0;3273;3736;4954;4954;4805;3946;4044;4044;4044;4044;4044;4841;10944;11179;17567;15701;16373;16699;13992;13538;13538;9566;7603;8251;14231;11788
-58;'218;Ecuador;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1600;2600;400;400;400;900;3000;11945;11945;11945;11945;21458;29186;27596;35780;26962;25282;18209;11961;8820;6609;6609;4657;1612;3086.62;3370;3575
-58;'218;Ecuador;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;245;278;35;35;35;112;319;1631;1631;1631;1631;4288;4821;5730;9396;6113;6094;4283;2403;1481;1045;1045;612;131;654.15;919;500
-58;'218;Ecuador;1876;Paper and paperboard;5510;Production;t;600;300;300;300;400;500;500;5100;7500;8000;12000;12500;12700;12700;33000;34000;34000;36000;21300;25900;31000;34000;34000;34000;34300;34300;34800;35800;35798;43800;129300;159900;102900;78100;83200;86300;91400;91400;91400;91400;91400;94400;101000;126716;126942;127636;136749;141654;239654;239654;239654;239654;239654;244654;244654;244654;244654;244654;244654;244654;244654;244654;244654
-58;'218;Ecuador;1876;Paper and paperboard;5610;Import quantity;t;16600;16000;19800;63900;32300;26800;27000;147000;118900;165000;106800;162300;157900;144700;140700;161200;126200;121900;124000;127500;131400;145200;126100;147400;161600;141000;180500;174900;115700;232300;248400;275731;234415;283100;343400;349700;339700;325201;290401;194900;196700;496600;490400;232049;232049;242001;218021;209387;210542;254569;257104;268100;263854;286931;258724;287963;337304;302845;256967;206516;210869.8;274474;180345
-58;'218;Ecuador;1876;Paper and paperboard;5622;Import value;1000 USD;2718;2576;3450;7914;5054;4398;4616;23334;19307;27005;18934;27843;31296;36288;38520;48620;52459;48330;53554;88708;89685;106934;93113;109262;117884;102940;134243;159187;76838;153480;156685;164419;108000;124108;213754;192919;199190;285019;238720;129271;129048;256111;247029;167976;167976;182267;181617;175638;219499;280603;304810;314407;314476;319255;235902;254106;299331;317072;278018;198360;237880.72;390676;298968
-58;'218;Ecuador;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10243;8099;9600;11000;12800;18200;35101;29680;2780;5280;17030;25630;20816;20816;17959;33740;43424;28052;26296;35780;44317;55649;55399;42810;48320;51040;46485;31844;16037;43148.39;40381;42121
-58;'218;Ecuador;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4847;3864;4483;10746;14402;13352;23302;16113;1955;3239;7912;12507;11789;11789;10004;16756;20059;20439;15003;20552;24137;32506;32002;23386;23329;26396;29994;16611;7672;30272.57;34774;23548
-58;'218;Ecuador;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;3000;3000;3000;3500;3900;4200;4500;5000;5000;5000;1000;1000;400;400;398;8500;2300;2900;2900;2100;2200;2300;2400;2400;2400;2400;2400;2400;2000;28716;28942;29636;38749;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654
-58;'218;Ecuador;2042;Graphic papers;5610;Import quantity;t;10500;10200;8900;8800;13600;12500;24000;21700;21600;19800;23200;21600;29900;26000;21800;35000;41100;42200;48100;51600;55500;50600;53200;61300;68000;49400;60900;51400;45600;49000;38700;47131;41267;67500;56200;32200;39500;94100;59300;72300;74500;104200;112000;115764;115764;115852;118042;146742;139217;157320;150254;164665;155619;159513;136658;181938;212724;163282;126698;80547;84796.3;115721;35529
-58;'218;Ecuador;2042;Graphic papers;5622;Import value;1000 USD;1661;1591;1272;1238;2055;1703;3047;4249;4210;3973;4760;4800;7391;9458;11400;19420;16559;14330;22394;33948;34925;31434;35113;42462;45696;32340;38643;53111;34397;50394;27907;30837;31383;40481;48902;32979;36981;74346;44047;60663;59534;65281;69027;89083;89083;98158;100041;127830;133935;161172;162696;174811;162947;157509;126375;133835;150705;154027;120057;67416;79417.95;149019;102997
-58;'218;Ecuador;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842;1958;3700;500;300;100;100;80;80;80;80;80;851;851;851;3829;337;246;759;183;454;38;453;574;354;708;321;220;99;407;59;145
-58;'218;Ecuador;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;1077;1879;405;397;377;120;102;102;102;102;102;797;797;797;3144;566;316;866;178;378;101;717;771;507;627;406;156;100;356;104;123
-58;'218;Ecuador;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2200;2300;2400;2400;2400;2400;2400;2400;2000;28716;28942;29636;38749;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654;43654
-58;'218;Ecuador;1671;Newsprint;5610;Import quantity;t;7900;8000;8800;8600;13400;12200;11300;16200;16300;13900;17200;15500;21500;15800;10800;22000;28100;29100;30500;32600;37000;28400;32000;32000;39600;22600;22000;26600;22000;24000;31900;4251;19100;43900;48200;29000;33500;43100;23400;23000;31400;37000;40000;33965;33965;33965;34000;47200;37931;31436;31557;32951;29000;28267;23524;58091;66267;22617;16814;8097;10433;12414;11490
-58;'218;Ecuador;1671;Newsprint;5622;Import value;1000 USD;1094;1136;1181;1155;1967;1567;1507;2614;2649;2306;2998;2936;4554;6011;7600;15000;12139;10215;12146;17227;19000;12605;17965;16877;20988;12504;13200;18717;16000;16000;23361;1736;15287;23103;38503;24166;21337;28865;13173;13200;19547;15053;15000;17058;17058;17058;17058;29047;26253;20724;22641;23674;21023;20255;14941;28684;31739;13922;10449;3779;6397;10814;7009
-58;'218;Ecuador;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;658;1800;100;100;0;0;0;0;0;0;0;22;22;22;3000;4;27;0;4;449;20;40;16;0;0;0;49;91;91;53;138
-58;'218;Ecuador;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;329;894;77;77;0;0;0;0;0;0;0;14;14;14;2361;11;28;0;12;313;13;32;26;0;0;0;30;58;58;46;81
-58;'218;Ecuador;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;3000;3000;3000;3500;3900;4200;4500;5000;5000;5000;1000;1000;400;400;398;8500;2300;2900;2900;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1674;Printing and writing papers;5610;Import quantity;t;2600;2200;100;200;200;300;12700;5500;5300;5900;6000;6100;8400;10200;11000;13000;13000;13100;17600;19000;18500;22200;21200;29300;28400;26800;38900;24800;23600;25000;6800;42880;22167;23600;8000;3200;6000;51000;35900;49300;43100;67200;72000;81799;81799;81887;84042;99542;101286;125884;118697;131714;126619;131246;113134;123847;146457;140665;109884;72450;74363.3;103307;24039
-58;'218;Ecuador;1674;Printing and writing papers;5622;Import value;1000 USD;567;455;91;83;88;136;1540;1635;1561;1667;1762;1864;2837;3447;3800;4420;4420;4115;10248;16721;15925;18829;17148;25585;24708;19836;25443;34394;18397;34394;4546;29101;16096;17378;10399;8813;15644;45481;30874;47463;39987;50228;54027;72025;72025;81100;82983;98783;107682;140448;140055;151137;141924;137254;111434;105151;118966;140105;109608;63637;73020.95;138205;95988
-58;'218;Ecuador;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608;1300;1900;400;200;100;100;80;80;80;80;80;829;829;829;829;333;219;759;179;5;18;413;558;354;708;321;171;8;316;6;7
-58;'218;Ecuador;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;748;985;328;320;377;120;102;102;102;102;102;783;783;783;783;555;288;866;166;65;88;685;745;507;627;406;126;42;298;58;42
-58;'218;Ecuador;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;728;1000;700;1200;8000;742;742;742;742;742;320;130;846;376;721;1131;1266;966;1084;1084;930;749;1937.89;4042;147
-58;'218;Ecuador;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;501;770;630;701;5608;783;783;783;783;783;366;255;886;420;920;1311;1402;1140;912;912;882;701;1783.8;4862;490
-58;'218;Ecuador;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;0;0;0;0;0;0;0;20;5;1;0;0;0;0;0;0
-58;'218;Ecuador;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;0;0;0;0;0;0;0;22;11;0;0;1;0;0;0;0
-58;'218;Ecuador;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33414;23521;32300;26400;46000;43000;55012;55012;55100;57100;71700;70115;83371;78126;82834;87156;89367;80575;76288;92490;99420;75692;52428;50479;72771;4469
-58;'218;Ecuador;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30289;20561;31609;23991;33110;31886;46922;46922;55997;58200;73000;73068;90792;91194;97253;97302;92948;78147;64047;76300;99101;76207;44885;47785;94997;73033
-58;'218;Ecuador;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;80;80;80;80;80;428;428;428;428;160;45;712;117;4;1;63;78;67;59;1;27;8;316;5;0
-58;'218;Ecuador;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;102;102;102;102;102;423;423;423;423;246;83;799;103;58;25;102;60;79;98;9;17;42;298;57;36
-58;'218;Ecuador;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16552;11651;16000;16000;20000;21000;26045;26045;26045;26200;27100;30851;42383;39725;48504;38742;40748;31293;46593;52883;40161;33262;19273;21946.41;26494;19423
-58;'218;Ecuador;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14454;9812;15084;15366;16417;16533;24320;24320;24320;24000;25000;34248;49401;47975;53464;43702;42995;31885;39964;41754;40092;32519;18051;23452.15;38346;22465
-58;'218;Ecuador;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382;382;382;382;173;174;47;62;1;17;350;460;282;648;320;144;0;0;1;7
-58;'218;Ecuador;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;344;344;344;309;205;67;63;7;63;583;663;417;529;397;108;0;0;1;6
-58;'218;Ecuador;1675;Other paper and paperboard;5510;Production;t;600;300;300;300;400;500;500;5100;7500;8000;12000;12500;12700;12700;30000;31000;31000;32500;17400;21700;26500;29000;29000;29000;33300;33300;34400;35400;35400;35300;127000;157000;100000;76000;81000;84000;89000;89000;89000;89000;89000;92000;99000;98000;98000;98000;98000;98000;196000;196000;196000;196000;196000;201000;201000;201000;201000;201000;201000;201000;201000;201000;201000
-58;'218;Ecuador;1675;Other paper and paperboard;5610;Import quantity;t;6100;5800;10900;55100;18700;14300;3000;125300;97300;145200;83600;140700;128000;118700;118900;126200;85100;79700;75900;75900;75900;94600;72900;86100;93600;91600;119600;123500;70100;183300;209700;228600;193148;215600;287200;317500;300200;231101;231101;122600;122200;392400;378400;116285;116285;126149;99979;62645;71325;97249;106850;103435;108235;127418;122066;106025;124580;139563;130269;125969;126073.5;158753;144816
-58;'218;Ecuador;1675;Other paper and paperboard;5622;Import value;1000 USD;1057;985;2178;6676;2999;2695;1569;19085;15097;23032;14174;23043;23905;26830;27120;29200;35900;34000;31160;54760;54760;75500;58000;66800;72188;70600;95600;106076;42441;103086;128778;133582;76617;83627;164852;159940;162209;210673;194673;68608;69514;190830;178002;78893;78893;84109;81576;47808;85564;119431;142114;139596;151529;161746;109527;120271;148626;163045;157961;130944;158462.76;241657;195971
-58;'218;Ecuador;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8401;6141;5900;10500;12500;18100;35001;29600;2700;5200;16950;25550;19965;19965;17108;29911;43087;27806;25537;35597;43863;55611;54946;42236;47966;50332;46164;31624;15938;42741.39;40322;41976
-58;'218;Ecuador;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3863;2787;2604;10341;14005;12975;23182;16011;1853;3137;7810;12405;10992;10992;9207;13612;19493;20123;14137;20374;23759;32405;31285;22615;22822;25769;29588;16455;7572;29916.57;34670;23425
-58;'218;Ecuador;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;3000;3000;4000;5000;5000;5000;8400;12000;16000;17000;17000;17000;4600;4600;4700;4700;4700;5100;19000;23000;15000;12000;13000;13000;14000;14000;14000;14000;14000;14000;14000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000
-58;'218;Ecuador;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16000;13100;0;0;1200;2300;7400;7400;13100;13100;25800;29300;26300;17567;23394;28575;30265;31393;29652;25983;20421;29192;26476;28957;29493;28433.19;25871;34145
-58;'218;Ecuador;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13739;21536;0;0;1235;1775;5808;5808;11981;11981;23962;23962;21614;22727;32921;42661;43300;47141;42973;34050;23355;36503;34110;36634;34135;36395.39;41093;49681
-58;'218;Ecuador;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;800;600;0;0;1000;700;1400;4000;7157;7157;4300;4700;3000;4000;799;2734;1549;1039;1386;1419;1354;1363;1292;984;589;1158.5;1902;11
-58;'218;Ecuador;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1261;2064;2082;0;0;700;382;1018;2770;5460;5460;3675;3958;2391;3798;550;1797;816;198;236;233;260;360;209;194;137;1070.4;2587;177
-58;'218;Ecuador;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000
-58;'218;Ecuador;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200001;200001;119400;114900;368000;354000;99815;99815;99815;70088;35588;53037;73189;77868;72758;76471;97371;95692;85317;93600;112657;100863;96138;96974.95;132674;110486
-58;'218;Ecuador;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170000;154000;62307;61739;172628;159800;58529;58529;58529;55758;24183;60458;84498;97735;94513;102736;117232;74047;95762;109692;127531;120055;95717;120276.03;199034;144528
-58;'218;Ecuador;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18101;12700;1600;3700;13750;19750;12745;12745;12745;20211;40037;23779;24736;32068;42313;54571;53534;40747;46564;48962;44867;30640;15346;41567.89;38420;41965
-58;'218;Ecuador;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12975;5804;1004;2389;5011;7854;5345;5345;5345;8232;17077;16312;13584;18147;22937;32200;31010;22318;22521;25389;29375;16261;7411;28794.17;32083;23244
-58;'218;Ecuador;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;9700;9700;26000;26000;26000;27500;7800;8300;9000;10000;10000;10000;21000;21000;22000;23000;23000;25000;80000;99000;63000;53000;56000;59000;62000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;6100;5800;10900;55100;18700;14300;3000;125300;97300;145200;83600;139400;126400;116400;116400;123600;83000;76900;75400;75400;75400;87400;67400;83100;90200;88000;116000;119500;69100;172600;181600;209300;174148;194600;260200;255600;256000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1057;985;2178;6676;2999;2695;1569;19085;15097;23032;14174;22221;22985;24610;24610;26100;33400;30700;30400;54000;54000;65000;50000;62000;66748;65000;90000;100000;41048;89086;107652;118461;61617;67627;136852;96095;100000;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5000;1800;600;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5862;2654;686;;;;;;;;;;;;;;;;;;;;;;;;;;
-58;'218;Ecuador;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000
-58;'218;Ecuador;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131570;131570;100000;100000;249000;235000;74979;74979;74979;19900;8100;21403;26580;27446;20426;22705;23881;39271;26182;30453;39068;46935;46424;29730;54517;45395
-58;'218;Ecuador;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86105;78001;45000;45000;113264;93381;29918;29918;29918;12699;4038;12451;16686;19319;13180;16122;14796;22154;16930;18856;28273;31881;26728;22233;52798;33890
-58;'218;Ecuador;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;14000;3441;3441;3441;10000;18700;19000;11996;30062;41313;52946;52304;39823;44603;48291;43932;30215;14687;40789.89;38140;41846
-58;'218;Ecuador;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2274;5028;1195;1195;1195;4720;10036;12678;6409;16621;21891;30764;29838;21398;20995;24711;28082;15679;6733;27906.17;31576;22994
-58;'218;Ecuador;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30688;30688;8700;11800;100000;102000;16100;16100;16100;27600;11100;24015;30223;33045;33565;33983;49220;37349;43422;44836;45220;38290;34439;43671;56009;43249
-58;'218;Ecuador;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46264;41910;9544;14049;50000;57909;22955;22955;22955;34594;13899;39818;51148;60293;61352;64237;79271;33807;63780;75330;74346;72228;55993;77588;120593;87715
-58;'218;Ecuador;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3394;2381;300;700;1600;1600;374;374;374;374;8000;779;326;190;309;211;210;153;191;167;331;4;248;363;69;0
-58;'218;Ecuador;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;1023;177;409;735;735;173;173;173;173;2525;434;285;161;196;133;137;132;272;208;586;23;325;570;157;64
-58;'218;Ecuador;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37743;37743;10700;3100;19000;17000;3148;3148;3148;17000;10800;7371;15794;16525;17484;18462;23388;17702;14192;15089;14339;12116;11517;18182.95;16448;15879
-58;'218;Ecuador;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37631;34089;7763;2690;9364;8510;3195;3195;3195;6004;3785;7953;16007;17298;18811;21180;22405;16974;14076;13989;15828;13914;11042;16182.03;19595;18795
-58;'218;Ecuador;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12444;8731;1100;2600;5000;4000;6793;6793;6793;7700;11200;4000;12407;1793;668;1414;1020;771;1742;476;576;393;411;388;211;119
-58;'218;Ecuador;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8465;3787;655;1691;1870;1959;3147;3147;3147;2509;3686;3200;6882;1345;830;1303;1035;788;1238;454;691;543;353;291;350;186
-58;'218;Ecuador;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5588;5588;5588;5588;5588;248;592;852;1283;1321;882;1370;1521;3222;14030;3522;3758;5391;5700;5963
-58;'218;Ecuador;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2461;2461;2461;2461;2461;236;657;825;1170;1197;760;1112;976;1517;9084;2032;1954;4273;6048;4128
-58;'218;Ecuador;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2263;1588;200;400;150;150;2137;2137;2137;2137;2137;0;7;23;23;0;0;0;28;28;28;28;0;27;0;0
-58;'218;Ecuador;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223;994;172;289;132;132;830;830;830;830;830;0;8;20;20;0;0;0;16;16;16;16;0;27;0;0
-58;'218;Ecuador;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;1200;1400;1500;2000;2000;2000;7700;7700;7700;7700;7700;5200;28000;35000;22000;11000;12000;12000;13000;13000;13000;13000;13000;16000;23000;23000;23000;23000;23000;23000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000
-58;'218;Ecuador;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;1300;1600;2300;2500;2600;2100;2800;500;500;500;7200;5500;3000;3400;3600;3600;4000;1000;10700;28100;19300;19000;21000;27000;45900;31100;31100;31100;2000;5000;17000;17000;3370;3370;534;591;757;721;666;407;412;371;395;391;287;1788;430;449;338;665.36;208;185
-58;'218;Ecuador;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;822;920;2220;2510;3100;2500;3300;760;760;760;10500;8000;4800;5440;5600;5600;6076;1393;14000;21126;15121;15000;16000;28000;50106;40673;40673;40673;5066;6000;12394;12394;8383;8383;1618;1856;2011;2379;2012;1718;1783;1652;1541;1430;1154;2431;1404;1272;1092;1791.35;1530;1762
-58;'218;Ecuador;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8401;6141;5900;5000;9900;16900;16900;16900;100;800;1800;1800;63;63;63;5000;50;27;2;795;1;1;26;70;48;7;5;0;3;15;0;0
-58;'218;Ecuador;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3863;2787;2604;3218;9287;10207;10207;10207;149;366;1781;1781;187;187;187;1422;25;13;3;430;6;7;39;64;41;20;4;0;24;52;0;4
-58;'218;Ecuador;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23408;26655;33685;22503;44132;44774;36922
-58;'218;Ecuador;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29006;84642;108982;184730;125395;133578;88973
-58;'218;Ecuador;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;248;181;270;336;88;203
-58;'218;Ecuador;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;218;319;188;371;610;483
-58;'218;Ecuador;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;138;119;160;198;64;79
-58;'218;Ecuador;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;28;28;28;28;28;29
-58;'218;Ecuador;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;110;62;110;138;24;124
-58;'218;Ecuador;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;190;291;160;343;582;454
-58;'218;Ecuador;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1163;1496;1973;643;716;1074;1067
-58;'218;Ecuador;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;205;35;13;15;88;44
-58;'218;Ecuador;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024;1595;1745;1440;3225;2421;2117
-58;'218;Ecuador;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;151;177;125;166;262;212
-58;'218;Ecuador;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;763;1275;592;2746;1755;1817
-58;'218;Ecuador;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1644;1246;1642;1364;1741;2629;776
-58;'218;Ecuador;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15
-58;'218;Ecuador;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31
-58;'218;Ecuador;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20098;21524;27166;18646;36285;37783;29957
-58;'218;Ecuador;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6855;8571;8183;8728;13464;16895;14610
-58;'218;Ecuador;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;163;102;29;17;94;48
-58;'218;Ecuador;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;11;1;1;1;26;26
-58;'218;Ecuador;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;866;1243;883;807;1559;1713
-58;'218;Ecuador;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19990;74240;98625;174311;109637;113068;72822
-58;'218;Ecuador;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63760;68083;67767;55856;77861;113465;101831
-58;'218;Ecuador;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16168;21877;19398;14506;14765;21298;20979
-58;'218;Ecuador;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1092;1372;1081;727;1206;1711;792
-58;'218;Ecuador;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;26;0;0
-58;'218;Ecuador;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21307;22517;23130;19515;24589;32091;28211
-58;'218;Ecuador;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;210;398;189;174;73;283
-58;'218;Ecuador;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12139;14007;13084;10871;19557;23163;18641
-58;'218;Ecuador;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;199;1127;375;651;1193;834
-58;'218;Ecuador;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11820;14143;13484;11200;16865;26908;20835
-58;'218;Ecuador;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11281;13716;11370;10280;11359;13402;11640
-58;'218;Ecuador;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17402;16044;16988;13543;15644;29592;33352
-58;'218;Ecuador;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4235;7752;6503;3655;2555;6630;8222
-59;'818;Egypt;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2599708;3203160;2832551;2598014;3031837;3137350;2532711
-59;'818;Egypt;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602914;663871;526377;489861;599074;705747;669691
-59;'818;Egypt;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;56110;48730;41398;47374;54770;68758;49365;30129;32147;51832;50669;76226;53528;149599;213670;192085;403857;388277;239251;404703;594461;546971;608307;679007;814880;905347;814717;881256;1785515;2438639;1169293;787395;745567;747708;966538;871390;1050482;863450;996553;554970;965742;742276;962396;951464;1223672;1208769.76;1627240;2007395;1911192;2239799;2306163;2538782;2576513;3051996;2601322;2240337;2302059;2847883;2492292;2329041;2716601;2817094;2238259
-59;'818;Egypt;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;13;;;;;;4;8;147;334;16;;;;;;;;;;;;;;;;;;;;;5728;7056;9864;12658;10506;9215;4748;11855;9884;61361;40312;41255;47694;46945;47274;71771;74109;95361;112216;98933;54881;66065;74563;51707;63884;109448;194233;170757;136617;226486;327212;266160
-59;'818;Egypt;1861;Roundwood;5516;Production;m3;10101728;10172534;10246664;10321521;10397209;10473131;10553092;10630496;10708545;10786945;10932047;11112275;11223173;11381338;11389769;11290782;11268482;11400478;11533861;11604298;11862476;11943048;12107487;12321881;12526783;12856077;13194310;13478407;13784793;14101041;14403436;14747192;15080084;15355916;15538266;15824415;15973258;16123652;16292197;16449909;16600028;16751738;16905059;17060010;17216608;17326879;17438300;17551000;17664556;17779447;17823613;17868575;17914337;17960905;18008286;18037592;18067550;18098162;18129431;18161362;18194360;18227949;18262132
-59;'818;Egypt;1861;Roundwood;5616;Import quantity;m3;15800;60900;49900;78000;65500;97900;62500;18800;34800;38700;32100;56100;60200;51100;88700;93800;119200;80900;57500;100000;181100;227700;287600;251300;345900;159300;200100;200100;116700;70380;96321;102479;40157;169800;131400;119600;214800;176900;218900;184300;144098;129091;104474;186062;122539;97224;120773;152872;149959;133935;128753;114006;98002;83374;121198;148458;265149;290296;128666;136570;91271;126141;77839
-59;'818;Egypt;1861;Roundwood;5622;Import value;1000 USD;611;2261;2395;4285;3179;5848;3496;878;1738;2221;1641;2907;3939;5216;19301;15801;20757;18917;9676;21647;35184;46383;47366;43214;56171;33089;50628;50628;55295;15634;12723;15337;5407;30558;20679;15476;35772;16495;21139;18030;16562;12954;10753;14814;16218;13568;19786;30145;31048;20512;26042;22287;17393;13232;17970;19681;30311;48248;19790;44652;18735;27651;11197
-59;'818;Egypt;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;0;0;0;0;0;0;0;0;0;0;1600;28;522;2017;2598;4896;1602;2625;5617;6610;6482;1744;1991;2531;4696;2048;8851
-59;'818;Egypt;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;0;0;0;0;0;0;0;0;0;0;169;11;71;1411;324;1081;336;290;668;778;852;868;203;320;406;375;1336
-59;'818;Egypt;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-59;'818;Egypt;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198400;221000;74702;58105;78595;70278;45316
-59;'818;Egypt;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22805;39780;11300;8138;13218;11282;6533
-59;'818;Egypt;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;4;131;948;378;613;5655
-59;'818;Egypt;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;1;16;194;52;114;797
-59;'818;Egypt;1863;Roundwood, non-coniferous;5516;Production;m3;10101728;10172534;10246664;10321521;10397209;10473131;10553092;10630496;10708545;10786945;10932047;11112275;11223173;11381338;11389769;11290782;11268482;11400478;11533861;11604298;11862476;11943048;12107487;12321881;12526783;12856077;13194310;13478407;13784793;14101041;14403436;14747192;15080084;15355916;15538266;15824415;15973258;16123652;16292197;16449909;16600028;16751738;16905059;17060010;17216608;17326879;17438300;17551000;17664556;17770447;17814613;17859575;17905337;17951905;17999286;18028592;18058550;18089162;18120431;18152362;18185360;18218949;18253132
-59;'818;Egypt;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66749;69296;53964;78465;12676;55863;32523
-59;'818;Egypt;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7506;8468;8490;36514;5517;16369;4664
-59;'818;Egypt;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6357;1740;1860;1583;4318;1435;3196
-59;'818;Egypt;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;814;867;187;126;354;261;539
-59;'818;Egypt;1864;Wood fuel;5516;Production;m3;10044728;10114534;10186664;10260521;10334209;10409131;10487092;10563496;10639545;10716945;10861047;11039275;11149173;11305338;11312769;11211782;11187482;11317478;11448861;11517298;11773476;11851048;12013487;12225881;12427783;12754077;13090310;13371407;13674793;13989041;14288436;14630192;14961084;15233916;15414266;15569415;15715258;15861652;16024197;16181909;16332028;16483738;16637059;16792010;16948608;17058879;17170300;17283000;17396556;17511447;17555613;17600575;17646337;17692905;17740286;17769592;17799550;17830162;17861431;17893362;17926360;17959949;17994132
-59;'818;Egypt;1864;Wood fuel;5616;Import quantity;m3;2400;5100;6000;5700;6100;5800;3000;2300;2500;1900;2600;2600;4100;4200;5800;5800;6300;4500;6400;700;300;300;300;400;400;100;100;100;5200;2500;1000;4549;3200;3800;3400;6700;6800;6800;200;200;0;0;0;0;0;0;0;0;0;821;450;66;7;0;98;22;;131;14;15;26;57;57
-59;'818;Egypt;1864;Wood fuel;5622;Import value;1000 USD;29;58;94;76;77;79;48;43;42;39;64;53;102;128;169;222;296;225;230;27;11;11;11;54;16;28;28;28;326;233;20;124;100;102;93;186;186;186;11;11;0;0;0;0;0;0;0;0;0;114;51;9;12;1;18;8;;17;1;1;2;10;10
-59;'818;Egypt;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;291;2307;3340;1578;2451;4318;4158;2607;1017;1881;1955;4653;1951;8729
-59;'818;Egypt;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;129;215;347;229;245;471;388;150;598;155;177;391;322;1312
-59;'818;Egypt;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-59;'818;Egypt;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;378;378;596;5648
-59;'818;Egypt;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;52;52;94;796
-59;'818;Egypt;1628;Wood fuel, non-coniferous;5516;Production;m3;10044728;10114534;10186664;10260521;10334209;10409131;10487092;10563496;10639545;10716945;10861047;11039275;11149173;11305338;11312769;11211782;11187482;11317478;11448861;11517298;11773476;11851048;12013487;12225881;12427783;12754077;13090310;13371407;13674793;13989041;14288436;14630192;14961084;15233916;15414266;15569415;15715258;15861652;16024197;16181909;16332028;16483738;16637059;16792010;16948608;17058879;17170300;17283000;17396556;17511447;17555613;17600575;17646337;17692905;17740286;17769592;17799550;17830162;17861431;17893362;17926360;17959949;17994132
-59;'818;Egypt;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;14;15;26;57;57
-59;'818;Egypt;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;1;2;10;10
-59;'818;Egypt;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2607;1017;1750;1577;4275;1355;3081
-59;'818;Egypt;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;598;139;125;339;228;516
-59;'818;Egypt;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;2400;5100;6000;5700;6100;5800;3000;2300;2500;1900;2600;2600;4100;4200;5800;5800;6300;4500;6400;700;300;300;300;400;400;100;100;100;5200;2500;1000;4549;3200;3800;3400;6700;6800;6800;200;200;0;0;0;0;0;0;0;0;0;821;450;66;7;0;98;22;;;;;;;
-59;'818;Egypt;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;29;58;94;76;77;79;48;43;42;39;64;53;102;128;169;222;296;225;230;27;11;11;11;54;16;28;28;28;326;233;20;124;100;102;93;186;186;186;11;11;0;0;0;0;0;0;0;0;0;114;51;9;12;1;18;8;;;;;;;
-59;'818;Egypt;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;291;2307;3340;1578;2451;4318;4158;;;;;;;
-59;'818;Egypt;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;129;215;347;229;245;471;388;;;;;;;
-59;'818;Egypt;1865;Industrial roundwood;5516;Production;m3;57000;58000;60000;61000;63000;64000;66000;67000;69000;70000;71000;73000;74000;76000;77000;79000;81000;83000;85000;87000;89000;92000;94000;96000;99000;102000;104000;107000;110000;112000;115000;117000;119000;122000;124000;255000;258000;262000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000
-59;'818;Egypt;1865;Industrial roundwood;5616;Import quantity;m3;13400;55800;43900;72300;59400;92100;59500;16500;32300;36800;29500;53500;56100;46900;82900;88000;112900;76400;51100;99300;180800;227400;287300;250900;345500;159200;200000;200000;111500;67880;95321;97930;36957;166000;128000;112900;208000;170100;218700;184100;144098;129091;104474;186062;122539;97224;120773;152872;149959;133114;128303;113940;97995;83374;121100;148436;265149;290165;128652;136555;91245;126084;77782
-59;'818;Egypt;1865;Industrial roundwood;5622;Import value;1000 USD;582;2203;2301;4209;3102;5769;3448;835;1696;2182;1577;2854;3837;5088;19132;15579;20461;18692;9446;21620;35173;46372;47355;43160;56155;33061;50600;50600;54969;15401;12703;15213;5307;30456;20586;15290;35586;16309;21128;18019;16562;12954;10753;14814;16218;13568;19786;30145;31048;20398;25991;22278;17381;13231;17952;19673;30311;48231;19789;44651;18733;27641;11187
-59;'818;Egypt;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;0;0;0;0;0;0;0;0;0;0;1600;28;522;1726;291;1556;24;174;1299;2452;3875;727;110;576;43;97;122
-59;'818;Egypt;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;0;0;0;0;0;0;0;0;0;0;169;11;71;1282;109;734;107;45;197;390;702;270;48;143;15;53;24
-59;'818;Egypt;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-59;'818;Egypt;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64682;48023;56755;30457;99500;89800;81600;173800;146000;197300;170100;127513;96200;66856;150013;90541;77151;96241;124219;138074;126410;116953;102870;84899;66764;87243;99240;198400;221000;74702;58105;78595;70278;45316
-59;'818;Egypt;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14098;8580;11851;4628;20567;14988;10608;30488;13849;19030;16479;11763;7319;5729;8871;12154;10637;15448;22509;23697;18860;20571;18976;14262;9278;13222;13794;22805;39780;11300;8138;13218;11282;6533
-59;'818;Egypt;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;0;0;0;0;0;0;0;0;0;0;178;5;506;9;91;903;0;156;998;459;125;4;0;570;0;17;7
-59;'818;Egypt;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;0;0;0;0;0;0;0;0;0;0;18;1;65;1;7;81;0;42;87;34;38;1;0;142;0;20;1
-59;'818;Egypt;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64682;48023;56755;30457;99500;89800;81600;173800;146000;197300;170100;127513;96200;66856;150013;90541;77151;96241;124219;138074;126410;116953;102870;84899;66764;87243;99240;198400;221000;74702;58105;78595;70278;45316
-59;'818;Egypt;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14098;8580;11851;4628;20567;14988;10608;30488;13849;19030;16479;11763;7319;5729;8871;12154;10637;15448;22509;23697;18860;20571;18976;14262;9278;13222;13794;22805;39780;11300;8138;13218;11282;6533
-59;'818;Egypt;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;0;0;0;0;0;0;0;0;0;0;178;5;506;9;91;903;0;156;998;459;125;4;0;570;0;17;7
-59;'818;Egypt;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;0;0;0;0;0;0;0;0;0;0;18;1;65;1;7;81;0;42;87;34;38;1;0;142;0;20;1
-59;'818;Egypt;1867;Industrial roundwood, non-coniferous;5516;Production;m3;57000;58000;60000;61000;63000;64000;66000;67000;69000;70000;71000;73000;74000;76000;77000;79000;81000;83000;85000;87000;89000;92000;94000;96000;99000;102000;104000;107000;110000;112000;115000;117000;119000;122000;124000;255000;258000;262000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;268000;259000;259000;259000;259000;259000;259000;259000;259000;259000;259000;259000;259000;259000;259000
-59;'818;Egypt;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198;47298;41175;6500;66500;38200;31300;34200;24100;21400;14000;16585;32891;37618;36049;31998;20073;24532;28653;11885;6704;11350;11070;13096;16610;33857;49196;66749;69165;53950;78450;12650;55806;32466
-59;'818;Egypt;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1303;4123;3362;679;9889;5598;4682;5098;2460;2098;1540;4799;5635;5024;5943;4064;2931;4338;7636;7351;1538;5420;3302;3119;3953;4730;5879;7506;8451;8489;36513;5515;16359;4654
-59;'818;Egypt;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1422;23;16;1717;200;653;24;18;301;1993;3750;723;110;6;43;80;115
-59;'818;Egypt;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;151;10;6;1281;102;653;107;3;110;356;664;269;48;1;15;33;23
-59;'818;Egypt;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;49;24;35;703;96;53;509;166;1244;209;2690;580;597;715;3050;1000;0;0;0;20
-59;'818;Egypt;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;11;7;112;22;48;154;36;373;96;640;299;351;211;327;444;0;0;0;6
-59;'818;Egypt;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;0;205;308;110;0;1;2;0
-59;'818;Egypt;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;0;80;156;48;0;2;1;0
-59;'818;Egypt;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198;47298;41175;6500;66500;38200;31300;34200;24100;21400;14000;16585;32891;37615;36000;31974;20038;23829;28557;11832;6195;11184;9826;12887;13920;33277;48599;66034;66115;52950;78450;12650;55806;32446
-59;'818;Egypt;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1303;4123;3362;679;9889;5598;4682;5098;2460;2098;1540;4799;5635;5021;5925;4053;2924;4226;7614;7303;1384;5384;2929;3023;3313;4431;5528;7295;8124;8045;36513;5515;16359;4648
-59;'818;Egypt;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1422;23;16;1717;200;653;24;18;160;1993;3545;415;0;6;42;78;115
-59;'818;Egypt;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;151;10;6;1281;102;653;107;3;13;356;584;113;0;1;13;32;23
-59;'818;Egypt;1868;Sawlogs and veneer logs;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;129000;129000;131000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000
-59;'818;Egypt;1868;Sawlogs and veneer logs;5616;Import quantity;m3;6900;4000;4000;29800;21900;25100;21300;15900;29000;29000;24500;45200;47500;12700;17200;50400;63700;30200;34000;77400;116200;183900;227000;197100;308000;100000;200000;200000;111500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;301;170;170;1437;1382;1369;1021;805;1460;1621;1207;2164;3325;1536;3425;9194;13358;10991;6796;16598;27151;38121;40234;38000;51604;25330;50600;50600;54969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;6900;4000;4000;29800;21900;25100;21300;15900;29000;29000;24500;45200;47500;12700;17200;50400;63700;30200;34000;77400;116200;183900;227000;197100;308000;100000;200000;200000;111500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;301;170;170;1437;1382;1369;1021;805;1460;1621;1207;2164;3325;1536;3425;9194;13358;10991;6796;16598;27151;38121;40234;38000;51604;25330;50600;50600;54969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;129000;129000;131000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000
-59;'818;Egypt;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1871;Other industrial roundwood;5516;Production;m3;57000;58000;60000;61000;63000;64000;66000;67000;69000;70000;71000;73000;74000;76000;77000;79000;81000;83000;85000;87000;89000;92000;94000;96000;99000;102000;104000;107000;110000;112000;115000;117000;119000;122000;124000;126000;129000;131000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000
-59;'818;Egypt;1871;Other industrial roundwood;5616;Import quantity;m3;6500;51800;39900;42500;37500;67000;38200;600;3300;7800;5000;8300;8600;34200;65700;37600;49200;46200;17100;21900;30600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1871;Other industrial roundwood;5622;Import value;1000 USD;281;2033;2131;2772;1720;4400;2427;30;236;561;370;690;512;3552;15707;6385;7103;7701;2650;5022;4011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-59;'818;Egypt;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;57000;58000;60000;61000;63000;64000;66000;67000;69000;70000;71000;73000;74000;76000;77000;79000;81000;83000;85000;87000;89000;92000;94000;96000;99000;102000;104000;107000;110000;112000;115000;117000;119000;122000;124000;126000;129000;131000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;134000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000
-59;'818;Egypt;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;6500;51800;39900;42500;37500;67000;38200;600;3300;7800;5000;8300;8600;34200;65700;37600;49200;46200;17100;21900;30600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;281;2033;2131;2772;1720;4400;2427;30;236;561;370;690;512;3552;15707;6385;7103;7701;2650;5022;4011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1630;Wood charcoal;5510;Production;t;766436;772214;779814;784035;788179;792344;796531;800740;804971;809225;821866;838054;847658;861564;860423;845516;838023;845235;852669;853019;871132;871603;880212;893482;905541;929419;954161;973517;995704;1018468;1042467;1010394;1053392;1102424;1126314;1161964;1174047;1180239;1199913;1200542;1216338;1232341;1248555;1264982;1281625;1296877;1312300;1328000;1343731;1359722;1372160;1384711;1397378;1410160;1423059;1433938;1444900;1455945;1467075;1478290;1489051;1499889;1510807
-59;'818;Egypt;1630;Wood charcoal;5610;Import quantity;t;5500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67000;49000;48700;48700;0;0;300;0;0;0;0;0;0;0;0;0;0;35;89;490;356;360;190;793;683;1441;2560;2686;2241;2531;1655;3858
-59;'818;Egypt;1630;Wood charcoal;5622;Import value;1000 USD;236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2280;3367;1934;1934;0;0;40;0;0;0;0;0;0;0;0;0;0;21;120;222;178;443;988;449;356;757;1425;1483;1300;1652;1263;2989
-59;'818;Egypt;1630;Wood charcoal;5910;Export quantity;t;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5911;3095;29400;40000;13500;13300;7100;13000;4400;4000;4041;6144;9855;17330;7400;8800;29630;25422;25424;9000;17694;61435;59997;54694;51059;21305;37120;25000;28000;62000;80000;85000
-59;'818;Egypt;1630;Wood charcoal;5922;Export value;1000 USD;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;786;1059;3006;4403;1859;2877;1766;1891;989;491;286;940;3584;2749;2700;3200;4594;3800;7493;8815;8527;9738;10809;10078;8740;6887;4761;10853;12765;23612;31886;33584
-59;'818;Egypt;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750
-59;'818;Egypt;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;486;1081;80;331;134;137;582;606;216;165;462;909;3879;1397;1848
-59;'818;Egypt;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;118;121;25;129;143;25;230;255;141;84;41;145;397;119;155
-59;'818;Egypt;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;8652;14870;19362;17738;14349;14324;6476;4197;1392;3221;6017;3763;1481;745;6614
-59;'818;Egypt;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1675;7024;5017;3201;2847;2908;1186;611;238;455;381;263;106;68;617
-59;'818;Egypt;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750
-59;'818;Egypt;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;0;0;0;0;0;0;0;0;0;0;0;0;0;0;361;1022;24;23;5;8;55;124;1;65;450;255;3225;1396;1437
-59;'818;Egypt;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;29;93;11;24;123;5;29;42;52;39;38;22;274;119;116
-59;'818;Egypt;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;410;935;230;1024;999;3574;1535;668;525;2967;3072;790;510;5318
-59;'818;Egypt;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;4379;1677;11;112;173;516;146;107;67;192;200;43;38;442
-59;'818;Egypt;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;98;40;400;200;0;0;0;0;0;0;0;0;0;0;0;0;125;59;56;308;129;129;527;482;215;100;12;654;654;1;411
-59;'818;Egypt;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;1;11;9;0;0;0;0;0;0;0;0;0;0;0;0;89;28;14;105;20;20;201;213;89;45;3;123;123;0;39
-59;'818;Egypt;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;8196;14460;18427;17508;13325;13325;2902;2662;724;2696;3050;691;691;235;1296
-59;'818;Egypt;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;1535;2645;3340;3190;2735;2735;670;465;131;388;189;63;63;30;175
-59;'818;Egypt;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;20000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-59;'818;Egypt;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;269;23;28;28;5;17;2;503;425
-59;'818;Egypt;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;112;13;27;27;3;12;0;140;126
-59;'818;Egypt;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12471;17258;21219;17000;14967;19532;19532;1162;741;808;12905;13560
-59;'818;Egypt;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2491;3628;4500;2667;2138;2537;2537;178;130;134;3875;4799
-59;'818;Egypt;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;20000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-59;'818;Egypt;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;16;269;23;28;28;5;17;2;2;1
-59;'818;Egypt;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;112;13;27;27;3;12;0;0;0
-59;'818;Egypt;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12471;17258;21219;17000;14967;19532;19532;43;399;466;1867;4934
-59;'818;Egypt;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2491;3628;4500;2667;2138;2537;2537;8;68;72;499;1278
-59;'818;Egypt;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;424
-59;'818;Egypt;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;126
-59;'818;Egypt;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1119;342;342;11038;8626
-59;'818;Egypt;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;62;62;3376;3521
-59;'818;Egypt;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;4000;2000;3000;3000;35000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-59;'818;Egypt;1872;Sawnwood;5616;Import quantity;m3;404100;359100;369500;474600;495100;486700;420500;109100;122400;391700;331500;687100;310800;463900;528000;432900;1191600;926000;672100;1556600;1252200;1540800;1754500;2085800;2454800;1898000;1646600;1446600;1556400;1616450;1760000;1632785;1293108;1894300;2654600;2089800;2451300;2456500;2599800;2017200;2369000;1563700;2374926;2248561;3300439;3670893;3583082;6123656;4841492;5118418;4690287;4509330;4513839;6598356;5778081;4996774;4571584;4269617;3278615;4241039;3686699;3247838;3138325
-59;'818;Egypt;1872;Sawnwood;5622;Import value;1000 USD;24608;18560;18782;25903;28512;28260;22163;5869;6272;21228;19861;41676;21126;66718;97758;74330;228534;192998;143264;210181;309264;271388;309639;346772;455324;449748;482100;487100;975322;1116442;704772;332918;376820;342598;508439;482742;492460;358416;309860;259688;327045;176675;361898;294637;540812;554509;716207;895701;918931;1096442;957316;1118716;943877;1410130;1067613;787433;808417;984550;803091;694828;928826;736535;582110
-59;'818;Egypt;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;41;839;2000;1600;200;1000;2100;200;0;110;1427;405;497;1424;977;1060;1244;1152;4954;952;866;1030;54;988;11238;11955;1993;5532;2400;3061;10992
-59;'818;Egypt;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;10;150;539;381;176;268;256;96;0;8;366;115;110;808;418;674;625;529;2074;408;352;200;60;482;7208;9550;891;2050;1048;1116;3038
-59;'818;Egypt;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-59;'818;Egypt;1632;Sawnwood, coniferous;5616;Import quantity;m3;394100;337500;358050;459250;477300;481800;413900;102900;121500;388800;327600;680550;310400;367350;429300;353400;985850;612100;533950;1428050;1104850;1380250;1553400;1861800;2284800;1747000;1508300;1308300;1346900;1400000;1550600;1541964;1130708;1570000;2393600;1811300;2176300;2237300;2297100;1838200;2000000;1251100;2003262;1935684;2777111;3250514;3011103;5159265;4231272;4453791;3951944;3730038;4006761;5895980;5131081;4421389;3998584;3784000;2705365;3736989;3125432;2753875;2644362
-59;'818;Egypt;1632;Sawnwood, coniferous;5622;Import value;1000 USD;23943;17379;18125;24822;27098;27928;21742;5439;6238;21073;19595;41173;21072;45458;76460;57021;183552;122449;112139;180956;271432;235744;271085;303789;422574;420332;453500;458500;804193;754732;350415;305015;345059;256104;429753;401573;410284;299455;263641;192814;211571;122479;276365;217637;435723;456791;593872;747065;752214;935987;802433;926473;783932;1217986;850868;647225;661805;847178;662126;580646;788732;585677;431252
-59;'818;Egypt;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;30;700;1300;1300;0;0;0;0;0;110;1050;405;77;124;427;353;125;622;4594;456;335;70;0;55;307;770;786;1240;1273;2566;10556
-59;'818;Egypt;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;6;111;239;239;0;0;0;0;0;8;244;115;23;32;161;109;38;189;1919;119;81;13;0;14;45;176;252;216;475;814;2785
-59;'818;Egypt;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;4000;2000;3000;3000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-59;'818;Egypt;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;10000;21600;11450;15350;17800;4900;6600;6200;900;2900;3900;6550;400;96550;98700;79500;205750;313900;138150;128550;147350;160550;201100;224000;170000;151000;138300;138300;209500;216450;209400;90821;162400;324300;261000;278500;275000;219200;302700;179000;369000;312600;371664;312877;523328;420379;571979;964391;610220;664627;738343;779292;507078;702376;647000;575385;573000;485617;573250;504050;561267;493963;493963
-59;'818;Egypt;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;665;1181;657;1081;1414;332;421;430;34;155;266;503;54;21260;21298;17309;44982;70549;31125;29225;37832;35644;38554;42983;32750;29416;28600;28600;171129;361710;354357;27903;31761;86494;78686;81169;82176;58961;46219;66874;115474;54196;85533;77000;105089;97718;122335;148636;166717;160455;154883;192243;159945;192144;216745;140208;146612;137372;140965;114182;140094;150858;150858
-59;'818;Egypt;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;11;139;700;300;200;1000;2100;200;0;0;377;0;420;1300;550;707;1119;530;360;496;531;960;54;933;10931;11185;1207;4292;1127;495;436
-59;'818;Egypt;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4;39;300;142;176;268;256;96;0;0;122;0;87;776;257;565;587;340;155;289;271;187;60;468;7163;9374;639;1834;573;302;253
-59;'818;Egypt;1634;Veneer sheets;5516;Production;m3;;;;;500;400;500;600;1100;1500;2000;2500;3000;2800;3000;1800;2400;2400;1900;1900;2200;1400;600;900;8400;12500;16300;12700;22000;28000;28000;28000;28000;28000;28000;25000;25000;12000;22000;22000;10000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-59;'818;Egypt;1634;Veneer sheets;5616;Import quantity;m3;2000;800;600;1100;1100;2200;500;400;300;200;300;600;300;800;1600;1500;400;1500;2100;2300;3600;3600;3600;6000;6000;5500;5000;5000;5900;6500;300;13830;6600;14000;21100;16100;12200;14000;26900;35000;35200;20800;21683;16801;18829;10800;26900;24263;18868;31232;35419;29704;25223;24571;23066;20330;13998;14067;13381;12983;11578;11292;10305
-59;'818;Egypt;1634;Veneer sheets;5622;Import value;1000 USD;533;229;176;357;337;703;183;180;145;94;161;230;172;842;1789;2134;555;2298;1874;2991;6597;6597;6597;10000;10000;10555;9600;9600;25054;46632;223;14835;11835;12328;15836;10167;14832;10492;22010;15807;15336;7343;20844;18780;23616;10889;37428;35455;23955;36354;37760;31696;30355;39831;44805;38746;32183;33037;32070;29386;30088;37313;36703
-59;'818;Egypt;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;52;540;0;0;0;0;0;0;9800;3300;141;286;244;240;229;266;141;111;93;372;164;253;184;264;621;1081;738;247;90;0;90
-59;'818;Egypt;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;38;306;0;0;0;0;0;0;13708;3732;241;196;319;176;245;284;108;99;9;204;140;312;245;425;591;1033;991;914;612;238;231
-59;'818;Egypt;1873;Wood-based panels;5516;Production;m3;5100;12200;21800;34300;33000;27700;26300;20400;27000;32000;37500;48400;32700;31500;37000;37600;39900;39900;48100;38600;37100;30800;36600;44400;43000;36000;56000;58000;42000;31000;39000;51000;53000;53000;53000;56000;56000;84300;109300;109300;79300;94300;54300;49300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300;52300
-59;'818;Egypt;1873;Wood-based panels;5616;Import quantity;m3;18200;15200;14900;19900;35900;41800;19600;5200;1800;15600;14900;33000;36400;11400;39400;40400;89300;86200;69000;127700;110000;129000;192000;175500;211400;208000;150000;228900;156800;132300;191000;112995;108706;211918;192100;208800;269400;372900;331300;156500;203000;186800;389792;519927;604035;581583;499933;608810;611013;673941;635021;638054;782892;769711;707929;695349;693301;647600;900973;846455;875293;490248;364252
-59;'818;Egypt;1873;Wood-based panels;5622;Import value;1000 USD;2439;2029;1977;2673;4927;5834;2629;697;236;2171;2383;6133;3907;4150;13396;11586;31694;38853;19749;49671;54241;51233;74540;67584;86841;113572;53969;83240;160545;266216;84414;44905;61312;72858;62723;69094;82784;90312;82640;48105;63779;37409;83446;111656;170836;157823;173838;247453;234617;243111;296551;318346;323588;352938;333264;295702;296521;403221;336805;354220;440993;310227;249094
-59;'818;Egypt;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;100;300;3200;6200;300;;;;;;;;;;;;;;;;;;;;;4117;6197;7320;8500;7100;3500;0;0;0;0;434;497;962;2215;708;1764;4215;4340;11041;30581;24737;14598;19357;6557;17671;9474;11784;5863;4385;4057;2943;3771
-59;'818;Egypt;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;4;8;147;334;16;;;;;;;;;;;;;;;;;;;;;1071;1310;2940;3355;3036;788;0;0;0;0;111;129;594;562;385;1019;1826;1692;6310;15979;10960;7265;13842;3052;8399;4405;5199;2744;1946;2433;3181;3200
-59;'818;Egypt;1640;Plywood and LVL;5516;Production;m3;5100;9600;8700;5200;6500;3700;5200;2800;7000;10000;13400;11100;7400;7300;8400;8400;9900;9900;6100;6800;5300;5300;7900;8600;10000;10000;27000;26000;10000;7000;5000;7000;7000;7000;7000;10000;10000;60000;85000;85000;55000;70000;30000;25000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000
-59;'818;Egypt;1640;Plywood and LVL;5616;Import quantity;m3;18200;15200;14900;19900;35900;41800;19600;5200;1800;15600;14900;32800;36300;11300;39300;40200;88500;84400;61100;105600;100700;129000;192000;175500;211400;208000;150000;228900;156800;132300;191000;107803;100300;200000;172500;192100;218000;293300;234600;105000;161000;103400;250116;296294;380402;357950;360133;484610;501301;457225;497099;493049;534030;452562;515888;512167;482316;434550;553565;492279;524816;202997;84504
-59;'818;Egypt;1640;Plywood and LVL;5622;Import value;1000 USD;2439;2029;1977;2673;4927;5834;2629;697;236;2171;2383;6110;3894;4137;13383;11507;31588;38596;18424;44918;51894;51233;74540;67584;86841;113572;53969;83240;160545;266216;84414;43095;59372;70151;57135;65018;72836;74299;67286;37672;54027;23822;63547;80154;139334;126321;150299;218914;194211;188038;229621;233469;245209;246301;209862;190669;171927;263289;201703;183522;241256;101167;43228
-59;'818;Egypt;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;14;200;1700;300;0;0;0;0;0;434;497;605;1858;351;1407;3858;3409;3516;3886;4625;3548;3986;5784;3771;5006;6574;1633;526;780;1414;901
-59;'818;Egypt;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;10;85;404;85;0;0;0;0;0;111;129;393;361;184;818;1625;902;1564;1904;2980;1800;1816;2537;1827;2261;2418;1403;491;882;1441;1027
-59;'818;Egypt;1646;Particle board and OSB (1961-1994);5516;Production;m3;;2600;13100;29100;26500;24000;21100;17600;20000;22000;24100;37300;25300;24200;28600;29200;30000;30000;42000;31800;31800;25500;28700;35800;33000;26000;29000;32000;32000;24000;34000;41000;41000;41000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;200;100;100;100;200;800;1800;7900;22100;9300;;;;;;;;;;;637;1537;2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;23;13;13;13;79;106;257;1325;4753;2347;;;;;;;;;;;156;382;485;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;100;300;3200;6200;300;;;;;;;;;;;;;;;;;;;;;1106;1106;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;4;8;147;334;16;;;;;;;;;;;;;;;;;;;;;272;272;2404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;41000;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300;6300
-59;'818;Egypt;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3500;10800;27100;25000;4000;1900;3100;7161;9489;9489;9489;3200;3200;13264;2051;14934;18685;34953;78175;47961;47961;18016;18016;22574;22566;28826;17467;14188
-59;'818;Egypt;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;1254;2181;5485;5098;1838;1092;1392;2300;3000;3000;3000;1860;1860;3097;5293;7532;6955;14115;20731;17180;17180;5445;5445;7049;7324;11372;8355;7646
-59;'818;Egypt;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;6800;3500;0;0;0;0;0;0;357;357;357;357;357;313;3208;2606;6177;4356;4273;64;32;2710;2710;1236;519;31;4;1567
-59;'818;Egypt;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2951;2951;788;0;0;0;0;0;0;201;201;201;201;201;295;1870;1215;2191;2290;2455;59;27;1332;1332;399;178;11;3;659
-59;'818;Egypt;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;40;87;47;53;39;13;63;7;49;504;65;127;3
-59;'818;Egypt;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;20;33;35;36;14;5;16;4;13;124;26;52;1
-59;'818;Egypt;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;90;0;0;240;453;3;3;3
-59;'818;Egypt;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;7;0;0;60;109;1;1;1
-59;'818;Egypt;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;5000;5000;5000;5000;5000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000
-59;'818;Egypt;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4555;6869;9875;17900;13200;40600;52500;71700;47500;40100;80300;132515;214144;214144;214144;136600;121000;96448;214622;122948;126233;213862;238921;144041;135208;192906;195027;324785;331106;321586;269657;265557
-59;'818;Egypt;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1654;1558;2222;5051;2822;7767;10528;10256;8595;8660;12195;17599;28502;28502;28502;21679;26679;37309;49745;59378;77889;64229;85870;106208;87848;119133;134483;128040;163250;188339;200653;198219
-59;'818;Egypt;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2993;5077;3020;0;0;0;0;0;0;0;0;0;0;0;0;0;0;618;4317;24089;13892;6694;11098;709;13778;1758;2500;2754;2887;3243;1522;1300
-59;'818;Egypt;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785;1028;451;0;0;0;0;0;0;0;0;0;0;0;0;0;0;495;2876;12860;5766;3175;9571;456;6538;812;1449;882;1168;1539;1736;1513
-59;'818;Egypt;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;3100;6400;17000;30000;35000;14800;15000;22000;41164;41164;41164;20000;20000;6160;8330;9046;6735;8937;10721;13319;15595;22077;23172;24681;24035;31900;24166;26178
-59;'818;Egypt;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1533;795;2194;2953;4253;6724;3748;3883;4800;9492;9492;9492;4883;4883;4086;5198;6426;5238;6615;9608;10940;10749;14034;15162;16089;15182;22572;19158;22399
-59;'818;Egypt;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;21;42;1;188;0;8;8;8;8;0;0;55;534;534
-59;'818;Egypt;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;20;26;1;95;0;5;5;5;5;0;0;12;1058;1058
-59;'818;Egypt;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000
-59;'818;Egypt;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800;3400;15100;34000;39000;8000;10000;50000;95181;156580;156580;156580;105600;90000;72998;201000;59537;102400;196688;224467;128965;118272;170442;171715;299990;307030;289068;243602;239164
-59;'818;Egypt;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3103;873;4508;7128;5727;1580;1600;5000;9499;16410;16410;16410;15000;20000;28397;42421;35735;63425;54218;74914;94698;76620;104951;119189;111913;148058;165632;181016;175755
-59;'818;Egypt;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;4047;23828;13342;5851;9932;693;9183;1167;1616;2560;2868;3164;988;689
-59;'818;Egypt;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;2715;12675;5429;2730;9301;444;4357;538;943;848;1164;1522;678;434
-59;'818;Egypt;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;5000;5000;5000;5000;5000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-59;'818;Egypt;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;21;555;3900;6700;19100;1500;2700;4500;15300;15300;15334;16400;16400;16400;11000;11000;17290;5292;54365;17098;8237;3733;1757;1341;387;140;114;41;618;1889;215
-59;'818;Egypt;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;20;100;415;1154;1065;447;276;291;3312;3312;3300;2600;2600;2600;1796;1796;4826;2126;17217;9226;3396;1348;570;479;148;132;38;10;135;479;65
-59;'818;Egypt;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2765;4347;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;249;219;549;655;1166;8;4587;583;876;194;19;24;0;77
-59;'818;Egypt;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;954;444;0;0;0;0;0;0;0;0;0;0;0;0;0;0;132;141;159;336;350;270;7;2176;269;501;34;4;5;0;21
-59;'818;Egypt;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4509;6848;9320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1610;1538;2122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;730;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;74;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1879;Total fibre furnish;5510;Production;t;2000;20000;21000;23000;30000;40000;44000;52000;53000;154000;158000;164000;186000;178000;135000;119000;119000;128000;167000;158000;150000;221000;220000;223000;223000;270000;284000;289000;289000;158000;147000;167000;187000;220000;240000;240000;240000;92000;92000;425000;500000;500000;500000;500000;500000;500000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000;541000
-59;'818;Egypt;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;55700;58200;47000;41200;26800;28800;18100;62700;89100;52000;39900;22700;30100;43300;31200;51000;55600;68700;41300;52000;52000;52000;52000;57500;128764;44402;51153;58239;73600;36400;75700;61700;112900;107500;94560;135627;112649;72102;36188;43617;41217;40574;18355;31895;48789;271532;264312;264130;287028;262945;171379;212127;167807;166513;320730;278673
-59;'818;Egypt;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;7890;8773;8988;7946;5647;7593;9671;28630;32972;17219;19773;8697;14074;21830;15723;19461;30178;32519;31122;39000;39000;39000;39000;35299;61887;13260;21244;38950;27558;14606;30172;25228;47463;53865;55443;76442;77693;39022;23458;27387;146028;103178;23240;32893;30099;170306;173751;163434;159965;166594;246698;214203;163035;193546;313871;240515
-59;'818;Egypt;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;1400;0;0;0;0;0;0;0;0;0;0;0;0;8781;1139;493;286;573;77;270;372;72;302;563;395;549;886;540
-59;'818;Egypt;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;181;215;0;0;0;0;0;0;0;0;0;0;0;0;2011;288;280;211;391;48;148;151;145;631;753;574;635;951;742
-59;'818;Egypt;1878;Pulp for paper;5510;Production;t;2000;20000;21000;23000;30000;40000;44000;52000;53000;54000;67000;70000;80000;80000;47000;37000;37000;46000;85000;91000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;47000;47000;47000;60000;60000;60000;60000;60000;60000;75000;120000;120000;120000;120000;120000;120000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000;161000
-59;'818;Egypt;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;55700;58200;47000;41200;26800;28800;18100;62700;89100;52000;39900;22700;30100;43300;31200;51000;55600;68700;41300;52000;52000;52000;52000;57500;125265;40566;49053;55839;64100;27200;71700;59300;110700;105500;92160;128627;105022;64475;28561;35990;33590;31496;15026;29988;45489;271518;262284;257765;283339;255059;170060;199495;161340;146164;213374;236342
-59;'818;Egypt;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;7890;8773;8988;7946;5647;7593;9671;28630;32972;17219;19773;8697;14074;21830;15723;19461;30178;32519;31122;39000;39000;39000;39000;35299;61326;12669;20792;38366;25661;12889;29327;24529;46606;53395;54528;75165;75936;37265;21701;25630;144271;100103;22089;32039;29231;170302;172664;161894;158854;164561;246394;210163;161250;180681;275383;226784
-59;'818;Egypt;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;704;402;161;51;50;83;56;68;298;379;374;428;765;419
-59;'818;Egypt;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;227;237;160;44;44;75;98;141;627;633;571;607;923;714
-59;'818;Egypt;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-59;'818;Egypt;1875;Wood pulp;5610;Import quantity;t;15500;18200;10000;14100;17200;11900;14200;69100;68000;56000;50200;35800;37800;27100;;;;;;;;;;;;;;;;;;61532;41846;47314;60900;64000;28200;72500;61700;99500;74700;61360;98778;68975;64497;28488.24;35940;32597;29446;18225;30811;53368;301828;297578;288598;297479;264024;172515;201121;162219;146323;213328;236339
-59;'818;Egypt;1875;Wood pulp;5622;Import value;1000 USD;2198;2581;1418;1999;2439;1687;2013;9790;10273;10688;9646;7397;9393;13171;;;;;;;;;;;;;;;;;;27548;13777;20189;45975;26167;13467;29895;25926;38433;30233;31366;52038;43215;37275;21650.76;25594;143460;98942;28875;33911;41842;190358;200020;176345;172844;174841;249110;212037;162144;180823;275208;226685
-59;'818;Egypt;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;680;183;135;34;33;33;21;41;271;351;374;428;765;253
-59;'818;Egypt;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;213;152;113;22;22;22;11;83;569;572;571;607;923;504
-59;'818;Egypt;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3242;1048;1048;1;1514;712;1219
-59;'818;Egypt;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1584;506;506;1;906;529;720
-59;'818;Egypt;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;0
-59;'818;Egypt;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;0
-59;'818;Egypt;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1149;645;13400;2600;6400;6400;2600;16000;4600;2010;3455;2000;1917;1339;5345;594;7575;8509;23429;41736;15360;5222;2078;5399;;;;;;;
-59;'818;Egypt;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;311;211;10840;1009;3530;3530;967;8525;4008;2000;3600;1800;1360;978;4918;2942;17828;18136;24078;26362;13082;5833;1129;2537;;;;;;;
-59;'818;Egypt;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;518;16;16;16;15;15;15;;;;;;;
-59;'818;Egypt;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;8;8;8;8;8;8;;;;;;;
-59;'818;Egypt;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;369;1522;200;200;1200;900;500;0;0;2050;5248;5248;62188;26733;26373;26863;20932;2255;558;1409;418;418;418;969;;;;;;;
-59;'818;Egypt;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;138;756;108;108;422;353;155;0;0;1400;2743;2743;35591;20527;17960;137846;79853;1144;238;802;233;233;233;533;;;;;;;
-59;'818;Egypt;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;0;0;0;0;0;;;;;;;
-59;'818;Egypt;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;0;0;0;0;0;;;;;;;
-59;'818;Egypt;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-59;'818;Egypt;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;55700;58200;47000;41200;26800;28800;18100;;;;;;;;;;;;;;;;;;52289;33009;40847;36200;57300;18600;63600;55400;82700;68900;56100;87924;58574;304;416;4222;5128;939;3836;5475;2198;255387;256535;255184;276324;251724;169000;198434;161339;144631;212567;235071
-59;'818;Egypt;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;7890;8773;8988;7946;5647;7593;9671;;;;;;;;;;;;;;;;;;22303;9475;17080;24673;22163;8412;25194;23157;29373;25425;27166;44860;37893;261;145;2716;2653;1261;1921;7427;1766;156735;166504;159192;155026;162817;245770;209634;161249;179733;274663;225949
-59;'818;Egypt;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;119;119;18;18;18;6;41;271;351;374;428;307;253
-59;'818;Egypt;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;105;105;14;14;14;3;83;569;572;571;607;540;504
-59;'818;Egypt;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;100;904;800;200;1000;1300;1900;1700;0;0;0;0;0;0;999;2327;660;528;606;582;50;2290;1076;205;3579;3579;2115;86;59;939;749
-59;'818;Egypt;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;27;360;206;49;356;339;555;1345;0;0;0;0;0;0;432;889;173;256;305;230;29;1755;641;121;2190;2190;1478;49;46;682;547
-59;'818;Egypt;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;56;56;2
-59;'818;Egypt;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;37;37;1
-59;'818;Egypt;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000
-59;'818;Egypt;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44304;27848;39248;34100;53900;13600;56200;52300;81000;68900;56100;87924;58574;304;416;1337;512;22;3112;4740;1279;255000;254000;254000;276000;248000;165162;195789;161059;144361;211593;234302
-59;'818;Egypt;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18363;7698;16291;23371;20283;5854;21867;21800;28028;25425;27166;44860;37893;261;145;942;381;66;1570;6858;1076;156245;164483;158402;154655;160397;243153;207770;161059;179318;273920;225359
-59;'818;Egypt;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;119;119;18;18;18;4;19;19;99;122;122;1;1
-59;'818;Egypt;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;105;105;14;14;14;2;67;67;70;69;69;2;2
-59;'818;Egypt;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;259;530;194;211;35;20
-59;'818;Egypt;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;427;386;141;369;61;43
-59;'818;Egypt;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;250;250;250;250;250;250
-59;'818;Egypt;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;501;501;501;501;501;501
-59;'818;Egypt;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023;2246;134;74;0;125;125;160;0;0;;;;;;;
-59;'818;Egypt;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;703;1318;390;55;0;117;117;123;0;0;;;;;;;
-59;'818;Egypt;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7792;5061;695;1300;3200;4000;6100;1200;0;0;0;0;0;0;0;863;43;123;122;129;212;212;85;108;119;;;;;;;
-59;'818;Egypt;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3853;1750;429;1096;1831;2202;2988;802;0;0;0;0;0;0;0;639;65;632;40;264;343;344;143;149;250;;;;;;;
-59;'818;Egypt;1667;Dissolving wood pulp;5610;Import quantity;t;15500;18200;10000;14100;17200;11900;14200;13400;9800;9000;9000;9000;9000;9000;;;;;;;;;;;;;;;;;;9003;7319;4300;11100;3900;2000;1600;3200;800;1200;1200;2151;3153;88;0.24;0;12;0;3625;1349;8025;30663;35403;30918;14787;9058;2467;1639;879;178;49;49
-59;'818;Egypt;1667;Dissolving wood pulp;5622;Import value;1000 USD;2198;2581;1418;1999;2439;1687;2013;1900;1500;1700;1700;1750;1800;3500;;;;;;;;;;;;;;;;;;5112;3853;2142;10354;2887;1103;818;1647;535;800;800;835;779;63;0.76;0;19;0;7674;2168;12912;20308;27450;15791;14748;10440;2834;1897;894;184;16;16
-59;'818;Egypt;1668;Pulp from fibres other than wood;5510;Production;t;2000;20000;21000;23000;30000;40000;44000;52000;53000;54000;67000;70000;80000;80000;47000;37000;37000;46000;85000;91000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;47000;47000;47000;60000;60000;60000;60000;60000;60000;75000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000
-59;'818;Egypt;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;62700;89100;52000;39900;22700;30100;43300;31200;51000;55600;68700;41300;52000;52000;52000;52000;57500;72736;6039;6039;6039;4000;1000;800;800;12000;32000;32000;32000;39200;66;73;50;1005;2050;426;526;146;353;109;85;647;93;12;13;0;19;95;52
-59;'818;Egypt;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;28630;32972;17219;19773;8697;14074;21830;15723;19461;30178;32519;31122;39000;39000;39000;39000;35299;38890;2745;2745;2745;2381;525;250;250;8708;23962;23962;23962;33500;53;51;36;830;1161;888;296;301;252;94;1340;758;160;118;23;0;42;191;115
-59;'818;Egypt;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;24;219;26;17;17;50;35;27;27;28;0;0;0;166
-59;'818;Egypt;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;14;85;47;22;22;53;87;58;58;61;0;0;0;210
-59;'818;Egypt;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;351;41;731;243;66;94;143;989;84;419;100;100;9;66
-59;'818;Egypt;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;603;29;580;117;78;72;90;654;88;274;97;97;7;46
-59;'818;Egypt;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;156;47;38;27;27;27;202;202;0;3;2;2;2
-59;'818;Egypt;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;95;30;4;2;2;2;112;112;0;2;2;2;2
-59;'818;Egypt;1669;Recovered paper;5510;Production;t;;;;;;;;;;100000;91000;94000;106000;98000;88000;82000;82000;82000;82000;67000;70000;141000;140000;143000;143000;190000;204000;209000;209000;78000;100000;120000;140000;160000;180000;180000;180000;32000;32000;350000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000;380000
-59;'818;Egypt;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3499;3836;2100;2400;9500;9200;4000;2400;2200;2000;2400;7000;7627;7627;7627;7627;7627;9078;3329;1907;3300;14;2028;6365;3689;7886;1319;12632;6467;20349;107356;42331
-59;'818;Egypt;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;591;452;584;1897;1717;845;699;857;470;915;1277;1757;1757;1757;1757;1757;3075;1151;854;868;4;1087;1540;1111;2033;304;4040;1785;12865;38488;13731
-59;'818;Egypt;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;1400;0;0;0;0;0;0;0;0;0;0;0;0;8140;435;91;125;522;27;187;316;4;4;184;21;121;121;121
-59;'818;Egypt;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;181;215;0;0;0;0;0;0;0;0;0;0;0;0;1830;61;43;51;347;4;73;53;4;4;120;3;28;28;28
-59;'818;Egypt;1876;Paper and paperboard;5510;Production;t;49700;87900;96000;103200;106000;107800;108400;110000;115000;120000;125000;130000;127000;104000;106000;118000;118000;124000;122000;122000;146000;110000;110000;145000;145000;145000;160000;160000;216000;223000;230000;223000;242000;219000;221000;221000;282000;343000;343000;440000;460000;460000;460000;460000;460000;460000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;660000;710000;710000;710000;710000;710000;710000
-59;'818;Egypt;1876;Paper and paperboard;5610;Import quantity;t;120200;107800;85600;69700;80900;126600;97200;64900;60000;70400;86000;87300;60300;107200;97200;111700;183400;177600;161600;197900;306500;265600;313200;384500;410300;335200;237200;266400;258900;347100;424200;445350;441000;466300;361600;372100;582600;617399;943901;272400;654000;628214;648625;747651;747651;743299;917627;917627;908751;760478;986048;994097;1061280;1062004;1088681;1051314;1036452;1118965;1214465;1290211;1288148;989943;731270
-59;'818;Egypt;1876;Paper and paperboard;5622;Import value;1000 USD;25485;23070;16650;12157;15376;26426;18881;12715;13483;15430;16977;17883;14991;59502;52796;55262;105098;115438;55991;106139;167345;155647;150704;181259;174025;267261;179420;211688;530299;954715;331862;310120;269692;264034;307612;263457;408925;356705;534029;165342;488355;451652;408178;433105;433105;448522;652594;652594;599269;811622;953157;1003839;1069981;1033569;957582;923348;956014;1127671;1082635;1040472;1102083;1389952;1115308
-59;'818;Egypt;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5067;5086;4100;4100;4400;5900;3101;9847;8000;42900;35689;42279;47148;47148;47148;53941;53941;60428;98386;51308;20503;47738;58488;25094;33453;89654;147435;141650;122049;243628;285979;228687
-59;'818;Egypt;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3720;4637;3460;4162;4997;5374;2714;9708;8799;47162;36175;39579;43205;43205;43205;66720;66720;85379;88675;66340;27768;41364;41652;33601;42158;86473;169087;153763;117653;197498;285520;218611
-59;'818;Egypt;2042;Graphic papers;5510;Production;t;5500;23200;26000;29500;27200;27800;28400;30000;35000;40000;42000;47000;44000;23000;24000;38000;38000;45000;66000;66000;66000;39000;39000;52000;52000;52000;55000;55000;72000;73000;65000;58000;85000;75000;70000;70000;55000;36000;36000;65000;100000;100000;100000;100000;100000;100000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-59;'818;Egypt;2042;Graphic papers;5610;Import quantity;t;89100;58100;53400;44900;51900;85600;62100;28900;29700;37900;42000;56800;34300;72700;74200;86700;112600;119500;109500;120600;160900;161100;160600;169800;164300;179500;137200;155900;138600;169100;205600;244650;245300;237100;127700;124200;305700;379399;392901;223000;401900;316254;249145;391864;391864;373664;387500;387500;432515;273758;368714;390191;413596;408366;328161;380437;405442;489111;555034;593279;711802;474645;378902
-59;'818;Egypt;2042;Graphic papers;5622;Import value;1000 USD;17592;10192;9380;7433;8961;16670;11287;4830;7930;8785;8163;11160;7797;41907;41096;42562;60165;62207;27203;63888;85707;84414;69726;76683;86025;134053;99420;126507;292766;643061;163224;169183;147895;129543;109218;79549;230713;205221;206955;143183;275176;217696;153449;233575;233575;229269;273464;273464;299758;295403;327261;391596;368513;354509;306079;356896;389479;460183;489397;471638;496676;627915;596697
-59;'818;Egypt;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;3263;1300;200;200;1200;201;347;2000;21300;16500;17600;22079;22079;22079;30400;30400;10615;62065;21044;11860;23262;33100;8331;8472;11972;15387;18637;9968;17889;17449;16406
-59;'818;Egypt;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;2861;760;173;173;688;185;185;1304;22546;15400;15126;18704;18704;18704;29047;29047;10115;46579;26082;15765;19049;20170;11768;12525;12173;19071;18805;10622;20893;27705;22136
-59;'818;Egypt;1671;Newsprint;5610;Import quantity;t;49500;41700;45300;40000;40900;52000;46300;20900;23800;32900;36100;45400;26900;46700;40200;60300;70200;75000;70000;67000;89000;91500;99700;56500;35300;85000;66000;84300;62900;58200;79400;73449;75300;69800;89900;88000;100000;101000;117800;139000;265000;200000;104662;126780;126780;126780;133200;133200;134324;62948;148400;122053;85376;100384;78851;110278;103826;93201;94115;71178;65659;34709;33176
-59;'818;Egypt;1671;Newsprint;5622;Import value;1000 USD;8297;6626;7020;5890;6075;7741;7019;3130;3555;5085;6393;7890;5158;23309;20406;27957;27159;27200;5857;26100;34000;42474;34863;15988;17025;67490;52400;70000;112985;164037;48830;36669;32105;30711;65675;51000;57000;46103;49475;77271;140387;110000;50000;56630;56630;56630;59900;59900;76620;66224;92188;87943;71222;81744;52060;59790;53604;69244;73767;43747;43336;39541;48709
-59;'818;Egypt;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;93;25;1;42;16;136;297;331;71;176;147;754;134;299
-59;'818;Egypt;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;47;14;1;75;8;102;426;284;41;98;70;390;107;216
-59;'818;Egypt;1674;Printing and writing papers;5510;Production;t;5500;23200;26000;29500;27200;27800;28400;30000;35000;40000;42000;47000;44000;23000;24000;38000;38000;45000;66000;66000;66000;39000;39000;52000;52000;52000;55000;55000;72000;73000;65000;58000;85000;75000;70000;70000;55000;36000;36000;65000;100000;100000;100000;100000;100000;100000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-59;'818;Egypt;1674;Printing and writing papers;5610;Import quantity;t;39600;16400;8100;4900;11000;33600;15800;8000;5900;5000;5900;11400;7400;26000;34000;26400;42400;44500;39500;53600;71900;69600;60900;113300;129000;94500;71200;71600;75700;110900;126200;171201;170000;167300;37800;36200;205700;278399;275101;84000;136900;116254;144483;265084;265084;246884;254300;254300;298191;210810;220314;268138;328220;307982;249310;270159;301616;395910;460919;522101;646143;439936;345726
-59;'818;Egypt;1674;Printing and writing papers;5622;Import value;1000 USD;9295;3566;2360;1543;2886;8929;4268;1700;4375;3700;1770;3270;2639;18598;20690;14605;33006;35007;21346;37788;51707;41940;34863;60695;69000;66563;47020;56507;179781;479024;114394;132514;115790;98832;43543;28549;173713;159118;157480;65912;134789;107696;103449;176945;176945;172639;213564;213564;223138;229179;235073;303653;297291;272765;254019;297106;335875;390939;415630;427891;453340;588374;547988
-59;'818;Egypt;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;3263;1300;200;200;1200;201;347;2000;21300;16500;17600;22079;22079;22079;30400;30400;10585;61972;21019;11859;23220;33084;8195;8175;11641;15316;18461;9821;17135;17315;16107
-59;'818;Egypt;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;2861;760;173;173;688;185;185;1304;22546;15400;15126;18704;18704;18704;29047;29047;10097;46532;26068;15764;18974;20162;11666;12099;11889;19030;18707;10552;20503;27598;21920
-59;'818;Egypt;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41282;40793;10000;20300;20254;26384;26384;26384;26384;28400;28400;11506;1657;1613;1592;2186;844;9991;2115;5594;2856;1661;1428;1686;3361;6109
-59;'818;Egypt;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23395;23154;9700;19818;19818;20000;20000;20000;20000;21000;21000;8176;2838;1599;1293;1691;1550;7073;2046;4732;2535;1899;1870;2405;2635;4873
-59;'818;Egypt;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;16;1000;2300;2300;2300;2300;2300;2300;2300;2300;44;21436;6044;867;3718;664;432;80;265;313;561;1113;598;403;313
-59;'818;Egypt;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;870;1713;1713;1713;1713;1713;1713;1713;1713;77;17993;7095;896;2909;1057;591;176;151;315;423;951;1233;460;473
-59;'818;Egypt;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;65000;100000;100000;100000;100000;100000;100000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-59;'818;Egypt;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183227;181056;73000;90100;69500;95076;140000;140000;121800;138400;138400;194064;155232;154324;194739;234275;217505;162272;190049;208593;259405;329011;339993;461804;234271;235946
-59;'818;Egypt;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102912;101853;54677;87177;60084;60376;91236;91236;86930;120900;120900;146407;160908;163644;219469;214782;186228;163976;222721;253758;268233;293560;288531;288589;340808;410229
-59;'818;Egypt;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;58;0;7100;6500;7600;12979;12979;12979;25700;25700;9241;32851;11192;9381;17128;30439;6557;6324;7907;10665;6225;3730;6350;7952;9969
-59;'818;Egypt;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;0;6405;6210;5936;10291;10291;10291;24694;24694;8429;24677;15133;12523;12608;16220;9220;9357;7872;12723;5961;3715;7168;12097;11566
-59;'818;Egypt;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53890;53252;1000;26500;26500;23023;98700;98700;98700;87500;87500;92621;53921;64377;71807;91759;89633;77047;77995;87429;133649;130247;180680;182653;202304;103671
-59;'818;Egypt;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32811;32473;1535;27794;27794;23073;65709;65709;65709;71664;71664;68555;65433;69830;82891;80818;84987;82970;72339;77385;120171;120171;137490;162346;244931;132886
-59;'818;Egypt;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;273;1000;11900;7700;7700;6800;6800;6800;2400;2400;1300;7685;3783;1611;2374;1981;1206;1771;3469;4338;11675;4978;10187;8960;5825
-59;'818;Egypt;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;434;14428;7477;7477;6700;6700;6700;2640;2640;1591;3862;3840;2345;3457;2885;1855;2566;3866;5992;12323;5886;12102;15041;9881
-59;'818;Egypt;1675;Other paper and paperboard;5510;Production;t;44200;64700;70000;73700;78800;80000;80000;80000;80000;80000;83000;83000;83000;81000;82000;80000;80000;79000;56000;56000;80000;71000;71000;93000;93000;93000;105000;105000;144000;150000;165000;165000;157000;144000;151000;151000;227000;307000;307000;375000;360000;360000;360000;360000;360000;360000;510000;510000;510000;510000;510000;510000;510000;510000;510000;510000;510000;560000;560000;560000;560000;560000;560000
-59;'818;Egypt;1675;Other paper and paperboard;5610;Import quantity;t;31100;49700;32200;24800;29000;41000;35100;36000;30300;32500;44000;30500;26000;34500;23000;25000;70800;58100;52100;77300;145600;104500;152600;214700;246000;155700;100000;110500;120300;178000;218600;200700;195700;229200;233900;247900;276900;238000;551000;49400;252100;311960;399480;355787;355787;369635;530127;530127;476236;486720;617334;603906;647684;653638;760520;670877;631010;629854;659431;696932;576346;515298;352368
-59;'818;Egypt;1675;Other paper and paperboard;5622;Import value;1000 USD;7893;12878;7270;4724;6415;9756;7594;7885;5553;6645;8814;6723;7194;17595;11700;12700;44933;53231;28788;42251;81638;71233;80978;104576;88000;133208;80000;85181;237533;311654;168638;140937;121797;134491;198394;183908;178212;151484;327074;22159;213179;233956;254729;199530;199530;219253;379130;379130;299511;516219;625896;612243;701468;679060;651503;566452;566535;667488;593238;568834;605407;762037;518611
-59;'818;Egypt;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4497;1823;2800;3900;4200;4700;2900;9500;6000;21600;19189;24679;25069;25069;25069;23541;23541;49813;36321;30264;8643;24476;25388;16763;24981;77682;132048;123013;112081;225739;268530;212281
-59;'818;Egypt;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3235;1776;2700;3989;4824;4686;2529;9523;7495;24616;20775;24453;24501;24501;24501;37673;37673;75264;42096;40258;12003;22315;21482;21833;29633;74300;150016;134958;107031;176605;257815;196475
-59;'818;Egypt;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;14000;55000;60000;60000;44000;59000;59000;80000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;140000;140000;140000;140000;140000;140000
-59;'818;Egypt;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;1000;1800;2800;7863;5000;5000;9800;9800;9800;920;7514;1528;733;2587;1327;5785;3015;2322;4417;5702;8444;8351;7712;5443
-59;'818;Egypt;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8897;1934;3852;2866;8594;6396;6396;13117;13117;13117;1838;8325;2309;1290;3845;1808;9755;4439;2921;5390;7364;10198;11121;13714;9360
-59;'818;Egypt;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;5000;3800;8671;7328;7328;7328;10700;10700;45472;15679;11472;4692;7622;9111;13171;14640;53276;104265;99003;77728;99703;105387;90245
-59;'818;Egypt;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6480;10979;6862;10000;8000;8000;8000;24245;24245;53354;22150;16053;7103;10387;11159;18219;18353;57251;126569;119115;83142;84679;127642;119971
-59;'818;Egypt;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248000;248000;275000;240000;240000;240000;240000;240000;240000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000;390000
-59;'818;Egypt;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218000;519600;45400;139000;197860;341617;326035;326035;326035;486527;486527;452422;461313;605032;591567;636521;641922;745380;653180;620354;617688;647956;683302;561572;500134;342157
-59;'818;Egypt;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124484;295944;16332;76098;97861;186135;162387;162387;162387;322264;322264;260196;485813;602623;584725;678115;655856;631925;528388;538523;634593;558265;536887;571122;719748;481799
-59;'818;Egypt;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;6189;6808;8541;8541;8541;8541;8541;2211;14615;14972;2747;15844;16073;3003;8554;24378;26627;23613;33622;123032;161854;119015
-59;'818;Egypt;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4148;6711;7251;9299;9299;9299;9299;9299;18000;13062;15242;2503;11228;10230;3037;8335;16920;21913;15246;22125;86652;126243;69960
-59;'818;Egypt;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;59000;59000;59000;59000;59000;61000;61000;61000;59000;60000;59000;59000;58000;41000;41000;65000;56000;56000;73000;73000;73000;90000;90000;123000;128000;128000;128000;121000;83000;85000;85000;183000;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;30500;48700;31600;24300;28400;40200;34400;35300;30000;31000;43000;28000;25000;33000;21000;20000;57000;46500;42000;62000;117600;84000;122700;172600;202000;44700;40000;45000;18000;44000;66900;48300;120000;214000;217500;228900;255000;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;7419;12105;6834;4441;6030;9171;7138;7385;5353;6045;8214;5423;6494;16795;9800;7700;30933;41231;20788;30500;58900;49000;61000;78800;66000;28287;30000;35181;34635;104145;42269;26410;54614;112528;166651;155000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;
-59;'818;Egypt;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-59;'818;Egypt;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1049;2500;43000;78200;109100;119401;142464;142464;142464;190900;190900;153276;129415;152082;227004;236372;227841;237028;205672;229977;211041;237960;254767;156661;142948;65847
-59;'818;Egypt;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2941;6991;13537;23594;33814;43506;58492;58492;58492;97001;97001;58056;123254;105271;158589;187868;155521;151004;113091;128034;151356;137045;131617;121717;156472;102050
-59;'818;Egypt;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;4452;9103;1289;6979;9411;1267;4897;17270;19069;16887;23641;92509;138513;96263
-59;'818;Egypt;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;3007;5224;828;3875;3844;729;2531;8623;11907;7821;9325;60063;97112;45322
-59;'818;Egypt;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54109;54109;60000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000
-59;'818;Egypt;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78918;188100;1000;11800;11760;76600;86626;86626;86626;122800;122800;156800;191758;216828;243593;246866;246866;341680;316128;220448;222152;261834;311316;240868;244599;189922
-59;'818;Egypt;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44288;105289;1460;11000;11047;38500;47339;47339;47339;89387;89387;92999;214909;279131;292247;332542;323670;304796;302428;264643;298598;269764;300400;304070;421471;270256
-59;'818;Egypt;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;4289;4908;4908;4908;4908;4908;4908;391;1967;1291;452;1728;1833;408;1048;2378;4615;4594;8651;22594;19709;16863
-59;'818;Egypt;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2519;5000;5540;5540;5540;5540;5540;5540;930;1664;1255;393;1297;1420;414;633;1925;4550;4163;10491;18537;24002;18460
-59;'818;Egypt;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193891;193891;215000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000
-59;'818;Egypt;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138033;329000;400;29000;57000;117616;82618;82618;82618;158500;158500;141302;138440;234806;119813;151675;165758;165758;130292;166911;181489;145590;113943;161542;109672;82961
-59;'818;Egypt;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77255;183664;240;19700;32000;75129;51422;51422;51422;130742;130742;107232;145346;216939;132614;156044;175157;175157;111915;143853;182733;149917;103025;143584;139117;106623
-59;'818;Egypt;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;900;2633;2633;2633;2633;2633;1756;8112;4562;995;7114;4703;1302;2578;4053;2448;1627;1276;6090;1209;1088
-59;'818;Egypt;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;211;211;2259;2259;2259;2259;2259;17005;8258;8722;1255;6004;4899;1856;5125;6035;5154;2973;2270;6777;2923;2070
-59;'818;Egypt;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;20000;20000;28000;14327;14327;14327;14327;14327;1044;1700;1316;1157;1608;1457;914;1088;3018;3006;2572;3276;2501;2915;3427
-59;'818;Egypt;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;21804;21000;29000;5134;5134;5134;5134;5134;1909;2304;1282;1275;1661;1508;968;954;1993;1906;1539;1845;1751;2688;2870
-59;'818;Egypt;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1000;1000;1000;1000;1000;1000;1000;40;84;16;11;23;126;26;31;677;495;505;54;1839;2423;4801
-59;'818;Egypt;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1418;1500;1500;1500;1500;1500;1500;1500;10;133;41;27;52;67;38;46;337;302;289;39;1275;2206;4108
-59;'818;Egypt;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;21000;21000;21000;21000;21000;22000;22000;22000;22000;22000;21000;21000;21000;15000;15000;15000;15000;15000;20000;20000;20000;15000;15000;21000;22000;22000;22000;22000;6000;6000;6000;0;0;0;20000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-59;'818;Egypt;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;600;1000;600;500;600;800;700;700;300;1500;1000;2500;1000;1500;2000;5000;13800;11600;10100;15300;28000;20500;29900;42100;44000;111000;60000;65500;102300;134000;151700;152400;75700;15200;16400;19000;21900;20000;19800;3000;111300;111300;50000;24752;24752;33800;33800;33800;22894;17893;10774;11606;8576;10389;9355;14682;8334;7749;5773;5186;6423;7452;4768
-59;'818;Egypt;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;474;773;436;283;385;585;456;500;200;600;600;1300;700;800;1900;5000;14000;12000;8000;11751;22738;22233;19978;25776;22000;104921;50000;50000;202898;207509;126369;114527;67183;21963;31743;28908;28212;27000;22233;3893;133229;133229;60000;30747;30747;43749;43749;43749;37477;22081;20964;26228;19508;21396;9823;33625;25091;27505;27609;21749;23164;28575;27452
-59;'818;Egypt;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4497;1823;2800;3900;4200;4700;2900;9500;3000;10700;9200;9200;9200;9200;9200;4300;4300;2130;6027;3820;1204;1010;204;589;1787;28;1156;397;731;3004;1289;3021
-59;'818;Egypt;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3235;1776;2700;3989;4824;4686;2529;9523;1015;9489;7202;7202;7202;7202;7202;4129;4129;3910;6884;8963;2397;700;93;577;2945;129;1534;597;1764;5274;3930;6544
-59;'818;Egypt;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81077;79215;89931;85096;100128;86211;92627
-59;'818;Egypt;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297662;280655;214760;194228;200328;179946;223600
-59;'818;Egypt;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;1561;920;996;938;1878;1001
-59;'818;Egypt;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2571;8262;2153;1858;222;31;197
-59;'818;Egypt;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;679;216;362;259;731;524
-59;'818;Egypt;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;364;61;3;5;2;62
-59;'818;Egypt;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;882;704;634;679;1147;477
-59;'818;Egypt;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2463;7898;2092;1855;217;29;135
-59;'818;Egypt;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6687;5744;4355;2783;3593;4329;1957
-59;'818;Egypt;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8456;311;306;1345;252;531;813
-59;'818;Egypt;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244;1717;1895;1100;782;1085;1502
-59;'818;Egypt;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;252;212;173;123;42;226
-59;'818;Egypt;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9399;9438;11079;11316;15835;10459;9779
-59;'818;Egypt;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918;1655;1462;1757;4878;4203;4386
-59;'818;Egypt;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-59;'818;Egypt;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82
-59;'818;Egypt;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-59;'818;Egypt;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-59;'818;Egypt;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56265;49946;62696;59466;70586;47718;57945
-59;'818;Egypt;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285297;270058;210064;188890;194102;164606;206250
-59;'818;Egypt;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;822
-59;'818;Egypt;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6746;10809;8986;9435;8394;20580;19621
-59;'818;Egypt;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;117;563;205;751;10533;11728
-59;'818;Egypt;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216572;276062;250328;183877;215108;234045;201825
-59;'818;Egypt;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195804;188983;140860;159016;172260;198589;179931
-59;'818;Egypt;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1203;930;1073;1610;1419;1431;815
-59;'818;Egypt;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;464;75;89;830;2003;109
-59;'818;Egypt;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33989;41624;48180;43728;44477;52769;51861
-59;'818;Egypt;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688;2830;2594;3113;5302;7278;7023
-59;'818;Egypt;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9884;18066;8460;4949;5356;5419;5515
-59;'818;Egypt;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108913;88164;73978;74315;72203;71412;58111
-59;'818;Egypt;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116483;148362;128171;93222;120555;130842;101435
-59;'818;Egypt;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44983;49616;43121;47969;63066;83289;83838
-59;'818;Egypt;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55013;67080;64444;40368;43301;43584;42199
-59;'818;Egypt;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40003;47909;21092;33530;30859;34607;30850
-60;'222;El Salvador;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423504;435889;450525;367796;528095.1;648557;528319
-60;'222;El Salvador;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308943;320813;353649;307440;395960.14;452229;422157
-60;'222;El Salvador;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3730;4572;6165;8137;8694;9529;9001;11294;9970;10984;12747;13061;13061;13331;26839;28330;35636;35342;31720;37325;41065;41382;37113;36551;34163;25064;28180;21918;22605;34347;50100;68744;62630;62090;74874;75525;86353;108094;124643;127624;167184;157402;160203;161212;157527;125053;217464;201132;202937.2;245886.1;213873;237866;250602.5;246892.7;277237;251551;284000;296781;305057;246104;354422.1;447369;336115
-60;'222;El Salvador;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;34;26;80;80;0;31;94;357;419;407;407;407;407;407;1171;973;1264;1300;1364;900;2200;3500;6455;6455;4404;2597;2597;3072;1952;2897;2446;6031;6131;5863;5555;5488;5884;16970;14360;9639;11040;18229;17424;14826;15124;11478;21051;26823;30582;39949;39761;55774;51187;53126;52786;48729;54153;43022;34350;29910;44936.14;41078;30528
-60;'222;El Salvador;1861;Roundwood;5516;Production;m3;2629955;2669965;2710607;2717690;2759627;2802126;2848298;2892153;2936703;2981959;3043093;3089168;3136240;3171052;3212092;3259047;3298991;3323161;3398334;3496866;3594279;3624663;3581609;3553756;3544187;3552039;3564243;3632098;3702176;3743890;4683000;3826158;3868593;3910308;4724000;4330000;5185000;5129000;5170000;5200021;5200129;5200238;4829082;4854610;4880520;4886196;4892100;4898700;4904555;4907392;4898531;4891876;4885423;4879167;4873102;4853702;4834568;4815693;4797071;4778695;4762030;4745585;4729354
-60;'222;El Salvador;1861;Roundwood;5616;Import quantity;m3;500;1000;700;900;1700;3300;3300;400;300;300;300;200;200;200;400;200;300;300;300;300;300;300;300;300;300;100;200;100;;2992;41;31;3383;6000;1303;1103;2600;4495;800;800;7900;4000;20272;1751;579;2344;246;478;433;659;659;524;1223;1416;294;242;15;1148;1079;587;469;137;736
-60;'222;El Salvador;1861;Roundwood;5622;Import value;1000 USD;28;44;61;60;129;238;238;50;32;32;32;12;12;12;70;32;49;49;60;102;102;102;102;102;102;30;55;53;;462;13;3;265;405;501;172;1235;2113;291;125;436;387;1252;107;55;172;44;201;55;396;422;515;356;411;84;80;3;161;161;112;144;84;440
-60;'222;El Salvador;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10909;9888;8762;1819;20421;28007;23614;23772;23804;25476;13771;16889;14372;9157;16356;10894;6960;4794;4160;4497;1341
-60;'222;El Salvador;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;666;702;987;278;2593;3982;3277;3312;3327;4925;4907;4969;5355;3257;4912;3565;2480;1552;1618;751;1630
-60;'222;El Salvador;1862;Roundwood, coniferous;5516;Production;m3;81150;81327;81507;17688;17874;18062;18253;18447;18644;18844;19115;19319;19527;19681;48867;41088;42247;42359;46634;50030;59341;57507;46449;45361;45314;45358;45711;60540;70735;70919;72000;71283;71471;71656;95000;98000;19000;19000;20000;18021;18129;18238;18349;18462;18577;18602;18600;18700;18683;15000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-60;'222;El Salvador;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1010;730;412;268;93;565
-60;'222;El Salvador;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;118;71;70;44;54;335
-60;'222;El Salvador;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6387;3192;1467;644;181;0;959
-60;'222;El Salvador;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;290;262;73;22;0;383
-60;'222;El Salvador;1863;Roundwood, non-coniferous;5516;Production;m3;2548805;2588638;2629100;2700002;2741753;2784064;2830045;2873706;2918059;2963115;3023978;3069849;3116713;3151371;3163225;3217959;3256744;3280802;3351700;3446836;3534938;3567156;3535160;3508395;3498873;3506681;3518532;3571558;3631441;3672971;4611000;3754875;3797122;3838652;4629000;4232000;5166000;5110000;5150000;5182000;5182000;5182000;4810733;4836148;4861943;4867594;4873500;4880000;4885872;4892392;4885531;4878876;4872423;4866167;4860102;4840702;4821568;4802693;4784071;4765695;4749030;4732585;4716354
-60;'222;El Salvador;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;138;349;175;201;44;171
-60;'222;El Salvador;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;43;90;42;100;30;105
-60;'222;El Salvador;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9969;7702;5493;4150;3979;4497;382
-60;'222;El Salvador;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4399;3275;2218;1479;1596;751;1247
-60;'222;El Salvador;1864;Wood fuel;5516;Production;m3;2519955;2559965;2600607;2641690;2683627;2726126;2769298;2813153;2857703;2902959;2964093;3010168;3057240;3092052;3134092;3184047;3219991;3245161;3307334;3396866;3467279;3504663;3491609;3471756;3461187;3471039;3482943;3512098;3556176;3597890;4537000;3680158;3722593;3764308;4518000;4119000;4519000;4519000;4520000;4518021;4518129;4518238;4147082;4172610;4198520;4204196;4210100;4216700;4222555;4225392;4216531;4209876;4203423;4197167;4191102;4171702;4152568;4133693;4115071;4096695;4080030;4063585;4047354
-60;'222;El Salvador;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;0;0;95;100;500;800;800;45;45;0;1;1;1;1;1;1;1;0;0;0;0;;;;;;;
-60;'222;El Salvador;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;329;0;0;4;8;18;45;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-60;'222;El Salvador;1627;Wood fuel, coniferous;5516;Production;m3;11150;11327;11507;11688;11874;12062;12253;12447;12644;12844;13115;13319;13527;13681;13867;14088;14247;14359;14634;15030;15341;15507;15449;15361;15314;15358;15411;15540;15735;15919;17000;16283;16471;16656;18000;19000;19000;19000;20000;18021;18129;18238;18349;18462;18577;18602;18600;18700;18683;15000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-60;'222;El Salvador;1628;Wood fuel, non-coniferous;5516;Production;m3;2508805;2548638;2589100;2630002;2671753;2714064;2757045;2800706;2845059;2890115;2950978;2996849;3043713;3078371;3120225;3169959;3205744;3230802;3292700;3381836;3451938;3489156;3476160;3456395;3445873;3455681;3467532;3496558;3540441;3581971;4520000;3663875;3706122;3747652;4500000;4100000;4500000;4500000;4500000;4500000;4500000;4500000;4128733;4154148;4179943;4185594;4191500;4198000;4203872;4210392;4203531;4196876;4190423;4184167;4178102;4158702;4139568;4120693;4102071;4083695;4067030;4050585;4034354
-60;'222;El Salvador;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;0;0;95;100;500;800;800;45;45;0;1;1;1;1;1;1;1;0;0;0;0;;;;;;;
-60;'222;El Salvador;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;329;0;0;4;8;18;45;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-60;'222;El Salvador;1865;Industrial roundwood;5516;Production;m3;110000;110000;110000;76000;76000;76000;79000;79000;79000;79000;79000;79000;79000;79000;78000;75000;79000;78000;91000;100000;127000;120000;90000;82000;83000;81000;81300;120000;146000;146000;146000;146000;146000;146000;206000;211000;666000;610000;650000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000
-60;'222;El Salvador;1865;Industrial roundwood;5616;Import quantity;m3;500;1000;700;900;1700;3300;3300;400;300;300;300;200;200;200;400;200;300;300;300;300;300;300;300;300;300;100;200;100;;2992;41;31;3383;6000;1103;1103;2600;4400;700;300;7100;3200;20227;1706;579;2343;245;477;432;658;658;523;1223;1416;294;242;15;1148;1079;587;469;137;736
-60;'222;El Salvador;1865;Industrial roundwood;5622;Import value;1000 USD;28;44;61;60;129;238;238;50;32;32;32;12;12;12;70;32;49;49;60;102;102;102;102;102;102;30;55;53;;462;13;3;265;405;172;172;1235;2109;283;107;391;342;1252;107;55;172;44;201;55;396;422;515;356;411;84;80;3;161;161;112;144;84;440
-60;'222;El Salvador;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10909;9888;8762;1819;20421;28007;23614;23772;23804;25476;13771;16889;14372;9157;16356;10894;6960;4794;4160;4497;1341
-60;'222;El Salvador;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;666;702;987;278;2593;3982;3277;3312;3327;4925;4907;4969;5355;3257;4912;3565;2480;1552;1618;751;1630
-60;'222;El Salvador;1866;Industrial roundwood, coniferous;5516;Production;m3;70000;70000;70000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;35000;27000;28000;28000;32000;35000;44000;42000;31000;30000;30000;30000;30300;45000;55000;55000;55000;55000;55000;55000;77000;79000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2992;41;31;3383;6000;1103;1103;1000;700;200;200;6900;3000;20169;1211;84;2271;173;345;360;397;397;216;972;1165;197;222;15;1010;730;412;268;93;565
-60;'222;El Salvador;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462;13;3;265;405;172;172;476;376;35;40;305;254;1230;74;22;139;11;21;22;5;31;46;39;94;61;72;3;118;71;70;44;54;335
-60;'222;El Salvador;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;9094;5555;4645;42;5;1239;0;0;32;1051;4941;5988;860;1343;6387;3192;1467;644;181;0;959
-60;'222;El Salvador;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;482;294;263;2;0;66;0;0;15;180;430;481;75;121;513;290;262;73;22;0;383
-60;'222;El Salvador;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2992;41;31;3383;6000;1103;1103;1000;700;200;200;6900;3000;20169;1211;84;2271;173;345;360;397;397;216;972;1165;197;222;15;1010;730;412;268;93;565
-60;'222;El Salvador;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462;13;3;265;405;172;172;476;376;35;40;305;254;1230;74;22;139;11;21;22;5;31;46;39;94;61;72;3;118;71;70;44;54;335
-60;'222;El Salvador;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;9094;5555;4645;42;5;1239;0;0;32;1051;4941;5988;860;1343;6387;3192;1467;644;181;0;959
-60;'222;El Salvador;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;482;294;263;2;0;66;0;0;15;180;430;481;75;121;513;290;262;73;22;0;383
-60;'222;El Salvador;1867;Industrial roundwood, non-coniferous;5516;Production;m3;40000;40000;40000;70000;70000;70000;73000;73000;73000;73000;73000;73000;73000;73000;43000;48000;51000;50000;59000;65000;83000;78000;59000;52000;53000;51000;51000;75000;91000;91000;91000;91000;91000;91000;129000;132000;666000;610000;650000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000
-60;'222;El Salvador;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1600;3700;500;100;200;200;58;495;495;72;72;132;72;261;261;307;251;251;97;20;0;138;349;175;201;44;171
-60;'222;El Salvador;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;759;1733;248;67;86;88;22;33;33;33;33;180;33;391;391;469;317;317;23;8;0;43;90;42;100;30;105
-60;'222;El Salvador;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1815;4333;4117;1777;20416;26768;23614;23772;23772;24425;8830;10901;13512;7814;9969;7702;5493;4150;3979;4497;382
-60;'222;El Salvador;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;408;724;276;2593;3916;3277;3312;3312;4745;4477;4488;5280;3136;4399;3275;2218;1479;1596;751;1247
-60;'222;El Salvador;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;60;60;60;0;0;7;6;0;138;113;17;201;0;145
-60;'222;El Salvador;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;0;147;147;147;0;0;3;3;0;43;17;17;100;0;79
-60;'222;El Salvador;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509;1755;3017;1755;20366;26760;23606;23764;23764;24333;8733;10804;13512;7814;9969;7702;5493;4150;3979;4462;382
-60;'222;El Salvador;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;256;224;256;2547;3885;3246;3284;3284;4699;4453;4464;5280;3136;4399;3275;2218;1479;1596;729;1247
-60;'222;El Salvador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1600;3700;500;100;200;200;58;495;495;72;72;72;72;201;201;247;251;251;90;14;0;0;236;158;0;44;26
-60;'222;El Salvador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;759;1733;248;67;86;88;22;33;33;33;33;33;33;244;244;322;317;317;20;5;0;0;73;25;0;30;26
-60;'222;El Salvador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;2578;1100;22;50;8;8;8;8;92;97;97;0;0;0;0;0;0;0;35;0
-60;'222;El Salvador;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;152;500;20;46;31;31;28;28;46;24;24;0;0;0;0;0;0;0;22;0
-60;'222;El Salvador;1868;Sawlogs and veneer logs;5516;Production;m3;110000;110000;110000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;64000;54000;58000;57000;70000;70000;70000;70000;60000;57000;57000;56000;56000;80000;90000;90000;90000;90000;90000;90000;150000;155000;466000;610000;650000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000
-60;'222;El Salvador;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;70000;70000;70000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;29000;20000;21000;21000;25000;25000;25000;25000;21000;20000;20000;20000;20000;29000;33000;33000;33000;33000;33000;33000;55000;57000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;40000;40000;40000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;35000;34000;37000;36000;45000;45000;45000;45000;39000;37000;37000;36000;36000;51000;57000;57000;57000;57000;57000;57000;95000;98000;466000;610000;650000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000;682000
-60;'222;El Salvador;1871;Other industrial roundwood;5516;Production;m3;;;;22000;22000;22000;25000;25000;25000;25000;25000;25000;25000;25000;14000;21000;21000;21000;21000;30000;57000;50000;30000;25000;26000;25000;25300;40000;56000;56000;56000;56000;56000;56000;56000;56000;200000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1871;Other industrial roundwood;5616;Import quantity;m3;500;1000;700;900;1700;3300;3300;400;300;300;300;200;200;200;400;200;300;300;300;300;300;300;300;300;300;100;200;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1871;Other industrial roundwood;5622;Import value;1000 USD;28;44;61;60;129;238;238;50;32;32;32;12;12;12;70;32;49;49;60;102;102;102;102;102;102;30;55;53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;6000;7000;7000;7000;7000;10000;19000;17000;10000;10000;10000;10000;10300;16000;22000;22000;22000;22000;22000;22000;22000;22000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;22000;22000;22000;25000;25000;25000;25000;25000;25000;25000;25000;8000;14000;14000;14000;14000;20000;38000;33000;20000;15000;16000;15000;15000;24000;34000;34000;34000;34000;34000;34000;34000;34000;200000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;500;1000;700;900;1700;3300;3300;400;300;300;300;200;200;200;400;200;300;300;300;300;300;300;300;300;300;100;200;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;28;44;61;60;129;238;238;50;32;32;32;12;12;12;70;32;49;49;60;102;102;102;102;102;102;30;55;53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1630;Wood charcoal;5510;Production;t;8271;8469;8671;8878;9090;9307;9529;9756;9989;10228;10504;10736;10956;11115;11314;11580;11771;11900;12302;12949;13526;13920;13993;14005;14063;14233;14385;14628;14962;15253;15546;15830;16103;16361;16606;17105;17462;17858;18294;18741;19030;19324;19622;19925;20233;20467;20700;20900;21184;21429;21641;21855;22071;22290;22510;22684;22858;23034;23212;23390;23562;23736;23911
-60;'222;El Salvador;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;7;7;0;12;25;349;1295;634;656;13;13;16;31;37;79;288;360;410;418.56;365;420
-60;'222;El Salvador;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;10;10;0;12;14;82;281;159;169;21;20;21;35;36;53;142;175;212;227;208;269
-60;'222;El Salvador;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;284;1073;690;698;1028;892;1287;2467;2674;2828;1968;2039;1266;1770.33;1341;1761
-60;'222;El Salvador;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;116;378;271;277;411;381;541;1014;1306;1404;1063;1064;673;905;737;981
-60;'222;El Salvador;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000
-60;'222;El Salvador;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10300;7300;8600;5600;5600;897;3707;221;211;356;35;67;27;24;40;19.3;96;427;320;370;147;31;39;36.93;4;12
-60;'222;El Salvador;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;210;441;368;368;243;187;184;174;355;15;22;5;5;35;14.5;17.7;185;22;65;73;28;8;27.38;14;5
-60;'222;El Salvador;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;115;2;13;125;116;116;116;0;0;0.01;0;0
-60;'222;El Salvador;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;0;9;290;374;374;374;0;0;0.1;0;0
-60;'222;El Salvador;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;13500;9300;6300;7600;4600;4600;121;3016;211;200;176;17;31;17;17;17;0.3;2;406;50;26;23;23;0;1;3;1
-60;'222;El Salvador;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;662;467;145;371;298;298;153;160;182;170;287;3;17;3;3;3;1.5;1.7;174;1;36;21;21;1;3;13;1
-60;'222;El Salvador;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0.01;0;0
-60;'222;El Salvador;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0.1;0;0
-60;'222;El Salvador;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000;457000
-60;'222;El Salvador;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;340;600;1000;1000;1000;1000;1000;1000;776;691;10;11;180;18;36;10;7;23;19;94;21;270;344;124;8;39;35.93;1;11
-60;'222;El Salvador;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;35;61;75;75;65;70;70;70;90;27;2;4;68;12;5;2;2;32;13;16;11;21;29;52;7;7;24.38;1;4
-60;'222;El Salvador;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;0;13;125;116;116;116;0;0;0;0;0
-60;'222;El Salvador;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;9;290;374;374;374;0;0;0;0;0
-60;'222;El Salvador;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;99;21;274;345;345;137;168;146;573;478
-60;'222;El Salvador;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;20;11;24;26;26;41;43;36;92;72
-60;'222;El Salvador;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;5;0;4;4;4;4;12;4;0;0
-60;'222;El Salvador;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;0;3;3;3;3;4;3;2;1
-60;'222;El Salvador;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;94;21;270;341;341;133;156;142;573;478
-60;'222;El Salvador;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;16;11;21;23;23;38;39;33;90;71
-60;'222;El Salvador;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1872;Sawnwood;5516;Production;m3;12000;12000;12000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;30000;38000;31000;34000;33000;37000;37000;47000;45000;39000;46000;43000;44000;46600;54000;70000;70000;70000;70000;70000;70000;70000;70000;58000;58000;58000;58000;58000;68000;68000;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300
-60;'222;El Salvador;1872;Sawnwood;5616;Import quantity;m3;42100;43500;51000;64400;78000;84000;68800;58600;38400;35000;30100;45400;45400;45000;36500;34300;37000;37000;24500;4200;18900;3600;6800;5500;6500;9500;14400;9400;12700;18600;19000;62278;42900;42900;35500;72100;8200;9800;65000;73100;122600;72000;37161;42615;53834;52971;33982;27310;27194;36513;39044;36498;32330;41032;48137;56764;58915;75646;95861;76674;124275;123883;112881
-60;'222;El Salvador;1872;Sawnwood;5622;Import value;1000 USD;944;1210;1647;2079;2240;2300;2082;2066;1480;1224;1050;1263;1263;1263;2326;2780;5058;5058;2783;680;3600;800;1055;1162;1040;1577;3560;4200;5000;10700;10700;6749;5239;5239;5240;11766;4210;5499;11435;13188;23920;13978;9058;7691;7999;5699;12249;8336;7724;9083;10714;9465;8391;10733;12406;12404;14355;15522;18115;15542;27717;28309;25556
-60;'222;El Salvador;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;428;0;0;0;0;0;0;2000;2200;59;393;351;423;647;380;301;170;170;642;392;1358;256;158;445;96;108;0;207;492;2585
-60;'222;El Salvador;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;0;0;0;0;0;0;769;998;78;133;61;113;182;239;181;81;273;122;125;1069;182;98;244;58;35;4;148;178;1734
-60;'222;El Salvador;1632;Sawnwood, coniferous;5516;Production;m3;6000;6000;6000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;15000;19000;14500;16000;16000;13500;13500;33500;32500;28000;33000;31000;32000;34600;41500;56500;56500;56500;56500;56500;56500;56500;56500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1632;Sawnwood, coniferous;5616;Import quantity;m3;42100;43500;51000;64400;78000;84000;68800;58600;38400;35000;30100;45400;45400;45000;36500;34300;37000;37000;24500;4200;18900;3600;6800;5500;6500;9500;14400;9400;12700;18600;19000;62164;41800;41800;29300;66900;7000;8600;63000;71000;120600;69000;35212;40505;52500;52270;33082;26417;26511;36113;38637;35824;31927;40572;47638;56521;58534;75497;95537;76268;123192;122078;110605
-60;'222;El Salvador;1632;Sawnwood, coniferous;5622;Import value;1000 USD;944;1210;1647;2079;2240;2300;2082;2066;1480;1224;1050;1263;1263;1263;2326;2780;5058;5058;2783;680;3600;800;1055;1162;1040;1577;3560;4200;5000;10700;10700;6711;4973;4973;3291;9795;3458;4750;10470;12000;22452;12500;8343;7048;7412;5419;11874;8032;7458;8909;10199;8935;8049;10375;12050;12245;14074;15398;17878;15302;27015;27105;24669
-60;'222;El Salvador;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2000;2200;13;347;347;347;347;36;35;41;41;348;62;0;15;0;49;0;34;0;201;442;0
-60;'222;El Salvador;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;769;998;3;58;58;58;58;14;20;6;210;59;13;0;4;0;9;0;0;0;129;97;0
-60;'222;El Salvador;1633;Sawnwood, non-coniferous;5516;Production;m3;6000;6000;6000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;15000;19000;16500;18000;17000;23500;23500;13500;12500;11000;13000;12000;12000;12000;12500;13500;13500;13500;13500;13500;13500;13500;13500;58000;58000;58000;58000;58000;68000;68000;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300;16300
-60;'222;El Salvador;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;1100;1100;6200;5200;1200;1200;2000;2100;2000;3000;1949;2110;1334;701;900;893;683;400;407;674;403;460;499;243;381;149;324;406;1083;1805;2276
-60;'222;El Salvador;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;266;266;1949;1971;752;749;965;1188;1468;1478;715;643;587;280;375;304;266;174;515;530;342;358;356;159;281;124;237;240;702;1204;887
-60;'222;El Salvador;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;428;0;0;0;0;0;0;0;0;46;46;4;76;300;344;266;129;129;294;330;1358;241;158;396;96;74;0;6;50;2585
-60;'222;El Salvador;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;0;0;0;0;0;0;0;0;75;75;3;55;124;225;161;75;63;63;112;1069;178;98;235;58;35;4;19;81;1734
-60;'222;El Salvador;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;200;200;500;300;100;300;700;1300;500;500;2800;1974;1954;1840;457;105;112;102;77;22;1;19;28;42;37;41;24;1;2;3;4
-60;'222;El Salvador;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;81;81;274;131;56;229;484;743;352;352;1644;1538;1215;1127;439;190;127;176;77;40;56;53;47;57;11;30;35;8;7;30;9
-60;'222;El Salvador;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;16;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;42
-60;'222;El Salvador;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;53;53;53;0;0;0;0;0;0;1;0;0;0;0;0;0;58
-60;'222;El Salvador;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1873;Wood-based panels;5616;Import quantity;m3;1300;1500;2300;2800;3800;5100;4600;5800;5100;4800;5000;6300;6300;6000;6100;9100;8780;8780;4780;3480;9380;4780;6300;6300;6300;600;2800;3700;3700;11850;12000;13939;12638;12638;9700;15400;20500;24400;23100;18100;25600;26600;30607;38664;22065;27932;20172;17555;18994;27966;22696;27802;28013;27808;22864;26368;35805;39943;34124;33208;48048.57;51015;42911
-60;'222;El Salvador;1873;Wood-based panels;5622;Import value;1000 USD;251;343;572;708;934;1259;1049;1158;958;1023;1262;1370;1370;1373;1790;2810;3173;3173;1721;2498;3241;2441;3090;3090;3090;221;1359;1230;1130;2000;2000;4293;5637;5637;2323;3523;7809;9340;9435;7474;8319;8528;8897;7551;5050;7642;11986;12048;8214;9772;10735;11619;12865;12682;11792;12523;13770;16652;14238;14135;22678.04;30271;23662
-60;'222;El Salvador;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;114;452;452;398;229;162;292;259;444;84;84;456;185;98;139;118;35;1;143;62;136
-60;'222;El Salvador;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;45;112;112;125;90;73;117;102;336;124;168;339;137;111;145;111;37;1;144;70;123
-60;'222;El Salvador;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1640;Plywood and LVL;5616;Import quantity;m3;1300;1500;2300;2800;3800;5100;4600;5800;5100;4800;5000;6300;6300;6000;6100;7900;8600;8600;4600;3300;9200;4600;4600;4600;4600;300;2500;3400;3400;3850;4000;9114;8000;8000;1600;3600;9100;14000;12700;8400;9000;10000;8060;4389;255;5943;4263;5546;3958;12355;12799;11996;12072;12006;12952;16595;16656;21379;15280;16918;22666;21792;23108
-60;'222;El Salvador;1640;Plywood and LVL;5622;Import value;1000 USD;251;343;572;708;934;1259;1049;1158;958;1023;1262;1370;1370;1373;1790;2540;3132;3132;1680;2457;3200;2400;2512;2512;2512;162;1329;1200;1100;750;750;3096;4416;4416;491;1075;4744;6069;6132;4197;4691;4900;3551;1558;154;3207;3781;5615;3141;4687;5565;5422;5629;6413;6513;7317;6877;10311;7639;8288;11919;15081;14322
-60;'222;El Salvador;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;65;65;65;65;72;9;38;11;8;32;9;430;132;78;71;66;14;0;39;10;11
-60;'222;El Salvador;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;27;27;27;27;13;6;46;14;120;52;108;300;80;71;79;55;19;0;21;15;16
-60;'222;El Salvador;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93
-60;'222;El Salvador;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49
-60;'222;El Salvador;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;1200;180;180;180;180;180;180;1700;1700;1700;300;300;300;300;8000;8000;4510;4200;4200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;270;41;41;41;41;41;41;578;578;578;59;30;30;30;1250;1250;1091;1043;1043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7300;700;10800;8300;8300;8100;9000;9000;19296;25415;15710;17118;14168;10056;12891;12357;8137;13699;13028;13422;7202;6196;15537;15537;14955;13762;20762.3;23576;15718
-60;'222;El Salvador;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640;256;2769;2829;2829;2900;3320;3320;4471;4168;3746;3637;6810;4955;4249;3968;4013;4708;4813;4428;3341;2822;4458;4458;4851;4393;8089.75;11052;7128
-60;'222;El Salvador;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;23;36;36;64;4;7;96;80;56;12;9;6;1;2;10;10;3;0;70;26;30
-60;'222;El Salvador;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4;6;6;32;3;5;32;27;59;5;4;3;1;1;6;6;3;0;49;18;18
-60;'222;El Salvador;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;89;85;33;172;164;36;73;33;52;151;129;55;80;132;137;87;161
-60;'222;El Salvador;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;46;6;44;60;12;51;13;24;80;35;29;41;45;77;61;58
-60;'222;El Salvador;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;438;438;800;11100;600;2100;2100;1600;7600;7600;3251;8860;6100;4870;1652;1868;2112;3082;1596;2071;2840;2347;2658;3426;3483;2972;3809;2396;4483.27;5560;3924
-60;'222;El Salvador;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;178;178;192;2192;296;442;474;377;308;308;875;1825;1150;798;1358;1432;818;1073;1097;1477;2372;1828;1914;2304;2400;1854;1707;1409;2592.29;4077;2154
-60;'222;El Salvador;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;351;351;269;153;146;158;168;380;40;66;20;52;18;58;42;18;1;34;26;95
-60;'222;El Salvador;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;79;79;66;74;62;39;61;157;67;56;36;56;39;60;50;15;1;74;37;89
-60;'222;El Salvador;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;1248;500;212;550;497;310;239;227;150;563;385;411;478;648;526;442;302;310;297;270
-60;'222;El Salvador;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;579;300;155;499;455;201;185;185;142;564;360;361;347;469;418;326;252;326.85;310;273
-60;'222;El Salvador;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;7;7;7;60;60;13;60;60;8;2;17;0;0;0;3;0;0;0;0;0
-60;'222;El Salvador;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;3;3;3;37;37;7;37;37;14;2;25;0;0;0;10;0;0;0;0;2
-60;'222;El Salvador;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;5000;0;300;300;300;5800;5800;1496;6336;3500;1706;767;1022;1713;2481;1102;1558;1676;1408;1731;1762;1722;2397;3318;2067;4051.27;5258;3617
-60;'222;El Salvador;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;1512;0;48;80;87;116;116;371;1084;600;325;598;710;590;804;723;1087;1426;1115;1227;1135;1117;1401;1365;1145;2222.45;3766;1866
-60;'222;El Salvador;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;258;258;40;33;92;55;267;21;64;3;26;12;40;29;18;0;25;26;91
-60;'222;El Salvador;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;31;19;26;18;114;35;54;11;28;26;40;33;15;0;70;37;86
-60;'222;El Salvador;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;6100;600;1800;1800;1300;1800;1800;1252;1276;2100;2952;335;349;89;362;267;363;601;554;516;1186;1113;49;49;27;122;5;37
-60;'222;El Salvador;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;680;296;394;394;290;192;192;142;162;250;318;261;267;27;84;189;248;382;353;326;822;814;35;16;12;43;1;15
-60;'222;El Salvador;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;4;53;53;53;53;53;11;0;0;26;6;18;10;0;1;9;0;4
-60;'222;El Salvador;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;1;6;6;6;6;6;18;0;0;28;13;20;7;0;1;4;0;1
-60;'222;El Salvador;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;438;438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;178;178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;4000;4000;3000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-60;'222;El Salvador;1879;Total fibre furnish;5610;Import quantity;t;;;;100;100;100;300;300;400;1600;600;600;600;1800;3200;2800;6600;5100;6000;7200;4200;1900;16000;13600;22600;15600;15700;13900;16600;25500;25500;13895;19987;19577;31284;33439;34439;25400;30800;29600;53800;53800;82313;187903;75834;69253;93290;123271;104067;121191;111257;148343;155032;146070;154628;128401;132356;115971;142186;144520;132079.85;131735;101903
-60;'222;El Salvador;1879;Total fibre furnish;5622;Import value;1000 USD;;;;15;19;18;62;70;85;308;123;123;123;390;885;838;2068;1407;1915;2403;1317;684;5406;4737;4909;5365;5335;4175;4835;7885;7885;3891;5553;5437;14597;12321;11341;9744;9919;11062;22776;22776;27256;22539;22439;16736;29635;25508;31532;44970;33489;51846;50191;48968;54476;51509;64028;62266;71493;58661;63002.61;82950;61228
-60;'222;El Salvador;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1500;2000;1700;3800;4000;7300;7300;11075;12005;12241;6951;17847;25804;28323;34855;35351;46184;47978;44917;49118;54321;58018;46647;42462;41163;44978.74;47861;47534
-60;'222;El Salvador;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;194;201;208;194;321;495;495;850;1354;1337;1066;2120;3824;2718;5595;5670;8188;7905;6828;7006;7966;10585;7285;4932;5418;9196.26;10193;7630
-60;'222;El Salvador;1878;Pulp for paper;5610;Import quantity;t;;;;100;100;100;300;300;400;1600;600;600;600;600;800;800;2900;2900;1000;400;400;400;9600;9600;9600;9600;9600;9600;9600;9600;9600;3795;8387;7977;22484;23039;21939;11700;8200;7600;18200;18200;9802;5761;1921;1418;2162;2624;703;2745;2895;1727;1053;3206;8549;42739;64910;49502;61608;70909;62580.44;56003;42477
-60;'222;El Salvador;1878;Pulp for paper;5622;Import value;1000 USD;;;;15;19;18;62;70;85;308;123;123;123;123;375;340;1003;1003;463;284;284;284;3635;3635;3635;3635;3635;3635;3635;3635;3635;1328;2862;2746;10726;9107;7661;4864;4017;4650;10250;10250;5525;2321;1086;617;1506;2141;468;2370;2485;1234;839;2323;5544;24469;39976;38260;43429;34939;38261.54;45544;34818
-60;'222;El Salvador;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;725;725;725;617;619;619;619;619;619;626;43;46;1;546;546;0;0;0;0;0
-60;'222;El Salvador;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;237;237;237;196;197;197;197;197;197;216;42;42;1;388;388;0;0;0;0;0
-60;'222;El Salvador;1875;Wood pulp;5610;Import quantity;t;;;;100;100;100;300;300;400;1600;600;600;600;600;800;800;2900;2900;1000;400;400;400;9600;9600;9600;9600;9600;9600;9600;9600;9600;3456;1874;1464;22439;22939;21739;11500;10400;8700;19200;19200;9903;5809;1969;1383;2180;2575;654;2803;2953;1771;965;3206;8452;42639;64915;49512;61540;70782;62453.44;55981;42455
-60;'222;El Salvador;1875;Wood pulp;5622;Import value;1000 USD;;;;15;19;18;62;70;85;308;123;123;123;123;375;340;1003;1003;463;284;284;284;3635;3635;3635;3635;3635;3635;3635;3635;3635;1142;835;719;10680;9047;7584;4787;5325;5505;10838;10838;5567;2322;1087;587;1519;2083;410;2394;2509;1240;773;2323;5484;24423;39971;38263;43415;34906;38228.54;45496;34770
-60;'222;El Salvador;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;724;724;724;616;618;618;618;618;618;625;43;46;1;546;546;0;0;0;0;0
-60;'222;El Salvador;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;236;236;236;195;196;196;196;196;196;215;42;42;1;388;388;0;0;0;0;0
-60;'222;El Salvador;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;61;2;1;1;1;6
-60;'222;El Salvador;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;54;2;1;1;1;6
-60;'222;El Salvador;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-60;'222;El Salvador;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;100;100;100;300;300;400;1600;600;600;600;600;800;800;2900;2900;1000;400;400;400;9600;9600;9600;9600;9600;9600;9600;9600;9600;410;410;0;15039;15039;15039;0;200;200;100;100;1575;689;96;60;60;60;20;3;3;224;1;374;42;0;;;;;;;
-60;'222;El Salvador;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;15;19;18;62;70;85;308;123;123;123;123;375;340;1003;1003;463;284;284;284;3635;3635;3635;3635;3635;3635;3635;3635;3635;116;116;0;4190;4190;4190;0;21;21;8;8;937;229;49;1;1;1;15;3;3;169;3;298;31;0;;;;;;;
-60;'222;El Salvador;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;8;43;0;0;;;;;;;
-60;'222;El Salvador;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;19;42;0;0;;;;;;;
-60;'222;El Salvador;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517;337;337;1500;1600;1600;0;0;0;600;600;636;478;951;814;429;214;214;179;179;172;124;226;258;446;;;;;;;
-60;'222;El Salvador;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;141;141;1528;923;923;0;0;0;264;264;366;189;550;303;279;163;163;130;130;122;102;178;193;356;;;;;;;
-60;'222;El Salvador;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;984;984;5900;6300;5100;11500;8000;7400;17500;17500;7590;4540;820;490;1672;2282;401;2540;2690;1294;840;2606;8152;42175;64711;49433;61538;70781;62452.44;55957;42426
-60;'222;El Salvador;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;507;507;4962;3934;2471;4787;3996;4629;9978;9978;4220;1860;444;270;1226;1906;219;2205;2320;893;668;1847;5260;24037;39784;38179;43413;34905;38227.54;45480;34749
-60;'222;El Salvador;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;723;723;723;615;617;617;617;617;617;617;0;46;1;546;546;0;0;0;0;0
-60;'222;El Salvador;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;236;236;236;195;196;196;196;196;196;196;0;42;1;388;388;0;0;0;0;0
-60;'222;El Salvador;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200;9200;5065;772;323;39;254;153;80;42;101;101;85;85;106;211;162;162;0;0;0;0;0
-60;'222;El Salvador;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4882;4882;2821;274;173;19;164;96;55;30;53;53;65;65;66;143;134;134;0;0;0;0;0
-60;'222;El Salvador;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605;605;605;605;605;605;605;605;605;605;0;0;0;40;40;0;0;0;0;0
-60;'222;El Salvador;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;187;187;187;187;187;187;187;187;0;0;0;34;34;0;0;0;0;0
-60;'222;El Salvador;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719;719;5300;4400;3900;8000;6900;6900;6900;6900;2383;3631;360;333;1167;2014;206;2392;2483;1071;740;2506;8034;41957;64549;49271;61528;70777;62442.44;55957;42423
-60;'222;El Salvador;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;387;4506;2966;1885;2973;3427;4333;4333;4333;1307;1532;217;176;915;1767;121;2134;2226;792;582;1761;5176;23878;39650;38045;43392;34896;38202.54;45479;34735
-60;'222;El Salvador;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;1;506;506;0;0;0;0;0
-60;'222;El Salvador;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;1;354;354;0;0;0;0;0
-60;'222;El Salvador;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;10;0;3
-60;'222;El Salvador;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;9;25;1;14
-60;'222;El Salvador;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;135;104;104;104;104;104;104;104;104;104;0;0;8;0;;;;;;;
-60;'222;El Salvador;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;467;75;38;38;38;38;38;38;38;38;38;0;0;7;0;;;;;;;
-60;'222;El Salvador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;265;265;600;1900;1200;3500;1100;500;500;500;7;33;33;14;147;11;11;2;2;18;15;15;4;7;;;;;;;
-60;'222;El Salvador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;120;120;456;968;586;1814;569;296;296;296;17;16;16;37;109;5;5;3;3;10;21;21;11;16;;;;;;;
-60;'222;El Salvador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;118;118;118;10;12;12;12;12;12;12;0;0;0;;;;;;;
-60;'222;El Salvador;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;49;49;49;8;9;9;9;9;9;9;0;0;0;;;;;;;
-60;'222;El Salvador;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;143;143;0;0;0;0;2200;1100;1000;1000;102;102;102;19;19;19;19;81;81;81;0;0;0;18;18;18;0;0;0;23;23
-60;'222;El Salvador;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;71;71;0;0;0;0;1308;855;588;588;44;44;44;13;13;13;13;56;56;56;0;0;0;30;30;30;0;0;0;15;15
-60;'222;El Salvador;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;6656;6656;45;100;200;200;0;0;0;0;1;54;54;54;1;68;68;23;23;37;88;0;97;118;13;8;68;127;127;45;45
-60;'222;El Salvador;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;2098;2098;46;60;77;77;0;0;0;0;2;43;43;43;0;71;71;32;32;50;66;0;60;76;35;27;14;33;33;63;63
-60;'222;El Salvador;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-60;'222;El Salvador;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0.4;1;197;619;619;0;0;104;104;7;10;0;0;0
-60;'222;El Salvador;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0.2;0.1;7;54;198;198;0;0;36;36;11;6;1;2;0
-60;'222;El Salvador;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;4000;4000;3000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-60;'222;El Salvador;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;1200;2400;2000;3700;2200;5000;6800;3800;1500;6400;4000;13000;6000;6100;4300;7000;15900;15900;10100;11600;11600;8800;10400;12500;13700;22600;22000;35600;35600;72511;182142;73913;67835;91128;120647;103364;118446;108362;146616;153979;142864;146079;85662;67446;66469;80578;73611;69499.41;75732;59426
-60;'222;El Salvador;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;267;510;498;1065;404;1452;2119;1033;400;1771;1102;1274;1730;1700;540;1200;4250;4250;2563;2691;2691;3871;3214;3680;4880;5902;6412;12526;12526;21731;20218;21353;16119;28129;23367;31064;42600;31004;50612;49352;46645;48932;27040;24052;24006;28064;23722;24741.07;37406;26410
-60;'222;El Salvador;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1500;2000;1700;3800;4000;7300;7300;11007;11280;11516;6226;17230;25185;27704;34236;34732;45565;47352;44874;49072;54320;57472;46101;42462;41163;44978.74;47861;47534
-60;'222;El Salvador;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;194;201;208;194;321;495;495;818;1117;1100;829;1924;3627;2521;5398;5473;7991;7689;6786;6964;7965;10197;6897;4932;5418;9196.26;10193;7630
-60;'222;El Salvador;1876;Paper and paperboard;5510;Production;t;600;600;600;600;800;800;800;800;1000;1000;2500;4500;4500;5000;5000;5000;5000;4500;16000;16000;16000;16000;16000;16000;16000;16000;16900;17400;17400;17400;17400;17400;17400;17400;17400;56000;56000;56000;56000;68000;68000;98000;98000;98000;103000;103000;103000;108000;108000;114520;115208;115208;115208;115208;115208;115208;115208;115208;115208;115208;115208;115208;115208
-60;'222;El Salvador;1876;Paper and paperboard;5610;Import quantity;t;11400;14600;20100;26300;27300;29100;28800;39100;32800;36200;36600;42400;42400;42700;50000;50400;59000;59800;49600;54700;56100;53800;41400;41400;39700;38500;38500;37300;33700;46400;68700;104087;84648;77400;59800;41500;57200;88500;102599;107600;128500;128500;152528;179775;154294;145073;176311;155494;166737;189965;164171;170198;180478;177266;203478;197927;216049;201754;201583;176441;235403.16;229870;191639
-60;'222;El Salvador;1876;Paper and paperboard;5622;Import value;1000 USD;2507;2975;3885;5275;5372;5714;5570;7950;7415;8397;10280;10293;10293;10293;21768;21870;25288;25655;25241;31642;32805;37355;27460;27460;25022;17871;17871;12260;11640;13300;29502;53400;45784;45220;51904;47551;60965;80627;91561;93736;110425;110425;111799;121545;120541;93478;162729;154732;154969;181269;158199;164215;178498;173789;198201;174866;191623;201843;200760;157377;240582.07;305394;224859
-60;'222;El Salvador;1876;Paper and paperboard;5910;Export quantity;t;100;100;300;300;0;100;300;500;400;400;400;400;400;400;900;900;1500;1500;1500;1000;2000;3000;4500;4500;2600;1800;1800;3400;2300;3600;3900;6356;6365;6365;5823;5523;7100;13291;11100;5878;11700;22883;15273;16355;12673;7835;9863;11086;16249;22443;21802;30548;27550;28330;27405;25808;27056;19999;17699;16555;24716.12;16931;11383
-60;'222;El Salvador;1876;Paper and paperboard;5922;Export value;1000 USD;34;26;80;80;0;31;94;357;419;407;407;407;407;407;1171;973;1264;1300;1364;900;2200;3500;6455;6455;4404;2597;2597;3072;1952;2897;2446;6031;6045;5777;5402;5294;5683;16762;14166;9318;9776;16736;15784;12524;12626;9892;16012;18536;23858;30588;29878;41995;37701;39371;38802;35616;36489;30566;25802;22262;32924.78;29149;18372
-60;'222;El Salvador;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17089;16183;16183;16183;16183;16183;16183;16183;16183;16183;16183;16183;16183;16183
-60;'222;El Salvador;2042;Graphic papers;5610;Import quantity;t;6600;7700;7600;10000;11000;12800;12500;14300;14400;15100;10600;16400;16400;17000;14400;15400;24000;24800;24800;24800;24800;21800;15000;15000;14700;16200;16200;14800;13300;27000;48400;57287;41327;37100;20800;21600;27500;53500;54600;55100;58200;58200;64222;81341;61996;46398;57093;33268;53922;55128;33031;46627;42585;49246;52700;48499;51677;45737;43812;28057;37755.24;44115;27914
-60;'222;El Salvador;2042;Graphic papers;5622;Import value;1000 USD;1259;1487;1511;1999;2096;2438;2294;2758;2951;2939;2188;3652;3652;3652;7380;7870;11288;11655;12225;12255;12555;12155;9296;9296;9140;6217;6217;4180;4200;5625;18961;29078;22765;21527;23034;18681;28026;42027;38293;42358;47359;47359;47772;53919;51108;34194;53650;34466;53076;54483;33308;47352;43634;52859;55964;47759;51272;48819;44458;27408;39435.82;60109;37967
-60;'222;El Salvador;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;500;500;500;500;500;0;0;0;700;700;500;200;200;200;200;200;200;56;65;65;623;323;2000;2990;1300;1200;600;600;1966;3191;1227;400;854;1015;1051;1517;1017;815;828;1456;1700;1901;2288;2026;2567;1875;4928.17;2641;1783
-60;'222;El Salvador;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;764;566;364;400;464;0;0;0;500;500;600;172;172;172;172;172;172;93;107;107;645;537;2067;2216;1453;1469;884;884;2117;2053;1492;568;1128;1333;1445;2006;1284;1201;1174;2083;2825;2907;3639;3171;3624;2720;7259.68;5733;4446
-60;'222;El Salvador;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-60;'222;El Salvador;1671;Newsprint;5610;Import quantity;t;5200;6100;5900;7800;8800;10100;10400;11500;11400;13000;9100;13600;13600;14000;10300;10200;14200;15000;15000;15000;15000;12000;12800;12800;12700;14200;14200;14000;11500;12000;18100;17835;25078;22800;19100;19900;17000;35400;28600;25100;27900;27900;28029;36767;22208;23204;21779;4832;18577;19847;10705;20249;17619;14360;14425;14728;12942;9470;10188;4697;7821;8566;5081
-60;'222;El Salvador;1671;Newsprint;5622;Import value;1000 USD;836;991;940;1268;1360;1531;1595;1796;1851;2171;1615;2593;2593;2593;4000;4130;5933;6300;6870;6900;7200;6800;6970;6970;7040;4117;4117;3800;3400;2500;6232;7457;10833;9758;19988;15635;10453;17341;16990;15647;19536;19536;15779;18751;12985;14210;16832;2298;14418;13866;7130;15861;13856;11273;11008;10244;9692;6643;7378;2813;4826;8024;5594
-60;'222;El Salvador;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;100;100;;;;;;;;;;;;;;;;;9;9;500;200;100;90;200;200;0;0;217;1330;241;104;150;196;196;124;124;2;52;8;27;4;4;5;5;6;145;174;63
-60;'222;El Salvador;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;24;95;;;;;;;;;;;;;;;;;14;14;305;197;74;45;116;116;0;0;135;628;164;83;102;171;171;99;99;4;39;6;20;6;6;5;7;4;113;185;96
-60;'222;El Salvador;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3089;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183
-60;'222;El Salvador;1674;Printing and writing papers;5610;Import quantity;t;1400;1600;1700;2200;2200;2700;2100;2800;3000;2100;1500;2800;2800;3000;4100;5200;9800;9800;9800;9800;9800;9800;2200;2200;2000;2000;2000;800;1800;15000;30300;39452;16249;14300;1700;1700;10500;18100;26000;30000;30300;30300;36193;44574;39788;23194;35314;28436;35345;35281;22326;26378;24966;34886;38275;33771;38735;36267;33624;23360;29934.24;35549;22833
-60;'222;El Salvador;1674;Printing and writing papers;5622;Import value;1000 USD;423;496;571;731;736;907;699;962;1100;768;573;1059;1059;1059;3380;3740;5355;5355;5355;5355;5355;5355;2326;2326;2100;2100;2100;380;800;3125;12729;21621;11932;11769;3046;3046;17573;24686;21303;26711;27823;27823;31993;35168;38123;19984;36818;32168;38658;40617;26178;31491;29778;41586;44956;37515;41580;42176;37080;24595;34609.82;52085;32373
-60;'222;El Salvador;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;400;400;500;500;500;0;0;0;700;700;500;200;200;200;200;200;200;56;56;56;123;123;1900;2900;1100;1000;600;600;1749;1861;986;296;704;819;855;1393;893;813;776;1448;1673;1897;2284;2021;2562;1869;4783.17;2467;1720
-60;'222;El Salvador;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;740;471;364;400;464;0;0;0;500;500;600;172;172;172;172;172;172;93;93;93;340;340;1993;2171;1337;1353;884;884;1982;1425;1328;485;1026;1162;1274;1907;1185;1197;1135;2077;2805;2901;3633;3166;3617;2716;7146.68;5548;4350
-60;'222;El Salvador;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4124;4067;2935;2242;4697;4564;3975;3785;3909;3230;1964;1544;2044;1808;1406;1406;2217;766;418;936;110
-60;'222;El Salvador;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3157;3209;2644;1906;4395;4871;4431;4211;4324;3698;2239;1890;2582;2305;1797;1797;2415;874;591.6;1632;284
-60;'222;El Salvador;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;32;32;32;52;3;2;12;110;110;22;165;183;105;3
-60;'222;El Salvador;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;47;47;47;57;3;6;8;102;102;27;202;525.3;174;10
-60;'222;El Salvador;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3089;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183;2183
-60;'222;El Salvador;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18100;26000;30000;30300;30300;18361;22132;20356;10998;19238;12101;21721;21603;10711;17478;16625;21635;24181;21640;25097;25261;23570;16646;21919.24;21728;16950
-60;'222;El Salvador;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24686;21303;26711;27823;27823;15900;17461;19603;9287;20272;13204;22599;24029;12114;19560;18551;23719;25423;21678;23361;25784;23083;14765;21128.23;32818;21301
-60;'222;El Salvador;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;1100;1000;600;600;1258;572;386;62;172;207;307;368;362;306;287;948;1103;1339;1532;1565;2060;1424;4046.17;1892;1231
-60;'222;El Salvador;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2171;1337;1353;884;884;1132;438;482;112;232;324;441;438;429;414;351;1135;1684;1884;2125;2041;2634;1565;4781.63;3491;2313
-60;'222;El Salvador;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13708;18375;16497;9954;11379;11771;9649;9893;7706;5670;6377;11707;12050;10323;12232;9600;7837;5948;7597;12885;5773
-60;'222;El Salvador;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12936;14498;15876;8791;12151;14093;11628;12377;9740;8233;8988;15977;16951;13532;16422;14595;11582;8956;12890;17635;10788
-60;'222;El Salvador;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491;1283;594;228;526;606;542;993;499;475;437;497;568;546;642;346;480;280;554;470;486
-60;'222;El Salvador;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;983;842;369;790;834;829;1422;709;736;727;939;1115;1009;1406;1023;956;949;1839.76;1883;2027
-60;'222;El Salvador;1675;Other paper and paperboard;5510;Production;t;600;600;600;600;800;800;800;800;1000;1000;2500;4500;4500;5000;5000;5000;5000;4500;16000;16000;16000;16000;16000;16000;16000;16000;16900;17400;17400;17400;17400;17400;17400;17400;17400;39000;39000;39000;39000;51000;51000;81000;81000;81000;86000;86000;86000;91000;91000;97431;99025;99025;99025;99025;99025;99025;99025;99025;99025;99025;99025;99025;99025
-60;'222;El Salvador;1675;Other paper and paperboard;5610;Import quantity;t;4800;6900;12500;16300;16300;16300;16300;24800;18400;21100;26000;26000;26000;25700;35600;35000;35000;35000;24800;29900;31300;32000;26400;26400;25000;22300;22300;22500;20400;19400;20300;46800;43321;40300;39000;19900;29700;35000;47999;52500;70300;70300;88306;98434;92298;98675;119218;122226;112815;134837;131140;123571;137893;128020;150778;149428;164372;156017;157771;148384;197647.92;185755;163725
-60;'222;El Salvador;1675;Other paper and paperboard;5622;Import value;1000 USD;1248;1488;2374;3276;3276;3276;3276;5192;4464;5458;8092;6641;6641;6641;14388;14000;14000;14000;13016;19387;20250;25200;18164;18164;15882;11654;11654;8080;7440;7675;10541;24322;23019;23693;28870;28870;32939;38600;53268;51378;63066;63066;64027;67626;69433;59284;109079;120266;101893;126786;124891;116863;134864;120930;142237;127107;140351;153024;156302;129969;201146.25;245285;186892
-60;'222;El Salvador;1675;Other paper and paperboard;5910;Export quantity;t;100;100;300;300;0;100;300;500;400;400;400;400;400;400;400;400;1000;1000;1000;1000;2000;3000;3800;3800;2100;1600;1600;3200;2100;3400;3700;6300;6300;6300;5200;5200;5100;10301;9800;4678;11100;22283;13307;13164;11446;7435;9009;10071;15198;20926;20785;29733;26722;26874;25705;23907;24768;17973;15132;14680;19787.96;14290;9600
-60;'222;El Salvador;1675;Other paper and paperboard;5922;Export value;1000 USD;34;26;80;80;0;31;94;357;419;407;407;407;407;407;407;407;900;900;900;900;2200;3500;5955;5955;3804;2425;2425;2900;1780;2725;2274;5938;5938;5670;4757;4757;3616;14546;12713;7849;8892;15852;13667;10471;11134;9324;14884;17203;22413;28582;28594;40794;36527;37288;35977;32709;32850;27395;22178;19542;25665.1;23416;13926
-60;'222;El Salvador;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;3000;3000;3000;2800;6000;6000;6000;6000;6000;6000;6000;6000;6200;6300;6300;6300;6300;6300;6300;6300;6300;3000;3000;3000;3000;15000;15000;45000;45000;45000;50000;50000;50000;55000;55000;85519;85519;85519;85519;85519;85519;85519;85519;85519;85519;85519;85519;85519;85519
-60;'222;El Salvador;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;400;400;1000;700;700;700;700;600;1000;900;900;400;300;300;300;100;100;100;100;100;300;500;1100;1100;1100;1100;0;1600;1500;1200;1000;300;1200;3300;3300;1152;849;701;4512;11279;8815;6346;1119;1199;2413;2179;1691;2522;3598;6284;6890;15719;15551;19431.12;16962;25461
-60;'222;El Salvador;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;275;240;710;555;527;527;527;573;1160;1100;1100;520;570;570;640;112;112;112;112;112;180;340;850;850;850;850;0;1730;1855;1409;1400;333;1320;3768;3768;1189;935;668;5071;12807;11274;7872;1659;1763;2464;2506;1918;3274;4336;7097;7945;19346;17826;24649.64;29389;41683
-60;'222;El Salvador;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1277;1000;12183;10220;5179;5751;4034;2245;2016;7502;11142;11142;26015;22972;21858;19609;17871;18251;11530;9222;8402;7937.68;3422;173
-60;'222;El Salvador;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;990;726;7686;6163;4379;4873;3549;2170;2258;9385;14027;14027;32997;29078;29039;26797;23688;23748;17783;13209;10702;11042.49;5610;357
-60;'222;El Salvador;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;4624;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867
-60;'222;El Salvador;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;44699;47400;60500;60500;72191;78843;80597;86900;98310;103893;98469;126526;122749;121082;135575;126241;148155;145706;157971;148953;141975;132795;178056.8;168613;138187
-60;'222;El Salvador;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37200;48762;44819;52907;52907;45809;48885;56765;45563;82201;91710;79021;111264;109265;114076;131881;118661;138643;122416;132863;144603;136615;111795;176005.6;215268;144960
-60;'222;El Salvador;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10301;8800;2401;9400;9400;1737;5426;5645;2318;5218;6656;6396;8562;8421;3654;3733;5015;6094;6033;6514;6441;5907;6275;11845.27;10854;9422
-60;'222;El Salvador;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14546;8616;4868;5847;5847;3533;3278;6231;3750;8185;11017;9228;10933;10945;7697;7408;8239;9175;9012;9091;9593;8958;8831;14601.62;17745;13548
-60;'222;El Salvador;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;2000;2000;2000;1700;10000;10000;10000;10000;10000;10000;10000;10000;10700;11100;11100;11100;11100;11100;11100;11100;11100;19000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;12700;6600;10700;12000;13300;13300;13000;24000;21000;23400;23400;13700;18600;20000;20000;15500;15500;14500;10900;10900;10900;10600;9000;9900;36400;32921;40300;37400;18400;28500;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;2111;1248;2410;2348;2524;2524;2524;9540;7887;9014;9014;6096;9137;10000;11600;8985;8985;7490;4312;4312;2920;2900;2625;5491;19272;17969;23693;27140;27015;31530;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;3700;6300;6300;6300;5200;5200;5100;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725;2274;5938;5938;5670;4757;4757;3616;;;;;;;;;;;;;;;;;;;;;;;;;;
-60;'222;El Salvador;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10621;13964;14808;18900;18900;32240;30100;39888;51599;41433;44754;40990;74754;70588;66049;67937;76326;91648;94134;106076;93557;91580;84566;120250.25;111643;97725
-60;'222;El Salvador;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11629;15243;14011;16539;16539;15907;18663;21611;21463;26416;30271;22724;47564;45048;42869;48530;51983;59442;57166;69210;71820;66314;53501;100732.12;115873;77371
-60;'222;El Salvador;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;94;26;100;100;624;28;88;28;223;59;187;1562;1592;533;496;697;776;962;2337;1842;1012;905;2278;3195;1808
-60;'222;El Salvador;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;106;60;72;72;234;17;62;17;156;47;109;1021;957;347;364;495;671;951;1858;1675;928;783;2288.52;3605;1767
-60;'222;El Salvador;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9610;12634;13397;17100;17100;20210;32028;23391;21176;34204;39139;39461;33775;35693;41510;54029;36615;38654;35988;36272;39381;37144;31276;39891.49;41624;26303
-60;'222;El Salvador;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15897;20838;19153;22609;22609;17105;19859;22121;13893;37638;42732;42701;47043;48493;57301;69987;52392;60978;49832;47745;54665;55570;41724;55841.38;76082;48220
-60;'222;El Salvador;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;1591;434;1700;1700;353;3787;848;494;1174;1812;1204;1273;1082;1704;1887;1869;1690;1708;1286;1347;965;1194;1858.12;2081;3471
-60;'222;El Salvador;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4267;2527;1428;1715;1715;968;2287;2784;2213;4822;6877;5181;5387;5451;6142;5884;5205;5042;4886;4120;4092;3380;3656;3707;5756;5098
-60;'222;El Salvador;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12982;17067;18098;23100;23100;19552;16213;14674;14011;22364;19672;15781;16138;16161;13391;13277;12289;15650;14067;13800;13868;11045;14394;15311.97;13320;12102
-60;'222;El Salvador;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9280;12164;11180;13198;13198;12678;10052;11501;10031;17838;18363;12097;15377;15400;13762;12925;13456;16505;14266;14623;16509;13079;14739;17281.59;20870;17527
-60;'222;El Salvador;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8218;7021;1915;7500;7500;740;1579;4686;1703;3706;4655;4826;5711;5711;1391;1344;2445;3618;3360;2890;3248;3884;4172;7632.15;5573;4121
-60;'222;El Salvador;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10018;5934;3353;4027;4027;2323;954;3377;1496;3186;4068;3830;4508;4508;1188;1155;2532;3446;3169;3112;3822;4616;4386;8496.1;8373;6660
-60;'222;El Salvador;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;4624;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867;4867
-60;'222;El Salvador;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;1034;1097;1400;1400;189;502;2644;114;309;328;2237;1859;307;132;332;1011;2203;1517;1823;2147;2206;2559;2603.09;2026;2057
-60;'222;El Salvador;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;517;475;561;561;119;311;1532;176;309;344;1499;1280;324;144;439;830;1718;1152;1285;1609;1652;1831;2150.52;2443;1842
-60;'222;El Salvador;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;94;26;100;100;20;32;23;93;115;130;179;16;36;26;6;4;10;3;1;4;46;4;77;5;22
-60;'222;El Salvador;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;49;27;33;33;8;20;8;24;21;25;108;17;29;20;5;7;16;6;1;4;34;6;110;11;23
-60;'222;El Salvador;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;7288;8639;8639;8639;8639;8639;8639;8639;8639;8639;8639;8639;8639;8639
-60;'222;El Salvador;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;4800;6900;12500;16300;16300;16300;16300;11700;11400;9400;13300;12000;12000;12000;11000;13000;10700;10700;10700;11000;11000;11700;10800;10800;10400;11300;11300;11300;9300;9300;9300;9300;9300;0;0;0;0;0;3000;3900;6500;6500;14963;18742;11000;7263;9629;9518;8000;7192;7192;76;139;88;101;124;117;174;77;38;160;180;77
-60;'222;El Salvador;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1248;1488;2374;3276;3276;3276;3276;2806;2976;2338;5189;3590;3590;3590;4275;4953;3886;3886;6400;9680;9680;12960;9067;9067;8280;7230;7230;4980;4200;4200;4200;4200;4200;0;0;0;0;0;4173;5239;6391;6391;17029;17806;12000;8650;14071;17282;15000;13863;13863;323;477;351;320;355;391;476;341;348;491;628;249
-60;'222;El Salvador;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;100;100;300;300;0;100;300;500;400;400;400;400;400;400;400;400;1000;1000;1000;1000;2000;3000;3800;3800;2100;1600;1600;3200;2100;0;0;0;0;0;0;0;0;0;1000;1000;700;700;1350;2559;50;1083;1546;1399;1300;1222;1222;64;17;1;2;3;3;2;3;3;5;14;5
-60;'222;El Salvador;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;34;26;80;80;0;31;94;357;419;407;407;407;407;407;407;407;900;900;900;900;2200;3500;5955;5955;3804;2425;2425;2900;1780;0;0;0;0;0;0;0;0;0;4097;1991;2319;2319;3971;2814;30;2025;4529;3928;3800;3622;3622;100;41;10;5;9;11;19;11;9;21;61;21
-60;'222;El Salvador;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35923;38234;40183;25385;48105;51588;53489
-60;'222;El Salvador;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15188;12099;16411;8663;16109;21882;21184
-60;'222;El Salvador;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2622;2069;2272;2167;3307;3222;2294
-60;'222;El Salvador;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;18;18;18;18;18
-60;'222;El Salvador;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2505;2009;2124;2064;3202;3105;2142
-60;'222;El Salvador;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;18;18;18;18;18
-60;'222;El Salvador;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;60;148;103;105;117;152
-60;'222;El Salvador;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-60;'222;El Salvador;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3060;4493;5803;3336;4774;5027;5436
-60;'222;El Salvador;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;759;602;615;244;158;593;2077
-60;'222;El Salvador;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662;632;672;465;962;950;692
-60;'222;El Salvador;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1854;2553;2565;1311;2919;6268;3324
-60;'222;El Salvador;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2542;3209;4611;200;311;7085;7848
-60;'222;El Salvador;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;394;200;200;200;14;139
-60;'222;El Salvador;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-60;'222;El Salvador;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-60;'222;El Salvador;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-60;'222;El Salvador;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9
-60;'222;El Salvador;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22965;23981;22667;15573;32401;28124;31176
-60;'222;El Salvador;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11359;7843;12189;6239;11738;14015;14777
-60;'222;El Salvador;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;73;33;3;275;53;204
-60;'222;El Salvador;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;26;26;45;6;6
-60;'222;El Salvador;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3955;3777;4125;3641;6075;7127;5839
-60;'222;El Salvador;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;663;798;625;1031;968;843
-60;'222;El Salvador;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103581;100874;105285;96307;125568;149600;138715
-60;'222;El Salvador;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239602;265692;302888;268867;334915;389269;370445
-60;'222;El Salvador;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;463;648;113;334;2948;1238
-60;'222;El Salvador;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;14;14;7;31;22;36
-60;'222;El Salvador;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13411;11887;12450;9543;13228;14575;14945
-60;'222;El Salvador;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4816;4807;5884;3464;4963;5059;4511
-60;'222;El Salvador;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29412;31621;33547;40663;45937;46641;52970
-60;'222;El Salvador;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130715;152492;173584;164301;186093;210892;221624
-60;'222;El Salvador;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15934;16611;17682;14478;20238;30188;26013
-60;'222;El Salvador;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82942;88278;96904;79721;111828;135699;112526
-60;'222;El Salvador;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44345;40292;40958;31510;45831;55248;43549
-60;'222;El Salvador;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21112;20101;26502;21374;32000;37597;31748
-61;'226;Equatorial Guinea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27904;43178;31487;29737;26204;33438;33224
-61;'226;Equatorial Guinea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304201;360529;213743;86892;101763;139748;62067
-61;'226;Equatorial Guinea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;72;72;48;48;48;0;0;0;0;0;0;486;486;486;486;2198;3046;5975;7236;6223;7045;8804;5476;4402;2180;3359;7354;10000;4657;4200;6631
-61;'226;Equatorial Guinea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;5950;7260;7750;8750;8200;10000;8580;9530;8730;8830;8830;240;566;1025;1540;2060;1785;206;788;2248;5817;10267;8368;8520;7257;18616;18616;13168;18499;27705;27408;31419;19729;24041;35876;61735;104875;54878;89885;97018;98588;84882;127031;110754;116964;135344;182055;112243;16401;102370;145537;152340;173440;175771;195585;278559;304164;360494;213699;86879;101742;139573;61528
-61;'226;Equatorial Guinea;1861;Roundwood;5516;Production;m3;611000;687000;741000;761000;756000;798000;845000;850000;885000;910000;415000;415000;422000;428000;434000;424000;405000;409000;431000;445000;489000;534000;557000;548000;607000;607000;675000;627000;640000;634000;589000;613000;638000;714000;811000;918000;1204000;869000;1223000;1136000;1082000;1021000;866000;912000;1081000;1050000;972000;972000;972000;756849;784222;839922;867000;987000;1217000;1437000;1647000;1747000;1747000;1747000;1747000;1747000;1747000
-61;'226;Equatorial Guinea;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;271;0;0;0;0;1;1;0;1;5;0;4;172
-61;'226;Equatorial Guinea;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;3;0;0;0;5;2;0;3;1;0;7;29
-61;'226;Equatorial Guinea;1861;Roundwood;5916;Export quantity;m3;273000;345000;371000;409000;400000;457000;413000;437000;400000;380000;380000;4900;17500;17500;17500;17500;13000;900;5300;16000;54000;95300;71800;72800;76100;121300;121300;119900;124400;109786;114548;133436;156400;216500;267300;406400;510000;253000;423800;504000;514800;432000;597000;390000;388000;452000;551000;272000;27000;226811;329700;355000;370000;490000;466102;684866;1100000;1240000;662860;265868;250244;348534;113104
-61;'226;Equatorial Guinea;1861;Roundwood;5922;Export value;1000 USD;5460;6900;7450;8500;8000;9700;8300;9400;8600;8700;8700;140;550;1000;1500;2000;1700;120;700;2200;5800;9900;7300;7100;6619;17208;17208;10763;15199;24005;23826;26328;14795;21803;32616;58475;101615;46154;81324;89966;89531;74106;114564;88821;93396;112049;154878;86132;8639;87529;129474;133768;158182;161839;184574;264719;292776;345393;190706;68493;83241;105937;31746
-61;'226;Equatorial Guinea;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;5;0;4;172
-61;'226;Equatorial Guinea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;3;1;0;7;29
-61;'226;Equatorial Guinea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1863;Roundwood, non-coniferous;5516;Production;m3;611000;687000;741000;761000;756000;798000;845000;850000;885000;910000;415000;415000;422000;428000;434000;424000;405000;409000;431000;445000;489000;534000;557000;548000;607000;607000;675000;627000;640000;634000;589000;613000;638000;714000;811000;918000;1204000;869000;1223000;1136000;1082000;1021000;866000;912000;1081000;1050000;972000;972000;972000;756849;784222;839922;867000;987000;1217000;1437000;1647000;1747000;1747000;1747000;1747000;1747000;1747000
-61;'226;Equatorial Guinea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100000;1240000;662860;265868;250244;348534;113104
-61;'226;Equatorial Guinea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292776;345393;190706;68493;83241;105937;31746
-61;'226;Equatorial Guinea;1864;Wood fuel;5516;Production;m3;305000;310000;320000;325000;330000;335000;345000;350000;355000;360000;365000;365000;372000;378000;384000;392000;399000;405000;413000;421000;429000;438000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000
-61;'226;Equatorial Guinea;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1628;Wood fuel, non-coniferous;5516;Production;m3;305000;310000;320000;325000;330000;335000;345000;350000;355000;360000;365000;365000;372000;378000;384000;392000;399000;405000;413000;421000;429000;438000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000;447000
-61;'226;Equatorial Guinea;1865;Industrial roundwood;5516;Production;m3;306000;377000;421000;436000;426000;463000;500000;500000;530000;550000;50000;50000;50000;50000;50000;32000;6000;4000;18000;24000;60000;96000;110000;101000;160000;160000;228000;180000;193000;187000;142000;166000;191000;267000;364000;471000;757000;422000;776000;689000;635000;574000;419000;465000;634000;603000;525000;525000;525000;309849;337222;392922;420000;540000;770000;990000;1200000;1300000;1300000;1300000;1300000;1300000;1300000
-61;'226;Equatorial Guinea;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;271;0;0;0;0;1;1;0;1;5;0;4;172
-61;'226;Equatorial Guinea;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;3;0;0;0;5;2;0;3;1;0;7;29
-61;'226;Equatorial Guinea;1865;Industrial roundwood;5916;Export quantity;m3;273000;345000;371000;409000;400000;457000;413000;437000;400000;380000;380000;4900;17500;17500;17500;17500;13000;900;5300;16000;54000;95300;71800;72800;76100;121300;121300;119900;124400;109786;114548;133436;156400;216500;267300;406400;510000;253000;423800;504000;514800;432000;597000;390000;388000;452000;551000;272000;27000;226811;329700;355000;370000;490000;466102;684866;1100000;1240000;662860;265868;250244;348534;113104
-61;'226;Equatorial Guinea;1865;Industrial roundwood;5922;Export value;1000 USD;5460;6900;7450;8500;8000;9700;8300;9400;8600;8700;8700;140;550;1000;1500;2000;1700;120;700;2200;5800;9900;7300;7100;6619;17208;17208;10763;15199;24005;23826;26328;14795;21803;32616;58475;101615;46154;81324;89966;89531;74106;114564;88821;93396;112049;154878;86132;8639;87529;129474;133768;158182;161839;184574;264719;292776;345393;190706;68493;83241;105937;31746
-61;'226;Equatorial Guinea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;271;0;0;0;0;0;1;0;1;5;0;4;172
-61;'226;Equatorial Guinea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;3;0;0;0;0;2;0;3;1;0;7;29
-61;'226;Equatorial Guinea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;271;0;0;0;0;0;1;0;1;5;0;4;172
-61;'226;Equatorial Guinea;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;3;0;0;0;0;2;0;3;1;0;7;29
-61;'226;Equatorial Guinea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;306000;377000;421000;436000;426000;463000;500000;500000;530000;550000;50000;50000;50000;50000;50000;32000;6000;4000;18000;24000;60000;96000;110000;101000;160000;160000;228000;180000;193000;187000;142000;166000;191000;267000;364000;471000;757000;422000;776000;689000;635000;574000;419000;465000;634000;603000;525000;525000;525000;309849;337222;392922;420000;540000;770000;990000;1200000;1300000;1300000;1300000;1300000;1300000;1300000
-61;'226;Equatorial Guinea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109786;114548;133436;156400;216500;267300;406400;510000;253000;423800;504000;514800;432000;597000;390000;388000;452000;551000;272000;27000;226811;329700;355000;370000;490000;466000;684866;1100000;1240000;662860;265868;250244;348534;113104
-61;'226;Equatorial Guinea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24005;23826;26328;14795;21803;32616;58475;101615;46154;81324;89966;89531;74106;114564;88821;93396;112049;154878;86132;8639;87529;129474;133768;158182;161839;184536;264719;292776;345393;190706;68493;83241;105937;31746
-61;'226;Equatorial Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109786;114548;133436;156400;216500;267300;406400;510000;253000;423800;504000;514800;432000;597000;390000;388000;452000;551000;272000;27000;226811;329700;355000;370000;490000;466000;684866;1100000;1240000;662860;265868;250244;348534;113104
-61;'226;Equatorial Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24005;23826;26328;14795;21803;32616;58475;101615;46154;81324;89966;89531;74106;114564;88821;93396;112049;154878;86132;8639;87529;129474;133768;158182;161839;184536;264719;292776;345393;190706;68493;83241;105937;31746
-61;'226;Equatorial Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1868;Sawlogs and veneer logs;5516;Production;m3;306000;377000;421000;436000;426000;463000;500000;500000;530000;550000;50000;50000;50000;50000;50000;32000;6000;4000;18000;24000;60000;96000;110000;101000;160000;160000;228000;180000;193000;187000;142000;166000;191000;267000;364000;471000;757000;422000;776000;689000;635000;574000;419000;465000;634000;603000;525000;525000;525000;309849;337222;392922;420000;540000;770000;990000;1200000;1300000;1300000;1300000;1300000;1300000;1300000
-61;'226;Equatorial Guinea;1868;Sawlogs and veneer logs;5916;Export quantity;m3;273000;345000;371000;409000;400000;457000;413000;437000;400000;380000;380000;4900;17500;17500;17500;17500;13000;900;5300;16000;54000;95300;71800;72800;76100;121300;121300;119900;124400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;5460;6900;7450;8500;8000;9700;8300;9400;8600;8700;8700;140;550;1000;1500;2000;1700;120;700;2200;5800;9900;7300;7100;6619;17208;17208;10763;15199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;306000;377000;421000;436000;426000;463000;500000;500000;530000;550000;50000;50000;50000;50000;50000;32000;6000;4000;18000;24000;60000;96000;110000;101000;160000;160000;228000;180000;193000;187000;142000;166000;191000;267000;364000;471000;757000;422000;776000;689000;635000;574000;419000;465000;634000;603000;525000;525000;525000;309849;337222;392922;420000;540000;770000;990000;1200000;1300000;1300000;1300000;1300000;1300000;1300000
-61;'226;Equatorial Guinea;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;273000;345000;371000;409000;400000;457000;413000;437000;400000;380000;380000;4900;17500;17500;17500;17500;13000;900;5300;16000;54000;95300;71800;72800;76100;121300;121300;119900;124400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;5460;6900;7450;8500;8000;9700;8300;9400;8600;8700;8700;140;550;1000;1500;2000;1700;120;700;2200;5800;9900;7300;7100;6619;17208;17208;10763;15199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1630;Wood charcoal;5510;Production;t;2661;2676;2690;2704;2718;2733;2747;2762;2776;2791;2761;2672;2481;2262;2364;2580;2563;2570;2717;2942;3192;3593;4034;4494;4900;5294;5472;5639;5889;6088;6391;6437;6636;6839;6981;6732;5902;6150;6410;6680;6897;7121;7351;7590;7836;8067;8305;8550;8802;9062;9297;9539;9788;10042;10304;10523;10523;10975;11208;11446;11677;11914;12155
-61;'226;Equatorial Guinea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;4;4;2;2;15;14;13;20;5;26;39;51;21;11;25
-61;'226;Equatorial Guinea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;3;3;3;3;17;18;10;10;10;53;84;105;23;16;11
-61;'226;Equatorial Guinea;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;32;32;32;32;32
-61;'226;Equatorial Guinea;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;10;10;10;10;10
-61;'226;Equatorial Guinea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;25;25;25;16;16;16;16;16;20;20;20;4;4;4;4;0
-61;'226;Equatorial Guinea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;45;45;45;6;6;6;6;6;10;10;10;4;4;4;4;0
-61;'226;Equatorial Guinea;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;0
-61;'226;Equatorial Guinea;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;0
-61;'226;Equatorial Guinea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;25;25;16;16;16;16;16;16;16;16;0;0;0;0;0
-61;'226;Equatorial Guinea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45;45;45;6;6;6;6;6;6;6;6;0;0;0;0;0
-61;'226;Equatorial Guinea;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1872;Sawnwood;5516;Production;m3;14000;18000;18000;23000;23000;23000;23000;23000;23000;23000;23000;18000;16000;16000;16000;16000;10600;1900;1300;5700;12600;18000;23000;24000;39000;30000;9500;9600;12000;11800;13000;8300;6500;4400;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;1432;784;1385;5576;5576;5576;10000;10000;10000;10000;10000;10100;15300;45300;45300;45300;70300;80300
-61;'226;Equatorial Guinea;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21;21;50;50;50;0;0;0;0;0;0;432;432;432;432;116;133;261;418;111;212;337;252;156;30;225;3962;170;2240;2414;209
-61;'226;Equatorial Guinea;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;17;17;26;26;26;0;0;0;0;0;0;99;99;99;99;82;72;342;361;179;172;246;130;61;8;43;533;159;238;99;53
-61;'226;Equatorial Guinea;1872;Sawnwood;5916;Export quantity;m3;13000;17000;13000;10000;8000;14000;12000;6000;6000;6000;6000;400;600;600;600;600;600;600;600;300;100;1900;6000;5000;3100;6500;6500;9100;10000;10000;5400;8000;4800;4300;3800;3800;3800;700;1400;2000;2000;2000;2000;5970;5970;5970;5970;597;1800;5217;5018;7383;2165;816;1876;3877;2966;7708;22143;15330;9062;40692;57438
-61;'226;Equatorial Guinea;1872;Sawnwood;5922;Export value;1000 USD;490;360;300;250;200;300;280;130;130;130;130;100;16;25;40;60;85;86;88;48;17;367;1068;860;292;627;627;1556;1800;1800;1956;3030;1610;785;976;976;976;288;577;762;762;762;762;1815;1815;1815;1815;784;1727;2473;3786;5159;1039;658;923;2060;1473;3927;10614;6713;5709;13901;13781
-61;'226;Equatorial Guinea;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;300;300;300;300;300;300
-61;'226;Equatorial Guinea;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;244;244;244;244;107;77;218;394;67;196;268;140;90;21;93;162;152;2236;2396;123
-61;'226;Equatorial Guinea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;42;42;42;42;69;25;152;293;67;135;130;40;25;5;24;23;46;45;89;46
-61;'226;Equatorial Guinea;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;146;113;0;91;0;0
-61;'226;Equatorial Guinea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;98;56;0;61;208;0
-61;'226;Equatorial Guinea;1633;Sawnwood, non-coniferous;5516;Production;m3;14000;18000;18000;23000;23000;23000;23000;23000;23000;23000;23000;18000;16000;16000;16000;16000;10600;1900;1300;5700;12600;18000;23000;24000;39000;30000;9500;9600;12000;11800;13000;8300;6500;4400;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;1432;784;1385;5576;5576;5576;10000;10000;10000;10000;10000;10000;15000;45000;45000;45000;70000;80000
-61;'226;Equatorial Guinea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21;21;50;50;50;0;0;0;0;0;0;188;188;188;188;9;56;43;24;44;16;69;112;66;9;132;3800;18;4;18;86
-61;'226;Equatorial Guinea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;17;17;26;26;26;0;0;0;0;0;0;57;57;57;57;13;47;190;68;112;37;116;90;36;3;19;510;113;193;10;7
-61;'226;Equatorial Guinea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;13000;17000;13000;10000;8000;14000;12000;6000;6000;6000;6000;400;600;600;600;600;600;600;600;300;100;1900;6000;5000;3100;6500;6500;9100;10000;10000;5400;8000;4800;4300;3800;3800;3800;700;1400;2000;2000;2000;2000;5970;5970;5970;5970;597;1800;5217;5018;7383;2165;816;1876;3877;2966;7562;22030;15330;8971;40692;57438
-61;'226;Equatorial Guinea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;490;360;300;250;200;300;280;130;130;130;130;100;16;25;40;60;85;86;88;48;17;367;1068;860;292;627;627;1556;1800;1800;1956;3030;1610;785;976;976;976;288;577;762;762;762;762;1815;1815;1815;1815;784;1727;2473;3786;5159;1039;658;923;2060;1473;3829;10558;6713;5648;13693;13781
-61;'226;Equatorial Guinea;1634;Veneer sheets;5516;Production;m3;;;700;1300;1300;1300;1300;1300;1000;1000;1000;1000;1000;1000;1000;1000;1000;200;100;400;500;1250;2000;6000;10000;10000;9300;5500;8000;10000;10000;6600;7500;8400;9300;9300;9300;15000;15000;15000;15000;15000;15000;22000;29331;25989;28000;18000;11000;30000;30000;30000;30000;30000;30000;30100;30100;30100;42000;43000;43000;43000;44000
-61;'226;Equatorial Guinea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;22;25;6;95;44;2;277;1855;1305;166;17;4;0;5;0;3
-61;'226;Equatorial Guinea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;65;87;32;191;121;557;298;1077;915;152;48;5;468;487;0;10
-61;'226;Equatorial Guinea;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;5600;3500;5200;5200;4400;7300;9500;5900;5561;7500;8400;9300;9300;9300;12700;11300;11300;15100;16200;14600;22000;23600;17300;20300;22600;6900;11616;11548;11442;9115;6744;4719;7490;6955;11086;20638;20755;22328;32416;26746
-61;'226;Equatorial Guinea;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;560;346;781;781;849;1500;1900;1626;2061;3324;1453;2284;2284;2284;8436;7984;6290;8295;10014;11705;20013;21648;21375;25257;25222;5924;12269;12208;13344;13999;12324;8037;9553;8158;10999;12216;11512;12629;19552;15923
-61;'226;Equatorial Guinea;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000
-61;'226;Equatorial Guinea;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;42;42;0;0;0;0;0;0;0;0;0;721;721;721;721;1796;2361;13275;12809;9502;11070;6989;3615;3155;2103;2065;2121;3206;2523;2577;3484
-61;'226;Equatorial Guinea;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;31;31;0;0;0;0;0;0;0;0;0;210;210;210;210;1701;2368;4760;5772;4713;4487;4293;2663;1790;766;737;977;2048;878;1410;1645
-61;'226;Equatorial Guinea;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;320;320;320;320;320;23;0;0;113;1276;2214;3035;2311;0;0;0;0;0;42
-61;'226;Equatorial Guinea;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;105;105;30;0;0;151;881;1982;2158;1671;0;0;0;0;0;4
-61;'226;Equatorial Guinea;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000
-61;'226;Equatorial Guinea;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;17;17;0;0;0;0;0;0;0;0;0;337;337;337;337;1424;2011;12968;12627;9212;10899;6641;3349;2984;1898;1959;1910;2582;2128;1775;2886
-61;'226;Equatorial Guinea;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;13;13;0;0;0;0;0;0;0;0;0;120;120;120;120;1436;2123;4510;5530;3854;4317;3599;2227;1583;632;671;852;1315;673;990;1162
-61;'226;Equatorial Guinea;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;320;320;320;320;320;23;0;0;113;1276;2214;3035;2311;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;105;105;30;0;0;151;881;1982;2158;1671;0;0;0;0;0;0
-61;'226;Equatorial Guinea;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;264;264;264;264;78;38;28;79;17;3;81;12;6;0;0;120;200;129;50;228
-61;'226;Equatorial Guinea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;43;43;43;81;37;50;80;118;13;101;15;21;0;0;14;10;39;76;60
-61;'226;Equatorial Guinea;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42
-61;'226;Equatorial Guinea;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-61;'226;Equatorial Guinea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;2;1;29;7;3;25;25;5;5;5;39;39;39;32
-61;'226;Equatorial Guinea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;2;2;4;22;7;4;62;6;4;4;4;18;16;16;18
-61;'226;Equatorial Guinea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;13;0;0;0;0;0;0;0;0;0;120;120;120;120;264;310;277;102;244;161;264;229;140;200;101;86;385;227;713;338
-61;'226;Equatorial Guinea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;9;0;0;0;0;0;0;0;0;0;47;47;47;47;153;206;198;158;719;150;589;359;180;130;62;107;705;150;328;405
-61;'226;Equatorial Guinea;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;92;149;164;22;22;115;47;25;23;23;60;60;21;44;17;435;24
-61;'226;Equatorial Guinea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;86;73;11;11;62;18;11;11;10;32;32;13;27;12;187;19
-61;'226;Equatorial Guinea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;144;253;78;122;96;236;164;90;138;36;63;131;206;50;298
-61;'226;Equatorial Guinea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;128;182;142;601;101;555;315;130;96;20;92;421;136;26;342
-61;'226;Equatorial Guinea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;13;0;0;0;0;0;0;0;0;0;28;28;28;28;28;2;2;2;7;18;3;42;27;2;5;2;210;4;228;16
-61;'226;Equatorial Guinea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;9;0;0;0;0;0;0;0;0;0;4;4;4;4;4;5;5;5;56;31;23;33;40;2;10;2;257;2;115;44
-61;'226;Equatorial Guinea;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;146;126;131;387;387;142;66;71;66;63;63;1353;62;91;79;611
-61;'226;Equatorial Guinea;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;145;138;137;165;201;148;51;70;208;11;11;247;8;11;32;114
-61;'226;Equatorial Guinea;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;71;71;61;61;61;61;61;61;61;61;61;61
-61;'226;Equatorial Guinea;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;132;132;132;132;132;5;5;5;5;5;5;5;5;5;5
-61;'226;Equatorial Guinea;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;0;0;0;;;;;;;
-61;'226;Equatorial Guinea;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;127;127;127;127;0;0;0;;;;;;;
-61;'226;Equatorial Guinea;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;0;0;0;;;;;;;
-61;'226;Equatorial Guinea;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;127;127;127;127;0;0;0;;;;;;;
-61;'226;Equatorial Guinea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61
-61;'226;Equatorial Guinea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-61;'226;Equatorial Guinea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;75;55;60;316;316;71;5;10;5;2;2;1292;1;30;18;550
-61;'226;Equatorial Guinea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;6;5;33;69;16;46;65;203;6;6;242;3;6;27;109
-61;'226;Equatorial Guinea;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;19;19;20;20;20;0;0;0;0;0;0;216;216;216;216;76;156;293;486;517;808;2763;863;826;573;1246;2630;2967;1684;1460;1972
-61;'226;Equatorial Guinea;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;24;24;22;22;22;0;0;0;0;0;0;176;176;176;176;147;333;656;722;997;1658;3892;1520;1403;1221;2457;5501;7207;3016;2632;4769
-61;'226;Equatorial Guinea;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;41;41;41;41;41;41;41;53;136;124;121;124;143;40
-61;'226;Equatorial Guinea;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;63;63;63;63;63;63;63;80;169;153;151;153;173;64
-61;'226;Equatorial Guinea;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;;;;;;;161;161;161;161;32;98;142;425;361;398;2012;410;447;179;564;955;1162;727;718;929
-61;'226;Equatorial Guinea;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;0;0;0;;;;;;;125;125;125;125;44;175;337;576;590;610;2046;529;472;273;761;1178;1397;965;570;1628
-61;'226;Equatorial Guinea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;15;15;3;0;3;22;2
-61;'226;Equatorial Guinea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;19;19;3;1;3;23;3
-61;'226;Equatorial Guinea;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;83;73;149;2;2;2;0;2;6;0
-61;'226;Equatorial Guinea;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;55;46;81;7;7;6;1;4;10;1
-61;'226;Equatorial Guinea;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;;;;;;;159;159;159;159;30;96;140;423;359;396;1929;337;298;177;562;953;1162;725;712;929
-61;'226;Equatorial Guinea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;0;0;0;;;;;;;124;124;124;124;43;174;336;575;589;609;1991;483;391;266;754;1172;1396;961;560;1627
-61;'226;Equatorial Guinea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;15;15;3;0;3;22;2
-61;'226;Equatorial Guinea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;19;19;3;1;3;23;3
-61;'226;Equatorial Guinea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;10;18;50;44;59;78;118;25;25;9;9;72;16;7;47;237
-61;'226;Equatorial Guinea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;41;156;78;158;133;215;54;54;30;30;174;63;13;220;486
-61;'226;Equatorial Guinea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;15;43;84;328;298;314;1807;303;263;158;551;878;1080;689;649;643
-61;'226;Equatorial Guinea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;22;125;165;439;424;467;1767;375;324;223;716;970;1186;851;243;885
-61;'226;Equatorial Guinea;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;0;0;19;2
-61;'226;Equatorial Guinea;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;1;1;1;21;3
-61;'226;Equatorial Guinea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;5;35;6;51;2;4;4;9;10;10;2;3;66;29;16;49
-61;'226;Equatorial Guinea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;7;8;15;58;7;9;9;54;13;13;8;28;147;97;97;256
-61;'226;Equatorial Guinea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;0;3;3;0
-61;'226;Equatorial Guinea;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;0;2;2;0
-61;'226;Equatorial Guinea;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;3;3;20;20;20;0;0;0;0;0;0;55;55;55;55;44;58;151;61;156;410;751;453;379;394;682;1675;1805;957;742;1043
-61;'226;Equatorial Guinea;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;3;3;22;22;22;0;0;0;0;0;0;51;51;51;51;103;158;319;146;407;1048;1846;991;931;948;1696;4323;5810;2051;2062;3141
-61;'226;Equatorial Guinea;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;38;38;38;38;38;38;121;121;121;121;121;38
-61;'226;Equatorial Guinea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;61;61;61;61;61;61;61;61;150;150;150;150;150;61
-61;'226;Equatorial Guinea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;9;31;68;12;117;361;466;399;346;234;240;537;640;444;322;566
-61;'226;Equatorial Guinea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;36;100;172;24;296;901;1202;864;805;544;562;1285;1558;1161;894;1616
-61;'226;Equatorial Guinea;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;0
-61;'226;Equatorial Guinea;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;89;89;89;0
-61;'226;Equatorial Guinea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;5;5;5;22;20;27;19;26;21;227;33;16;159;440;1121;1162;511;410;465
-61;'226;Equatorial Guinea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;25;26;35;32;49;91;406;99;59;374;1118;2966;4193;877;963;1198
-61;'226;Equatorial Guinea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-61;'226;Equatorial Guinea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-61;'226;Equatorial Guinea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;1;1;51;1;15
-61;'226;Equatorial Guinea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;1;1;50;1;9
-61;'226;Equatorial Guinea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4;4;3;10;6;61;6;3;123;404;1009;1051;380;392;442
-61;'226;Equatorial Guinea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;8;8;6;29;37;169;15;21;318;1060;2869;4054;733;927;1174
-61;'226;Equatorial Guinea;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-61;'226;Equatorial Guinea;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-61;'226;Equatorial Guinea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;11;5;12;5;5;8;158;18;4;5;14;7;7;26;8;2
-61;'226;Equatorial Guinea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;15;8;17;16;10;39;230;65;19;17;29;40;32;47;29;14
-61;'226;Equatorial Guinea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;2;3;4;4;26;17;104;103;54;9;6
-61;'226;Equatorial Guinea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;12;4;16;16;36;26;56;106;47;6;1
-61;'226;Equatorial Guinea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;13;7;56;30;13;28;58;21;17;1;2;17;3;2;10;12
-61;'226;Equatorial Guinea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;42;32;112;90;62;56;238;28;67;30;16;72;59;13;205;327
-61;'226;Equatorial Guinea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18
-61;'226;Equatorial Guinea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;50;50;50;50;50;50;50
-61;'226;Equatorial Guinea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11902;24423;11796;8330;11051;16973;16559
-61;'226;Equatorial Guinea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;18;19;3;7;173;520
-61;'226;Equatorial Guinea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;481;26;36;89;202;6
-61;'226;Equatorial Guinea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;484
-61;'226;Equatorial Guinea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;22;12;2;109;1
-61;'226;Equatorial Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;466;4;24;87;93;5
-61;'226;Equatorial Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;484
-61;'226;Equatorial Guinea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;119;92;191;61;9;96
-61;'226;Equatorial Guinea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;
-61;'226;Equatorial Guinea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;178;179;49;528;137;176
-61;'226;Equatorial Guinea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;1;2;0;3
-61;'226;Equatorial Guinea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1889;8210;1103;1542;701;1476;1699
-61;'226;Equatorial Guinea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;3;1
-61;'226;Equatorial Guinea;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-61;'226;Equatorial Guinea;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-61;'226;Equatorial Guinea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9518;14487;9028;6269;8704;14980;13579
-61;'226;Equatorial Guinea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;15;15;0;1;25;32
-61;'226;Equatorial Guinea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;43;196;25;8
-61;'226;Equatorial Guinea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;930;1350;200;772;144;995
-61;'226;Equatorial Guinea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;4;1;0
-61;'226;Equatorial Guinea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13822;15396;12337;11407;10496;12265;10034
-61;'226;Equatorial Guinea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;17;25;10;14;2;19
-61;'226;Equatorial Guinea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;25;70;14;23;61;61
-61;'226;Equatorial Guinea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;851;195;169;271;214;285
-61;'226;Equatorial Guinea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-61;'226;Equatorial Guinea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;2430;2232;3849;2529;1826;1922
-61;'226;Equatorial Guinea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;0;0;18
-61;'226;Equatorial Guinea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5586;4057;4786;2048;1212;1682;1129
-61;'226;Equatorial Guinea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;3;3;3;2;0
-61;'226;Equatorial Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6142;8033;5054;5327;6461;8482;6637
-61;'226;Equatorial Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;15;6;11;0;1
-178;'232;Eritrea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14216;15144;12510;7259;3480;14166;16932
-178;'232;Eritrea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;332;283;256;235;236;220
-178;'232;Eritrea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16610;11588;10392;6884;6884;6560;2834;2255;2909;2909;2096;1930;2495;1829;1633;2391;5244;7712;6780;2167;1603;2069;4083;2270;4522;1610;1146;2485
-178;'232;Eritrea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;87;334;334;403;403;422;393;318;514;532;369;369;283;250;243;243;243;209;206;196;197
-178;'232;Eritrea;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728855;1794280;1851861;1919391;1995281;2075863;2159403;2246531;2285742;1266190;1266190;1266190;1265020;1265020;1265020;1265020;896922;926641;965440;991950;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031
-178;'232;Eritrea;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429;4429;6444;1289;1363;1376;267;58;29;649;649;151;29;15;0;0;0;0;0;0
-178;'232;Eritrea;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;393;147;189;205;137;20;10;764;764;153;19;4;0;0;0;0;0;0
-178;'232;Eritrea;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;174;174;174;174;177;177;9;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;65;65;87;87;1;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728855;1794280;1851861;1919391;1995281;2075863;2159403;2246531;2285742;1266190;1266190;1266190;1265020;1265020;1265020;1265020;896922;926641;965440;991950;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031;1023031
-178;'232;Eritrea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;0
-178;'232;Eritrea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0
-178;'232;Eritrea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728855;1794280;1850230;1917608;1993911;2074017;2157479;2244341;2283552;1264000;1264000;1264000;1264000;1264000;1264000;1264000;895902;920987;946775;973285;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536
-178;'232;Eritrea;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;;;;;;;
-178;'232;Eritrea;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;;;;;;;
-178;'232;Eritrea;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728855;1794280;1850230;1917608;1993911;2074017;2157479;2244341;2283552;1264000;1264000;1264000;1264000;1264000;1264000;1264000;895902;920987;946775;973285;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536;1000536
-178;'232;Eritrea;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;;;;;;;
-178;'232;Eritrea;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;;;;;;;
-178;'232;Eritrea;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631;1783;1370;1846;1924;2190;2190;2190;2190;2190;1020;1020;1020;1020;1020;5654;18665;18665;22495;22495;22495;22495;22495;22495;22495;22495;22495;22495;22495
-178;'232;Eritrea;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429;4429;6444;1289;1363;1376;267;58;29;620;620;122;0;15;0;0;0;0;0;0
-178;'232;Eritrea;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;393;147;189;205;137;20;10;745;745;134;0;4;0;0;0;0;0;0
-178;'232;Eritrea;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;174;174;174;174;177;177;9;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;65;65;87;87;1;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429;4429;6444;1114;1114;1114;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;393;68;68;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429;4429;6444;1114;1114;1114;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;393;68;68;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631;1783;1370;1846;1924;2190;2190;2190;2190;2190;1020;1020;1020;1020;1020;5654;18665;18665;22495;22495;22495;22495;22495;22495;22495;22495;22495;22495;22495
-178;'232;Eritrea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;249;262;267;58;29;620;620;122;0;15;0;0;0;0;0;0
-178;'232;Eritrea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;121;137;137;20;10;745;745;134;0;4;0;0;0;0;0;0
-178;'232;Eritrea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;174;174;174;174;177;177;9;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;65;65;87;87;1;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;18;29;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;10;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;9;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;1;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;249;249;249;29;29;620;620;122;0;15;0;0;0;0;0;0
-178;'232;Eritrea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;121;121;121;10;10;745;745;134;0;4;0;0;0;0;0;0
-178;'232;Eritrea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;174;174;174;174;174;174;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;65;65;65;65;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631;1783;1370;1846;1924;2190;2190;2190;2190;2190;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020
-178;'232;Eritrea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631;1783;1370;1846;1924;2190;2190;2190;2190;2190;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020;1020
-178;'232;Eritrea;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4634;17645;17645;21475;21475;21475;21475;21475;21475;21475;21475;21475;21475;21475
-178;'232;Eritrea;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4634;17645;17645;21475;21475;21475;21475;21475;21475;21475;21475;21475;21475;21475
-178;'232;Eritrea;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108079;112805;116852;121749;126488;132119;138224;145609;149001;152473;156025;159660;163380;167091;170900;174800;128000;137000;145000;142000;142000;142000;142000;142000;142000;142000;142000;142000;142000;142000;142000
-178;'232;Eritrea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1000;1000;1000;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;0;1;0;0
-178;'232;Eritrea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;51;51;51;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;0;1;0;0
-178;'232;Eritrea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;39;19;19;19;19
-178;'232;Eritrea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;138;62;62;62;62
-178;'232;Eritrea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;39;19;19;19;19
-178;'232;Eritrea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;138;62;62;62;62
-178;'232;Eritrea;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46500;26300;18700;12700;12700;18300;1216;1216;217;217;444;366;1190;25;145;18;1528;183;3005;937;85;611;1755;104;0;582;46;45
-178;'232;Eritrea;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10046;5699;4057;2747;2747;3256;140;140;57;57;74;68;731;20;27;13;567;269;1104;429;46;222;694;54;34;324;20;8
-178;'232;Eritrea;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;425;425;425;425;295;295;0;0;0;0;0;0;0;0;0;0;0;0;0;5
-178;'232;Eritrea;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;110;110;110;110;107;107;0;0;0;0;0;0;0;0;0;0;0;0;0;1
-178;'232;Eritrea;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46500;26200;18400;12400;12400;18000;1216;1216;70;70;114;36;866;2;3;3;1508;183;1995;671;33;18;27;9;0;556;1;45
-178;'232;Eritrea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10046;5669;3980;2670;2670;3179;140;140;12;12;19;13;381;3;2;1;367;261;583;226;20;4;16;5;2;277;1;8
-178;'232;Eritrea;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;63;63;0;0;0;0;0;0;0;0;0;0;0;0;0;5
-178;'232;Eritrea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;37;37;0;0;0;0;0;0;0;0;0;0;0;0;0;1
-178;'232;Eritrea;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;300;300;0;0;147;147;330;330;324;23;142;15;20;0;1010;266;52;593;1728;95;0;26;45;0
-178;'232;Eritrea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;77;77;77;77;0;0;45;45;55;55;350;17;25;12;200;8;521;203;26;218;678;49;32;47;19;0
-178;'232;Eritrea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;232;232;232;232;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;24;24;1;1;16;16;82;82;1065;3414;2261;218;60;18;0;6;0;61;0;0
-178;'232;Eritrea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;47;19;19;119;119;17;4;63;1;801;2910;1659;170;62;18;0;6;0;0;0;0
-178;'232;Eritrea;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;7800;7500;4800;4800;2900;15451;4242;2560;2560;145;757;490;281;253;278;5068;3888;3745;801;834;173;95;146;64;340;262;201
-178;'232;Eritrea;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4478;4156;3984;2527;2527;908;1916;866;222;222;70;139;229;83;226;455;3051;2385;2440;430;418;145;71;98;137;415;183;234
-178;'232;Eritrea;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;237;84;84;84;84;84;84;84
-178;'232;Eritrea;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;68;27;27;27;27;27;27;27
-178;'232;Eritrea;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;7700;7400;4700;4700;1700;1700;1700;18;18;86;56;245;18;184;122;4989;3260;3117;173;196;113;35;86;15;270;191;130
-178;'232;Eritrea;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4478;4135;3972;2515;2515;681;650;650;6;6;58;42;189;34;211;410;3026;2094;2149;139;113;95;21;48;102;393;161;212
-178;'232;Eritrea;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;153;0;0;0;0;0;0;0
-178;'232;Eritrea;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;0;0;0;0;0;0;0
-178;'232;Eritrea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;1200;69;13;13;13;13;0;23;41;1;0;0;1;1;1;11;11;11;11;0;11;11;11
-178;'232;Eritrea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;12;12;12;227;16;6;6;6;6;0;12;21;2;0;0;1;1;1;15;15;15;15;0;15;15;15
-178;'232;Eritrea;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;84;84;84;84;84
-178;'232;Eritrea;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27
-178;'232;Eritrea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-178;'232;Eritrea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13682;2529;2529;2529;46;646;222;222;68;156;79;627;627;627;627;49;49;49;49;59;60;60
-178;'232;Eritrea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;210;210;210;6;63;28;28;13;45;25;290;290;290;290;35;35;35;35;7;7;7
-178;'232;Eritrea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45
-178;'232;Eritrea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-178;'232;Eritrea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13682;2529;2529;2529;46;177;177;177;23;111;34;582;582;582;582;4;4;4;4;14;15;15
-178;'232;Eritrea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;210;210;210;6;27;27;27;12;44;24;289;289;289;289;34;34;34;34;6;6;6
-178;'232;Eritrea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-178;'232;Eritrea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-178;'232;Eritrea;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121;1121;1121;18;25;25;25;26;20;18;18;18;250;89;89;89;89;89;89;195
-178;'232;Eritrea;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;124;124;19;15;15;15;9;7;6;6;6;334;250;250;250;250;250;250;1214
-178;'232;Eritrea;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;588;588;588;588;539;451;611;1147;1147;436;436;436;166;337;337;337;328;328;328;328
-178;'232;Eritrea;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;192;192;192;192;191;178;203;399;399;175;175;175;102;136;136;136;102;110;110;110
-178;'232;Eritrea;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;10;4;2;2;2;89;89;89;89;89;89;89;195
-178;'232;Eritrea;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;4;2;1;1;1;250;250;250;250;250;250;250;1214
-178;'232;Eritrea;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;436;436;436;436;436;436;436;436;436;436;436;166;166;166;166;157;157;157;157
-178;'232;Eritrea;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;175;175;175;175;175;175;175;175;175;102;102;102;102;68;76;76;76
-178;'232;Eritrea;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;108;108;108;108;108;108;108;214
-178;'232;Eritrea;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;273;273;273;273;273;273;273;1237
-178;'232;Eritrea;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;436;436;436;436;436;436;436;436;436;436;436;166;166;166;166;157;157;157;157
-178;'232;Eritrea;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;175;175;175;175;175;175;175;175;175;102;102;102;102;68;76;76;76
-178;'232;Eritrea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;193
-178;'232;Eritrea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;249;249;249;249;249;249;1213
-178;'232;Eritrea;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;436;436;436;436;436;436;436;436;436;436;436;166;166;166;166;157;157;157;157
-178;'232;Eritrea;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;175;175;175;175;175;175;175;175;175;102;102;102;102;68;76;76;76
-178;'232;Eritrea;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;193
-178;'232;Eritrea;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;249;249;249;249;249;249;1213
-178;'232;Eritrea;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;436;436;436;436;436;436;436;436;436;436;436;166;166;166;166;157;157;157;157
-178;'232;Eritrea;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;175;175;175;175;175;175;175;175;175;102;102;102;102;68;76;76;76
-178;'232;Eritrea;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21
-178;'232;Eritrea;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24
-178;'232;Eritrea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;10;4;2;2;2;2;2;2;2;2;2;2;2
-178;'232;Eritrea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;4;2;1;1;1;1;1;1;1;1;1;1;1
-178;'232;Eritrea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121;1121;1121;9;16;16;16;16;16;16;16;16;161;0;0;0;0;0;0;0
-178;'232;Eritrea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;124;124;9;5;5;5;5;5;5;5;5;84;0;0;0;0;0;0;0
-178;'232;Eritrea;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;152;103;15;175;711;711;0;0;0;0;171;171;171;171;171;171;171
-178;'232;Eritrea;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;16;3;28;224;224;0;0;0;0;34;34;34;34;34;34;34
-178;'232;Eritrea;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1500;2200;2001;2001;3000;921;1440;3088;3088;1761;1810;1143;1478;1373;2239;973.44;1497;906;1249;822;1488;2931;1367;4516;583;515;564
-178;'232;Eritrea;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2086;1690;2300;1559;1559;2396;777;1202;2217;2217;1316;1438;1314;1502;1164;1892;807;1353;782;954;682;1388;3026;1699;4015;534;607;943
-178;'232;Eritrea;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;16;16;21;21;25;17;53;53;67;83;83;83;83;83;83;83;83;81;57;57
-178;'232;Eritrea;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;32;32;36;36;59;43;50;50;68;80;80;80;80;80;80;80;80;69;59;59
-178;'232;Eritrea;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;800;1200;1001;1001;2000;780;552;1613;1613;697;684;544;1185;1129;2022;841.44;1337;825;1123;663;1190;2522;892;4367;520;327;359
-178;'232;Eritrea;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524;1076;1548;838;838;1675;521;326;1209;1209;578;467;421;861;850;1694;707;1215;649;666;412;1005;2461;1051;3778;412;347;492
-178;'232;Eritrea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;16;16
-178;'232;Eritrea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;20;20
-178;'232;Eritrea;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;202;202;202;202;275;275;692;630;1069;633;754;395;764;378;334;408;392;344;344;248;2
-178;'232;Eritrea;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;215;94;94;94;94;148;148;430;405;828;513;543;225;405;196;251;256;268;223;199;245;1
-178;'232;Eritrea;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;800;1200;1001;1001;1600;380;350;1411;1411;495;409;269;493;499;953;208.44;583;430;359;285;856;2114;500;4023;176;79;357
-178;'232;Eritrea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524;1076;1548;838;838;1452;306;232;1115;1115;484;319;273;431;445;866;194;672;424;261;216;754;2205;783;3555;213;102;491
-178;'232;Eritrea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;16;16
-178;'232;Eritrea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;20;20
-178;'232;Eritrea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;438;438;700;37;74;331;331;331;22;18;2;174;350;20;119;41;41;57;57;57;1;102;2;2;3
-178;'232;Eritrea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631;342;342;592;30;41;261;261;261;21;15;3;168;330;21;128;33;33;35;35;35;5;93;3;9;4
-178;'232;Eritrea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;438;438;700;278;227;742;742;19;310;194;260;324;561;188;215;360;289;179;687;1651;374;3681;5;46;192
-178;'232;Eritrea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;362;362;628;165;165;587;587;16;235;207;223;274;508;168;391;368;205;112;584;1634;610;3127;12;48;202
-178;'232;Eritrea;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-178;'232;Eritrea;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-178;'232;Eritrea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;125;125;200;65;49;338;338;145;77;57;231;1;42;0.44;249;29;29;49;112;406;125;240;169;31;162
-178;'232;Eritrea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;134;134;232;111;26;267;267;207;63;51;205;3;28;5;153;23;23;69;135;536;168;335;198;45;285
-178;'232;Eritrea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13
-178;'232;Eritrea;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18
-178;'232;Eritrea;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;700;1000;1000;1000;1000;141;888;1475;1475;1064;1126;599;293;244;217;132;160;81;126;159;298;409;475;149;63;188;205
-178;'232;Eritrea;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;614;752;721;721;721;256;876;1008;1008;738;971;893;641;314;198;100;138;133;288;270;383;565;648;237;122;260;451
-178;'232;Eritrea;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;18;18;22;14;50;50;64;80;80;80;80;80;80;80;80;78;41;41
-178;'232;Eritrea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;34;34;57;41;48;48;66;78;78;78;78;78;78;78;78;67;39;39
-178;'232;Eritrea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;6;29;3;3;1;6;18;18;12;11;11;11;22;22;17;151;274;342;86;4;3;39
-178;'232;Eritrea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;51;51;51;8;20;4;4;1;7;8;8;17;10;10;10;26;26;86;243;368;510;90;25;21;206
-178;'232;Eritrea;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17
-178;'232;Eritrea;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18
-178;'232;Eritrea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;350;350;350;53;658;1308;1308;1047;1047;489;198;148;136;51;133;57;57;110;142;117;120;36;37;163;140
-178;'232;Eritrea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;64;429;849;849;672;672;292;142;89;133;35;90;92;92;134;125;119;118;51;44;186;141
-178;'232;Eritrea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;12;48;48;45;61;61;61;61;61;61;61;61;61;24;24
-178;'232;Eritrea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;27;30;37;37;37;49;49;49;49;49;49;49;49;49;21;21
-178;'232;Eritrea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;88;88;88;88;9;9;9;9;9;62;62;62;62;0;2;1;4
-178;'232;Eritrea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;55;5;5;5;5;5;47;47;47;47;0;9;9;26
-178;'232;Eritrea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;350;350;350;26;93;655;655;394;394;394;70;0;88;37;100;8;8;8;40;40;47;25;25;160;118
-178;'232;Eritrea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;24;41;406;406;229;229;229;66;0;97;13;65;39;39;39;30;30;43;23;23;165;68
-178;'232;Eritrea;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;40;40;37;37;37;37;37;37;37;37;37;37;0;0
-178;'232;Eritrea;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;30;30;30;30;30;30;30;30;30;30;30;30;2;2
-178;'232;Eritrea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;565;565;565;565;565;1;34;34;37;2;11;29;29;29;29;4;0;0;10;1;13
-178;'232;Eritrea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;388;388;388;388;388;4;17;17;30;16;11;20;20;20;20;14;0;0;12;12;44
-178;'232;Eritrea;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;1;1;1;1;1;1;1;1;1;1
-178;'232;Eritrea;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;1;1;1;1;1;1;1;1;1;1
-178;'232;Eritrea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;26;2;3;13;11;11;11;11;11;11;11;0;1;5
-178;'232;Eritrea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;17;1;1;9;28;28;28;28;28;28;28;0;0;3
-178;'232;Eritrea;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;23;23;23;23;23;23;23;23;23;23;23
-178;'232;Eritrea;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;18;18;18;18;18;18;18;18;18;18;18
-178;'232;Eritrea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;82;201;164;164;16;73;92;77;84;70;70;16;2;47;32;5;18;13;27;22;22;26
-178;'232;Eritrea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;370;370;370;184;427;155;155;65;292;593;491;208;55;55;38;15;170;50;15;78;20;96;53;53;104
-178;'232;Eritrea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0
-178;'232;Eritrea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;11;11;11;11;11;11;11;11;11;11;11;11;0;0;0
-178;'232;Eritrea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9891;7553;7436;1157;1206;11275;11762
-178;'232;Eritrea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;73;21;37;20;27;19
-178;'232;Eritrea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;61;7;45;20;9;47
-178;'232;Eritrea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9
-178;'232;Eritrea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;18;2;2;2;2;4
-178;'232;Eritrea;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9
-178;'232;Eritrea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;43;5;43;18;7;43
-178;'232;Eritrea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-178;'232;Eritrea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;19;17;9;45;3
-178;'232;Eritrea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;1;1
-178;'232;Eritrea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;36;2;2;13;3;2
-178;'232;Eritrea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;1;0;4;0
-178;'232;Eritrea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944;138;807;419;493;6;610
-178;'232;Eritrea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6
-178;'232;Eritrea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8334;6645;6415;299;625;11011;10975
-178;'232;Eritrea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;54;1;17;1;7;3
-178;'232;Eritrea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-178;'232;Eritrea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;673;186;375;46;201;125
-178;'232;Eritrea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0
-178;'232;Eritrea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2256;3508;2804;1580;664;1745;2685
-178;'232;Eritrea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;16;19;10;9;13;4
-178;'232;Eritrea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;96
-178;'232;Eritrea;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-178;'232;Eritrea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;17;0;17;27;12;17
-178;'232;Eritrea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-178;'232;Eritrea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;272;479;46;44;88;285
-178;'232;Eritrea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0
-178;'232;Eritrea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;370;246;222;171;376;793
-178;'232;Eritrea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;1;0;0;0
-178;'232;Eritrea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1275;2848;2078;1294;421;1268;1494
-178;'232;Eritrea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;11;1;1;9;0
-63;'233;Estonia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834058.64;970253;930148;954628;1450442;1413645;1038850
-63;'233;Estonia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2391404.88;2826875;2653630;2590838;3319200;3590271;3049152
-63;'233;Estonia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1341;11180;28012;55406;65662;86508;123377;94520;105882;127637;142741;206117;304518;370108;454025;628290;477175;316836;407701;481551;481532;556414;603086;497394;506873;585868.33;692419;648331;669727;1134542;1051160;705830
-63;'233;Estonia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37721;62803;123984;208380;240004;290137;390866;414453;381713;368357;425899;534532;549295;580491;639098;838406;778120;566123;832222;883239;866757;998448;1020253;881727;903694;1073925.15;1297009;1165556;1078823;1523379;1594248;1379534
-63;'233;Estonia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2146000;2439000;3550000;3710000;3901000;5393000;6061000;6704000;8910000;10200000;10500000;10500000;6800000;5500000;5400000;4500000;4860000;5636054;7489928;7997845;9044423;9048022;8808243;9515031;10218940;11458637;12225530;10986970;11288333;10082501;10540759;10446666
-63;'233;Estonia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;3055;47200;118000;113200;298100;380244;346480;582890;639060;941109;1484365;1883926;1811022;1433953;568328;284792;336396;346599;328833;298539;240587;293412;207451;235958;294529;341827;557696;888427;891098;612354
-63;'233;Estonia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;56;1935;3355;4766;11806;14945;14046;23355;27189;48874;87865;106408;113678;138920;62346;24594;29826;35118;30192;32038;27489;25391;23188;25538.97;36399;38480;54003;89782;111461;88088
-63;'233;Estonia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531543;1108628;1759700;2657600;1927000;3041000;3874800;4016243;4431960;3682900;3359540;3364978;2434169;1923766;1656591;1543752;1555837;1275174;2453141;2798617;2565328;3080206;2989047;2719319;2841950;2823454;3225106;2659239;1737928;1953728;1847615;2350653
-63;'233;Estonia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26151;31144;50915;102890;76871;106771;152448;146450;136189;109379;105923;131645;116987;102088;84802;136735;148017;74621;158530;215698;162677;207097;202009;142248;151731;165270.41;267389;195884;109295;140202;200670;229767
-63;'233;Estonia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172000;1366000;1788000;1854000;1945000;3135000;3824000;4133000;5870000;6720000;6910000;6900000;4300000;3500000;3250000;2736000;2929500;3315800;4400029;4756772;5443121;5185476;5238376;5581364;5927273;6313637;6736364;6053637;6220000;5270000;5509092;5460000
-63;'233;Estonia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187792;212325;226198;323483;691624;673944;423483
-63;'233;Estonia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18050.49;26041;26692;30678;67681;74884;49437
-63;'233;Estonia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1534835;1539268;1239513;780513;798688;624023;1034917
-63;'233;Estonia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89763.88;128735;89187;45859;50735;59288;89643
-63;'233;Estonia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;974000;1073000;1762000;1856000;1956000;2258000;2237000;2571000;3040000;3480000;3590000;3600000;2500000;2000000;2150000;1764000;1930500;2320254;3089899;3241073;3601302;3862546;3569867;3933667;4291667;5145000;5489166;4933333;5068333;4812501;5031667;4986666
-63;'233;Estonia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48166;82204;115629;234213;196803;217154;188871
-63;'233;Estonia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7488.48;10358;11788;23325;22101;36577;38651
-63;'233;Estonia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288619;1685838;1419726;957415;1155040;1223592;1315736
-63;'233;Estonia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75506.53;138654;106697;63436;89467;141382;140124
-63;'233;Estonia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807000;1048000;544000;573000;604000;1370000;693000;804000;1640000;1880000;1900000;2100000;1300000;1050000;1100000;990000;1152000;1856682;2520770;2645708;2744630;2820480;2579036;3075000;3191667;4456440;4755909;4271969;4390378;3887576;4066364;4030227
-63;'233;Estonia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;600;600;1200;1100;121;0;30;100;50;18499;191;1777;10882;6152;20676;35632;11602;13335;18696;9249;6309;11417;18354;24020;26213;40313;20872;33966;13992
-63;'233;Estonia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;10;38;33;3;0;4;2;3;315;14;61;680;605;1555;1832;1566;1312;2015;1249;615;1262;1666.92;3400;2517;2240;2610;5509;2384
-63;'233;Estonia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009;12000;41100;20400;29300;126000;83000;113451;175360;200680;227480;335582;137333;117366;50645;41317;87281;194795;202651;188982;173332;333607;231239;288247;293788;266702;297613;262972;154439;219889;195983;378105
-63;'233;Estonia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;175;586;422;568;771;909;2432;2752;3149;5761;14243;8362;6831;6447;7254;11073;13296;18148;25481;16691;25383;21674;20087;22546;19851.3;31840;26514;18866;30245;37129;46341
-63;'233;Estonia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212000;355000;120000;126000;133000;410000;236000;233000;890000;1020000;1050000;1000000;500000;430000;350000;360000;432000;747657;985317;1054723;1082516;1055961;1007720;1200000;1100000;1537273;1640909;1473636;1514545;1420909;1486364;1472727
-63;'233;Estonia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11725;21949;8204;20686;11100;16118;9661
-63;'233;Estonia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885.02;2982;905;1355;1758;1629;994
-63;'233;Estonia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106157;111159;81815;55450;62619;49443;135720
-63;'233;Estonia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5086.46;9898;4914;4296;3660;4653;12517
-63;'233;Estonia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;595000;693000;424000;447000;471000;960000;457000;571000;750000;860000;850000;1100000;800000;620000;750000;630000;720000;1109025;1535453;1590985;1662114;1764519;1571316;1875000;2091667;2919167;3115000;2798333;2875833;2466667;2580000;2557500
-63;'233;Estonia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6629;2071;18009;19627;9772;17848;4331
-63;'233;Estonia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781.9;418;1612;885;852;3880;1390
-63;'233;Estonia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160545;186454;181157;98989;157270;146540;242385
-63;'233;Estonia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14764.84;21942;21600;14570;26585;32476;33824
-63;'233;Estonia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;600;600;1200;1100;121;0;30;100;50;18499;191;1777;10882;6152;20676;35632;11602;13335;18696;9249;6309;11417;;;;;;;
-63;'233;Estonia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;10;38;33;3;0;4;2;3;315;14;61;680;605;1555;1832;1566;1312;2015;1249;615;1262;;;;;;;
-63;'233;Estonia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009;12000;41100;20400;29300;126000;83000;113451;175360;200680;227480;335582;137333;117366;50645;41317;87281;194795;202651;188982;173332;333607;231239;288247;293788;;;;;;;
-63;'233;Estonia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;175;586;422;568;771;909;2432;2752;3149;5761;14243;8362;6831;6447;7254;11073;13296;18148;25481;16691;25383;21674;20087;22546;;;;;;;
-63;'233;Estonia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339000;1391000;3006000;3137000;3297000;4023000;5368000;5900000;7270000;8320000;8600000;8400000;5500000;4450000;4300000;3510000;3708000;3779372;4969158;5352137;6299793;6227542;6229207;6440031;7027273;7002197;7469621;6715001;6897955;6194925;6474395;6416439
-63;'233;Estonia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;1155;46600;117400;112000;297000;380123;346480;582860;638960;941059;1465866;1883735;1809245;1423071;562176;264116;300764;334997;315498;279843;231338;287103;196034;217604;270509;315614;517383;867555;857132;598362
-63;'233;Estonia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;44;1925;3345;4728;11773;14942;14046;23351;27187;48871;87550;106394;113617;138240;61741;23039;27994;33552;28880;30023;26240;24776;21926;23872.04;32999;35963;51763;87172;105952;85704
-63;'233;Estonia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530534;1096628;1718600;2637200;1897700;2915000;3791800;3902792;4256600;3482220;3132060;3029396;2296836;1806400;1605946;1502435;1468556;1080379;2250490;2609635;2391996;2746599;2757808;2431072;2548162;2556752;2927493;2396267;1583489;1733839;1651632;1972548
-63;'233;Estonia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26094;30969;50329;102468;76303;106000;151539;144018;133437;106230;100162;117402;108625;95257;78355;129481;136944;61325;140382;190217;145986;181714;180335;122161;129185;145419.11;235549;169370;90429;109957;163541;183426
-63;'233;Estonia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960000;1011000;1668000;1728000;1812000;2725000;3588000;3900000;4980000;5700000;5860000;5900000;3800000;3070000;2900000;2376000;2497500;2568143;3414712;3702049;4360605;4129515;4230656;4381364;4827273;4776364;5095455;4580001;4705455;3849091;4022728;3987273
-63;'233;Estonia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;983;13200;34300;63000;191000;307673;278880;516980;550120;859291;1314138;1502316;1505822;1261751;438382;167278;168178;201214;174382;195188;147384;183549;149157;176067;190376;217994;302797;680524;657826;413822
-63;'233;Estonia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;836;1622;2539;7277;10908;10883;19947;22283;43148;77586;87405;97679;121642;45702;12639;14559;19383;16196;20125;16103;17093;15322;17165.47;23059;25787;29323;65923;73255;48443
-63;'233;Estonia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190307;403628;1002600;1300900;1110700;1763000;2219000;2258916;2568130;1960330;1668720;1533857;1097605;873261;704451;662331;671682;581171;1142249;1468893;1252278;1541333;1447181;1247460;1341195;1428678;1428109;1157698;725063;736069;574580;899197
-63;'233;Estonia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185;14665;30504;54465;49258;65486;94541;91452;87949;64268;56905;61027;54909;44760;34565;56652;62207;33669;70140;106957;75941;105305;99153;64044;71514;84677.43;118837;84273;41563;47075;54635;77126
-63;'233;Estonia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;983;13200;34300;63000;191000;307673;278880;516980;550120;859291;1314138;1502316;1505822;1261751;438382;167278;168178;201214;174382;195188;147384;183549;149157;176067;190376;217994;302797;680524;657826;413822
-63;'233;Estonia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;836;1622;2539;7277;10908;10883;19947;22283;43148;77586;87405;97679;121642;45702;12639;14559;19383;16196;20125;16103;17093;15322;17165.47;23059;25787;29323;65923;73255;48443
-63;'233;Estonia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190307;403628;1002600;1300900;1110700;1763000;2219000;2258916;2568130;1960330;1668720;1533857;1097605;873261;704451;662331;671682;581171;1142249;1468893;1252278;1541333;1447181;1247460;1341195;1428678;1428109;1157698;725063;736069;574580;899197
-63;'233;Estonia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185;14665;30504;54465;49258;65486;94541;91452;87949;64268;56905;61027;54909;44760;34565;56652;62207;33669;70140;106957;75941;105305;99153;64044;71514;84677.43;118837;84273;41563;47075;54635;77126
-63;'233;Estonia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379000;380000;1338000;1409000;1485000;1298000;1780000;2000000;2290000;2620000;2740000;2500000;1700000;1380000;1400000;1134000;1210500;1211229;1554446;1650088;1939188;2098027;1998551;2058667;2200000;2225833;2374166;2135000;2192500;2345834;2451667;2429166
-63;'233;Estonia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;172;33400;83100;49000;106000;72450;67600;65880;88840;81768;151728;381419;303423;161320;123794;96838;132586;133783;141116;84655;83954;103554;46877;41537;80133;97620;214586;187031;199306;184540
-63;'233;Estonia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;1089;1723;2189;4496;4034;3163;3404;4904;5723;9964;18989;15938;16598;16039;10400;13435;14169;12684;9898;10137;7683;6604;6706.57;9940;10176;22440;21249;32697;37261
-63;'233;Estonia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340227;693000;716000;1336300;787000;1152000;1572800;1643876;1688470;1521890;1463340;1495539;1199231;933139;901495;840104;796874;499208;1108241;1140742;1139718;1205266;1310627;1183612;1206967;1128074;1499384;1238569;858426;997770;1077052;1073351
-63;'233;Estonia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16909;16304;19825;48003;27045;40514;56998;52566;45488;41962;43257;56375;53716;50497;43790;72829;74737;27656;70242;83260;70045;76409;81182;58117;57671;60741.69;116712;85097;48866;62882;108906;106300
-63;'233;Estonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;58;0;560;80;140;306;202;286;11;28;5;63;5;5;8;3;1;0;0;0;8;15;2;18;15
-63;'233;Estonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;1;20;53;136;221;158;184;15;29;6;102;10;6;9;4;1;0;0;0;35;6;4;20;28
-63;'233;Estonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34176;38370;3040;1980;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3598;0;0;0;0;0;0
-63;'233;Estonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;796;802;63;38;0;0;0;0;0;0;0;0;0;0;0;0;0;0;302.59;0;0;0;0;0;0
-63;'233;Estonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;172;33400;83100;49000;105900;72392;67600;65320;88760;81628;151422;381217;303137;161309;123766;96833;132523;133778;141111;84647;83951;103553;46877;41537;80133;97612;214571;187029;199288;184525
-63;'233;Estonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;1089;1723;2189;4482;4020;3162;3384;4851;5587;9743;18831;15754;16583;16010;10394;13333;14159;12678;9889;10133;7682;6604;6706.57;9940;10141;22434;21245;32677;37233
-63;'233;Estonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340227;693000;716000;1336300;787000;1152000;1572800;1609700;1650100;1518850;1461360;1495539;1199231;933139;901495;840104;796874;499208;1108241;1140742;1139718;1205266;1310627;1183612;1206967;1124476;1499384;1238569;858426;997770;1077052;1073351
-63;'233;Estonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16909;16304;19825;48003;27045;40514;56993;51770;44686;41899;43219;56375;53716;50497;43790;72829;74737;27656;70242;83260;70045;76409;81182;58117;57671;60439.1;116712;85097;48866;62882;108906;106300
-63;'233;Estonia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515000;561000;1341000;1413000;1490000;1548000;2038000;2200000;2850000;3260000;3940000;4350000;3300000;2770000;2750000;2115000;2232000;2107731;2978105;3212322;3862203;3811785;3923648;4012000;4361364;4454318;4754015;4269697;4387424;4088485;4275682;4238409
-63;'233;Estonia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480000;510000;912000;961000;1013000;1425000;1788000;1900000;2430000;2780000;3400000;3650000;2700000;2225000;2200000;1710000;1800000;1742014;2450605;2662096;3197467;2981921;3102277;3245000;3536364;3511818;3748182;3366364;3459091;2981818;3118182;3090909
-63;'233;Estonia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;51000;429000;452000;477000;123000;250000;300000;420000;480000;540000;700000;600000;545000;550000;405000;432000;365717;527500;550226;664736;829864;821371;767000;825000;942500;1005833;903333;928333;1106667;1157500;1147500
-63;'233;Estonia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3050000;3350000;3800000;3910000;3480000;2900000;1500000;1280000;1450000;1296000;1431000;1619368;1938780;2087542;2385317;2363484;2253286;2375758;2613636;2495606;2663333;2393031;2458258;2054167;2148182;2129242
-63;'233;Estonia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600000;1750000;2200000;2550000;2080000;1700000;800000;680000;650000;603000;675000;798856;936834;1012680;1135865;1120321;1101106;1109091;1263636;1237273;1320000;1186364;1219091;840000;878182;870909
-63;'233;Estonia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1450000;1600000;1600000;1360000;1400000;1200000;700000;600000;800000;693000;756000;820512;1001946;1074862;1249452;1243163;1152180;1266667;1350000;1258333;1343333;1206667;1239167;1214167;1270000;1258333
-63;'233;Estonia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600000;634000;1469000;1528000;1611000;2200000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280000;330000;585000;596000;628000;1100000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320000;304000;884000;932000;983000;1100000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224000;196000;196000;196000;196000;275000;280000;350000;620000;1150000;1180000;1150000;700000;400000;100000;99000;45000;52273;52273;52273;52273;52273;52273;52273;52273;52273;52273;52273;52273;52273;50531;48788
-63;'233;Estonia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;171000;171000;171000;171000;200000;200000;250000;350000;370000;380000;550000;300000;165000;50000;63000;22500;27273;27273;27273;27273;27273;27273;27273;27273;27273;27273;27273;27273;27273;26364;25455
-63;'233;Estonia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;25000;25000;25000;25000;75000;80000;100000;270000;780000;800000;600000;400000;235000;50000;36000;22500;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;24167;23333
-63;'233;Estonia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;300;1000;1000;3000;3498;3942;4879;6629;4370;5739;3113;3296;5000;2400;1705;1769;693;1105;0;0;0;0;0;0;0
-63;'233;Estonia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;600;200;346;908;1180;20;140;38;24;83;158;48;352;2202;2614;4065;6282;5307;5255;2213;2217;1452;10173;37567;2136;2196;2039;2336
-63;'233;Estonia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;23;73;69;124;100;107;6;41;15;9;30;63;20;215;1086;1325;2011;2879;2570;2629;947;1075;793.35;1868;4208;1366;1492;1671;2583
-63;'233;Estonia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;200;100;34;740;2510;1800;2990;4133;3489;4836;3633;3452;3300;3815;5790;8804;9804;7731;8134;2605;1690;1978;1652;1602;876;530;618;407
-63;'233;Estonia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;67;101;45;11;106;407;512;976;1643;1897;2431;2322;3769;3852;2884;3668;8085;6443;6712;6419;1573;1052;1133.21;1007;1064;579;469;450;357
-63;'233;Estonia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637000;870000;1368000;2236000;1984500;2873379;3651448;3160000;2778267;2618600;2569884;3278860;4215122;4438720;4377256;4833484;2997372;3024685;3097214;3058000;3565000;4085476;3843000;4061628;4400000;3800000
-63;'233;Estonia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;1282;930;780;4050;82363;79805;135557;144566;152023;111749;122428;128930;151629;172141;157727;113192;112696;134337;92162;71693;223882;265821;96312;46850;31903
-63;'233;Estonia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;408;277;161;182;1262;1427;3578;3216;5320;5278;4684;5175;5841;7138;9397;3329;2886;3066;2142.45;2333;7002;8879;4619;2583;1316
-63;'233;Estonia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1070000;756739;795650;1044580;1282340;1227914;1157151;1304747;1404288;962422;825916;812709;1134559;559151;582256;553150;535980;418309;598471;743533;750335;1172242;1250746;1403170;2168578;1803043
-63;'233;Estonia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17762;23282;20316;25350;35823;50673;55030;68479;85494;109826;94106;78684;98025;45957;35084;38964;33539;23678;31369;36003.21;45645;52192;40285;37060;44686;58599
-63;'233;Estonia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367000;600000;1017000;1592000;1236300;1636138;1835310;1860000;1316667;1440300;1544484;2451569;2454508;2958092;2745200;3315722;1700000;1870000;1990000;1979000;1982000;2296050;2366000;2123000;2400000;2000000
-63;'233;Estonia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;2100;66700;44000;0;142;110;30;0;105;4422;17323;15918;30078;9037;28388;48936;119903;106141;94316;43875;44720;62959;67568;41788;72119;30997;46114;19369;13639
-63;'233;Estonia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;45;1186;760;0;7;1;2;0;14;125;495;432;1601;570;970;2249;4599;4137;6509;1353;1386;1544;1684.79;1831;3702;1321;1492;1329;413
-63;'233;Estonia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;35000;59000;32700;297300;352000;680000;427339;437900;650890;986940;861144;897308;911223;750638;420925;364078;229498;409812;450991;545102;529204;524033;414176;584919;723361;736644;1113549;1216146;1389470;2127615;1763976
-63;'233;Estonia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1168;1149;710;12702;5017;10948;13662;11781;16081;26674;31837;38646;39287;35010;50192;40496;19204;26170;33290;30685;36805;32830;23429;30813;35233.74;45087;50039;38748;36450;41880;56266
-63;'233;Estonia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;270000;351000;644000;748200;1237241;1816138;1300000;1461600;1178300;1025400;827291;1760614;1480628;1632056;1517762;1297372;1154685;1107214;1079000;1583000;1789426;1477000;1938628;2000000;1800000
-63;'233;Estonia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;144;432;0;3500;1700;3800;1140;820;750;4050;82258;75383;118234;128648;121945;102712;94040;79994;31726;66000;63411;69317;67976;71378;24594;29905;151763;234824;50198;27481;18264
-63;'233;Estonia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;19;0;46;58;217;401;276;159;182;1248;1302;3083;2784;3719;4708;3714;2926;1242;3001;2888;1976;1500;1522;457.66;502;3300;7558;3127;1254;903
-63;'233;Estonia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;586;4000;48300;145200;194600;395000;390000;329400;357750;393690;295400;366770;259843;393524;653650;541497;461838;583211;724747;108160;37154;23946;11947;4133;13552;20172;13691;58693;34600;13700;40963;39067
-63;'233;Estonia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;292;577;2417;3240;4994;6814;9620;8535;9269;9149;18836;16384;29192;50484;59634;53610;59480;71855;12667;4399;2159;709;249;556;769.47;558;2153;1537;610;2806;2333
-63;'233;Estonia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4055;12173
-63;'233;Estonia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;571
-63;'233;Estonia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;5
-63;'233;Estonia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;5
-63;'233;Estonia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;130000;130000;150000;188000;190000;170000
-63;'233;Estonia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-63;'233;Estonia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-63;'233;Estonia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-63;'233;Estonia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-63;'233;Estonia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521662;630147;788492;1098330;1256837;1454000;1366000;1620733;1617000;1677747;1680000;1403000
-63;'233;Estonia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20273;50660;65759;20206;16009;24496;17929;18044;21399;42927;23816;51517
-63;'233;Estonia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3251;11072;14675;3559;2311;2081.44;3032;2898;2557;5617;4993;12391
-63;'233;Estonia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453389;628375;645809;884976;947401;1263081;1118835;1136018;1085487;1586870;1417503;1206934
-63;'233;Estonia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76519;118379;126270;138161;142405;180190.19;183900;186291;184763;255371;312945;286097
-63;'233;Estonia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;610406;768796;1076994;1212413;1436000;1343000;1598703;1600000;1651935;1650000;1385000
-63;'233;Estonia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14673;45362;61673;17320;9982;8979;11985;10443;11724;26436;11705;44569
-63;'233;Estonia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2454;10323;13849;3126;1671;1453.28;2093;1926;1496;3464;2740;11253
-63;'233;Estonia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430425;612742;640838;883390;945853;1250596;1111953;1126192;1069606;1559213;1377970;1156828
-63;'233;Estonia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73394;115864;124546;137332;142190;179553.42;183307;185541;183553;253401;309134;280059
-63;'233;Estonia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21662;19741;19696;21336;44424;18000;23000;22030;17000;25812;30000;18000
-63;'233;Estonia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;5298;4086;2886;6027;15517;5944;7601;9675;16491;12111;6948
-63;'233;Estonia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;749;826;433;640;628.15;939;972;1061;2153;2253;1138
-63;'233;Estonia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22964;15633;4971;1586;1548;12485;6882;9826;15881;27657;39533;50106
-63;'233;Estonia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3125;2515;1724;829;215;636.78;593;750;1210;1970;3811;6038
-63;'233;Estonia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;341000;350000;400000;729000;850000;1200000;1436300;1623000;1824900;1953600;2029400;2062500;1958400;1583500;1119845;1127487;1771400;1503248;1491190;1557600;1554208;1770473;1700000;1765000;1815896;1868436;1750000;1850000;1900000;1550000
-63;'233;Estonia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;16200;26400;36200;21700;61400;92600;137291;199340;214990;236090;363445;499030;627206;752778;824367;539867;499068;641967;716504;803724;864041;981961;1066062;1161997;1331172;1437684;1330038;1509282;1875707;1355052;953379
-63;'233;Estonia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1028;1302;4761;3203;10745;12306;11395;18008;22363;28275;50616;78428;100991;132030;214233;150177;112337;162400;202910;205113;230699;271414;231119;249719;301884.4;364839;315500;342473;671568;510280;271978
-63;'233;Estonia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41844;146800;336500;295600;506200;638000;747000;899513;1069650;1085660;1247500;1209328;1029509;1137360;970013;708568;565714;597717;753749;740756;754479;804542;851304;913148;909246;1097572;1170430;1126591;1105517;1099945;955482;758455
-63;'233;Estonia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5269;12865;39287;47036;75612;88203;114229;159579;144586;138657;179602;221798;221927;243608;234259;245719;196451;166593;239119;247458;237417;263942;283931;267779;267841;334166.73;376430;335239;339358;534543;424807;258608
-63;'233;Estonia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;270000;310000;315000;360000;684000;780000;1100000;1346300;1505400;1655600;1767400;1889000;1909100;1796600;1461800;991146;1017606;1641400;1368951;1369306;1417700;1438155;1624650;1580000;1600000;1713000;1768436;1600000;1690000;1725000;1470000
-63;'233;Estonia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;15000;21700;32000;16300;52300;84500;127067;183890;193110;205440;323808;454928;556605;653671;765506;469927;453435;592483;652864;723562;804245;896733;966937;1064239;1221940;1298482;1177515;1363549;1699113;1208520;884380
-63;'233;Estonia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;939;672;3749;2085;8076;10014;9257;14417;17257;21571;40604;65927;83118;108270;189349;116583;93457;140267;169515;170914;200547;233822;196201;211486;256674.83;306876;252358;288958;593387;423962;230497
-63;'233;Estonia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37399;142000;323300;282800;484900;597000;690000;815719;912420;944450;1078860;1027923;876079;1003961;846687;606013;486467;524645;661734;631230;661250;714359;748990;778593;795624;976997;1036758;1005350;990900;1003396;865692;689717
-63;'233;Estonia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3756;11875;37899;45125;71106;82180;104155;145146;124843;117661;149436;183209;182566;204706;196367;202380;155134;136744;199983;197376;189034;216732;237877;206695;211802;278925.94;310736;281369;299559;486176;378763;222843
-63;'233;Estonia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;31000;35000;40000;45000;70000;100000;90000;117600;169300;186200;140400;153400;161800;121700;128699;109881;130000;134297;121884;139900;116053;145823;120000;165000;102896;100000;150000;160000;175000;80000
-63;'233;Estonia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;1200;4700;4200;5400;9100;8100;10224;15450;21880;30650;39637;44102;70601;99107;58861;69940;45633;49484;63640;80162;59796;85228;99125;97758;109232;139202;152523;145733;176594;146532;68999
-63;'233;Estonia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;89;630;1012;1118;2669;2292;2138;3591;5106;6704;10012;12501;17873;23760;24884;33594;18880;22133;33395;34199;30152;37592;34918;38233;45209.57;57963;63142;53515;78181;86318;41481
-63;'233;Estonia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4445;4800;13200;12800;21300;41000;57000;83794;157230;141210;168640;181405;153430;133399;123326;102555;79247;73072;92015;109526;93229;90183;102314;134555;113622;120575;133672;121241;114617;96549;89790;68738
-63;'233;Estonia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513;990;1388;1911;4506;6023;10074;14433;19743;20996;30166;38589;39361;38902;37892;43339;41317;29849;39136;50082;48383;47210;46054;61084;56039;55240.79;65694;53870;39799;48367;46044;35765
-63;'233;Estonia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;6000;6000;1000;1000;21000;20000;24000;40100;62100;52800;31800;41000;33000;25700;50000;48010;27620;58978;40623;50489;90637;109685;116359;116000;181324;221223;74234;104000;90475;105259;135000
-63;'233;Estonia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;5000;5800;4600;7100;3100;2500;25793;3020;1900;1030;1942;2018;5095;4935;5996;5467;2677;2442;3968;5230;3308;4290;5463;5159;7041;26217;47901;64620;85041;87498;92693
-63;'233;Estonia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;1019;1648;1450;1160;1565;2244;1583;1568;1542;1782;2754;3098;3526;4597;5611;5737;4787;4001;5688;7023;5116;5551;5536;7682;10821.72;17600;22042;27001;39789;45776;49892
-63;'233;Estonia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;1000;1200;2900;5800;7100;9700;11914;8160;20110;13820;17502;18100;19237;12366;19204;15332;18628;27951;29308;36379;75156;85738;93526;84187;68339;78181;56924;57057;91841;82246;76557
-63;'233;Estonia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;289;416;1086;1465;1650;3624;8889;6754;13661;15452;22061;22998;28668;25541;30823;29773;34690;39925;37398;40469;50979;53383;45577;44905;47146.4;54873;43734;45394;68282;73870;72362
-63;'233;Estonia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106000;163000;174000;275600;312100;365800;371000;356000;371600;387990;308770;304429;348431;392500;396928;352189;373566;182000;279417;318610;280188;291742;303609;379367;341328;402000;425537;423833;435000;494110;365000;238800
-63;'233;Estonia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;47252;85700;86141;92887;106485;145084;165828;148795;131345;120985;133514;172422;191037;210026;248132;170701;127564;173167;189281;175722;199464;202428;223187;248076;268369;317972;286580;280503;314458;348337;214686
-63;'233;Estonia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;4503;12864;20098;23735;27175;31871;29754;28615;29739;32797;40319;56107;72496;78296;117864;83834;46735;65195;76235;74982;90266;88658;74551;74423;89946.67;112143;97376;94690;149579;185647;110174
-63;'233;Estonia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22247;131096;170000;245900;309500;351500;388000;369217;428130;402800;371490;271518;289705;293514;308842;305581;269602;177713;248644;265281;266290;284825;294472;268123;254179;284093;298599;326793;337976;392598;320214;253596
-63;'233;Estonia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4502;16300;26515;46135;53439;52309;56656;49960;44733;51564;50627;60520;75999;79745;90548;122130;108041;67252;100008;119333;110426;115311;108958;91836;93832;119828.05;149786;172737;189110;248775;277316;295826
-63;'233;Estonia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;8000;10000;11000;18000;20000;17000;17000;18400;29200;38500;32900;41000;70000;53500;30000;80524;21800;39117;42520;45026;46800;46958;47765;53153;92000;121947;140457;168000;192506;200000;205000
-63;'233;Estonia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;23000;57000;64100;66700;61300;61200;61877;59420;66440;71500;77704;105630;126748;124338;140715;78385;50764;79090;79127;73559;93900;82408;83731;100936;105388;143652;113091;92717;117560;150831;58736
-63;'233;Estonia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1702;8575;13726;16069;15231;16220;14212;13423;14813;17680;21233;33071;47242;46988;70106;44309;20225;35557;41366;37870;49162;44669;34404;33922;42694.13;55120;44530;37512;67624;100693;40725
-63;'233;Estonia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3943;26000;67000;65100;73500;78600;67900;49968;39430;54950;59570;55078;61348;54127;61220;66717;34117;39048;66154;60079;55888;55202;47876;50996;64152;95940;120389;150065;176038;205870;205432;208753
-63;'233;Estonia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1624;9987;19299;25433;28505;27127;26088;20487;12772;18803;22355;26195;31617;29746;34020;54739;34534;26837;49088;54179;47555;49360;41059;40906;48773;73617.35;100063;124688;141047;187341;229692;272378
-63;'233;Estonia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-63;'233;Estonia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1482;359
-63;'233;Estonia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893;253
-63;'233;Estonia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;29
-63;'233;Estonia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;25
-63;'233;Estonia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61100;90000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;24000;28000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;2617;3783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9918;83000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;2235;2871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155000;143000;179000;177000;169000;175800;185900;187200;187300;217600;229500;248700;275400;251042;133400;204300;206901;157086;178312;182131;253152;214525;209000;205835;194636;184000;223094;90000;500
-63;'233;Estonia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21400;21300;32300;42800;71656;41830;25240;23820;22714;25965;21705;28400;37948;22350;16368;19571;21127;42363;41231;48553;54537;57149;65270;69805;70809;73223;75549;76985;66402
-63;'233;Estonia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5403;5811;7943;9340;7574;7398;6678;6032;6563;6698;6805;9503;16481;10038;6345;7216;8197;13208;13625;15131;13691;14206;17384.28;20312;20286;20568;26909;30681;27351
-63;'233;Estonia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;93300;118000;121400;139686;192650;145520;152130;145648;156336;163658;177596;194894;196043;103825;130532;148128;137475;153809;157389;129515;97698;95966;94313;85376;83177;103291;44017;3015
-63;'233;Estonia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13007;14376;14891;17063;17484;20191;19698;18053;21000;28461;32025;37049;48723;54869;26823;32290;45963;44902;46590;45073;31511;25309;25576.57;28566;26225;25600;34036;19753;4067
-63;'233;Estonia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;925;1600;980;2250;4291;4635;9443;13920;18480;15518;14811;15771;17288;23485;26878;27373;31623;32787;35873;39942;39060;45109;44175;55119;37550
-63;'233;Estonia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;163;160;225;532;1065;1518;2811;4472;6904;5596;3885;5289;6443;6660;8690;7860;6250;6372;7694.7;11245;9549;10027;18872;17625;10510
-63;'233;Estonia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;322;230;14120;290;571;2000;4000;5000;6000;5500;284;191;188;196;232;216;352;1019;2251;677;1233;625;679;566;372
-63;'233;Estonia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;87;49;1202;68;167;331;665;1606;2241;2209;139;103;124;114;128;70;136;355;668.03;286;438;488;406;285;128
-63;'233;Estonia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38400;65000;79000;109600;151100;166800;177000;170000;177400;172890;83070;84229;89831;93000;94728;46789;42000;26800;36000;69189;78076;66630;74520;78450;73650;101000;97755;88740;83000;78510;75000;33300
-63;'233;Estonia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;252;700;641;4887;12885;39884;31370;45945;38685;23415;28805;36192;33141;43368;50989;54448;45621;58735;71739;36315;37455;44094;53296;57204;61838;64573;63620;69454;77174;65402;51998
-63;'233;Estonia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;184;506;969;1855;4001;6150;7805;7634;8023;8553;11458;14820;15638;17333;24373;23891;16280;17133;20229;17244;18789;20998;20206;19923;22173.56;25466;23011;26583;36174;36648;31588
-63;'233;Estonia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8386;22096;18000;87800;142700;154900;195100;179241;195820;188210;159500;70221;70021;71729;65026;37970;33942;34556;51767;56886;72731;75582;88991;87260;91310;89936;83220;90119;78136;82758;70199;41456
-63;'233;Estonia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1862;4078;4345;7695;10558;10291;13208;11902;11721;11861;10151;13158;15590;17309;17873;16427;16429;13453;18527;19067;17855;19233;22756;19283;19395;19966.1;20871;21386;21975;26992;27586;19253
-63;'233;Estonia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84200;124100;134300;141400;140600;139600;135570;45100;42966;53811;61000;56728;5939;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;4887;9885;19984;19332;30365;27375;13075;17422;24021;20058;27705;20179;35171;29639;42505;55156;15189;17296;20945;26281;26410;29237;29648;28353;28187;34471;30119;22162
-63;'233;Estonia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;969;1855;3013;4151;4164;5618;5967;5504;7837;11075;11375;12151;10083;10370;7380;7476;9799;7006;8009;9593;9090;8129;9364.8;10993;9450;10086;14592;16299;14158
-63;'233;Estonia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84800;139700;128800;170000;152601;64580;74470;45380;44220;44008;49538;44891;3897;2338;1866;3258;2003;3514;3045;2673;2883;2318;3179;2292;1962;2820;7041;6687;2247
-63;'233;Estonia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6950;9913;7513;10180;8797;4063;4691;2763;10821;12248;11959;12479;5171;5997;4892;6914;5025;3365;2707;2465;2042;1688;1817.45;2051;1514;2725;4718;5553;1364
-63;'233;Estonia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;17600;4387;10430;6430;6160;8577;8999;10715;11234;26279;16445;11828;13831;13701;18378;18306;21655;24864;26054;28929;31338;32052;37827;38128;32633;27360
-63;'233;Estonia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;1453;1011;1348;1471;2482;3183;3200;3454;3867;11954;12434;7883;8781;9091;9294;10038;10666;10260;10675;11824.92;13538;12745;15542;19742;19523;16556
-63;'233;Estonia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;96;1810;290;270;501;1461;2323;918;10111;6097;1643;9032;8791;5920;5714;8816;10165;13694;13427;12974;16026;16054;17028;14949;8004
-63;'233;Estonia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;32;176;129;100;372;670;1004;761;5095;3556;1448;3837;4747;3289;3269;4307;4798;5806;6258.08;7093;7634;8496;10570;11607;8196
-63;'233;Estonia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18400;36000;44000;25400;27000;32500;35600;29400;37800;37320;37970;41263;36020;32000;38000;40850;42000;26800;36000;69189;78076;66630;74520;78450;73650;101000;97755;88740;83000;78510;75000;33300
-63;'233;Estonia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;75;200;0;0;2000;2300;7651;5150;4880;4180;2806;3172;2368;4429;4531;2832;4154;2399;2882;2748;1853;1494;2151;4740;3672;3587;3215;3440;4575;2650;2476
-63;'233;Estonia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;77;137;0;0;426;546;2630;668;585;567;438;545;809;1315;2336;1087;1017;876;1339;944;742;739;856;1119;983.84;935;816;955;1840;826;874
-63;'233;Estonia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3082;6381;3400;3000;3000;26100;24500;26544;129430;113450;113850;25500;24552;19868;19217;23962;25507;31047;39477;46092;63297;66823;77502;74212;75298;73330;67954;72131;59262;58689;48563;31205
-63;'233;Estonia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;759;1243;745;745;645;2778;2974;3073;7482;7041;7288;1965;2672;4346;4633;6161;6876;7113;7776;9295;11201;13257;15984;12443;11901;11890.58;11727;12238;10754;11704;10426;9693
-63;'233;Estonia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;29000;35000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;177;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;107;369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5304;15715;14600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103;2835;3600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50200;50200;50200;21200;36200;44000;44000;49500;65000;70740;84300;102000;113190;117000;186300;245200;258225;259100;282775;284621;327534;309878;326228;321348;329429;331193;331039;312771;352300;358081;337000;251300
-63;'233;Estonia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;99;127;127;127;5400;700;1163;1703;5740;2040;2149;1740;2218;3704;372;512;2320;3268;5259;14896;22483;28353;42212;35576;33419;19241;47357;48610;69197;55469;69276
-63;'233;Estonia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;39;42;42;42;2341;244;313;494;1441;568;761;812;816;1699;323;337;347;1259;2486;7781;13635;17948;24019;18388;20316.96;13906;26288;21388;34532;37892;38082
-63;'233;Estonia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745;4766;16206;11206;0;13000;14600;14033;14480;15130;18370;25753;32099;38250;95532;180792;182867;190180;180698;202798;208681;199974;234457;237381;264056;256841;252128;254143;265835;289997;269723;257372
-63;'233;Estonia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;545;4175;4175;0;1330;1742;987;1386;1242;1508;2264;3040;4623;29036;88920;95249;71373;96311;102306;94323;93346;111125;97538;105879;116531.8;130525;115577;112384;150113;169683;137961
-63;'233;Estonia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42200;42200;42200;13200;28200;36000;44000;49500;54000;51700;65300;67100;68600;67000;136300;190200;200225;199100;220775;220781;232859;223878;234765;233897;238626;239000;234956;222251;246000;252581;227000;156300
-63;'233;Estonia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;97;19;19;19;4400;400;491;593;4430;270;452;195;1248;3347;254;423;119;144;1593;12311;21586;27605;41629;35036;33041;16636;46141;44322;44100;42101;62141
-63;'233;Estonia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;38;10;10;10;1902;182;185;294;1153;171;221;189;358;1460;219;254;121;162;1224;6811;13328;17706;23789;18163;20168.32;13493;26092;20825;29038;35478;37146
-63;'233;Estonia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;581;11000;6000;0;2000;2700;28;110;0;0;0;0;0;51344;126378;125385;133934;132832;143702;146399;138016;173511;173362;193309;184589;181417;186629;199129;222489;201123;182726
-63;'233;Estonia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;199;3793;3793;0;178;801;1;55;0;0;0;0;0;24907;82253;86930;65738;88505;90223;84722;84286;101782;89446;96045;105130.16;120461;106152;102826;134870;155541;127968
-63;'233;Estonia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42200;42200;42200;13200;28200;36000;44000;49500;54000;51700;65300;67100;68600;67000;136300;190200;200225;199100;220775;220781;232859;223878;234765;233897;238626;239000;234956;222251;246000;252581;227000;156300
-63;'233;Estonia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;97;19;19;19;4400;400;484;573;4400;0;294;1;989;3296;218;423;104;47;1584;12296;21580;27578;41602;35206;33578;17019;55182;47375;49076;42120;62086
-63;'233;Estonia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;38;10;10;10;1902;182;174;262;1156;4;105;5;164;1421;186;251;63;44;1190;6780;13318;17650;23737;18223;20417.69;13786;29874;21880;32422;35397;36991
-63;'233;Estonia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;581;11000;6000;0;2000;2700;0;120;0;0;0;0;0;51344;126378;125385;133934;132832;143702;146396;138016;173408;173795;193110;182946;177023;186326;197756;224779;199343;181036
-63;'233;Estonia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;199;3793;3793;0;178;801;0;63;0;0;0;0;0;24907;82253;86930;65738;88504;90220;84716;84285;101725;89658;95371;101362.29;115064;102229;98963;133629;147281;119436
-63;'233;Estonia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172000;164956;166942;174000;188008;180000;136300
-63;'233;Estonia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;1404;456;204;199;61
-63;'233;Estonia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16.71;0;609;186;104;107;45
-63;'233;Estonia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152466;154461;145491;157508;189862;170423;132613
-63;'233;Estonia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82200.47;99065;77039;77003;105554;119464;83707
-63;'233;Estonia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;7200;7200;7200;0;0;0;0;0;0;0;0;0;67300;126200;138634;138600;147981;150781;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;0;0;0;0;8;16;0;16;0;;;;;;;
-63;'233;Estonia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;44;0;0;0;0;9;24;0;7;0;;;;;;;
-63;'233;Estonia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;49873;126368;125367;133934;132556;140707;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;24110;82178;86914;65738;88219;87897;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;158413;151048;166248;169294;173099;;;;;;;
-63;'233;Estonia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;19;19;19;0;0;0;0;0;0;0;0;0;0;35;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;10;10;0;0;0;0;0;0;0;0;0;0;24;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;143325;131754;157418;155098;158295;;;;;;;
-63;'233;Estonia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;82460;80003;91287;78424;76398;;;;;;;
-63;'233;Estonia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;35000;35000;6000;21000;36000;44000;49500;54000;51700;65300;67100;68600;67000;69000;64000;61591;60500;72794;70000;74446;72830;68517;64603;65527;67000;70000;55309;72000;64573;47000;20000
-63;'233;Estonia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;76;0;0;0;4400;400;483;573;4400;0;294;1;989;3296;180;423;104;47;1584;12288;21564;27578;41586;35028;33019;16633;44726;43850;43874;41857;62025
-63;'233;Estonia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;29;0;0;0;1902;180;174;262;1122;4;105;5;164;1421;118;251;63;44;1190;6771;13294;17650;23730;18150;20130.82;13484;25446;20579;28846;35243;36946
-63;'233;Estonia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;581;11000;6000;0;2000;2700;0;110;0;0;0;0;0;1471;10;18;0;276;2995;3071;6262;15990;18244;34815;30480;22047;36405;39354;31416;28484;48423
-63;'233;Estonia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;199;3793;3793;0;178;801;0;55;0;0;0;0;0;797;75;16;0;285;2323;2256;4282;10438;10956;18973;19161.83;15687;23215;21465;25063;27459;35729
-63;'233;Estonia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;14000;14000;6000;21000;36000;44000;49500;54000;51700;65300;67100;68600;67000;69000;64000;61591;60500;72794;70000;74446;72830;68517;64603;65527;67000;70000;55309;72000;64573;47000;20000
-63;'233;Estonia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;478;570;4390;0;291;0;845;2999;0;279;0;0;0;0;0;0;0;884;297;0;1211;1359;6771;5501;5594
-63;'233;Estonia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;154;256;1114;0;95;0;79;1246;0;141;0;0;0;0;0;0;0;433;146.99;0;564;612;4090;3699;3182
-63;'233;Estonia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;11000;6000;0;0;900;0;110;0;0;0;0;0;1471;1;0;0;0;0;63;0;0;0;312;405;0;224;86;3082;5144;6034
-63;'233;Estonia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;3793;3793;0;0;407;0;55;0;0;0;0;0;797;1;0;0;0;0;61;0;0;0;172;199.92;0;126;50;2504;4563;4470
-63;'233;Estonia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;;;;;400;2;0;10;0;0;0;140;292;175;140;102;42;1581;12283;21557;27572;41568;32280;28606;16605;43490;36877;37074;35819;56410
-63;'233;Estonia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;;;;;176;11;0;2;0;0;0;74;162;104;94;55;31;1180;6759;13272;17636;23703;16623;17319.85;13439;24839;17282;24706;31148;33722
-63;'233;Estonia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;0;0;2000;1800;0;0;0;0;0;0;0;0;0;0;0;276;2994;3007;6262;15990;18244;34503;30072;22047;36181;39268;28334;23340;42387
-63;'233;Estonia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;178;394;0;0;0;0;0;0;0;0;0;0;0;285;2321;2193;4282;10438;10956;18801;18958.62;15687;23089;21415;22559;22896;31249
-63;'233;Estonia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-63;'233;Estonia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4116;28;25;5614;29;537;21
-63;'233;Estonia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2663.98;45;43;2685;50;396;42
-63;'233;Estonia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;2
-63;'233;Estonia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3;0;0;0;0;0;10
-63;'233;Estonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;21000;21000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;558;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;191;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-63;'233;Estonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;4400;0;3;3;0;0;3;1;4;5;5;4;2;5;3;5;7;6;18;1864;;;;;;;
-63;'233;Estonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1902;4;9;6;6;4;10;5;11;13;14;16;8;13;10;12;22;14;27;1094;;;;;;;
-63;'233;Estonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;9;18;0;0;1;1;0;0;0;0;;;;;;;
-63;'233;Estonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;74;16;0;0;2;2;0;0;0;0;;;;;;;
-63;'233;Estonia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;178;543;386;9052;3069;4998;64;0
-63;'233;Estonia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0;73;270.16;302;3819;1115;3472;47;0
-63;'233;Estonia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;453;0;0;515;4430;894;3501;436;0
-63;'233;Estonia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;278;0;0;312;1975;495;3012;358;0
-63;'233;Estonia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;20;30;270;158;194;259;51;36;0;15;97;9;15;6;27;27;8;6;3;11;16;22;45;55
-63;'233;Estonia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;32;31;167;116;184;194;39;33;3;58;118;34;31;10;56;52;13;20.8;9;37;60;88;128;155
-63;'233;Estonia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;28;0;0;0;0;0;0;0;0;0;0;0;0;3;0;103;20;199;1643;4909;4733;2267;1211;2216;1690
-63;'233;Estonia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;1;0;0;0;0;0;0;0;0;0;0;1;3;6;1;57;66;674;3767.86;5709;5898;4358;4253;8618;8532
-63;'233;Estonia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0;0;13;22;92;43;65;166;140;239;157;491;440;22;68;22;233;258;218;192
-63;'233;Estonia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;16;0;10;20;91;43;60;149;94;187;150;236;229;20.64;69;14;182;237;212;189
-63;'233;Estonia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0;0;0;0;0;743;531;955;1157;1090;1092;814;841;736;0;0;0;86;0;20
-63;'233;Estonia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;0;0;0;0;0;110;144;384;271;311;318;211;205;214.12;0;0;0;79;0;14
-63;'233;Estonia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;8000;8000;0;0;11000;19040;19000;34900;44590;50000;50000;55000;58000;60000;62000;63840;94675;86000;91463;87451;90803;92193;96083;90520;106300;105500;110000;95000
-63;'233;Estonia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;108;108;108;1000;300;672;1110;1310;1770;1697;1545;970;357;118;89;2201;3124;3666;2585;897;748;583;540;378;2605;1216;4288;25097;13368;7135
-63;'233;Estonia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;32;32;32;439;62;128;200;288;397;540;623;458;239;104;83;226;1097;1262;970;307;242;230;225;148.64;413;196;563;5494;2414;936
-63;'233;Estonia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;4185;5206;5206;0;11000;11900;14005;14370;15130;18370;25753;32099;38250;44188;54414;57482;56246;47866;59096;62282;61958;60946;64019;70747;72252;70711;67514;66706;67508;68600;74646
-63;'233;Estonia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;346;382;382;0;1152;941;986;1331;1242;1508;2264;3040;4623;4129;6667;8319;5635;7806;12083;9601;9060;9343;8092;9834;11401.64;10064;9425;9558;15243;14142;9993
-63;'233;Estonia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41700;41700;41700;41700;53000;35000;42600;48100;54000;70070;75030;64004;65788;64038;77994;77700;68374;63378;75671;74001;78177;73042;73636;69863;73791;76778;76734;76073;69100;72853;56750;24700
-63;'233;Estonia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1133;6203;17700;27200;35900;68900;89600;56720;64610;77050;85450;85760;95865;93857;139238;147590;148763;119708;136516;138512;141344;151896;166017;154330;156972;159442;149123;142000;133172;138468;123027;108064
-63;'233;Estonia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;4581;12049;27052;32862;39029;64563;36021;42767;48996;51907;61516;76756;82263;120436;145979;169160;122223;138460;151113;143079;161434;171243;129150;126719;132051.57;139928;130704;116073;133855;150598;131137
-63;'233;Estonia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;907;586;1500;4300;26000;52300;83700;52335;52550;56800;68300;67869;80904;80030;108033;100013;97334;87269;103912;93495;108205;102019;91264;90514;85873;87615;86249;64122;71166;83128;59382;31072
-63;'233;Estonia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635;200;950;3864;16574;29818;44392;25199;27334;27992;35988;43928;51417;50849;87096;100484;102631;69916;96492;106620;103128;103407;94301;72848;64475;73441.04;87142;60863;57160;85473;89463;39943
-63;'233;Estonia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;8700;8700;8700;20000;0;0;0;0;0;30;44;51;38;22;0;0;0;13;0;593;227;668;305;343;367;404;972;900;489;450;1300
-63;'233;Estonia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;4796;13900;23500;30000;46900;58600;30681;37030;36940;42600;43834;54906;53279;93998;101289;105414;77806;91639;91875;95061;95201;99505;89640;93020;90836;88385;84387;72635;69173;65179;54781
-63;'233;Estonia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;2837;7078;21292;27276;24015;35337;17545;20011;20021;22237;28096;41775;47550;81299;95275;117365;82825;92175;96578;92690;92936;97936;71488;72199;71662.86;77754;73409;58988;59836;77517;68976
-63;'233;Estonia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;250;800;2200;8200;19100;33400;1673;1420;4030;8350;9459;11667;3402;33548;31950;29409;16137;15670;12419;10838;8196;6653;4948;1012;582;1261;1372;1867;1094;3255;1713
-63;'233;Estonia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;102;610;1675;6555;12229;17959;838;693;2619;4247;5079;7871;2990;32284;34938;34203;18567;17564;16495;13661;11511;10401;5497;1208;938.98;2330;1988;2251;1696;5208;3153
-63;'233;Estonia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;544;500;159;150;500
-63;'233;Estonia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;1634;8000;10400;10800;30900;29800;12188;14140;14890;18460;15491;14982;12436;12834;13870;12453;8267;9125;13295;13299;15596;13071;13579;13187;13669;12821;9113;9242;9305;9886;6073
-63;'233;Estonia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;437;3027;5912;6545;10874;12233;4190;4330;4302;3770;3692;4948;7733;8413;9770;9199;5414;5479;10060;9886;11159;9034;6884;6615;7019.27;7886;5627;4936;4890;7718;5300
-63;'233;Estonia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;215;300;1200;3100;11100;19700;669;1060;2680;5290;2925;4294;45;93;429;125;275;379;0;0;108;15;52;28;70;351;471;272;300;610;354
-63;'233;Estonia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;61;172;662;2190;7139;7866;289;474;1428;2353;1501;2089;15;53;281;116;212;319;0;1;102;11;31;19;55.56;313;411;202;263;645;409
-63;'233;Estonia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;8700;8700;8700;20000;0;0;0;0;0;30;44;51;38;22;0;0;0;13;0;593;227;668;305;343;367;404;428;400;330;300;800
-63;'233;Estonia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;3162;5900;13100;19200;16000;28800;18493;22890;22050;24140;28343;39924;40843;81164;87419;92961;69539;82514;78580;81762;79605;86434;76061;79833;77167;75564;75274;63393;59868;55293;48708
-63;'233;Estonia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2400;4051;15380;20731;13141;23104;13355;15681;15719;18467;24404;36827;39817;72886;85505;108166;77411;86696;86518;82804;81777;88902;64604;65584;64643.59;69868;67782;54052;54946;69799;63676
-63;'233;Estonia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;35;500;1000;5100;8000;13700;1004;360;1350;3060;6534;7373;3357;33455;31521;29284;15862;15291;12419;10838;8088;6638;4896;984;512;910;901;1595;794;2645;1359
-63;'233;Estonia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;41;438;1013;4365;5090;10093;549;219;1191;1894;3578;5782;2975;32231;34657;34087;18355;17245;16495;13660;11409;10390;5466;1189;883.41;2017;1577;2049;1433;4563;2744
-63;'233;Estonia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;1872;2120;2000;4870;4181;4213;4004;4658;4776;4222;5967;5786;3852;2592;2467;2439;1954;2865;3538;5414;5885;3996;4175;3597;3189
-63;'233;Estonia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3765;1253;1257;1187;3539;3061;3154;3093;3910;4276;3907;5353;4735;3630;2299;2209;2258;1448;2020;2308.11;3687;4154;2774;3043;3400;3500
-63;'233;Estonia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;3;50;0;0;13;245;355;1;48;142;37;293;578;44;87;29;3;3;2;162;24;3;40;62;86
-63;'233;Estonia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2494;5;9;9;20;12;94;236;1;32;117;44;188;681;45;76;39;4;1;1.69;432;55;3;113;68;162
-63;'233;Estonia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;44;51;38;22;0;0;0;13;0;593;227;668;250;343;367;404;338;300;327;300;300
-63;'233;Estonia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14100;8345;8970;6790;9680;11794;13801;13596;47486;50395;47214;22114;27059;25841;26998;26783;29577;22088;20052;21355;21201;19298;14522;13609;13620;12124
-63;'233;Estonia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10367;5004;5461;4623;7096;9563;12850;13955;39045;46168;56758;27895;33617;30022;29247;29711;34126;23089;20865;22577.47;25910;23541;19090;20156;26426;23936
-63;'233;Estonia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800;774;250;910;380;424;2348;319;30346;28892;27583;14957;13226;10315;9597;7767;6256;4539;323;272;246;292;905;309;974;772
-63;'233;Estonia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7224;414;149;705;279;407;1748;292;28624;31239;31723;17073;14670;12718;12163;10979;9884;5041;510;539;681;908;1239;716;1846;1767
-63;'233;Estonia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55;0;0;0;90;100;3;0;500
-63;'233;Estonia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;8276;11800;13260;9590;12368;21910;23243;29020;32248;41525;41458;49669;48887;52172;50355;54418;52019;56916;52274;48949;50091;44875;42084;38076;33395
-63;'233;Estonia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8972;7098;8963;9909;7832;11780;20823;22769;29931;35061;47501;44163;48344;52866;51258;49857;52518;40067;42699;39758.01;40271;40087;32188;31747;39973;36240
-63;'233;Estonia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;227;60;440;2680;6097;4780;2683;3108;2581;1559;868;1772;1526;1197;234;353;354;658;238;502;585;687;445;1609;501
-63;'233;Estonia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;130;61;477;1595;3159;3940;2447;3606;3386;2247;1238;2387;3096;1452;354;467;421;678;342.72;904;614;807;604;2649;815
-63;'233;Estonia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;33000;33000;33000;33000;35000;42600;48100;54000;70070;75000;63960;65737;64000;77972;77700;68374;63378;75658;74001;77584;72815;72968;69558;73448;76411;76330;75101;68200;72364;56300;23400
-63;'233;Estonia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;1407;3800;3700;5900;22000;31000;26039;27580;40110;42850;41926;40959;40578;45240;46301;43349;41902;44877;46637;46283;56695;66512;64690;63952;68606;60738;57613;60537;69295;57848;53283
-63;'233;Estonia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;1744;4971;5760;5586;15014;29226;18476;22756;28975;29670;33420;34981;34713;39137;50704;51795;39398;46285;54535;50389;68498;73307;57662;54520;60388.7;62174;57295;57085;74019;73081;62161
-63;'233;Estonia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890;336;700;2100;17800;33200;50300;50662;51130;52770;59950;58410;69237;76628;74485;68063;67925;71132;88242;81076;97367;93823;84611;85566;84861;87033;84988;62750;69299;82034;56127;29359
-63;'233;Estonia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629;98;340;2189;10019;17589;26433;24361;26641;25373;31741;38849;43546;47859;54812;65546;68428;51349;78928;90125;89467;91896;83900;67351;63267;72502.06;84812;58875;54909;83777;84255;36790
-63;'233;Estonia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1550;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-63;'233;Estonia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2600;1000;400;350;550;820;2130;2900;2467;1540;2793;1262;3245;2882;2399;4102;2723;4715;6401;6290;5809;5861;1504;483;533;563;322;676
-63;'233;Estonia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708;1928;696;310;305;399;616;1498;2538;2442;1315;1707;1825;5041;3719;3451;6137;4186;6621;8839;7485;6804;6962.39;2691;1254;1492;1581;1185;2488
-63;'233;Estonia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;700;1000;300;287;230;240;370;83;50;19;10;7;34;13;53;80;54;27;1204;301;139;31;27;34;111;199;140;184
-63;'233;Estonia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;355;502;115;140;70;69;112;46;46;17;17;10;50;35;144;332;184;80;3178;674;396;94.06;99;116;348;647;552;810
-63;'233;Estonia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42600;47700;54000;70070;75000;63960;65737;64000;77972;77700;68374;61828;75658;74001;77584;72815;72968;69052;73448;75502;75421;73936;67900;71816;55800;23100
-63;'233;Estonia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28400;20997;23950;36200;33910;31486;37887;38159;41379;44793;37844;36331;39531;39883;41488;51635;59884;58138;57920;62591;59097;56935;59793;68595;57321;52490
-63;'233;Estonia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22402;15337;17091;23334;21246;23031;30507;30970;34871;46776;43328;32506;38433;44047;42131;58613;61728;47708;45549;51382.15;57577;53731;52866;69519;69192;57244
-63;'233;Estonia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49400;50341;50360;51350;59510;58236;69101;76540;74404;68018;67844;71056;88044;80815;97147;93638;83248;85049;84538;86933;84896;62673;69149;81786;55944;29141
-63;'233;Estonia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25545;24173;26303;24833;31513;38689;43371;47655;54022;64511;67133;50323;77344;87978;87713;90014;78892;64891;61445;71324.62;83358;57792;53664;82047;82843;35281
-63;'233;Estonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;33000;33000;33000;33000;35000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;1407;3800;3400;3200;19000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;1744;4971;4753;3159;12540;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890;336;700;2100;17100;32000;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629;98;340;2189;9664;16927;;;;;;;;;;;;;;;;;;;;;;;;;;
-63;'233;Estonia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;147;100;258;300;100
-63;'233;Estonia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;7025;9520;9500;13400;11019;11138;14977;18534;20121;17382;14932;16362;17285;16085;17525;23005;23026;25550;27827;22719;20250;20257;24236;20638;19448
-63;'233;Estonia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3964;2824;4300;3957;5245;4638;4653;6166;8596;11692;10729;7200;9440;11836;9502;10879;14166;11896;12484;15818.01;14815;10370;9335;15671;15855;11630
-63;'233;Estonia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;408;2710;1660;10610;288;35;2337;308;1260;4939;6898;8022;5629;8383;10305;8134;12503;11479;12811;10467;4979;4642;3775;2093;791
-63;'233;Estonia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2601;171;1737;899;5842;197;16;1526;3482;4300;3270;3610;5017;4320;5291;7244;5445;7127;6196;8489.16;7294;3285;2752;3199;1859;815
-63;'233;Estonia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4477;4496;4807;5185;5185;6837;7300;2476;2000;1000
-63;'233;Estonia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;3252;4070;12620;8390;5316;8436;8697;9185;9943;8716;8258;9521;7543;8142;17843;19270;17362;15690;18867;19599;22008;23794;26129;22379;21067
-63;'233;Estonia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404;4761;5688;11003;8167;7235;12174;14344;15251;20780;19426;13695;17582;16787;17593;31741;30591;21572;19638;21615.05;26181;28951;29327;34101;34389;29938
-63;'233;Estonia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600;442;170;120;60;152;5483;5955;5287;5043;4904;4636;7607;5685;8630;9481;7102;5635;5130;7035;6047;4760;5154;9251;6834;6169
-63;'233;Estonia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;372;123;135;104;199;3737;3451;3692;3951;4942;4569;7777;6611;11915;13046;9590;5873;5366;6352.65;5712;4112;4818;9000;9323;7459
-63;'233;Estonia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42600;47700;54000;67570;75000;63960;65737;64000;72681;67300;66412;60278;72426;70243;73721;72331;67927;63987;67960;69684;69603;57475;59500;68544;53000;20000
-63;'233;Estonia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100;9277;8450;8490;9630;12513;15884;12547;12504;13556;10958;12286;12585;14122;16323;15042;16113;16108;15140;14057;14589;12654;14491;16212;11972;10903
-63;'233;Estonia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7721;6882;6144;6188;6761;9715;12365;9448;10386;13512;12605;11166;10834;14847;14503;15241;16022;13515;12744;13155.68;15518;13312;13576;18338;16880;14372
-63;'233;Estonia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32700;49414;47420;49570;48820;57778;63555;67352;68393;61379;57673;59363;72184;69316;80032;73323;66797;65244;66960;65998;67859;52099;58741;67905;46615;21835
-63;'233;Estonia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17200;23598;24409;23799;25553;38270;39594;42308;46632;56079;58695;42026;64390;76874;70391;69301;63210;50888;49357;55852.61;70045;49954;45755;69332;71224;26610
-63;'233;Estonia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2500;0;0;0;0;5291;10400;1962;1550;3232;3758;3863;484;564;569;681;633;633;9477;1000;538;500;2000
-63;'233;Estonia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;1443;1910;5590;2490;2638;2429;1938;1156;1173;788;855;1063;933;938;1225;1496;1642;1540;1840;2190;2023;1251;2018;2332;1072
-63;'233;Estonia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1313;870;959;2186;1073;1443;1315;1012;638;792;568;445;577;577;533;752;949;725;683;793.42;1063;1098;628;1409;2068;1304
-63;'233;Estonia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;77;60;0;20;18;28;896;416;336;328;159;231;185;102;529;1215;1667;969;1089;523;835;612;855;402;346
-63;'233;Estonia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;32;34;0;14;23;24;370;216;181;226;118;160;173;116;423;647;1003;526;630.2;307;441;339;516;437;397
-63;'233;Estonia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;506;0;909;909;1165;300;548;500;300
-63;'233;Estonia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;2000;2200;4692;3080;3090;6810;7540;605;879;1068;246;2260;2689;2947;2652;2072;345;227;262;223;154;137;195;211;137;205;117
-63;'233;Estonia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;499;1778;6514;2834;5266;5025;6926;7851;2032;2428;2559;2103;3426;3173;4401;4351;4072;3264;2740;2469;2167;2044.16;1906;2310;2727;2919;2704;2429
-63;'233;Estonia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;600;34;540;1180;70;91;86;69;71;38;47;63;145;181;166;158;159;216;184;69;65;43;39;49;43;34
-63;'233;Estonia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;773;48;268;471;116;114;129;187;773;1025;1245;991;1440;1815;1570;1802;1830;1786;1426;1083.38;1355;967;897;1083;860;699
-63;'233;Estonia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146809.32;161519;164098;166149;197019;223617;190469
-63;'233;Estonia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1238150.25;1444219;1410628;1433506;1717508;1897278;1564487
-63;'233;Estonia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7543.53;11791;11225;18592;25508;31564;21497
-63;'233;Estonia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147008.26;167071;175265;217921;276748;326051;275847
-63;'233;Estonia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3574.78;6022;5824;13158;19524;23345;14837
-63;'233;Estonia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125008.04;141591;139703;174930;225035;256914;227194
-63;'233;Estonia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3968.75;5769;5401;5434;5984;8219;6660
-63;'233;Estonia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000.22;25480;35562;42991;51713;69137;48653
-63;'233;Estonia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12403.8;15377;15603;16259;17852;27343;23205
-63;'233;Estonia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44630.5;48536;46546;45983;52959;73788;63414
-63;'233;Estonia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4714.15;4042;3006;3329;3925;3049;3231
-63;'233;Estonia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7960.12;10010;7838;7082;9028;8807;16286
-63;'233;Estonia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41836.88;46926;46903;46333;52190;52790;40586
-63;'233;Estonia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331818.13;367053;356967;390292;517682;537895;408748
-63;'233;Estonia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560000;500000
-63;'233;Estonia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8074;5437
-63;'233;Estonia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8099;5710
-63;'233;Estonia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102875;99262
-63;'233;Estonia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104676;73846
-63;'233;Estonia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000
-63;'233;Estonia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;67
-63;'233;Estonia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;91
-63;'233;Estonia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;617
-63;'233;Estonia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;405
-63;'233;Estonia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-63;'233;Estonia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;87
-63;'233;Estonia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;156
-63;'233;Estonia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-63;'233;Estonia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-63;'233;Estonia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68720.73;68317;68851;64623;73849;91079;84334
-63;'233;Estonia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286503.87;318565;298628;277143;292945;311898;292102
-63;'233;Estonia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6638.2;7873;11148;9402;14355;8486;8888
-63;'233;Estonia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361276.59;465726;465880;425323;476361;535282;429993
-63;'233;Estonia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952.04;7193;7362;7611;9340;9306;8728
-63;'233;Estonia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58952.78;67258;59504;69762;91785;103557;78097
-63;'233;Estonia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101380.99;116315;117719;118752;118881;138868;142551
-63;'233;Estonia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79329.48;85647;77446;78509;78313;98745;105131
-63;'233;Estonia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1685.95;1914;1598;1730;1912;3118;1222
-63;'233;Estonia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276.63;168;175;350;274;168;480
-63;'233;Estonia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11404.78;13711;13365;14536;12885;14477;17454
-63;'233;Estonia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3995.31;3083;2592;1926;2161;2700;3311
-63;'233;Estonia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29607.88;32303;32776;34322;30549;38185;44022
-63;'233;Estonia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12285.77;6312;1944;2334;1740;1719;1911
-63;'233;Estonia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34559.54;41440;40939;40982;46397;54350;49938
-63;'233;Estonia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22401.41;29127;28632;33791;37368;47092;43790
-63;'233;Estonia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24122.85;26947;29041;27182;27138;28738;29915
-63;'233;Estonia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40370.36;46957;44103;40108;36770;47066;55639
-209;'748;Eswatini;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73856;86502;71569;58486;80886.39;97173.16;90714.16
-209;'748;Eswatini;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96670;104458;111954;98519;143197.69;147751.1;162066.46
-209;'748;Eswatini;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;442;395;392;401;478;478;478;478;478;478;478;1539;1408;1408;1408;1408;1408;1408;730;700;655;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;294;30876;31103;30794;26833;27656;27532;26551;28532;31243;20977;19933;32387.39;45019.17;29621.17
-209;'748;Eswatini;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;862;718;788;623;820;1155;2348;11865;12758;17015;17798;17721;30565;29690;25138;43342;33010;41235;48977;63455;70137;57371;57352;84424;83424;81854;78357;79754;75358;74516;74516;74516;72805;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;46050;43953;45470;41218.25;40879;49466;51268;77744;89612;97093;105360;92909;137157.69;142032.1;153731.46
-209;'748;Eswatini;1861;Roundwood;5516;Production;m3;137000;140000;532000;650000;652000;660000;665000;710000;765000;885000;1265000;1395000;1402000;1402000;2061000;2061000;2061000;2061000;1403000;1604400;2275905;2293203;2307170;2316549;2326053;1297981;1057911;1916718;1680510;1680886;1697424;1718727;1700602;1715023;1731187;1745278;1759646;1780364;1799289;1818750;1836760;1855232;1874178;1893614;1913556;1929511;1945797;1962423;1979398;2248000;2366000;2197000;2152000;2107000;2263000;2698000;2688000;2754000;2872843;2251819;2263760;2275870;2288151
-209;'748;Eswatini;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;7000;25000;20000;15000;15000;15000;15000;15000;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;61265;44772;91543;156391;217496;249161;206407;139101;225207;265348;298798;613955.43;659354;613337
-209;'748;Eswatini;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;99;179;165;103;158;158;158;158;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;3570;2053;3237;3753;5400;5067;4107;5680;7507;8134;7917;18912.12;21379;16470
-209;'748;Eswatini;1861;Roundwood;5916;Export quantity;m3;;;10000;38400;50400;50400;58700;127900;125800;122200;114800;72200;90300;150700;155400;256200;237800;214100;244200;164700;270500;270500;270100;270100;270100;96800;96800;53600;50000;;;;;;;;;;;;;;;;;;;;21;312589;411682;268517;280529;305570;443700;838720;762344;777708;874263;613569;870488.2;993938;1262313
-209;'748;Eswatini;1861;Roundwood;5922;Export value;1000 USD;;;70;192;336;336;384;534;723;563;613;618;2032;1157;2030;2807;2522;2992;3476;2532;3820;3820;3801;3801;3801;2231;2231;2231;655;;;;;;;;;;;;;;;;;;;;5;15098;17183;12151;12323;13614;16818;30248;33519;32556;34878;24455;40719.92;39378;42920
-209;'748;Eswatini;1862;Roundwood, coniferous;5516;Production;m3;112000;123000;503000;593000;595000;603000;620000;640000;690000;784000;1180000;1295000;1295000;1295000;1864000;1864000;1864000;1864000;1158000;1420000;1554000;1554000;1554000;1554000;1554000;521000;274000;1121000;875000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;984000;984000;984000;984000;984000;984000;984000
-209;'748;Eswatini;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124019;222957;261123;296517;609697.66;651550;607440
-209;'748;Eswatini;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165;7443;7885;7838;18600.12;21061;16138
-209;'748;Eswatini;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247614;245214;223126;10003;15122.36;7430;31289
-209;'748;Eswatini;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12142;9351;7317;487;331;138;650
-209;'748;Eswatini;1863;Roundwood, non-coniferous;5516;Production;m3;25000;17000;29000;57000;57000;57000;45000;70000;75000;101000;85000;100000;107000;107000;197000;197000;197000;197000;245000;184400;721905;739203;753170;762549;772053;776981;783911;795718;805510;816886;833424;854727;836602;851023;867187;881278;895646;916364;935289;954750;972760;991232;1010178;1029614;1049556;1065511;1081797;1098423;1115398;1384000;1502000;1333000;1288000;1243000;1399000;1834000;1704000;1770000;1888843;1267819;1279760;1291870;1304151
-209;'748;Eswatini;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15082;2250;4225;2281;4257.77;7804;5897
-209;'748;Eswatini;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;64;249;79;312;318;332
-209;'748;Eswatini;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514730;532494;651137;603566;855365.84;986508;1231024
-209;'748;Eswatini;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21377;23205;27561;23968;40388.92;39240;42270
-209;'748;Eswatini;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;621505;638803;652770;662149;671653;676981;683911;695718;705510;716886;733424;754727;769602;784023;797187;811278;825646;846364;865289;884750;902760;921232;940178;959614;979556;995511;1011797;1028423;1045398;1314000;1432000;1263000;1218000;1173000;1329000;1764000;1754000;1820000;1938843;1317819;1329760;1341870;1354151
-209;'748;Eswatini;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60228;40526;88887;155895;217000;248000;206000;133825;220536;261128;296991;605518.43;647928;601853
-209;'748;Eswatini;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3218;1590;2945;3699;5291;4959;4009;4666;6638;7210;7555;18368.12;20955;16055
-209;'748;Eswatini;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;311757;393557;258973;265492;265000;436000;818000;724104;758628;844113;593880;841788.2;972341;896313
-209;'748;Eswatini;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;13207;12990;9300;8713;8949;12192;25794;24564;26282;28466;19996;34261.92;34637;37430
-209;'748;Eswatini;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;120000;120000;120000;120000;120000;120000;120000
-209;'748;Eswatini;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120493;218351;257476;294710;601260.66;642236;598125
-209;'748;Eswatini;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4416;6592;7110;7476;18056.12;20725;15802
-209;'748;Eswatini;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240334;232054;211466;8804;15122.36;7430;31289
-209;'748;Eswatini;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7614;6416;5069;192;331;138;650
-209;'748;Eswatini;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;621505;638803;652770;662149;671653;676981;683911;695718;705510;716886;733424;754727;769602;784023;797187;811278;825646;846364;865289;884750;902760;921232;940178;959614;979556;995511;1011797;1028423;1045398;1314000;1432000;1263000;1218000;1173000;1329000;1764000;1634000;1700000;1818843;1197819;1209760;1221870;1234151
-209;'748;Eswatini;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13332;2185;3652;2281;4257.77;5692;3728
-209;'748;Eswatini;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;46;100;79;312;230;253
-209;'748;Eswatini;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483770;526574;632647;585076;826665.84;964911;865024
-209;'748;Eswatini;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16950;19866;23397;19804;33930.92;34499;36780
-209;'748;Eswatini;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60228;40526;88887;155895;217000;248000;206000;;;;;;;
-209;'748;Eswatini;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3218;1590;2945;3699;5291;4959;4009;;;;;;;
-209;'748;Eswatini;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;311757;393557;258973;265492;265000;436000;818000;;;;;;;
-209;'748;Eswatini;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;13207;12990;9300;8713;8949;12192;25794;;;;;;;
-209;'748;Eswatini;1865;Industrial roundwood;5516;Production;m3;137000;140000;532000;650000;652000;660000;665000;710000;765000;885000;1265000;1395000;1402000;1402000;2061000;2061000;2061000;2061000;1403000;1604400;1654400;1654400;1654400;1654400;1654400;621000;374000;1221000;975000;964000;964000;964000;931000;931000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000;934000
-209;'748;Eswatini;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;7000;25000;20000;15000;15000;15000;15000;15000;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;1037;4246;2656;496;496;1161;407;5276;4671;4220;1807;8437;11426;11484
-209;'748;Eswatini;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;99;179;165;103;158;158;158;158;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;352;463;292;54;109;108;98;1014;869;924;362;544;424;415
-209;'748;Eswatini;1865;Industrial roundwood;5916;Export quantity;m3;;;10000;38400;50400;50400;58700;127900;125800;122200;114800;72200;90300;150700;155400;256200;237800;214100;244200;164700;270500;270500;270100;270100;270100;96800;96800;53600;50000;;;;;;;;;;;;;;;;;;;;2;832;18125;9544;15037;40570;7700;20720;38240;19080;30150;19689;28700;21597;366000
-209;'748;Eswatini;1865;Industrial roundwood;5922;Export value;1000 USD;;;70;192;336;336;384;534;723;563;613;618;2032;1157;2030;2807;2522;2992;3476;2532;3820;3820;3801;3801;3801;2231;2231;2231;655;;;;;;;;;;;;;;;;;;;;3;1891;4193;2851;3610;4665;4626;4454;8955;6274;6412;4459;6458;4741;5490
-209;'748;Eswatini;1866;Industrial roundwood, coniferous;5516;Production;m3;112000;123000;503000;593000;595000;603000;620000;640000;690000;784000;1180000;1295000;1295000;1295000;1864000;1864000;1864000;1864000;1158000;1420000;1554000;1554000;1554000;1554000;1554000;521000;274000;1121000;875000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000;864000
-209;'748;Eswatini;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;830;4141;1921;261;261;1064;150;3526;4606;3647;1807;8437;9314;9315
-209;'748;Eswatini;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;330;190;22;77;80;40;749;851;775;362;544;336;336
-209;'748;Eswatini;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7145;44;427;390;1120;1460;7280;13160;11660;1199;0;0;0
-209;'748;Eswatini;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;6;63;44;92;178;4528;2935;2248;295;0;0;0
-209;'748;Eswatini;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;830;4141;1921;261;261;1064;150;3526;4606;3647;1807;8437;9314;9315
-209;'748;Eswatini;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;330;190;22;77;80;40;749;851;775;362;544;336;336
-209;'748;Eswatini;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7145;44;427;390;1120;1460;7280;13160;11660;1199;0;0;0
-209;'748;Eswatini;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;6;63;44;92;178;4528;2935;2248;295;0;0;0
-209;'748;Eswatini;1867;Industrial roundwood, non-coniferous;5516;Production;m3;25000;17000;29000;57000;57000;57000;45000;70000;75000;101000;85000;100000;107000;107000;197000;197000;197000;197000;245000;184400;100400;100400;100400;100400;100400;100000;100000;100000;100000;100000;100000;100000;67000;67000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000
-209;'748;Eswatini;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;105;735;235;235;97;257;1750;65;573;0;0;2112;2169
-209;'748;Eswatini;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;133;102;32;32;28;58;265;18;149;0;0;88;79
-209;'748;Eswatini;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;832;10980;9500;14610;40180;6580;19260;30960;5920;18490;18490;28700;21597;366000
-209;'748;Eswatini;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1891;3441;2845;3547;4621;4534;4276;4427;3339;4164;4164;6458;4741;5490
-209;'748;Eswatini;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;105;735;235;235;43;21;1197;2;1;0;0;1;33
-209;'748;Eswatini;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;133;102;32;32;22;9;123;6;1;0;0;1;1
-209;'748;Eswatini;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;832;10980;9500;14610;0;0;0;0;0;0;0;0;597;0
-209;'748;Eswatini;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1891;3441;2845;3547;0;0;0;0;0;0;0;0;12;0
-209;'748;Eswatini;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;236;553;63;572;0;0;2111;2136
-209;'748;Eswatini;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;49;142;12;148;0;0;87;78
-209;'748;Eswatini;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40180;6580;19260;30960;5920;18490;18490;28700;21000;366000
-209;'748;Eswatini;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4621;4534;4276;4427;3339;4164;4164;6458;4729;5490
-209;'748;Eswatini;1868;Sawlogs and veneer logs;5516;Production;m3;52000;65000;67000;65000;67000;65000;90000;105000;130000;194000;262000;265000;265000;265000;332000;332000;332000;332000;88000;285400;319400;319400;319400;319400;319400;156000;82000;336000;262000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000
-209;'748;Eswatini;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;43200;46600;46600;59000;13400;13500;13500;14400;10900;2400;2200;400;400;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;143;262;262;333;101;148;148;247;144;28;32;18;19;19;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;52000;63000;63000;63000;65000;63000;80000;100000;120000;184000;252000;255000;255000;255000;287000;287000;287000;287000;43000;285000;319000;319000;319000;319000;319000;156000;82000;336000;262000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000;260000
-209;'748;Eswatini;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;43200;46600;46600;59000;13400;13500;13500;14400;10900;2400;2200;400;400;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;143;262;262;333;101;148;148;247;144;28;32;18;19;19;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;2000;4000;2000;2000;2000;10000;5000;10000;10000;10000;10000;10000;10000;45000;45000;45000;45000;45000;400;400;400;400;400;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-209;'748;Eswatini;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000
-209;'748;Eswatini;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000;604000
-209;'748;Eswatini;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;23800;23800;2500;1400;1000;1600;67500;70000;127000;99700;74800;112000;84100;173300;173300;173300;173300;173300;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;52;52;18;16;11;18;59;109;400;493;455;427;472;1570;1570;1570;1570;1570;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1870;Pulpwood and particles (1961-1997);5516;Production;m3;60000;60000;440000;530000;530000;540000;540000;540000;570000;610000;938000;1060000;1060000;1060000;1675000;1675000;1675000;1675000;1280000;1281000;1268000;1268000;1268000;1268000;1268000;398000;225000;818000;646000;637000;637000;637000;604000;604000;604000;604000;604000;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;23800;23800;2500;1400;1000;1600;67500;70000;127000;99700;74800;112000;84100;173300;173300;173300;173300;173300;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;52;52;18;16;11;18;59;109;400;493;455;427;472;1570;1570;1570;1570;1570;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;60000;60000;440000;530000;530000;540000;540000;540000;570000;600000;928000;1040000;1040000;1040000;1577000;1577000;1577000;1577000;1115000;1135000;1235000;1235000;1235000;1235000;1235000;365000;192000;785000;613000;604000;604000;604000;604000;604000;604000;604000;604000;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;10000;10000;20000;20000;20000;98000;98000;98000;98000;165000;146000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1871;Other industrial roundwood;5516;Production;m3;25000;15000;25000;55000;55000;55000;35000;65000;65000;81000;65000;70000;77000;77000;54000;54000;54000;54000;35000;38000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000
-209;'748;Eswatini;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;7000;25000;20000;15000;15000;15000;15000;15000;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;99;179;165;103;158;158;158;158;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1871;Other industrial roundwood;5916;Export quantity;m3;;;10000;38400;50400;50400;58700;60900;55400;73100;54400;57800;75200;69700;71000;118300;135700;137100;131800;80200;96800;96800;96800;96800;96800;96800;96800;53600;50000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1871;Other industrial roundwood;5922;Export value;1000 USD;;;70;192;336;336;384;339;409;283;264;506;1866;950;1674;2263;2001;2505;3031;2041;2231;2231;2231;2231;2231;2231;2231;2231;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;25000;15000;25000;55000;55000;55000;35000;65000;65000;81000;65000;70000;77000;77000;54000;54000;54000;54000;35000;38000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000
-209;'748;Eswatini;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;7000;25000;20000;15000;15000;15000;15000;15000;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;99;179;165;103;158;158;158;158;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;10000;38400;50400;50400;58700;60900;55400;73100;54400;57800;75200;69700;71000;118300;135700;137100;131800;80200;96800;96800;96800;96800;96800;96800;96800;53600;50000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;70;192;336;336;384;339;409;283;264;506;1866;950;1674;2263;2001;2505;3031;2041;2231;2231;2231;2231;2231;2231;2231;2231;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1630;Wood charcoal;5510;Production;t;7242;7491;7749;8015;8291;8575;8870;9175;9490;9816;9857;10167;10304;10718;11173;11826;12372;12483;13146;13762;14072;14795;15472;15970;16467;16869;17292;17905;18586;19294;20188;21339;22248;23215;24160;25058;26005;27278;28526;29832;31045;32307;33621;34988;36411;37581;38789;40035;41321;42649;43781;44943;46136;47361;48618;49622;50648;51695;52763;53853;54954;56077;57222
-209;'748;Eswatini;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;138;2;31;31;31;31;31;31;80;88;126;88;77
-209;'748;Eswatini;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;43;6;23;23;23;23;23;23;62;47;72;62;60
-209;'748;Eswatini;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;5522;5250;3211;2492;2413;1464;434;434;5416;944;417.05;433;331
-209;'748;Eswatini;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;423;511;264;245;233;162;36;36;835;128;52;38;38
-209;'748;Eswatini;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13428;608;6870;8479;8479;8479;8479;8479;8479;38;381;129;45;88
-209;'748;Eswatini;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;79;164;211;211;211;211;211;211;3;18;6;7;15
-209;'748;Eswatini;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;22861;69062;6356;3933;3933;3933;3933;3933;108870;147444;55600;45539;58667;79432
-209;'748;Eswatini;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;677;1088;128;80;80;80;80;80;2102;3169;1204;1184.67;1042;1347
-209;'748;Eswatini;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982;253;5835;7379;7379;7379;7379;7379;7379;38;287;81;44;81
-209;'748;Eswatini;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;32;110;182;182;182;182;182;182;3;16;6;6;10
-209;'748;Eswatini;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5580;722;5434;3786;3786;3786;3786;3786;108723;112998;37580;37070.82;58275;79222
-209;'748;Eswatini;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;53;70;76;76;76;76;76;2098;2663;943;1071.67;1023;1340
-209;'748;Eswatini;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12446;355;1035;1100;1100;1100;1100;1100;1100;0;94;48;1;7
-209;'748;Eswatini;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;47;54;29;29;29;29;29;29;0;2;0;1;5
-209;'748;Eswatini;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;17281;68340;922;147;147;147;147;147;147;34446;18020;8468.18;392;210
-209;'748;Eswatini;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;513;1035;58;4;4;4;4;4;4;506;261;113;19;7
-209;'748;Eswatini;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;152;115;25;66
-209;'748;Eswatini;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;8;2;37
-209;'748;Eswatini;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2840;1045;1368.46;1683.22;2330
-209;'748;Eswatini;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;19;19;21.07;74
-209;'748;Eswatini;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;0;29
-209;'748;Eswatini;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;1;8
-209;'748;Eswatini;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;985;1368.46;1683;1616
-209;'748;Eswatini;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;16;19;21;22
-209;'748;Eswatini;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;150;113;25;37
-209;'748;Eswatini;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;8;1;29
-209;'748;Eswatini;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;60;0;0.22;714
-209;'748;Eswatini;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;3;0;0.07;52
-209;'748;Eswatini;1872;Sawnwood;5516;Production;m3;31000;39000;40000;39000;39000;38000;47000;35000;47000;77000;79000;72000;98000;98000;97000;100000;100000;102000;120000;120000;106000;103000;103000;103000;103000;103000;61000;74000;79000;77000;75000;75000;75000;80000;90000;100000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;122000;132000;132000;132000;122000;122000;147000;122000;122000;320000;330000;330000;330000;330000
-209;'748;Eswatini;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;9000;5000;6000;6000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;7192;3534;450;876;876;1719;2060;1840;2477;2834;1239;12336;4491;7577
-209;'748;Eswatini;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;343;216;227;298;320;320;320;320;320;320;320;678;678;678;678;678;678;678;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;1707;1278;297;658;575;512;502;503;406;504;354;899;1157;761
-209;'748;Eswatini;1872;Sawnwood;5916;Export quantity;m3;20700;17100;17100;10200;10200;10200;40300;33700;46400;61700;75100;63500;89600;89600;84200;87800;88300;91300;112900;96800;89400;76400;76400;76400;76400;76400;45100;57600;77400;96800;96800;96800;96800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;143;24954;29847;29928;28705;20850;23350;77320;84360;103160;257674;273467;222440;222440;222440
-209;'748;Eswatini;1872;Sawnwood;5922;Export value;1000 USD;862;718;718;431;429;429;1574;1205;1723;2512;3231;2406;5157;5157;5500;5447;5102;6352;10439;12612;11440;8536;8536;8536;8536;8536;5039;6436;11714;11527;11527;11527;11527;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;158;17010;24535;26258;25251;30365;28520;42402;50661;56658;60449;60462;84546;84546;84546
-209;'748;Eswatini;1632;Sawnwood, coniferous;5516;Production;m3;31000;38000;38000;38000;39000;38000;47000;35000;47000;77000;79000;72000;98000;98000;94000;100000;100000;102000;120000;120000;106000;103000;103000;103000;103000;103000;61000;74000;79000;77000;75000;75000;75000;80000;90000;100000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;300000;310000;310000;310000;310000
-209;'748;Eswatini;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;2451;196;286;286;1289;1060;1328;2171;2736;1239;10428;3810;7269
-209;'748;Eswatini;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;599;82;79;226;330;302;345;334;427;336;838;1147;724
-209;'748;Eswatini;1632;Sawnwood, coniferous;5916;Export quantity;m3;20700;17100;17100;10200;10200;10200;40300;33700;46400;61700;75100;63500;89600;89600;84200;87800;88300;91300;112900;96800;89400;76400;76400;76400;76400;76400;45100;57600;77400;96800;96800;96800;96800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;5456;4720;3789;3543;10160;12270;34080;70660;96470;257005;269027;218000;218000;218000
-209;'748;Eswatini;1632;Sawnwood, coniferous;5922;Export value;1000 USD;862;718;718;431;429;429;1574;1205;1723;2512;3231;2406;5157;5157;5500;5447;5102;6352;10439;12612;11440;8536;8536;8536;8536;8536;5039;6436;11714;11527;11527;11527;11527;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;1514;1279;1057;987;6665;18847;13734;41619;53734;59648;59846;83930;83930;83930
-209;'748;Eswatini;1633;Sawnwood, non-coniferous;5516;Production;m3;;1000;2000;1000;;;;;;;;;;;3000;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20000;30000;30000;30000;20000;20000;45000;20000;20000;20000;20000;20000;20000;20000
-209;'748;Eswatini;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;9000;5000;6000;6000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;25;5990;1083;254;590;590;430;1000;512;306;98;0;1908;681;308
-209;'748;Eswatini;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;343;216;227;298;320;320;320;320;320;320;320;678;678;678;678;678;678;678;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;1204;679;215;579;349;182;200;158;72;77;18;61;10;37
-209;'748;Eswatini;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;116;19498;25127;26139;25162;10690;11080;43240;13700;6690;669;4440;4440;4440;4440
-209;'748;Eswatini;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;141;15496;23256;25201;24264;23700;9673;28668;9042;2924;801;616;616;616;616
-209;'748;Eswatini;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-209;'748;Eswatini;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2676;178;331;198;198;278;282;277;254;151;0;0;18;12
-209;'748;Eswatini;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;167;382;547;231;215;151;164;139;122;184;54;19;31
-209;'748;Eswatini;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;20;0;1;57;57;34;34;19;8;46;0;0;0;0
-209;'748;Eswatini;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;15;0;0.25;43;1;11;5;10;10;14;3;0;0;0
-209;'748;Eswatini;1873;Wood-based panels;5516;Production;m3;;;;300;800;1400;1600;1900;2900;3900;3700;3700;3500;3500;3500;3500;3500;3500;3000;4900;4500;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;18000;43000;53000;53000;53000;53000;53000;53000;53000;53000;53000
-209;'748;Eswatini;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4419;4583;6436.25;7061;9279;7210;7901;6566;7326;7515;47239;8795.15;9738;12028
-209;'748;Eswatini;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;3756;3554;2823;3204;2682;3046;3115;2989;3402;3346;2850;4183.73;4923;3997
-209;'748;Eswatini;1873;Wood-based panels;5916;Export quantity;m3;;;;;200;200;200;700;2100;3600;3300;3200;3200;3200;1200;1400;1400;1400;3000;3100;4500;8000;8000;8000;8000;8000;8000;8000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;466;14.2;11;6600;29000;38208;38001;40159;38003;33678;34198;42799.82;33020.69;39036
-209;'748;Eswatini;1873;Wood-based panels;5922;Export value;1000 USD;;;;;55;390;390;251;312;556;560;428;545;545;608;699;699;699;1091;958;1610;2087;2087;2087;2087;2087;2087;2087;1613;1613;1613;1613;1613;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;34;8;11;860;4610;5083;4032;4711;4973;4724;4187;8115.28;5412.57;6452
-209;'748;Eswatini;1640;Plywood and LVL;5516;Production;m3;;;;300;800;1400;1600;1900;2900;3900;3700;3700;3500;3500;3500;3500;3500;3500;3000;4900;4500;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-209;'748;Eswatini;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2402;1252;1616;2092;5922;2741;2890;1555;2315;2687;2672;4518;6179;8662
-209;'748;Eswatini;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1776;1275;814;899;775;829;867;741;1154;1136;957;1448;1621;1112
-209;'748;Eswatini;1640;Plywood and LVL;5916;Export quantity;m3;;;;;200;200;200;700;2100;3600;3300;3200;3200;3200;1200;1400;1400;1400;3000;3100;4500;8000;8000;8000;8000;8000;8000;8000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;81;0.2;11;0;0;208;1;159;3;11;0;0;0;55
-209;'748;Eswatini;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;55;390;390;251;312;556;560;428;545;545;608;699;699;699;1091;958;1610;2087;2087;2087;2087;2087;2087;2087;1613;1613;1613;1613;1613;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;12;2;11;1;24;147;1;46;3;6;0;8;46;46
-209;'748;Eswatini;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;35000;45000;45000;45000;45000;45000;45000;45000;45000;45000
-209;'748;Eswatini;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1135;2979;4650;4612;3000;4112;4654;4654;4654;4451;44064;3693.62;2919;2737
-209;'748;Eswatini;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;957;1997;1785;2144;1746;2056;2087;2087;2087;1849;1349;1889.11;1865;1797
-209;'748;Eswatini;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;385;14;0;6600;29000;38000;38000;40000;38000;33646;34198;42796.82;33018;38973
-209;'748;Eswatini;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;22;6;0;859;4586;4936;4031;4665;4970;4716;4184;8103.28;5363;6383
-209;'748;Eswatini;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;170;90;9;58
-209;'748;Eswatini;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;45;55;12;17
-209;'748;Eswatini;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-209;'748;Eswatini;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-209;'748;Eswatini;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;352;170.25;357;357;357;357;357;357;317;333;493.53;631;571
-209;'748;Eswatini;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023;282;224;161;161;161;161;161;161;297;499;791.62;1425;1071
-209;'748;Eswatini;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;3;2.69;8
-209;'748;Eswatini;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;4;3.57;23
-209;'748;Eswatini;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;39;0.25;3;3;3;3;3;3;1;37;42;83;38
-209;'748;Eswatini;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;23;1;3;3;3;3;3;3;2;19;24;176;38
-209;'748;Eswatini;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8
-209;'748;Eswatini;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20
-209;'748;Eswatini;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769;300;89;90;90;90;90;90;90;309;293;332.53;490;376
-209;'748;Eswatini;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;230;190;74;74;74;74;74;74;294;473;742.62;1219;955
-209;'748;Eswatini;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0
-209;'748;Eswatini;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;3;3
-209;'748;Eswatini;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;13;81;264;264;264;264;264;264;7;3;119;58;157
-209;'748;Eswatini;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;29;33;84;84;84;84;84;84;1;7;25;30;78
-209;'748;Eswatini;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2.69;0
-209;'748;Eswatini;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0.57;0
-209;'748;Eswatini;1879;Total fibre furnish;5510;Production;t;9600;9600;73000;88000;88000;89000;90000;90000;95000;101000;105000;125000;136000;143000;143000;180000;152000;155000;161000;156000;157000;157000;175000;178000;174000;180000;180000;178000;158000;130000;178000;183000;200000;200000;200000;220000;174000;150000;191000;160100;189900;192500;173700;186600;179200;166700;176400;148200;108000;21000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-209;'748;Eswatini;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2281;201;27345;6778;43;28;0;0;14;0;15373;11312.2;19198.5;19862.5
-209;'748;Eswatini;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;132;2187;876;6;41;1;1;9;3;1219;1603;2262.16;2385.16
-209;'748;Eswatini;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;90000;84000;98000;100000;125000;136000;136000;90000;180000;123000;150000;161000;156000;156700;126000;126000;178000;174000;174000;174000;174000;154400;154400;154400;154400;193400;193400;107000;210000;210000;210000;210000;210000;210000;197700;156300;182900;156300;159300;173600;147400;101677;16035;3849;4269;3519;5164;6106;4660;5006;5471;6839;4768;6554.91;5431.27;4263.27
-209;'748;Eswatini;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;9875;10000;13384;13394;14269;22831;22831;17000;34389;24687;31192;33971;47353;53267;42928;42928;70000;69000;69000;69000;69000;61376;61376;61376;61376;59665;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;44344;8712;394;384;248;382;392;352;464;590;1227;523;643;711.46;502.46
-209;'748;Eswatini;1878;Pulp for paper;5510;Production;t;9600;9600;73000;88000;88000;89000;90000;90000;95000;101000;105000;125000;136000;143000;143000;180000;152000;155000;161000;156000;157000;157000;175000;178000;174000;180000;180000;178000;158000;130000;178000;183000;200000;200000;200000;220000;174000;150000;191000;154100;183900;186500;167700;180600;173200;160700;170400;142200;102000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0
-209;'748;Eswatini;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0.5;0.5
-209;'748;Eswatini;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3.17;3.17
-209;'748;Eswatini;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;90000;84000;98000;100000;125000;136000;136000;90000;180000;123000;150000;161000;156000;156700;126000;126000;178000;174000;174000;174000;174000;154400;154400;154400;154400;193400;193400;107000;210000;210000;210000;210000;210000;210000;197700;156300;182900;156300;159300;173600;147400;101349;14505;0;0;0;0;0;0;0;0;938;310;882.27;797.27;797.27
-209;'748;Eswatini;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;9875;10000;13384;13394;14269;22831;22831;17000;34389;24687;31192;33971;47353;53267;42928;42928;70000;69000;69000;69000;69000;61376;61376;61376;61376;59665;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;44271;8479;0;0;0;0;0;0;0;0;599;97;180;130.46;130.46
-209;'748;Eswatini;1875;Wood pulp;5510;Production;t;9600;9600;73000;88000;88000;89000;90000;90000;95000;101000;105000;125000;136000;143000;143000;180000;152000;155000;161000;156000;157000;157000;175000;178000;174000;180000;180000;178000;158000;130000;178000;183000;200000;200000;200000;220000;174000;150000;191000;154100;183900;186500;167700;180600;173200;160700;170400;142200;102000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0
-209;'748;Eswatini;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.5;0.5
-209;'748;Eswatini;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.17;0.17
-209;'748;Eswatini;1875;Wood pulp;5910;Export quantity;t;;;;;;;;90000;84000;98000;100000;125000;136000;136000;90000;180000;123000;150000;161000;156000;156700;126000;126000;178000;174000;174000;174000;174000;154400;154400;154400;154400;193400;193400;107000;210000;210000;210000;210000;210000;210000;197700;156300;182900;156300;159300;173600;147400;101349;14505;0;0;0;0;0;0;0;0;772;98;98;13;13
-209;'748;Eswatini;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;9875;10000;13384;13394;14269;22831;22831;17000;34389;24687;31192;33971;47353;53267;42928;42928;70000;69000;69000;69000;69000;61376;61376;61376;61376;59665;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;44271;8479;0;0;0;0;0;0;0;0;584;62;62;12;12
-209;'748;Eswatini;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1656;Chemical wood pulp;5510;Production;t;9600;9600;73000;88000;88000;89000;90000;90000;95000;101000;105000;125000;136000;143000;143000;180000;152000;155000;161000;156000;157000;157000;175000;178000;174000;180000;180000;178000;158000;130000;178000;183000;200000;200000;200000;220000;174000;150000;191000;154100;183900;186500;167700;180600;173200;160700;170400;142200;102000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0
-209;'748;Eswatini;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.5;0.5
-209;'748;Eswatini;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.17;0.17
-209;'748;Eswatini;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;90000;84000;98000;100000;125000;136000;136000;90000;180000;123000;150000;161000;156000;156700;126000;126000;178000;174000;174000;174000;174000;154400;154400;154400;154400;193400;193400;107000;210000;210000;210000;210000;210000;210000;197700;156300;182900;156300;159300;173600;147400;101349;14505;0;0;0;0;0;0;0;0;772;98;98;13;13
-209;'748;Eswatini;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;9875;10000;13384;13394;14269;22831;22831;17000;34389;24687;31192;33971;47353;53267;42928;42928;70000;69000;69000;69000;69000;61376;61376;61376;61376;59665;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;44271;8479;0;0;0;0;0;0;0;0;584;62;62;12;12
-209;'748;Eswatini;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;88000;88000;89000;90000;90000;95000;101000;105000;125000;136000;143000;143000;180000;152000;155000;161000;156000;157000;157000;175000;178000;174000;180000;180000;178000;158000;130000;178000;183000;200000;200000;200000;220000;174000;150000;191000;154100;183900;186500;167700;180600;173200;160700;170400;142200;102000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0
-209;'748;Eswatini;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.5;0.5
-209;'748;Eswatini;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.17;0.17
-209;'748;Eswatini;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;90000;180000;123000;150000;161000;156000;156700;126000;126000;178000;174000;174000;174000;174000;154400;154400;154400;154400;193400;193400;107000;210000;210000;210000;210000;210000;210000;197700;156300;182900;156300;159300;173600;147400;78152;11699;0;0;0;0;0;0;0;0;646;0;0;0;0
-209;'748;Eswatini;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;17000;34389;24687;31192;33971;47353;53267;42928;42928;70000;69000;69000;69000;69000;61376;61376;61376;61376;59665;59665;33000;60000;60000;60000;60000;60000;60000;64208;56129;69105;64472;62556;97142;68089;34571;6812;0;0;0;0;0;0;0;0;480;0;0;0;0
-209;'748;Eswatini;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11302;2198;0;0;0;0;0;0;0;0;126;98;98;13;13
-209;'748;Eswatini;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4519;1302;0;0;0;0;0;0;0;0;104;62;62;12;12
-209;'748;Eswatini;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-209;'748;Eswatini;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-209;'748;Eswatini;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11895;608;0;0;0;0;0;0;;;;;;;
-209;'748;Eswatini;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5181;365;0;0;0;0;0;0;;;;;;;
-209;'748;Eswatini;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-209;'748;Eswatini;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3
-209;'748;Eswatini;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;212;784.27;784.27;784.27
-209;'748;Eswatini;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;35;118;118.46;118.46
-209;'748;Eswatini;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;56;1;1
-209;'748;Eswatini;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;1;2
-209;'748;Eswatini;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-209;'748;Eswatini;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2281;201;27345;6778;43;28;0;0;14;0;15373;11312.2;19198;19862
-209;'748;Eswatini;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;132;2187;876;6;41;1;1;9;0;1216;1600;2259;2382
-209;'748;Eswatini;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;1530;3849;4269;3519;5164;6106;4660;5006;5471;5901;4458;5672.64;4634;3466
-209;'748;Eswatini;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;233;394;384;248;382;392;352;464;590;628;426;463;581;372
-209;'748;Eswatini;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000
-209;'748;Eswatini;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;18677;20359;23905;22544;22074;22312;22479;22763;22864;8410;8744;5952.96;16977;3611
-209;'748;Eswatini;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;20244;23797;21698;17561;18528;18417;18441;18961;19546;8799;7334;6646.54;15207;5863
-209;'748;Eswatini;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764;2313;2147;344;277;158;119;170;119;116;8;11294;10054.41;21091;34956
-209;'748;Eswatini;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1448;2332;1839;1775;1810;169;131;463;131;168;2;1928;1877.81;10883;17852
-209;'748;Eswatini;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;976;6275;4314;4350;3880;4118;4285;4569;4670;4134;3384;3029.04;3388;2842
-209;'748;Eswatini;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;8603;5994;3817;4784;4673;4697;5217;5802;5184;3600;3607.21;4749;4361
-209;'748;Eswatini;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;111;25;146;172;53;14;65;14;11;1;1;10;9;26
-209;'748;Eswatini;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;377;90;1423;1693;52;14;346;14;51;1;6;15;15;23
-209;'748;Eswatini;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660;2963;2636;1822;1822;1822;1822;1822;1822;1635;1325;1483.77;1137;971
-209;'748;Eswatini;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748;3410;2690;1410;1410;1410;1410;1410;1410;1292;856;1149;989;836
-209;'748;Eswatini;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;3312;1678;2528;2058;2296;2463;2747;2848;2499;2059;1545.27;2251;1871
-209;'748;Eswatini;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;5193;3304;2407;3374;3263;3287;3807;4392;3892;2744;2458.21;3760;3525
-209;'748;Eswatini;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;111;25;146;172;53;14;65;14;11;1;1;10;9;26
-209;'748;Eswatini;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;377;90;1423;1693;52;14;346;14;51;1;6;15;15;23
-209;'748;Eswatini;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;559;277;432;718;799;912;672;512;488;357;436.65;432;274
-209;'748;Eswatini;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;838;615;913;1055;1049;1191;1028;1014;883;631;773.94;805;570
-209;'748;Eswatini;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-209;'748;Eswatini;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;803;946;1868;712;1136;1242;1664;1818;1429;1178;762.45;1533;1415
-209;'748;Eswatini;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1321;1775;1023;1672;1702;1546;2132;2594;2135;1468;1121.27;2404;2539
-209;'748;Eswatini;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;83;7;105;109;45;10;2;14;0;1;1;9;9;26
-209;'748;Eswatini;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;202;18;1345;1350;44;10;3;14;1;1;6;15;15;22
-209;'748;Eswatini;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;455;228;628;361;309;411;518;582;524;346.17;286;182
-209;'748;Eswatini;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3034;914;471;647;512;550;647;784;874;645;563;551;416
-209;'748;Eswatini;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;28;18;41;63;8;4;63;0;11;0;0;1;0;0
-209;'748;Eswatini;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;175;72;78;343;8;4;343;0;50;0;0;0;0;1
-209;'748;Eswatini;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000
-209;'748;Eswatini;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;17701;14084;19591;18194;18194;18194;18194;18194;18194;4276;5360;2923.92;13589;769
-209;'748;Eswatini;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;19036;15194;15704;13744;13744;13744;13744;13744;13744;3615;3734;3039.33;10458;1502
-209;'748;Eswatini;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;2202;2122;198;105;105;105;105;105;105;7;11293;10044.41;21082;34930
-209;'748;Eswatini;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;1955;1749;352;117;117;117;117;117;117;1;1922;1862.81;10868;17829
-209;'748;Eswatini;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-209;'748;Eswatini;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;183;435;964;346;346;346;346;346;346;216;434;371.53;393;460
-209;'748;Eswatini;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;313;214;283;241;241;241;241;241;241;214;314;353;532;623
-209;'748;Eswatini;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-209;'748;Eswatini;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-209;'748;Eswatini;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000
-209;'748;Eswatini;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17459;13572;18570;17778;17778;17778;17778;17778;17778;3970;4795;2414.39;13126;203
-209;'748;Eswatini;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18574;14763;15222;13267;13267;13267;13267;13267;13267;3126;3170;2253.33;9589;506
-209;'748;Eswatini;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;2196;1717;197;98;98;98;98;98;98;7;11292;10038.41;20960;34926
-209;'748;Eswatini;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402;1932;1327;348;93;93;93;93;93;93;1;1917;1856.81;10783;17827
-209;'748;Eswatini;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000
-209;'748;Eswatini;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13541;9075;14955;14554;14554;14554;14554;14554;14554;3306;3989;2057.39;12980;23
-209;'748;Eswatini;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13330;9746;12564;10381;10381;10381;10381;10381;10381;2407;2028;1419.33;9171;58
-209;'748;Eswatini;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;939;631;12;71;71;71;71;71;71;6;25;254;9815;9815
-209;'748;Eswatini;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;937;835;11;30;30;30;30;30;30;0;12;252.99;5178;5178
-209;'748;Eswatini;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;3163;3199;3078;3078;3078;3078;3078;3078;299;301;167;59;23
-209;'748;Eswatini;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2919;3976;2100;2563;2563;2563;2563;2563;2563;289;701;551;144;102
-209;'748;Eswatini;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;176;296;51;1;1;1;1;1;1;0;0;0;0;0
-209;'748;Eswatini;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;288;224;255;16;16;16;16;16;16;0;0;2;0;0
-209;'748;Eswatini;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;1334;375;141;141;141;141;141;141;365;501;189;87;142
-209;'748;Eswatini;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2317;1037;509;320;320;320;320;320;320;426;438;281;273;342
-209;'748;Eswatini;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;1081;790;134;26;26;26;26;26;26;1;11267;9784.41;11145;25111
-209;'748;Eswatini;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;707;268;82;47;47;47;47;47;47;1;1905;1601.81;5605;12649
-209;'748;Eswatini;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;41;5;5;5;5;5;5;0;4;1;0;15
-209;'748;Eswatini;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;49;3;3;3;3;3;3;4;3;2;1;4
-209;'748;Eswatini;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;59;77;57;70;70;70;70;70;70;90;131;138;70;106
-209;'748;Eswatini;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;149;217;199;236;236;236;236;236;236;275;250;433;337;373
-209;'748;Eswatini;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;405;1;7;7;7;7;7;7;0;1;6;122;4
-209;'748;Eswatini;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;23;422;4;24;24;24;24;24;24;0;5;6;85;2
-209;'748;Eswatini;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18492;25758;17601;16141;18492;18810;24174
-209;'748;Eswatini;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4025;3804;3470;3467;4522;4304;5551
-209;'748;Eswatini;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;619;205;189;138;114;175
-209;'748;Eswatini;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2906;2601;2631;2162;2849;2743;3622
-209;'748;Eswatini;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;249;99;152;48;28;31
-209;'748;Eswatini;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2876;2600;2631;2153;2839;2743;3374
-209;'748;Eswatini;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633;370;106;37;90;86;144
-209;'748;Eswatini;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;1;0;9;10;0;248
-209;'748;Eswatini;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;1853;2021;2166;2249;1746;2048
-209;'748;Eswatini;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;783;579;1176;1497;1403;1829
-209;'748;Eswatini;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602;731;603;589;1029;1061;568
-209;'748;Eswatini;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;120;12;24;37;14;18
-209;'748;Eswatini;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5272;5564;3476;2837;3053;3634;5541
-209;'748;Eswatini;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;210;40;8;7;37;6
-209;'748;Eswatini;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-209;'748;Eswatini;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-209;'748;Eswatini;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1
-209;'748;Eswatini;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1
-209;'748;Eswatini;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-209;'748;Eswatini;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10242;16566;10905;10115;11725;11849;15414
-209;'748;Eswatini;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;43;73;37;68;68;56
-209;'748;Eswatini;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;16;0;1;1;66
-209;'748;Eswatini;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-209;'748;Eswatini;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;422;375;245;297;405;362
-209;'748;Eswatini;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;47;135;60;64;39;20
-209;'748;Eswatini;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26832;29501;32991;22412;30007;33344;36919
-209;'748;Eswatini;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3033;3561;3124;2143;1518;1415;2784
-209;'748;Eswatini;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;19;5;8;3;2;3
-209;'748;Eswatini;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-209;'748;Eswatini;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635;1863;1676;816;1379;2274;4012
-209;'748;Eswatini;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;35;143;105;23
-209;'748;Eswatini;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4819;5040;5165;4827;5468;5030;5145
-209;'748;Eswatini;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;2;10;8;2;0
-209;'748;Eswatini;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10436;11764;11595;9861;15021;15922;16552
-209;'748;Eswatini;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;757;1216;1288;1154;670;39;128
-209;'748;Eswatini;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9913;10815;14550;6900;8136;10116;11207
-209;'748;Eswatini;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2275;2342;1834;944;697;1269;2633
-238;'231;Ethiopia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259620;225806;284357;216378;214557.66;262310.65;284340.65
-238;'231;Ethiopia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2263;1908;3724;3511;4730;5401;5928
-238;'231;Ethiopia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6141;6854;4559;8707;18782;13897;22665;36146;36013;22476;41035;49477;58905;74785;83348;103511;87069;96469;88509;91303;180748;242546;212789;164580;131338;104466;180081;122808;111746.66;124930.64;172348.64
-238;'231;Ethiopia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;544;596;282;0;0;0;0;0;0;0;0;0;0;2286;3197;3189;1523;4426;4251.8;7705;4763;1403;1634;802;1258;2540;1653;1925;2271;2708
-238;'231;Ethiopia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78482074;80769402;82527464;83650592;85504486;86531897;88239468;89930092;91282143;92661252;94533392;95957336;97408674;98631059;100059100;101417400;102805321;104209300;105544380;106901441;108280917;109683244;111108872;112323671;113557265;114810013;116082277;117374430;118664769;120610732;121922724
-238;'231;Ethiopia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;43;145;502;200;200;200;0;0;0;0;0;0;0;643;2469;5233;1233;2943;5288;25703;12079;1955;5851;182;9;696;14;0;0;765
-238;'231;Ethiopia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;18;92;45;45;45;0;0;0;0;0;0;0;655;1481;2074;1317;439;2190;8639;4428;1161;1039;102;5;346;5;0;143;730
-238;'231;Ethiopia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2534;4604;2100;0;0;0;0;0;0;0;0;0;0;0;23;23;23;74;69;2671;2672;2679;2671;4;0;244;400;12;631;1418
-238;'231;Ethiopia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;279;150;0;0;0;0;0;0;0;0;0;0;0;2;2;2;28;24;634.4;636;636;636;2;0;26;42;101;132;171
-238;'231;Ethiopia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5356842;5515666;5636072;5691448;5824182;5894585;6009044;6126676;6221351;6320288;6417020;6516780;6618302;6618302;6803700;6898700;6999012;7097222;7190612;7285539;7382035;7480129;7579853;7664829;7751120;7838751;7927747;8018134;8108394;8200097;8293271
-238;'231;Ethiopia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;696;0;0;0;4
-238;'231;Ethiopia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;346;0;0;143;3
-238;'231;Ethiopia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;244;0;0;468;1219
-238;'231;Ethiopia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;26;13;97;99;138
-238;'231;Ethiopia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73125232;75253736;76891392;77959144;79680304;80637312;82230424;83803416;85060792;86340964;88116372;89440556;90790372;92012757;93255400;94518700;95806309;97112078;98353768;99615902;100898882;102203115;103529019;104658842;105806145;106971262;108154530;109356296;110556375;112410635;113629453
-238;'231;Ethiopia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;9;0;14;0;0;761
-238;'231;Ethiopia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;5;0;5;0;0;727
-238;'231;Ethiopia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;400;12;163;199
-238;'231;Ethiopia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;29;4;33;33
-238;'231;Ethiopia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76337074;78550402;80231664;81220592;83106686;84134597;85785168;87471092;88824543;90201752;91603192;93029336;94480674;95703059;97131100;98489400;99870321;101274300;102609380;103966441;105345917;106748244;108173872;109388671;110622265;111875013;113147277;114439430;115729769;117040732;118372724
-238;'231;Ethiopia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;233;233;233;2;61;57;3;1133;;;;;;;679
-238;'231;Ethiopia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;1;72;111;9;105;;;;;;;611
-238;'231;Ethiopia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;8;14;2670;2670;2670;2670;;;;;;;490
-238;'231;Ethiopia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;634;634;634;634;;;;;;;39
-238;'231;Ethiopia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339842;5494666;5612272;5681448;5813382;5885285;6000744;6118676;6213351;6309688;6407720;6507480;6609002;6609002;6794400;6889400;6986012;7084222;7177612;7272539;7369035;7467129;7566853;7651829;7738120;7825751;7914747;8005134;8095394;8187097;8280271
-238;'231;Ethiopia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490
-238;'231;Ethiopia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39
-238;'231;Ethiopia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70997232;73055736;74619392;75539144;77293304;78249312;79784424;81352416;82611192;83892064;85195472;86521856;87871672;89094057;90336700;91600000;92884309;94190078;95431768;96693902;97976882;99281115;100607019;101736842;102884145;104049262;105232530;106434296;107634375;108853635;110092453
-238;'231;Ethiopia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679
-238;'231;Ethiopia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611
-238;'231;Ethiopia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;233;233;233;2;61;57;3;1133;;;;;;;
-238;'231;Ethiopia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;1;72;111;9;105;;;;;;;
-238;'231;Ethiopia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;8;14;2670;2670;2670;2670;;;;;;;
-238;'231;Ethiopia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;634;634;634;634;;;;;;;
-238;'231;Ethiopia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2145000;2219000;2295800;2430000;2397800;2397300;2454300;2459000;2457600;2459500;2930200;2928000;2928000;2928000;2928000;2928000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;2935000;3570000;3550000
-238;'231;Ethiopia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;43;145;502;200;200;200;0;0;0;0;0;0;0;643;2236;5000;1000;2710;5286;25642;12022;1952;4718;182;9;696;14;0;0;86
-238;'231;Ethiopia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;18;92;45;45;45;0;0;0;0;0;0;0;655;1405;1998;1241;363;2189;8567;4317;1152;934;102;5;346;5;0;143;119
-238;'231;Ethiopia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2534;4604;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;66;55;1;2;9;1;4;0;244;400;12;631;928
-238;'231;Ethiopia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;279;150;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;22;0.4;2;2;2;2;0;26;42;101;132;132
-238;'231;Ethiopia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;21000;23800;10000;10800;9300;8300;8000;8000;10600;9300;9300;9300;9300;9300;9300;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-238;'231;Ethiopia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;43;43;400;200;200;200;0;0;0;0;0;0;0;0;0;0;0;2543;0;2824;0;0;629;0;0;696;0;0;0;4
-238;'231;Ethiopia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;3;77;45;45;45;0;0;0;0;0;0;0;0;0;0;16;268;0;296;0;0;46;0;0;346;0;0;143;3
-238;'231;Ethiopia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2534;2534;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;244;0;0;468;729
-238;'231;Ethiopia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;129;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;26;13;97;99;99
-238;'231;Ethiopia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;43;43;400;200;200;200;0;0;0;0;0;0;0;0;0;0;0;2543;0;2824;0;0;629;0;0;696;0;0;0;4
-238;'231;Ethiopia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;3;77;45;45;45;0;0;0;0;0;0;0;0;0;0;16;268;0;296;0;0;46;0;0;346;0;0;143;3
-238;'231;Ethiopia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2534;2534;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;244;0;0;468;729
-238;'231;Ethiopia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;129;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;26;13;97;99;99
-238;'231;Ethiopia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2128000;2198000;2272000;2420000;2387000;2388000;2446000;2451000;2449600;2448900;2920900;2918700;2918700;2918700;2918700;2918700;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;2922000;3557000;3537000
-238;'231;Ethiopia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;0;0;0;0;0;0;0;0;0;0;643;2236;5000;1000;167;5286;22818;12022;1952;4089;182;9;0;14;0;0;82
-238;'231;Ethiopia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;0;0;0;0;0;655;1405;1998;1225;95;2189;8271;4317;1152;888;102;5;0;5;0;0;116
-238;'231;Ethiopia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;66;55;1;1;9;1;4;0;0;400;12;163;199
-238;'231;Ethiopia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;22;0.4;0;2;2;2;0;0;29;4;33;33
-238;'231;Ethiopia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3625;21157;10361;487;535;85;7;0;0;0;0;0
-238;'231;Ethiopia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1037;7119;3165;297;253;43;4;0;0;0;0;0
-238;'231;Ethiopia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;9;1;4;0;0;400;12;133;199
-238;'231;Ethiopia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;2;2;2;0;0;29;4;25;33
-238;'231;Ethiopia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;0;0;0;0;0;0;0;0;0;0;643;2236;5000;1000;161;1661;1661;1661;1465;3554;97;2;0;14;0;0;82
-238;'231;Ethiopia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;0;0;0;0;0;655;1405;1998;1225;93;1152;1152;1152;855;635;59;1;0;5;0;0;116
-238;'231;Ethiopia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55;55;1;1;0;0;0;0;0;0;0;30;0
-238;'231;Ethiopia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0.4;0;0;0;0;0;0;0;0;8;0
-238;'231;Ethiopia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;33000;16300;92000;59800;3300;2300;7000;5600;7500;6200;4000;4000;4000;4000;4000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;646000;626000
-238;'231;Ethiopia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;20000;4300;3000;3800;2300;1300;1000;1000;3600;2300;2300;2300;2300;2300;2300;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-238;'231;Ethiopia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;13000;12000;89000;56000;1000;1000;6000;4600;3900;3900;1700;1700;1700;1700;1700;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;640000;620000
-238;'231;Ethiopia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-238;'231;Ethiopia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-238;'231;Ethiopia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-238;'231;Ethiopia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22500;7000;7000;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18500;6000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2118000;2186000;2257000;2331000;2331000;2387000;2445000;2445000;2445000;2445000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000;2917000
-238;'231;Ethiopia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-238;'231;Ethiopia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2117000;2185000;2256000;2330000;2330000;2386000;2444000;2444000;2444000;2444000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000;2916000
-238;'231;Ethiopia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2384891;2482563;2554862;2593354;2677297;2737977;2821944;2908485;2983542;3060536;3139516;3220535;3303645;3385598;3469600;3555700;3643860;3734254;3826632;3921296;4018302;4117708;4219572;4316694;4416051;4517695;4621678;4728055;4838426;4951374;5066958
-238;'231;Ethiopia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;;;;;;;;;;;;;;;;;133;152;173;1;40;40;0;11;291;29;35
-238;'231;Ethiopia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;;;;;;;;;;;;;;;;;179;442;388;0;20;20;3;6;268;59;64
-238;'231;Ethiopia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;84;84;1;32;32;32;32;32;32;32;18;18;25;22;20
-238;'231;Ethiopia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;5;5;0;8;8;8;8;8;8;8;13;13;4;11;11
-238;'231;Ethiopia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;7200;7200;18000;18000;26500;22500;22500;22500;22500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500;23500
-238;'231;Ethiopia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;55;20;71;596;59;4;25;976;1144;3;4;57;6
-238;'231;Ethiopia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;68;26;82;715;29;28;54;231;338;13;3;51;8
-238;'231;Ethiopia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;7200;7200;18000;18000;26500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500
-238;'231;Ethiopia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;386;2;2;2;2;170;3;4;0;0
-238;'231;Ethiopia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;7;510;23;23;23;23;130;13;0;3;0
-238;'231;Ethiopia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-238;'231;Ethiopia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;54;19;70;210;57;2;23;974;974;0;0;57;6
-238;'231;Ethiopia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;57;20;75;205;6;5;31;208;208;0;3;48;8
-238;'231;Ethiopia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;893;56;0;0;0;0;0;0;0;7
-238;'231;Ethiopia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;300;6;0;0;0;0;0;0;0;23
-238;'231;Ethiopia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;893;56;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;300;6;0;0;0;0;0;0;0;4
-238;'231;Ethiopia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7
-238;'231;Ethiopia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19
-238;'231;Ethiopia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;45000;40000;33000;60000;60000;60000;60000;60000;13500;17700;17700;17900;17900;17900;17900;17900;17900;17900;17900;17900;17900;17900;17900;17900;17900;30500;20500;20500;88500;78500
-238;'231;Ethiopia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;360;3185;1300;12000;1800;9100;14186;9060;8539;11128;19766;21233;19834;27788;34539;33005;5184;2226;10471;29406;43834;45488;37632;49760;54546;75243;53066;29288;14818;18454
-238;'231;Ethiopia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;90;634;281;6838;455;1467;3049;2204;1819;3518;6265;5630;7767;12390;11542;10426;1379;636;2084;17940;22339;13051;10026;18755;17036;22169;15792;10381;6342;4895
-238;'231;Ethiopia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;3127;1200;200;0;0;0;0;0;0;0;0;0;0;7306;12066;12066;1515;3834;1105;4834;2716;102;397;96;338;28099;21222;16649;19123;19198
-238;'231;Ethiopia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;404;200;35;0;0;0;0;0;0;0;0;0;0;2218;3031;3031;1416;4220;3529;5948;3395;91;159;71;470;1809;1412;1044;1234;1234
-238;'231;Ethiopia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;25000;25000;25000;25000;25000;25000;25000;25000;700;300;300;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500
-238;'231;Ethiopia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;304;3129;1100;3500;1500;9100;12700;8200;7433;10759;18766;19833;16112;24066;32672;32152;5056;1838;9584;14189;22438;40039;33584;43629;51908;56647;39664;23956;12835;18451
-238;'231;Ethiopia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;58;602;236;538;235;1467;2683;1976;1563;3424;5595;5005;5784;10407;10049;9755;1258;465;1886;3617;3991;9041;7471;14583;15175;13143;8882;7415;4639;4894
-238;'231;Ethiopia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;3127;1200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;57;25;2;50;0;2;0;75
-238;'231;Ethiopia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;404;200;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;12;7;1;10;2;24;13;13
-238;'231;Ethiopia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;20000;15000;8000;35000;35000;35000;35000;35000;12800;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;17400;30000;20000;20000;88000;78000
-238;'231;Ethiopia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;56;56;200;8500;300;0;1486;860;1106;369;1000;1400;3722;3722;1867;853;128;388;887;15217;21396;5449;4048;6131;2638;18596;13402;5332;1983;3
-238;'231;Ethiopia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;32;32;45;6300;220;0;366;228;256;94;670;625;1983;1983;1493;671;121;171;198;14323;18348;4010;2555;4172;1861;9026;6910;2966;1703;1
-238;'231;Ethiopia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;;;;;;;;;;;;;;7306;12066;12066;1515;3834;1105;4834;2716;78;340;71;336;28049;21222;16647;19123;19123
-238;'231;Ethiopia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;;;;;;;;;;;;;;2218;3031;3031;1416;4220;3529;5948;3395;86;147;64;469;1799;1410;1020;1221;1221
-238;'231;Ethiopia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93800;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;56600;6195;5257
-238;'231;Ethiopia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;104;104;100;2800;3100;2400;300;343;70;233;236;421;780;596;804;300;460;352;282;650;1643;428;924;703;304;153;3;38;1353;23
-238;'231;Ethiopia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;182;182;184;1264;1030;578;199;417;112;167;267;426;441;738;683;179;622;816;621;1434;2158;469;1021;727;792;243;545;1469;2943;89
-238;'231;Ethiopia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;753;753;0;73;146;231;0;733;203;2831;512
-238;'231;Ethiopia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;156;21;0;9;20;41;0;80;83;223;34
-238;'231;Ethiopia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11400;12500;12000;14200;10100;25000;25400;23300;19900;36800;36400;25900;25900;25900;25900;33200;46200;46200;46200;46200;46200;46200;46200;46200;46200;46200;46200;46200;247995;247991
-238;'231;Ethiopia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;1844;1815;800;11200;12000;12100;12765;22269;20359;37826;27665;36312;46821;38233;36174;39911;52529;33979;39589;50154;75453;61708;87624;107828;43620;102511;65186;27671.5;19384;15246
-238;'231;Ethiopia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;673;634;158;2956;2883;2902;4022;5668;5182;8944;8242;10872;16786;15876;13757;17440;17109;15656;17632;34131;56842;50588;40621;35482;25016;37021;23458;13492.09;14218;10942
-238;'231;Ethiopia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;124;62;62;14;0;197;2;4;3;113;28;29;39;44;7041
-238;'231;Ethiopia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;35;35;19;0;94;1;6;1;39;24;9;11;30;1223
-238;'231;Ethiopia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;3000;2000;3700;2800;1000;1200;2300;1300;18200;18200;18200;18200;18200;18200;25000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;43734;48412
-238;'231;Ethiopia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;63;2;100;7400;9200;9800;9200;15393;13685;20382;15809;17390;24268;17382;15392;22873;19221;22195;24793;22616;24717;15901;20782;24285;22516;21429;10873;5352;3279;2722
-238;'231;Ethiopia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;38;1;54;1943;2278;2399;3345;4605;4388;6034;5973;7465;10679;10252;8631;12527;7566;8939;9674;16342;19838;9635;10617;9970;10508;10404;5440;3244;2924;1845
-238;'231;Ethiopia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;62;0;0;14;0;193;0;1;0;82;0;0;11;42;0
-238;'231;Ethiopia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;19;0;92;0;5;0;30;2;0;3;29;0
-238;'231;Ethiopia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;457;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7500;7300;20000;20000;20000;18000;18000;18000;7500;7500;7500;7500;8000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000
-238;'231;Ethiopia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;3600;2600;2300;2700;2360;4826;15950;8414;13564;15381;7741;11523;6800;21100;3656;3337;19705;10256;4714;16635;2188;2188;10649;5716;2665.61;3219;2698
-238;'231;Ethiopia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;83;954;546;503;475;600;622;2672;1632;2737;4145;1304;2904;2522;6540;2484;1884;8365;8453;3963;9144;1752;1752;4204;2744;2509;3167;2860
-238;'231;Ethiopia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;3;3;3;0;1;0;0;0
-238;'231;Ethiopia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;14;1;0;0;0
-238;'231;Ethiopia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5741;900;900;900;900;1;45;159;36;50;0;0;4;62;3;1;138
-238;'231;Ethiopia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1864;202;202;202;202;2;46;208;33;44;0;0;1;18;3;0;88
-238;'231;Ethiopia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2500;2500;3000;3000;0;4000;4200;1000;600;600;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;182261;177579
-238;'231;Ethiopia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;1324;1313;200;200;200;0;865;4516;1848;1494;3442;5358;7172;7369;8359;9338;11308;7228;11458;7788;40321;41057;50157;81355;18916;70429;48535;19650.88;12885;9688
-238;'231;Ethiopia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;490;488;21;59;59;0;202;463;172;238;637;670;1962;2456;2020;2189;2801;4031;6072;9378;28343;36957;20816;23760;12756;22412;15256;7736.09;8127;6149
-238;'231;Ethiopia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;0;0;0;0;0;0;28;28;28;28;2;7041
-238;'231;Ethiopia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;0;0;0;0;0;0;8;8;8;8;1;1223
-238;'231;Ethiopia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4200;1000;600;600;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;18022;13831
-238;'231;Ethiopia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;403;60;80;1326;336;3160;2869;1027;96;275;123;55;287;2502;2137;1275;778;59;13;72;37;5;29
-238;'231;Ethiopia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;158;24;41;410;132;1317;1768;576;88;167;124;56;693;3430;2890;835;501;41;14;69;52;10;39
-238;'231;Ethiopia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7039
-238;'231;Ethiopia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1222
-238;'231;Ethiopia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164239;163748
-238;'231;Ethiopia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;337;199;451;887;992;2891;1159;3474;5522;9182;6241;10725;6400;35858;32216;34679;52816;11062;53350;28616;14065.14;8396;7924
-238;'231;Ethiopia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;64;45;88;113;209;518;248;950;1687;2309;3653;5773;8358;24568;32925;17691;19590;11681;19988;12383;6735.54;6550;5596
-238;'231;Ethiopia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;0;0;0;0;0;0;28;28;28;28;2;2
-238;'231;Ethiopia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;0;0;0;0;0;0;8;8;8;8;1;1
-238;'231;Ethiopia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2500;2500;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1313;1313;200;200;200;0;329;3776;1589;963;1229;4030;1121;3341;3858;3720;1851;864;678;1101;1961;6704;14203;27761;7795;17066;19847;5548.74;4484;1735
-238;'231;Ethiopia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;488;21;59;59;0;33;241;103;109;114;329;127;440;494;414;325;254;243;327;345;1142;2290;3669;1034;2410;2804;948.55;1567;514
-238;'231;Ethiopia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;11600;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900;11900
-238;'231;Ethiopia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11242;3895;4395;5700;6700;6800;4400;10524;11556;8484;8567;9319;8201;10716;10056;9195;8461;9607;13841;13161;18385;9738;11035;9581;3420;6475;10753;10350;9908.01;11680;16258
-238;'231;Ethiopia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;1802;2273;2576;2782;2557;1342;6276;5991;3679;3490;4717;4040;7171;4326;6444;3752;5276;8377;8633;11474;7159;11436;7883;1899;3594;8919;8742;9070.02;10651;16793
-238;'231;Ethiopia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;95;0;0;0;0;0;0;0;0;0;0;0;0;0;0;198;50;0;0;0;4;3;3;3;3;3;7;7
-238;'231;Ethiopia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55;14;0;0;0;2;1;1;1;1;2;1;1
-238;'231;Ethiopia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9700;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400
-238;'231;Ethiopia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11242;3895;4395;5700;6700;6800;4400;7980;9236;6865;5873;7368;6740;7988;7990;7364;5101;6298;7577;9079;11793;5657;9332;7852;2120;4456;8707;10004;8644.14;5934;9065
-238;'231;Ethiopia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;1802;2273;2576;2782;2557;1342;5662;5429;3306;2872;4254;3698;5105;3804;5993;2699;4109;6629;7132;10324;5712;10939;7392;1324;2787;7346;8555;8560.6;7675;11205
-238;'231;Ethiopia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;4;3;3;3;3;3;3;3
-238;'231;Ethiopia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;1;1;1;1
-238;'231;Ethiopia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11242;3895;4395;5700;6700;6800;4400;7980;9236;6865;5873;7368;6740;7988;7990;7360;5097;6282;7393;9169;11976;5571;9727;8342;2610;4946;7882;10425;8722.14;5879.05;9129.05
-238;'231;Ethiopia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;1802;2273;2576;2782;2557;1342;5662;5429;3306;2872;4254;3698;5105;3804;5980;2686;4087;6171;7189;10823;5411;10981;7612;1544;3007;6559;8750;8474.6;7608.65;11274.65
-238;'231;Ethiopia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;4;3;3;3;3;3;3;3
-238;'231;Ethiopia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;1;1;1;1
-238;'231;Ethiopia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384
-238;'231;Ethiopia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434
-238;'231;Ethiopia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1897;1897;1700;1100;1000;1000;1000;1000;1000;560;500;500;500;500;500;500;206;201;201;166;0;0;0;;;;;;;
-238;'231;Ethiopia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;827;827;616;643;273;273;273;273;273;278;250;250;250;250;250;250;230;204;204;561;0;0;0;;;;;;;
-238;'231;Ethiopia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;;;;;;;
-238;'231;Ethiopia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-238;'231;Ethiopia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;592;230;230;1512;3973;1487;0;7;13;0;;;;;;;
-238;'231;Ethiopia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;498;195;195;1388;3280;1094;0;3;78;0;;;;;;;
-238;'231;Ethiopia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11242;1998;2498;4000;5600;5800;3400;6980;8236;5865;5313;6868;6240;7388;6898;6630;4367;4564;3195;7391;11617;5564;9210;7838;2106;4442;7378;9920;8596.14;5753;8619
-238;'231;Ethiopia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246;975;1446;1960;2139;2284;1069;5389;5156;3033;2594;4004;3448;4793;3056;5535;2241;2469;2671;5834;9727;5408;10615;7324;1256;2719;6271;8492;8333.6;7468;10700
-238;'231;Ethiopia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;3;3;3;3;3;3;3
-238;'231;Ethiopia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;1;1;1;1
-238;'231;Ethiopia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;880;700;759;2075;300;300;324;379;379;379;560;312;87;315;1017;621;122;122;452;1448;665.46;144;560
-238;'231;Ethiopia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528;528;315;397;1133;145;150;162;144;144;144;358;161;142;517;592;587;52;52;483;1079;681.4;202;595
-238;'231;Ethiopia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621;;500;2000;3000;5000;2800;3500;6356;5118;4503;4722;4341;6528;6548;6226;3938;3938;2343;5730;9983;4654;6814;6305;1983;3814;4155;7718;7234.69;5608;8058
-238;'231;Ethiopia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623;;471;975;1274;1958;910;2689;3778;2671;2161;2828;2350;4273;2870;5367;2052;2052;2034;4610;7550;4305;8043;6019;1201;2537;4059;6617;7229.2;7259;10098
-238;'231;Ethiopia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;3;3;3;3;3;3;3
-238;'231;Ethiopia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;1;1;1;1
-238;'231;Ethiopia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;506;2771;754;696;1;1
-238;'231;Ethiopia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;130;1729;796;423;7;7
-238;'231;Ethiopia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1262;310;971;408;;;;;;;
-238;'231;Ethiopia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1828;331;1572;345;;;;;;;
-238;'231;Ethiopia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621;1998;1998;2000;2600;800;600;2600;1000;47;51;71;1599;560;26;25;50;247;292;1349;285;285;408;504;;;;;;;
-238;'231;Ethiopia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623;975;975;985;865;326;159;2172;850;47;36;43;953;370;24;24;45;273;279;1063;207;255;408;373;;;;;;;
-238;'231;Ethiopia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;90;193;0;504;504;504;504;504;505;126;126.05;126.05
-238;'231;Ethiopia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;57;535;0;288;288;288;288;288;258;141;140.65;140.65
-238;'231;Ethiopia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9700;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400;9400
-238;'231;Ethiopia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;16;208;0;10;86;109;14;14;14;1329;84;48;181;62
-238;'231;Ethiopia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;22;474;0;36;301;246;68;68;68;1075;63;227;207;71
-238;'231;Ethiopia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;57;15;7;7;7;7;0;0;0;6;0
-238;'231;Ethiopia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;108;23;17;17;17;17;0;0;0;16;0
-238;'231;Ethiopia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;0;0
-238;'231;Ethiopia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;0;0
-238;'231;Ethiopia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;1900;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500
-238;'231;Ethiopia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2544;2320;1619;2694;1951;1461;2728;2066;1831;3360;3309;6264;4082;6592;4081;1703;1729;1300;2019;2046;346;1263.86;5746;7193
-238;'231;Ethiopia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;562;373;618;463;342;2066;522;451;1053;1167;1748;1501;1150;1447;497;491;575;807;1573;187;509.42;2976;5588
-238;'231;Ethiopia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;198;49;0;0;0;0;0;0;0;0;0;4;4
-238;'231;Ethiopia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;55;14;0;0;0;0;0;0;0;0;1;0;0
-238;'231;Ethiopia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6700;7300;6300;7600;10000;6200;9500;11900;12300;11400;13700;16360;16360;16360;16360;16360;41400;78400;78400;78400;78400;78400;78400;78400;78400;78400;78400;78400;78400;78400;78400
-238;'231;Ethiopia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874;6375;940;6300;7100;11700;20100;26357;24986;13841;25252;37831;48666;52373;53494;66711;51758;63589;58129;63443;91403;127212;97877;105080;91376;68831;116987;81477;69145.52;65434;105545
-238;'231;Ethiopia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2591;4104;818;5416;4897;6927;16331;22600;21733;11684;24916;29986;37937;42620;49358;69590;53184;70752;62492;60051;106056;148140;135356;103657;73994;57467;110754;73989;76922.55;90367;138664
-238;'231;Ethiopia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;0;0;0;0;0;0;22;26;26;26;55;802.2;1183.05;852;865;930;890;890;849;86;929;928;80
-238;'231;Ethiopia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;0;0;0;0;55;65;65;65;88;646.8;958.6;609;626;773;658;658;626;55;639;640;34
-238;'231;Ethiopia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5300;4300;5300;7200;4300;3700;3700;3700;3700;4800;6560;6560;6560;6560;6560;20400;51400;51400;51400;51400;51400;51400;51400;51400;51400;51400;51400;51400;51400;51400
-238;'231;Ethiopia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1644;3375;440;3800;4800;8900;12800;15456;14538;7909;13608;23972;32791;32750;32046;34987;39380;42455;31125;37869;55874;82539;57694;61149;60354;47622;77328;46021;37911.01;44411;68996
-238;'231;Ethiopia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;940;2215;371;3498;3370;5232;11835;12837;13741;6792;15543;18881;26760;28400;31691;37759;40050;46780;33050;38435;65043;91954;91417;64961;50601;41274;78724;44094;43902.28;64826;101586
-238;'231;Ethiopia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;24;24;24;52;558.2;1183.05;852;856;880;880;880;847;0;847;848;0
-238;'231;Ethiopia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;60;60;60;85;528.8;958.6;609;612;634;634;634;602;7;600;605;1
-238;'231;Ethiopia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;2700;2000;1000;1000;1000;1000;100;160;160;160;160;160;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-238;'231;Ethiopia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;;;1000;1500;4600;1300;5200;1886;1410;2406;3629;2551;1246;2466;3336;1384;12897;3690;3021;5169;5982;7303;4454;4510;3744;1898;4156;1225.66;2064;2408
-238;'231;Ethiopia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;;;647;722;2120;574;2606;1424;871;1257;2054;1766;936;1903;3261;1338;15516;3209;2496;3352;6450;14525;3296;2147;1960;1793;3532;1415;2157;2917
-238;'231;Ethiopia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;847;847;847;847;847;847;847;0;847;847;0
-238;'231;Ethiopia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;600;600;600;600;600;600;600;0;600;600;0
-238;'231;Ethiopia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5300;4300;4000;4500;2300;2700;2700;2700;2700;4700;6400;6400;6400;6400;6400;10400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400
-238;'231;Ethiopia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3375;440;2800;3300;4300;11500;10256;12652;6499;11202;20343;30240;31504;29580;31651;37996;29558;27435;34848;50705;76557;50391;56695;55844;43878;75430;41865;36685.36;42347;66588
-238;'231;Ethiopia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745;2215;371;2851;2648;3112;11261;10231;12317;5921;14286;16827;24994;27464;29788;34498;38712;31264;29841;35939;61691;85504;76892;61665;48454;39314;76931;40562;42487.28;62669;98669
-238;'231;Ethiopia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;24;24;24;52;333.2;336.05;5;9;33;33;33;0;0;0;1;0
-238;'231;Ethiopia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;60;60;60;85;363.8;358.6;9;12;34;34;34;2;7;0;5;1
-238;'231;Ethiopia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-238;'231;Ethiopia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;21;326;73;597;218;1590;1832;4129;6200;2835;4012;7217;7786;6403;6394;9915;17280;17280;17535;10438;15537.2;7975;14459
-238;'231;Ethiopia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;35;315;60;490;261;1419;2380;4957;5995;2908;4666;7889;9325;5224;8277;10454;15014;15014;17816;9231;15484.79;11610;20489
-238;'231;Ethiopia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;0.2;0.05;0;0;3;3;3;0;0;0;1;0
-238;'231;Ethiopia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;1.8;1.6;0;0;6;6;6;0;0;0;3;0
-238;'231;Ethiopia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2700;2700;2700;2700;4700;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400
-238;'231;Ethiopia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;11500;8400;9042;4772;6409;13490;23210;17759;19728;20381;25996;22295;19089;20574;28368;49361;27084;26721;19261;18910;41182;22867;14354.73;21971;37705
-238;'231;Ethiopia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3112;11261;8257;8750;4198;9834;10860;18169;14395;19388;22227;27108;23157;20246;20761;35937;50650;44766;29220;15599;16313;42075;22239;15524.87;30075;53001
-238;'231;Ethiopia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;330;330;5;5;30;30;30;0;0;0;0;0
-238;'231;Ethiopia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;354;354;9;9;28;28;28;0;1;0;2;0
-238;'231;Ethiopia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000
-238;'231;Ethiopia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1795;3589;1401;4720;6256;6812;12155;8020;7141;5800;4428;4334;7057;14551;20793;16913;20059;19303;7688;16713;8560;6793.43;12401;14424
-238;'231;Ethiopia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;3532;1408;4392;5477;6564;11650;8020;7314;5609;5199;4929;7289;16429;29630;23849;21991;17841;7987;17040;9092;11477.61;20984;25179
-238;'231;Ethiopia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;3;6;0;4;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;8;3;0;3;0;0;0;2;6;0;0;1
-238;'231;Ethiopia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2300;2800;1900;5800;8200;8600;7700;8900;9800;9800;9800;9800;9800;21000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000
-238;'231;Ethiopia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230;3000;500;2500;2300;2800;7300;10901;10448;5932;11644;13859;15875;19623;21448;31724;12378;21134;27004;25574;35529;44673;40183;43931;31022;21209;39659;35456;31234.51;21023;36549
-238;'231;Ethiopia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1651;1889;447;1918;1527;1695;4496;9763;7992;4892;9373;11105;11177;14220;17667;31831;13134;23972;29442;21616;41013;56186;43939;38696;23393;16193;32030;29895;33020.28;25541;37078
-238;'231;Ethiopia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;3;244;0;0;9;50;10;10;2;86;82;80;80
-238;'231;Ethiopia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;3;118;0;0;14;139;24;24;24;48;39;35;33
-238;'231;Ethiopia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-238;'231;Ethiopia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887;582;1005;1022;1338;2502;1782;2014;2283;7350;15337;2415;2375;3731;4850;4061;4725;1793;2108;3052;2751;2636.11;1405;1858
-238;'231;Ethiopia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211;707;1104;1039;1647;2341;2325;2619;3426;6917;16461;4051;3862;7194;11542;8612;9005;2148;2798;4422;4135;4261.56;2519;3263
-238;'231;Ethiopia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;1;0;0
-238;'231;Ethiopia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;22;5;1;2;0
-238;'231;Ethiopia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1000;2700;2000;1300;2500;3400;3400;3400;3400;3400;13000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-238;'231;Ethiopia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;7300;9384;8594;4499;9934;11719;12769;17002;18888;28406;4591;5451;22929;20360;31369;39568;35684;38641;28456;18846;35762;31836;28362.4;19291;33591
-238;'231;Ethiopia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1695;4496;7284;5674;2968;7072;8100;7630;10252;13832;26251;5117;6202;21623;14565;32668;43716;34016;28419;19874;11846;25593;24427;28020.72;21881;30546
-238;'231;Ethiopia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;3;244;0;0;9;42;2;2;1;81;81;80;80
-238;'231;Ethiopia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;5;5;3;118;0;0;14;119;4;4;2;38;38;33;33
-238;'231;Ethiopia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2300;2800;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;500;2500;2300;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1889;447;1918;1527;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-238;'231;Ethiopia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;3107;1948;3892;3428;6943;8302;12063;16481;2093;850;8079;9387;20445;26708;29090;29109;22526;15543;28919;25422;20733.44;12714;25922
-238;'231;Ethiopia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;1756;894;1793;1560;3269;3630;7287;11164;2544;1685;5638;5874;13425;17964;19988;17129;15206;8591;18533;16662;17467.26;13593;21718
-238;'231;Ethiopia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;0;0;0;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;0;0;0;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1000;2700;2000;1300;1000;1600;1600;1600;1600;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-238;'231;Ethiopia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;7300;6700;1657;439;553;1061;2016;926;700;1153;1081;606;7804;8614;4817;6024;2393;2737;3441;1007;1701;1470;2566.69;2522;2565
-238;'231;Ethiopia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1695;4496;5547;1252;438;659;1416;1678;861;644;1278;1251;1201;6726;5771;9664;14500;2746;3063;2751;1270;2097;1603;2586.78;3464;3462
-238;'231;Ethiopia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;41;1;1;0;80;80;80;80
-238;'231;Ethiopia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;117;2;2;0;33;33;33;33
-238;'231;Ethiopia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1799;3794;2112;5295;6964;3632;7717;6067;10760;1407;3978;7015;2268;5303;6801;3897;6749;2128;2215;4479;4715;4741.02;3887;4783
-238;'231;Ethiopia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;2644;1636;4503;4946;2582;5722;5861;13794;1317;3271;9160;2637;7393;11173;10634;8063;1252;1939;4578;5968;7687.68;4612;5103
-238;'231;Ethiopia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;3;0;0;0;0;1;1;1;1;1;1;0;0
-238;'231;Ethiopia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;5;5;3;0;0;0;0;2;2;2;2;5;5;0;0
-238;'231;Ethiopia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1800;1800;1800;1800;1800;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-238;'231;Ethiopia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;36;0;194;266;178;57;58;12;10;17;31;91;804;35;304;46;361;81;663;229;321.25;168;321
-238;'231;Ethiopia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;22;0;117;178;101;39;40;15;5;45;99;283;2186;79;648;164;665;46;385;194;279;212;263
-238;'231;Ethiopia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;5500;6600;6400;6400;6400;6400;6400;6400;6400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-238;'231;Ethiopia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;1272;428;688;802;604;839;546;1035;437;346;1660;2839;429;255;438;565;773;255;845;869;236;327;1100
-238;'231;Ethiopia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1268;1611;820;1262;1358;1206;1643;1216;2154;1100;1309;3768;3189;1151;928;1311;1272;1371;1549;2015;1333;738;1141;3269
-238;'231;Ethiopia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;4;0;0;0
-238;'231;Ethiopia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;0;5;0;0;0
-238;'231;Ethiopia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52295;51584;52715;48505;47741;69873;39726
-238;'231;Ethiopia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1428;595;1040;852;918;758;1092
-238;'231;Ethiopia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;172;99;229;80;110;446
-238;'231;Ethiopia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;1;1
-238;'231;Ethiopia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;24;26;17;2;4;3
-238;'231;Ethiopia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-238;'231;Ethiopia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;148;73;212;78;106;443
-238;'231;Ethiopia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;1;1
-238;'231;Ethiopia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;228;701;374;176;223;246
-238;'231;Ethiopia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;11;1;5;2;7
-238;'231;Ethiopia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1382;1491;1601;1061;1886;1679;1455
-238;'231;Ethiopia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;36;47;64;115;55;95
-238;'231;Ethiopia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7491;7653;7829;5418;7396;12323;7680
-238;'231;Ethiopia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;83;1;1;0;0
-238;'231;Ethiopia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-238;'231;Ethiopia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48
-238;'231;Ethiopia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41022;41001;40498;37607;36439;52895;28869
-238;'231;Ethiopia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;541;880;757;774;663;972
-238;'231;Ethiopia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;729;212;1930;454
-238;'231;Ethiopia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-238;'231;Ethiopia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;1039;1868;3087;1552;713;576
-238;'231;Ethiopia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;5;15;9;37;17
-238;'231;Ethiopia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75987;69756;51561;45065;55070;67507;72266
-238;'231;Ethiopia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;55;144;1006;1887;2372;2128
-238;'231;Ethiopia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;285;253;335;319;205;223
-238;'231;Ethiopia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4812;3343;4191;5005;7097;8308;6328
-238;'231;Ethiopia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0
-238;'231;Ethiopia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2877;2177;1636;1023;1254;1029;2374
-238;'231;Ethiopia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;18;31;17;46;103;4
-238;'231;Ethiopia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13753;19201;8354;6399;6043;6576;6982
-238;'231;Ethiopia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;53;912;1647;2033;2112
-238;'231;Ethiopia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54335;44750;37127;32303;40357;51389;56359
-238;'231;Ethiopia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;20;60;77;194;236;12
-62;'230;Ethiopia PDR;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;146;864;1070;1202;1271;1289;1494;1506;1463;2993;3749;3547;2999;4711;3098;2184;4426;5573;8064;8066;7816;8900;11734;11774;15356;14256;13636;5590;3814;4194;4194;3991;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1861;Roundwood;5516;Production;m3;38303340;39061363;39839394;40627741;41442710;42270613;43118776;43983520;44872183;45809102;46548609;47233192;48105789;49131291;50345488;51399932;52698298;54238612;55104100;55915567;57044356;58581903;59437264;62316173;65290478;66081772;66421168;68584092;70844773;72640723;76139000;79080810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1862;Roundwood, coniferous;5516;Production;m3;1381448;1407611;1434298;1461521;1489290;1522617;1552512;1582988;1616055;1681726;1729981;1758736;1788381;1823339;1864896;1900832;1945298;1998192;2027064;2054431;2092792;2075195;2103432;2186753;2281130;2299156;2301376;2366340;2443653;2500307;2619080;2729146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1863;Roundwood, non-coniferous;5516;Production;m3;36921892;37653752;38405096;39166220;39953420;40747996;41566264;42400532;43256128;44127376;44818628;45474456;46317408;47307952;48480592;49499100;50753000;52240420;53077036;53861136;54951564;56506708;57333832;60129420;63009348;63782616;64119792;66217752;68401120;70140416;73519920;76351664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1864;Wood fuel;5516;Production;m3;37353340;38101363;38864394;39642741;40436710;41246613;42072776;42915520;43775183;44652102;45345609;45996192;46843789;47843291;49031488;50058932;51330298;52842612;53668100;54450567;55547356;56816903;57624264;60521173;63505478;64306772;64656168;66828092;69095773;70915723;74426000;77372810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1627;Wood fuel, coniferous;5516;Production;m3;1306448;1332611;1359298;1386521;1414290;1442617;1471512;1500988;1531055;1561726;1585981;1608736;1638381;1673339;1714896;1750832;1795298;1848192;1877064;1904431;1942792;1987195;2015432;2116753;2221130;2249156;2261376;2337340;2416653;2480307;2603080;2706146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1628;Wood fuel, non-coniferous;5516;Production;m3;36046892;36768752;37505096;38256220;39022420;39803996;40601264;41414532;42244128;43090376;43759628;44387456;45205408;46169952;47316592;48308100;49535000;50994420;51791036;52546136;53604564;54829708;55608832;58404420;61284348;62057616;62394792;64490752;66679120;68435416;71822920;74666664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1865;Industrial roundwood;5516;Production;m3;950000;960000;975000;985000;1006000;1024000;1046000;1068000;1097000;1157000;1203000;1237000;1262000;1288000;1314000;1341000;1368000;1396000;1436000;1465000;1497000;1765000;1813000;1795000;1785000;1775000;1765000;1756000;1749000;1725000;1713000;1708000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1866;Industrial roundwood, coniferous;5516;Production;m3;75000;75000;75000;75000;75000;80000;81000;82000;85000;120000;144000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;88000;88000;70000;60000;50000;40000;29000;27000;20000;16000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1867;Industrial roundwood, non-coniferous;5516;Production;m3;875000;885000;900000;910000;931000;944000;965000;986000;1012000;1037000;1059000;1087000;1112000;1138000;1164000;1191000;1218000;1246000;1286000;1315000;1347000;1677000;1725000;1725000;1725000;1725000;1725000;1727000;1722000;1705000;1697000;1685000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1868;Sawlogs and veneer logs;5516;Production;m3;90000;90000;95000;105000;106000;115000;117000;118000;125000;162000;186000;195000;195000;195000;195000;195000;195000;195000;195000;195000;195000;120000;120000;102000;92000;82000;72000;63000;56000;32000;20000;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;70000;70000;70000;70000;70000;75000;76000;77000;80000;115000;134000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;78000;78000;60000;50000;40000;30000;19000;17000;10000;6000;13000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;20000;20000;25000;35000;36000;40000;41000;41000;45000;47000;52000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;42000;42000;42000;42000;42000;42000;44000;39000;22000;14000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1871;Other industrial roundwood;5516;Production;m3;860000;870000;880000;880000;900000;909000;929000;950000;972000;995000;1017000;1042000;1067000;1093000;1119000;1146000;1173000;1201000;1241000;1270000;1302000;1645000;1693000;1693000;1693000;1693000;1693000;1693000;1693000;1693000;1693000;1693000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;855000;865000;875000;875000;895000;904000;924000;945000;967000;990000;1007000;1032000;1057000;1083000;1109000;1136000;1163000;1191000;1231000;1260000;1292000;1635000;1683000;1683000;1683000;1683000;1683000;1683000;1683000;1683000;1683000;1683000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1630;Wood charcoal;5510;Production;t;944598;968673;993473;1019014;1045211;1072083;1099647;1127919;1156919;1186666;1208580;1229225;1258514;1293897;1337261;1373387;1419697;1476621;1503816;1529661;1570893;1620233;1648942;1771228;1897838;1924131;1928046;2016167;2109741;2183153;2339056;2469805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1630;Wood charcoal;5910;Export quantity;t;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1630;Wood charcoal;5922;Export value;1000 USD;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1872;Sawnwood;5516;Production;m3;40000;45000;47000;50000;51000;56000;58000;59000;60000;80000;97000;97000;97000;97000;85000;85000;88000;65000;65000;65000;65000;45000;45000;45000;45000;45000;45000;39000;34000;22000;12000;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1632;Sawnwood, coniferous;5516;Production;m3;37000;42000;44000;35000;35000;38000;39000;40000;40000;60000;73000;73000;73000;73000;64000;64000;66000;49000;49000;49000;49000;34000;34000;34000;34000;34000;34000;27000;24000;16000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1633;Sawnwood, non-coniferous;5516;Production;m3;3000;3000;3000;15000;16000;18000;19000;19000;20000;20000;24000;24000;24000;24000;21000;21000;22000;16000;16000;16000;16000;11000;11000;11000;11000;11000;11000;12000;10000;6000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1873;Wood-based panels;5516;Production;m3;1100;1100;1500;2000;1700;4100;4500;4300;5800;10100;10300;13600;15200;15200;14000;14000;14000;14000;14000;14000;14000;15000;13000;13300;13500;11500;12900;11900;12600;12100;10100;8300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1873;Wood-based panels;5616;Import quantity;m3;300;1000;3100;1200;900;1200;2000;900;800;800;800;900;700;300;300;300;300;300;300;300;300;200;200;200;200;200;200;300;400;400;400;659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1873;Wood-based panels;5622;Import value;1000 USD;80;233;120;118;92;124;182;150;141;158;160;174;123;123;151;151;151;151;151;151;151;157;157;157;157;157;157;285;331;331;331;310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1640;Plywood and LVL;5516;Production;m3;1100;1100;1500;2000;1700;1600;2000;1700;2300;2500;3700;3600;3800;3800;3000;3000;3000;3000;3000;3000;3000;2000;1700;2000;2500;2900;2900;2700;2600;2800;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1640;Plywood and LVL;5616;Import quantity;m3;300;1000;3100;1200;900;1200;2000;900;800;800;800;900;700;300;300;300;300;300;300;300;300;200;200;200;200;200;200;300;400;400;400;517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1640;Plywood and LVL;5622;Import value;1000 USD;80;233;120;118;92;124;182;150;141;158;160;174;123;123;151;151;151;151;151;151;151;157;157;157;157;157;157;285;331;331;331;260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;2500;2500;2600;3500;3600;2600;2000;3400;3400;3000;3000;3000;3000;3000;3000;3000;5000;5300;5300;5000;4600;5500;6100;6200;6200;5600;3800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1874;Fibreboard;5516;Production;m3;;;;;;;;;;4000;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;6000;6000;6000;4000;4500;3100;3800;3100;2500;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;4000;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;6000;6000;6000;4000;4500;3100;3800;3100;2500;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;2000;2000;2000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1000;1000;1000;7000;7000;2000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;2700;3800;3400;5600;7700;600;600;4900;11200;9800;9800;9800;10300;14200;14200;9700;6900;5300;5800;2700;3500;3500;5397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;1115;1115;1115;2000;3036;419;419;1418;3587;3957;3957;3957;4448;6998;6998;4800;3800;3180;3785;1904;2284;2284;2456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;2700;3800;3400;5600;7700;600;600;4900;11200;9800;9800;9800;10300;14200;14200;9700;6900;5300;5800;2700;3500;3500;5397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;1115;1115;1115;2000;3036;419;419;1418;3587;3957;3957;3957;4448;6998;6998;4800;3800;3180;3785;1904;2284;2284;2456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;4300;4300;4200;4200;4200;6200;10100;10100;9700;6900;5300;5800;2700;3500;3500;5397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;999;999;1908;1908;1908;1812;4362;4362;4800;3800;3180;3785;1904;2284;2284;2456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;4300;4300;4200;4200;4200;6200;10100;10100;9700;6900;5300;5800;2700;3500;3500;4086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;999;999;1908;1908;1908;1812;4362;4362;4800;3800;3180;3785;1904;2284;2284;1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3500;2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2284;2284;992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;2700;3800;3400;5600;7700;600;600;600;6900;5600;5600;5600;4100;4100;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;1115;1115;1115;2000;3036;419;419;419;2588;2049;2049;2049;2636;2636;2636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1669;Recovered paper;5510;Production;t;;;;;;;;;;2000;2000;2000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1000;1000;1000;7000;7000;2000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1876;Paper and paperboard;5510;Production;t;300;400;400;400;400;600;1000;1000;1000;4000;4000;4000;4000;7500;7500;7500;7500;7500;7500;7500;7500;7500;8800;9900;10000;10000;12000;10000;10000;8000;6000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1876;Paper and paperboard;5610;Import quantity;t;300;2100;3900;4100;4500;4100;4400;7200;6000;6000;6000;6000;2200;2700;4200;2400;5400;2900;4500;4500;4000;5200;5600;5500;12900;8744;7345;3400;3600;3600;3600;1678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1876;Paper and paperboard;5622;Import value;1000 USD;66;631;950;1084;1179;1165;1312;1356;1322;1720;2474;2258;876;1552;2528;1614;2857;1835;3956;3958;3708;4295;4579;4619;10399;10299;10299;1520;1579;1579;1579;1190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;3500;3500;3500;3500;3500;3500;3500;3500;3500;6000;7000;8000;8000;10000;8000;8000;7000;5000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;2042;Graphic papers;5610;Import quantity;t;200;;;2300;2200;2000;2500;3300;3300;1800;2200;2200;1500;2100;3200;1400;3200;2100;2200;2200;1700;2000;2400;2300;7900;3744;2345;3400;3600;3600;3600;1678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;2042;Graphic papers;5622;Import value;1000 USD;40;;;604;605;530;655;921;921;527;527;527;479;953;1530;616;1273;1301;1235;1237;987;1273;1557;1597;6500;6400;6400;1520;1579;1579;1579;1190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1671;Newsprint;5610;Import quantity;t;200;;;900;1200;100;300;300;300;900;1100;1100;400;400;400;400;1000;1600;2000;2000;1500;1100;1500;1400;2200;1700;1700;2300;2300;2300;2300;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1671;Newsprint;5622;Import value;1000 USD;40;;;229;347;25;78;68;68;274;274;274;60;60;60;60;294;785;1048;1050;800;576;860;900;2100;2000;2000;1055;1056;1056;1056;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;3500;3500;3500;3500;3500;3500;3500;3500;3500;6000;7000;8000;8000;10000;8000;8000;7000;5000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1674;Printing and writing papers;5610;Import quantity;t;;;;1400;1000;1900;2200;3000;3000;900;1100;1100;1100;1700;2800;1000;2200;500;200;200;200;900;900;900;5700;2044;645;1100;1300;1300;1300;1654;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1674;Printing and writing papers;5622;Import value;1000 USD;;;;375;258;505;577;853;853;253;253;253;419;893;1470;556;979;516;187;187;187;697;697;697;4400;4400;4400;465;523;523;523;1180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1675;Other paper and paperboard;5510;Production;t;300;400;400;400;400;600;1000;1000;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;2800;2900;2000;2000;2000;2000;2000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1675;Other paper and paperboard;5610;Import quantity;t;100;2100;3900;1800;2300;2100;1900;3900;2700;4200;3800;3800;700;600;1000;1000;2200;800;2300;2300;2300;3200;3200;3200;5000;5000;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1675;Other paper and paperboard;5622;Import value;1000 USD;26;631;950;480;574;635;657;435;401;1193;1947;1731;397;599;998;998;1584;534;2721;2721;2721;3022;3022;3022;3899;3899;3899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;1000;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;2800;2900;2000;2000;2000;2000;2000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;700;600;1000;1000;2200;800;2300;2300;2300;3200;3200;3200;5000;5000;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-62;'230;Ethiopia PDR;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;397;599;998;998;1584;534;2721;2721;2721;3022;3022;3022;3899;3899;3899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6574;6969;5233;4569;3973;5451;8758
-65;'238;Falkland Islands (Malvinas);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;99;96;218;244;96;81
-65;'238;Falkland Islands (Malvinas);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;376;359;352;352;351;333;333;333;333;333;333;333;333;333;333;333;333;375;549;562;657;661;1030;1036;1921;969;784;1464;1131;910;728
-65;'238;Falkland Islands (Malvinas);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;1;1;1;1;25
-65;'238;Falkland Islands (Malvinas);1861;Roundwood;5516;Production;m3;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;931;931;931;819;819;819;819;819;819;819;806;794;782;770;758;747;735;724;713;702;692;681;681;690;712;739;771;810;832;861;895;935;981;966;951;937
-65;'238;Falkland Islands (Malvinas);1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;362;514;243;11;61;0;86;7;7
-65;'238;Falkland Islands (Malvinas);1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;148;235;77;4;19;0;40;36;9
-65;'238;Falkland Islands (Malvinas);1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1862;Roundwood, coniferous;5516;Production;m3;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;931;931;931;819;819;819;819;819;819;819;806;794;782;770;758;747;735;724;713;702;692;681;681;690;712;739;771;810;832;861;895;935;981;966;951;937
-65;'238;Falkland Islands (Malvinas);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;0;18;0;32;0;0
-65;'238;Falkland Islands (Malvinas);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;7;0;23;0;0
-65;'238;Falkland Islands (Malvinas);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;43;0;54;7;7
-65;'238;Falkland Islands (Malvinas);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;12;0;17;36;9
-65;'238;Falkland Islands (Malvinas);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1864;Wood fuel;5516;Production;m3;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;931;931;931;819;819;819;819;819;819;819;806;794;782;770;758;747;735;724;713;702;692;681;681;690;712;739;771;810;832;861;895;935;981;966;951;937
-65;'238;Falkland Islands (Malvinas);1627;Wood fuel, coniferous;5516;Production;m3;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;642;931;931;931;819;819;819;819;819;819;819;806;794;782;770;758;747;735;724;713;702;692;681;681;690;712;739;771;810;832;861;895;935;981;966;951;937
-65;'238;Falkland Islands (Malvinas);1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;362;514;243;11;61;0;86;7;7
-65;'238;Falkland Islands (Malvinas);1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;148;235;77;4;19;0;40;36;9
-65;'238;Falkland Islands (Malvinas);1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;240;0;18;0;32;0;0
-65;'238;Falkland Islands (Malvinas);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;76;0;7;0;23;0;0
-65;'238;Falkland Islands (Malvinas);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;240;0;18;0;32;0;0
-65;'238;Falkland Islands (Malvinas);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;76;0;7;0;23;0;0
-65;'238;Falkland Islands (Malvinas);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;362;511;3;11;43;0;54;7;7
-65;'238;Falkland Islands (Malvinas);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;148;215;1;4;12;0;17;36;9
-65;'238;Falkland Islands (Malvinas);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;362;511;3;11;43;0;54;7;7
-65;'238;Falkland Islands (Malvinas);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;148;215;1;4;12;0;17;36;9
-65;'238;Falkland Islands (Malvinas);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1630;Wood charcoal;5510;Production;t;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;136;136;136;119;119;119;89;89;89;89;87;85;113;112;110;108;106;105;103;101;100;98;98;97;97;97;97;98;105;113;122;131;141;139;136;134
-65;'238;Falkland Islands (Malvinas);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;20;10;10;10;3
-65;'238;Falkland Islands (Malvinas);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;4;2;2;2;3
-65;'238;Falkland Islands (Malvinas);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;2;2;2
-65;'238;Falkland Islands (Malvinas);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;2;2;2
-65;'238;Falkland Islands (Malvinas);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;505;286;286;286;286;286;286;286;286;286;286;286;286;286;286;286;286;286;2176;286;1669;1708;1973;2104;4618;1258;922;1520;3265;3412;2844
-65;'238;Falkland Islands (Malvinas);1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;158;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;142;265;191;369;239;558;550;1254;444;384;1094;696;674;542
-65;'238;Falkland Islands (Malvinas);1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;0;0;0;0;0;0;0;0;0;0;0;0;0;85
-65;'238;Falkland Islands (Malvinas);1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;24
-65;'238;Falkland Islands (Malvinas);1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;501;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;142;1640;726;1009;978;690;1259;3191;2218;2451
-65;'238;Falkland Islands (Malvinas);1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;155;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;13;40;33;29;166;280;247;352;392;227;542;571;361;375
-65;'238;Falkland Islands (Malvinas);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;85
-65;'238;Falkland Islands (Malvinas);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;24
-65;'238;Falkland Islands (Malvinas);1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;144;144;144;144;144;144;144;144;144;144;144;144;144;144;144;144;144;2034;144;1527;1566;333;1378;3609;280;232;261;74;1194;393
-65;'238;Falkland Islands (Malvinas);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;129;225;158;340;73;278;303;902;52;157;552;125;313;167
-65;'238;Falkland Islands (Malvinas);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;17;213;34;13;18;8;14;12
-65;'238;Falkland Islands (Malvinas);1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;24;221;73;5;53;14;16;20
-65;'238;Falkland Islands (Malvinas);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;101;56;34;34;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;3405;680;109;180;230;390;190;561;74;540
-65;'238;Falkland Islands (Malvinas);1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;42;21;14;14;13;13;13;13;13;13;13;13;13;13;13;13;13;68;119;206;123;257;100;62;204;283;129;194;318;83;53
-65;'238;Falkland Islands (Malvinas);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;61;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;3394;669;98;169;219;71;69;193;38;2
-65;'238;Falkland Islands (Malvinas);1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;29;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;63;114;201;118;252;95;57;199;278;76;149;237;37;7
-65;'238;Falkland Islands (Malvinas);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;123;9;278
-65;'238;Falkland Islands (Malvinas);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;18;9;6
-65;'238;Falkland Islands (Malvinas);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;110;245;21;230
-65;'238;Falkland Islands (Malvinas);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;40;63;19;15
-65;'238;Falkland Islands (Malvinas);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;29;29;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;6;30
-65;'238;Falkland Islands (Malvinas);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8;8;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;18;25
-65;'238;Falkland Islands (Malvinas);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16
-65;'238;Falkland Islands (Malvinas);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-65;'238;Falkland Islands (Malvinas);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14
-65;'238;Falkland Islands (Malvinas);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;21
-65;'238;Falkland Islands (Malvinas);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;150;157;157;157;157;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;132;57;36;11;13;18
-65;'238;Falkland Islands (Malvinas);1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;176;175;175;175;175;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;157;242;120;60;98;100
-65;'238;Falkland Islands (Malvinas);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;147;153;153;153;153;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;48;15;3;8;8
-65;'238;Falkland Islands (Malvinas);2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;167;166;166;166;166;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;215;64;34;68;67
-65;'238;Falkland Islands (Malvinas);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;2;2;2;1;1
-65;'238;Falkland Islands (Malvinas);1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;148;4;4;4;16;16
-65;'238;Falkland Islands (Malvinas);1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;19;25;25;25;25;;;;;;;;;;;;;;;;;;;;;;46;13;1;7;7
-65;'238;Falkland Islands (Malvinas);1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;19;18;18;18;18;;;;;;;;;;;;;;;;;;;;;;211;60;30;52;51
-65;'238;Falkland Islands (Malvinas);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;3;0;1;0
-65;'238;Falkland Islands (Malvinas);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;8;5;6;7
-65;'238;Falkland Islands (Malvinas);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;10;1;6;7
-65;'238;Falkland Islands (Malvinas);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;52;25;46;44
-65;'238;Falkland Islands (Malvinas);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-65;'238;Falkland Islands (Malvinas);1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;3;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;9;21;8;5;10
-65;'238;Falkland Islands (Malvinas);1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;27;56;26;30;33
-65;'238;Falkland Islands (Malvinas);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;1;1;2
-65;'238;Falkland Islands (Malvinas);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;4;7;18
-65;'238;Falkland Islands (Malvinas);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;6;19;7;4;8
-65;'238;Falkland Islands (Malvinas);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;14;42;13;21;14
-65;'238;Falkland Islands (Malvinas);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;6;16;2;1;5
-65;'238;Falkland Islands (Malvinas);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;14;35;5;15;8
-65;'238;Falkland Islands (Malvinas);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;3;3
-65;'238;Falkland Islands (Malvinas);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;8;6;6
-65;'238;Falkland Islands (Malvinas);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;9;2;1
-65;'238;Falkland Islands (Malvinas);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4385;5686;3989;2792;2496;4150;7718
-65;'238;Falkland Islands (Malvinas);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;99;95;217;243;95;56
-65;'238;Falkland Islands (Malvinas);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;302;131;9;170;15;62
-65;'238;Falkland Islands (Malvinas);2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53
-65;'238;Falkland Islands (Malvinas);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;73;12;2;2;12;7
-65;'238;Falkland Islands (Malvinas);1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53
-65;'238;Falkland Islands (Malvinas);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;229;119;7;168;3;55
-65;'238;Falkland Islands (Malvinas);1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;9;17;1;157;21;24
-65;'238;Falkland Islands (Malvinas);1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;7;0
-65;'238;Falkland Islands (Malvinas);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;116;360;105;240;122;46
-65;'238;Falkland Islands (Malvinas);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;2726;333;374;400;661;886
-65;'238;Falkland Islands (Malvinas);1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;23
-65;'238;Falkland Islands (Malvinas);1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;80
-65;'238;Falkland Islands (Malvinas);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;1194;1086;1160;1111;1621;1725
-65;'238;Falkland Islands (Malvinas);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;35;40;164;190;35;3
-65;'238;Falkland Islands (Malvinas);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365;583;1101;985;277;1533;4690
-65;'238;Falkland Islands (Malvinas);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609;756;961;158;141;177;285
-65;'238;Falkland Islands (Malvinas);1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;314;460;313;346;391;312
-65;'238;Falkland Islands (Malvinas);5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;9
-65;'238;Falkland Islands (Malvinas);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;66;66;66;66;66
-65;'238;Falkland Islands (Malvinas);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;50;30;13;11;12;39
-65;'238;Falkland Islands (Malvinas);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-65;'238;Falkland Islands (Malvinas);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;73;191;165;55;67;79
-65;'238;Falkland Islands (Malvinas);1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-65;'238;Falkland Islands (Malvinas);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;186;171;67;212;244;119
-65;'238;Falkland Islands (Malvinas);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75524;80332;90362;94289;123664;121691;101716
-64;'234;Faroe Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;425;675;503;963;759;1971
-64;'234;Faroe Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;149;10009;6043;4364;4180;4180;4174;4174;4174;4174;4174;4174;4174;4174;4174;4174;4174;4174;4174;8711;9479;9311;8828;9278;8743;9730;10268;9983;14998;17753;37497;17524;15128
-64;'234;Faroe Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;362;221;221;221;221;221;221;221;221;221;221;221;221;221;221;221;221;193;188;188;225;188;200;227;188;224;518;418;776;495;1232
-64;'234;Faroe Islands;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;598;200;85;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;2339;3726;3320;3621;2396;2324;4196;4292;3908;4425;6398;3226;3139;2215
-64;'234;Faroe Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;149;37;37;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;840;1367;1184;1382;901;784;1158;1397;1471;1647;1462;1998;1549;950
-64;'234;Faroe Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;0;0;0;0;2;0;0;0;6;0;0;11;0
-64;'234;Faroe Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;1;1;1;7;1
-64;'234;Faroe Islands;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4072;3798;3718;6003;3007;2548;2194
-64;'234;Faroe Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1330;1433;1345;1310;1887;1349;937
-64;'234;Faroe Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11;0
-64;'234;Faroe Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;0
-64;'234;Faroe Islands;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;110;707;395;219;591;21
-64;'234;Faroe Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;38;302;152;111;200;13
-64;'234;Faroe Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;0;0;0;0
-64;'234;Faroe Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;3;1
-64;'234;Faroe Islands;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;283;164;62;9;24
-64;'234;Faroe Islands;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;241;101;37;12;23
-64;'234;Faroe Islands;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0
-64;'234;Faroe Islands;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-64;'234;Faroe Islands;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;3;3;3
-64;'234;Faroe Islands;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;22;1;10;10
-64;'234;Faroe Islands;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;158;59;6;21
-64;'234;Faroe Islands;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;79;36;2;13
-64;'234;Faroe Islands;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0
-64;'234;Faroe Islands;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-64;'234;Faroe Islands;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;598;200;85;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;2339;3726;3320;3621;2396;2324;4196;4292;3908;4142;6234;3164;3130;2191
-64;'234;Faroe Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;149;37;37;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;840;1367;1184;1382;901;784;1158;1397;1471;1406;1361;1961;1537;927
-64;'234;Faroe Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;0;0;0;0;2;0;0;0;0;0;0;11;0
-64;'234;Faroe Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;6;0
-64;'234;Faroe Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;363;57;53;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;2190;3577;3171;3472;2247;2172;4166;4072;3798;3707;5997;3004;2545;2191
-64;'234;Faroe Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;37;19;17;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;819;1346;1163;1361;880;750;1147;1330;1433;1305;1288;1886;1339;927
-64;'234;Faroe Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;0;0;0;0;0;0;0;0;0;0;0;11;0
-64;'234;Faroe Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;4;0
-64;'234;Faroe Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;363;57;53;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;1065;2190;3577;3171;3472;2247;2172;4166;4072;3798;3707;5997;3004;2545;2191
-64;'234;Faroe Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;37;19;17;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;130;819;1346;1163;1361;880;750;1147;1330;1433;1305;1288;1886;1339;927
-64;'234;Faroe Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;0;0;0;0;0;0;0;0;0;0;0;11;0
-64;'234;Faroe Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;4;0
-64;'234;Faroe Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;235;143;32;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;152;30;220;110;435;237;160;585;0
-64;'234;Faroe Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;112;18;20;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;34;11;67;38;101;73;75;198;0
-64;'234;Faroe Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0
-64;'234;Faroe Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;36;4;2;2;0;2;39;0;0
-64;'234;Faroe Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;1;2;0;0;0;20;0;0
-64;'234;Faroe Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;235;143;32;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;149;116;26;218;108;435;235;121;585;0
-64;'234;Faroe Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;112;18;20;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;26;10;65;38;101;73;55;198;0
-64;'234;Faroe Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0
-64;'234;Faroe Islands;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;93;76;31;14;58
-64;'234;Faroe Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;102;79;40;18;132
-64;'234;Faroe Islands;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26
-64;'234;Faroe Islands;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21
-64;'234;Faroe Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;166;249;201;5;56
-64;'234;Faroe Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;50;506;60;9;48
-64;'234;Faroe Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;26;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;50;224;83;5;51
-64;'234;Faroe Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;29;126;31;9;45
-64;'234;Faroe Islands;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;152;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;116;25;118;0;5
-64;'234;Faroe Islands;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;21;380;29;0;3
-64;'234;Faroe Islands;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;65;203;31;166
-64;'234;Faroe Islands;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;28;93;21;76
-64;'234;Faroe Islands;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;44;130;24;139
-64;'234;Faroe Islands;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;14;31;11;48
-64;'234;Faroe Islands;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;21;73;7;27
-64;'234;Faroe Islands;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;14;62;10;28
-64;'234;Faroe Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13298;5287;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;3610;22966;12411;13350;12180;11497;21420;17600;19638;21759;28685;30063;49623;28171;25703
-64;'234;Faroe Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4607;1522;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;1091;3625;3596;3706;3138;3761;3879;4087;4010;4056;5792;6695;25439;9650;6381
-64;'234;Faroe Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;0;0;0;89;0;1;0;0;0;8;0;264;0;0
-64;'234;Faroe Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;4;0;0;0;0;0;2;0;78;0;0
-64;'234;Faroe Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12931;4987;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;3486;19998;11169;11394;12056;9894;14152;13524;14476;20374;24403;26464;36531;27166;19304
-64;'234;Faroe Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4369;1357;941;941;941;941;941;941;941;941;941;941;941;941;941;941;941;941;2943;3050;2970;2812;3406;3405;3245;3335;3528;4954;5589;9580;8696;5559
-64;'234;Faroe Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;89;0;0;0;89;0;0;0;0;0;8;0;264;0;0
-64;'234;Faroe Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;4;0;0;0;0;0;2;0;78;0;0
-64;'234;Faroe Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;300;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;2968;1242;1956;124;1603;7268;4076;5162;1385;4282;3599;13092;1005;6399
-64;'234;Faroe Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;165;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;682;546;736;326;355;474;842;675;528;838;1106;15859;954;822
-64;'234;Faroe Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;85;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;78;9;46;53;231;323;29;1130;1292
-64;'234;Faroe Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;176;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;87;56;121;111;66;50;21;47;82;81;215;42;261;130
-64;'234;Faroe Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7091;2948;1664;1340;1340;1325;1325;1325;1325;1325;1325;1325;1325;1325;1325;1325;1325;1325;7748;4493;8132;3827;17691;15369;13208;16425;7805;9074;23934;28853;4947;19835
-64;'234;Faroe Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3726;1693;957;773;773;767;767;767;767;767;767;767;767;767;767;767;767;767;2022;2323;2163;2060;2431;1911;2345;2695;2255;3390;4858;5814;4203;3805
-64;'234;Faroe Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;5;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;0;0;37;0;6;278;0;51;37;2;69;0;0
-64;'234;Faroe Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;4;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;0;33;0;12;39;0;36;27;5;47;0;2
-64;'234;Faroe Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-64;'234;Faroe Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3277;1431;799;799;799;799;799;799;799;799;799;799;799;799;799;799;799;799;7222;3967;7606;3301;17165;14843;12682;15899;7279;5633;3500;5425;3183;4352
-64;'234;Faroe Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996;962;543;543;543;543;543;543;543;543;543;543;543;543;543;543;543;543;1798;2099;1939;1836;2207;1687;2121;2471;2031;2099;2652;3587;3162;2831
-64;'234;Faroe Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;5;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;0;0;37;0;6;278;0;51;37;2;69;0;0
-64;'234;Faroe Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;4;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;0;33;0;12;39;0;36;27;5;47;0;0
-64;'234;Faroe Islands;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1684;727;526;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;313;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;526;717;4854;7430;1124;7682
-64;'234;Faroe Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;224;198;974;901;522;760
-64;'234;Faroe Islands;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-64;'234;Faroe Islands;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-64;'234;Faroe Islands;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2724;15580;15998;640;7801
-64;'234;Faroe Islands;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093;1232;1326;519;214
-64;'234;Faroe Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130;790;339;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;418;190;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;15;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127;775;324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;995;412;184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;7;7;7;7;7;46;741;18;6;3
-64;'234;Faroe Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;1;1;1;1;1;29;379;90;39;78
-64;'234;Faroe Islands;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;0;0;0;;;;;;;
-64;'234;Faroe Islands;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;0;0;0;;;;;;;
-64;'234;Faroe Islands;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;1;1;1;1;1;0;0;0;0;0
-64;'234;Faroe Islands;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;1;1;1;1;1;0;0;0;0;0
-64;'234;Faroe Islands;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;0;0;0;;;;;;;
-64;'234;Faroe Islands;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;0;0;0;;;;;;;
-64;'234;Faroe Islands;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-64;'234;Faroe Islands;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;0;0;0;;;;;;;
-64;'234;Faroe Islands;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;0;0;0;;;;;;;
-64;'234;Faroe Islands;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-64;'234;Faroe Islands;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-64;'234;Faroe Islands;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;46;741;18;6;3
-64;'234;Faroe Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;29;379;90;39;78
-64;'234;Faroe Islands;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1022;1965;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1708;1764;1661;1487;561;850
-64;'234;Faroe Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1437;2603;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;2103;3863;3531;3921;1774;3528
-64;'234;Faroe Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;511;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;3983;3326;5318;2716;6349
-64;'234;Faroe Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;330;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;188;488;412;650;467;1208
-64;'234;Faroe Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;682;1259;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1237;1053;1075;803;192;302
-64;'234;Faroe Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859;1375;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1597;1632;1722;531;939
-64;'234;Faroe Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;208;44;27;47;14;15
-64;'234;Faroe Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;162;11;12;19;8;5
-64;'234;Faroe Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;396;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;384;462;298;99;1;1
-64;'234;Faroe Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;359;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;305;307;147;52;3;3
-64;'234;Faroe Islands;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0
-64;'234;Faroe Islands;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0
-64;'234;Faroe Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;863;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;591;777;704;191;301
-64;'234;Faroe Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;1016;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;1290;1485;1670;528;936
-64;'234;Faroe Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;38;21;41;8;15
-64;'234;Faroe Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;5;6;13;2;5
-64;'234;Faroe Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;22;17;7;34
-64;'234;Faroe Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;98;102;44;178
-64;'234;Faroe Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;314;343;66;91
-64;'234;Faroe Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;725;875;204;313
-64;'234;Faroe Islands;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-64;'234;Faroe Islands;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-64;'234;Faroe Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;853;411;441;344;118;176
-64;'234;Faroe Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;995;810;662;693;280;445
-64;'234;Faroe Islands;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;202;38;21;41;8;15
-64;'234;Faroe Islands;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;156;5;6;13;2;5
-64;'234;Faroe Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;706;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;711;586;684;369;548
-64;'234;Faroe Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578;1228;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;2266;1899;2199;1243;2589
-64;'234;Faroe Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;149;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;3939;3299;5271;2702;6334
-64;'234;Faroe Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;82;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;477;400;631;459;1203
-64;'234;Faroe Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;20;6;6
-64;'234;Faroe Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;102;106;25;53
-64;'234;Faroe Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650;500;620;292;465
-64;'234;Faroe Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1814;1343;1678;888;1920
-64;'234;Faroe Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;3939;3299;5271;2702;6334
-64;'234;Faroe Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;477;400;631;459;1203
-64;'234;Faroe Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;50;125;2;1
-64;'234;Faroe Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;44;59;4;10
-64;'234;Faroe Islands;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19
-64;'234;Faroe Islands;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;37;37;37;37
-64;'234;Faroe Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;178;240;183;324
-64;'234;Faroe Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;387;738;479;966
-64;'234;Faroe Islands;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;112;3;21
-64;'234;Faroe Islands;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;49;3;114
-64;'234;Faroe Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;272;255;107;140
-64;'234;Faroe Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;912;881;405;944
-64;'234;Faroe Islands;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;3908;3274;5140;2680;6294
-64;'234;Faroe Islands;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;443;362;545;419;1052
-64;'234;Faroe Islands;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-64;'234;Faroe Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;471;33;58;44;71;77
-64;'234;Faroe Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;803;335;454;415;330;616
-64;'234;Faroe Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31483;37404;39251;41540;43567;65265;53716
-64;'234;Faroe Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;113;116;65;116;133;396
-64;'234;Faroe Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2672;3150;2405;2828;4478;2493;2330
-64;'234;Faroe Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2;5;5
-64;'234;Faroe Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;1226;1214;1354;2283;655;812
-64;'234;Faroe Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0
-64;'234;Faroe Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1504;1924;1191;1474;2195;1838;1518
-64;'234;Faroe Islands;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;5;5
-64;'234;Faroe Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931;1815;2044;2065;2243;2350;2083
-64;'234;Faroe Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;14;34;30;22;20;0
-64;'234;Faroe Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;2303;1001;794;774;752;506
-64;'234;Faroe Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;5;1;0;8
-64;'234;Faroe Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8771;10673;15217;13085;13108;13092;13915
-64;'234;Faroe Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;41;49;23;2;68;97
-64;'234;Faroe Islands;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;529
-64;'234;Faroe Islands;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;1069
-64;'234;Faroe Islands;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;203
-64;'234;Faroe Islands;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432;162
-64;'234;Faroe Islands;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-64;'234;Faroe Islands;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-64;'234;Faroe Islands;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;3
-64;'234;Faroe Islands;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;10
-64;'234;Faroe Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12944;13263;12987;18910;17573;36096;32356
-64;'234;Faroe Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;52;28;3;79;36;286
-64;'234;Faroe Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3842;5060;4369;2051;3363;7702;857
-64;'234;Faroe Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1423;1140;1228;1807;2028;2780;1669
-64;'234;Faroe Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;2;10;4;0
-64;'234;Faroe Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33773;32945;36113;34996;42600;38902;32872
-64;'234;Faroe Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;88;41;20;71;131;343
-64;'234;Faroe Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;26;56;175;224;12;24
-64;'234;Faroe Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635;1285;2134;1608;1392;1142;1163
-64;'234;Faroe Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;4;4;4;0;0;265
-64;'234;Faroe Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8658;7365;5066;8118;6190;6613;8590
-64;'234;Faroe Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;1;1;7;20;10
-64;'234;Faroe Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21256;21401;24255;22608;31026;26680;18892
-64;'234;Faroe Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;75;19;13;53;85;23
-64;'234;Faroe Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2178;2868;4602;2487;3768;4455;4203
-64;'234;Faroe Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;9;17;2;11;26;45
-66;'242;Fiji;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80910;83226;70887;54661;57170.15;83462;75007
-66;'242;Fiji;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43576;78631;55428;45379;65911.8;54951.72;43621.72
-66;'242;Fiji;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;973;1007;854;1630;2048;1545;1549;1768;1767;2557;2470;3458;4822;5727;5151;3673;3947;4066;7068;8838;9219;7887;7830;7618;8596;8569;11726;11566;11697;13015;19919;9017;12277;18562;21974;15361;6095;9200;12672;12672;14374;16808;22195;26374;29579;31026;34583;21767;23827;16617;25643;23247.1;24724.25;41342;20818;53172;47043;47274;39799;33327;39433.15;57951;46206
-66;'242;Fiji;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;110;199;318;336;422;659;385;402;203;361;634;546;624;695;1572;2188;2269;2389;3018;5990;3566;4522;4230;7448;6194;5604;8275;17798;23053;23052;48095;26103;23071;25038;29515;26839;29482;31411;19652;25298;18900;27729;22703;24511;29923;34233;37735;34304;21765;48608.47;40315;39619.52;45622;69482;43129;32725;31753;65877;45615;34540;54959.8;43359.72;32416.72
-66;'242;Fiji;1861;Roundwood;5516;Production;m3;79000;88000;101700;102500;115900;116000;103000;116000;119000;123000;112000;128000;148000;168000;160000;168000;174000;177000;210000;260200;254000;239200;209300;223400;249300;236000;291000;332500;306800;291620;257877;251043;528600;559200;598200;617021;608141;600327;465000;486000;516000;383000;441873;490000;509000;520080;485917;482205;482205;837000;837000;837000;837000;837000;837000;837000;837000;837000;837000;837000;837000;837000;984804
-66;'242;Fiji;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;23;98;243;1424;100;172;5;179;2941;4323;5961;1377;3021;1340;741;258;90;18;183;633;447
-66;'242;Fiji;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;25;53;45;648;43;32;2;66;860;675.1;581.25;1636;1279;380;529;97;74;41;264;603;470
-66;'242;Fiji;1861;Roundwood;5916;Export quantity;m3;;;7200;4700;4400;8800;5200;4800;5200;1900;100;100;100;100;100;100;100;100;100;13100;2300;2300;1600;15500;4100;4100;9800;9800;9800;8228;3157;6727;6690;1900;2200;600;600;700;600;600;600;130;9879;7492;7825;5099;5140;6384;3251;5236;8856;9818;43034;44164;10661;3666;2679;1573;288;95;1230;4083;70
-66;'242;Fiji;1861;Roundwood;5922;Export value;1000 USD;;;146;123;108;177;100;110;109;38;4;4;4;4;4;4;4;4;4;1534;184;184;91;972;211;211;693;693;554;1281;371;587;590;926;1218;224;224;269;236;236;236;159;531;749;874;2521;2837;2734;2085;2478.47;5732;4924.52;17866;17378;2795;1824;1420;948;315;102;1141;863;39
-66;'242;Fiji;1862;Roundwood, coniferous;5516;Production;m3;;;3700;2500;2900;34000;29000;32000;28000;30000;28000;31000;21000;24000;23000;23000;23000;23000;28000;34000;30000;25000;27000;24000;30000;38000;53000;123000;97000;97000;97000;97000;361000;382000;430000;430000;419000;429000;368000;342000;368000;240000;240000;321000;306000;357886;337701;300122;300122;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000
-66;'242;Fiji;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;118;18;4;136;0;13
-66;'242;Fiji;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;67;7;17;204;0;3
-66;'242;Fiji;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;27;1;0;16;152;24
-66;'242;Fiji;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;0;34;10;24;1
-66;'242;Fiji;1863;Roundwood, non-coniferous;5516;Production;m3;79000;88000;98000;100000;113000;82000;74000;84000;91000;93000;84000;97000;127000;144000;137000;145000;151000;154000;182000;226200;224000;214200;182300;199400;219300;198000;238000;209500;209800;194620;160877;154043;167600;177200;168200;187021;189141;171327;97000;144000;148000;143000;201873;169000;203000;162194;148216;182083;182083;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;424804
-66;'242;Fiji;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721;140;72;14;47;633;434
-66;'242;Fiji;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;30;67;24;60;603;467
-66;'242;Fiji;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2498;1546;287;95;1214;3931;46
-66;'242;Fiji;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390;946;315;68;1131;839;38
-66;'242;Fiji;1864;Wood fuel;5516;Production;m3;23000;24000;24000;23000;20000;17000;14000;12000;14000;14000;13000;15000;7000;7000;9000;11000;17000;19000;15000;24000;28000;19000;28000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;184804
-66;'242;Fiji;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;11;4;2;13;13;4;47;134;37;2;4;2;6;6
-66;'242;Fiji;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;6;18;31;68;68;7;17;25;23;1;5;6;1;1
-66;'242;Fiji;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1628;Wood fuel, non-coniferous;5516;Production;m3;23000;24000;24000;23000;20000;17000;14000;12000;14000;14000;13000;15000;7000;7000;9000;11000;17000;19000;15000;24000;28000;19000;28000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;184804
-66;'242;Fiji;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;37;2;4;2;6;6
-66;'242;Fiji;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;23;1;5;6;1;1
-66;'242;Fiji;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;11;4;2;13;13;4;47;;;;;;;
-66;'242;Fiji;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;6;18;31;68;68;7;17;;;;;;;
-66;'242;Fiji;1865;Industrial roundwood;5516;Production;m3;56000;64000;77700;79500;95900;99000;89000;104000;105000;109000;99000;113000;141000;161000;151000;157000;157000;158000;195000;236200;226000;220200;181300;186400;212300;199000;254000;295500;269800;254620;220877;214043;491600;522200;561200;580021;571141;563327;428000;449000;479000;346000;404873;453000;472000;483080;448917;445205;445205;800000;800000;800000;800000;800000;800000;800000;800000;800000;800000;800000;800000;800000;800000
-66;'242;Fiji;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;23;98;243;1424;100;172;5;179;2941;4323;5961;1377;3021;1340;741;258;90;18;183;633;447
-66;'242;Fiji;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;25;53;45;648;43;32;2;66;860;675.1;581.25;1636;1279;380;529;97;74;41;264;603;470
-66;'242;Fiji;1865;Industrial roundwood;5916;Export quantity;m3;;;7200;4700;4400;8800;5200;4800;5200;1900;100;100;100;100;100;100;100;100;100;13100;2300;2300;1600;15500;4100;4100;9800;9800;9800;8228;3157;6727;6690;1900;2200;600;600;700;600;600;600;130;9879;7492;7825;5098;5135;6379;3246;5225;8852;9816;43021;44151;10657;3619;2545;1536;286;91;1228;4077;64
-66;'242;Fiji;1865;Industrial roundwood;5922;Export value;1000 USD;;;146;123;108;177;100;110;109;38;4;4;4;4;4;4;4;4;4;1534;184;184;91;972;211;211;693;693;554;1281;371;587;590;926;1218;224;224;269;236;236;236;159;531;749;874;2520;2832;2729;2080;2472.47;5714;4893.52;17798;17310;2788;1807;1395;925;314;97;1135;862;38
-66;'242;Fiji;1866;Industrial roundwood, coniferous;5516;Production;m3;;;3700;2500;2900;34000;29000;32000;28000;30000;28000;31000;21000;24000;23000;23000;23000;23000;28000;34000;30000;25000;27000;24000;30000;38000;53000;123000;97000;97000;97000;97000;361000;382000;430000;430000;419000;429000;368000;342000;368000;240000;240000;321000;306000;357886;337701;300122;300122;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000
-66;'242;Fiji;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;96;107;0;0;108;0;140;2;4322;5619;1149;371;320;20;118;18;4;136;0;13
-66;'242;Fiji;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;51;6;0;0;13;0;33;0;675;531;1613;452;115;4;67;7;17;204;0;3
-66;'242;Fiji;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;6665;6665;700;2100;200;200;200;200;200;200;0;99;210;177;750;800;6000;20;1522;142;7;31993;36680;2038;133;181;27;1;0;16;152;24
-66;'242;Fiji;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;571;571;483;1179;16;16;16;16;16;16;0;20;92;132;422;554;2322;17;388;628;5;12415;13938;287;22;30;2;0;34;10;24;1
-66;'242;Fiji;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;96;107;0;0;108;0;140;2;4322;5619;1149;371;320;20;118;18;4;136;0;13
-66;'242;Fiji;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;51;6;0;0;13;0;33;0;675;531;1613;452;115;4;67;7;17;204;0;3
-66;'242;Fiji;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;6665;6665;700;2100;200;200;200;200;200;200;0;99;210;177;750;800;6000;20;1522;142;7;31993;36680;2038;133;181;27;1;0;16;152;24
-66;'242;Fiji;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;571;571;483;1179;16;16;16;16;16;16;0;20;92;132;422;554;2322;17;388;628;5;12415;13938;287;22;30;2;0;34;10;24;1
-66;'242;Fiji;1867;Industrial roundwood, non-coniferous;5516;Production;m3;56000;64000;74000;77000;93000;65000;60000;72000;77000;79000;71000;82000;120000;137000;128000;134000;134000;135000;167000;202200;196000;195200;154300;162400;182300;161000;201000;172500;172800;157620;123877;117043;130600;140200;131200;150021;152141;134327;60000;107000;111000;106000;164873;132000;166000;125194;111216;145083;145083;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000
-66;'242;Fiji;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;2;136;1424;100;64;5;39;2939;1;342;228;2650;1020;721;140;72;14;47;633;434
-66;'242;Fiji;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;39;648;43;19;2;33;860;0.1;50.25;23;827;265;525;30;67;24;60;603;467
-66;'242;Fiji;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8228;570;62;25;1200;100;400;400;500;400;400;400;130;9780;7282;7648;4348;4335;379;3226;3703;8710;9809;11028;7471;8619;3486;2364;1509;285;91;1212;3925;40
-66;'242;Fiji;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281;70;16;19;443;39;208;208;253;220;220;220;159;511;657;742;2098;2278;407;2063;2084.47;5086;4888.52;5383;3372;2501;1785;1365;923;314;63;1125;838;37
-66;'242;Fiji;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;0;0;0;64;0;0;2708;1;341;2;120;0;0;10;72;0;47;125;175
-66;'242;Fiji;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;0;0;0;19;0;0;792;0.1;50;14;417;0;0;6;67;0;60;0;252
-66;'242;Fiji;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8228;570;62;25;1200;100;400;400;500;400;400;400;67;242;208;574;423;410;373;3226;3700;8710;9807;11028;7471;8619;3486;2364;1509;285;91;1212;216;40
-66;'242;Fiji;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281;70;16;19;443;39;208;208;253;220;220;220;65;253;240;325;409;589;264;2063;2084;5086;4888;5383;3372;2501;1785;1365;923;314;63;1125;186;37
-66;'242;Fiji;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;136;1424;100;0;5;39;231;0;1;226;2530;1020;721;130;0;14;0;508;259
-66;'242;Fiji;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;39;648;43;0;2;33;68;0;0.25;9;410;265;525;24;0;24;0;603;215
-66;'242;Fiji;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;9538;7074;7074;3925;3925;6;0;3;0;2;0;0;0;0;0;0;0;0;0;3709;0
-66;'242;Fiji;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;258;417;417;1689;1689;143;0;0.47;0;0.52;0;0;0;0;0;0;0;0;0;652;0
-66;'242;Fiji;1868;Sawlogs and veneer logs;5516;Production;m3;56000;62000;75700;76500;91900;96000;88000;102000;103000;107000;96000;110000;137000;159000;149000;155000;155000;155000;192000;234000;223000;218000;177000;182000;205000;195000;253000;294000;266000;250820;217077;210243;244000;269000;255000;273821;264941;263327;178000;199000;200000;181000;239873;227000;256000;230760;210726;233320;233320;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000
-66;'242;Fiji;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;7200;4700;4400;8800;5200;4800;5200;1900;100;100;100;100;100;100;100;100;100;13100;2300;2300;1600;15500;4100;4100;9800;9800;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;146;123;108;177;100;110;109;38;4;4;4;4;4;4;4;4;4;1534;184;184;91;972;211;211;693;693;554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;3700;2500;2900;34000;29000;32000;28000;30000;28000;31000;21000;24000;23000;23000;23000;23000;28000;34000;30000;25000;27000;24000;30000;38000;53000;123000;97000;97000;97000;97000;114000;130000;124000;124000;113000;129000;118000;92000;89000;75000;75000;95000;90000;105566;99510;88237;88237;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000
-66;'242;Fiji;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;3700;2500;2900;7300;900;500;3200;800;100;100;100;100;100;100;100;100;100;13100;2300;2300;1600;15500;4100;4100;9800;9800;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;57;60;62;140;16;10;73;19;4;4;4;4;4;4;4;4;4;1534;184;184;91;972;211;211;693;693;554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;56000;62000;72000;74000;89000;62000;59000;70000;75000;77000;68000;79000;116000;135000;126000;132000;132000;132000;164000;200000;193000;193000;150000;158000;175000;157000;200000;171000;169000;153820;120077;113243;130000;139000;131000;149821;151941;134327;60000;107000;111000;106000;164873;132000;166000;125194;111216;145083;145083;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000
-66;'242;Fiji;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;3500;2200;1500;1500;4300;4300;2000;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;89;63;46;37;84;100;36;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;250000;250000;273000;159000;159000;220000;210000;246320;232191;205885;205885;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000
-66;'242;Fiji;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;250000;250000;273000;159000;159000;220000;210000;246320;232191;205885;205885;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000
-66;'242;Fiji;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247000;252000;306000;306000;306000;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247000;252000;306000;306000;306000;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1871;Other industrial roundwood;5516;Production;m3;;2000;2000;3000;4000;3000;1000;2000;2000;2000;3000;3000;4000;2000;2000;2000;2000;3000;3000;2200;3000;2200;4300;4400;7300;4000;1000;1500;3800;3800;3800;3800;600;1200;200;200;200;0;0;0;6000;6000;6000;6000;6000;6000;6000;6000;6000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-66;'242;Fiji;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-66;'242;Fiji;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;2000;2000;3000;4000;3000;1000;2000;2000;2000;3000;3000;4000;2000;2000;2000;2000;3000;3000;2200;3000;2200;4300;4400;7300;4000;1000;1500;3800;3800;3800;3800;600;1200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1630;Wood charcoal;5510;Production;t;1185;1202;1219;1237;1255;1273;1291;1310;1329;1348;1361;1373;1370;1405;1446;1473;1484;1518;1501;1555;1569;1655;1729;1731;1789;1774;1838;1851;1790;1787;1819;1840;1877;1904;1936;1968;2030;2069;2113;2158;2178;2199;2220;2242;2263;2284;2304;2325;2346;2367;2384;2400;2417;2433;2450;2462;2474;2485;2497;2509;2519;2530;2541
-66;'242;Fiji;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;1;1;2;2;5;12;16;30;33;10;25;28;36;18;36;48
-66;'242;Fiji;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;1;1;1;1;18;26;60;41;43;30;52;51;53;33;82;70
-66;'242;Fiji;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;49;8;783;1359;1359;1359;8;18;0;41;15;15;4;3;156;436.38;270;322
-66;'242;Fiji;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;14;3;297;413;413;413;6;13;0;61;21;21;59;34;86;217;104;144
-66;'242;Fiji;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269000;266000;259000;273000;159000;159000;220000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;248623;432059;400419;400400;400400;400400;400400
-66;'242;Fiji;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;83;83;3375;3375;235;271;271;271;271;271;271;52;661;1745;1944;2436;1773;2409.94;1537;1650
-66;'242;Fiji;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;15;15;106;106;113;101;101;101;101;101;101;8;342;794;835;1010;656;1035;834;1163
-66;'242;Fiji;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303000;214000;259000;206000;215276;175090;232687;232687;337810;241583;116125;99008;246008;199008;210001;166077;544030;391003;318025;259291;540777;230969;350673;527526;260409;20003
-66;'242;Fiji;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17326;9600;12202;10856;11261;8295;11169;11169;13908;16665;8000;5500;20311;13795;14541;7194;26684;22215;15197;22499;58007;35731;25547;36139;21770;19960
-66;'242;Fiji;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269000;266000;259000;273000;159000;159000;220000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;248623;432059;400419;400400;400400;400400;400400
-66;'242;Fiji;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;71;3360;3360;220;220;220;220;220;220;220;1;659;1743;1857;2349;1686;2322.94;1537;1650
-66;'242;Fiji;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;91;91;98;98;98;98;98;98;98;5;339;791;798;973;619;998;833;1162
-66;'242;Fiji;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;184000;138600;143700;223600;302232;349000;308700;382000;355800;241000;303000;214000;259000;206000;215276;175090;232687;232687;337810;241583;116125;99000;246000;199000;210000;166000;544000;391000;318000;259200;540768;230960;350664;527517;260400;19994
-66;'242;Fiji;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;12500;9900;14319;22400;15221;13987;10810;14844;15700;17355;17326;9600;12202;10856;11261;8295;11169;11169;13908;16665;8000;5500;20311;13795;14510;7180;26665;22199;15188;22494;57999;35723;25539;36131;21762;19952
-66;'242;Fiji;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;15;15;15;51;51;51;51;51;51;51;2;2;87;87;87;87;0;0
-66;'242;Fiji;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;15;15;15;3;3;3;3;3;3;3;3;3;37;37;37;37;1;1
-66;'242;Fiji;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1;77;30;3;25;91;9;9;9;9;9;9
-66;'242;Fiji;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;31;14;19;16;9;5;8;8;8;8;8;8
-66;'242;Fiji;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1
-66;'242;Fiji;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;1;4
-66;'242;Fiji;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24;2;26;2
-66;'242;Fiji;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;5;6;6
-66;'242;Fiji;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1
-66;'242;Fiji;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;1;4
-66;'242;Fiji;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24;2;26;2
-66;'242;Fiji;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;5;6;6
-66;'242;Fiji;1872;Sawnwood;5516;Production;m3;25000;28000;30000;35000;42000;45000;42000;50000;50000;52000;55000;55000;61000;75000;90000;74000;91000;91000;90000;117000;100000;76000;82000;80000;91000;77600;88400;103000;93600;93600;141000;91000;111000;112000;102000;102000;133000;131000;64000;72000;72000;84000;84000;112000;125000;90000;90000;90000;90000;90000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000
-66;'242;Fiji;1872;Sawnwood;5616;Import quantity;m3;10800;12000;6900;19000;24900;8100;7600;9300;3500;13600;9800;15000;17400;13800;14900;9300;9300;9300;500;400;600;600;600;400;2400;2400;2400;2400;2400;2400;2400;111;73;9;500;227;0;0;0;0;0;561;406;194;5838;6531;4037;6314;2186;1717;1457;779;8758;14978;2301;40006;16694;9821;4224;2671;2052;1036;1056
-66;'242;Fiji;1872;Sawnwood;5622;Import value;1000 USD;625;658;411;1129;1450;516;503;726;268;932;765;1472;2080;2041;2183;1370;1370;1370;183;66;107;107;107;89;434;434;434;434;434;434;434;19;30;4;47;40;0;0;0;0;0;262;197;147;2115;2789;1340;1289;728;603;400;316;3446;7948;1511;10661;3538;2473;1013;854;500;680;456
-66;'242;Fiji;1872;Sawnwood;5916;Export quantity;m3;1700;3100;2600;3100;3800;6600;3900;3800;1300;3300;3500;2700;2900;3200;4600;8400;8700;9000;7400;12700;3900;6300;6600;12300;9800;7600;4100;13300;33000;15400;88500;25215;13102;29900;26500;16200;17000;30000;17000;27000;11000;7630;17843;22047;20094;13768;13003;16526;14630;19843;23423;13521;15301;21257;15568;12986;12146;9728;16162;19334;36584;33359;19403
-66;'242;Fiji;1872;Sawnwood;5922;Export value;1000 USD;110;199;172;213;314;482;285;292;94;265;354;255;326;397;803;1456;1537;1657;1953;3454;1127;1763;1660;3341;2458;2225;1454;2983;8237;3878;22278;4349;5257;8808;8165;4859;7217;7499;6025;9314;3950;6850;7317;7729;14451;14039;14931;19218;11344;20998;16361;16883;19215;20842;16191;13392;5294;5867;8197;7582;15980;19606;10946
-66;'242;Fiji;1632;Sawnwood, coniferous;5516;Production;m3;;;;9000;13000;16000;14000;16000;14000;15000;16000;15000;9000;11000;17000;13000;16000;16000;16000;20000;17000;13000;16000;13000;14000;17600;26400;50000;41000;41000;90000;40000;57000;47000;43000;43000;56000;64000;34000;32000;32000;43000;35000;45000;40000;45000;45000;45000;45000;45000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000
-66;'242;Fiji;1632;Sawnwood, coniferous;5616;Import quantity;m3;10000;11300;5900;18100;24200;8000;7400;8900;3200;8900;9500;14600;8800;4600;5700;100;100;100;100;100;300;300;300;300;2300;2300;2300;2300;2300;2300;2300;77;64;0;0;200;0;0;0;0;0;296;393;0;5023;5681;3381;5862;2062;1508;1412;775;8613;11218;1556;38502;16449;9534;2756;2513;1869;742;945
-66;'242;Fiji;1632;Sawnwood, coniferous;5622;Import value;1000 USD;550;602;314;1033;1368;500;484;679;230;595;725;1406;1048;685;827;14;14;14;14;14;55;55;55;55;400;400;400;400;400;400;400;13;26;0;0;26;0;0;0;0;0;162;183;0;1714;2237;893;911;625;398;395;309;3332;3848;752;10326;3127;2028;636;701;359;374;357
-66;'242;Fiji;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;1800;2100;2700;4600;700;300;1300;1700;2300;1800;1600;1600;2700;6300;6300;6300;4300;6500;3400;4300;5400;11100;8600;6400;2900;12100;31800;14200;87300;856;9300;2000;15000;7400;8000;12000;13000;13000;6000;3070;12043;15487;6044;2857;1336;3480;5300;1711;6999;383;741;830;688;576;316;256;129;0;3519;205;8
-66;'242;Fiji;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;118;141;235;338;50;29;94;144;239;177;157;157;483;1057;1057;1057;1114;1782;997;1270;1382;3063;2180;1947;1176;2705;7959;3600;22000;300;3427;953;4421;1966;3259;5221;4441;4441;2000;2587;4117;4978;1207;723;831;1439;1386;668;582;276;549;844;507;448;282;256;172;120;1687;122;10
-66;'242;Fiji;1633;Sawnwood, non-coniferous;5516;Production;m3;25000;28000;30000;26000;29000;29000;28000;34000;36000;37000;39000;40000;52000;64000;73000;61000;75000;75000;74000;97000;83000;63000;66000;67000;77000;60000;62000;53000;52600;52600;51000;51000;54000;65000;59000;59000;77000;67000;30000;40000;40000;41000;49000;67000;85000;45000;45000;45000;45000;45000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000
-66;'242;Fiji;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;800;700;1000;900;700;100;200;400;300;4700;300;400;8600;9200;9200;9200;9200;9200;400;300;300;300;300;100;100;100;100;100;100;100;100;34;9;9;500;27;0;0;0;0;0;265;13;194;815;850;656;452;124;209;45;4;145;3760;745;1504;245;287;1468;158;183;294;111
-66;'242;Fiji;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;75;56;97;96;82;16;19;47;38;337;40;66;1032;1356;1356;1356;1356;1356;169;52;52;52;52;34;34;34;34;34;34;34;34;6;4;4;47;14;0;0;0;0;0;100;14;147;401;552;447;378;103;205;5;7;114;4100;759;335;411;445;377;153;141;306;99
-66;'242;Fiji;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1700;3100;800;1000;1100;2000;3200;3500;0;1600;1200;900;1300;1600;1900;2100;2400;2700;3100;6200;500;2000;1200;1200;1200;1200;1200;1200;1200;1200;1200;24359;3802;27900;11500;8800;9000;18000;4000;14000;5000;4560;5800;6560;14050;10911;11667;13046;9330;18132;16424;13138;14560;20427;14880;12410;11830;9472;16033;19334;33065;33154;19395
-66;'242;Fiji;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;110;199;54;72;79;144;235;263;0;121;115;78;169;240;320;399;480;600;839;1672;130;493;278;278;278;278;278;278;278;278;278;4049;1830;7855;3744;2893;3958;2278;1584;4873;1950;4263;3200;2751;13244;13316;14100;17779;9958;20330;15779;16607;18666;19998;15684;12944;5012;5611;8025;7462;14293;19484;10936
-66;'242;Fiji;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;400;1300;1000;2700;2600;8000;7000;7000;7000;8000;7000;11000;10000;13000;14000;15000;10400;10300;10600;10600;10600;10100;10100;9935;11004;6090;2183;6375;6000;4000;3000;3000;5000;8000;8000;17849;17000;17000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-66;'242;Fiji;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370;0;0;0;0;0;0;0;0;0;0;14;58;341;363;786;1178;166;57;56;74;92;10;84;414;420;874;93;23;40;73;80
-66;'242;Fiji;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;0;0;12;28;125;284;423;904;117;39;48;113;90;39;64;436;311;521;205;151;68;151;99
-66;'242;Fiji;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;400;1300;1000;1000;1000;7900;7000;7000;7000;8000;7000;10800;9500;12800;13800;14300;2400;2800;900;5200;3800;3000;4274;3800;4600;4800;6000;9700;5000;3000;2000;2000;1029;92;113;314;261;164;424;1064;601;122;208;109;214;138;312;151;57;33;80;1;0;43
-66;'242;Fiji;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;58;258;263;269;269;725;706;706;706;1039;980;1939;1891;2145;2658;2417;2060;2420;514;2916;2128;1600;2278;2350;2955;3162;3945;3308;3414;1621;1400;1431;1384;167;107;479;464;391;1023;575;913;268;331;169;287;280;208;268;35;23;55;1;19;60
-66;'242;Fiji;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;100;100;1000;1200;1500;2600;3300;3400;3600;4000;3900;3900;5200;5900;5300;5200;5500;5500;5500;5500;3290;5562;2426;2154;5077;5000;7000;9000;9000;5000;8000;8000;8622;8000;8000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-66;'242;Fiji;1873;Wood-based panels;5616;Import quantity;m3;1000;1990;2700;3700;3400;3400;3700;4200;2193;2753;3064;3058;3458;2542;3474;2901;2901;2901;2700;2300;2100;1700;1800;1600;1300;1300;1300;1300;1100;800;1100;5867;2022;5000;5200;4750;1900;2800;2800;2800;2500;7087;10818;16474;17736;15259;5835;6917;3049;2487;5161;5972;9749;11455;10108;11508;14350;15575;11884;9425;8342.91;17180;14024
-66;'242;Fiji;1873;Wood-based panels;5622;Import value;1000 USD;170;166;244;273;303;319;395;518;407;585;752;872;1281;1380;1043;1084;1084;1084;1279;1331;1294;1161;1212;849;713;713;713;713;544;544;544;1941;595;1197;1593;1304;556;728;728;728;722;1276;2365;3248;4396;4561;3311;3366;1629;1304;2881;3556;5450;7398;6178;6801;7706;8428;5678;4301;3271;9375;6248
-66;'242;Fiji;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;400;1000;400;700;1900;1900;1900;1900;2200;600;2500;8271;1200;2200;8300;2900;1900;5000;4000;4000;4000;7788;6579;6343;1867;2057;2062;3950;826;2145;2184;3533;1366;2580;1103;1713;1615;193;662;500;723;160.59;1886.59
-66;'242;Fiji;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;18;24;25;25;40;22;22;22;22;22;316;684;334;477;1108;1108;1108;1108;1446;1446;1446;3668;887;1539;2126;2111;1378;2903;2170;2146;2427;7088;3973;3172;1509;1385;1623;1932;914;1911;1931;1522;754;2484;1160;1385;1145;108;645;343;297;198.72;256.72
-66;'242;Fiji;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;100;100;1000;1200;1500;2600;3300;3400;3600;4000;3900;3900;5200;5900;5300;5200;5500;5500;5500;5500;3290;5562;2426;2154;5077;5000;7000;9000;9000;5000;8000;8000;8622;8000;8000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-66;'242;Fiji;1640;Plywood and LVL;5616;Import quantity;m3;1000;190;700;500;200;300;500;1000;1000;1600;1700;1600;1600;1000;200;200;200;200;400;300;200;100;100;200;200;200;200;200;200;200;200;161;32;2300;1200;1200;0;0;0;0;0;287;114;421;1683;1747;1171;2542;226;238;2948;2333;3448;3318;2509;5781;5405;6318;6771;4183;3977;9167;9623
-66;'242;Fiji;1640;Plywood and LVL;5622;Import value;1000 USD;170;33;107;85;75;116;148;224;228;348;438;483;829;704;185;124;124;124;245;137;98;71;71;95;95;95;95;95;95;95;95;72;14;362;160;160;0;0;0;0;0;200;60;292;1440;1392;664;1296;151;147;1645;1211;1288;2056;1626;3339;2291;3198;2519;2063;1406;5362;4100
-66;'242;Fiji;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;400;1000;400;700;1900;1900;1900;1900;2200;600;2500;8271;1200;2200;2400;2900;1900;5000;4000;4000;4000;7766;6541;6299;1823;2032;1980;3868;739;2086;2156;3489;1213;2482;1095;1690;1559;125;570;200;27;0;1776
-66;'242;Fiji;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;18;24;25;25;40;22;22;22;22;22;316;684;334;477;1108;1108;1108;1108;1446;1446;1446;3668;887;1539;1921;2111;1378;2903;2170;2146;2427;7078;3938;3159;1496;1364;1371;1680;660;1695;1912;1481;680;2354;1110;1377;1121;69;566;164;15;120;191
-66;'242;Fiji;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;1800;2000;3200;3200;3100;3200;3200;140;100;100;300;300;300;200;300;300;300;700;1300;1500;1400;1400;1200;900;900;900;900;300;300;300;200;100;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;133;137;188;228;203;247;294;13;33;36;95;98;119;93;228;228;228;545;930;1056;1015;1015;685;542;542;542;542;203;203;203;118;38;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;300;400;400;400;400;922;1424;5124;5124;1672;1173;615;661;619;591;1052;291;1936;1835;1271;1810;1810;1302;943;727.3;1473;825
-66;'242;Fiji;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;165;78;83;83;83;83;230;499;840;840;670;768;413;547;436;530;747;297;1203;1031;891;930;930;498;319;297;878;336
-66;'242;Fiji;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;10;10;10;46;46;46;18;18;2;2;2;4;6;39;39;50;123;287;69;12
-66;'242;Fiji;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;2;2;2;49;49;49;11;11;4;4;4;7;5;21;21;34;41;90;39;10
-66;'242;Fiji;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;1685;1339;1339;502;1140;20;20;18;18;4;4;48;169;27;80;80;9;115;23;6;6
-66;'242;Fiji;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;597;220;220;225;850;6;6;6;6;9;9;29;98;22;42;42;14;45;9;1;1
-66;'242;Fiji;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4.59;4.59
-66;'242;Fiji;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1.72;1.72
-66;'242;Fiji;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;1053;1053;1264;1158;1558;1242;3074;2401;2401;2401;1600;700;400;200;300;200;200;200;200;200;600;300;600;5506;1890;2700;4000;2950;1600;2400;2400;2400;2100;5791;7595;9590;9590;11338;2351;3740;2142;1612;1604;2583;6006;6153;5595;4429;7055;7367;3802;4184;3615.6;6534;3570
-66;'242;Fiji;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;166;204;278;294;354;557;765;732;732;732;489;264;140;75;126;69;76;76;76;76;246;246;246;1751;543;835;1433;979;478;645;645;645;639;797;1209;1896;1896;2274;1029;1651;925;715;700;1589;3856;4110;3423;2549;4443;4258;2647;1874;1559;3134;1811
-66;'242;Fiji;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5900;0;0;0;0;0;0;18;30;34;34;15;36;36;41;41;10;42;151;96;4;17;17;29;42;177;404;87;94
-66;'242;Fiji;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;205;0;0;0;0;0;0;9;31;11;11;19;203;203;205;205;8;37;70;126;43;3;3;18;45;138;190;38;54
-66;'242;Fiji;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1600;200;800;800;800;600;1117;1241;1604;1604;1654;1101;2683;988;1174;1132;884;2620;2430;137;222;2079;2610;2465;611;214;810;167
-66;'242;Fiji;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;592;85;249;249;249;334;402;472;744;744;601;392;1017;366;444;511;421;1351;1258;113;171;1435;1760;1639;248;97;446;105
-66;'242;Fiji;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;0;0;0;0;0;0;9;9;24;24;5;3;3;3;3;3;0;0;0;0;0;0;0;18;18;18;7;24
-66;'242;Fiji;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;0;0;0;0;0;0;7;21;10;10;18;4;4;4;4;4;0;0;0;0;0;0;0;24;24;24;7;25
-66;'242;Fiji;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1200;1200;1400;1400;1400;1200;351;1284;3127;3127;4780;986;981;1085;376;430;1525;3302;3631;5366;4143;4801;4574;1299;3538;3285.6;5167;3073
-66;'242;Fiji;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;350;350;366;366;366;287;55;229;535;535;1111;419;538;509;171;164;1092;2433;2745;3238;2327;2892;2326;969;1611;1444;2600;1629
-66;'242;Fiji;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;41;150;95;3;3;3;23;6;151;288;31;42
-66;'242;Fiji;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;30;63;119;29;1;1;14;9;105;147;22;22
-66;'242;Fiji;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;400;400;1600;400;400;400;300;100;100;100;100;100;100;100;100;100;100;100;100;3069;104;0;0;150;200;200;200;200;300;4323;5070;4859;4859;4904;264;76;69;62;42;174;84;92;92;64;175;183;38;35;116;557;330
-66;'242;Fiji;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;49;49;150;51;51;51;44;17;17;17;17;17;17;17;17;17;17;17;17;1045;23;0;0;37;43;30;30;30;18;340;508;617;617;562;218;96;50;100;25;76;72;107;72;51;116;172;39;15;18;88;77
-66;'242;Fiji;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9;21;10;10;10;33;33;33;33;2;1;1;1;1;14;14;6;18;8;98;49;28
-66;'242;Fiji;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;10;1;1;1;199;199;199;199;1;7;7;7;14;2;2;4;12;9;19;9;7
-66;'242;Fiji;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;1053;1053;1264;1158;1158;842;1474;2001;2001;2001;1300;600;300;100;200;100;100;100;100;100;500;200;500;2437;1786;2700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;166;204;278;294;305;508;615;681;681;681;445;247;123;58;109;52;59;59;59;59;229;229;229;706;520;835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-66;'242;Fiji;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;118;0;0;0;0;0;0;0;0;5;5;103;103;53;83;516;515;615;615;150;253;30;20;153;8;6;1;1;1;1;1
-66;'242;Fiji;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;67;0;0;0;0;0;0;0;0;8;8;11;11;41;80;295;294;320;320;91;139;30;23;80;12;16;7;7;9;10;7
-66;'242;Fiji;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;1378;455;473;2023;1396;919;1233;2828;3219;2632;1398;1034;1050;1522;1333;891;514;56;26;79;56
-66;'242;Fiji;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;1468;283;139;798;257;213;261;503;807;468;271;337;95;161;208;142;49;3;2;6;2
-66;'242;Fiji;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;0;0;0;0;0;0;0;0;0;0;0;38;76;515;515;515;515;137;138;1;1;1;3;1;1;1;1;1;1
-66;'242;Fiji;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;0;0;0;0;0;0;0;0;0;0;0;33;77;294;294;294;294;87;88;14;14;14;3;7;7;7;7;7;7
-66;'242;Fiji;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;0;0;0;0;0;0;0;1;1;1;1;39;77;516;516;516;516;138;138;1;1;1;1;1;1;1;1;1;1
-66;'242;Fiji;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;0;0;0;0;0;0;0;6;3;3;3;36;80;297;297;297;297;90;90;3;3;3;3;3;3;3;3;3;3
-66;'242;Fiji;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;477;477;477;477;99;99;0;0;0;;;;;;;
-66;'242;Fiji;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;250;250;250;250;43;43;0;0;0;;;;;;;
-66;'242;Fiji;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;38;38;38;38;38;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;0;0;0;0;0;0;0;0;0;0;0;0;44;44;44;44;44;44;44;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;0;0;0;;;;;;;
-66;'242;Fiji;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;0;0;0;;;;;;;
-66;'242;Fiji;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;;
-66;'242;Fiji;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;3;3;3;3;0;0;0;;;;;;;
-66;'242;Fiji;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-66;'242;Fiji;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-66;'242;Fiji;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;3;1;1;1;1;1;1
-66;'242;Fiji;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;14;14;14;3;7;7;7;7;7;7
-66;'242;Fiji;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;3;3;3;3;3;3;3;3;3;3;3
-66;'242;Fiji;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;0;0;0;0;0;0;0;0;0;0;0
-66;'242;Fiji;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19
-66;'242;Fiji;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-66;'242;Fiji;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-66;'242;Fiji;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;44;0;0;0;0;0;0;0;0;5;5;103;103;15;7;1;0;100;100;13;115;29;19;152;5;5;0;0;0;0;0
-66;'242;Fiji;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;7;0;0;0;0;0;0;0;0;8;8;11;11;8;3;1;0;26;26;4;51;16;9;66;9;9;0;0;2;3;0
-66;'242;Fiji;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;1377;454;472;2022;1395;918;1232;2827;3218;2631;1397;1034;1050;1522;1333;891;514;56;26;79;56
-66;'242;Fiji;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;1467;282;138;797;256;212;258;500;804;465;268;337;95;161;208;142;49;3;2;6;2
-66;'242;Fiji;1876;Paper and paperboard;5610;Import quantity;t;400;400;400;600;800;1300;1200;1000;3100;2900;2400;2600;4200;5500;5600;3900;4300;4400;7700;8700;8500;7600;7800;7800;9000;9000;12700;12400;12900;18300;23600;8257;14832;19700;20500;13700;6100;9098;17800;17800;20500;96515;53751;32695;32695;25999;38847;21017;26353;18584;24398;17703;19646;22671;12054;26846;38750;38376;34151;33127;36942.3;42281;36286
-66;'242;Fiji;1876;Paper and paperboard;5622;Import value;1000 USD;178;183;199;228;295;710;651;524;1092;1040;953;1114;1461;2306;1925;1219;1493;1612;5606;7441;7818;6619;6511;6680;7449;7422;10579;10419;10719;12037;18941;6923;11585;17361;20334;14017;5539;8472;11944;11944;13652;15245;19574;22869;22869;22585;29268;15754;20942;14170;21019;18364;14888;24127;11711;34426;34120;34849;31756;27259;34250.15;46212;37686
-66;'242;Fiji;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;644;1229;1931;1931;569;714;540;453;645;582;429;59;682;193;322;1048;774;414;481;863.55;594;672
-66;'242;Fiji;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;490;939;1275;1275;1090;1014;873;659;1067;994;930;126;1456;318;523;884;697;602;796;1163.8;773;989
-66;'242;Fiji;2042;Graphic papers;5610;Import quantity;t;300;300;300;500;400;600;600;600;1100;1300;1100;1200;1900;2000;3500;3000;3400;3500;3700;4100;4200;4400;4200;4500;5000;5000;4700;4400;4900;6300;8600;3357;3732;8700;8500;8200;3500;4299;6800;6800;6500;6113;17147;11289;11289;8124;7674;2223;6759;2472;8704;6502;5183;9766;3846;9125;11169;6566;10115;6333;7384.64;7506;6446
-66;'242;Fiji;2042;Graphic papers;5622;Import value;1000 USD;97;102;122;161;156;182;214;242;238;320;358;467;783;1144;947;765;1039;1158;2847;3554;4105;3841;3419;3752;4102;4075;3885;3725;4025;2228;6975;2855;2696;8006;9413;9084;3580;4616;5421;5421;5216;5500;7100;8002;8002;7701;7786;2666;7283;2624;8717;7539;5667;9895;4428;12023;12026;6979;11100;6818;8886.24;10582;8368
-66;'242;Fiji;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;212;721;721;164;282;213;154;32;16;59;32;119;118;284;310;269;206;249;218;156;160
-66;'242;Fiji;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;398;477;477;297;282;247;251;58;33;223;61;343;179;428;576;537;446;647;949.8;613;612
-66;'242;Fiji;1671;Newsprint;5610;Import quantity;t;100;100;100;100;100;300;300;200;400;800;700;800;1300;1100;900;1000;1400;1500;1700;1700;2100;2000;2000;1700;2000;2000;1700;1400;1900;1400;1800;1800;2475;2700;2500;2200;2200;2300;2100;2100;2100;1625;2166;3241;3241;2012;2005;2;1804;17;1;2149;54;2778;1191;530;1076;913;743;438;268;834;550
-66;'242;Fiji;1671;Newsprint;5622;Import value;1000 USD;25;30;34;39;21;50;64;59;83;121;148;198;340;459;349;337;611;730;857;990;1310;1166;1183;1005;1177;1150;960;800;1100;935;1325;1300;1235;1927;1920;1591;1591;1419;1300;1300;1300;1171;1793;1653;1653;1644;1723;2;1482;23;3;1810;29;2242;917;1206;891;784;706;395;253;1040;634
-66;'242;Fiji;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;254;254;5;3;3;3;3;3;3;3;5;5;5;1;23;23;3;5;0;0
-66;'242;Fiji;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;120;120;8;1;1;1;1;1;1;1;10;10;7;2;16;16;6;10;0;2
-66;'242;Fiji;1674;Printing and writing papers;5610;Import quantity;t;200;200;200;400;300;300;300;400;700;500;400;400;600;900;2600;2000;2000;2000;2000;2400;2100;2400;2200;2800;3000;3000;3000;3000;3000;4900;6800;1557;1257;6000;6000;6000;1300;1999;4700;4700;4400;4488;14981;8048;8048;6112;5669;2221;4955;2455;8703;4353;5129;6988;2655;8595;10093;5653;9372;5895;7116.64;6672;5896
-66;'242;Fiji;1674;Printing and writing papers;5622;Import value;1000 USD;72;72;88;122;135;132;150;183;155;199;210;269;443;685;598;428;428;428;1990;2564;2795;2675;2236;2747;2925;2925;2925;2925;2925;1293;5650;1555;1461;6079;7493;7493;1989;3197;4121;4121;3916;4329;5307;6349;6349;6057;6063;2664;5801;2601;8714;5729;5638;7653;3511;10817;11135;6195;10394;6423;8633.24;9542;7734
-66;'242;Fiji;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;210;467;467;159;279;210;151;29;13;56;29;114;113;279;309;246;183;246;213;156;160
-66;'242;Fiji;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;396;357;357;289;281;246;250;57;32;222;60;333;169;421;574;521;430;641;939.8;613;610
-66;'242;Fiji;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;107;107;100;73;127;1010;1010;2247;1962;39;1954;38;104;2178;62;3301;1075;3970;5389;2;4620;3306;2082.31;2723;2272
-66;'242;Fiji;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;285;285;271;110;163;796;796;1717;1934;57;2048;53;130;2534;85;2933;1303;5591;6082;3;5529;3968;3283.42;4403;3432
-66;'242;Fiji;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;120;120;20;94;4;25;3;1;7;8;68;44;206;219;219;164;209;133;122;58
-66;'242;Fiji;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;91;91;35;63;11;49;11;5;81;17;203;86;268;448;448;397;538;627.8;490;259
-66;'242;Fiji;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1727;4059;4059;3800;3798;13973;5152;5152;2447;2383;482;1392;673;7037;818;3456;1545;631;3567;1844;2544;2511;1027;1031.11;1364;1124
-66;'242;Fiji;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2735;3251;3251;3089;3587;4015;4065;4065;2815;2388;651;1793;846;6965;1079;3613;2099;958;3833;2197;2903;2608;1027;980.83;1731;1444
-66;'242;Fiji;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;181;340;340;138;183;183;103;17;3;3;9;2;8;47;73;9;9;2;2;2;4
-66;'242;Fiji;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;337;260;260;248;213;213;179;30;7;7;20;6;38;86;99;27;15;5;8;7;52
-66;'242;Fiji;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;534;534;500;617;881;1886;1886;1418;1324;1700;1609;1744;1562;1357;1611;2142;949;1058;2860;3107;2241;1562;4003.22;2585;2500
-66;'242;Fiji;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;585;585;556;632;1129;1488;1488;1525;1741;1956;1960;1702;1619;2116;1940;2621;1250;1393;2856;3289;2257;1428;4368.99;3408;2858
-66;'242;Fiji;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;7;1;2;23;23;9;9;46;12;44;61;26;17;18;10;35;78;32;98
-66;'242;Fiji;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;6;6;6;5;22;22;16;20;134;23;124;45;67;27;46;18;98;304;116;299
-66;'242;Fiji;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;100;400;700;600;400;2000;1600;1300;1400;2300;3500;2100;900;900;900;4000;4600;4300;3200;3600;3300;4000;4000;8000;8000;8000;12000;15000;4900;11100;11000;12000;5500;2600;4799;11000;11000;14000;90402;36604;21406;21406;17875;31173;18794;19594;16112;15694;11201;14463;12905;8208;17721;27581;31810;24036;26794;29557.66;34775;29840
-66;'242;Fiji;1675;Other paper and paperboard;5622;Import value;1000 USD;81;81;77;67;139;528;437;282;854;720;595;647;678;1162;978;454;454;454;2759;3887;3713;2778;3092;2928;3347;3347;6694;6694;6694;9809;11966;4068;8889;9355;10921;4933;1959;3856;6523;6523;8436;9745;12474;14867;14867;14884;21482;13088;13659;11546;12302;10825;9221;14232;7283;22403;22094;27870;20656;20441;25363.91;35630;29318
-66;'242;Fiji;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;123;1017;1210;1210;405;432;327;299;613;566;370;27;563;75;38;738;505;208;232;645.55;438;512
-66;'242;Fiji;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;203;541;798;798;793;732;626;408;1009;961;707;65;1113;139;95;308;160;156;149;214;160;377
-66;'242;Fiji;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1400;700;0;0;0;0;600;1556;1879;2300;2300;2022;2428;1769;2357;2129;1985;2936;839;2913;1341;1822;3597;3107;3863;3362;4011.04;4227;4513
-66;'242;Fiji;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898;1594;740;0;0;0;0;1049;1745;2214;2530;2530;3079;4449;2470;3450;2988;3311;4954;1203;4961;2019;4177;5627;5267;5992;4899;6621.56;7737;8602
-66;'242;Fiji;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;8;8;8;7;5;5;5;8;7;43;22;22;47;7;3;4;2;1
-66;'242;Fiji;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;2;2;10;10;10;6;8;8;8;7;15;62;29;29;70;13;5;9;5;3
-66;'242;Fiji;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4799;11000;11000;13000;11891;31812;17622;17622;15207;28181;16145;16971;13586;13400;8134;12988;9298;6713;15707;23949;28686;20159;23415;25531.62;30534;25313
-66;'242;Fiji;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856;6523;6523;6797;6899;8951;10927;10927;10759;15612;9008;9348;7382;7883;5609;7010;8550;5034;17710;16285;22458;14535;15392;18653.35;27796;20596
-66;'242;Fiji;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;446;1074;1074;278;339;306;255;591;554;350;12;549;25;13;713;456;200;229;641.55;436;511
-66;'242;Fiji;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;342;648;648;448;519;591;352;979;943;675;44;1071;62;54;267;82;133;142;205;149;366
-66;'242;Fiji;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;8000;11000;900;7100;7500;8000;3500;2600;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;3347;3347;3347;6462;8619;721;5542;6157;7330;3305;1959;;;;;;;;;;;;;;;;;;;;;;;;;;
-66;'242;Fiji;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3323;7615;7615;9000;3034;5893;5011;5011;3818;6546;9735;3722;8870;8967;6958;10639;6839;4775;3581;19824;24625;17084;20380;23073.79;27221;21789
-66;'242;Fiji;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2558;4328;4328;4510;1550;2854;3108;3108;2591;3386;5093;1818;4285;4944;4197;5437;4784;3281;5855;12206;17064;10679;11998;15745.86;22881;15543
-66;'242;Fiji;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;272;594;594;66;18;11;7;10;10;2;2;2;2;2;673;440;142;159;578.55;372;372
-66;'242;Fiji;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;96;359;359;117;44;25;17;16;16;14;14;14;14;14;160;37;73;13;131;85;85
-66;'242;Fiji;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;677;677;800;641;264;530;530;581;2756;5453;1981;4391;4027;923;2111;2204;657;239;757;601;478;606;990;900;818
-66;'242;Fiji;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;717;717;747;542;198;328;328;515;1253;2899;774;2808;2636;1007;1219;3397;444;377;680;1183;584;623;955;1152;1136
-66;'242;Fiji;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;21;21;24;24;31;203;203;203;7;8;1;4;1;30;4;12;7;0;0;19
-66;'242;Fiji;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;12;12;26;26;38;282;282;282;16;20;2;13;5;72;11;12;23;1;3;43
-66;'242;Fiji;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;2031;2031;2400;8146;25617;11891;11891;10774;18859;945;11264;321;402;229;235;235;1264;10753;3364;3444;2597;2429;1467.83;2413;2702
-66;'242;Fiji;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;619;619;645;4673;5842;7373;7373;7630;10953;1002;6737;270;284;371;348;348;1296;10886;3391;4197;3272;2771;1952.49;3763;3914
-66;'242;Fiji;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;162;459;459;188;297;264;45;378;341;341;2;546;19;8;8;10;44;56;56;55;111
-66;'242;Fiji;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;230;277;277;305;449;528;53;681;645;645;10;1055;35;26;26;25;39;99;66;50;227
-66;'242;Fiji;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;677;677;800;70;38;190;190;34;20;12;4;4;4;24;3;20;17;1134;4;16;0;0;0;0;4
-66;'242;Fiji;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;859;859;895;134;57;118;118;23;20;14;19;19;19;34;6;21;13;592;8;14;0;0;0;0;3
-66;'242;Fiji;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;7;7;9;9
-66;'242;Fiji;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;7;7;11;11
-66;'242;Fiji;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;100;100;100;100;400;700;600;400;2000;1600;1300;1400;2300;3500;2100;900;900;900;4000;4600;4300;3200;3600;3300;4000;4000;4000;4000;4000;4000;4000;4000;4000;1700;2600;1300;0;0;0;0;400;76955;2913;1484;1484;646;564;880;266;397;309;131;636;694;154;192;35;17;14;17;15;14;14
-66;'242;Fiji;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;81;81;77;67;139;528;437;282;854;720;595;647;678;1162;978;454;454;454;2759;3887;3713;2778;3092;2928;3347;3347;3347;3347;3347;3347;3347;3347;3347;1300;1997;888;0;0;0;0;590;1101;1309;1410;1410;1046;1421;1610;861;1176;1108;262;1008;721;230;516;182;145;129;150;89;97;120
-66;'242;Fiji;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;114;561;135;135;119;85;13;37;17;7;15;7;7;7;3;3;2;1;0;0;0;0
-66;'242;Fiji;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;191;170;148;148;335;203;25;50;22;10;24;14;27;15;12;12;8;10;2;0;6;8
-66;'242;Fiji;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12026;11409;9463;6517;5712;9677;13396
-66;'242;Fiji;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1029;1319;1262;931;601;782;1491
-66;'242;Fiji;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440;118;78;69;17;54;81
-66;'242;Fiji;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;187;4;117;49;37;273
-66;'242;Fiji;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;40;60;58;16;17;3
-66;'242;Fiji;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;86;2;21;40;7;8
-66;'242;Fiji;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;78;18;11;1;37;78
-66;'242;Fiji;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;101;2;96;9;30;265
-66;'242;Fiji;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;63;31;20;76;66;153
-66;'242;Fiji;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;43;90;103;145;143
-66;'242;Fiji;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;369;338;289;221;313;554
-66;'242;Fiji;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;332;477;185;86;126;259
-66;'242;Fiji;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1848;1249;913;536;947;225;1170
-66;'242;Fiji;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;105;128;140;86;52;117
-66;'242;Fiji;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14
-66;'242;Fiji;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30
-66;'242;Fiji;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8295;8983;7403;5387;4286;8581;10928
-66;'242;Fiji;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;665;569;378;257;404;630
-66;'242;Fiji;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;22;345;1;5;234;2
-66;'242;Fiji;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-66;'242;Fiji;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763;605;355;215;160;204;508
-66;'242;Fiji;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;22;41;21;20;18;69
-66;'242;Fiji;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21841;24543;21625;14817;12025;15834;15405
-66;'242;Fiji;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10794;11435;8551;9908;10351;10810;9714
-66;'242;Fiji;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;12;46;3;3;5;4
-66;'242;Fiji;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;60;55;2;2;0
-66;'242;Fiji;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052;830;856;712;1105;1812;1856
-66;'242;Fiji;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;493;207;165;189;295;74
-66;'242;Fiji;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;1952;2093;1411;1422;2070;2732
-66;'242;Fiji;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287;1265;1277;1307;1329;2282;1604
-66;'242;Fiji;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4217;4782;4745;3979;3623;4805;3827
-66;'242;Fiji;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8367;8747;6426;7674;7546;7624;7332
-66;'242;Fiji;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14698;16967;13885;8712;5872;7142;6986
-66;'242;Fiji;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;884;581;707;1285;607;704
-67;'246;Finland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987307.97;2509635;2243068;2135214;2283072;2417395;2127226
-67;'246;Finland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13593119.36;15674119;14075009;11929114;15485920;15555037;13204486
-67;'246;Finland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;10865;11246;15735;30258;47861;44611;46267;41786;42640;52771;65052;66925;112266;150091;190007;190220;153920;151173;173431;235856;241183;300659;306306;340765;301137;329526;444957;501774;584644;616474;521439;699189;515930;665559;988050;708139;715736;903605;889762;904882;976146;1027147;1279292;1526172;1783293;1803727;2406553;2853836;1304781;1718614;1937004;1700016;1702402;1536842;1210294;1179137;1237732.63;1666706;1417586;1294733;1480523;1401973;1107621
-67;'246;Finland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;670674;635759;649891;703292;734656;750072;726207;953784;1094433;1219508;1217312;1396193;1855276;2423444;2253864;2498931;2868266;3289558;4450803;5476501;4993179;4321835;4163597;4650355;4613855;5507683;7087405;8167712;8504820;9410116;8266305;8432502;7576004;9487075;11991747;10340502;10433262;11252565;10925189;10973734;10093216;10496592;12075420;13540912;12106617;14349249;15896187;15203949;11095494;13160848;14386101;13099913;13948091;13973971;12123752;11823276;12626663.27;14680718;13097668;10994622;14409216;14268955;12190098
-67;'246;Finland;1861;Roundwood;5516;Production;m3;50670000;47087000;44803000;45289000;42881000;41397000;41188000;40906000;44170000;45130000;42930000;42240000;42780000;40480000;31690000;32320000;33977000;37719000;45228000;47119000;43910000;37656000;38408000;40544000;41657000;40669000;41939000;44937000;47121000;43230000;34863000;38482000;42244000;48745000;50219000;46597000;51329000;53659980;53637000;54261855;52210000;53388566;54240434;54398265;52250182;50811617;56612179;50931600;42157800;52124600;52777900;52309505;56991580;57033450;59410884;61433874;63279358;68289165;63683594;60117643;66785028;65721448;63430367
-67;'246;Finland;1861;Roundwood;5616;Import quantity;m3;427700;545600;928500;1678200;2322800;1911100;1835600;2034000;2098200;2406000;2837400;2536600;4193000;4203000;4267000;4336000;3902300;3643000;3507000;3852000;3737100;4509000;5544000;6623000;5458600;4730600;5503000;5825000;6437500;5237074;4456030;5264283;5546759;6788500;9046000;6613800;6775000;9347100;10300773;10004597;11992921;12688494;13043674;13114524;16211820;14829207;13097525;13612281;4649790;6407984;5823297;5552685;6771395;6290720;5730060;5939664;4841339;6951823;6323364;6462947;6441412;3031758;3000560
-67;'246;Finland;1861;Roundwood;5622;Import value;1000 USD;5577;5928;10004;18589;29682;25421;24899;22341;20815;27177;36315;35660;65004;84651;118212;116597;90696;84081;85116;110027;117311;149650;164243;191087;154685;146622;189458;213619;250844;251436;188764;256473;197000;250400;480939;309540;293327;400292;393432;352758;415659;471128;582612;677389;807152;754756;1048974;1299396;291123;444527;474249;391125;463166;410833;276131;265547;240794.58;459120;359292;332344;347370;260348;257769
-67;'246;Finland;1861;Roundwood;5916;Export quantity;m3;5994900;3707400;2155900;1377200;802900;709300;662500;484400;738600;1077700;916800;489000;487800;472000;490000;536000;929000;544400;1173000;1766000;2365000;986000;647000;902600;1042100;1344500;1496000;783600;472300;294671;178364;478600;924600;1461000;872000;582000;644000;716800;768362;533276;404098;408040;442478;530731;753555;717985;655804;716304;539492;501939;730682;696886;885397;869480;842183;894889;976682;1591838;1447303;1264373;1119099;1804139;1597111
-67;'246;Finland;1861;Roundwood;5922;Export value;1000 USD;91562;58460;34481;27123;17914;17426;14431;11925;15709;19697;19604;14788;17120;28624;47966;41203;68736;50933;76757;134929;169149;85858;68355;75794;81646;103070;116862;53058;36457;45066;27054;40044;80895;132683;101246;76770;78517;76998;80874;43326;33983;35038;42778;48889;64778;67581;85980;100266;70144;58115;84532;74428;85014;82571;69923;68780;74434.63;117736;102188;110661;113131;158348;172255
-67;'246;Finland;1862;Roundwood, coniferous;5516;Production;m3;39024000;35188000;33482000;32886000;29705000;28412000;27944000;27838000;31460000;32600000;31280000;30730000;31510000;30530000;24150000;24580000;26530000;29465000;37385000;39090000;36230000;30149000;30967000;33000000;33628000;32622000;33801000;36420000;37481000;35066000;28333000;31397000;34645000;40874000;41734000;38993000;43159000;45035766;45100000;45768959;43725000;44792851;45532423;45753426;43471996;42199886;47172522;40420900;32651300;41300100;41780900;41645513;44991361;45191870;46871066;48749434;50205996;54179689;49916043;47222432;52997127;52113147;50322226
-67;'246;Finland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1136818;2053977;1748740;1696044;1578155;1415551;1624871
-67;'246;Finland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70597.05;156554;121177;99771;93848;110712;129095
-67;'246;Finland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938606;1390345;1262563;1194213;1012339;1443600;1306205
-67;'246;Finland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71736.19;105644;91414;105333;105698;131530;147033
-67;'246;Finland;1863;Roundwood, non-coniferous;5516;Production;m3;11646000;11899000;11321000;12403000;13176000;12985000;13244000;13068000;12710000;12530000;11650000;11510000;11270000;9950000;7540000;7740000;7447000;8254000;7843000;8029000;7680000;7507000;7441000;7544000;8029000;8047000;8138000;8517000;9640000;8164000;6530000;7085000;7599000;7871000;8485000;7604000;8170000;8624214;8537000;8492896;8485000;8595715;8708011;8644839;8778186;8611731;9439657;10510700;9506500;10824500;10997000;10663992;12000219;11841580;12539818;12684440;13073362;14109476;13767551;12895211;13787901;13608301;13108141
-67;'246;Finland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3704521;4897846;4574624;4766903;4863257;1616207;1375689
-67;'246;Finland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170197.52;302566;238115;232573;253522;149636;128674
-67;'246;Finland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38076;201493;184740;70160;106760;360539;290906
-67;'246;Finland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698.44;12092;10774;5328;7433;26818;25222
-67;'246;Finland;1864;Wood fuel;5516;Production;m3;13179000;13050000;11671000;10244000;10270000;9605000;9302000;8847000;8230000;7680000;7370000;7050000;6770000;6440000;6180000;5910000;5077000;4484000;4443000;4099000;3420000;3305000;3242000;3160000;3055000;3009000;2956000;2984000;3790000;2984000;2922000;2878000;4161000;4101000;4095000;4094000;4041000;4119117;4044000;4114782;4483000;4859566;4994434;5117407;5134197;5290309;5206454;5471400;6006600;6705000;7251700;7695371;7660176;7831820;7964445;7107138;7949091;7758731;8013230;8937012;8911046;9386077;9848619
-67;'246;Finland;1864;Wood fuel;5616;Import quantity;m3;21000;17000;32000;33000;91000;89000;168000;194000;267000;127000;173000;173000;173000;173000;373000;233000;212000;95000;67000;96000;78000;73000;61000;41000;45000;48000;52000;30000;36000;29000;50000;18000;29000;26000;36000;38000;41000;112500;141000;129399;123842;102172;174975;153175;180841;174208;155343;241603;888325;152112;87485;95767;77634;33690;21042;29088;11406;16728;89404;188833;143368;152408;481430
-67;'246;Finland;1864;Wood fuel;5622;Import value;1000 USD;89;71;141;150;450;616;1224;1560;2150;1020;1400;1400;1400;1400;6300;5114;2425;835;487;934;745;678;523;347;368;941;486;342;732;397;1074;293;339;407;536;461;449;1320;1344;762;726;1183;2513;2420;2316;2881;3065;11075;30910;4760;4017;3404;3080;2068;1198;1776;1153.31;1477;3951;8560;8258;11287;37868
-67;'246;Finland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;1000;4000;1000;1000;1000;600;1000;1000;7000;24000;1000;1000;100;600;600;1000;1000;3000;4000;5600;10000;13790;4678;4344;10425;5663;5430;9213;9306;6673;5768;18816;53358;88172;109207;135180;124904;111785;60837;119957;90922;101148;48574;101367;91487
-67;'246;Finland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;35;187;42;24;21;13;39;26;71;1254;92;92;14;28;21;58;155;380;175;255;344;331;235;298;972;553;501;1082;1274;1024;736;1247;2849;3985;4901;6278;4386;3839;2274.68;5141;3650;4629;2242;4739;4854
-67;'246;Finland;1627;Wood fuel, coniferous;5516;Production;m3;4054000;3993000;3469000;2058000;1974000;1828000;1671000;1530000;1510000;1480000;1430000;1360000;1320000;1250000;1210000;1150000;880000;810000;1130000;1080000;1070000;1027000;1020000;1004000;978000;963000;895000;950000;990000;950000;922000;910000;1413000;1385000;1387000;1389000;1367000;1403673;1368000;1400205;1996000;2313851;2414423;2527762;2543823;2624638;2580855;2293600;2634800;3075000;3426100;3703983;3686226;3789470;3946391;3389162;3677519;3547190;3716043;4322432;4297127;4613147;4922226
-67;'246;Finland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5318;6701;5047;162198;110325;119908;357783
-67;'246;Finland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273.77;147;160;6536;4576;8253;26261
-67;'246;Finland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58549;117147;88468;98949;46349;95531;90731
-67;'246;Finland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050.61;4822;3373;4377;1991;3917;4737
-67;'246;Finland;1628;Wood fuel, non-coniferous;5516;Production;m3;9125000;9057000;8202000;8186000;8296000;7777000;7631000;7317000;6720000;6200000;5940000;5690000;5450000;5190000;4970000;4760000;4197000;3674000;3313000;3019000;2350000;2278000;2222000;2156000;2077000;2046000;2061000;2034000;2800000;2034000;2000000;1968000;2748000;2716000;2708000;2705000;2674000;2715444;2676000;2714577;2487000;2545715;2580011;2589645;2590374;2665671;2625599;3177800;3371800;3630000;3825600;3991388;3973950;4042350;4018054;3717976;4271572;4211541;4297187;4614580;4613919;4772930;4926393
-67;'246;Finland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6088;10027;84357;26635;33043;32500;123647
-67;'246;Finland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879.54;1330;3791;2024;3682;3034;11607
-67;'246;Finland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288;2810;2454;2199;2225;5836;756
-67;'246;Finland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224.07;319;277;252;251;822;117
-67;'246;Finland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;21000;17000;32000;33000;91000;89000;168000;194000;267000;127000;173000;173000;173000;173000;373000;233000;212000;95000;67000;96000;78000;73000;61000;41000;45000;48000;52000;30000;36000;29000;50000;18000;29000;26000;36000;38000;41000;112500;141000;129399;123842;102172;174975;153175;180841;174208;155343;241603;888325;152112;87485;95767;77634;33690;21042;29088;;;;;;;
-67;'246;Finland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;89;71;141;150;450;616;1224;1560;2150;1020;1400;1400;1400;1400;6300;5114;2425;835;487;934;745;678;523;347;368;941;486;342;732;397;1074;293;339;407;536;461;449;1320;1344;762;726;1183;2513;2420;2316;2881;3065;11075;30910;4760;4017;3404;3080;2068;1198;1776;;;;;;;
-67;'246;Finland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;1000;4000;1000;1000;1000;600;1000;1000;7000;24000;1000;1000;100;600;600;1000;1000;3000;4000;5600;10000;13790;4678;4344;10425;5663;5430;9213;9306;6673;5768;18816;53358;88172;109207;135180;124904;111785;;;;;;;
-67;'246;Finland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;35;187;42;24;21;13;39;26;71;1254;92;92;14;28;21;58;155;380;175;255;344;331;235;298;972;553;501;1082;1274;1024;736;1247;2849;3985;4901;6278;4386;3839;;;;;;;
-67;'246;Finland;1865;Industrial roundwood;5516;Production;m3;37491000;34037000;33132000;35045000;32611000;31792000;31886000;32059000;35940000;37450000;35560000;35190000;36010000;34040000;25510000;26410000;28900000;33235000;40785000;43020000;40490000;34351000;35166000;37384000;38602000;37660000;38983000;41953000;43331000;40246000;31941000;35604000;38083000;44644000;46124000;42503000;47288000;49540863;49593000;50147073;47727000;48529000;49246000;49280858;47115985;45521308;51405725;45460200;36151200;45419600;45526200;44614134;49331404;49201630;51446439;54326736;55330267;60530434;55670364;51180631;57873982;56335371;53581748
-67;'246;Finland;1865;Industrial roundwood;5616;Import quantity;m3;406700;528600;896500;1645200;2231800;1822100;1667600;1840000;1831200;2279000;2664400;2363600;4020000;4030000;3894000;4103000;3690300;3548000;3440000;3756000;3659100;4436000;5483000;6582000;5413600;4682600;5451000;5795000;6401500;5208074;4406030;5246283;5517759;6762500;9010000;6575800;6734000;9234600;10159773;9875198;11869079;12586322;12868699;12961349;16030979;14654999;12942182;13370678;3761465;6255872;5735812;5456918;6693761;6257030;5709018;5910576;4829933;6935095;6233960;6274114;6298044;2879350;2519130
-67;'246;Finland;1865;Industrial roundwood;5622;Import value;1000 USD;5488;5857;9863;18439;29232;24805;23675;20781;18665;26157;34915;34260;63604;83251;111912;111483;88271;83246;84629;109093;116566;148972;163720;190740;154317;145681;188972;213277;250112;251039;187690;256180;196661;249993;480403;309079;292878;398972;392088;351996;414933;469945;580099;674969;804836;751875;1045909;1288321;260213;439767;470232;387721;460086;408765;274933;263771;239641.27;457643;355341;323784;339112;249061;219901
-67;'246;Finland;1865;Industrial roundwood;5916;Export quantity;m3;5994900;3707400;2155900;1377200;802900;709300;662500;484400;738600;1077700;916800;489000;487800;472000;490000;536000;929000;544400;1172000;1762000;2364000;985000;646000;902000;1041100;1343500;1489000;759600;471300;293671;178264;478000;924000;1460000;871000;579000;640000;711200;758362;519486;399420;403696;432053;525068;748125;708772;646498;709631;533724;483123;677324;608714;776190;734300;717279;783104;915845;1471881;1356381;1163225;1070525;1702772;1505624
-67;'246;Finland;1865;Industrial roundwood;5922;Export value;1000 USD;91562;58460;34481;27123;17914;17426;14431;11925;15709;19697;19604;14788;17120;28624;47966;41203;68736;50933;76722;134742;169107;85834;68334;75781;81607;103044;116791;51804;36365;44974;27040;40016;80874;132625;101091;76390;78342;76743;80530;42995;33748;34740;41806;48336;64277;66499;84706;99242;69408;56868;81683;70443;80113;76293;65537;64941;72159.95;112595;98538;106032;110889;153609;167401
-67;'246;Finland;1866;Industrial roundwood, coniferous;5516;Production;m3;34970000;31195000;30013000;30828000;27731000;26584000;26273000;26308000;29950000;31120000;29850000;29370000;30190000;29280000;22940000;23430000;25650000;28655000;36255000;38010000;35160000;29122000;29947000;31996000;32650000;31659000;32906000;35470000;36491000;34116000;27411000;30487000;33232000;39489000;40347000;37604000;41792000;43632093;43732000;44368754;41729000;42479000;43118000;43225664;40928173;39575248;44591667;38127300;30016500;38225100;38354800;37941530;41305135;41402400;42924675;45360272;46528477;50632499;46200000;42900000;48700000;47500000;45400000
-67;'246;Finland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683431;1802000;1688000;1100000;1944000;2297000;2779000;2754000;3108200;3899000;4168287;5258576;6160954;6041255;6242245;8410618;7140397;6187060;5817754;1962147;2302057;2332622;1529260;1776027;1463560;1180716;1543133;1131500;2047276;1743693;1533846;1467830;1295643;1267088
-67;'246;Finland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92393;78119;77688;35596;75488;122127;128559;120542;131387;151550;152042;192079;244133;294325;354410;464321;399753;537093;561190;153139;169219;197609;118385;130784;105866;70717;86511;70323.29;156407;121017;93235;89272;102459;102834
-67;'246;Finland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271886;174264;455000;901000;1430000;820000;568000;621000;692100;743000;500976;382203;390776;421020;514873;707950;667790;605668;664470;504898;473540;654448;605390;750339;718970;696597;770823;880057;1273198;1174095;1095264;965990;1348069;1215474
-67;'246;Finland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42687;26340;35958;78477;129453;93275;72682;73430;70802;74847;38054;28894;30777;37553;44207;59024;61830;79367;93746;66387;55987;80135;70113;77994;74999;64218;64161;69685.58;100822;88041;100956;103707;127613;142296
-67;'246;Finland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683431;1802000;1688000;1100000;1944000;2297000;2779000;2754000;3108200;3899000;4168287;5258576;6160954;6041255;6242245;8410618;7140397;6187060;5817754;1962147;2302057;2332622;1529260;1776027;1463560;1180716;1543133;1131500;2047276;1743693;1533846;1467830;1295643;1267088
-67;'246;Finland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92393;78119;77688;35596;75488;122127;128559;120542;131387;151550;152042;192079;244133;294325;354410;464321;399753;537093;561190;153139;169219;197609;118385;130784;105866;70717;86511;70323.29;156407;121017;93235;89272;102459;102834
-67;'246;Finland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271886;174264;455000;901000;1430000;820000;568000;621000;692100;743000;500976;382203;390776;421020;514873;707950;667790;605668;664470;504898;473540;654448;605390;750339;718970;696597;770823;880057;1273198;1174095;1095264;965990;1348069;1215474
-67;'246;Finland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42687;26340;35958;78477;129453;93275;72682;73430;70802;74847;38054;28894;30777;37553;44207;59024;61830;79367;93746;66387;55987;80135;70113;77994;74999;64218;64161;69685.58;100822;88041;100956;103707;127613;142296
-67;'246;Finland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2521000;2842000;3119000;4217000;4880000;5208000;5613000;5751000;5990000;6330000;5710000;5820000;5820000;4760000;2570000;2980000;3250000;4580000;4530000;5010000;5330000;5229000;5219000;5388000;5952000;6001000;6077000;6483000;6840000;6130000;4530000;5117000;4851000;5155000;5777000;4899000;5496000;5908770;5861000;5778319;5998000;6050000;6128000;6055194;6187812;5946060;6814058;7332900;6134700;7194500;7171400;6672604;8026269;7799230;8521764;8966464;8801790;9897935;9470364;8280631;9173982;8835371;8181748
-67;'246;Finland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3524643;2604030;3558283;4417759;4818500;6713000;3796800;3980000;6126400;6260773;5706911;6610503;6425368;6827444;6719104;7620361;7514602;6755122;7552924;1799318;3953815;3403190;3927658;4917734;4793470;4528302;4367443;3698433;4887819;4490267;4740268;4830214;1583707;1252042
-67;'246;Finland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158646;109571;178492;161065;174505;358276;180520;172336;267585;240538;199954;222854;225812;285774;320559;340515;352122;508816;727131;107074;270548;272623;269336;329302;302899;204216;177260;169317.99;301236;234324;230549;249840;146602;117067
-67;'246;Finland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21785;4000;23000;23000;30000;51000;11000;19000;19100;15362;18510;17217;12920;11033;10195;40175;40982;40830;45161;28826;9583;22876;3324;25851;15330;20682;12281;35788;198683;182286;67961;104535;354703;290150
-67;'246;Finland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;700;4058;2397;3172;7816;3708;4912;5941;5683;4941;4854;3963;4253;4129;5253;4669;5339;5496;3021;881;1548;330;2119;1294;1319;780;2474.37;11773;10497;5076;7182;25996;25105
-67;'246;Finland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;30;80283;49759;1500;8000;800;500;100;23;13;0;63;44;12;44;72;0;73;0;10;29;24;184;11;6;0;10;1;4;3;4;0;77
-67;'246;Finland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;7117;3934;19;94;89;58;51;19;17;0;80;118;15;62;80;0;63;0;14;10;12;205;12;6;0;50.11;4;25;58;43;0;13
-67;'246;Finland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;2;0;0;113;248;91;1;0;10;0;0;0;0;1;0;1;0;0;0;22;11;0
-67;'246;Finland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;2;0;0;79;218;119;0;0;9;0;0;0;0;0;0;0.06;0;0;0;53;46;0
-67;'246;Finland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3524611;2604000;3478000;4368000;4817000;6705000;3796000;3979500;6126300;6260750;5706898;6610503;6425305;6827400;6719092;7620317;7514530;6755122;7552851;1799318;3953805;3403161;3927634;4917550;4793459;4528296;4367443;3698423;4887818;4490263;4740265;4830210;1583707;1251965
-67;'246;Finland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158640;109567;171375;157131;174486;358182;180431;172278;267534;240519;199937;222854;225732;285656;320544;340453;352042;508816;727068;107074;270534;272613;269324;329097;302887;204210;177260;169267.87;301232;234299;230491;249797;146602;117054
-67;'246;Finland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21785;4000;23000;23000;30000;51000;11000;19000;19100;15361;18509;17217;12918;11033;10195;40062;40734;40739;45160;28826;9573;22876;3324;25851;15330;20681;12281;35787;198683;182286;67961;104513;354692;290150
-67;'246;Finland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;700;4058;2397;3172;7816;3708;4912;5941;5682;4939;4854;3961;4253;4129;5174;4451;5220;5496;3021;872;1548;330;2119;1294;1319;780;2474.31;11773;10497;5076;7129;25950;25105
-67;'246;Finland;1868;Sawlogs and veneer logs;5516;Production;m3;14684000;12888000;12569000;15055000;14787000;12871000;12724000;12984000;15330000;16500000;16690000;15630000;17260000;15640000;10310000;12460000;14920000;15950000;21000000;22150000;18220000;15790000;17143000;17606000;18080000;17026000;17488000;19240000;19710000;18679000;14490000;16215000;18400000;23095000;22831000;21210000;24976000;25586557;25090000;25994290;23359000;23835000;24577000;24256859;22443710;21883615;25694134;19389800;15198400;19447800;19641600;19322265;21431391;21663480;22124709;23409636;24471757;26383958;23192986;22266602;26125897;25737147;24532348
-67;'246;Finland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;261000;317600;446800;512600;638000;733900;630100;611600;411700;576400;544400;699700;632000;936000;713000;593000;760000;754000;599000;658000;522000;609000;534000;687000;674200;534400;571000;867000;363600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;4402;4584;6216;7906;10670;12102;10993;9272;6244;9234;9220;12406;13704;31022;26928;19062;23700;25372;21472;25682;23814;25888;21581;27839;28237;24614;29801;42805;21724;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;324200;204500;182900;121900;71000;99400;94100;48600;74300;43300;37800;45100;49000;61000;67000;271000;570000;236000;437000;695000;750000;346000;358000;448000;517900;331600;499000;293600;242800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;9480;6206;5892;4854;3259;4278;4266;2026;2548;1724;1548;1871;2120;4087;6739;16520;34901;15134;27089;51941;52167;34631;32943;36630;36027;22134;42059;22754;19385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;13586000;11715000;11291000;13467000;12923000;11110000;10884000;11050000;13140000;14290000;14790000;13980000;15410000;14440000;9430000;11440000;13940000;14800000;19480000;20740000;16850000;14438000;15868000;16258000;16728000;15710000;16154000;17800000;18300000;17306000;13470000;15241000;17469000;22012000;21697000;20267000;23772000;24238057;23928000;24772742;22209000;22736000;23593000;23365109;21454520;21004045;24568414;18373400;14513800;18645500;18762600;18526224;20500876;20757860;21183440;22424042;23492604;25293336;22200000;21400000;25100000;24700000;23500000
-67;'246;Finland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;252700;303800;440200;507400;629300;728200;622400;603900;407000;572000;540100;689400;612000;909000;698000;571000;753000;748000;595000;654000;520000;606000;522000;648000;646600;505400;508000;420000;322800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;3805;3894;5725;7444;10044;11673;10456;8760;5889;8888;8946;12089;13091;30134;26093;18537;23495;25163;21331;25519;23715;25738;21059;26082;26912;22897;26088;23076;18533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;283100;160400;138000;81800;31300;62800;60200;21500;44400;25000;23600;36900;44000;57000;64000;269000;565000;234000;435000;691000;742000;342000;353000;441000;514100;328200;482000;288600;240500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;7172;3655;3466;2810;1197;2152;2143;510;1263;904;793;1367;1775;3676;6433;16221;34242;14763;26741;51292;51559;34069;32102;35564;35407;21507;40923;21938;18529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1098000;1173000;1278000;1588000;1864000;1761000;1840000;1934000;2190000;2210000;1900000;1650000;1850000;1200000;880000;1020000;980000;1150000;1520000;1410000;1370000;1352000;1275000;1348000;1352000;1316000;1334000;1440000;1410000;1373000;1020000;974000;931000;1083000;1134000;943000;1204000;1348500;1162000;1221548;1150000;1099000;984000;891750;989190;879570;1125720;1016400;684600;802300;879000;796041;930515;905620;941269;985594;979153;1090622;992986;866602;1025897;1037147;1032348
-67;'246;Finland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;8300;13800;6600;5200;8700;5700;7700;7700;4700;4400;4300;10300;20000;27000;15000;22000;7000;6000;4000;4000;2000;3000;12000;39000;27600;29000;63000;447000;40800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;597;690;491;462;626;429;537;512;355;346;274;317;613;888;835;525;205;209;141;163;99;150;522;1757;1325;1717;3713;19729;3191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;41100;44100;44900;40100;39700;36600;33900;27100;29900;18300;14200;8200;5000;4000;3000;2000;5000;2000;2000;4000;8000;4000;5000;7000;3800;3400;17000;5000;2300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2308;2551;2426;2044;2062;2126;2123;1516;1285;820;755;504;345;411;306;299;659;371;348;649;608;562;841;1066;620;627;1136;816;856;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23954306;24503000;24152783;24368000;24694000;24669000;25023999;24672275;23637693;25711591;26070400;20952800;25971800;25884600;25291869;27900013;27538150;29321730;30917100;30858510;34146476;32477378;28914029;31748085;30598224;29049400
-67;'246;Finland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19394036;19804000;19596012;19520000;19743000;19525000;19860555;19473653;18571203;20023253;19753900;15502700;19579600;19592200;19415306;20804259;20644540;21741235;22936230;23035873;25339163;24000000;21500000;23600000;22800000;21900000
-67;'246;Finland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4560270;4699000;4556771;4848000;4951000;5144000;5163444;5198622;5066490;5688338;6316500;5450100;6392200;6292400;5876563;7095754;6893610;7580495;7980870;7822637;8807313;8477378;7414029;8148085;7798224;7149400
-67;'246;Finland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;132700;181500;441600;1119400;1593200;1077300;1036500;1222400;1416500;1699600;2117000;1637900;3260000;3060000;3160000;3490000;2929000;2753000;2800000;3096000;3137000;3822000;4942000;5893000;4739000;4148000;4874000;4851000;5598800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;800;1073;3566;10453;18553;12655;12643;11482;12406;16901;25673;21573;48389;51746;84603;91922;64550;56952;62235;83340;92749;122842;141913;162817;126056;121035;158508;167085;207525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;4251000;2437000;1211600;836700;528800;346700;334700;224100;382000;735000;656000;271700;211800;194000;134000;77000;135000;46000;490000;782000;1286000;432000;63000;228000;277200;779000;841000;349000;159000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;60479;34295;16367;12935;8220;4525;3578;2430;4078;8834;8870;5658;2673;3117;3013;1609;4081;1382;16790;33155;54787;16918;2130;7823;9765;34642;43893;19569;8498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;19676000;18239000;17449000;18514000;16727000;17780000;18124000;18111000;19530000;19840000;17870000;18620000;17760000;17470000;14220000;13020000;12680000;16020000;18400000;19460000;20830000;17182000;16618000;18364000;18988000;19428000;21117000;22200000;22960000;21242000;17126000;19064000;19358000;21224000;22968000;20968000;22312000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;132700;181500;441600;1119400;1593200;1077300;1036500;1222400;1416500;1699600;2117000;1637900;3260000;3060000;3160000;3490000;2929000;2753000;2800000;3096000;3137000;3822000;4942000;5893000;4739000;4148000;4874000;4851000;5598800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;800;1073;3566;10453;18553;12655;12643;11482;12406;16901;25673;21573;48389;51746;84603;91922;64550;56952;62235;83340;92749;122842;141913;162817;126056;121035;158508;167085;207525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;4251000;2437000;1211600;836700;528800;346700;334700;224100;382000;735000;656000;271700;211800;194000;134000;77000;135000;46000;490000;782000;1286000;432000;63000;228000;277200;779000;841000;349000;159000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;60479;34295;16367;12935;8220;4525;3578;2430;4078;8834;8870;5658;2673;3117;3013;1609;4081;1382;16790;33155;54787;16918;2130;7823;9765;34642;43893;19569;8498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;18622000;16763000;15957000;16100000;13951000;14598000;14552000;14481000;15910000;15930000;14260000;14650000;13980000;14010000;12650000;11150000;10540000;12730000;15550000;15990000;16990000;13429000;12803000;14448000;14516000;14873000;16437000;17220000;17580000;16535000;13666000;14971000;15488000;17202000;18375000;17062000;18020000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1054000;1476000;1492000;2414000;2776000;3182000;3572000;3630000;3620000;3910000;3610000;3970000;3780000;3460000;1570000;1870000;2140000;3290000;2850000;3470000;3840000;3753000;3815000;3916000;4472000;4555000;4680000;4980000;5380000;4707000;3460000;4093000;3870000;4022000;4593000;3906000;4292000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1871;Other industrial roundwood;5516;Production;m3;3131000;2910000;3114000;1476000;1097000;1141000;1038000;964000;1080000;1110000;1000000;940000;990000;930000;980000;930000;1300000;1265000;1385000;1410000;1440000;1379000;1405000;1414000;1534000;1206000;378000;513000;661000;325000;325000;325000;325000;325000;325000;325000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1871;Other industrial roundwood;5616;Import quantity;m3;13000;29500;8100;13200;600;10900;1000;6000;3000;3000;3000;26000;128000;34000;21000;20000;1300;41000;41000;2000;100;5000;7000;2000;400;200;6000;77000;439100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1871;Other industrial roundwood;5622;Import value;1000 USD;286;200;81;80;9;48;39;27;15;22;22;281;1511;483;381;499;21;922;922;71;3;242;226;84;24;32;663;3387;20863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1871;Other industrial roundwood;5916;Export quantity;m3;1419700;1065900;761400;418600;203100;263200;233700;211700;282300;299400;223000;172200;227000;217000;289000;188000;224000;262400;245000;285000;328000;207000;225000;226000;246000;232900;149000;117000;69500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1871;Other industrial roundwood;5922;Export value;1000 USD;21603;17959;12222;9334;6435;8623;6587;7469;9083;9139;9186;7259;12327;21420;38214;23074;29754;34417;32843;49646;62153;34285;33261;31328;35815;46268;30839;9481;8482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;2762000;2717000;2765000;1261000;857000;876000;837000;777000;900000;900000;800000;740000;800000;830000;860000;840000;1170000;1125000;1225000;1280000;1320000;1255000;1276000;1290000;1406000;1076000;315000;450000;611000;275000;275000;275000;275000;275000;275000;275000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;369000;193000;349000;215000;240000;265000;201000;187000;180000;210000;200000;200000;190000;100000;120000;90000;130000;140000;160000;130000;120000;124000;129000;124000;128000;130000;63000;63000;50000;50000;50000;50000;50000;50000;50000;50000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;13000;29500;8100;13200;600;10900;1000;6000;3000;3000;3000;26000;128000;34000;21000;20000;1300;41000;41000;2000;100;5000;7000;2000;400;200;6000;77000;439100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;286;200;81;80;9;48;39;27;15;22;22;281;1511;483;381;499;21;922;922;71;3;242;226;84;24;32;663;3387;20863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1419700;1065900;761400;418600;203100;263200;233700;211700;282300;299400;223000;172200;227000;217000;289000;188000;224000;262400;245000;285000;328000;207000;225000;226000;246000;232900;149000;117000;69500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;21603;17959;12222;9334;6435;8623;6587;7469;9083;9139;9186;7259;12327;21420;38214;23074;29754;34417;32843;49646;62153;34285;33261;31328;35815;46268;30839;9481;8482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;100;100;100;200;200;500;1200;1200;2500;1100;900;1100;1000;600;3000;3000;1000;1000;1000;2000;2000;2000;3000;3000;4674;2014;2000;2000;4000;4000;2300;2000;1684;1983;2633;2361;1745;1783;2264;2240;2792;2460;2736;2536;2957;2696;3490;2496;3347;4094;2921;5045;4783;5387;4467;4592
-67;'246;Finland;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;16;22;43;55;57;82;169;208;451;216;286;243;225;217;464;501;200;168;289;895;791;667;1245;1215;1301;652;686;1105;1830;2006;946;969;547;828;1146;1334;1318;1404;1902;2195;2868;2597;2723;2795;2758;2654;3235;1985;2262;2854.16;2310;3617;3738;4589;3997;5900
-67;'246;Finland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;96;70;100;100;100;600;100;3;3;34;4;31;14;10;11;3;1;12;32;58;70;90;89;37;125;165;526;305;217;148;93
-67;'246;Finland;1630;Wood charcoal;5922;Export value;1000 USD;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;45;19;34;48;60;88;16;3;2;9;3;20;15;12;14;4;1;12;66;86;81;112;86;36;169.46;275;413;264;196;132;113
-67;'246;Finland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12770000;17275000;16029000;16557282;17233624;16958667;15992000;16061000;16261000;14775000;10911339;13016087;13053949;12541000;13600508;14146493;13654035;14500273;14557912;14161553;14072688;13045000;15128864;14375653;13099000
-67;'246;Finland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078900;1118000;1229615;1545592;1422754;1407542;2110231;2546609;2634772;2745328;4089800;3444668;4300389;3832580;3768784;3557554;2903980;2935001;2904089;2844466;3262037;4146495;4673586;4659561;1888679;1423051
-67;'246;Finland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28177;31675;33009;43082;47200;62293;101653;110629;122602;178840;297607;182816;225154;237903;202573;198130;156281;115545;106781;108022.29;162735;190227;209119;214388;125816;124118
-67;'246;Finland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174200;152000;181844;243366;293089;245125;350860;511136;484236;551758;560393;451809;747708;645015;433647;375372;422527;217249;182956;199381;172782;237932;208234;147858;180698;156670
-67;'246;Finland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9269;7553;8353;11225;16550;16388;26662;34811;35728;42275;54061;45239;52421;46158;29231;26623;17618;13685;9211;9938.32;8189;12319;11343;7357;9969;10637
-67;'246;Finland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12770000;10786000;9414000;9958953;10433727;9667920;9157000;9321000;9379000;7956000;6601200;7671265;7759712;7424000;8096292;8422721;8340519;8871229;9450120;9097482;9121031;8541000;9653442;9302541;8567000
-67;'246;Finland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;11000;19000;10700;27100;19000;22500;50000;51000;118000;155000;130000;91800;98000;58000;206000;579000;776000;674000;334200;176100;222000;196000;154600;249100;339000;778000;254000;449000;369000;391000;505000;548600;647000;849153;1256268;1235917;1213701;1873399;2225609;2286581;2453713;3558369;2820466;3756131;3397120;3354242;3145061;2535700;2509111;2531054;2696174;3129313;3953819;4403563;4406601;1711528;1384816
-67;'246;Finland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;77;141;86;253;206;254;805;869;2544;3501;3865;2166;2343;1287;10119;26283;34210;26915;12305;7037;9668;6924;4305;11158;14443;46705;8096;15612;15275;15170;16678;19105;24754;27981;38867;43628;58559;96837;105743;115640;169463;280874;157729;205137;220346;191571;186710;147234;107963;100722;105672.64;160142;185638;202025;207166;118557;118924
-67;'246;Finland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;150500;153000;174700;133800;133000;94800;98000;92000;129000;107000;129000;114000;112000;240000;237000;102000;102000;139000;134800;171700;198000;203000;223500;202000;169000;185000;185000;156000;140000;147000;152000;154900;142000;152256;152974;154495;147597;131218;174083;138648;151523;193174;308938;334991;324636;258937;171636;173730;195052;182689;191445;116239;186042;189178;147832;180440;149695
-67;'246;Finland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;1264;1282;1413;1235;1481;1219;1470;1759;3387;3166;4100;3187;3213;8832;8743;4257;3586;4570;4503;7541;9681;10124;11434;11861;11909;10687;6893;6229;6906;12044;9530;8815;7165;7110;7186;7571;8499;8141;10143;7765;9340;16512;20242;18380;19726;14801;10590;11506;12996;9129;9599.74;6498;10484;10623;7343;9916;10029
-67;'246;Finland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6489000;6615000;6598329;6799897;7290747;6835000;6740000;6882000;6819000;4310139;5344822;5294237;5117000;5504216;5723772;5313516;5629044;5107792;5064071;4951657;4504000;5475422;5073112;4532000
-67;'246;Finland;1620;Wood residues;5616;Import quantity;m3;23900;19400;51000;431000;776100;866900;1065700;940900;708800;605400;749000;618200;1048000;1270000;1035000;798000;449000;211000;173000;184000;161000;283000;351000;272000;259900;345700;275000;204000;159000;63900;93000;62000;315000;197000;220000;349000;438000;530300;471000;380462;289324;186837;193841;236832;321000;348191;291615;531431;624202;544258;435460;414542;412493;368280;425890;373035;148292;132724;192676;270023;252960;177151;38235
-67;'246;Finland;1620;Wood residues;5622;Import value;1000 USD;250;200;550;4494;8280;8997;10454;8908;5914;6026;8502;7356;14159;18331;19720;16860;9466;4346;3130;3375;2714;5146;6787;4612;4585;6604;6037;3950;2689;1626;1390;1084;4483;3357;5601;7227;9000;9072;6921;5028;4215;3572;3734;4816;4886;6962;9377;16733;25087;20017;17557;11002;11420;9047;7582;6059;2349.65;2593;4589;7094;7222;7259;5194
-67;'246;Finland;1620;Wood residues;5916;Export quantity;m3;55800;68000;92900;124900;122900;96800;700;4000;600;900;900;900;10400;12000;22000;46000;18000;11000;15000;61000;69000;15000;17000;15000;13100;7200;9000;3000;6000;8000;13000;4000;3000;4000;5000;5000;9000;19300;10000;29588;90392;138594;97528;219642;337053;345588;400235;367219;142871;412717;320379;174710;203736;248797;22197;267;7936;56543;51890;19056;26;258;6975
-67;'246;Finland;1620;Wood residues;5922;Export value;1000 USD;336;408;558;778;806;882;7;30;3;10;10;10;88;109;105;203;212;111;217;2118;2255;187;204;177;134;73;162;137;265;306;155;61;98;81;146;109;262;454;388;1243;4039;8979;7889;18521;24668;27963;32935;37549;24997;34041;26432;14430;16033;6112;689;82;338.58;1691;1835;720;14;53;608
-67;'246;Finland;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177151;38235
-67;'246;Finland;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7259;5194
-67;'246;Finland;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;6975
-67;'246;Finland;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;608
-67;'246;Finland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347225;403750;458214;443000;551688;518850;484924
-67;'246;Finland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100048;121563;206913;399191;252138;180006;51137
-67;'246;Finland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3164.48;3799;7204;8356;9532;7743;4112
-67;'246;Finland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;4764;519;174;367;3;200
-67;'246;Finland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13.03;154;36;27;97;1;32
-67;'246;Finland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252370;270000;324000;312000;291000;344000;404926;362527;322000;365186;359629;354000
-67;'246;Finland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35871;68847;50830;65269;56284;108887;111003;116223;131333;238384;218145;149434
-67;'246;Finland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5642;10896;8838;9443;7317;12335.57;15565;17041;18994;30475;52263;54088
-67;'246;Finland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61584;78659;56190;69276;54228;65452;65149;57183;12717;20521;33782;5746
-67;'246;Finland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11011;14007;9719;8547;6095;7831.92;8946;7866;1820;2604;4896;1001
-67;'246;Finland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252370;270000;324000;302000;271000;324000;384926;342527;322000;365186;359629;354000
-67;'246;Finland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28271;60137;45970;59473;49907;86787;94519;100474;97254;196127;195645;141199
-67;'246;Finland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4485;9558;7534;8084;5956;10505.38;13426;14845;15946;27341;48415;52678
-67;'246;Finland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61184;78239;55970;59812;34466;37339;43215;29849;6260;12526;18117;483
-67;'246;Finland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10859;13849;9633;7585;4183;4763.06;6854;5028;1005;1864;2753;264
-67;'246;Finland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10000;20000;20000;20000;20000;0;0;0;0
-67;'246;Finland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;8710;4860;5796;6377;22100;16484;15749;34079;42257;22500;8235
-67;'246;Finland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157;1338;1304;1359;1361;1830.19;2139;2196;3048;3134;3848;1410
-67;'246;Finland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;420;220;9464;19762;28113;21934;27334;6457;7995;15665;5263
-67;'246;Finland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;158;86;962;1912;3068.85;2092;2838;815;740;2143;737
-67;'246;Finland;1872;Sawnwood;5516;Production;m3;8147000;7114000;6656000;7047000;6987000;6341000;6390400;6311200;6899000;7350000;7540000;7508000;7944000;7531000;4981000;5807000;7045000;7647000;9680000;10258000;8280000;7322000;8023000;8265000;7333000;7143000;7563000;7823000;7763000;7503000;6460000;7330000;8570000;10290000;9940000;9780000;11430000;12300000;12768000;13420000;12770000;13390000;13744795;13544060;12269061;12226940;12477411;9881000;8072490;9473000;9750000;9440000;10440000;10920000;10640000;11420000;11750000;11850000;11430000;10936000;11966000;11273000;10473000
-67;'246;Finland;1872;Sawnwood;5616;Import quantity;m3;12300;15600;22600;18500;24700;14000;15800;13400;20300;21000;19500;23200;21000;25000;19000;20000;21000;30000;28000;32000;21000;24000;26000;28000;22300;28000;36000;45000;56200;65100;60300;120000;158000;215000;181000;149000;242000;219600;289000;341398;279984;257427;338208;404093;511408;578214;626492;468359;521291;627303;492936;456726;354668;371320;426690;513456;565200;609235;595159;600101;577897;333764;50492
-67;'246;Finland;1872;Sawnwood;5622;Import value;1000 USD;1652;1696;1273;1725;2125;2163;2423;2023;3266;3441;3109;4152;4782;7442;5807;6277;6908;8954;14094;16278;11257;10126;11132;11851;9560;13064;18119;31683;35764;40186;29949;39379;42241;55155;63221;55057;73138;67954;71512;78138;68231;61909;86271;102703;128201;147585;214360;159338;119217;156566;142109;114762;95148;99855;87838;95921;119723.51;143341;129482;130193;189729;124678;40718
-67;'246;Finland;1872;Sawnwood;5916;Export quantity;m3;5188200;4743600;4591500;4676700;4123300;3789500;3481000;3962600;4477400;4702000;4785200;4911300;5256000;4324000;2857000;3850000;4355000;5470000;6638000;6939000;5411000;4600000;4932100;4821000;4898300;4555300;4894000;5052000;4555000;4176300;4266500;4653000;6220000;7207000;7377000;7036000;7535000;8226900;8292000;8430945;8135249;8186950;8168512;8226324;7663408;7727756;7080700;5991910;5108621;5838119;6114842;6450783;7153815;7481010;7880855;8679498;9376784;8701355;8969920;8217919;8735857;8576479;8385093
-67;'246;Finland;1872;Sawnwood;5922;Export value;1000 USD;198591;174629;175100;195093;194308;175542;150681;162682;197867;219967;236753;252891;379412;573693;327876;444006;593637;707834;1003851;1162521;915062;657510;704364;718538;649165;730260;941047;1030016;1006801;1168744;1017157;1033011;1087883;1553865;1756718;1473990;1668477;1552819;1508357;1434414;1268689;1362733;1652654;1766296;1616426;1825189;2246120;1697697;1240621;1557484;1645647;1596600;1892550;2045902;1723711;1814956;2046420.46;2166338;1937076;1774982;3043190;2729964;2002882
-67;'246;Finland;1632;Sawnwood, coniferous;5516;Production;m3;7996000;6993500;6544500;6922500;6703000;6105000;6147200;6098100;6693500;7155000;7362500;7372500;7831000;7427500;4903000;5733000;6947500;7577500;9589000;10166000;8195000;7241000;7939000;8162500;7256500;7051500;7476500;7736500;7676500;7416500;6430000;7280000;8500000;10220000;9860000;9710000;11360000;12240000;12708000;13320000;12670000;13280000;13645000;13460000;12190000;12145000;12400000;9800000;8000000;9400000;9700000;9400000;10400000;10880000;10600000;11370000;11705000;11810000;11400000;10900000;11900000;11200000;10400000
-67;'246;Finland;1632;Sawnwood, coniferous;5616;Import quantity;m3;800;3500;13300;7200;10700;500;1300;600;1100;1000;800;900;1000;1000;1000;1000;3000;4000;3000;3000;1000;3000;4000;3000;2000;3800;5000;4000;14600;14500;26300;81000;109000;153000;129000;91000;176000;151000;221000;262927;205187;190843;272329;341376;448393;515465;561210;422845;496388;600760;461756;430162;330645;329320;404317;494000;537451;576623;562135;569549;547269;300017;23903
-67;'246;Finland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;87;132;131;140;234;84;188;83;171;264;145;152;109;203;145;180;390;504;572;742;530;505;459;434;368;406;530;1591;3128;3998;3479;7826;8363;15444;17246;11751;21316;17346;23469;27967;22543;23133;42624;59377;78212;94877;145149;106336;95427;129735;105025;88094;71963;76753;69850;78917;99930.97;121839;107092;104546;158156;85731;10910
-67;'246;Finland;1632;Sawnwood, coniferous;5916;Export quantity;m3;5146900;4711350;4559450;4624500;4063900;3730900;3417200;3898900;4398400;4650500;4741800;4858400;5195500;4289500;2829000;3824000;4321500;5428500;6597500;6902500;5378000;4576500;4908550;4804000;4881850;4541500;4877500;5032000;4537000;4155950;4255000;4642000;6188000;7158000;7343000;7009000;7509000;8203800;8269000;8405359;8113512;8167234;8152034;8208668;7648746;7712413;7065690;5980787;5099188;5824166;6101435;6437347;7140117;7464390;7866917;8661000;9357798;8685340;8954937;8197932;8715693;8553927;8365596
-67;'246;Finland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;197265;173469;173860;193103;191765;172983;147923;160027;194312;217331;233768;248838;373700;568262;319441;438594;588349;700553;995949;1154099;908257;652373;699334;714891;645992;726598;936492;1023219;998363;1159994;1011611;1027496;1077323;1536430;1740890;1460130;1655030;1543041;1498742;1424367;1260797;1355187;1644619;1757295;1608730;1816446;2235894;1689345;1234526;1550823;1637751;1590314;1885883;2037676;1717294;1805606;2038574.93;2158573;1928396;1764750;3031311;2716905;1992428
-67;'246;Finland;1633;Sawnwood, non-coniferous;5516;Production;m3;151000;120500;111500;124500;284000;236000;243200;213100;205500;195000;177500;135500;113000;103500;78000;74000;97500;69500;91000;92000;85000;81000;84000;102500;76500;91500;86500;86500;86500;86500;30000;50000;70000;70000;80000;70000;70000;60000;60000;100000;100000;110000;99795;84060;79061;81940;77411;81000;72490;73000;50000;40000;40000;40000;40000;50000;45000;40000;30000;36000;66000;73000;73000
-67;'246;Finland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11500;12100;9300;11300;14000;13500;14500;12800;19200;20000;18700;22300;20000;24000;18000;19000;18000;26000;25000;29000;20000;21000;22000;25000;20300;24200;31000;41000;41600;50600;34000;39000;49000;62000;52000;58000;66000;68600;68000;78471;74797;66584;65879;62717;63015;62749;65282;45514;24903;26543;31180;26564;24023;42000;22373;19456;27749;32612;33024;30552;30628;33747;26589
-67;'246;Finland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1565;1564;1142;1585;1891;2079;2235;1940;3095;3177;2964;4000;4673;7239;5662;6097;6518;8450;13522;15536;10727;9621;10673;11417;9192;12658;17589;30092;32636;36188;26470;31553;33878;39711;45975;43306;51822;50608;48043;50171;45688;38776;43647;43326;49989;52708;69211;53002;23790;26831;37084;26668;23185;23102;17988;17004;19792.54;21502;22390;25647;31573;38947;29808
-67;'246;Finland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;41300;32250;32050;52200;59400;58600;63800;63700;79000;51500;43400;52900;60500;34500;28000;26000;33500;41500;40500;36500;33000;23500;23550;17000;16450;13800;16500;20000;18000;20350;11500;11000;32000;49000;34000;27000;26000;23100;23000;25586;21737;19716;16478;17656;14662;15343;15010;11123;9433;13953;13407;13436;13698;16620;13938;18498;18986;16015;14983;19987;20164;22552;19497
-67;'246;Finland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1326;1160;1240;1990;2543;2559;2758;2655;3555;2636;2985;4053;5712;5431;8435;5412;5288;7281;7902;8422;6805;5137;5030;3647;3173;3662;4555;6797;8438;8750;5546;5515;10560;17435;15828;13860;13447;9778;9615;10047;7892;7546;8035;9001;7696;8743;10226;8352;6095;6661;7896;6286;6667;8226;6417;9350;7845.53;7765;8680;10232;11879;13059;10454
-67;'246;Finland;1634;Veneer sheets;5516;Production;m3;;4000;4000;4000;4000;4000;4000;3100;2600;3100;3200;3000;14000;14000;14000;16000;21000;17000;18000;18000;18000;20000;23000;26000;18000;18000;18000;18000;20000;20000;20000;21000;50000;74000;74000;74000;74000;79000;74000;83000;74000;70000;84000;79000;79000;89000;66000;70000;36000;47000;47000;47000;53000;58000;57000;57000;57000;70000;85000;75000;170000;184000;184000
-67;'246;Finland;1634;Veneer sheets;5616;Import quantity;m3;3000;3000;3500;3700;4300;4200;4700;4500;5800;7000;7900;6300;9000;8000;7000;7000;6000;11700;8000;8000;6000;5000;5000;6000;4300;4000;4000;5000;6000;6400;5000;4000;5000;6000;9000;8000;13000;6100;9000;7000;14366;21617;10610;9671;11484;12466;13921;41247;20937;18464;20355;26423;17748;8020;10857;11237;20307;21739;7668;6764;9084;11241;9122
-67;'246;Finland;1634;Veneer sheets;5622;Import value;1000 USD;1630;1678;1890;2189;2636;2875;3531;3218;4403;5159;4508;5298;9017;9477;8014;8764;6735;6704;9413;11269;8344;6719;6878;7295;5917;6056;7622;8457;9878;9867;6930;6540;5374;9042;10398;7891;9724;9800;12237;10237;10869;10475;12123;14201;15267;15948;21645;31817;19311;22912;28081;26616;14421;6824;7444;6957;9895.33;11529;7542;5956;7102;13111;9887
-67;'246;Finland;1634;Veneer sheets;5916;Export quantity;m3;1000;1100;1100;1600;2300;2600;2400;2800;2700;2600;4700;4200;5000;9000;7000;8000;9000;9000;13000;16000;13000;14000;16000;16000;16400;18600;21000;21000;25000;24700;23400;20000;40000;68000;61000;60000;77000;84400;80000;90000;96865;75386;78342;77008;71202;77536;73282;62450;43821;47144;47223;45958;46613;46930;51618;57156;58433;67754;79674;69997;86899;86185;77758
-67;'246;Finland;1634;Veneer sheets;5922;Export value;1000 USD;717;519;495;714;1154;1394;1006;1022;1076;956;1309;1330;1525;2803;2582;2884;3932;4776;7014;9417;7057;7503;7238;6978;6643;9003;11134;12082;14160;15796;14666;16726;17472;29746;35875;32311;35059;39485;39545;39118;39910;36307;46966;53401;51832;55503;58765;56905;32526;32942;34638;27495;29625;30597;28432;31187;32796.91;40632;52690;50621;64014;65570;57269
-67;'246;Finland;1873;Wood-based panels;5516;Production;m3;720000;762000;825000;892000;990000;1101000;1161200;1285700;1368800;1456000;1538000;1776000;1987000;1775000;1317000;1401000;1257000;1452000;1711000;1746000;1533000;1471000;1423000;1347000;1297000;1315000;1376000;1429000;1498000;1317000;971000;917000;1174000;1295000;1370000;1491000;1601000;1598000;1677000;1792000;1722000;1793000;1845000;1945000;1906000;1985000;1936000;1653000;1070000;1300000;1280000;1220000;1286000;1300000;1257000;1247000;1352000;1342000;1227000;1127000;1233194;1207204;967204
-67;'246;Finland;1873;Wood-based panels;5616;Import quantity;m3;300;600;400;1800;2700;1932;1905;805;1027;1205;1505;2305;2500;5500;7305;4505;5505;6000;8400;12100;6500;12200;13200;20400;33000;31900;44700;54900;81800;90500;82200;78931;73104;74000;90000;85000;119000;135500;149000;190000;219198;239788;249837;271184;301726;349576;387313;369971;312187;379633;401874;394435;349271;355470;339331;374975;381227;401677;381359;408821;417371;371335;256837
-67;'246;Finland;1873;Wood-based panels;5622;Import value;1000 USD;46;84;52;238;295;207;185;116;247;332;314;468;943;1278;1478;1473;1878;1678;3410;5608;3578;3614;4512;5871;5282;7660;13323;15720;26318;31930;29876;22123;15838;22743;28237;32734;34190;46344;46564;51937;61252;75595;97501;118666;134089;149855;192462;212666;142423;169322;205818;192340;186054;177631;144308;139505;148165.23;171392;154325;160185;208068;202017;146325
-67;'246;Finland;1873;Wood-based panels;5916;Export quantity;m3;520600;554300;579900;642800;656100;736800;788300;899300;983600;1010500;1011500;1163200;1291800;882200;717500;750732;674700;887200;957800;1025200;977000;843300;751800;738700;715000;774200;776600;790400;808900;754200;527400;490697;802000;901000;960000;1096000;1122000;1089200;1195000;1291000;1311695;1424592;1453329;1550321;1484804;1545092;1470207;1224792;774044;969454;999637;929160;990537;1066180;1048291;1005442;1107975;1084848;985881;890206;1031426;971748;783174
-67;'246;Finland;1873;Wood-based panels;5922;Export value;1000 USD;55607;59022;64491;74213;79769;81217;88232;95579;115004;122806;129374;158666;214474;204330;149874;194337;209065;262967;347735;427066;372049;317305;286224;279921;254818;333089;426759;455275;469137;582479;414993;387512;424363;521510;633471;604997;599085;612708;587976;559144;539836;584969;693786;804168;824447;899167;999124;953839;503900;580664;671424;608467;669013;740789;620707;593217;663582.84;690137;590590;522775;687773;755071;684112
-67;'246;Finland;1640;Plywood and LVL;5516;Production;m3;406000;426000;468000;511000;545000;550000;573400;616300;684500;705600;672200;701500;730000;568000;415000;491000;464000;549000;639000;639000;603000;596000;580000;592000;556000;597000;606000;610000;657000;643000;477000;462000;621000;700000;778000;869000;987000;992000;1076000;1170000;1140000;1240000;1300000;1350000;1305000;1415000;1410000;1273000;800000;980000;1010000;1020000;1090000;1160000;1150000;1140000;1240000;1230000;1090000;990000;1130000;1110000;870000
-67;'246;Finland;1640;Plywood and LVL;5616;Import quantity;m3;200;200;200;200;300;300;300;300;400;1000;1100;2000;2000;1000;1000;3000;3000;4000;6000;9000;3000;4000;4000;5000;5000;5600;6000;21000;12000;17800;27200;17000;16000;18000;22000;21000;23000;26000;23000;33000;59565;70870;67434;75767;96024;107293;116482;121838;90748;109436;121843;111033;91977;88510;81670;93463;97331;107839;118257;127825;121649;87188;53865
-67;'246;Finland;1640;Plywood and LVL;5622;Import value;1000 USD;36;39;39;62;75;74;95;86;197;315;278;416;830;662;762;1075;1334;1223;2652;4532;2435;2397;2952;3545;2552;3666;4615;6384;8799;10621;14119;7611;3929;5771;6623;7654;8265;10416;7982;11407;19552;25828;28334;35435;47828;51060;72742;85042;46738;57788;74294;64304;60371;57128;43203;43507;51443.69;63609;62370;64561;85983;67686;45990
-67;'246;Finland;1640;Plywood and LVL;5916;Export quantity;m3;328200;356200;383000;438300;458500;457400;483200;540600;611300;602200;568600;590500;597000;386000;339000;424000;387900;494600;536000;531000;520000;504000;480000;480000;455600;482900;495000;496000;512000;514700;347000;348000;542000;626000;667000;795000;861000;831900;939000;1006000;1009296;1116958;1172010;1234380;1173052;1250394;1229154;1083032;682540;833495;863468;855239;920401;998350;980743;939950;1038868;1012094;918461;828478;955493;900051;723623
-67;'246;Finland;1640;Plywood and LVL;5922;Export value;1000 USD;41359;44215;49294;57465;62955;65510;71200;76285;92978;97796;100544;116284;152213;143344;99932;153977;170759;210972;280593;332333;289485;258698;239405;238883;212781;278424;357704;374827;392075;509537;359486;342805;371913;456977;548067;529236;532044;546632;532563;506483;484633;527247;629658;729556;748456;822155;918332;896490;469541;538071;620528;576033;636432;708518;593180;568137;637298.45;660397;563348;496552;648520;711899;643531
-67;'246;Finland;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254000;254000
-67;'246;Finland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;367
-67;'246;Finland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;315
-67;'246;Finland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255195;241827
-67;'246;Finland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187504;184358
-67;'246;Finland;1646;Particle board and OSB (1961-1994);5516;Production;m3;99000;118000;120000;142000;214000;196000;230800;291700;318300;371000;485000;681000;861000;844000;667000;657000;572000;673000;800000;809000;707000;636000;605000;541000;571000;581000;610000;657000;671000;526000;385000;354000;439000;477000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;100;100;700;500;1000;1500;400;100;100;300;200;400;200;1000;1000;2000;1700;2000;2000;2000;5000;3000;4000;3500;4100;4000;5000;18000;24600;21000;14000;13000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;10;21;8;109;120;95;83;24;14;7;14;24;96;531;418;358;446;393;690;897;886;822;727;926;941;1436;1762;2090;6799;9934;7672;5405;3305;4684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;46000;45900;35600;39900;53900;61100;74100;119000;138000;167600;206000;333800;480000;334000;276000;240000;207000;290000;318000;374000;342000;239000;189000;180000;191100;231600;224000;229000;226000;183700;132000;95000;195000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;2919;2898;2016;2448;3282;3737;4555;6603;8622;10156;13042;21128;39001;35875;31491;26145;23360;34284;42857;59626;51447;36688;26635;22523;23723;34555;41976;47599;47273;45886;34631;23173;30944;39324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475000;510000;475000;455000;439000;460000;430000;413000;399000;448000;452000;440000;400000;270000;170000;220000;170000;100000;96000;93000;92000;92000;92000;92000;88000;88000;54194;53594;53594
-67;'246;Finland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;13000;35000;25000;32000;42000;45838;56571;58808;48695;49304;50548;74073;60805;57930;73142;75924;95311;87857;77630;79833;79169;74636;79856;76387;75958;81321;87105;71351
-67;'246;Finland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5222;5535;5166;8135;9863;12195;13504;12519;17949;17909;16530;17535;26146;25737;20380;25692;33165;39700;37322;32130;27226;25138;24583.64;28517;26212;26137;31440;38978;34400
-67;'246;Finland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224000;238000;196000;184100;183000;203000;217803;218160;197982;241273;229439;223756;182446;88381;48611;92015;86385;26052;24289;22470;20762;20968;20953;24251;20561;20051;29624;25876;21953
-67;'246;Finland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58963;52561;44742;43010;34466;32881;35205;37071;39163;49291;50049;52618;54884;31977;16303;23839;26718;9231;8786;8727;6876;6903;7399.12;9061;7795;7277;10697;11333;10122
-67;'246;Finland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;7000;8000;10056;4580;5369;4519;2385;3264;621;1730;3164;8183;9310;10177;10463;15840;21011;29468;37950;45191;43432;48709;47339;56485;42095
-67;'246;Finland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;792;855;1025;2501;3921;1695;1685;2339;505;739;1034;2758;4005;3730;4360;6699;6819;7766;10504.02;14877;12882;12897;20595;23048;13941
-67;'246;Finland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;0;1000;191;936;695;401;297;589;56;1;2;2;85;376;60;60;59;75;89;90;152;140;66;262;180
-67;'246;Finland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;80;130;74;309;348;225;118;176;17;8;2;1;41;151;63;46;45;31;41.63;40;65;60;44;137;73
-67;'246;Finland;1874;Fibreboard;5516;Production;m3;215000;218000;237000;239000;231000;355000;357000;377700;366000;379400;380800;393500;396000;363000;235000;253000;221000;230000;272000;298000;223000;239000;238000;214000;170000;137000;160000;162000;170000;148000;109000;101000;114000;118000;117000;112000;139000;151000;162000;162000;152000;140000;146000;147000;149000;130000;126000;110000;100000;100000;100000;100000;100000;47000;15000;15000;20000;20000;49000;49000;49000;43610;43610
-67;'246;Finland;1874;Fibreboard;5616;Import quantity;m3;;300;100;900;1900;632;105;105;527;105;105;105;100;4300;5305;505;505;300;400;1100;1500;3200;6200;11400;24500;22200;34700;28900;51800;48100;34000;47931;44104;46000;46000;51000;61000;80100;87000;107000;103739;107767;118226;142203;154013;188471;196137;185598;160345;188872;194797;177914;158974;173490;156817;172875;171310;168791;143283;156329;167062;140557;89526
-67;'246;Finland;1874;Fibreboard;5622;Import value;1000 USD;;24;5;67;100;38;7;6;36;10;22;28;17;85;298;40;98;62;68;179;257;395;833;1400;1789;2558;6946;7246;10720;11375;8085;9107;8604;12288;16392;19545;20759;27231;27927;27480;27171;34747;47297;63627;68046;78921;93069;101148;74271;83084;94354;84606;84001;81674;67060;63094;61633.88;64389;52861;56590;70050;72305;51994
-67;'246;Finland;1874;Fibreboard;5916;Export quantity;m3;146400;152200;161300;164600;143700;218300;231000;239700;234300;240700;236900;238900;214800;162200;102500;86732;79800;102600;103800;120200;115000;100300;82800;78700;68300;59700;57600;65400;70900;55800;48400;47697;65000;75000;69000;63000;65000;72800;73000;81000;84405;88538;82642;74267;82016;70353;58551;53378;42891;43942;49699;47493;45787;45300;46727;44449;48065;48413;46707;41537;46243;45559;37418
-67;'246;Finland;1874;Fibreboard;5922;Export value;1000 USD;11329;11909;13181;14300;13532;11970;12477;12691;13404;14854;15788;21254;23260;25111;18451;14215;14946;17711;24285;35107;31117;21919;20184;18515;18314;20110;27079;32849;29789;27056;20876;21534;21506;25209;26441;23200;22299;22948;20867;19650;19924;20342;24617;25096;25824;24218;25891;25364;18054;18753;24137;23052;23732;23498;20606;18146;18843.64;20639;19382;18886;28512;31702;30386
-67;'246;Finland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;66000;93000;105000;114500;114500;99000;92000;89000;89500;88000;70000;59000;50000;50000;40000;45000;45000;45000;47000;15000;15000;20000;20000;49000;49000;49000;43610;43610
-67;'246;Finland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;8000;10000;15300;19000;23000;20308;23335;33175;42336;43314;45748;39131;40536;32602;40969;35956;30503;31479;26730;30255;27810;25348;25222;21850;21089;25539;20569;16245
-67;'246;Finland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6493;8507;8394;10211;12732;14190;13525;18342;28504;39918;42595;44824;35452;41984;32195;37128;37628;30399;32420;26821;25652;21720;20348.62;19663;14889;15188;15545;13047;11803
-67;'246;Finland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;56000;57000;66800;64000;71000;74496;71822;68391;64309;68593;54867;45165;36381;32518;33589;40166;41528;40736;43950;45676;43454;46999;47017;44487;36996;38744;41320;33290
-67;'246;Finland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23815;20785;20000;21508;19575;18231;18431;17801;21669;22431;23248;21367;21787;19811;14647;15599;21000;21188;21421;22361;20140;17719;18278.72;19692;17514;15463;22205;27866;26234
-67;'246;Finland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;27000;34000;37600;38000;42000;46688;49038;46402;52765;56844;65307;118491;113764;100750;117661;124565;125055;106024;113320;98974;121048;122394;119698;102601;115530;108848;86320;57275
-67;'246;Finland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8077;8582;10137;11332;9810;8744;9539;12020;13547;16283;16892;20543;45539;46773;32347;36775;45251;45007;41704;41825;32672;34609;35068.56;38085;33128;36105;48602;52591;36099
-67;'246;Finland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;1700;1000;2000;2526;4786;4225;2709;1665;1547;2827;5455;1555;1237;1083;572;1451;930;467;449;879;1225;2121;4448;6765;3864;3752
-67;'246;Finland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1907;1864;1732;678;392;614;847;1555;1886;1553;998;956;1200;2107;915;602;556;280;1042;908;197;192;495.28;902;1844;3391;6091;3760;4028
-67;'246;Finland;1650;Other fibreboard;5516;Production;m3;74000;66000;69000;70000;62000;188000;192000;186000;172000;170400;162400;162800;160000;152000;112000;143000;123000;121000;145000;157000;93000;133000;131000;111000;71000;61000;68000;68000;72000;60000;47000;34000;38000;37000;37000;40000;40000;40000;41500;41500;53000;48000;57000;57500;61000;60000;67000;60000;50000;60000;55000;55000;55000;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;4000;5200;400;400;100;300;1000;1400;2800;4800;7600;17200;11200;18000;16800;24800;23500;13000;28000;19000;11000;8000;16000;17000;27200;30000;42000;36743;35394;38649;47102;53855;77416;38515;31298;26993;30242;34276;22356;21471;33440;27588;24017;23568;23871;18832;19710;32675;33668;16006
-67;'246;Finland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;35;269;11;69;8;36;132;196;239;395;570;788;661;1906;2319;3229;4115;2024;3016;1853;1445;1822;2456;2228;5688;5385;4546;4107;4385;5246;7426;8559;13554;12078;12391;9729;9181;11475;9200;9877;13028;8736;6765;6216.7;6641;4844;5297;5903;6667;4092
-67;'246;Finland;1650;Other fibreboard;5916;Export quantity;m3;40400;34600;39200;39000;35300;108800;115600;116000;102400;109600;96000;88400;71200;43200;26800;35332;35000;45400;30100;40000;40000;46800;27600;24800;12400;10400;3200;6400;3700;900;4400;2145;1000;3000;3000;3000;4000;4300;8000;8000;7383;11930;10026;7249;11758;13939;10559;11542;8818;9116;8450;5393;3600;420;584;546;187;171;99;93;734;375;376
-67;'246;Finland;1650;Other fibreboard;5922;Export value;1000 USD;3468;3331;3712;3866;3815;3035;3260;3181;2962;3199;3066;3143;3460;2700;2007;2525;3282;3465;3002;4978;4728;4125;2800;2216;1788;1018;408;1533;1245;190;557;440;340;531;719;551;567;762;900;805;646;986;1062;1112;1578;1895;2904;3446;2492;2552;2581;1584;1269;229;269;235;69.64;45;24;32;216;76;124
-67;'246;Finland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;141000;152000;168000;169000;169000;167000;165000;191700;194000;209000;218400;230700;236000;211000;123000;110000;98000;109000;127000;141000;130000;106000;107000;103000;99000;76000;92000;94000;98000;88000;62000;67000;76000;81000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;300;100;900;1900;632;105;105;527;105;105;105;100;300;105;105;105;200;100;100;100;400;1400;3800;7300;11000;16700;12100;27000;24600;21000;19931;25104;35000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;24;5;67;100;38;7;6;36;10;22;28;17;50;29;29;29;54;32;47;61;156;438;830;1001;1897;5040;4927;7491;7260;6061;6091;6751;10843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;106000;117600;122100;125600;108400;109500;115400;123700;131900;131100;140900;150500;143600;119000;75700;51400;44800;57200;73700;80200;75000;53500;55200;53900;55900;49300;54400;59000;67200;54900;44000;45552;64000;72000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;7861;8578;9469;10434;9717;8935;9217;9510;10442;11655;12722;18111;19800;22411;16444;11690;11664;14246;21283;30129;26389;17794;17384;16299;16526;19092;26671;31316;28544;26866;20319;21094;21166;24678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1879;Total fibre furnish;5510;Production;t;4171000;4028000;4424000;4912000;5168000;5354000;5344000;5569000;5924000;6091000;5899000;6237000;6639000;6571000;5153000;5381000;5264000;6093000;7067000;7281000;7412000;6802000;7267000;8137000;8179000;8190000;8636000;9226000;9332000;9198000;8859000;8991000;9804000;10434000;10583000;10256000;11696000;11988000;12275000;12653000;11908000;12494000;12697000;13410000;11925000;13940000;13701000;12437000;9540000;11245000;11097000;10813650;10980000;10834386;10886000;11080000;11324000;12280000;11820000;10680000;11420000;10970000;9700000
-67;'246;Finland;1879;Total fibre furnish;5610;Import quantity;t;100;100;100;200;800;1800;3500;1900;9900;33900;27800;8400;6200;6900;7800;8700;7100;14400;10500;9500;17100;19600;25100;62000;46300;63300;96000;91000;128000;110500;138100;289502;174731;206000;163000;110000;80000;85800;116000;132068;170849;131381;169521;216423;255018;299311;400432;442886;380753;445628;516831;545871;461509;446560;452477;495224;558344;586389;458963;286462;212324;348311;302295
-67;'246;Finland;1879;Total fibre furnish;5622;Import value;1000 USD;22;22;4;25;58;144;216;271;1254;2325;2342;1153;1007;1932;2175;2364;1816;2745;3667;4308;6481;6490;7011;12412;11815;18220;37471;32523;36934;41484;51552;101255;34339;53714;86420;37239;25581;27117;41493;57645;71487;46123;69907;91429;116718;156980;230718;294919;180149;304939;368186;337666;285854;262295;257637;260872;295390.47;370130;246579;124407;115625;232356;168368
-67;'246;Finland;1879;Total fibre furnish;5910;Export quantity;t;159900;150300;172800;174500;149000;130100;117500;2016100;1989900;1804600;1281000;1428300;1494600;1172700;812200;964756;1054600;1400500;1711200;1792100;1541500;1315000;1444000;1493000;1486100;1450100;1553000;1646000;1622000;1420400;1381400;1349845;1533751;1556033;1371033;1616033;1836033;1710400;1975000;1793765;1799867;2242304;2489737;2462020;2204535;2956707;2699708;2377822;1674071;2320088;2643098;2776481;3068644;2970841;3077030;3445304;3586026;3970588;4427736;4231049;4321814;4076076;4516879
-67;'246;Finland;1879;Total fibre furnish;5922;Export value;1000 USD;9325;8660;10038;10139;9330;8307;7304;208963;221312;243767;187253;204492;254906;291324;304215;345314;335383;383615;626060;815267;713259;537820;505048;610326;493814;575697;817668;1008092;1128257;931943;669582;651515;537357;866311;868830;775436;829699;715419;820758;989527;782646;876590;1095114;1193896;1051181;1567236;1685251;1581447;803587;1650109;1944872;1674521;1981163;2035587;1893774;1847908;2089435.12;2986567;2559957;2038183;2824748;3030956;2944951
-67;'246;Finland;1878;Pulp for paper;5510;Production;t;4085000;3959000;4346000;4820000;5062000;5236000;5236000;5455000;5820000;5951000;5764000;6107000;6491000;6390000;4992000;5232000;5092000;5898000;6851000;7037000;7142000;6522000;6979000;7827000;7837000;7827000;8339000;8842000;8954000;8765000;8413000;8551000;9348000;9962000;10088000;9693000;11089000;11355000;11579000;11919000;11168000;11729000;11948000;12614000;11134000;13115000;12856000;11624000;8815000;10508000;10362000;10109650;10270000;10221386;10250000;10520000;10683000;11660000;11200000;10120000;10960000;10520000;9230000
-67;'246;Finland;1878;Pulp for paper;5610;Import quantity;t;100;100;100;200;800;1800;3500;1900;9900;6900;9800;6400;4200;5900;3600;4500;5000;5400;8700;8500;11100;12100;16100;28000;24300;37300;59000;40000;43000;55500;76100;161719;61636;84000;97000;57000;48000;52300;77000;91593;133830;95796;133854;167963;223992;267310;358741;395867;346005;415066;470746;496390;406748;394410;405721;420286;470593;473963;344067;218618;145036;257394;233003
-67;'246;Finland;1878;Pulp for paper;5622;Import value;1000 USD;22;22;4;25;58;144;216;271;1254;1134;1370;1075;929;1837;1774;1963;1707;2127;3490;4211;5510;5160;5509;9771;8734;15096;31763;24339;21621;29845;42764;86443;25014;42301;72549;29100;21075;23238;36644;52267;66797;41270;63079;82769;111279;150988;221736;283147;173080;296824;355194;325766;274282;251437;249453;248706;278497.79;349619;225097;110855;99696;212777;158312
-67;'246;Finland;1878;Pulp for paper;5910;Export quantity;t;159900;150300;172800;174500;149000;130100;117500;2016100;1989900;1804600;1280000;1427300;1490600;1164800;807400;947456;1043600;1393200;1701700;1761200;1520000;1300000;1427000;1428000;1415100;1383100;1508000;1584000;1566000;1370400;1316400;1313186;1489316;1526033;1336033;1576033;1787033;1634500;1882000;1681266;1699484;2114380;2385112;2356764;2037795;2762162;2552670;2225842;1457792;2158822;2475177;2616072;2931591;2870381;2984881;3363720;3498015;3901917;4362040;4130560;4174794;3957278;4422607
-67;'246;Finland;1878;Pulp for paper;5922;Export value;1000 USD;9325;8660;10038;10139;9330;8307;7304;208963;221312;243767;187231;204466;254620;289800;303744;342103;333933;382840;624928;810573;709390;535325;502608;605241;486017;562829;807904;993727;1115514;914228;653331;643153;530643;861355;859792;766862;821095;705569;806254;969742;763653;851736;1075729;1171771;1026361;1544087;1661289;1554921;780518;1626771;1913101;1649298;1959152;2017694;1879192;1833340;2073069.68;2972822;2546900;2022918;2800286;3008499;2929169
-67;'246;Finland;1875;Wood pulp;5510;Production;t;4297000;4191000;4590000;5093000;5344000;5498000;5508000;5704000;6062000;6233000;6002000;6297000;6690000;6603000;5188000;5395000;5256000;6088000;7050000;7246000;7344000;6714000;7163000;8031000;7977000;7929000;8467000;8994000;9118000;8886000;8505000;8643000;9440000;10054000;10180000;9785000;11181000;11447000;11669000;12009000;11168000;11729000;11948000;12614000;11134000;13115000;12856000;11624000;8815000;10508000;10362000;10234650;10520000;10471386;10450000;10920000;11098000;12060000;11600000;10520000;11360000;10920000;9630000
-67;'246;Finland;1875;Wood pulp;5610;Import quantity;t;100;100;100;300;1600;2400;3600;2000;10600;7200;10400;6800;5300;7000;10600;12400;6400;14300;17700;36300;37000;55000;31000;48000;62300;74900;92000;73000;82000;80500;94100;211126;99136;132000;145000;86300;82000;81600;133000;143767;186413;147365;186046;220433;282406;326722;405481;443646;350971;419322;472543;497228;410011;396020;407750;424320;474286;478556;347306;223540;149787;259269;233682
-67;'246;Finland;1875;Wood pulp;5622;Import value;1000 USD;22;22;4;39;208;250;225;280;1359;1199;1481;1160;1202;2110;4733;5251;2326;5824;7630;20015;20003;26182;11673;18557;24244;33727;51452;46911;52601;51308;57670;120019;62670;81495;135839;63784;60802;61750;66363;87485;101548;74135;97043;127012;155389;193359;263548;335039;177098;302397;355368;325117;279036;251879;251152;252151;280823.98;354039;228211;116371;104247;212256;156917
-67;'246;Finland;1875;Wood pulp;5910;Export quantity;t;341700;351500;380500;421800;391800;341300;345800;2224100;2216600;2056900;1506900;1610600;1659900;1330300;943500;1083372;1180600;1531200;1865300;1938800;1685000;1458000;1572000;1561000;1534100;1468800;1599000;1680000;1660000;1467700;1349900;1323404;1489990;1526533;1336033;1576033;1785033;1634600;1882000;1681249;1698545;2114481;2384984;2358802;2036796;2761445;2551642;2224871;1457536;2158736;2475167;2710392;3073492;3004941;3136303;3506084;3655111;4044950;4518365;4333005;4475260;3963438;4422730
-67;'246;Finland;1875;Wood pulp;5922;Export value;1000 USD;38767;40236;42003;51121;52403;43823;44194;239687;256614;290042;226356;243136;294476;347632;377204;405284;394433;440192;706585;922855;820908;635971;582813;683888;546238;616925;878721;1084626;1213104;999728;677425;649067;531022;861638;859792;766862;820651;705608;806250;969733;763411;851873;1075690;1173225;1025919;1543742;1660665;1554255;780339;1626725;1913092;1740785;2070927;2121035;1990169;1944119;2204754.03;3093122;2654336;2134789;3058156;3012473;2929354
-67;'246;Finland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3141000;3510000;3280000;2840000;2640000;2840000;2230000
-67;'246;Finland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7932;1775;5466;9326;9462;1465;709
-67;'246;Finland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4110.03;1166;1995;3122;4505;783;875
-67;'246;Finland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287881;274148;290230;393151;352735;332363;192266
-67;'246;Finland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116468.83;110349;113841;150090;148036;153590;100057
-67;'246;Finland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1369000;1117000;1231000;1357000;1467000;1534000;1454000;1502000;1599000;1711000;1753000;1940000;2159000;2140000;1613000;1689000;1774000;1984000;2238000;2349000;2485000;2326000;2483000;2958000;2931000;2891000;3062000;3239000;3203000;3293000;3156000;3170000;3401000;3631000;3797000;3489000;3940000;4137000;4102000;4319000;4121000;4087000;4098000;4331000;3861000;4669000;4657000;4001866;2960458;3295162;3173062;2869000;2887000;2944980;2821758;2940750;;;;;;;
-67;'246;Finland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;100;100;100;200;800;1800;3500;200;6100;3300;3300;3300;1100;500;400;100;100;100;3200;2900;3000;2000;4000;5000;8300;9300;6000;8000;19000;20200;10100;4116;6000;6000;4000;3000;4000;4800;8000;12169;5837;1103;1937;2866;2125;5765;6459;21131;2799;7317;618;4118;3581;670;874;578;;;;;;;
-67;'246;Finland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;22;22;4;25;58;144;216;17;522;309;309;309;139;103;153;21;21;38;968;1187;1338;759;1019;1511;2667;3424;2718;3578;6117;9035;4248;1491;2483;2704;2811;1149;1418;1707;3058;5566;2055;394;782;1254;961;2749;3565;12884;1330;3471;411;1840;1794;426;485;311;;;;;;;
-67;'246;Finland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;159900;150300;172800;174500;149000;130100;117500;81500;59000;43700;29100;46100;39000;32000;15900;16856;11000;16000;17800;22500;17000;17000;18000;24000;13100;20100;13000;7000;7000;7000;300;34033;34033;34033;34033;34033;34033;0;0;0;1240;26056;19746;23771;18316;31244;65804;21807;6693;1;0;0;0;1;653;2848;;;;;;;
-67;'246;Finland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;9325;8660;10038;10139;9330;8307;7304;5235;3824;3116;2090;3258;3605;5022;3906;4079;2328;2848;4204;6912;5246;4481;4318;6372;3590;6080;4335;3015;3015;3015;105;19093;19093;19093;19093;19093;19093;9;1;0;310;7368;7888;10456;7727;13995;35951;13282;2844;2;0;0;1;1;274;1314;;;;;;;
-67;'246;Finland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;102000;143000;164000;191000;202000;223000;204000;242000;325000;335000;336000;344000;379000;391000;207000;258000;255000;275000;303000;291000;308000;309000;301000;301000;326000;335000;360000;405000;373000;434000;433000;458000;472000;487000;509000;468000;529000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;463134;336542;479838;440938;539650;560000;520000;498242;519250;;;;;;;
-67;'246;Finland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;4000;1300;4000;6417;6112;6000;29000;6000;6000;3200;1000;312;31103;336;479;10099;23577;158;1295;206;119;2;608;1504;1562;1680;1395;6036;;;;;;;
-67;'246;Finland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;720;1486;553;1725;2185;1928;2562;19072;2887;1554;906;257;159;17873;109;200;4624;10586;84;801;150;72;7;380;1041;1118;1186;842;3593;;;;;;;
-67;'246;Finland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61000;66000;56400;67100;83153;83283;73000;67000;69000;90000;88100;99000;96010;90996;129924;130278;88116;68738;201909;130439;113292;80677;164559;124945;227845;233957;199400;210534;265221;;;;;;;
-67;'246;Finland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30625;40254;34248;31286;36729;28921;27729;43238;28153;35572;35407;38496;48323;39840;50549;56090;39734;31307;93322;75951;72715;37651;107479;74647;118975;134832;111061;93476;104847;;;;;;;
-67;'246;Finland;1656;Chemical wood pulp;5510;Production;t;2614000;2699000;2951000;3272000;3393000;3479000;3578000;3711000;3896000;3905000;3675000;3823000;3953000;3859000;3172000;3285000;3063000;3639000;4310000;4397000;4349000;3887000;4195000;4568000;4580000;4601000;4917000;5198000;5378000;5038000;4824000;4923000;5475000;5844000;5782000;5736000;6620000;6718000;6977000;7100000;6547000;7142000;7350000;7783000;6773000;7946000;7699000;7159000;5518000;6733000;6748000;6701000;6823000;6756406;6930000;7060000;7542000;8150000;7920000;7280000;8320000;7680000;7000000
-67;'246;Finland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1700;3800;3600;6500;3100;3100;5400;3200;4400;4900;5200;5300;5200;8000;10000;12000;22000;15000;27000;52000;27000;19000;32000;60000;150000;48024;70000;62000;47300;37000;43600;67000;77540;95473;91926;129630;153468;197148;260201;349619;373433;341272;405772;464162;484519;398628;387110;400007;410942;459770;469514;335504;207439;133568;252703;228938
-67;'246;Finland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;254;732;825;1061;766;790;1734;1621;1942;1686;2012;2383;2609;4084;4280;4350;7607;5459;10818;28385;17766;12243;16597;33131;80832;19031;35423;48318;24247;16852;19376;31227;44474;45019;38299;60210;74905;97948;146494;214428;267933;168632;290858;341223;310979;266099;241665;243398;240722;268978.08;343716;218087;104852;91336;203276;149364
-67;'246;Finland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;1934600;1930900;1760900;1250900;1381200;1451600;1132800;791500;930600;1032600;1377200;1679100;1732000;1494000;1279000;1404000;1386000;1388000;1348000;1478000;1491000;1469000;1307000;1249000;1196000;1372000;1419000;1235000;1473000;1661000;1546400;1783000;1585239;1606309;1958179;2234960;2244828;1949742;2528292;2355369;2089772;1370166;1994154;2350222;2388217;2697622;2670840;2773694;3095515;3209952;3627769;4071804;3737369;3822017;3624867;4230280
-67;'246;Finland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;203728;217488;240651;185141;201208;251015;284778;299838;338024;331605;379992;619703;802352;702508;530114;497630;596063;480073;553420;799570;953546;1065457;876965;621940;587331;482629;814533;797461;719616;765986;670152;767749;921410;723261;793771;1011712;1121556;986885;1436425;1548739;1468258;739844;1519222;1838445;1530312;1824311;1906545;1785442;1727129;1956370.38;2862473;2433045;1872727;2652141;2854769;2828988
-67;'246;Finland;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;2076000;1339000;1348000;1421000;1421000;1458000;1290000;1187000;1249000;1289000;1259000;971000;1009000;869000;1015000;1165000;1087000;973000;849000;876000;937000;860000;816000;844000;799000;734000;671000;623000;605000;665000;687000;680000;639000;663000;653000;665000;707000;644000;693000;659000;671000;526000;638000;602000;527000;399000;460000;462000;427000;403000;412700;510000;560000;892000;0;0;0;0;0;0
-67;'246;Finland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;1300;2700;2200;5800;2500;2500;4100;1500;1800;2800;2800;2700;2900;4000;1000;1000;12000;2000;10000;18000;6000;10000;10000;7000;12800;11427;11000;11000;10000;14000;7800;10000;8007;6865;10054;13442;15812;16033;19124;16957;16996;7575;15397;12332;7976;14190;12380;15026;12786;18020;22028;16327;26537;24021;19428;28171
-67;'246;Finland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;164;529;586;879;642;627;1156;736;817;982;1204;1383;1666;2612;562;476;3424;1026;3248;9636;3697;5996;5378;3823;6495;4308;4717;7366;4740;4444;3003;3884;3664;2751;3624;5841;7971;7062;10226;10652;11233;3551;9241;7942;4581;9152;8171;8532;6911;8988.58;13351;9102;13352;13381;9722;16384
-67;'246;Finland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;592900;609600;418400;277900;264600;207500;164000;124600;159900;158400;149200;203600;187000;139000;92000;94000;112000;102000;103000;109000;89000;42000;36000;45000;70000;44000;36000;31000;30000;31000;24700;22000;20805;13731;4506;0;0;0;0;0;0;0;0;0;0;0;70;5684;56354;31281;21476;38891;39461;167428;216625;187743
-67;'246;Finland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;56247;60860;51963;37924;35150;33173;40019;49149;58148;47413;39719;70944;81155;61806;39730;34561;47026;37463;45262;60756;59985;37896;28397;25199;38204;21701;21155;25696;18659;16705;13197;10843;11884;6932;2215;0;0;0;0;0;0;0;0;0;0;0;80;3268;26245;16437.89;15009;19810;17154;112881;134774;99832
-67;'246;Finland;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;840000;957000;1052000;1161000;1267000;1436000;1402000;1488000;1563000;1527000;1306000;1461000;1576000;2094000;2574000;2709000;2819000;2638000;2916000;3243000;3406000;3569000;3869000;4237000;4490000;4199000;4140000;4254000;4800000;5157000;5102000;5097000;5957000;6065000;6312000;6393000;5903000;6449000;6691000;7112000;6247000;7308000;7097000;6632000;5119000;6273000;6286000;6274000;6420000;6343706;6420000;6500000;6650000;7160000;7330000;6680000;7634286;7047037;6423081
-67;'246;Finland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;300;900;1000;400;500;500;300;100;600;1100;500;600;1000;2000;7000;9000;8000;9000;14000;29000;19000;7000;11000;40000;125300;30466;53000;47000;34000;21000;34300;56000;65322;83365;76972;112110;135623;180519;240865;332447;355901;332834;388796;444016;473888;382074;372010;381880;395943;439323;445457;316921;178103;106676;230324;198073
-67;'246;Finland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;71;164;154;104;94;133;78;89;271;352;214;286;390;818;3112;3450;3690;3252;6342;16896;12864;4934;7969;21759;67754;12399;27347;37883;17577;11144;15531;26831;38135;40157;32872;52447;65776;90454;135931;203458;255923;164065;280019;324905;302771;253550;230042;231635;231246;257318.78;328011;206347;88184;74560;189261;128608
-67;'246;Finland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;715500;702900;765200;555800;654100;708000;553700;383900;451200;598000;943000;1170100;1260000;1113000;1003000;1103000;1102000;1127000;1156000;1296000;1357000;1388000;1211000;1124000;1117000;1327000;1383000;1204000;1443000;1630000;1521700;1761000;1562461;1592576;1953670;2234958;2244400;1949741;2528292;2355363;2089772;1370166;1994154;2350211;2387246;2697621;2670510;2767870;3038912;3178653;3606075;4032888;3697897;3654358;3408230;4042530
-67;'246;Finland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;80847;85561;109049;84465;97769;126955;141860;146124;167271;193680;258161;435170;584979;521435;403932;380673;472619;381178;467632;697183;862527;996640;799833;542973;543896;460604;793378;771765;700957;749281;656937;756905;909164;716326;791552;1011708;1121360;986883;1436425;1548732;1468258;739844;1519222;1838429;1529897;1824309;1906360;1782075;1700738;1939875.75;2847273;2413170;1855517;2539028;2719955;2729129
-67;'246;Finland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;990000;590000;600000;685714;632963;576919
-67;'246;Finland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2427;2029;2256;2799;2871;2951;2694
-67;'246;Finland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2670.72;2354;2638;3316;3395;4293;4372
-67;'246;Finland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;218;25;11;231;12;7
-67;'246;Finland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56.73;191;65;56;232;40;27
-67;'246;Finland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;1196000;743000;731000;685000;678000;694000;697000;621000;607000;618000;621000;515000;382000;268000;230000;237000;229000;210000;169000;163000;181000;138000;97000;89000;72000;69000;66000;51000;54000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-67;'246;Finland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1126;1000;1000;300;0;600;0;5;25;0;514;1;12;1;45;40;370;0;0;0;0;0;0;0;;;;;;;
-67;'246;Finland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;351;473;481;149;0;223;91;4;10;1;237;3;5;1;25;23;182;4;4;6;3;5;1;0;;;;;;;
-67;'246;Finland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;342300;329000;309000;209200;232200;283100;213900;150200;118500;106100;129000;138400;93000;76000;60000;70000;70000;54000;21000;18000;1000;2000;1000;1000;2000;1000;0;0;0;0;0;0;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-67;'246;Finland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;33657;34494;39627;29363;31615;44514;49144;52588;38901;31628;34343;47008;39318;32294;23490;23291;27744;16467;7625;8878;739;1012;803;900;1264;324;0;0;0;0;15;0;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-67;'246;Finland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;471000;443000;420000;451000;477000;482000;465000;479000;483000;452000;380000;433000;350000;300000;334000;372000;347000;231000;240000;207000;176000;119000;115000;90000;85000;102000;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-67;'246;Finland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;100;200;400;300;100;100;1000;1600;2000;1000;1900;2000;1300;2000;2000;2000;2000;4000;3000;5000;2000;2000;11000;13000;11300;5005;5000;3000;3000;2000;900;1000;4206;5218;4900;3564;2032;584;211;170;496;493;1579;7814;2655;2364;2720;3101;2213;;;;;;;
-67;'246;Finland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;19;39;85;78;30;30;500;796;854;352;594;714;553;654;606;424;493;1181;1228;1853;1205;1313;3250;7549;6259;1973;2886;2588;1781;1264;619;421;2671;2101;1802;1685;1155;427;336;293;754;834;1594;8372;3621;3394;3447;3230;2565;;;;;;;
-67;'246;Finland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;283900;289400;268300;208000;230300;253000;201200;132800;201000;170100;156000;167000;192000;166000;124000;137000;102000;105000;68000;55000;44000;37000;59000;79000;7000;0;0;0;0;0;0;0;1952;2;3;2;428;1;0;6;0;0;0;11;971;1;260;140;249;;;;;;;
-67;'246;Finland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;32977;36573;40012;33389;36674;46373;53755;51977;73704;58884;47769;66581;96900;86973;62962;59105;48674;44965;32901;32753;30295;29909;47932;52868;3967;0;0;0;0;0;3;1;349;3;4;4;196;2;0;7;0;0;0;16;415;2;105;99;146;;;;;;;
-67;'246;Finland;1667;Dissolving wood pulp;5510;Production;t;212000;232000;244000;273000;282000;262000;272000;249000;242000;282000;238000;190000;199000;213000;196000;163000;164000;190000;199000;209000;202000;192000;184000;204000;140000;102000;128000;152000;164000;121000;92000;92000;92000;92000;92000;92000;92000;92000;90000;90000;0;0;0;0;0;0;0;0;0;0;0;125000;250000;250000;200000;400000;415000;400000;400000;400000;400000;400000;400000
-67;'246;Finland;1667;Dissolving wood pulp;5610;Import quantity;t;;;;100;800;600;100;100;700;300;600;400;1100;1100;7000;7900;1400;9000;9200;28200;26000;43000;15000;21000;39000;38600;34000;35000;40000;27000;20000;50593;39000;50000;50000;30000;35000;30000;57000;53746;54000;54000;54000;54000;59556;60598;48108;48876;6781;6231;7155;7087;6240;6560;5474;6764;6584;7267;6336;6775;6757;5101;4035
-67;'246;Finland;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;14;150;106;9;9;105;65;111;85;273;273;2959;3288;619;3774;4279;16219;14581;21143;6304;9439;16118;19485;20349;24847;32755;25123;18566;35511;39228;40806;65638;35501;40978;39761;31821;37286;36601;35333;35851;46229;45894;44032;44754;54072;7064;8061;13354;11257;10025;8602;6427;7525;7735.86;9157;8129;8397;8406;8197;6678
-67;'246;Finland;1667;Dissolving wood pulp;5910;Export quantity;t;181800;201200;207700;247300;242800;211200;228300;208000;226700;252300;226900;183300;169300;165500;136100;135916;137000;138000;168400;184300;174000;162000;150000;151000;133000;100700;108000;121000;118000;97300;33500;10218;674;500;0;0;0;100;0;0;0;322;0;2087;0;0;30;0;0;22;0;94330;141913;134700;151422;142500;157278;143033;156331;202485;300508;6208;184
-67;'246;Finland;1667;Dissolving wood pulp;5922;Export value;1000 USD;29442;31576;31965;40982;43073;35516;36890;30724;35302;46275;39125;38670;39856;57832;73460;63181;60500;57352;82678;113591;113154;101376;80865;81453;62575;57425;74816;97440;104378;85500;24094;5914;379;283;0;0;0;40;4;0;0;185;0;1479;0;0;24;0;0;22;0;91498;111783;103428;110977;110829;131914.82;120300;107450;111972;257979;4114;309
-67;'246;Finland;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-67;'246;Finland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;100;200;400;100;100;100;1000;1000;1000;1000;2000;1000;2000;2000;1186;1500;2000;2000;700;1000;700;1000;1572;1417;2431;1808;1530;1142;1186;1368;1097;1815;1975;5358;6249;2977;4950;3445;2730;2891;2674;3097;1853;2006;3226;3356
-67;'246;Finland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;77;139;415;88;121;140;653;608;854;660;2275;1775;3660;3660;1935;1572;1612;2348;817;1251;1249;2102;2068;1850;2468;1887;1986;1784;1661;2942;2180;3046;2488;13180;11906;5271;8160;4728;4080;5409.68;4737;5015;2881;3855;8718;8073
-67;'246;Finland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;4800;6700;9000;4000;5000;18000;14000;15000;17000;25000;24000;0;0;0;0;0;0;0;2000;0;0;17;939;221;128;49;999;717;1058;971;256;108;10;10;12;140;0;136;182;0;6;40;42;48;61
-67;'246;Finland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;1021;1309;1636;730;660;2806;2354;3329;3999;6541;6788;0;0;0;0;0;0;0;444;1;8;9;242;48;39;25;442;345;648;666;179;68;9;11;8;87;0;50;230.47;0;14;101;109;140;124
-67;'246;Finland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;8000;3629;4;1;91;0;47;712;1091;864;319;67;327;364;929;1370;1047;1073;29;2357;889;1099;942;1669;453
-67;'246;Finland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728;2293;682;11;2;168;0;23;338;640;533;205;40;198;226;523;948;504;478;21.27;1168;424;544;503;887;261
-67;'246;Finland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;123;328;422;849;16521;14007;20185;663;534;832;544;0;0;0;30;31;81;12;101;46;2;9;4;997
-67;'246;Finland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;37;29;85;126;321;5329;4222;6432;450;398;393;190;0;0;0;29;27;56;28.36;69;32;2;10;6;582
-67;'246;Finland;1669;Recovered paper;5510;Production;t;86000;69000;78000;92000;106000;118000;108000;114000;104000;140000;135000;130000;148000;181000;161000;149000;172000;195000;216000;244000;270000;280000;288000;310000;342000;363000;297000;384000;378000;433000;446000;440000;456000;472000;495000;563000;607000;633000;696000;734000;740000;765000;749000;796000;791000;825000;845000;813000;725000;737000;735000;704000;710000;613000;636000;560000;641000;620000;620000;560000;460000;450000;470000
-67;'246;Finland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;27000;18000;2000;2000;1000;4200;4200;2100;9000;1800;1000;6000;7500;9000;34000;22000;26000;37000;51000;85000;55000;62000;127783;113095;122000;66000;53000;32000;33500;39000;40475;37019;35585;35667;48460;31026;32001;41691;47019;34748;30562;46085;49481;54761;52150;46756;74938;87751;112426;114896;67844;67288;90917;69292
-67;'246;Finland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1191;972;78;78;95;401;401;109;618;177;97;971;1330;1502;2641;3081;3124;5708;8184;15313;11639;8788;14812;9325;11413;13871;8139;4506;3879;4849;5378;4690;4853;6828;8660;5439;5992;8982;11772;7069;8115;12992;11900;11572;10858;8184;12166;16892.67;20511;21482;13552;15929;19579;10056
-67;'246;Finland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;1000;1000;4000;7900;4800;17300;11000;7300;9500;30900;21500;15000;17000;65000;71000;67000;45000;62000;56000;50000;65000;36659;44435;30000;35000;40000;49000;75900;93000;112499;100383;127924;104625;105256;166740;194545;147038;151980;216279;161266;167921;160409;137053;100460;92149;81584;88011;68671;65696;100489;147020;118798;94272
-67;'246;Finland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;22;26;286;1524;471;3211;1450;775;1132;4694;3869;2495;2440;5085;7797;12868;9764;14365;12743;17715;16251;8362;6714;4956;9038;8574;8604;9850;14504;19785;18993;24854;19385;22125;24820;23149;23962;26526;23069;23338;31771;25223;22011;17893;14582;14568;16365.44;13745;13057;15265;24462;22457;15782
-67;'246;Finland;1876;Paper and paperboard;5510;Production;t;2404000;2514000;2748000;2984000;3210000;3466000;3394000;3634000;4065000;4266000;4429000;4971000;5453000;5523000;3994000;4550000;4620000;5140000;5738000;5919000;6135000;5895000;6388000;7318000;7447000;7549000;8011000;8652000;8754000;8968000;8778000;9152000;9990000;10909000;10942000;10442000;12149000;12703000;12947000;13509000;12502000;12789000;13058000;14036000;12391140;14189360;14334000;13126000;10602000;11758000;11329000;10847000;10591998;10407971;10319990;10139999;10276018;10540012;9720010;8190010;8660010;7935006;6290007
-67;'246;Finland;1876;Paper and paperboard;5610;Import quantity;t;3800;3600;4600;8800;11100;8400;7700;9000;14500;19300;21900;20500;22900;26800;25300;30700;27590;33500;36500;53200;52300;48400;59000;70000;81000;85900;102000;114000;132000;129300;122000;147187;173771;212000;199000;186000;232000;302200;305000;356150;321503;376089;380207;420046;469847;458499;489601;497036;407868;447842;479804;461784;450110;426170;376741;368443;352669;332632;305599;322701;360313;336979;250306
-67;'246;Finland;1876;Paper and paperboard;5622;Import value;1000 USD;1688;1638;1962;2984;4635;4698;4473;4743;6528;7950;9590;12442;16194;25669;28890;30645;31721;36439;47736;67260;66581;71024;64728;71083;80702;104489;142015;163260;184490;202419;178754;188818;168679;214044;231216;205950;211114;282486;257766;282643;268126;278236;331232;372584;423916;409729;471965;500620;359876;384370;464311;415051;435531;401500;303032;285972;289629.89;316460;293724;292500;344736;370560;289397
-67;'246;Finland;1876;Paper and paperboard;5910;Export quantity;t;1962700;2133000;2295900;2506100;2672800;2899900;2818400;3040700;3434100;3559000;3645100;4087200;4485200;4603100;3136000;3698000;3815400;4300200;4744000;4867500;4906000;4899000;5323000;6062000;6260200;6275100;6866000;7270000;7394000;7633400;7524300;7860061;8593000;9502000;9228000;8529000;10161000;10978600;11209000;11641844;10875436;11451568;11734099;12707785;11155096;12905712;13103767;11851800;9644277;10820073;10453621;9882910;9864242;9737550;9850394;9558419;9781655;10034356;9293444;7831573;8388558;7025373;5940453
-67;'246;Finland;1876;Paper and paperboard;5922;Export value;1000 USD;285094;302485;332763;354250;388302;429788;426392;441577;506747;564795;602403;724127;946425;1262970;1344399;1404637;1592701;1818783;2303278;2802760;2692451;2610019;2507713;2872598;3060557;3691525;4689276;5501488;5733931;6568421;6086695;6287018;5420619;6376348;8588521;7364797;7212573;8245638;7880069;7899820;7416840;7584085;8527410;9640772;8458905;9892401;10778184;10759332;8399083;9228889;9958764;8986576;9138232;8907619;7653883;7341001;7570097.42;8541375;7727051;6371972;7408117;7509928;6315955
-67;'246;Finland;2042;Graphic papers;5510;Production;t;1243000;1258000;1340000;1499000;1706000;1837000;1780000;1930000;2135000;2286000;2375000;2700000;3013000;3052000;2332000;2518000;2665000;3032000;3390000;3596000;3796000;3672000;3995000;4848000;4977000;5012000;5317000;5773000;5915000;6112000;6010000;6236000;6927000;7542000;7740000;7164000;8591000;9243000;9392000;9810000;8955000;9092000;9264000;10188000;8816140;9792360;9768000;8835000;6856000;7466000;7323000;6617000;6306999;6092897;5919990;5510000;5422010;5520000;4880000;3410010;3250010;2560006;2110000
-67;'246;Finland;2042;Graphic papers;5610;Import quantity;t;100;300;100;200;500;600;500;600;1700;2500;2100;3000;2600;2700;3000;2200;3590;2700;3000;4300;4000;5000;6000;9000;9000;9600;11000;23000;28000;30300;27000;32187;47771;48000;45000;63000;83000;76500;84000;115951;112484;148789;146152;160618;222701;204210;208454;189597;162513;179377;198740;191002;159833;149670;118742;104830;102252;83985;54162;63643;77842;91185;64589
-67;'246;Finland;2042;Graphic papers;5622;Import value;1000 USD;58;86;85;139;328;313;298;298;567;781;845;1302;1429;2204;2447;1802;2632;2276;3686;6019;5352;6520;7101;9810;10632;14091;17805;36709;46862;55698;45490;48268;40467;50761;61563;70699;75212;67979;68365;86636;87798;117375;126069;142342;193486;173649;193768;192416;157316;152839;184499;166237;142462;137100;90001;77014;77423.42;74703;53025;54510;63169;91208;77015
-67;'246;Finland;2042;Graphic papers;5910;Export quantity;t;1064900;1110800;1164500;1327800;1510600;1620300;1556700;1670200;1860500;1966200;2022300;2317300;2567200;2638200;1953000;2191800;2366000;2747400;3008400;3181900;3242000;3210000;3559000;4223000;4400200;4335100;4746000;5103000;5169000;5375400;5290300;5471061;6156000;6806000;6766000;6173000;7585000;8060600;8200000;8520241;7715747;8389225;8739037;9468904;8294473;9558413;9670671;8570463;6811762;7551140;7249861;6674141;6401372;6224590;6115264;5617597;5542573;5681801;5057616;3621974;3615227;2450045;2221724
-67;'246;Finland;2042;Graphic papers;5922;Export value;1000 USD;142437;146700;154162;174321;199967;217143;212888;218957;250000;278555;302362;369842;484967;804645;747484;791828;939965;1139871;1394554;1686802;1647285;1596255;1556985;1877834;2023298;2394088;3048977;3730492;3820004;4305812;3957777;4064626;3614036;4254551;6169545;5226543;5141664;5783886;5514312;5528717;5061987;5342030;5996433;6807767;5933002;6954617;7501958;7281676;5507460;5958803;6304004;5598206;5366572;5122832;4286771;3909306;3800050.44;4322534;3812870;2548329;2703421;2515891;2253165
-67;'246;Finland;1671;Newsprint;5510;Production;t;945000;966000;977000;1079000;1213000;1317000;1233000;1167000;1240000;1305000;1306000;1397000;1386000;1219000;992000;991000;979000;1126000;1513000;1569000;1703000;1501000;1613000;1878000;1811000;1646000;1628000;1400000;1321000;1430000;1305000;1257000;1425000;1446000;1425000;1327000;1470000;1483000;1490000;1394000;1296000;1008000;946000;723000;520140;584640;548314;501435;135812;200143;277500;251000;189241;281119;273143;304224;299360;304770;269432;188270;179436;119258;98296
-67;'246;Finland;1671;Newsprint;5610;Import quantity;t;;;;;;100;;;600;900;400;300;100;100;;100;;100;;;;;;;;;0;;;;;2187;19771;17000;18000;30000;39000;37000;41000;51769;50733;59945;61293;62629;66435;75387;86146;82119;75991;74017;97944;88804;71231;56840;44527;46426;48095;34769;23163;28429;34201;49816;35216
-67;'246;Finland;1671;Newsprint;5622;Import value;1000 USD;;;;;;15;;;86;124;79;91;46;31;;38;;38;;;;;;;;;0;;;;;919;6770;6286;10692;17646;17747;17032;16919;18650;21901;23178;26660;30017;34028;40607;54024;55770;48752;38305;61985;51645;41754;33329;19762;20607;22086.04;20519;13369;14423;16371;34713;28998
-67;'246;Finland;1671;Newsprint;5910;Export quantity;t;846200;869700;882500;988600;1100500;1192500;1151200;1161100;1155900;1187000;1168400;1310300;1321300;1137000;776200;866500;840000;1113400;1392100;1431900;1542000;1339000;1467000;1675000;1643400;1470200;1437000;1203000;1079000;1202900;1159300;1146000;1250000;1252000;1099000;1051000;1211000;1199500;1223000;1144039;1040799;748695;743726;572673;413190;505928;516777;302782;79179;179857;223114;225171;277609;270240;323716;345405;339785;322494;236364;161757;84974;54185;62320
-67;'246;Finland;1671;Newsprint;5922;Export value;1000 USD;105638;108039;109985;122073;135836;148770;146898;141994;141397;150299;154110;183250;212141;297361;269168;282820;300365;406358;565196;649188;690581;579261;541492;586636;565354;651679;745106;722810;622268;764414;713467;580549;522445;557451;726725;734233;631174;637245;613465;532847;534370;348235;352728;289790;222700;284156;314713;196392;49699;106704;150172;133816;165364;162915;160397;167627;162726.2;187463;133161;78499;44074;42755;46519
-67;'246;Finland;1674;Printing and writing papers;5510;Production;t;298000;292000;363000;420000;493000;520000;547000;763000;895000;981000;1069000;1303000;1627000;1833000;1340000;1527000;1686000;1906000;1877000;2027000;2093000;2171000;2382000;2970000;3166000;3366000;3689000;4373000;4594000;4682000;4705000;4979000;5502000;6096000;6315000;5837000;7121000;7760000;7902000;8416000;7659000;8084000;8318000;9465000;8296000;9207720;9219686;8333565;6720188;7265857;7045500;6366000;6117758;5811778;5646847;5205776;5122650;5215230;4610568;3221740;3070574;2440748;2011704
-67;'246;Finland;1674;Printing and writing papers;5610;Import quantity;t;100;300;100;200;500;500;500;600;1100;1600;1700;2700;2500;2600;3000;2100;3590;2600;3000;4300;4000;5000;6000;9000;9000;9600;11000;23000;28000;30300;27000;30000;28000;31000;27000;33000;44000;39500;43000;64182;61751;88844;84859;97989;156266;128823;122308;107478;86522;105360;100796;102198;88602;92830;74215;58404;54157;49216;30999;35214;43641;41369;29373
-67;'246;Finland;1674;Printing and writing papers;5622;Import value;1000 USD;58;86;85;139;328;298;298;298;481;657;766;1211;1383;2173;2447;1764;2632;2238;3686;6019;5352;6520;7101;9810;10632;14091;17805;36709;46862;55698;45490;47349;33697;44475;50871;53053;57465;50947;51446;67986;65897;94197;99409;112325;159458;133042;139744;136646;108564;114534;122514;114592;100708;103771;70239;56407;55337.38;54184;39656;40087;46798;56495;48017
-67;'246;Finland;1674;Printing and writing papers;5910;Export quantity;t;218700;241100;282000;339200;410100;427800;405500;509100;704600;779200;853900;1007000;1245900;1501200;1176800;1325300;1526000;1634000;1616300;1750000;1700000;1871000;2092000;2548000;2756800;2864900;3309000;3900000;4090000;4172500;4131000;4325061;4906000;5554000;5667000;5122000;6374000;6861100;6977000;7376202;6674948;7640530;7995311;8896231;7881283;9052485;9153894;8267681;6732583;7371283;7026747;6448970;6123763;5954350;5791548;5272192;5202788;5359307;4821252;3460217;3530253;2395860;2159404
-67;'246;Finland;1674;Printing and writing papers;5922;Export value;1000 USD;36799;38661;44177;52248;64131;68373;65990;76963;108603;128256;148252;186592;272826;507284;478316;509008;639600;733513;829358;1037614;956704;1016994;1015493;1291198;1457944;1742409;2303871;3007682;3197736;3541398;3244310;3484077;3091591;3697100;5442820;4492310;4510490;5146641;4900847;4995870;4527617;4993795;5643705;6517977;5710302;6670461;7187245;7085284;5457761;5852099;6153832;5464390;5201208;4959917;4126374;3741679;3637324.24;4135071;3679709;2469830;2659347;2473136;2206646
-67;'246;Finland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1886000;1870000;1976000;2039000;2204000;2195000;2497000;2244000;2485000;2611686;2538565;1795188;1717857;1506209;1361000;947238;803201;780407;726363;714764;727678;643308;449530;428438;284747;234695
-67;'246;Finland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;6000;5063;3651;5829;10007;13285;39626;32932;24385;24664;15735;20895;16471;23571;19983;19900;13785;16623;13425;14627;2742;4192;10490;5326;1579
-67;'246;Finland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4014;3967;3193;2661;4309;7923;10163;29014;25054;20893;23291;15136;16699;14173;18323;15996;15643;8737;10779;9011.57;9925;2919;3817;9550;5370;2118
-67;'246;Finland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893400;1842000;1928935;1814381;2157597;2143996;2391862;2117649;2518078;2636172;2563671;1736863;1738763;1478261;1092060;996695;877670;767004;750559;738683;791628;673611;426192;426622;310064;272642
-67;'246;Finland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251835;1162649;1110057;1080045;1238015;1315140;1495944;1300696;1603281;1756932;1869194;1257307;1176876;1055256;785389;717436;621433;462971;446779;433637.2;511182;435164;255973;257476;251772;232531
-67;'246;Finland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1457000;1550000;1559000;1231000;1142000;1091000;1224000;1094000;1266720;1276638;1158435;1066872;1103809;1035517;936000;1092149;1061864;1031727;960277;944949;962028;850493;594300;566415;376450;310276
-67;'246;Finland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400;14000;15327;21938;43025;41609;45021;50920;36408;25148;29028;28972;27659;21746;22081;21765;24480;22106;13697;17585;14905;13057;13014;15183;20956;15202
-67;'246;Finland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18427;18660;18245;24842;43976;47362;52676;58077;41688;34322;42837;39632;35187;33525;32912;33028;34731;25870;18309;21749.91;21068;18561;17321;18643;31717;27618
-67;'246;Finland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;842000;940000;919001;806520;1092788;1039801;1131531;997670;1266673;1282305;1187364;1096224;1131449;1057027;1068369;1070891;1126870;1056671;937499;882806;902046;861600;670571;665909;298198;295660
-67;'246;Finland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600174;582279;609452;526768;745944;767416;841234;716076;917408;1078895;1107601;867840;927459;990507;929581;942408;946619;769050;702082;669176.3;789146;722225;518508;535316;375927;335669
-67;'246;Finland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4417000;4482000;4881000;4389000;4738000;5032000;5744000;4958000;5456000;5331362;4636565;3858128;4444191;4503774;4069000;4078371;3946713;3834713;3519136;3462937;3525524;3116767;2177910;2075721;1779551;1466733
-67;'246;Finland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21600;23000;43792;36162;39990;33243;39683;65720;59483;72775;53786;41815;56806;62579;56546;46854;48450;38324;28084;23147;19684;15200;18008;17968;15087;12592
-67;'246;Finland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28506;28819;46548;38394;45912;44124;49486;72367;66300;84529;70518;53796;62648;74816;63357;51684;53397;35632;27319;24575.9;23191;18176;18949;18605;19408;18281
-67;'246;Finland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4125700;4195000;4528266;4054047;4390145;4811514;5372838;4765964;5267734;5235417;4516646;3899496;4501071;4491459;4288541;4056177;3949810;3967873;3584134;3581299;3665633;3286041;2363454;2437722;1787598;1591102
-67;'246;Finland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3294632;3155919;3276361;2920804;3009836;3561149;4180799;3693530;4149772;4351418;4108489;3332614;3747764;4108069;3749420;3541364;3391865;2894353;2592818;2534510.74;2834743;2522320;1695349;1866555;1845437;1638446
-67;'246;Finland;1675;Other paper and paperboard;5510;Production;t;1161000;1256000;1408000;1485000;1504000;1629000;1614000;1704000;1930000;1980000;2054000;2271000;2440000;2471000;1662000;2032000;1955000;2108000;2348000;2323000;2339000;2223000;2393000;2470000;2470000;2537000;2694000;2879000;2839000;2856000;2768000;2916000;3063000;3367000;3202000;3278000;3558000;3460000;3555000;3699000;3547000;3697000;3794000;3848000;3575000;4397000;4566000;4291000;3746000;4292000;4006000;4230000;4284999;4315074;4400000;4629999;4854008;5020012;4840010;4780000;5410000;5375000;4180007
-67;'246;Finland;1675;Other paper and paperboard;5610;Import quantity;t;3700;3300;4500;8600;10600;7800;7200;8400;12800;16800;19800;17500;20300;24100;22300;28500;24000;30800;33500;48900;48300;43400;53000;61000;72000;76300;91000;91000;104000;99000;95000;115000;126000;164000;154000;123000;149000;225700;221000;240199;209019;227300;234055;259428;247146;254289;281147;307439;245355;268465;281064;270782;290277;276500;257999;263613;250417;248647;251437;259058;282471;245794;185717
-67;'246;Finland;1675;Other paper and paperboard;5622;Import value;1000 USD;1630;1552;1877;2845;4307;4385;4175;4445;5961;7169;8745;11140;14765;23465;26443;28843;29089;34163;44050;61241;61229;64504;57627;61273;70070;90398;124210;126551;137628;146721;133264;140550;128212;163283;169653;135251;135902;214507;189401;196007;180328;160861;205163;230242;230430;236080;278197;308204;202560;231531;279812;248814;293069;264400;213031;208958;212206.46;241757;240699;237990;281567;279352;212382
-67;'246;Finland;1675;Other paper and paperboard;5910;Export quantity;t;897800;1022200;1131400;1178300;1162200;1279600;1261700;1370500;1573600;1592800;1622800;1769900;1918000;1964900;1183000;1506200;1449400;1552800;1735600;1685600;1664000;1689000;1764000;1839000;1860000;1940000;2120000;2167000;2225000;2258000;2234000;2389000;2437000;2696000;2462000;2356000;2576000;2918000;3009000;3121603;3159689;3062343;2995062;3238881;2860623;3347299;3433096;3281337;2832515;3268933;3203760;3208769;3462870;3512960;3735130;3940822;4239082;4352555;4235828;4209599;4773331;4575328;3718729
-67;'246;Finland;1675;Other paper and paperboard;5922;Export value;1000 USD;142657;155785;178601;179929;188335;212645;213504;222620;256747;286240;300041;354285;461458;458325;596915;612809;652736;678912;908724;1115958;1045166;1013764;950728;994764;1037259;1297437;1640299;1770996;1913927;2262609;2128918;2222392;1806583;2121797;2418976;2138254;2070909;2461752;2365757;2371103;2354853;2242055;2530977;2833005;2525903;2937784;3276226;3477656;2891623;3270086;3654760;3388370;3771660;3784787;3367112;3431695;3770046.98;4218841;3914181;3823643;4704696;4994037;4062790
-67;'246;Finland;1676;Household and sanitary papers;5510;Production;t;;;;21000;21000;41000;50000;54000;69000;100000;103000;106000;138000;172000;104000;106000;107000;115000;136000;137000;151000;153000;156000;161000;161000;156000;162000;165000;163000;164000;159000;167000;176000;193000;184000;188000;204000;171000;185000;174000;146100;148000;147300;184000;155000;200000;207000;168426;143292;153397;155884;151000;241000;248500;245000;240000;616000;215000;200000;200000;200000;200000;200000
-67;'246;Finland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;100;100;100;100;1200;400;500;900;400;800;900;800;800;300;600;300;300;400;2000;2000;1000;300;1000;3000;3000;2000;1000;1000;2000;4000;2000;1000;2000;2200;3000;3163;3824;4211;4219;3646;4389;4253;5922;4834;4427;4054;3834;3751;3068;2060;1913;1228;857;1136;1321;1332;1870;3028;3116
-67;'246;Finland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;86;88;83;90;475;241;384;543;374;743;1208;1310;2029;299;566;437;481;499;2022;1766;909;998;1895;3155;3755;3251;1523;1801;2157;3504;2463;2221;2855;3007;3629;4653;5557;6493;8366;8074;9619;10387;10843;15057;13424;11899;13267;13283;13138;11351;9890;8965;8092.12;10594;11595;3209;4038;7556;6997
-67;'246;Finland;1676;Household and sanitary papers;5910;Export quantity;t;9000;10200;11300;11800;11600;12800;12600;17800;48400;71400;67000;73900;78800;103500;68300;56900;40200;51200;56700;56500;64000;66000;72000;82000;77000;69000;78000;63000;70000;78000;83000;88000;78000;70000;60000;58000;55000;64300;64000;53663;51969;57449;52692;55745;46748;50037;46627;41314;37728;38067;38081;32553;36330;40330;32146;33538;41036;31336;29844;23915;19487;19510;8387
-67;'246;Finland;1676;Household and sanitary papers;5922;Export value;1000 USD;7133;7789;8930;8996;9417;10632;10675;10882;17838;24993;24928;28310;35831;63709;59561;42997;23405;29834;39946;48288;53511;51237;48667;53392;53395;57948;77526;66728;77780;97964;92898;99323;71291;67272;79525;73418;61196;70315;59486;49699;41765;41515;42457;49231;42013;46397;50947;45635;36132;41319;44281;35085;43526;50319;34064;32698;41635.33;36152;33605;24532;22592;28136;12252
-67;'246;Finland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2869000;2970000;3125000;3060000;3203000;3303000;3346000;3157000;3857000;4006000;3775000;3307000;3777000;3519000;3608000;3802999;3818074;3910000;4149999;3622008;4590012;4440010;3680000;4220000;4475000;3380007
-67;'246;Finland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196900;191000;212031;180587;218992;226206;252278;238436;245924;271187;298548;237876;262510;275502;265633;285918;273330;254976;261284;248387;246501;248784;256061;278890;239589;179901
-67;'246;Finland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158811;136128;147178;132139;142616;184197;210016;206674;211066;249562;273443;179422;213973;261870;231496;275659;249115;199810;196319;199847.33;227041;224369;228634;270834;258804;197252
-67;'246;Finland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2498800;2647000;2779070;2812469;2871400;2803369;3033215;2684741;3153701;3235769;3091538;2698461;3103424;3050156;3065272;3318956;3345880;3565889;3768879;4050422;4182024;4070672;4039958;4602562;4426551;3597302
-67;'246;Finland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1997401;1943265;1983066;1967483;2030804;2298593;2603141;2330705;2722043;3035681;3218330;2693376;3118091;3433707;3189699;3566437;3572187;3202077;3267299;3609090.97;4062188;3766687;3676163;4555835;4834564;3930472
-67;'246;Finland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;1361000;1364000;1454000;1401000;1499000;1682000;1705000;1754000;1920000;2023000;2047000;1365000;1659000;1568000;1725000;1873000;1891000;1907000;1800000;1918000;2009000;1973000;2043000;2177000;2343000;2310000;2324000;2252000;2373000;2492000;2740000;2605000;2667000;2895000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;900;800;1000;2200;2500;1800;1700;2000;3300;5500;9600;6300;3600;5000;5800;9000;3000;3000;6000;14200;16000;14000;18000;23000;30000;27000;33000;64000;88000;85000;83000;103000;113000;146000;150000;120000;146000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;233;217;263;455;603;614;585;610;927;715;2085;2159;1340;5516;7178;9482;1998;1936;4091;10657;9323;7574;8009;9646;13622;14289;19339;49139;86648;96245;90918;97181;89450;115154;162230;128724;130556;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;682300;776900;859900;895500;883300;972500;958900;1040100;1228000;1206900;1190000;1300200;1420900;1382200;791900;966800;880100;942000;1025000;878800;849000;867000;860000;851000;890000;885000;944000;1876000;2082000;2104000;2075000;2223000;2284000;2538000;2388000;2283000;2507000;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;112699;123070;141095;142144;148785;167990;168668;176803;182771;196803;195485;232626;308767;189954;354470;322766;340882;339354;448742;480558;443996;425879;377811;380613;394212;455493;551926;1366898;1673472;1974292;1845177;1921417;1564537;1847460;2312440;2037400;1986390;;;;;;;;;;;;;;;;;;;;;;;;;;
-67;'246;Finland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740000;762000;777000;651000;643000;578000;607000;744000;865000;866000;828000;737000;849000;739573;758000;798967;652134;667832;708822;618639;783973;758360;728551;1020784;1003848;758215
-67;'246;Finland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134800;129000;147859;125601;153426;145151;164555;141003;147595;184312;218577;166515;190354;209571;198708;208433;210900;197095;189192;169742;166821;158989;154691;153727;137142;111026
-67;'246;Finland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68795;56621;67751;60046;67609;74151;86833;72009;81494;116038;144297;85992;115434;152750;127355;143353;142175;110841;101468;99132.6;112586;98340;87197;97132;99537;69236
-67;'246;Finland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609100;661000;663203;696685;629467;547407;604590;507668;647123;631262;587799;494452;577567;549752;548230;559429;528520;586200;813075;915171;856687;870098;871457;1129463;1144125;980940
-67;'246;Finland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252616;241982;266173;280937;246669;240251;266394;222564;307414;354922;367969;259734;334281;388267;340205;374339;346705;321570;442623;544767.68;598578;544573;506755;826906;975017;641298
-67;'246;Finland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496000;1520000;1644000;1568000;1688000;1853000;1820000;1583000;1837000;1916000;1807000;1619000;1793000;1720482;1764000;1859338;2166708;2218879;2355077;2055448;2604773;2519640;2088345;2394787;2680066;2024276
-67;'246;Finland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32900;27000;28672;31306;32330;40844;52836;56433;62112;54173;45866;43153;44233;37990;39094;43949;35990;30571;43189;50300;49453;58549;65798;85740;65376;42637
-67;'246;Finland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57483;44689;44808;46584;46745;72364;86816;91463;88099;91670;84232;62020;63053;68405;67292;86059;72275;58842;64571;68279.01;77440;89270;102186;123715;107041;86338
-67;'246;Finland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1486100;1535000;1638452;1570368;1568726;1584815;1715160;1506794;1753091;1831113;1769940;1563703;1773986;1758325;1806585;1990444;2065040;2240848;2284623;2456181;2656544;2583100;2558143;2809244;2743358;2170395
-67;'246;Finland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1337276;1288840;1297286;1249787;1269109;1459019;1669252;1489017;1728790;1910870;2035277;1745632;1944180;2149962;2027429;2267650;2327064;2108227;2121490;2340336.05;2687251;2552974;2536836;2962504;3084591;2660388
-67;'246;Finland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515000;568000;584000;586000;614000;612000;643300;581000;808000;857000;840074;700799;839995;761517;781000;823210;676473;692758;735282;641735;813246;786670;586011;547686;538605;406816
-67;'246;Finland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;22000;24034;21173;20700;26373;25931;30581;30971;28092;29352;24390;26553;26180;25211;21513;21810;22533;24848;24521;25996;25854;30006;33473;31012;23094
-67;'246;Finland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20534;23388;24544;22052;21827;29542;30737;37034;38308;38646;41492;28859;34226;38688;34268;32456;30852;27187;27797;29843.39;34074;33033;35626;44904;45966;38223
-67;'246;Finland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378600;428000;438359;535675;511964;491575;520181;482538;556272;556519;489761;444331;556870;519794;508810;552343;546260;542784;510897;498504;499355;470556;455210;490703;354441;309796
-67;'246;Finland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379753;388047;386388;432048;419866;477684;530951;483955;544288;597295;601080;514538;673702;689620;651022;723076;713022;627234;586905;587825.45;646085;559856;514716;623420;606815;499984
-67;'246;Finland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000;120000;120000;255000;258000;260000;275700;249000;347000;367000;299926;250201;295005;297428;305000;321484;322759;330531;350818;306186;388020;375340;277093;256743;252481;190700
-67;'246;Finland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400;13000;11466;2507;12536;13838;8956;10419;5246;4610;4753;3818;1370;1761;2620;12023;4630;4777;4055;3824;4231;5392;5566;5950;6059;3144
-67;'246;Finland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11999;11430;10075;3457;6435;8140;5630;6168;3165;3208;3422;2551;1260;2027;2581;13791;3813;2940;2483;2592.33;2941;3726;3625;5083;6260;3455
-67;'246;Finland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;23000;39056;9741;161243;179572;193284;187741;197215;216875;244038;195975;195001;222285;201647;216740;206060;196057;160284;180566;169438;146918;155148;173152;184627;136171
-67;'246;Finland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27756;24396;33219;4711;95160;121639;136544;135169;141551;172594;214004;173472;165928;205858;171043;201372;185396;145046;116281;136161.79;130274;109284;117856;143005;168141;128802
-67;'246;Finland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;103000;119000;134000;163000;151000;179000;175000;197000;245000;279000;252000;193000;267000;280000;268000;339000;295000;281000;270000;319000;300000;336000;338000;355000;371000;366000;368000;357000;376000;395000;434000;413000;423000;459000;420000;400000;400000;340900;346000;343700;318000;263000;340000;353000;347574;295708;361603;331116;471000;241000;248500;245000;240000;616000;215000;200000;900000;990000;700000;600000
-67;'246;Finland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;2800;2500;3500;6400;8000;5900;5400;6300;8300;10900;9700;10300;16300;18300;15600;18700;20200;27500;26900;34400;32000;29000;33000;36000;41000;49000;57000;24000;13000;12000;11000;11000;11000;14000;2000;2000;1000;26600;27000;25005;24608;4097;3630;3504;4321;4112;4038;4057;3052;1901;1728;1398;1291;1110;1110;1101;1173;1010;1332;1665;1711;3177;2700
-67;'246;Finland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1397;1335;1614;2390;3618;3683;3507;3745;4559;6213;6276;8438;13051;17206;18057;18051;25062;31928;39393;50147;51425;56431;47596;49861;55539;75111;102976;74257;47225;47225;40823;41568;36605;44625;4960;4306;2491;52689;49644;44176;42632;11752;12600;12152;14137;14627;17792;19704;9714;5659;4675;4035;4272;3934;3331;3674;4267.01;4122;4735;6147;6695;12992;8133
-67;'246;Finland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;206500;235100;260200;271000;267300;294300;290200;312600;297200;314500;365800;395800;418300;479200;322800;482500;529100;559600;653900;750300;751000;756000;832000;906000;893000;986000;1098000;228000;73000;76000;76000;78000;75000;88000;14000;15000;14000;354900;298000;288870;295251;133494;139001;149921;129134;143561;150700;148485;96326;127442;115523;110944;107584;126750;137095;138405;147624;139195;135312;145726;151282;129267;113040
-67;'246;Finland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;22825;24926;28576;28789;30133;34023;34161;34935;56138;64444;79628;93349;116860;204662;182884;247046;288449;309724;420036;587112;547659;536648;524250;560759;589652;783996;1010847;337370;162675;190353;190843;201652;170755;207065;27011;27436;23323;394036;363006;338338;345605;169736;189927;180633;153185;169344;189598;213691;162115;110676;176772;163586;161697;162281;130971;131698;119320.67;120501;113889;122948;126269;131337;120066
-67;'246;Finland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478567.12;542673;548453;548130;534499;670520;665937
-67;'246;Finland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526213.22;513242;513150;499947;658301;758820;513465
-67;'246;Finland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21571.65;22380;18453;19998;20964;32057;22835
-67;'246;Finland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44701.43;50797;56299;62459;89393;85316;68953
-67;'246;Finland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705.47;7752;5182;5660;6259;8519;4942
-67;'246;Finland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43547.06;49384;55262;61808;88306;83042;66640
-67;'246;Finland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13866.17;14628;13271;14338;14705;23538;17893
-67;'246;Finland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154.37;1413;1037;651;1087;2274;2313
-67;'246;Finland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21111.81;22332;27383;24781;27149;51324;45307
-67;'246;Finland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25187.15;28939;31370;28996;37818;44568;40863
-67;'246;Finland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9598.27;11092;11425;10418;11472;14821;12837
-67;'246;Finland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2519.38;2977;2648;3096;3722;4147;4086
-67;'246;Finland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85687.4;94216;92815;95815;99968;103067;115269
-67;'246;Finland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276247.03;244876;221028;226923;322662;368559;177140
-67;'246;Finland;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308000;308000
-67;'246;Finland;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16010;12148
-67;'246;Finland;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15451;8774
-67;'246;Finland;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324168;242120
-67;'246;Finland;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323204;134835
-67;'246;Finland;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;1267
-67;'246;Finland;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342;1435
-67;'246;Finland;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350;0
-67;'246;Finland;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;0
-67;'246;Finland;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5
-67;'246;Finland;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12
-67;'246;Finland;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-67;'246;Finland;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-67;'246;Finland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291644.34;317583;309507;317063;313709;388616;383542
-67;'246;Finland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96625.04;111265;147274;118999;124996;168964;152354
-67;'246;Finland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33695.81;59033;73924;57164;38954;50799;58364
-67;'246;Finland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76706.89;70426;50425;54749;72161;78874;62807
-67;'246;Finland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15257.86;16037;14946;22891;22283;29836;27783
-67;'246;Finland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4226.31;3962;4106;4725;7549;8392;7262
-67;'246;Finland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271008.22;300256;277029;292351;268050;344902;353668
-67;'246;Finland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440242.87;480159;464191;434545;418403;527262;500923
-67;'246;Finland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4312.83;4595;3128;4257;3307;4350;2948
-67;'246;Finland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31056.62;36954;31979;26813;25448;31026;24272
-67;'246;Finland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44272.83;49631;45734;43316;41631;56207;53118
-67;'246;Finland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120730.08;144910;128585;127958;129446;135473;124270
-67;'246;Finland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45551.33;47838;46595;50570;41702;59443;73254
-67;'246;Finland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114654.43;121791;115873;102261;88645;118856;117255
-67;'246;Finland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92413.99;103822;89091;102970;96086;114190;111110
-67;'246;Finland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18466.43;18999;24131;24462;28996;39438;34777
-67;'246;Finland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84457.24;94370;92481;91238;85324;110712;113238
-67;'246;Finland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155335.31;157505;163623;153051;145868;202469;200349
-68;'250;France;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17623535.21;19305540;18504404;18530880;23395635;25509505;22870450
-68;'250;France;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10657002.61;11431338;10453517;10070815;12546937;13855719;12422262
-68;'250;France;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;202017;205410;251864;329018;352650;388606;419307;599495;775772;817377;875948;1043874;1375809;2148233;1685576;2096874;2104400;2237588;2893583;3570941;3042622;2702513;2829439;2827734;2888825;3698846;4556705;5369201;5662545;6318091;5861176;6762945;5124296;6166716;8231980;5404875;5866291;7684072;7430325;7893177;6936126;7031892;8175987;9086194;9068752;9629217;11564585;11793892;8735069;9911488;10687496;9151214;9440951;9447798;7939695;7793411;8253075.37;9130919;8228410;8449252;10889878;12160538;10557559
-68;'250;France;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;169049;163067;160442;177511;185371;184350;183607;222725;244179;313359;345378;411333;604235;931704;742217;887878;1040299;1202618;1431734;1529128;1351653;1239262;1311884;1498263;1642979;1953087;2638807;2996789;3336581;3707862;3851676;4562163;3515672;4427743;5867121;4249202;4663712;5726418;5681460;5853806;5212348;5318509;6325444;7233645;7346859;7699434;8625841;8752174;6703568;7531823;8431490;7292650;7350005;7420644;6389340;6183335;6469260.84;6873564;5982196;5872215;7654126;8500321;7295860
-68;'250;France;1861;Roundwood;5516;Production;m3;33933000;33523000;33097000;33769000;32416000;38451000;37157000;35682000;32637000;37853000;36988000;36807000;39724000;40290000;36831000;36168000;37391000;37127000;37908000;38766000;37251000;36781000;38057000;38145000;38277000;39239000;40494000;61239510;64011340;68128000;68821000;68689000;64550000;65625000;65772000;62622000;62903000;62314000;61728000;70522000;64320000;59301000;56980000;57269000;52498737;53266796;50048654;49365100;52080771;56058900;50654152;49869180;52288174;49376288;50419331;52184919;50256656;49868834;49666627;47351869;53138615;49821000;49770000
-68;'250;France;1861;Roundwood;5616;Import quantity;m3;2310600;2152900;2131400;2539700;2246800;2333900;2387500;2413900;2960600;2887300;2526900;2663300;2845000;2996000;2473500;2846200;2525300;2266300;2417300;2539000;2023600;1783600;1617400;1497400;1462000;1329000;1242000;1213000;1083000;1350581;1853381;1845307;1333650;2025600;2350500;1576900;1797600;1996200;2175665;2043152;2008815;2019441;2281159;2213819;2393854;2645661;3229704;2393142;1542880;1733081;1512633;1438825;1357377;1722566;1521197;1654521;1429724;1350775;1440453;1125672;1182857;1363843;1250415
-68;'250;France;1861;Roundwood;5622;Import value;1000 USD;76017;68758;74873;102124;92218;95195;94449;105613;134073;117856;127084;162031;242487;277898;213912;310687;267550;250766;331866;428096;285803;230207;200542;186193;177905;210060;211207;213151;204475;273797;273578;382252;216314;330953;374300;265708;263647;294067;287745;278808;248124;227488;273519;286365;289203;310415;431675;380379;193699;206400;200526;155438;154142;192742;144179;159945;150194.95;163082;152552;164827;147613;179872;163423
-68;'250;France;1861;Roundwood;5916;Export quantity;m3;2265500;2388600;2157700;2082700;1934100;1932800;1826800;1639100;2058800;2390200;2531800;2478600;2726600;2779600;2335000;2220800;2507600;2477000;2520900;2753400;2877800;2898000;2995000;3319000;4271000;5104000;4528000;4674000;5463000;5043144;4873085;3956094;2418100;2884900;2976900;2743300;2815600;3257500;3441819;5859116;5429191;4618873;4519279;4268582;4325471;4254589;4467266;4002983;5637345;7478314;7228337;5328873;5490495;5054576;5021326;4551568;4641697;4650669;4364208;4032250;4568118;4792706;4218968
-68;'250;France;1861;Roundwood;5922;Export value;1000 USD;37422;38503;35303;35926;35821;36634;33150;30747;37586;45417;49084;55732;78062;112923;96006;97051;127008;153930;186395;221277;170944;143757;143315;152665;191802;261274;297156;352683;380386;426904;379037;382269;234215;271519;307919;283797;263004;303685;294760;399799;279184;226549;255821;278896;278834;313720;395690;372469;321941;426673;490324;349445;370258;398737;342612;318055;363071.02;410126;362202;420306;442698;539769;468037
-68;'250;France;1862;Roundwood, coniferous;5516;Production;m3;13552000;14008000;12922000;13856000;13768000;16935000;16740000;16350000;16449000;17393000;17160000;17477000;18182000;18119000;16582000;16598000;17284000;17261000;17580000;18069000;17785000;17676000;19227000;19431000;19318000;20105000;20690000;20622700;21867530;21392000;20859000;20504000;19185000;20933000;21652000;20054000;20762000;21230000;21363000;29410000;25951000;22839000;20932000;21474000;20600098;21440546;21657179;20138700;23218668;23724400;21812104;19030524;19265889;19434335;18922878;19046719;19206683;19342437;19355073;18610676;20965795;19717000;19570000
-68;'250;France;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142674;1109571;1170158;877683;972288;1134555;1027649
-68;'250;France;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102609.81;109983;101327;111112;91373;116206;98699
-68;'250;France;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2335393;2312798;2099892;1790153;1926056;1971886;1801688
-68;'250;France;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131213.65;138244;114172;142748;134048;146423;134124
-68;'250;France;1863;Roundwood, non-coniferous;5516;Production;m3;20381000;19515000;20175000;19913000;18648000;21516000;20417000;19332000;16188000;20460000;19828000;19330000;21542000;22171000;20249000;19570000;20107000;19866000;20328000;20697000;19466000;19105000;18830000;18714000;18959000;19134000;19804000;40616810;42143810;46736000;47962000;48185000;45365000;44692000;44120000;42568000;42141000;41084000;40365000;41112000;38369000;36462000;36048000;35795000;31898639;31826250;28391475;29226400;28862103;32334500;28842048;30838656;33022285;29941953;31496453;33138200;31049973;30526397;30311554;28741193;32172820;30104000;30200000
-68;'250;France;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287050;241204;270295;247989;210569;229288;222766
-68;'250;France;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47585.14;53099;51225;53715;56240;63666;64724
-68;'250;France;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2306304;2337871;2264316;2242097;2642062;2820820;2417280
-68;'250;France;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231857.36;271882;248030;277558;308650;393346;333913
-68;'250;France;1864;Wood fuel;5516;Production;m3;12030000;11190000;11500000;10500000;9000000;15000000;13700000;12600000;8600000;11400000;10900000;10300000;10000000;10100000;10100000;10100000;9800000;9800000;9800000;9800000;9800000;9800000;9800000;9800000;9800000;9800000;9800000;28627510;29735340;36929000;38503000;39403000;37953000;36397000;35567000;35029000;33979000;32890000;31873000;31046000;30528000;29917000;29521000;29082000;24555016;24675001;20232000;21714000;23000000;26756000;22267000;24924000;27837000;23626000;25421000;27099000;24896000;24148187;24219000;23332376;26950000;24173000;24500000
-68;'250;France;1864;Wood fuel;5616;Import quantity;m3;9600;11500;23500;6200;9400;13100;16500;15300;16400;26300;35700;23400;25500;24700;27100;2000;300;1000;2600;300;900;900;400;400;1000;2000;5000;7000;7000;6000;17000;16302;19300;12400;5500;4100;9500;16600;21665;30960;15224;26720;31190;38760;49920;44497;48327;34911;39422;43238;58249;70657;113352;210811;172097;210185;207499;207342;177903;182191;197693;187224;186973
-68;'250;France;1864;Wood fuel;5622;Import value;1000 USD;107;124;181;57;98;123;158;147;176;212;299;238;343;489;566;100;27;53;54;10;27;15;7;8;20;144;167;505;314;368;530;499;751;515;668;534;752;2113;2758;2913;1478;1238;1484;3081;2799;3393;5015;5538;5095;4985;8266;8115;14502;29540;20195;15955;13238.68;15433;16855;21633;14761;19851;16993
-68;'250;France;1864;Wood fuel;5916;Export quantity;m3;402700;448500;461000;266000;183700;159700;150400;122600;140200;118100;105000;83500;62100;85300;82000;84000;82900;55300;60900;96400;96100;58600;48000;47000;65000;66000;45000;43000;47000;44000;98100;123563;120100;391900;460900;346400;373000;400300;348819;336678;313057;375053;408311;418081;463826;559660;501321;456268;589976;813770;848153;757866;750466;656755;710767;551505;549265;585060;487512;449484;435136;606905;551602
-68;'250;France;1864;Wood fuel;5922;Export value;1000 USD;3034;3668;4112;2022;1297;1134;1017;833;978;1058;995;808;705;1658;1739;1567;1516;1168;1300;3360;2763;1454;1055;918;1235;1591;1333;1514;1569;1841;4550;6272;6152;13082;17727;11511;11833;11121;9691;7255;6651;7359;9637;11227;13270;18831;21237;20785;24138;31312;38447;25015;25414;26323;26841;22852;22110.21;23591;21493;24220;21138;36515;36618
-68;'250;France;1627;Wood fuel, coniferous;5516;Production;m3;1000000;1000000;1000000;1000000;1000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;4000000;2862700;2973530;3693000;3850000;3940000;3795000;3640000;3557000;3503000;3398000;3289000;3187000;3105000;3053000;2992000;2952000;2908000;2455500;2467500;2023000;2171000;2300000;2676000;2227000;2492000;2784000;2363000;2542000;2710000;2490000;2414819;2419000;2332376;2695000;2417000;2500000
-68;'250;France;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183958;187822;147634;158966;177803;156005;154103
-68;'250;France;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10703.91;12357;10373;16549;10944;15004;11957
-68;'250;France;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434644;476211;384265;353751;299915;401876;384890
-68;'250;France;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16743.13;18816;16250;18484;13142;21987;21712
-68;'250;France;1628;Wood fuel, non-coniferous;5516;Production;m3;11030000;10190000;10500000;9500000;8000000;11000000;9700000;8600000;4600000;7400000;6900000;6300000;6000000;6100000;6100000;6100000;5800000;5800000;5800000;5800000;5800000;5800000;5800000;5800000;5800000;5800000;5800000;25764810;26761810;33236000;34653000;35463000;34158000;32757000;32010000;31526000;30581000;29601000;28686000;27941000;27475000;26925000;26569000;26174000;22099516;22207501;18209000;19543000;20700000;24080000;20040000;22432000;25053000;21263000;22879000;24389000;22406000;21733368;21800000;21000000;24255000;21756000;22000000
-68;'250;France;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23541;19520;30269;23225;19890;31219;32870
-68;'250;France;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2534.76;3076;6482;5084;3817;4847;5036
-68;'250;France;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114621;108849;103247;95733;135221;205029;166712
-68;'250;France;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5367.08;4775;5243;5736;7996;14528;14906
-68;'250;France;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;9600;11500;23500;6200;9400;13100;16500;15300;16400;26300;35700;23400;25500;24700;27100;2000;300;1000;2600;300;900;900;400;400;1000;2000;5000;7000;7000;6000;17000;16302;19300;12400;5500;4100;9500;16600;21665;30960;15224;26720;31190;38760;49920;44497;48327;34911;39422;43238;58249;70657;113352;210811;172097;210185;;;;;;;
-68;'250;France;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;107;124;181;57;98;123;158;147;176;212;299;238;343;489;566;100;27;53;54;10;27;15;7;8;20;144;167;505;314;368;530;499;751;515;668;534;752;2113;2758;2913;1478;1238;1484;3081;2799;3393;5015;5538;5095;4985;8266;8115;14502;29540;20195;15955;;;;;;;
-68;'250;France;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;402700;448500;461000;266000;183700;159700;150400;122600;140200;118100;105000;83500;62100;85300;82000;84000;82900;55300;60900;96400;96100;58600;48000;47000;65000;66000;45000;43000;47000;44000;98100;123563;120100;391900;460900;346400;373000;400300;348819;336678;313057;375053;408311;418081;463826;559660;501321;456268;589976;813770;848153;757866;750466;656755;710767;551505;;;;;;;
-68;'250;France;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;3034;3668;4112;2022;1297;1134;1017;833;978;1058;995;808;705;1658;1739;1567;1516;1168;1300;3360;2763;1454;1055;918;1235;1591;1333;1514;1569;1841;4550;6272;6152;13082;17727;11511;11833;11121;9691;7255;6651;7359;9637;11227;13270;18831;21237;20785;24138;31312;38447;25015;25414;26323;26841;22852;;;;;;;
-68;'250;France;1865;Industrial roundwood;5516;Production;m3;21903000;22333000;21597000;23269000;23416000;23451000;23457000;23082000;24037000;26453000;26088000;26507000;29724000;30190000;26731000;26068000;27591000;27327000;28108000;28966000;27451000;26981000;28257000;28345000;28477000;29439000;30694000;32612000;34276000;31199000;30318000;29286000;26597000;29228000;30205000;27593000;28924000;29424000;29855000;39476000;33792000;29384000;27459000;28187000;27943721;28591795;29816654;27651100;29080771;29302900;28387152;24945180;24451174;25750288;24998331;25085919;25360656;25720647;25447627;24019493;26188615;25648000;25270000
-68;'250;France;1865;Industrial roundwood;5616;Import quantity;m3;2301000;2141400;2107900;2533500;2237400;2320800;2371000;2398600;2944200;2861000;2491200;2639900;2819500;2971300;2446400;2844200;2525000;2265300;2414700;2538700;2022700;1782700;1617000;1497000;1461000;1327000;1237000;1206000;1076000;1344581;1836381;1829005;1314350;2013200;2345000;1572800;1788100;1979600;2154000;2012192;1993591;1992721;2249969;2175059;2343934;2601164;3181377;2358231;1503458;1689843;1454384;1368168;1244025;1511755;1349100;1444336;1222225;1143433;1262550;943481;985164;1176619;1063442
-68;'250;France;1865;Industrial roundwood;5622;Import value;1000 USD;75910;68634;74692;102067;92120;95072;94291;105466;133897;117644;126785;161793;242144;277409;213346;310587;267523;250713;331812;428086;285776;230192;200535;186185;177885;209916;211040;212646;204161;273429;273048;381753;215563;330438;373632;265174;262895;291954;284987;275895;246646;226250;272035;283284;286404;307022;426660;374841;188604;201415;192260;147323;139640;163202;123984;143990;136956.28;147649;135697;143194;132852;160021;146430
-68;'250;France;1865;Industrial roundwood;5916;Export quantity;m3;1862800;1940100;1696700;1816700;1750400;1773100;1676400;1516500;1918600;2272100;2426800;2395100;2664500;2694300;2253000;2136800;2424700;2421700;2460000;2657000;2781700;2839400;2947000;3272000;4206000;5038000;4483000;4631000;5416000;4999144;4774985;3832531;2298000;2493000;2516000;2396900;2442600;2857200;3093000;5522438;5116134;4243820;4110968;3850501;3861645;3694929;3965945;3546715;5047369;6664544;6380184;4571007;4740029;4397821;4310559;4000063;4092432;4065609;3876696;3582766;4132982;4185801;3667366
-68;'250;France;1865;Industrial roundwood;5922;Export value;1000 USD;34388;34835;31191;33904;34524;35500;32133;29914;36608;44359;48089;54924;77357;111265;94267;95484;125492;152762;185095;217917;168181;142303;142260;151747;190567;259683;295823;351169;378817;425063;374487;375997;228063;258437;290192;272286;251171;292564;285069;392544;272533;219190;246184;267669;265564;294889;374453;351684;297803;395361;451877;324430;344844;372414;315771;295203;340960.81;386535;340709;396086;421560;503254;431419
-68;'250;France;1866;Industrial roundwood, coniferous;5516;Production;m3;12552000;13008000;11922000;12856000;12768000;12935000;12740000;12350000;12449000;13393000;13160000;13477000;14182000;14119000;12582000;12598000;13284000;13261000;13580000;14069000;13785000;13676000;15227000;15431000;15318000;16105000;16690000;17760000;18894000;17699000;17009000;16564000;15390000;17293000;18095000;16551000;17364000;17941000;18176000;26305000;22898000;19847000;17980000;18566000;18144598;18973046;19634179;17967700;20918668;21048400;19585104;16538524;16481889;17071335;16380878;16336719;16716683;16927618;16936073;16278300;18270795;17300000;17070000
-68;'250;France;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285350;830982;482000;386100;490000;566000;350000;403100;379200;528000;628012;771560;854158;1096879;1201818;1390805;1693041;2147412;1477795;1044428;1267041;1097397;1016481;921328;1190927;1026557;1129644;958716;921749;1022524;718717;794485;978550;873546
-68;'250;France;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19345;46219;35620;19791;24974;34842;24177;25690;26264;28391;30337;33832;39272;56378;63461;76574;106066;170452;127248;72057;93042;93757;69303;69904;95495;63667;79276;91905.9;97626;90954;94563;80429;101202;86742
-68;'250;France;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1349550;1289651;656000;351800;469000;436000;430000;433600;595800;927000;2745801;3162520;2241573;2174386;2102632;2138213;2046735;2148060;1944953;3496494;4953465;4765725;2730652;2760384;2263951;2091045;2006201;1900749;1836587;1715627;1436402;1626141;1570010;1416798
-68;'250;France;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70694;61854;49873;22496;28916;31483;29971;25615;34559;43847;86752;94657;66381;81436;81667;84255;93338;121006;117514;132825;200238;234541;154610;168919;154628;120796;116127;114470.53;119428;97922;124264;120906;124436;112412
-68;'250;France;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285350;830982;482000;386100;490000;566000;350000;403100;379200;528000;628012;771560;854158;1096879;1201818;1390805;1693041;2147412;1477795;1044428;1267041;1097397;1016481;921328;1190927;1026557;1129644;958716;921749;1022524;718717;794485;978550;873546
-68;'250;France;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19345;46219;35620;19791;24974;34842;24177;25690;26264;28391;30337;33832;39272;56378;63461;76574;106066;170452;127248;72057;93042;93757;69303;69904;95495;63667;79276;91905.9;97626;90954;94563;80429;101202;86742
-68;'250;France;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1349550;1289651;656000;351800;469000;436000;430000;433600;595800;927000;2745801;3162520;2241573;2174386;2102632;2138213;2046735;2148060;1944953;3496494;4953465;4765725;2730652;2760384;2263951;2091045;2006201;1900749;1836587;1715627;1436402;1626141;1570010;1416798
-68;'250;France;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70694;61854;49873;22496;28916;31483;29971;25615;34559;43847;86752;94657;66381;81436;81667;84255;93338;121006;117514;132825;200238;234541;154610;168919;154628;120796;116127;114470.53;119428;97922;124264;120906;124436;112412
-68;'250;France;1867;Industrial roundwood, non-coniferous;5516;Production;m3;9351000;9325000;9675000;10413000;10648000;10516000;10717000;10732000;11588000;13060000;12928000;13030000;15542000;16071000;14149000;13470000;14307000;14066000;14528000;14897000;13666000;13305000;13030000;12914000;13159000;13334000;14004000;14852000;15382000;13500000;13309000;12722000;11207000;11935000;12110000;11042000;11560000;11483000;11679000;13171000;10894000;9537000;9479000;9621000;9799123;9618749;10182475;9683400;8162103;8254500;8802048;8406656;7969285;8678953;8617453;8749200;8643973;8793029;8511554;7741193;7917820;8348000;8200000
-68;'250;France;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059231;1005399;1347005;928250;1523200;1779000;1222800;1385000;1600400;1626000;1384180;1222031;1138563;1153090;973241;953129;908123;1033965;880436;459030;422802;356987;351687;322697;320828;322543;314692;263509;221684;240026;224764;190679;198069;189896
-68;'250;France;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254084;226829;346133;195772;305464;338790;240997;237205;265690;256596;245558;212814;186978;215657;219823;209830;200956;256208;247593;116547;108373;98503;78020;69736;67707;60317;64714;45050.38;50023;44743;48631;52423;58819;59688
-68;'250;France;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649594;3485334;3176531;1946200;2024000;2080000;1966900;2009000;2261400;2166000;2776637;1953614;2002247;1936582;1747869;1723432;1648194;1817885;1601762;1550875;1711079;1614459;1840355;1979645;2133870;2219514;1993862;2191683;2229022;2161069;2146364;2506841;2615791;2250568
-68;'250;France;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354369;312633;326124;205567;229521;258709;242315;225556;258005;241222;305792;177876;152809;164748;186002;181309;201551;253447;234170;164978;195123;217336;169820;175925;217786;194975;179076;226490.28;267107;242787;271822;300654;378818;319007
-68;'250;France;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908262;819801;821005;396250;486200;475000;618000;675000;781400;757000;837283;736099;644481;579135;506618;483039;438567;443301;370484;224432;183658;145862;121033;96312;72904;79374;72695;52267;53740;49340;36085;46396;44408;39640
-68;'250;France;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229827;203848;226774;111186;158620;158499;177660;176477;199257;181592;174505;151516;140981;151496;160575;157655;144463;179833;169270;81963;74060;64086;51948;41077;33199;29746;27740;20229.26;22850;19718;19753;28447;27641;24305
-68;'250;France;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26200;60000;41000;16000;9000;31900;50000;35851;29255;24945;28140;24811;23977;16728;13258;8137;3106;4661;2750;1896;4949;4841;4793;2905;3062;7832;4059;3062;1914;3148;3925
-68;'250;France;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4018;3521;2623;2657;3329;3672;6768;9415;11007;10750;12323;13876;15755;11093;10926;7561;2304;3818;2454;1119;2392;2527;2343;1619;1226.75;1667;1134;700;663;1178;2006
-68;'250;France;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150969;185598;526000;532000;1037000;1304000;604800;710000;819000;869000;546897;485932;494082;573955;466623;470090;469556;590664;509952;234598;239144;211125;230654;226385;247924;243169;241997;211242;167944;190686;188679;144283;153661;150256
-68;'250;France;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24257;22981;119359;84586;146844;180291;63337;60728;66433;75004;71053;61298;45997;64161;59248;52175;56493;76375;78323;34584;34313;34417;26072;28659;34508;30571;36974;24821.13;27173;25025;28878;23976;31178;35383
-68;'250;France;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649594;3485334;3176531;1920000;1964000;2039000;1950900;2000000;2229500;2116000;2740786;1924359;1977302;1908442;1723058;1699455;1631466;1804627;1593625;1547769;1706418;1611709;1838459;1974696;2129029;2214721;1990957;2188621;2221190;2157010;2143302;2504927;2612643;2246643
-68;'250;France;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354369;312633;326124;201549;226000;256086;239658;222227;254333;234454;296377;166869;142059;152425;172126;165554;190458;242521;226609;162674;191305;214882;168701;173533;215259;192632;177457;225263.54;265440;241653;271122;299991;377640;317001
-68;'250;France;1868;Sawlogs and veneer logs;5516;Production;m3;16305000;16091000;15779000;16184000;16121000;16326000;16224000;15932000;16132000;17113000;17428000;17978000;20260000;19538000;16651000;16771000;17650000;17972000;18587000;18920000;17948000;17755000;18611000;18519000;18713000;19260000;20401000;22410000;22916000;22035000;20583000;19345000;17771000;18960000;19585000;18512000;19078000;19815000;19988000;27972000;22873000;19388000;17925000;18020000;17784786;18591352;19666553;18187000;19040337;17828000;18035175;15656789;15921938;16621705;16172000;16411000;16699253;17223177;16810278;15811753;17897000;17198000;17200000
-68;'250;France;1868;Sawlogs and veneer logs;5616;Import quantity;m3;998000;975100;1085100;1405700;1280100;1371400;1398700;1600200;1830500;1539100;1650500;1898000;2250000;2140000;1775800;2206200;1959700;1730400;1872400;1890900;1568700;1414000;1428000;1345000;1212000;1188000;1083000;1071000;1026000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;51184;48448;57945;81641;74572;79661;77559;91212;114931;91938;105008;142589;224867;238098;174064;275484;235088;218496;299416;382520;251639;206292;190119;180101;168794;203406;202046;203562;200394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1085200;1021000;921700;906200;866400;921300;869400;807400;850300;938900;1006500;1017000;1106000;996900;778700;735300;916300;894200;837200;935200;924900;817000;950000;1210000;1383000;1415000;1495000;2364000;2723000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;25399;23898;22075;23128;23727;24637;22517;21853;24696;28748;31159;36555;55284;76208;58287;61318;89859;114016;131706;149816;105055;82306;88863;103537;122668;159427;196716;275735;289841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;9330000;9162000;8755000;9064000;9027000;9139000;9109000;8903000;9106000;9620000;9618000;9986000;10893000;10459000;8769000;9085000;9667000;9730000;10257000;10536000;10125000;10067000;10976000;10968000;10788000;11111000;11608000;12730000;13176000;13002000;11948000;11318000;10633000;11737000;12224000;11614000;12112000;12828000;12924000;19395000;16097000;14076000;12868000;13005000;12608188;13413805;14054597;12816000;14415398;13300000;13155587;11243465;11611973;12003887;11611000;11631000;11997355;12398092;12100000;11600000;13451000;12491000;12500000
-68;'250;France;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;2400;9000;4600;3800;2300;1800;47800;120700;12900;7400;24700;41800;47000;115800;271000;304000;185900;101500;111000;114500;106400;78700;64000;52000;74000;68000;75000;90000;82000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;59;222;135;112;73;69;885;2244;400;214;724;2458;1810;5315;12764;14884;10704;7540;9036;9600;7539;4223;2769;2296;3030;3906;4664;5888;5022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;387400;374300;308300;252300;204100;225800;189000;122700;160100;179900;176900;158300;193000;148000;124000;85000;125100;135900;112400;135000;116600;109300;180000;241000;166000;191000;191000;193000;362000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;6272;6090;4569;3763;3141;3412;2594;1751;2450;2896;3002;2774;4504;5762;3893;3254;5665;6555;6438;9145;6603;5371;7120;8953;6622;10272;11993;20356;19302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6975000;6929000;7024000;7120000;7094000;7187000;7115000;7029000;7026000;7493000;7810000;7992000;9367000;9079000;7882000;7686000;7983000;8242000;8330000;8384000;7823000;7688000;7635000;7551000;7925000;8149000;8793000;9680000;9740000;9033000;8635000;8027000;7138000;7223000;7361000;6898000;6966000;6987000;7064000;8577000;6776000;5312000;5057000;5015000;5176598;5177547;5611956;5371000;4624939;4528000;4879588;4413324;4309965;4617818;4561000;4780000;4701898;4825085;4710278;4211753;4446000;4707000;4700000
-68;'250;France;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;995600;966100;1080500;1401900;1277800;1369600;1350900;1479500;1817600;1531700;1625800;1856200;2203000;2024200;1504800;1902200;1773800;1628900;1761400;1776400;1462300;1335300;1364000;1293000;1138000;1120000;1008000;981000;944000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;51125;48226;57810;81529;74499;79592;76674;88968;114531;91724;104284;140131;223057;232783;161300;260600;224384;210956;290380;372920;244100;202069;187350;177805;165764;199500;197382;197674;195372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;697800;646700;613400;653900;662300;695500;680400;684700;690200;759000;829600;858700;913000;848900;654700;650300;791200;758300;724800;800200;808300;707700;770000;969000;1217000;1224000;1304000;2171000;2361000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;19127;17808;17506;19365;20586;21225;19923;20102;22246;25852;28157;33781;50780;70446;54394;58064;84194;107461;125268;140671;98452;76935;81743;94584;116046;149155;184723;255379;270539;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9198000;9459000;11091000;10529000;9610000;9127000;9785000;9767884;9567316;9821673;9107800;9708228;11154000;9843717;8742483;7880366;8523644;8289900;8152519;8068756;7847417;8054392;7738180;7727455;7891000;7500000
-68;'250;France;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960000;5103000;6749000;6664000;5604000;4911000;5392000;5376493;5391028;5485557;5031800;6424079;7631000;6220537;5013194;4536766;4751028;4470000;4431319;4407694;4293197;4572575;4473620;4524815;4559000;4300000
-68;'250;France;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238000;4356000;4342000;3865000;4006000;4216000;4393000;4391391;4176288;4336116;4076000;3284149;3523000;3623180;3729289;3343600;3772616;3819900;3721200;3661062;3554220;3481817;3264560;3202640;3332000;3200000
-68;'250;France;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1287700;1153000;1012100;1108400;942200;936300;943000;743100;1058400;1243600;757000;663500;487100;690400;516000;485000;450200;427800;488600;596100;377100;293700;135000;111000;218000;111000;126000;110000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;24276;19790;16469;19924;17100;15013;15705;12219;16811;22779;18357;15666;12981;30500;29025;24369;23634;21912;27270;39534;26738;18254;6592;3214;6846;3906;5663;6056;785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;416400;571900;526000;732800;720200;671600;713500;632200;973700;1237800;1337600;1340500;1507500;1636000;1412000;1355000;1450100;1485400;1571600;1680400;1790800;1958900;1928000;1995000;2751000;3586000;2946000;2202000;2607000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;4006;5830;5159;7489;7454;7071;7501;6399;9819;13279;14402;16826;20025;31705;30194;30542;30986;34188;44869;62491;54247;52744;45091;41094;60380;96061;93777;68200;81444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1870;Pulpwood and particles (1961-1997);5516;Production;m3;3207000;3416000;3169000;4798000;5008000;5029000;5430000;5451000;6325000;7811000;7174000;7255000;8214000;9401000;8814000;8397000;8686000;8466000;8605000;9187000;8509000;8419000;8974000;9218000;9160000;9599000;9722000;9722000;10812000;8708000;9275000;9517000;8315000;9852000;10225000;8697000;9430000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1287700;1153000;1012100;1108400;942200;936300;943000;743100;1058400;1243600;757000;663500;487100;690400;516000;485000;450200;427800;488600;596100;377100;293700;135000;111000;218000;111000;126000;110000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;24276;19790;16469;19924;17100;15013;15705;12219;16811;22779;18357;15666;12981;30500;29025;24369;23634;21912;27270;39534;26738;18254;6592;3214;6846;3906;5663;6056;785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;416400;571900;526000;732800;720200;671600;713500;632200;973700;1237800;1337600;1340500;1507500;1636000;1412000;1355000;1450100;1485400;1571600;1680400;1790800;1958900;1928000;1995000;2751000;3586000;2946000;2202000;2607000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;4006;5830;5159;7489;7454;7071;7501;6399;9819;13279;14402;16826;20025;31705;30194;30542;30986;34188;44869;62491;54247;52744;45091;41094;60380;96061;93777;68200;81444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1904000;2097000;1911000;2453000;2454000;2577000;2653000;2542000;2511000;3036000;2787000;2894000;2734000;3102000;3209000;2970000;3012000;2962000;2788000;3055000;3177000;3195000;3877000;4130000;4207000;4717000;4810000;4810000;5438000;4440000;4800000;5017000;4466000;5318000;5674000;4751000;5083000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1303000;1319000;1258000;2345000;2554000;2452000;2777000;2909000;3814000;4775000;4387000;4361000;5480000;6299000;5605000;5427000;5674000;5504000;5817000;6132000;5332000;5224000;5097000;5088000;4953000;4882000;4912000;4912000;5374000;4268000;4475000;4500000;3849000;4534000;4551000;3946000;4347000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1871;Other industrial roundwood;5516;Production;m3;2391000;2826000;2649000;2287000;2287000;2096000;1803000;1699000;1580000;1529000;1486000;1274000;1250000;1251000;1266000;900000;1255000;889000;916000;859000;994000;807000;672000;608000;604000;580000;571000;480000;548000;456000;460000;424000;511000;416000;395000;384000;416000;411000;408000;413000;390000;386000;407000;382000;391051;433127;328428;356300;332206;320900;508260;545908;648870;604939;536431;522400;592647;650053;582957;469560;564160;559000;570000
-68;'250;France;1871;Other industrial roundwood;5616;Import quantity;m3;15300;13300;10700;19400;15100;13100;29300;55300;55300;78300;83700;78400;82400;140900;154600;153000;115100;107100;53700;51700;76900;75000;54000;41000;31000;28000;28000;25000;27000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1871;Other industrial roundwood;5622;Import value;1000 USD;450;396;278;502;448;398;1027;2035;2155;2927;3420;3538;4296;8811;10257;10734;8801;10305;5126;6032;7399;5646;3824;2870;2245;2604;3331;3028;2982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1871;Other industrial roundwood;5916;Export quantity;m3;361200;347200;249000;177700;163800;180200;93500;76900;94600;95400;82700;37600;51000;61400;62300;46500;58300;42100;51200;41400;66000;63500;69000;67000;72000;37000;42000;65000;86000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1871;Other industrial roundwood;5922;Export value;1000 USD;4983;5107;3957;3287;3343;3792;2115;1662;2093;2332;2528;1543;2048;3352;5786;3624;4647;4558;8520;5610;8879;7253;8306;7116;7519;4195;5330;7234;7532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1318000;1749000;1256000;1339000;1287000;1219000;978000;905000;832000;737000;755000;597000;555000;558000;604000;543000;605000;569000;535000;478000;483000;414000;374000;333000;323000;277000;272000;220000;280000;257000;261000;229000;291000;238000;197000;186000;169000;153000;149000;161000;137000;167000;201000;169000;159917;168213;94025;119900;79191;117400;208980;281865;333150;316420;299878;274400;311634;236329;263498;204680;294980;250000;270000
-68;'250;France;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1073000;1077000;1393000;948000;1000000;877000;825000;794000;748000;792000;731000;677000;695000;693000;662000;357000;650000;320000;381000;381000;511000;393000;298000;275000;281000;303000;299000;260000;268000;199000;199000;195000;220000;178000;198000;198000;247000;258000;259000;252000;253000;219000;206000;213000;231134;264914;234403;236400;253015;203500;299280;264043;315720;288519;236553;248000;281013;413724;319459;264880;269180;309000;300000
-68;'250;France;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;15300;13300;10700;19400;15100;13100;29300;55300;55300;78300;83700;78400;82400;140900;154600;153000;115100;107100;53700;51700;76900;75000;54000;41000;31000;28000;28000;25000;27000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;450;396;278;502;448;398;1027;2035;2155;2927;3420;3538;4296;8811;10257;10734;8801;10305;5126;6032;7399;5646;3824;2870;2245;2604;3331;3028;2982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;361200;347200;249000;177700;163800;180200;93500;76900;94600;95400;82700;37600;51000;61400;62300;46500;58300;42100;51200;41400;66000;63500;69000;67000;72000;37000;42000;65000;86000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;4983;5107;3957;3287;3343;3792;2115;1662;2093;2332;2528;1543;2048;3352;5786;3624;4647;4558;8520;5610;8879;7253;8306;7116;7519;4195;5330;7234;7532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1630;Wood charcoal;5510;Production;t;86648;86662;87075;82388;82902;79215;78729;75942;73155;66369;65483;70604;72366;70340;72590;68932;63550;65484;52433;48303;48721;43214;29495;37741;41855;48837;58907;66428;66013;69017;82580;85146;79738;82658;78674;72989;69037;111000;111500;60000;60000;70000;50000;52000;51000;51000;51000;55000;54550;51000;50000;45000;45000;40000;35000;35000;35000;40000;40000;50000;50000;50000;50000
-68;'250;France;1630;Wood charcoal;5610;Import quantity;t;1600;1500;1300;1200;2500;4000;2700;5300;9100;17700;18700;13100;12300;16400;14800;18000;21100;19000;31900;36200;34800;41800;57000;47000;43000;38000;28000;21000;26000;24000;13000;15161;19000;19000;22000;24000;28500;41700;25000;27746;31059;26471;42173;49249;53394;44402;70525;61914;68957;87991;84837;94549;90398;104717;115604;97360;80142;127883;90038;106029;80947;79686;72241
-68;'250;France;1630;Wood charcoal;5622;Import value;1000 USD;144;155;143;135;233;277;258;467;540;962;1540;1369;1280;3922;2733;2606;3465;3973;6700;10295;9928;9043;9756;11134;11896;9837;7995;6898;8160;7918;3910;5389;6477;6046;6119;6892;7254;11208;9507;9210;9985;9990;19432;23189;23614;24560;35703;41671;43465;56699;57939;49115;53619;57068;53918;53363;54942.21;64298;60794;70592;64655;70195;64530
-68;'250;France;1630;Wood charcoal;5910;Export quantity;t;11500;11400;11600;6800;8600;6400;4600;4400;5400;7200;7300;6700;7800;9500;9000;9000;7000;7200;7400;7500;6300;7900;9000;7000;7000;9000;9000;10000;15000;16000;18100;22455;20000;23000;22000;18000;18500;20500;20000;16798;16794;16063;15476;18072;17757;14227;10633;6363;18774;19419;14089;15974;19765;17829;18173;15639;8124;7849;7450;9192;6912;10890;16159
-68;'250;France;1630;Wood charcoal;5922;Export value;1000 USD;713;830;809;537;691;631;441;442;540;805;1071;1103;1364;2181;2398;2454;2072;2578;2959;3501;2741;3060;3296;2411;2245;3617;4664;5047;6277;7550;7218;9624;7611;7787;10072;7700;7298;7804;6855;4987;5136;5442;6173;6953;6403;6149;5672;5736;9641;10036;9421;10310;12996;13215;10740;10936;7536.36;6716;8301;8880;8223;9408;17290
-68;'250;France;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11671427;11996000;12982000;12874000;12513000;12160000;12613000;13013000;13926288;14754525;13978084;12503478;12944987;18384429;22746663;26326025;26124240;25660061;13832190;14546883;14308000;13508000;13404115;16366217;16366217;16366217
-68;'250;France;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1294400;1050000;884344;810038;888378;989747;1224123;1465595;1441429;1508763;1399204;1221567;1174024;1377696;1266924;1192784;1582183;1526294;1394351;1407515;1876933;2406196;2509728;2094654;1876419;1538114
-68;'250;France;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48659;43317;24348;23111;26574;34295;46596;48094;58752;83929;71617;66475;72264;83748;95129;93417;132237;104064;65699;72225.38;83991;105233;163561;133604;187096;168890
-68;'250;France;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1318000;1568000;1810118;1660225;2173264;2558011;2148491;2049769;1836237;2100313;1860283;1661044;1773738;1813277;903877;1318659;1343743;1447297;926574;947418;892784;847653;699256;589716;822176;1016563
-68;'250;France;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42444;47199;45296;39381;44557;56692;59608;60740;71289;98054;92119;90252;95833;111108;63344;107772;92573;92672;42528;49123.23;58365;54572;66835;40235;65229;71138
-68;'250;France;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4768250;4682000;5216000;5033000;4970000;4943000;5161000;5544000;5918415;6141871;5681335;5164805;5051476;5041924;6383905;6047142;6000430;5739991;6163524;6174000;6084000;6342000;5752055;6941291;6941291;6941291
-68;'250;France;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;4000;30300;171400;103500;143900;267200;350700;262800;171000;157000;211000;200000;224000;297000;403000;404000;458000;528000;736573;662400;1043000;1236800;782400;918000;918400;623000;356876;412108;437790;436341;499083;644067;469822;504859;416097;482212;375729;508021;434924;495043;732657;665929;710318;786008;780147;706503;652814;513553;747803;561545
-68;'250;France;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;116;887;4738;2798;4613;10237;17368;9705;6442;4483;4936;4826;7812;11826;14468;14908;20255;22950;32187;29685;38065;66167;38255;33779;35156;30452;12211;13121;14481;16959;23676;21102;19837;27092;22203;22802;27528;35238;32729;36446;47425;34768;38133;41254.54;42106;37858;55511;39923;73474;64163
-68;'250;France;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;118400;127300;107900;154400;143500;133500;162000;126500;135500;93000;117000;116000;212000;234000;348000;380000;331000;423000;430037;377600;322000;348800;409600;351000;398400;409000;568954;581975;939348;1307622;959176;808471;683952;787893;560944;494027;758555;616337;353877;596751;541355;442966;405221;480316;598996;539309;451222;312862;393955;327968
-68;'250;France;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;2131;2281;1788;2539;2808;2991;4950;3606;3443;1846;2066;2020;5497;6829;10262;10514;10680;12600;13634;11132;10381;15458;16423;10790;12138;12736;14444;11598;14134;20061;19889;19183;23424;35151;22052;22250;37885;41372;34177;38564;37558;32833;29481;37133.84;44342;39224;48670;19810;39766;32168
-68;'250;France;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5942000;6113000;6113000;6113000;4334000;6903177;7314000;7766000;7841000;7543000;7217000;7452000;7469000;8007873;8612654;8296749;7338673;7893511;13342505;16362758;20278883;20123810;19920070;7668666;8372883;8224000;7166000;7652060;9424926;9424926;9424926
-68;'250;France;1620;Wood residues;5616;Import quantity;m3;;;;16300;14700;17800;15500;25200;27300;32200;36600;71800;85000;97400;74200;93000;129500;90000;116700;63300;58800;50800;34000;38000;38000;35000;66000;89000;120000;145000;207000;229244;186000;251000;315000;397500;433300;376000;427000;527468;397930;450588;553406;725040;821528;971607;1003904;983107;739355;798295;869675;832000;697741;849526;860365;684033;621507;1096786;1699693;1856914;1581101;1128616;976569
-68;'250;France;1620;Wood residues;5622;Import value;1000 USD;;;;164;143;157;143;181;252;411;520;543;661;1215;890;1595;2245;1883;3078;2271;2126;1408;923;804;898;1447;2998;3533;3923;7181;8900;11056;6756;9319;13411;13265;14461;13503;12865;12137;9990;12093;17336;22920;26992;38915;56837;49414;43673;44736;48510;62400;56971;84812;69296;27566;30970.84;41885;67375;108050;93681;113622;104727
-68;'250;France;1620;Wood residues;5916;Export quantity;m3;;;;233500;255800;308300;301200;314700;300400;292400;263900;321900;402100;461000;407400;396500;352600;370900;361800;453600;459800;374000;390000;436000;527000;569000;614000;444000;470000;459000;874000;973148;687000;800000;811500;843000;842600;919600;1159000;1241164;1078250;1233916;1250389;1189315;1241298;1152285;1312420;1299339;1167017;1015183;1196940;550000;721908;802388;1004331;521353;467102;293788;308344;248034;276854;428221;688595
-68;'250;France;1620;Wood residues;5922;Export value;1000 USD;;;;3148;2826;3745;4049;4052;3859;6116;3005;4000;5224;7675;7000;6812;6312;6543;6813;12676;11273;8217;7120;7461;8642;12007;15158;9926;10200;12521;23305;24772;18123;22335;28504;26810;27960;30306;34463;30852;27783;30423;36631;39719;41557;47865;62903;70067;68002;57948;69736;29167;69208;55015;59839;13047;11989.39;14023;15348;18165;20425;25463;38970
-68;'250;France;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146322;167124
-68;'250;France;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12191;16608
-68;'250;France;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99200;85994
-68;'250;France;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9926;9177
-68;'250;France;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6382000;6382000;6382000;6382000;6382000;6382000;6382000
-68;'250;France;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722000;935000;1095000;1000000;1210000;1420000;1510000;1660000;1760000;1937000;2130000;2330000
-68;'250;France;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164848;231240;279821;311528;371600;497227;557545;584528;548344;808495;913179;1103049
-68;'250;France;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20651;38750;58675;51975;65959;74426.78;103370;122188;112905;169055;294806;334847
-68;'250;France;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219592;270138;229988;298686;232666;345107;385429;360157;286105;333699;334287;493992
-68;'250;France;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38915;56857;40999;46803;46251;53630.35;61152;38718;29079;40681;54129;47247
-68;'250;France;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;682000;890000;1050000;950000;1150000;1350000;1450000;1600000;1700000;1857000;2050000;2250000
-68;'250;France;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25632;92024;170632;157255;248861;271181;276615;407538;412381;661587;775833;1003750
-68;'250;France;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7583;25682;47504;40296;56137;58404.53;72415;106173;97962;150884;270949;313636
-68;'250;France;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101268;151814;123735;199097;191935;190678;196612;123568;96539;113000;90000;78510
-68;'250;France;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21312;39254;33121;39003;40069;44629.57;52711;32026;23581;30401;35665;29753
-68;'250;France;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;45000;45000;50000;60000;70000;60000;60000;60000;80000;80000;80000
-68;'250;France;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139216;139216;109189;154273;122739;226046;280930;176990;135963;146908;137346;99299
-68;'250;France;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13068;13068;11171;11679;9822;16022.25;30955;16015;14943;18171;23857;21211
-68;'250;France;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118324;118324;106253;99589;40731;154429;188817;236589;189566;220699;244287;415482
-68;'250;France;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17603;17603;7878;7800;6182;9000.79;8441;6692;5498;10280;18464;17494
-68;'250;France;1872;Sawnwood;5516;Production;m3;8307000;8242000;8379000;8795000;8523000;8625000;8725000;9089000;9586000;9711000;9789000;10398000;10925000;10300000;8733000;9113000;9339000;9296000;9664000;9719000;9016000;9049000;9005000;9038000;9087000;9318000;9612000;10248000;10655000;10960000;10974000;10488000;9132000;9649000;9848000;9600000;9607000;10219767;10236000;10536000;10518000;9815000;9539000;9774000;9715000;9992193;9965409;9343416;7885342;8315699;8675338;8067274;7901416;7696650;7514344;7893932;8159000;8094000;7813000;7575000;8581000;8614000;7900000
-68;'250;France;1872;Sawnwood;5616;Import quantity;m3;965800;991400;1412600;1664800;1585100;1617500;1726800;1785400;2098400;1966800;1891200;2069900;2681000;2338200;1602300;2694400;2391500;2321200;3202900;3429000;2601000;2600300;2365000;1926000;1969000;2213000;2481000;2653000;2407000;2317000;2245000;1955000;1841100;2107000;2104500;2213600;2381000;2837300;3166000;3341059;3327794;3301920;3525530;3829062;4023103;3995214;4630428;4030898;3530198;3834085;3398538;2729305;2565775;2502705;2439698;2620570;2719612;2806477;2765026;2714582;3121801;3164000;2720000
-68;'250;France;1872;Sawnwood;5622;Import value;1000 USD;53383;52033;74065;95668;97841;99891;98774;105711;135900;130991;130146;152242;270690;377486;227534;330588;380443;406259;629763;856918;563639;483399;413858;337474;340395;443703;583984;651404;637587;761034;698270;665244;525206;692781;754793;659728;725510;785715;752403;784469;724138;734203;912380;1085141;1188252;1308982;1688215;1543193;1143964;1239342;1242459;1033093;1003254;1010363;818793;846945;905214.89;1019077;960495;1589708;2616483;2207102;1779360
-68;'250;France;1872;Sawnwood;5916;Export quantity;m3;1178300;1063400;979400;964700;844600;767400;687800;689100;667600;790600;860800;888500;1112000;824600;684700;1178000;971800;923600;827000;788000;745800;761100;761000;856000;886000;904000;944000;1034000;1207000;1190500;1090000;1014000;1044400;1069000;1168300;1237300;1139000;1062900;1248000;1385591;1316556;1414417;1385956;1377203;1468720;1560761;1451899;1211723;1012804;1009760;841978;923477;1084724;1127597;1295742;1463305;1480372;1429992;1472847;1517785;1664970;1446000;1280000
-68;'250;France;1872;Sawnwood;5922;Export value;1000 USD;45813;44156;42879;44640;39462;34833;31578;31573;31482;39933;50018;62272;100876;116543;99839;133944;163169;203701;194452;193524;150505;132463;128680;140270;144552;189083;236692;267829;295960;378215;346664;327490;291611;347957;384492;357627;355771;305566;300585;297445;272178;281482;325636;374540;387144;458610;482826;445167;323068;314956;302396;272564;301282;346053;334333;386441;428632.63;458814;420483;677480;964894;944629;826006
-68;'250;France;1632;Sawnwood, coniferous;5516;Production;m3;5353500;5292000;5188500;5515000;5370000;5403000;5408000;5642500;5858000;5932000;5879500;6143000;6350000;5985000;5157000;5352000;5495500;5488500;5726500;5837500;5564000;5518500;5587500;5688500;5792000;5834000;6060500;6451000;6817500;7049000;6904000;6650000;6166000;6649000;6827000;6506000;6800000;7196511;7257000;7568000;7714000;7486000;7440000;7717000;7748000;8049626;8072778;7608046;6462216;6893957;7213115;6749634;6544080;6358090;6223459;6405932;6661000;6728000;6559000;6442000;7268000;7168000;6600000
-68;'250;France;1632;Sawnwood, coniferous;5616;Import quantity;m3;911500;929150;1303450;1504000;1416850;1429350;1537100;1512550;1742500;1699250;1633900;1750550;2126000;1943300;1304500;2056500;1828200;1789900;2393500;2651300;2070200;2056900;1892000;1521000;1511000;1737500;1897000;2103000;1830500;1742000;1757000;1401000;1412300;1625000;1562000;1767000;1842000;2237000;2446000;2681653;2665149;2761752;2934734;3222223;3400952;3335710;4026087;3570974;3189291;3461463;3056961;2441738;2284891;2217098;2154316;2309065;2443036;2525212;2478309;2437954;2830563;2900000;2300000
-68;'250;France;1632;Sawnwood, coniferous;5622;Import value;1000 USD;48451;46627;65564;82329;83811;84964;83477;83370;105480;106215;104946;117785;188509;301498;171947;254234;259020;268580;418826;563186;366947;305070;271203;219760;209029;291872;365781;427063;389410;477465;441910;386092;302334;412745;436821;408880;437972;472617;482539;478161;430276;485414;622189;747233;814964;908605;1223130;1143716;877430;955123;956446;805806;770676;779212;613922;638215;701691.19;789319;729321;1286043;2254774;1827116;1409577
-68;'250;France;1632;Sawnwood, coniferous;5916;Export quantity;m3;710850;627050;538350;525700;417400;363650;315600;315300;278100;297550;308650;278150;303000;233700;170550;161900;221000;216100;211500;229250;219450;224650;209000;206500;221500;231000;254500;330000;426500;459500;399000;346000;369500;395000;386000;393000;455000;511400;529000;724193;736732;821000;858097;862959;972935;967726;932851;750506;626503;615872;467098;599962;765184;730364;871187;988016;883324;868618;940764;1047883;1055297;860000;700000
-68;'250;France;1632;Sawnwood, coniferous;5922;Export value;1000 USD;25471;24586;22162;22974;18276;14726;12773;12553;10999;12719;15164;15150;19843;24277;19823;16380;28717;33722;32524;36130;31938;28774;23930;21867;23568;32261;41975;59639;69910;94185;73664;73152;68032;79338;97039;88861;91771;93371;91612;89259;89241;100738;128865;151471;169683;190657;201077;171335;123019;122651;105985;101247;134467;139924;142092;164398;156343.88;176095;170977;366789;520469;463631;392145
-68;'250;France;1633;Sawnwood, non-coniferous;5516;Production;m3;2953500;2950000;3190500;3280000;3153000;3222000;3317000;3446500;3728000;3779000;3909500;4255000;4575000;4315000;3576000;3761000;3843500;3807500;3937500;3881500;3452000;3530500;3417500;3349500;3295000;3484000;3551500;3797000;3837500;3911000;4070000;3838000;2966000;3000000;3021000;3094000;2807000;3023256;2979000;2968000;2804000;2329000;2099000;2057000;1967000;1942567;1892631;1735370;1423126;1421742;1462223;1317640;1357336;1338560;1290885;1488000;1498000;1366000;1254000;1133000;1313000;1446000;1300000
-68;'250;France;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;54300;62250;109150;160800;168250;188150;189700;272850;355900;267550;257300;319350;555000;394900;297800;637900;563300;531300;809400;777700;530800;543400;473000;405000;458000;475500;584000;550000;576500;575000;488000;554000;428800;482000;542500;446600;539000;600300;720000;659406;662645;540168;590796;606839;622151;659504;604341;459924;340907;372622;341577;287567;280884;285607;285382;311505;276576;281265;286717;276628;291238;264000;420000
-68;'250;France;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;4932;5406;8501;13339;14030;14927;15297;22341;30420;24776;25200;34457;82181;75988;55587;76354;121423;137679;210937;293732;196692;178329;142655;117714;131366;151831;218203;224341;248177;283569;256360;279152;222872;280036;317972;250848;287538;313098;269864;306308;293862;248789;290191;337908;373288;400377;465085;399477;266534;284219;286013;227287;232578;231151;204871;208730;203523.7;229758;231174;303665;361709;379986;369783
-68;'250;France;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;467450;436350;441050;439000;427200;403750;372200;373800;389500;493050;552150;610350;809000;590900;514150;1016100;750800;707500;615500;558750;526350;536450;552000;649500;664500;673000;689500;704000;780500;731000;691000;668000;674900;674000;782300;844300;684000;551500;719000;661398;579824;593417;527859;514244;495785;593035;519048;461217;386301;393888;374880;323515;319540;397233;424555;475289;597048;561374;532083;469902;609673;586000;580000
-68;'250;France;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;20342;19570;20717;21666;21186;20107;18805;19020;20483;27214;34854;47122;81033;92266;80016;117564;134452;169979;161928;157394;118567;103689;104750;118403;120984;156822;194717;208190;226050;284030;273000;254338;223579;268619;287453;268766;264000;212195;208973;208186;182937;180744;196771;223069;217461;267953;281749;273832;200049;192305;196411;171317;166815;206129;192241;222043;272288.76;282719;249506;310691;444425;480998;433861
-68;'250;France;1634;Veneer sheets;5516;Production;m3;61000;61000;57000;63400;66800;70900;69200;62400;77400;67800;67300;68600;74400;84400;52500;52000;52000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;154000;113000;123000;140000;148770;150220;151000;139000;126000;84000;61000;71000;76000;68547;62661;53911;56440;58303;59231;73497;92541;121000;121000;157000;157000;157000;157000;157000;157000;157000
-68;'250;France;1634;Veneer sheets;5616;Import quantity;m3;8200;8100;10200;17800;16900;21500;25600;37200;43400;51500;74600;85500;89500;85500;50200;80000;94400;115400;133400;136400;130500;140000;131300;125800;140500;139000;116000;141000;148800;148900;98600;81529;67830;88000;86000;104000;98000;101400;91300;101153;116386;131798;137661;152100;151579;159640;159582;125231;66116;115870;113479;106462;101884;96624;104735;120111;107012;105282;107462;311222;308827;272812;289239
-68;'250;France;1634;Veneer sheets;5622;Import value;1000 USD;1709;1871;2548;3021;3470;4126;4093;6403;9278;9216;14000;17700;24126;28864;19045;25122;40000;53278;56438;67412;48302;42498;39900;38243;43000;42400;55467;63811;68630;83798;64458;71422;56475;73508;85638;80875;89330;94810;87982;89834;94104;109715;133864;156347;153282;160485;201059;171117;82366;130963;144541;120372;116191;113767;106659;122452;126189.14;131377;125334;338242;427313;447432;395135
-68;'250;France;1634;Veneer sheets;5916;Export quantity;m3;35600;29800;31500;29000;31600;28600;26700;26900;27300;32400;29300;31600;40300;34100;28600;35000;31400;34500;35000;38600;36700;34300;34700;35400;35400;35400;29300;29300;47600;60900;51000;50986;49200;58500;54500;68000;62000;69400;62000;77299;72463;71916;56029;38654;36713;36644;33480;28041;17983;22357;20439;41435;47317;69080;74645;91512;91276;103102;97930;68284;71284;63921;55167
-68;'250;France;1634;Veneer sheets;5922;Export value;1000 USD;21055;20177;19425;19316;21192;20029;18781;19621;20668;23724;23135;25000;40050;40551;36800;44430;40000;68245;72294;82609;59775;47505;48000;48900;48900;48900;67793;67793;110100;127000;86826;93831;80882;100642;116506;106402;116402;117613;110927;110047;101904;98611;103230;101229;97448;98842;115713;103836;57485;68622;72359;61011;61392;69788;66235;75557;80142.18;98945;80491;146906;167227;157730;151275
-68;'250;France;1873;Wood-based panels;5516;Production;m3;839500;957900;1113300;1321900;1415000;1618900;1752200;1805100;2064000;2243700;2567800;2895100;3155300;3172000;2756000;2975000;2822000;2866000;3017000;3082000;2942000;2667000;2600000;2431000;2415000;2479000;2500000;2783000;2844000;3257000;3398000;3577000;3371000;3644000;3769000;4079000;4381000;4924306;5098641;5387000;5348000;5334000;5505000;6085000;6325000;6581000;6629000;6104841;4905000;5495201;5706610;5667535;5416000;5360000;5391484;5523000;5327000;5444000;4533000;3734000;5278643;4673599;4337927
-68;'250;France;1873;Wood-based panels;5616;Import quantity;m3;68600;65400;86000;101000;102100;158450;240344;330601;438679;333980;386608;413322;472407;512871;514893;715826;634700;713300;813700;856900;840500;829500;689100;790000;907000;1117000;1191000;1390700;1424100;1486400;1419100;1261119;953100;992500;1106000;1116600;1198200;1393200;1481800;1514446;1558466;1491029;1570937;1630521;1870357;2084833;2067577;2239102;2018338;2382913;2271125;2088182;2025710;2005391;1930349;1979575;2346532;2390201;2458241;2196484;1992984;1736328;1947987
-68;'250;France;1873;Wood-based panels;5622;Import value;1000 USD;8100;7602;10623;13707;13885;16701;22306;30188;42000;34093;40480;50600;65674;90086;87730;124492;133529;155659;182908;247220;191668;180172;155400;162000;177341;215200;305164;367913;363149;454243;419378;422349;342397;381939;493793;448563;453942;549387;519800;500383;494079;515894;624855;734224;856343;912725;1123962;1213336;946178;1056654;1150704;1107955;1111734;1137857;929271;997831;1123546.99;1192864;1073830;1084142;1392645;1461644;1704081
-68;'250;France;1873;Wood-based panels;5916;Export quantity;m3;121900;116100;129300;162200;199100;218562;207571;212358;215413;303932;338934;460830;632809;606544;524862;596283;636800;636409;708200;669500;662100;595300;553900;613000;581700;577600;633000;761600;935900;997800;1224900;1259800;1027400;1330500;1654500;1886200;2013300;2045500;2254600;2192028;2223242;2641800;2857738;2948790;3468259;3967572;3451575;2710758;2028927;2445940;2406791;2882964;2994047;3045752;3067658;2940133;2783137;2856503;2818306;2686391;2033099;2064082;2221766
-68;'250;France;1873;Wood-based panels;5922;Export value;1000 USD;14967;13566;15444;18027;20249;18813;19044;19915;21799;32454;40302;57030;87785;109988;95523;109383;133700;150948;183165;209627;183339;144893;138880;145700;122027;120955;190052;177963;247777;307840;355197;406252;354103;449612;586485;614838;592212;622604;624274;582895;540974;582324;732417;887702;986239;1142668;1332344;1241368;765287;833124;945632;958392;982643;1055545;920928;901812;890548.06;957797;879916;850232;935490;1102113;1256338
-68;'250;France;1640;Plywood and LVL;5516;Production;m3;382000;414400;439200;482000;477000;494400;536200;546700;614100;642800;691000;758500;817900;707000;551000;573000;567000;509000;539000;527000;516000;477000;483000;476000;489000;490000;439000;483000;498000;518000;470000;484000;460000;594000;559000;537000;566000;541085;545641;558000;509000;459000;415000;435000;415000;431000;378000;360000;265000;271000;258000;324000;255000;245000;245800;250000;254000;258000;253000;234000;270000;253000;240000
-68;'250;France;1640;Plywood and LVL;5616;Import quantity;m3;15100;12600;18300;26900;28900;39100;73400;102400;142000;122800;131000;167000;185400;183600;174400;275900;253400;300300;319800;346000;274400;282500;257100;227000;245800;308000;330700;379300;376000;441700;413800;423000;263000;234000;260000;256000;310000;359000;365100;272000;357512;349362;363053;383000;410681;445000;458989;581421;397364;544412;491551;373678;367652;428596;420369;477854;529278;539207;533466;446394;546335;472000;480000
-68;'250;France;1640;Plywood and LVL;5622;Import value;1000 USD;3010;2594;3984;5677;6061;7600;10555;14486;20706;18054;20200;29000;39961;52954;49726;76313;90000;99890;106956;153564;111353;107517;97900;86500;85054;106600;139250;170958;165418;217312;196168;200268;160181;162987;192368;173261;197125;212889;207202;180972;179347;181077;216388;260391;292668;314156;383400;401408;237628;275248;283191;312912;312468;362793;306542;336845;396074.41;433099;363228;319033;437043;532068;445609
-68;'250;France;1640;Plywood and LVL;5916;Export quantity;m3;61200;56600;62200;62000;65200;59000;64600;64600;64200;102000;127000;163400;202000;176000;166000;127000;169200;184209;172100;169300;170200;162900;161600;155000;166400;161200;169000;189600;209900;209700;222100;227800;194000;192500;183000;214100;223000;222000;242900;231184;200354;189823;186994;191998;196344;225000;227436;274518;162159;163354;127003;143402;140946;144955;156004;153285;171229;173964;160353;225486;163778;169000;165000
-68;'250;France;1640;Plywood and LVL;5922;Export value;1000 USD;9980;9088;10369;10777;11752;10066;10940;11305;12261;18900;25356;35000;54514;64786;55214;61378;82000;85135;97501;107233;104714;78351;77700;74600;61455;61455;84449;59752;95139;120919;134296;149471;148235;166876;182977;191019;185947;193820;191814;157323;141464;136920;152144;178330;200208;223925;298643;297463;156630;125171;92568;162155;166356;179534;177089;173441;184355.04;199574;186223;170789;167781;161152;152238
-68;'250;France;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000
-68;'250;France;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8652;10854
-68;'250;France;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11508;18003
-68;'250;France;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;269
-68;'250;France;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701;887
-68;'250;France;1646;Particle board and OSB (1961-1994);5516;Production;m3;326500;396000;508900;655900;749000;806700;878700;917200;1078100;1236500;1502600;1734200;1964000;2107000;1964000;2090000;2012000;2061000;2191000;2289000;2169000;1988000;1904000;1760000;1731000;1790000;1838000;2030000;2076000;2464000;2638000;2668000;2461000;2567000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;16500;17100;19200;20800;31400;48200;95500;154400;222500;162900;198400;202400;239000;282000;294000;380000;320600;362300;427700;386400;429100;426700;339700;474000;569600;666300;700700;802300;821800;803300;802100;732900;606800;649900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;1104;1244;1455;1888;2469;3501;6139;9806;15051;12114;15240;17000;20653;30052;30521;39673;35000;48009;64061;75052;62773;58255;46500;64900;77446;90600;142914;166455;164631;197931;190501;179914;145359;166271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;29100;20900;30500;69800;91800;100600;59500;57000;53800;97800;100900;188100;267000;284000;238000;302000;317000;308900;391600;372000;366500;297800;253300;322000;278800;271500;302000;402200;549900;587600;717500;759500;585200;826900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;2191;1446;1993;4487;4769;4826;3140;2978;3041;5724;6646;12000;21303;30272;24748;30483;32000;42118;56846;67777;49288;41342;35200;44700;41425;40000;66960;77211;110538;136921;154842;168093;130278;188103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633000;2930000;3175000;3482000;3587000;3544000;3545000;3550000;3600000;3950000;4200000;4360000;4441000;4151190;3380000;3770000;3964800;3859725;3703000;3777000;3630000;3627000;3395000;3508000;2796000;2221000;3281000;2881000;2898000
-68;'250;France;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689900;679800;613200;622300;621200;680051;678669;572413;607061;611299;747053;745833;745808;620628;598033;656074;619601;616485;575163;475981;473203;583978;754896;668569;655859;541576;407224;299000;565381
-68;'250;France;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233097;201992;167337;201942;176538;162243;159150;123131;146365;171371;223136;224827;256700;263423;221091;228235;258836;246628;245067;248939;210954;234118;257941.17;245668;230035;203037;295331;298063;466559
-68;'250;France;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;999000;1205800;1251900;1277700;1332000;992090;1168077;1170947;1256447;1411689;1748840;2157034;1757811;1521838;1127797;1497523;1584274;1723848;1755950;1752347;1661595;1599195;1439394;1455585;1467292;1245074;815953;885639;1254969
-68;'250;France;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284917;299556;279649;291429;281334;214847;212996;197239;241872;332308;375989;442572;492201;481571;291684;376695;493524;460907;467842;502675;413237;393414;360450.56;402377;373380;320793;431969;516603;707489
-68;'250;France;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;100000;100000;100000;270000;300000;275000;300000;400000;400000;400000;400000;373859;300000;400000;413200;413200;360000;325000;352000;390000;390000;390000;404000;379000;402000;301927;301927
-68;'250;France;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46400;34500;25145;31446;69999;66845;57656;51847;54501;51760;113174;96482;112029;97311;123591;133623;136265;143518;104492;106489;106299;100562;165330;205776;222000;212610
-68;'250;France;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13066;10324;6386;7030;22244;19341;21115;18810;19955;46901;58345;43324;47337;49376;52856;66583;65115;50162;46847;49892.38;57980;47354;56194;129545;96088;129827
-68;'250;France;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18900;6900;230864;150069;203344;175785;214192;218843;293441;219966;203747;179488;192181;137290;118136;76754;74729;67095;50257;47367;27551;35987;49265;40047;96361;70346
-68;'250;France;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4850;2261;36864;22786;34211;38953;59629;58812;79589;81667;80592;58026;60428;53460;37732;28424;26472;17479;17243;17934.59;13054;15618;14138;17837;40918;41629
-68;'250;France;1874;Fibreboard;5516;Production;m3;131000;147500;165200;184000;189000;317800;337300;341200;371800;364400;374200;402400;373400;358000;241000;312000;243000;296000;287000;266000;257000;202000;213000;195000;195000;199000;223000;270000;270000;275000;290000;425000;450000;483000;477000;512000;540000;801221;866000;1015000;994000;1050000;1190000;1300000;1310000;1390000;1410000;1219792;960000;1054201;1070610;1070610;1098000;1013000;1163684;1256000;1288000;1288000;1080000;900000;1325643;1237672;898000
-68;'250;France;1874;Fibreboard;5616;Import quantity;m3;37000;35700;48500;53300;41800;71150;71444;73801;74179;48280;57208;43922;48007;47271;46493;59926;60700;50700;66200;124500;137000;120300;92300;89000;91600;142700;159600;209100;226300;241400;203200;105219;83300;108600;156100;180800;275000;365500;461000;537250;490839;499255;533978;578566;660776;839499;811020;923879;926459;1070398;1062662;974428;949272;964549;893259;813251;955869;1076126;1168354;1043184;833649;743328;689996
-68;'250;France;1874;Fibreboard;5622;Import value;1000 USD;3986;3764;5184;6142;5355;5600;5612;5896;6243;3925;5040;4600;5060;7080;7483;8506;8529;7760;11891;18604;17542;14400;11000;10600;14841;18000;23000;30500;33100;39000;32709;42167;36857;52681;68328;73310;89480;121490;125736;150782;148552;189442;242761;281347;321729;353787;436961;490160;444135;505834;559301;495559;487616;461010;361613;380021;419639.03;456117;433213;505878;530726;535425;662086
-68;'250;France;1874;Fibreboard;5916;Export quantity;m3;31600;38600;36600;30400;42100;58962;83471;90758;97413;104132;111034;109330;163809;146544;120862;167283;150600;143300;144500;128200;125400;134600;139000;136000;136500;144900;162000;169800;176100;200500;285300;272500;248200;311100;472500;466300;538400;526900;672800;737890;704742;1077686;1238512;1130911;1304232;1292097;1246362;710655;559483;592882;558224;897578;1020397;1073721;1182964;1137396;1125147;1199403;1154674;1166566;1013321;913082;731451
-68;'250;France;1874;Fibreboard;5922;Export value;1000 USD;2796;3032;3082;2763;3728;3921;4964;5632;6497;7830;8300;10030;11968;14930;15561;17522;19700;23695;28818;34617;29337;25200;25980;26400;19147;19500;38643;41000;42100;50000;66059;88688;75590;94633;118591;124263;126616;132505;148865;173861;163728;213954;299448;317435;351230;396582;459833;381742;258947;270830;306080;297598;320021;346864;313123;317714;327807.87;342792;304695;344512;317903;383440;354982
-68;'250;France;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125000;112000;124000;115008;115000;125000;100000;120000;120000;120000;120000;135000;135000;126681;120000;122653;126701;126701;102000;103000;115679;114000;105829;105829;105324;86230;221000;221000;35000
-68;'250;France;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62100;74800;86000;128400;110300;171670;180942;199659;232019;237607;295223;211526;169675;170403;171188;257503;227820;185476;188084;168970;219973;215915;245821;362375;266377;235488;202440;206878;156671
-68;'250;France;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40615;48524;52829;74665;68259;93737;95073;132139;176614;192680;226840;163678;218460;176080;158774;221528;222993;168760;166527;137791;111164;114696;139020.98;164156;112744;122642;153722;169508;159880
-68;'250;France;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70500;86300;108400;122500;76900;168770;164117;126430;159037;175698;126439;173583;80270;191913;159812;180455;177624;421000;393000;377041;333265;277778;285192;401728;462795;449403;423338;372810;286076
-68;'250;France;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30217;55288;58555;62271;22173;91060;83208;62641;96506;108189;95751;146585;304735;224012;157113;170228;196723;182494;170369;173005;127999;100722;106946.92;146329;146875;158374;138267;176470;129573
-68;'250;France;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344000;363000;416000;636213;691000;830000;814000;850000;990000;1100000;1110000;1160000;1180000;1016584;770000;860000;870000;870000;916000;790000;967000;1062000;1108000;1108000;898000;751000;1041873;953902;806000
-68;'250;France;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;90000;169000;208800;321300;331863;263454;261394;268449;274645;250633;442336;461539;594999;617387;659791;706984;617539;577261;635182;554978;449468;514472;528260;708543;481147;444161;359770;368480
-68;'250;France;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20958;20002;32233;40292;50168;49999;45917;50300;58570;71084;64274;148348;174920;266472;248181;246013;299924;275605;265141;275299;221407;231166;238432.78;250460;279956;314841;321761;314030;441349
-68;'250;France;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322000;316000;354000;328000;509300;500704;518339;865674;998761;906049;1143642;1073352;1128330;460159;345370;352169;330605;424775;541984;561817;686047;705773;682335;644647;511843;312431;394299;365963;341314
-68;'250;France;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75778;59296;58562;60501;116538;75653;77336;142452;193335;200913;250317;242011;138944;143412;90656;88700;97763;105525;131807;138774;149417;188162;192709.22;168145;130083;123784;144331;169936;197282
-68;'250;France;1650;Other fibreboard;5516;Production;m3;33200;32200;34700;38000;35600;140400;143600;129200;136800;122400;119200;132400;100400;96000;69000;91000;72000;89000;77000;65000;69000;54000;57000;52000;52000;53000;59000;71000;71000;75000;75000;75000;75000;8000;8000;37000;0;50000;60000;60000;80000;80000;80000;80000;80000;95000;95000;76527;70000;71548;73909;73909;80000;120000;81005;80000;74171;74171;76676;62770;62770;62770;57000
-68;'250;France;1650;Other fibreboard;5616;Import quantity;m3;5400;5500;11000;8400;7400;34400;34800;40000;44800;30800;33200;25600;28000;24000;22800;31600;32000;26200;44500;103900;114300;99000;76000;73000;65200;117400;131300;172100;186300;198600;167200;24000;16000;16000;24000;16000;20000;28300;29400;33717;46443;38202;33510;66314;114920;185637;179806;158477;137884;153104;127858;171413;183927;160397;118308;147868;195576;185491;193434;326549;187048;176680;164845
-68;'250;France;1650;Other fibreboard;5622;Import value;1000 USD;541;559;1292;1124;1047;1188;1195;1560;2048;1405;1940;1960;1844;2111;1837;2029;2029;1860;5591;12604;10942;9500;7300;7000;6300;11700;16000;21200;23100;26000;15000;6194;4180;4688;6755;4784;4418;6533;7309;7046;7562;7003;7577;17583;30615;41761;43581;47608;37180;38293;36384;51194;55948;47920;29042;34159;42185.27;41501;40513;68395;55243;51887;60857
-68;'250;France;1650;Other fibreboard;5916;Export quantity;m3;5100;5800;6200;1000;2400;16000;32400;30000;29600;28000;44800;39200;108000;96000;64000;110000;73800;71600;80600;63200;61700;71600;74000;72300;79000;77000;86100;90300;93600;106600;151700;96000;44000;88000;80000;64000;76000;76400;86600;68416;22286;85582;80714;49164;34151;45162;37762;58583;54301;60258;49995;51803;85413;134863;163652;153845;157620;153028;180036;404732;195684;174309;104061
-68;'250;France;1650;Other fibreboard;5922;Export value;1000 USD;581;592;551;116;316;425;851;810;859;810;1500;1440;4379;4687;3501;5719;3900;5695;10218;14617;10737;9500;9800;9700;6537;6500;14158;15000;15400;19000;28000;11854;5854;12947;12596;9679;9499;9733;10154;7148;3184;8861;9607;8333;5162;7986;16154;14318;11178;11902;11594;9579;17845;35085;35707;28830;28151.73;28318;27737;62354;35305;37034;28127
-68;'250;France;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;97800;115300;130500;146000;153400;177400;193700;212000;235000;242000;255000;270000;273000;262000;172000;221000;171000;207000;210000;201000;188000;148000;156000;143000;143000;146000;164000;199000;199000;200000;215000;350000;375000;475000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;31600;30200;37500;44900;34400;36750;36644;33801;29379;17480;24008;18322;20007;23271;23693;28326;28700;24500;21700;20600;22700;21300;16300;16000;26400;25300;28300;37000;40000;42800;36000;81219;67300;92600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;3445;3205;3892;5018;4308;4412;4417;4336;4195;2520;3100;2640;3216;4969;5646;6477;6500;5900;6300;6000;6600;4900;3700;3600;8541;6300;7000;9300;10000;13000;17709;35973;32677;47993;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;26500;32800;30400;29400;39700;42962;51071;60758;67813;76132;66234;70130;55809;50544;56862;57283;76800;71700;63900;65000;63700;63000;65000;63700;57500;67900;75900;79500;82500;93900;133600;176500;204200;223100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2215;2440;2531;2647;3412;3496;4113;4822;5638;7020;6800;8590;7589;10243;12060;11803;15800;18000;18600;20000;18600;15700;16180;16700;12610;13000;24485;26000;26700;31000;38059;76834;69736;81686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1879;Total fibre furnish;5510;Production;t;2116000;2181000;2262000;2448000;2477600;2648300;2711800;2696100;2916900;3123600;3187400;3468900;3606000;3817000;3200000;3538000;3721000;3748000;3782000;3663000;3733000;3884000;4073000;4419000;4140000;4414000;4675000;4785000;5292000;4673000;5460000;5754000;5368500;6863000;6519000;6374000;7051000;7290900;7867500;8356750;8031750;8132750;8098000;8368000;8396000;8407700;8200893;7896837;6681420;7103941;6899172;9120540;8922051;8925200;8839000;8953000;8978600;8542200;8353000;8018000;8584550;8221205;7825168
-68;'250;France;1879;Total fibre furnish;5610;Import quantity;t;109500;100000;116200;128100;112000;127500;106900;1013900;1163900;1379800;1218200;1439300;1601300;1807600;1266400;1496800;1491800;1789200;1923100;2026500;1919700;1795800;1879900;1963000;1928400;2113200;2165000;2482900;2540000;2686200;2938700;3067959;3006000;3322000;3140000;3120000;3161100;3166800;3465000;3785352;3309443;3410525;3421125;3322461;3341233;3261502;3072053;2908150;2332252;2826104;2750919;2717826;2895537;2948185;3048337;2928961;3013429;2956177;2596528;2527251;2577512;2624198;2291602
-68;'250;France;1879;Total fibre furnish;5622;Import value;1000 USD;9879;8972;10390;12260;12113;13783;11535;128398;158470;203724;192113;228465;272396;541848;462105;516461;499870;483411;680098;858095;866742;726233;634907;641850;657027;780154;1018224;1265663;1439506;1472197;1115553;1164272;825871;1160298;1831026;1164260;1139942;1089534;1125191;1684164;1159728;1109812;1205600;1293653;1300313;1337541;1571091;1623619;989304;1728673;1788429;1434519;1592040;1489324;1460112;1291461;1428809.78;1682304;1249651;1044672;1381148;1654458;1189089
-68;'250;France;1879;Total fibre furnish;5910;Export quantity;t;;;;6600;4300;1200;4000;158700;149300;258500;186300;259500;416600;374700;288100;473500;460000;497400;555200;531800;524200;574900;641700;746200;786500;819600;915100;975500;874600;898200;1007400;1010528;841700;1115700;1191000;1104000;1204000;1331000;1422690;1295118;1474087;1619419;1809677;2153667;2336424;2551852;2783684;2736074;3153483;3204745;3548958;3517399;3299272;3329103;3390982;3382499;3391210;2939284;2882732;2471529;2977673;2871965;3028502
-68;'250;France;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1329;771;411;831;20503;22027;34939;24962;34090;62179;91168;55418;90794;87437;91595;139001;156581;123282;121237;131221;149123;178270;215988;298413;328797;317665;333234;283956;322214;213020;334404;534756;263172;294482;293824;270210;363232;290766;319314;357089;436793;458641;525511;718679;741564;490575;795425;1049608;809603;719290;740537;711937;716921;778269.11;676934;555921;470136;780460;782032;579277
-68;'250;France;1878;Pulp for paper;5510;Production;t;1362000;1371000;1387000;1453000;1530600;1607300;1638800;1588100;1707900;1805600;1815400;1893900;1911000;1965000;1687000;1748000;1935000;1920000;1829000;1736000;1693000;1755000;1862000;2045000;1785000;2037000;2115000;2073000;2409000;2418000;2453000;2747000;2539500;2788000;2819000;2517000;2832000;2676900;2591500;2581750;2460750;2427750;2315000;2426000;2443000;2358000;2253993;2219837;1683420;1827941;1832772;1772740;1653051;1612000;1716000;1711000;1689000;1604200;1617000;1701000;1699550;1637205;1338868
-68;'250;France;1878;Pulp for paper;5610;Import quantity;t;109500;100000;116200;128100;112000;127500;106900;1013900;1163900;1242800;1084200;1268300;1419300;1574200;1118700;1306600;1291500;1523400;1630900;1703500;1649500;1518000;1566600;1563000;1554600;1690000;1754000;1836900;1822000;1910800;1976200;2071953;2001000;2094000;1962000;2037000;2163100;2151300;2227000;2405505;2219847;2229432;2164453;2198073;2140127;2217084;2080562;1957100;1534243;1920833;1883570;1960963;2121765;2003130;2031754;1950071;2000237;1998212;1697810;1760871;1639388;1724097;1440018
-68;'250;France;1878;Pulp for paper;5622;Import value;1000 USD;9879;8972;10390;12260;12113;13783;11535;128398;158470;197582;187087;221430;260648;509792;451626;502935;485117;464400;646315;810864;842790;701756;608659;608250;620466;743593;975583;1187450;1321754;1392392;1046888;1097696;787672;1044143;1581260;1087224;1080835;1025246;1043604;1526668;1088616;1005092;1075748;1175877;1174965;1225041;1414355;1463008;896168;1552436;1583753;1296569;1453123;1320423;1302614;1124693;1238925.89;1530884;1123905;937443;1171466;1439329;1063199
-68;'250;France;1878;Pulp for paper;5910;Export quantity;t;;;;6600;4300;1200;4000;158700;149300;171500;111300;146500;247600;171700;78400;163100;157500;169600;192700;171200;152100;167400;218800;246200;311000;343600;403100;429500;363600;379200;406000;423326;417700;446700;405000;359000;454400;459700;394690;383844;449055;490341;456253;527957;495446;556221;632377;549889;366730;525488;628805;470938;404151;467395;522150;517615;494396;413899;453691;449435;414972;365115;394803
-68;'250;France;1878;Pulp for paper;5922;Export value;1000 USD;;;;1329;771;411;831;20503;22027;28692;20308;26468;47273;55255;32715;56632;55513;57291;85574;91021;76029;77720;86399;96123;116743;156622;229621;237257;252257;264442;215291;230004;163073;229974;338826;168194;216929;210269;182361;241054;202305;208898;220674;260801;256250;289486;359745;355116;192240;309175;424707;311237;266325;303438;314345;285414;295489.74;313176;275933;237055;274474;293264;257666
-68;'250;France;1875;Wood pulp;5510;Production;t;1201000;1214000;1268000;1358000;1451300;1530700;1580800;1585200;1716200;1787300;1810000;1912800;1935000;1977000;1753000;1813000;2017000;2004000;1913000;1815000;1771000;1749000;1856000;2030000;1770000;2022000;2098000;2058000;2390000;2399000;2434000;2728000;2543000;2791000;2822000;2519000;2830000;2674900;2589000;2581000;2460000;2427000;2432000;2503000;2504000;2422000;2259994;2225795;1687743;1832466;1837423;1815728;1699346;1651000;1725000;1720000;1708000;1613200;1626000;1710000;1724000;1666000;1371900
-68;'250;France;1875;Wood pulp;5610;Import quantity;t;186300;172800;206900;205900;178900;188200;161800;1061300;1227900;1317600;1154400;1321400;1474600;1622200;1151000;1350100;1338500;1566700;1687800;1755100;1703900;1564700;1608800;1611000;1608700;1754900;1825000;1843000;1823800;1905200;1968000;2074175;1997000;2091000;1956000;2026000;2135700;2132700;2212000;2387410;2204364;2223565;2156471;2198833;2147336;2226272;2085787;1963883;1542388;1930302;1892087;1968872;2134729;2008855;2021700;1949743;2003505;2005277;1707848;1757856;1628515;1714936;1431140
-68;'250;France;1875;Wood pulp;5622;Import value;1000 USD;23522;22504;25449;25950;23681;25359;21838;137655;171340;214701;203892;233500;273374;530029;468309;525565;509617;486784;676399;844302;877058;730156;625286;618350;642558;774212;1015392;1189403;1323808;1386865;1038648;1092890;780648;1035934;1569019;1067808;1052080;995314;1017978;1502551;1053351;981373;1053190;1164192;1170372;1221318;1406365;1455342;885929;1551192;1579329;1305187;1473907;1332657;1294380;1128088;1240407.97;1536722;1127838;925846;1148634;1413875;1041981
-68;'250;France;1875;Wood pulp;5910;Export quantity;t;;;;;;;;153700;144700;166100;107000;144600;250200;173600;76200;158700;158000;177800;216100;187200;152500;166600;215400;241800;305300;339700;397800;425000;357700;379000;405800;420041;418000;472300;421000;365000;518200;450600;384490;392195;502632;542088;552959;577806;464536;533286;606129;580229;417386;581920;712615;555959;481831;535658;586754;599917;582043;509620;565771;550679;527692;483165;437198
-68;'250;France;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;19429;21179;27534;19304;25844;47820;56050;31832;55365;55797;59375;95588;99447;75375;76487;82166;91920;115302;155490;227833;235657;250130;264432;215231;227048;163103;234932;342192;165505;243120;224611;199695;235314;205349;204844;226147;256185;243149;281031;363992;386924;228498;385247;493236;478224;431275;439055;412271;394241;417829.71;450691;421560;370499;421164;446263;320580
-68;'250;France;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-68;'250;France;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96914;96010;90383;75740;82514;72348;39144
-68;'250;France;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50549.8;59524;51264;38456;50347;52193;23850
-68;'250;France;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1855;2274;4580;4643;32302;4250;4332
-68;'250;France;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480.92;855;1453;1427;7664;1779;1443
-68;'250;France;1654;Mechanical wood pulp (1961-2016);5510;Production;t;426000;426000;433000;442000;449900;472800;472000;471100;492500;494200;464700;449800;456000;475000;385000;413000;433000;458000;453000;419000;398000;407000;397000;454000;452000;430000;463000;393000;662000;667000;810000;922000;823000;886000;934000;757000;845000;761600;772000;651000;628000;616000;631000;699000;666000;615000;583900;561400;480200;568400;538355;483084;245000;165000;0;0;;;;;;;
-68;'250;France;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;103600;94200;92600;91600;74500;83600;70200;79700;95900;96300;78400;88800;80600;117600;55700;60300;65700;70700;82400;61300;66300;57800;50800;45000;37300;36300;39000;41300;46400;46100;39600;37058;52000;47000;47000;23000;31300;32500;40000;52446;48465;67176;47293;39549;28859;33032;28032;35429;62348;85375;79809;57707;33102;30085;24183;23470;;;;;;;
-68;'250;France;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;9278;8403;8129;8147;7036;7719;6404;7260;8140;9525;8009;9000;8949;23938;15709;17262;19000;16500;20000;15000;23724;18660;13407;11900;10445;12979;15158;19685;26137;26163;17574;16695;21268;21421;32316;12243;14500;18360;16797;25511;20924;27340;21523;18952;13447;15534;27313;22289;30422;58797;57005;31509;19548;17310;11890;11043;;;;;;;
-68;'250;France;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;100;100;100;100;100;100;300;700;300;100;100;100;600;100;100;100;100;3200;5100;2141;1000;300;0;2000;200;300;330;90;88;8299;3194;772;877;189;1143;1182;850;488;107;38;1184;2700;3195;1820;;;;;;;
-68;'250;France;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;17;17;20;17;17;20;141;250;80;36;37;36;95;92;92;92;92;1342;1307;722;158;48;0;349;52;55;161;66;36;1704;1473;423;369;80;212;624;364;233;57;201;387;694;708;441;;;;;;;
-68;'250;France;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;85000;85000;90000;93000;99700;112300;116700;127200;151400;166500;212700;227800;218000;224000;189000;235000;256000;220000;203000;174000;127000;118000;119000;120000;120000;140000;137000;124000;117000;117000;119000;116000;113000;119000;110000;100000;117000;120100;113000;113000;133000;133000;133000;133000;133000;133000;133007;132079;95825;100311;103088;0;0;0;0;0;;;;;;;
-68;'250;France;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;5900;5800;23600;23900;24200;29400;23000;27700;35000;39200;33200;25800;31000;40700;23200;17300;32100;23800;29700;35600;26900;18700;10900;12000;8800;8100;10000;16300;22600;22100;20000;21498;11000;22000;29000;29000;45500;60300;83000;96664;79449;64840;66073;68129;97251;114632;94463;70085;36036;72989;57632;55610;74414;67242;60250;57749;;;;;;;
-68;'250;France;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;601;569;2261;2343;2464;2840;2205;2350;2893;3240;3000;2500;3794;8026;5979;3973;3800;4500;5700;6900;9459;6079;2987;3250;2575;1916;4331;7773;13625;13829;10223;10281;4437;9010;19470;10846;17399;20627;33444;54166;30601;24352;29529;29983;44653;53121;48362;43446;17326;49532;40563;29880;43006;36309;30027;27976;;;;;;;
-68;'250;France;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;360;6805;3876;3997;4418;5130;2994;2437;3901;2796;1301;3496;15306;4619;3;1;719;17;;;;;;;
-68;'250;France;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;159;3738;1372;1245;2018;2358;1464;1203;2448;1712;647;1938;9489;3126;1;1;378;8;;;;;;;
-68;'250;France;1656;Chemical wood pulp;5510;Production;t;616000;629000;658000;732000;822200;869300;911500;862200;943300;1023200;1031000;1120300;1141000;1170000;1105000;1090000;1237000;1230000;1158000;1128000;1152000;1214000;1330000;1448000;1190000;1444000;1492000;1533000;1607000;1611000;1501000;1686000;1603000;1782000;1774000;1658000;1868000;1793200;1704000;1817000;1699000;1678000;1512000;1551000;1585000;1554000;1423080;1413147;1025259;1073249;1102968;1204900;1327000;1366000;1635000;1630000;1608000;1523200;1536000;1620000;1615000;1557000;1262900
-68;'250;France;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;891900;1018700;1095400;961900;1141700;1295700;1400300;1027700;1223100;1188300;1413400;1503200;1591200;1540900;1426100;1490900;1491000;1494400;1632100;1689000;1763300;1737000;1820500;1894500;2000014;1922000;2011000;1865000;1961000;2046900;2024300;2073000;2222381;2064970;2073165;2030512;2063361;1996444;2050393;1939220;1832945;1408871;1747462;1729318;1832506;2002300;1889084;1921043;1847228;1884750;1880024;1591565;1668806;1537722;1633632;1387134
-68;'250;France;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;115849;144334;181958;173498;207000;243439;470717;422927;479132;460117;437000;614115;782464;803107;670517;582365;582500;594025;716462;942102;1146000;1268000;1332400;999091;1053333;745781;996801;1502788;1032340;1009191;943015;954440;1409905;993851;921534;995992;1091848;1089214;1126169;1304453;1357670;803951;1409205;1445637;1203871;1364307;1235833;1223087;1055950;1158979.3;1438414;1043900;869322;1086783;1349236;1009617
-68;'250;France;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;153700;144500;165900;106300;143900;246300;169100;75800;158500;157200;167800;190700;169100;150400;165900;214700;241100;303000;338900;397000;423400;357500;375600;400500;417432;416000;446000;403000;355000;449000;419800;347000;330014;392668;411902;389114;451722;414700;478997;541198;457387;305156;465971;579572;432551;369158;422394;476718;486213;462669;397879;446354;442449;380660;358710;387865
-68;'250;France;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;19429;21149;27504;19138;25678;46887;54225;31682;55282;55318;55371;83483;89171;74349;76084;81762;91517;114157;154968;227364;235000;250000;262950;213834;225826;162356;229220;335197;163615;212621;194002;162534;209742;178528;177492;188827;222677;213087;247726;305616;293195;158743;273154;392111;282696;244731;269507;285557;263913;269657.99;298035;267668;230536;261206;284923;246692
-68;'250;France;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;488000;287800;312900;330700;327800;354700;369700;368000;422400;452000;456000;463000;434000;455000;448000;439000;390000;444000;410000;449000;475000;391000;474000;490000;460000;482000;483000;469000;510000;457000;495000;479000;462000;491000;460700;439000;468000;441740;471000;423360;434000;443800;435200;397743;395244;286756;300178;308490;336900;371000;398020;476396;474939;468589;443880;447620;1620000;1615000;1557000;1262900
-68;'250;France;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;140700;156000;150700;115400;137300;179700;165400;99700;129300;105400;122300;128800;169000;93900;85600;44600;39000;30700;30200;32000;35000;33000;11000;11000;22113;18000;16000;11000;12000;24500;19800;18000;19387;23954;43652;40624;22328;27816;49478;27019;23328;40470;7104;12522;10580;39124;33369;14226;6921;8594;11502;8113;0;0;0;0
-68;'250;France;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;19000;21000;20847;18000;26000;30377;46508;39172;46197;34000;28000;50000;68000;38000;31600;14755;12900;10881;12386;14824;18300;20300;7000;7000;10770;7076;7052;8187;6202;11417;8897;7539;10265;9847;16142;16397;10989;14210;25584;50783;16089;21649;5364;9805;7224;26579;22910;9445;4376;5785.91;9538;6040;0;0;0;0
-68;'250;France;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;100;700;1400;500;500;500;200;200;500;1000;800;3900;3700;4000;5300;100;;;;;;;;;2143;0;0;0;0;0;600;0;0;77;19;52;0;0;0;0;570;335;18;73;5;46;386;0;0;48;4;402;0;0;0;0
-68;'250;France;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;15;110;220;78;78;78;73;14;195;308;300;1500;1500;1800;2200;31;;;;;;;;;847;0;0;0;0;0;268;0;0;21;9;7;0;0;0;0;374;179;11;49;11;33;154;0;0;36.36;2;216;0;0;0;0
-68;'250;France;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;258100;271500;284100;288600;316300;332700;378000;469800;497000;511000;464000;482000;586000;576000;537000;480000;510000;594000;651000;745000;612000;743000;768000;815000;854000;856000;807000;918000;885000;1025000;1032000;955000;1087000;1056700;1084000;1156000;1087360;1026000;922320;946000;966850;944400;867438;861990;625386;654659;672787;735500;810000;820150;1158604;1155061;1139411;1079320;1088380;0;0;0;0
-68;'250;France;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;509300;627400;700000;639900;762400;836300;931000;716100;878000;878000;1113900;1195000;1264300;1318600;1215000;1302700;1310000;1325800;1459900;1514000;1579100;1595900;1700000;1767000;1847022;1789000;1869000;1758000;1869000;1952000;1966300;1994000;2134840;1984680;1962386;1914087;1954141;1874752;1935910;1821016;1731182;1318426;1684906;1675908;1778794;1916591;1800410;1865286;1802067;1838273;1826735;1554780;1645881;1526183;1620137;1378036
-68;'250;France;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;63829;88295;118082;116571;140000;160723;304562;294597;346191;346191;354000;489587;633683;697574;576637;509571;512200;530099;638328;847160;1030400;1140000;1214000;931500;972765;694810;927334;1417309;986686;965321;915085;918560;1357448;955735;874965;940313;1032762;1021672;1063405;1198975;1273723;752362;1357094;1399982;1162906;1299560;1170596;1181634;1024484;1124402.4;1391124;1012011;849651;1073771;1331717;995735
-68;'250;France;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;61600;62800;73200;56600;103500;179800;100800;38800;90800;90800;99800;105000;91000;65800;89000;145500;155000;215200;244300;284000;306100;242000;260100;258000;256063;245000;266000;221000;176000;274000;265100;252000;240452;297794;325319;294654;352319;328447;392297;427934;388434;263927;437079;570461;432373;368967;421325;468489;471659;462178;397649;443478;436700;379414;357360;361764
-68;'250;France;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;7304;8556;10780;9881;18130;33615;31034;15887;31399;31399;30200;43929;46114;30000;36343;50950;54200;73303;104965;157739;150400;157050;170000;125422;127842;85316;133341;186739;90012;132003;119027;117832;150343;125936;133026;137429;173331;166663;200669;245757;246766;136183;255523;385895;282209;244223;268213;279332;252438;268952.4;297609;265449;226687;259980;283462;225197
-68;'250;France;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-68;'250;France;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37883;41787;28672;22925;11539;13495;9098
-68;'250;France;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28790.99;37752;25849;19671;13012;17519;13882
-68;'250;France;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;226;2474;5749;1246;1350;26101
-68;'250;France;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669.23;424;2003;3849;1226;1461;21495
-68;'250;France;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;101500;95900;99600;77500;91800;88800;81400;67100;40000;15000;8000;18000;16000;6000;2000;2000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;;;;;;;
-68;'250;France;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;73700;58100;55600;52800;55100;74500;89400;53400;48400;43800;34500;27900;26900;21900;21400;13600;8000;13600;4400;4000;4200;4100;500;500;4393;4000;3000;3000;1000;400;3900;3000;965;9;245;620;163;104;53;101;3629;179;139;144;67;92;53;99;50;;;;;;;
-68;'250;France;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;11400;9000;8643;8858;11000;11344;26540;21036;17586;12900;9000;10685;13100;9800;9030;5351;3100;4932;1790;1832;2200;2500;400;400;2892;2194;1794;1948;634;335;1671;1256;513;4;143;331;454;225;195;6648;10660;409;448;479;371;496;301;493;254;;;;;;;
-68;'250;France;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;500;500;1500;1500;1100;2300;800;1000;1700;1000;1000;1000;100;1400;1200;1200;100;300;300;1000;900;500;500;500;175;0;1000;0;0;0;0;0;0;7;0;72;2;0;0;886;1302;16;0;0;0;9;2;6;10;;;;;;;
-68;'250;France;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;60;70;200;206;170;358;233;455;402;1071;1071;1071;114;1600;1400;1400;117;165;165;666;600;350;350;350;158;0;534;0;0;0;15;6;0;18;0;57;2;0;0;533;853;8;0;0;0;16;9;35;9;;;;;;;
-68;'250;France;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;244000;174800;189000;197100;168300;180500;232000;203600;161000;152000;188000;170000;156000;180000;200000;180000;256000;198000;210000;230000;228000;187000;227000;234000;258000;271000;272000;225000;258000;261000;262000;263000;241000;290000;275800;181000;193000;169900;181000;166320;171000;174350;174400;156899;155913;113117;118412;121691;132500;146000;147830;0;0;;;;;;;
-68;'250;France;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;168200;177200;189100;153800;186900;205200;214500;158500;167400;161100;142700;151500;131000;106500;104100;130000;134000;124300;137600;139000;145000;104000;109000;116000;126486;111000;123000;93000;79000;70000;34300;58000;67189;56327;66882;75181;86729;93772;64952;91084;74806;49796;55313;40744;43065;46493;55252;41432;38190;;;;;;;
-68;'250;France;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;21620;26039;34386;30069;30000;40995;93107;68122;69158;67026;46000;63843;67681;57733;53250;52688;54300;48113;63958;78286;95100;105200;111000;60191;66906;41701;60621;75344;38818;32118;17362;27085;41679;28265;30284;38951;47643;53107;36985;48047;57198;29531;46299;35371;33370;37672;42026;31515;26836;;;;;;;
-68;'250;France;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;91500;80500;89800;47700;38800;63700;67300;35800;65500;64400;66200;80800;74300;79200;70400;67900;86000;87500;94300;112000;116400;115000;115000;142000;159051;171000;179000;182000;179000;175000;154100;95000;89562;94790;86564;94336;99401;86253;86700;112378;67081;40878;28874;9038;173;136;681;8223;14544;;;;;;;
-68;'250;France;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12050;12413;16304;8973;7300;12836;22885;15326;23286;22540;23800;36983;41443;40949;36141;29381;37200;40689;49838;68959;84000;92600;92600;88062;96979;77040;95345;148458;73603;80618;74692;44696;59399;52553;44457;51334;49344;46424;47057;59326;45202;22373;17620;6167;476;459;1131;6190;11466;;;;;;;
-68;'250;France;1667;Dissolving wood pulp;5510;Production;t;74000;74000;87000;91000;79500;76300;80600;124700;129000;103400;101600;114900;120000;108000;74000;75000;91000;96000;99000;94000;94000;10000;10000;8000;8000;8000;6000;8000;4000;4000;4000;4000;4000;4000;4000;4000;0;0;0;0;0;0;156000;120000;120000;120000;120007;119169;86459;90506;93012;127744;127346;120000;90000;90000;100000;90000;90000;90000;109000;109000;109000
-68;'250;France;1667;Dissolving wood pulp;5610;Import quantity;t;76800;72800;90700;90400;80200;75200;68600;62000;78300;86700;80900;65100;67300;63600;44400;49400;52400;58800;72500;67000;69800;62100;56200;63000;68200;78400;87000;22100;17800;16500;13900;15605;12000;11000;15000;13000;12000;15600;16000;15919;11480;18384;12593;27794;24782;28215;24072;25424;35133;24476;25328;23049;24913;22444;16224;21296;21841;29243;25900;13310;8279;8956;4862
-68;'250;France;1667;Dissolving wood pulp;5622;Import value;1000 USD;13643;13532;15059;15460;14181;14800;13229;12196;15973;19978;19385;15000;17192;27348;23694;25198;26700;28784;36584;39938;40768;34900;26527;20700;35513;42855;53801;15945;16046;14473;11760;12581;9162;8702;14445;12379;10990;13312;13297;12969;7975;8147;6146;23409;23058;26494;26237;31937;34230;33658;36124;39927;47046;43205;29376;33119;30878.87;38784;32674;18068;11504;12446;8514
-68;'250;France;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;200;200;700;700;3800;4400;300;100;700;9900;25100;17400;1800;600;600;600;1700;700;700;1500;100;200;200;468;1000;26000;18000;8000;69000;30500;36800;55286;106000;117890;156233;120182;45965;51663;59887;118864;110079;111965;117630;118751;111486;110563;106122;111867;117519;109467;114837;103587;114730;120205;45001
-68;'250;France;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;30;30;166;166;916;1808;130;66;462;3984;11964;10026;946;367;367;367;1050;430;377;565;38;140;90;500;589;5664;6995;1541;30447;30550;36841;21768;25413;24403;33829;30727;28229;32022;55716;91393;68744;109922;91579;192201;186156;168853;125628;129879;147690.8;151801;152439;138536;152294;159561;72445
-68;'250;France;1668;Pulp from fibres other than wood;5510;Production;t;235000;231000;206000;186000;158800;152900;138600;127600;120700;121700;107000;96000;96000;96000;8000;10000;9000;12000;15000;15000;16000;16000;16000;23000;23000;23000;23000;23000;23000;23000;23000;23000;500;1000;1000;2000;2000;2000;2500;750;750;750;39000;43000;59000;56000;114006;113211;82136;85981;88361;84756;81051;81000;81000;81000;81000;81000;81000;81000;84550;80205;75968
-68;'250;France;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;12600;13300;14500;13700;14600;14300;11900;10700;12000;12000;15600;12100;5900;5400;15500;15600;15400;15400;15400;14000;15000;14100;13500;16000;16000;16000;22100;22100;13383;16000;14000;21000;24000;39400;34200;31000;34014;26963;24251;20575;27034;17573;19027;18847;18641;26988;15007;16811;15140;11949;16719;26278;21624;18573;22178;15862;16325;19152;18117;13740
-68;'250;France;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;1770;2613;3224;2926;2939;3103;2859;2580;2930;4466;7111;7011;2568;2200;6400;6500;6500;6500;6500;9900;10600;13421;12236;13992;13992;13992;20000;20000;17387;16186;16911;26686;31795;39745;43244;38923;37086;43240;31866;28704;35094;27651;30217;34227;39603;44469;34902;40548;31309;26262;30971;37610;29724;29396.78;32946;28741;29665;34336;37900;29732
-68;'250;France;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6600;4300;1200;4000;5000;4800;5600;5000;2600;1200;2500;2500;4500;200;1700;1700;1400;1400;1400;4000;5000;7400;4600;6000;6000;6000;400;400;3753;700;400;2000;2000;5200;39600;47000;46935;52423;66143;59527;70333;76875;74598;86135;88524;59423;55533;33820;33730;33806;42300;41518;29565;29872;13746;2757;2343;2010;2155;2606
-68;'250;France;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1329;771;411;831;1074;878;1188;1170;790;369;1013;1013;1333;178;1900;1950;1600;1600;1600;4600;4570;2491;1562;2165;2165;2165;150;150;3456;559;706;3629;4230;4256;16208;19507;27508;22369;28457;28356;35343;41330;40477;51469;59585;32486;33850;23050;25214;21206;33236;27702;21052;25350.83;14286;6812;5092;5604;6562;9531
-68;'250;France;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;7000;2017;2825;2406;1579;1293;679;1074;728;8786;30448;42013;38678;12770;5051;5470;3469;3026;7703;13564;8986;6806;4345;3905;2864
-68;'250;France;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;3031;878;973;986;861;809;647;1033;3319;11303;30382;59170;56497;3312;3293;3532;1915;1793;5010.34;9308;5900;4915;3559;3057;2545
-68;'250;France;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;3000;90;514;854;212;161;307;70;343;95;5653;5480;3999;2520;3607;5986;3204;6856;5611;25758;12618;68142;81446;65055;56589
-68;'250;France;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;1355;46;133;306;103;50;109;25;1879;43;2053;2219;1811;1476;1809;2675;761;2932;3146.76;16297;7510;45592;60897;59945;53863
-68;'250;France;1669;Recovered paper;5510;Production;t;754000;810000;875000;995000;947000;1041000;1073000;1108000;1209000;1318000;1372000;1575000;1695000;1852000;1513000;1790000;1786000;1828000;1953000;1927000;2040000;2129000;2211000;2374000;2355000;2377000;2560000;2712000;2883000;2255000;3007000;3007000;2829000;4075000;3700000;3857000;4219000;4614000;5276000;5775000;5571000;5705000;5783000;5942000;5953000;6049700;5946900;5677000;4998000;5276000;5066400;7347800;7269000;7313200;7123000;7242000;7289600;6938000;6736000;6317000;6885000;6584000;6486300
-68;'250;France;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;137000;134000;171000;182000;233400;147700;190200;200300;265800;292200;323000;270200;277800;313300;400000;373800;423200;411000;646000;718000;775400;962500;996006;1005000;1228000;1178000;1083000;998000;1015500;1238000;1379847;1089596;1181093;1256672;1124388;1201106;1044418;991491;951050;798009;905271;867349;756863;773772;945055;1016583;978890;1013192;957965;898718;766380;938124;900101;851584
-68;'250;France;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;6142;5026;7035;11748;32056;10479;13526;14753;19011;33783;47231;23952;24477;26248;33600;36561;36561;42641;78213;117752;79805;68665;66576;38199;116155;249766;77036;59107;64288;81587;157496;71112;104720;129852;117776;125348;112500;156736;160611;93136;176237;204676;137950;138917;168901;157498;166768;189883.9;151420;125746;107229;209682;215129;125890
-68;'250;France;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;87000;75000;113000;169000;203000;209700;310400;302500;327800;362500;360600;372100;407500;422900;500000;475500;476000;512000;546000;511000;519000;601400;587202;424000;669000;786000;745000;749600;871300;1028000;911274;1025032;1129078;1353424;1625710;1840978;1995631;2151307;2186185;2786753;2679257;2920153;3046461;2895121;2861708;2868832;2864884;2896814;2525385;2429041;2022094;2562701;2506850;2633699
-68;'250;France;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;6247;4654;7622;14906;35913;22703;34162;31924;34304;53427;65560;47253;43517;44822;53000;61527;59366;68792;91540;65408;68792;68665;92210;49947;104430;195930;94978;77553;83555;87849;122178;88461;110416;136415;175992;202391;236025;358934;386448;298335;486250;624901;498366;452965;437099;397592;431507;482779.38;363758;279988;233081;505986;488768;321611
-68;'250;France;1876;Paper and paperboard;5510;Production;t;2744000;2822000;3002000;3128000;3166000;3451200;3528500;3612100;3997200;4134200;4225800;4529500;4785000;4868000;4350000;4552000;4642000;4963000;5260000;5152000;5148000;5067000;5263000;5566000;5150000;5583000;5581000;6313000;6754000;7049000;7442000;7691000;7975000;8701000;8619000;8556000;9143000;9161300;9603000;10006000;9625000;9809000;9939000;10255000;10332000;10006200;9870500;9404000;8331500;8829800;8527213;8354181;8043150;8096000;7983677;7983500;8021410;7863503;7325000;6873000;7359001;7092000;6133700
-68;'250;France;1876;Paper and paperboard;5610;Import quantity;t;227700;298800;370200;499100;577800;699900;732000;841900;1075000;1144000;1282200;1498200;1650100;1817900;1236000;1757000;1610900;1789300;1976100;2109400;2070000;2083600;2404300;2562000;2432400;2729200;2799000;3387300;3536500;3791100;3786400;4310780;3885000;4482000;4319000;3097000;4189000;5727610;5976000;6130550;5806358;5927805;6044525;6302231;6089255;6216945;6373165;6156246;5320064;5604820;5553417;5258003;5008173;5001984;4933143;4788084;4807189;4728936;4849452;4502250;4742031;4845095;4215678
-68;'250;France;1876;Paper and paperboard;5622;Import value;1000 USD;39142;52487;64163;86479;118566;143676;174520;210338;279286;300146;350680;415924;481303;799450;647046;755387;747800;848962;955911;1043328;1023941;988211;1343143;1424400;1440024;1945378;2306039;2766415;2906161;3223195;3242419;3996193;3105953;3465105;4592288;2714950;3127436;4795431;4588052;4508114;4173909;4289083;4965035;5436461;5185946;5488230;6399395;6705720;5205006;5327665;5926529;5091703;5227465;5209028;4239433;4154844;4281636.03;4642464;4339759;3857620;4542299;5642430;4747145
-68;'250;France;1876;Paper and paperboard;5910;Export quantity;t;158200;134500;140300;165700;204600;213300;240700;307100;324700;386700;445600;507400;573100;733500;558000;666400;734800;861000;1006700;1064400;1081600;1050800;1184500;1318000;1284000;1395900;1453400;1787300;1970000;2115500;2367400;2968999;2928000;3411000;3316000;2523000;3460300;4145768;4624000;4742672;4504860;4756144;5078809;5538455;5590369;5266984;5098415;4938407;4353624;4664061;4565663;4301378;4239629;4233214;4148320;4059199;4022359;3885065;3723797;3464747;3806827;3665056;3302171
-68;'250;France;1876;Paper and paperboard;5922;Export value;1000 USD;49079;45835;46582;54588;64359;69254;75733;95872;106188;129941;153635;171940;227779;446736;346822;401156;477600;518286;631700;634357;645242;634320;709159;849300;943471;1095336;1521673;1775924;1957664;2103778;2356783;2981577;2304386;2877442;3875934;2570892;2965346;4002098;3988454;4028291;3657279;3735521;4454454;5057147;5043072;5050598;5419268;5658479;4574522;4875013;5357252;4535389;4549550;4491669;3736691;3552023;3667470.33;3976617;3421643;3018233;4061027;4625776;3752944
-68;'250;France;2042;Graphic papers;5510;Production;t;1198000;1220000;1290000;1352000;1383200;1487700;1509200;1613900;1781900;1848200;1826100;1910000;1984000;2067000;1549000;1888000;1945000;2467000;2307000;2272000;2268000;2259000;2339000;2512000;2162000;2436000;2608000;2747000;2916000;3195000;3336000;3618000;3738000;4112000;3986000;3924000;4259000;4024100;4346000;4474000;4328000;4328000;4409000;4593000;4614000;4300300;4287200;3942900;3290400;3632200;3431498;3085547;2898176;2586000;2346677;2258000;2223210;2110003;1633000;1198000;1314001;1190000;760600
-68;'250;France;2042;Graphic papers;5610;Import quantity;t;113400;123300;122700;168500;184500;238400;294000;314900;367000;405000;461200;581200;658100;716900;527000;707000;714100;819300;868100;968000;940300;919300;1089300;1200000;1169600;1304800;1379000;1662900;1730400;1840000;1805400;2226182;2210000;2583000;2541000;1272000;2083000;3381900;3566000;3715167;3144769;3697202;3821158;4033098;3882290;3966499;3967050;3807045;3069279;3265893;3161138;2921599;2811579;2788680;2630583;2582824;2456518;2393772;2468347;2131837;2127602;2121258;1707028
-68;'250;France;2042;Graphic papers;5622;Import value;1000 USD;13938;19161;20515;30263;35891;46513;61520;67208;76332;86260;101533;135000;171400;312403;269646;339087;375800;442962;488711;570228;535950;521155;620443;691000;723803;1027410;1108639;1311415;1371161;1562195;1558419;2096216;1788151;2135186;2890206;1189330;1654881;2884601;2785617;2727691;2358042;2795470;3204892;3531670;3369781;3529419;3957804;4167530;3188441;3124354;3330360;2837320;2951246;2927039;2286259;2249078;2171493.19;2317859;2234727;1843267;1945645;2551595;2136815
-68;'250;France;2042;Graphic papers;5910;Export quantity;t;45200;45400;33500;39600;78400;75600;102700;148100;140700;159700;186600;210400;215100;338500;263000;288400;345900;454400;525000;531800;540900;525300;593500;643000;635100;684200;734000;934200;1029800;1112800;1283200;1756871;1839000;2117000;2071000;1047000;1797000;2195000;2499000;2593853;2419028;2744577;2912119;3098860;3194810;2949598;2897081;2760558;2327750;2562962;2482981;2218264;2108844;1895165;1700159;1607427;1516706;1468048;1217471;895995;1008646;937247;724623
-68;'250;France;2042;Graphic papers;5922;Export value;1000 USD;8633;6952;6451;9331;19424;18748;23273;36902;35896;41860;56070;60340;90131;203536;158722;178556;224100;294346;337700;343657;349242;339320;383759;414200;503401;636653;824673;943924;1037664;1121778;1294183;1754238;1478294;1789864;2465849;1012030;1464710;1975349;2012148;2043965;1880293;2185288;2501091;2751297;2846931;2789463;3022667;3130003;2558763;2647059;2854706;2278715;2156749;1977152;1523512;1375954;1327694.78;1434658;1136202;814614;986627;1193284;940662
-68;'250;France;1671;Newsprint;5510;Production;t;436000;432000;440000;463000;450000;460600;447000;416700;427700;430200;380600;330000;305000;276000;238000;258000;261000;287000;280000;261000;267000;248000;219000;264000;264000;303000;299000;373000;379000;422000;509000;670000;802000;844000;890000;783000;909000;922500;1099000;1039000;1033000;994000;1069000;1118000;1108000;1109600;1087800;1063699;873405;984112;942418;904385;934038;871000;790000;787069;775560;739446;527450;350960;386462;344367;177204
-68;'250;France;1671;Newsprint;5610;Import quantity;t;77100;82700;75100;91500;96800;122500;117000;111900;146000;177000;190200;252200;289100;341900;165000;318000;327100;326300;328800;371400;349800;310700;343300;323000;317800;354800;406000;481500;487700;497600;442300;422233;418000;488000;439000;463000;493000;520500;518000;583486;565780;560119;531920;578412;572462;530729;492908;492384;383616;390607;395605;335610;360377;383815;324013;307254;276679;249952;217098;187503;187127;186569;150137
-68;'250;France;1671;Newsprint;5622;Import value;1000 USD;11172;11955;10857;13266;13966;17538;17270;16208;21032;25735;28783;45000;54595;105024;67152;119900;141300;144162;161811;208228;175950;151155;166843;157000;135514;197177;226000;313415;271161;362195;308419;254355;221235;264982;341016;375347;291135;304928;290215;291517;316686;303830;316705;348581;348625;360351;363858;383299;286581;235052;289305;224765;236238;262627;171093;160641;147967.41;158663;138751;114445;120802;158424;132671
-68;'250;France;1671;Newsprint;5910;Export quantity;t;10400;5800;6100;2300;1800;1400;1700;7100;5700;1700;1600;2400;1500;3500;1000;6400;1900;2200;9700;3600;4900;4300;4500;10000;13500;16900;30000;99300;109700;131500;222200;349867;476000;525000;535000;489000;605000;577800;728000;744102;703992;629058;703191;767755;794515;736388;764524;722640;603686;756385;697757;729437;777908;709132;543682;602065;591319;629764;568236;418195;295253;274353;338205
-68;'250;France;1671;Newsprint;5922;Export value;1000 USD;1600;871;901;305;274;198;223;952;671;210;242;340;371;1388;422;2266;800;846;3700;1357;1242;1320;1459;3200;5433;8821;15990;58924;57664;71778;144183;195525;216795;236716;382460;368394;313759;325126;371070;347028;369159;305423;351721;397059;432539;469007;539747;545095;419732;441510;494370;467282;491533;448220;267498;294849;291834.55;366613;332592;238456;460491;556945;439038
-68;'250;France;1674;Printing and writing papers;5510;Production;t;762000;788000;850000;889000;933200;1027100;1062200;1197200;1354200;1418000;1445500;1580000;1679000;1791000;1311000;1630000;1684000;2180000;2027000;2011000;2001000;2011000;2120000;2248000;1898000;2133000;2309000;2374000;2537000;2773000;2827000;2948000;2936000;3268000;3096000;3141000;3350000;3101600;3247000;3435000;3295000;3334000;3340000;3475000;3506000;3190700;3199400;2879201;2416995;2648088;2489080;2181162;1964138;1715000;1556677;1470931;1447650;1370557;1105550;847040;927539;845633;583396
-68;'250;France;1674;Printing and writing papers;5610;Import quantity;t;36300;40600;47600;77000;87700;115900;177000;203000;221000;228000;271000;329000;369000;375000;362000;389000;387000;493000;539300;596600;590500;608600;746000;877000;851800;950000;973000;1181400;1242700;1342400;1363100;1803949;1792000;2095000;2102000;809000;1590000;2861400;3048000;3131681;2578989;3137083;3289238;3454686;3309828;3435770;3474142;3314661;2685663;2875286;2765533;2585989;2451202;2404865;2306570;2275570;2179839;2143820;2251249;1944334;1940475;1934689;1556891
-68;'250;France;1674;Printing and writing papers;5622;Import value;1000 USD;2766;7206;9658;16997;21925;28975;44250;51000;55300;60525;72750;90000;116805;207379;202494;219187;234500;298800;326900;362000;360000;370000;453600;534000;588289;830233;882639;998000;1100000;1200000;1250000;1841861;1566916;1870204;2549190;813983;1363746;2579673;2495402;2436174;2041356;2491640;2888187;3183089;3021156;3169068;3593946;3784231;2901860;2889302;3041055;2612555;2715008;2664412;2115166;2088437;2023525.78;2159196;2095976;1728822;1824843;2393171;2004144
-68;'250;France;1674;Printing and writing papers;5910;Export quantity;t;34800;39600;27400;37300;76600;74200;101000;141000;135000;158000;185000;208000;213600;335000;262000;282000;344000;452200;515300;528200;536000;521000;589000;633000;621600;667300;704000;834900;920100;981300;1061000;1407004;1363000;1592000;1536000;558000;1192000;1617200;1771000;1849751;1715036;2115519;2208928;2331105;2400295;2213210;2132557;2037918;1724064;1806577;1785224;1488827;1330936;1186033;1156477;1005362;925387;838284;649235;477800;713393;662894;386418
-68;'250;France;1674;Printing and writing papers;5922;Export value;1000 USD;7033;6081;5550;9026;19150;18550;23050;35950;35225;41650;55828;60000;89760;202148;158300;176290;223300;293500;334000;342300;348000;338000;382300;411000;497968;627832;808683;885000;980000;1050000;1150000;1558713;1261499;1553148;2083389;643636;1150951;1650223;1641078;1696937;1511134;1879865;2149370;2354238;2414392;2320456;2482920;2584908;2139031;2205549;2360336;1811433;1665216;1528932;1256014;1081105;1035860.22;1068045;803610;576158;526136;636339;501624
-68;'250;France;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186096;186000;208000;181000;176000;175000;177000;175000;158453;156584;140917;124292;134886;129370;47403;53478;48693;49855;49675;48950;46670;33290;22150;24391;21734;11184
-68;'250;France;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416900;417000;370454;424346;489958;513649;590208;511451;629606;586396;644331;415790;493582;514612;454277;449608;390409;407611;382456;389464;413372;410039;354139;353436;352382;283570
-68;'250;France;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302424;293422;223899;269208;323339;377055;458505;395914;500161;537187;608726;382783;406438;459282;376309;374055;317617;260090;233482;236765.4;279467;288121;237651;250850;328975;275498
-68;'250;France;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96400;101000;119422;139026;122053;108227;88031;92979;98408;72204;61687;49177;45622;64147;48262;59083;65223;56338;44094;20118;17278;19774;14550;13683;12715;11768
-68;'250;France;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75021;70541;96254;100795;92075;75907;77124;75272;69196;63031;59834;47952;44347;64198;49153;58232;61487;47766;27533;13738.58;15216;15414;11051;16022;19378;15276
-68;'250;France;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1302672;1386000;1473000;1323000;1294000;1269000;1282000;1269000;1147247;1133716;1020283;899908;976614;936678;771832;825164;751307;789000;706100;694000;652000;593000;506000;552000;511000;411200
-68;'250;France;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638200;691000;686348;649403;820987;860210;846856;913290;950784;950997;887072;849765;863559;836830;830179;787862;744759;674632;724844;668707;666807;652926;563915;562799;561121;451548
-68;'250;France;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638493;600175;580865;576614;722112;806748;827225;856524;916631;1091923;1130753;965436;942830;1008674;919897;916521;869615;671783;728554;700711.83;767980;737646;608432;642225;842239;705327
-68;'250;France;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395900;494000;516189;464853;639014;645359;635411;644971;598275;579525;567775;558787;548693;537861;406211;408390;428129;509567;426141;407203;360572;335842;247161;394232;366325;199890
-68;'250;France;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449270;495980;514740;440633;630688;703106;717698;723973;727760;812487;832477;786026;790431;863614;656055;657807;664200;631260;541383;516785.84;521420;444087;318394;272165;329172;259485
-68;'250;France;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1612832;1675000;1754000;1791000;1864000;1896000;2016000;2062000;1885000;1909100;1718001;1392795;1536588;1423032;1361927;1085496;915000;717822;715156;704700;671887;479260;318890;351148;312899;161012
-68;'250;France;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1806300;1940000;2074879;1505240;1826138;1915379;2017622;1885087;1855380;1936749;1783258;1420108;1518145;1414091;1301533;1213732;1269697;1224327;1168270;1121668;1063641;1188284;1026280;1024240;1021186;821773
-68;'250;France;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1638756;1601805;1631410;1195534;1446189;1704384;1897359;1768718;1752276;1964836;2044752;1553641;1540034;1573099;1316349;1424432;1477180;1183293;1126401;1086048.55;1111749;1070209;882739;931768;1221957;1023319
-68;'250;France;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124900;1176000;1214140;1111157;1354452;1455342;1607663;1662345;1516527;1480828;1408456;1116100;1212262;1183216;1034354;863463;692681;590572;535127;498066;460434;293619;216089;305478;283854;174760
-68;'250;France;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125932;1074557;1085943;969706;1157102;1370357;1559416;1615147;1523500;1607402;1692597;1305053;1370771;1432524;1106225;949177;803245;576988;512189;505335.81;531409;344109;246713;237949;287789;226863
-68;'250;France;1675;Other paper and paperboard;5510;Production;t;1546000;1602000;1712000;1776000;1782800;1963500;2019300;1998200;2215300;2286000;2399700;2619500;2801000;2801000;2801000;2664000;2697000;2496000;2953000;2880000;2880000;2808000;2924000;3054000;2988000;3147000;2973000;3566000;3838000;3854000;4106000;4073000;4237000;4589000;4633000;4632000;4884000;5137200;5257000;5532000;5297000;5481000;5530000;5662000;5718000;5705900;5583300;5461100;5041100;5197600;5095715;5268634;5144974;5510000;5637000;5725500;5798200;5753500;5692000;5675000;6045000;5902000;5373100
-68;'250;France;1675;Other paper and paperboard;5610;Import quantity;t;114300;175500;247500;330600;393300;461500;438000;527000;708000;739000;821000;917000;992000;1101000;709000;1050000;896800;970000;1108000;1141400;1129700;1164300;1315000;1362000;1262800;1424400;1420000;1724400;1806100;1951100;1981000;2084598;1675000;1899000;1778000;1825000;2106000;2345710;2410000;2415383;2661589;2230603;2223367;2269133;2206965;2250446;2406115;2349201;2250785;2338927;2392279;2336404;2196594;2213304;2302560;2205260;2350671;2335164;2381105;2370413;2614429;2723837;2508650
-68;'250;France;1675;Other paper and paperboard;5622;Import value;1000 USD;25204;33326;43648;56216;82675;97163;113000;143130;202954;213886;249147;280924;309903;487047;377400;416300;372000;406000;467200;473100;487991;467056;722700;733400;716221;917968;1197400;1455000;1535000;1661000;1684000;1899977;1317802;1329919;1702082;1525620;1472555;1910830;1802435;1780423;1815867;1493613;1760143;1904791;1816165;1958811;2441591;2538190;2016565;2203311;2596169;2254383;2276219;2281989;1953174;1905766;2110142.84;2324605;2105032;2014353;2596654;3090835;2610330
-68;'250;France;1675;Other paper and paperboard;5910;Export quantity;t;113000;89100;106800;126100;126200;137700;138000;159000;184000;227000;259000;297000;358000;395000;295000;378000;388900;406600;481700;532600;540700;525500;591000;675000;648900;711700;719400;853100;940200;1002700;1084200;1212128;1089000;1294000;1245000;1476000;1663300;1950768;2125000;2148819;2085832;2011567;2166690;2439595;2395559;2317386;2201334;2177849;2025874;2101099;2082682;2083114;2130785;2338049;2448161;2451772;2505653;2417017;2506326;2568752;2798181;2727809;2577548
-68;'250;France;1675;Other paper and paperboard;5922;Export value;1000 USD;40446;38883;40131;45257;44935;50506;52460;58970;70292;88081;97565;111600;137648;243200;188100;222600;253500;223940;294000;290700;296000;295000;325400;435100;440070;458683;697000;832000;920000;982000;1062600;1227339;826092;1087578;1410085;1558862;1500636;2026749;1976306;1984326;1776986;1550233;1953363;2305850;2196141;2261135;2396601;2528476;2015759;2227954;2502546;2256674;2392801;2514517;2213179;2176069;2339775.56;2541959;2285441;2203619;3074400;3432492;2812282
-68;'250;France;1676;Household and sanitary papers;5510;Production;t;;;;;112000;124400;134700;111200;124700;139300;147600;161000;184000;184000;184000;123000;128000;139000;174000;185000;185000;180000;216000;226000;221000;233000;220000;298000;320000;321000;365000;381000;396000;478000;489000;508000;534000;514300;536000;578000;592000;646000;675000;716000;756000;737200;753500;739900;733100;727600;731361;793710;804016;820000;831000;845700;840700;846000;817000;832000;817000;847000;783700
-68;'250;France;1676;Household and sanitary papers;5610;Import quantity;t;1100;1800;2500;3300;3900;4600;3000;4000;9000;10000;13000;13000;18000;26000;24000;26000;30000;36000;40000;57700;57600;59400;63000;76000;78200;88300;88000;107000;112000;121000;188000;109000;61000;72000;82000;72000;79000;96900;122000;130612;129395;133359;128013;125424;101309;82703;103349;130033;114347;91772;86393;81345;99212;66491;87332;73015;101286;102639;87551;90586;89623;112059;112069
-68;'250;France;1676;Household and sanitary papers;5622;Import value;1000 USD;504;666;873;1124;1653;1943;2000;2800;7254;6670;9997;9724;13500;22542;22700;24600;27000;32000;36000;36100;37000;35500;37700;45400;55425;85124;111400;135000;143000;155000;241000;133499;69814;76789;114281;92916;89771;103868;116325;131302;123424;125509;146523;156881;136725;133990;181959;236939;185734;153690;148753;129956;155355;115419;119446;102423;134166.67;152683;122183;123296;124659;201693;189395
-68;'250;France;1676;Household and sanitary papers;5910;Export quantity;t;2300;1800;2100;2500;2500;2700;3000;7000;2000;7000;4000;9000;6000;4000;4000;11000;13000;13000;15000;18700;19000;18000;20000;29000;35200;38800;40000;42000;45000;47700;79000;42000;51000;60000;69000;81000;70300;77900;65000;76886;64594;74335;92062;82778;98319;81391;94814;103544;85170;70077;84387;102597;96852;74357;77732;74181;74345;94214;80689;79583;67591;78642;61657
-68;'250;France;1676;Household and sanitary papers;5922;Export value;1000 USD;1213;1166;1204;1358;1348;1515;1500;3500;1100;3700;2140;4800;3230;3900;3900;13900;16400;16440;19000;23700;23700;23600;26200;38000;30221;40074;60700;72400;80000;85000;143000;62299;92597;87919;127374;125936;90586;94719;70860;85493;66901;95378;132864;140026;142636;143452;185878;218511;170800;150259;175986;181921;175297;134355;119715;113709;117271.68;152759;120680;105339;107723;155703;125183
-68;'250;France;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4347400;4395000;4601000;4360000;4473000;4469000;4547000;4510000;4487600;4370500;4268400;3898200;4043700;3934653;4045544;3926048;4267000;4383000;4439300;4513800;4461000;4441000;4422000;4840000;4682000;4290800
-68;'250;France;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973800;2014000;2008080;1986000;1776092;1845298;1918361;1971803;2121207;2260602;2162658;2094923;2213720;2273646;2220688;2066275;2116755;2182594;2095766;2210189;2193182;2252845;2249687;2483619;2576453;2365233
-68;'250;France;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1401853;1300050;1267270;1214106;1156084;1405515;1541441;1525089;1755774;2177710;2186015;1741342;1962412;2340794;2027404;2018448;2072620;1756193;1712550;1885768.89;2077729;1888632;1808369;2374037;2793751;2315976
-68;'250;France;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1493200;1631000;1585698;1510078;1580053;1705526;2000030;1950253;2178171;2090513;2057665;1926675;2016060;1985299;1968038;2021818;2250989;2357817;2364896;2420415;2310254;2414707;2478495;2672386;2589248;2461017
-68;'250;France;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1140398;1134982;1165486;1101402;1094805;1375114;1670163;1560681;1854783;2091081;2170923;1713653;1946469;2183699;1931489;2067743;2230374;1954763;1937025;2100284.38;2246845;2010958;1934592;2595360;2957337;2333061
-68;'250;France;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;1139500;1250700;1300800;1356600;1497000;2001700;2097500;2290000;1898000;1898000;1898000;2244000;2326000;2172000;2067000;2000000;2000000;1950000;2556000;2669000;2611000;2750000;2598000;2897000;3118000;3131000;3356000;3342000;3477000;3838000;3767000;3842000;4074000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;97100;149200;210400;281000;334300;392300;371000;429000;554000;572000;613000;681000;734000;822000;501000;755000;560000;600000;671000;690000;683500;704400;600000;667000;576500;651000;648000;788000;825000;890000;922000;1811000;1581000;1807000;1672000;1725000;1995000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;16635;21995;28808;37103;54566;64128;74200;86230;111900;116116;125050;139600;153400;286050;252000;254800;188800;203000;227200;234000;241500;231190;196000;219000;200000;313244;409000;496000;524000;566000;590000;1445203;1211976;1223703;1547079;1393650;1342560;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;70000;55200;66200;78200;78200;85400;86000;107000;116000;137000;175000;209000;243000;267000;204000;262000;212000;324100;311500;435500;442000;429800;499000;427000;453800;495400;496000;600000;648000;691000;838000;957000;1014000;1210000;1152000;1323000;1521000;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;20627;19830;20467;23081;22917;25758;26660;33170;36192;42881;55125;66800;79218;133500;109000;118700;96500;147500;141800;199000;202800;202100;234600;200700;226599;268609;409000;488000;539000;575000;696000;797804;689561;948433;1223910;1168972;1150300;;;;;;;;;;;;;;;;;;;;;;;;;;
-68;'250;France;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3148300;3182800;3332000;3152000;3220000;3266000;3399000;3430000;3443300;3306700;3265800;3013800;3120100;3033246;2930515;2765651;3024000;3369000;3447000;3525700;3482000;3487000;3576000;3933000;3833000;3642400
-68;'250;France;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909000;975000;984103;981446;855379;924770;1042402;1106333;1109500;1167458;1144273;1127186;1188269;1307786;1224871;1090771;1128252;1164131;1064228;1144423;1123842;1165489;1163854;1284870;1332897;1223625
-68;'250;France;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382814;382454;411816;381598;332767;388752;491945;511919;582079;767180;756146;538966;679889;910716;708344;681836;720521;629295;582995;661958.13;760835;636950;609881;800655;942206;781074
-68;'250;France;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945800;990000;914966;842091;945400;1050491;1264946;1230010;1205745;1151697;1132467;1120196;1130850;1102053;1086447;1127050;1318116;1430896;1442514;1474291;1389125;1520055;1560206;1682261;1629926;1549205
-68;'250;France;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434847;419843;441832;386957;415979;517033;656746;611301;684632;792120;793830;579078;727156;828644;704103;811711;907666;833849;828413;948245.76;1025786;865534;832666;1117066;1272864;1004170
-68;'250;France;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285400;288500;302000;514000;537000;506000;477000;487000;474724;481839;459469;402849;424376;415999;641268;667847;684000;685000;674200;674300;686000;669000;647000;682000;579000;471700
-68;'250;France;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640000;606000;623951;649483;570844;548149;550230;524064;613248;686427;632824;620293;636164;593512;631579;632245;615682;650973;657379;679645;675694;679559;678606;749174;777177;713463
-68;'250;France;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656427;580457;549060;567569;536226;640732;689323;649849;771824;940360;924879;803647;841606;940357;892910;899201;889809;758327;751372;807788.42;850490;801130;767083;1007032;1185068;982403
-68;'250;France;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214100;265000;291985;328322;257075;263126;285445;264985;351752;342295;317097;262580;288010;289417;293553;289330;313609;320258;338257;362617;339696;347046;356216;384086;372137;353707
-68;'250;France;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315044;337804;321336;339106;282384;379637;447989;388863;505648;568127;548266;476532;479357;546182;492462;488049;527092;434218;445663;471737.24;460944;455113;437830;587373;669294;528010
-68;'250;France;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366600;370600;388000;372000;364000;362000;357000;272000;257000;264700;240600;216300;219800;211499;219163;227400;233000;229000;218100;213800;193000;185000;199000;225000;270000;176700
-68;'250;France;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314900;317000;338285;299476;339524;359322;312748;329895;328225;320084;301484;281325;309079;292124;282960;268066;291363;277681;281965;298528;302551;316720;316275;349168;362219;332524
-68;'250;France;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305230;282616;283436;247314;278954;365080;350793;353195;361625;416378;445267;357808;393652;435654;378243;392594;414720;324896;332990;372011.73;416723;404544;387352;508518;598420;496081
-68;'250;France;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283200;313000;364609;329713;339941;351594;401575;405588;409396;399862;428512;391710;417095;403435;400841;408337;415869;417088;397592;399534;394357;372560;382400;412314;399487;379703
-68;'250;France;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356454;336292;396837;371858;377151;453896;533731;530201;567740;620562;716880;581063;637432;678860;618357;644392;666056;582469;560915;579700.54;644977;595041;572444;767965;875074;690351
-68;'250;France;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547100;553100;579000;322000;352000;335000;314000;321000;312576;317261;302531;265251;279424;273909;254598;265150;326000;100000;100000;100000;100000;100000;0;0;0;0
-68;'250;France;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109900;116000;61741;55595;10345;13057;12981;11511;70234;86633;84077;66119;80208;80224;81278;75193;81458;89809;92194;87593;91095;91077;90952;100407;104160;95621
-68;'250;France;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57382;54523;22958;17625;8137;10951;9380;10126;40246;53792;59723;40921;47265;54067;47907;44817;47570;43675;45193;44010.61;49681;46008;44053;57832;68057;56418
-68;'250;France;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50100;63000;14138;9952;37637;40315;48064;49670;211278;196659;179589;152189;180105;190394;187197;197101;203395;189575;186533;183973;187076;175046;179673;193725;187698;178402
-68;'250;France;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34053;41043;5481;3481;19291;24548;31697;30316;96763;110272;111947;76980;102524;130013;116567;123591;129560;104227;102034;100600.84;115138;95270;91652;122956;140105;110530
-68;'250;France;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;531300;588400;583800;530400;593600;145000;154600;168500;719000;719000;719000;297000;243000;185000;712000;695000;695000;678000;152000;159000;156000;164000;155000;371000;400000;402000;385000;350000;364000;273000;377000;282000;276000;275500;326000;353000;345000;362000;386000;399000;452000;481100;459300;452800;409800;426300;429701;429380;414910;423000;423000;440500;443700;446500;434000;421000;388000;373000;298600
-68;'250;France;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;16100;24500;34600;46300;55100;64600;64000;94000;145000;157000;195000;223000;240000;253000;184000;269000;306800;334000;397000;393700;388600;400500;652000;619000;608100;685100;684000;829400;869100;940100;871000;164598;33000;20000;24000;28000;32000;275010;274000;276691;546194;321152;250056;225348;133853;46536;42164;56510;41515;33435;32240;34371;31107;30058;32634;36479;39196;39343;40709;30140;41187;35325;31348
-68;'250;France;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;8065;10665;13967;17989;26456;31092;36800;54100;83800;91100;114100;131600;143003;178455;102700;136900;156200;171000;204000;203000;209491;200366;489000;469000;460796;519600;677000;824000;868000;940000;853000;321275;36012;29427;40722;39054;40224;405109;386060;381851;478337;212020;208105;206469;154351;69047;81922;115236;89489;87209;106622;97023;102416;93950;77535;90793;90207.28;94193;94217;82688;97958;95391;104959
-68;'250;France;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;40700;32100;38500;45400;45500;49600;49000;45000;66000;83000;80000;79000;109000;124000;87000;105000;163900;69500;155200;78400;79700;77700;72000;219000;159900;177500;183400;211100;247200;264000;167200;213128;24000;24000;24000;72000;72000;379668;429000;486235;511160;357179;369102;356787;346987;57824;16007;16640;14029;14962;12996;12479;12115;12703;12612;12695;10893;12549;10930;10674;58204;59919;54874
-68;'250;France;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;18606;17887;18460;20818;20670;23233;24300;22300;33000;41500;40300;40000;55200;105800;75200;90000;140600;60000;133200;68000;69500;69300;64600;196400;183250;150000;227300;271600;301000;322000;223600;367236;43934;51226;58801;263954;259750;791632;770464;733347;608683;360050;445385;495661;492824;262900;119642;139042;131306;131226;142861;143264;149761;149788;138701;125335;122219.5;142355;153803;163688;371317;319452;354038
-68;'250;France;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5520384.27;6031287;6078663;5843697;7753672;7895859;7072080
-68;'250;France;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1887354.91;2014489;1972999;1811127;2236314;2368326;2254786
-68;'250;France;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243136.3;267278;295370;274673;350996;399177;275367
-68;'250;France;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57599.61;51048;52117;46164;57369;50048;42754
-68;'250;France;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73279.34;81100;86116;99282;135774;117767;96829
-68;'250;France;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32098.86;29623;27984;27124;37457;28357;20334
-68;'250;France;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169856.96;186178;209254;175391;215222;281410;178538
-68;'250;France;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25500.76;21425;24133;19040;19912;21691;22420
-68;'250;France;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301638.22;340794;329460;296573;446688;534362;454662
-68;'250;France;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600576.16;642670;640616;560485;629892;754992;701818
-68;'250;France;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157580.7;181119;178695;173176;244089;268555;254519
-68;'250;France;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50239.21;56694;66637;60352;81139;97343;106558
-68;'250;France;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502159.12;561045;565125;572174;811273;743756;740249
-68;'250;France;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110360.11;111706;121987;110396;164290;160712;170721
-68;'250;France;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;200000
-68;'250;France;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76844;116842
-68;'250;France;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133828;187357
-68;'250;France;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3299;2971
-68;'250;France;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6224;6486
-68;'250;France;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000
-68;'250;France;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41664;26208
-68;'250;France;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73978;46084
-68;'250;France;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2784;2480
-68;'250;France;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4362;3482
-68;'250;France;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4608;4943
-68;'250;France;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7276;6570
-68;'250;France;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;222
-68;'250;France;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;386
-68;'250;France;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3776186.14;4098168;4138203;3964112;5186199;5211345;4715267
-68;'250;France;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;958758.38;1020043;985183;929138;1165619;1163020;1093849
-68;'250;France;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107498.14;106198;91612;99971;112188;95364;77501
-68;'250;France;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13322.85;21526;10921;9399;15263;14397;10695
-68;'250;France;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432185.64;476685;480198;463018;602239;643300;554515
-68;'250;France;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96498.59;110802;95538;95193;122742;127814;128391
-68;'250;France;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3850075.57;4143334;4197331;4237931;4752085;5453108;5240811
-68;'250;France;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300386.86;2543285;2498322;2387473;2656497;2987072;2871616
-68;'250;France;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27617.47;29833;32015;32015;32015;32015;32015
-68;'250;France;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17624.25;18131;16911;16911;16911;16911;16911
-68;'250;France;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457152.35;494943;482166;473123;562357;657116;614894
-68;'250;France;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622251.96;732617;693092;675892;779224;812545;638088
-68;'250;France;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603387.55;638816;654839;694892;668351;820856;853968
-68;'250;France;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561913.65;604632;593142;566084;537400;650932;692209
-68;'250;France;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765256.43;1941250;1916713;1923772;2223212;2520013;2372674
-68;'250;France;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607108.22;672183;692879;665845;793162;840260;845095
-68;'250;France;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996661.77;1038492;1111598;1114129;1266150;1423108;1367260
-68;'250;France;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491488.78;515722;502298;462741;529800;666424;679313
-69;'254;French Guiana;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2902;2902;2902;2902;2902;2902;2902
-69;'254;French Guiana;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8403;8403;8403;8403;8403;8403;8403
-69;'254;French Guiana;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;20;31;45;186;94;182;339;405;417;292;429;372;399;406;406;406;406;435;485;1177;665;904;1087;1087;578;621;1393;1407;2031;2132;2132;5205;3182;3425;2424;2424;2416;2178;2178;2178;2178;2178;2178;2178;2178;2205;2500;2981;2981;2342;2342;2612;2998;2902;2902;2902;2902;2902;2902;2902;2902;2902;2902
-69;'254;French Guiana;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;265;201;174;306;623;700;305;298;687;363;310;386;684;864;966;1555;2060;2650;3510;3510;3880;4600;2169;2169;3176;2481;4224;4233;2669;3889;3061;1953;1154;1636;2481;2481;2481;2481;2481;2481;2481;2481;2481;2481;4659;6719;7377;8016;7619;7289;7272;7465;6943;8403;8403;8403;8403;8403;8403;8403;8403;8403;8403
-69;'254;French Guiana;1861;Roundwood;5516;Production;m3;38000;36000;37000;54000;71000;92000;84000;98000;81000;53000;56010;55205;60151;58742;213101;207138;164324;160584;190992;212569;214374;216665;219394;221580;223829;226058;228306;231906;233647;232702;234277;235424;109410;112843;115425;122815;124353;143053;143585;135986;146643;150002;165493;170331;172260;171335;175546;196502;215254;207669;215351;221219;222924;231070;257337;212271;236185;229263;232433;235668;239055;242511;246038
-69;'254;French Guiana;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;49;700;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714
-69;'254;French Guiana;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;5;140;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145
-69;'254;French Guiana;1861;Roundwood;5916;Export quantity;m3;7800;9600;8300;16900;29100;34500;10000;6600;12700;4700;6600;8500;12600;17100;15800;22000;29000;36000;43400;43400;30000;33700;5300;5300;5149;4920;6572;13723;13308;9117;5563;2342;2162;2200;1772;1772;1772;1772;1772;1772;1772;1772;1772;1772;5917;5142;4549;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924
-69;'254;French Guiana;1861;Roundwood;5922;Export value;1000 USD;48;77;84;234;540;560;168;128;441;63;180;286;484;664;705;1105;1560;2200;3316;3316;2553;2900;339;339;327;308;564;2386;2131;2178;1350;503;403;418;869;869;869;869;869;869;869;869;869;869;3047;3482;3896;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236
-69;'254;French Guiana;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14
-69;'254;French Guiana;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5
-69;'254;French Guiana;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21
-69;'254;French Guiana;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-69;'254;French Guiana;1863;Roundwood, non-coniferous;5516;Production;m3;38000;36000;37000;54000;71000;92000;84000;98000;81000;53000;56010;55205;60151;58742;213101;207138;164324;160584;190992;212569;214374;216665;219394;221580;223829;226058;228306;231906;233647;232702;234277;235424;109410;112843;115425;122815;124353;143053;143585;135986;146643;150002;165493;170331;172260;171335;175546;196502;215254;207669;215351;221219;222924;231070;257337;212271;236185;229263;232433;235668;239055;242511;246038
-69;'254;French Guiana;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;700;700;700;700;700
-69;'254;French Guiana;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;140;140;140;140
-69;'254;French Guiana;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3903;3903;3903;3903;3903;3903;3903
-69;'254;French Guiana;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4232;4232;4232;4232;4232;4232;4232
-69;'254;French Guiana;1864;Wood fuel;5516;Production;m3;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;24010;23205;23151;21742;22101;23138;24324;24584;24992;24569;26374;28665;31394;33580;35829;38058;40306;43906;45647;44702;46277;47424;50410;52843;53884;56355;59235;64910;69624;74688;79230;84051;89170;94604;100373;105376;110600;116200;121954;128050;132612;137341;142243;147324;152590;155574;158619;161726;164896;168131;171518;174974;178501
-69;'254;French Guiana;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1628;Wood fuel, non-coniferous;5516;Production;m3;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;24010;23205;23151;21742;22101;23138;24324;24584;24992;24569;26374;28665;31394;33580;35829;38058;40306;43906;45647;44702;46277;47424;50410;52843;53884;56355;59235;64910;69624;74688;79230;84051;89170;94604;100373;105376;110600;116200;121954;128050;132612;137341;142243;147324;152590;155574;158619;161726;164896;168131;171518;174974;178501
-69;'254;French Guiana;1865;Industrial roundwood;5516;Production;m3;22000;20000;21000;38000;55000;76000;68000;82000;65000;37000;32000;32000;37000;37000;191000;184000;140000;136000;166000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;59000;60000;61541;66460;65118;78143;73961;61298;67413;65951;76323;75727;71887;65959;64946;80302;93300;79619;82739;83878;80681;83746;104747;56697;77566;67537;67537;67537;67537;67537;67537
-69;'254;French Guiana;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;49;700;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714;714
-69;'254;French Guiana;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;5;140;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145
-69;'254;French Guiana;1865;Industrial roundwood;5916;Export quantity;m3;7800;9600;8300;16900;29100;34500;10000;6600;12700;4700;6600;8500;12600;17100;15800;22000;29000;36000;43400;43400;30000;33700;5300;5300;5149;4920;6572;13723;13308;9117;5563;2342;2162;2200;1772;1772;1772;1772;1772;1772;1772;1772;1772;1772;5917;5142;4549;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924;3924
-69;'254;French Guiana;1865;Industrial roundwood;5922;Export value;1000 USD;48;77;84;234;540;560;168;128;441;63;180;286;484;664;705;1105;1560;2200;3316;3316;2553;2900;339;339;327;308;564;2386;2131;2178;1350;503;403;418;869;869;869;869;869;869;869;869;869;869;3047;3482;3896;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236;4236
-69;'254;French Guiana;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-69;'254;French Guiana;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-69;'254;French Guiana;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-69;'254;French Guiana;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-69;'254;French Guiana;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-69;'254;French Guiana;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-69;'254;French Guiana;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-69;'254;French Guiana;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-69;'254;French Guiana;1867;Industrial roundwood, non-coniferous;5516;Production;m3;22000;20000;21000;38000;55000;76000;68000;82000;65000;37000;32000;32000;37000;37000;191000;184000;140000;136000;166000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;188000;59000;60000;61541;66460;65118;78143;73961;61298;67413;65951;76323;75727;71887;65959;64946;80302;93300;79619;82739;83878;80681;83746;104747;56697;77566;67537;67537;67537;67537;67537;67537
-69;'254;French Guiana;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700
-69;'254;French Guiana;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140
-69;'254;French Guiana;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9117;5563;2342;2162;2200;1751;1751;1751;1751;1751;1751;1751;1751;1751;1751;5896;5121;4528;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903
-69;'254;French Guiana;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2178;1350;503;403;418;865;865;865;865;865;865;865;865;865;865;3043;3478;3892;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232
-69;'254;French Guiana;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9117;5563;2342;2162;2200;750;750;750;750;750;750;750;750;750;750;5896;5121;4528;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903;3903
-69;'254;French Guiana;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2178;1350;503;403;418;314;314;314;314;314;314;314;314;314;314;3043;3478;3892;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232;4232
-69;'254;French Guiana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700
-69;'254;French Guiana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140
-69;'254;French Guiana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;551;551;551;551;551;551;551;551;551;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1868;Sawlogs and veneer logs;5516;Production;m3;22000;20000;21000;33000;50000;71000;60000;73000;58000;30000;26000;27000;32000;32000;177000;171000;137000;131000;154000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;50000;51000;52541;57460;56118;69143;64961;52298;58413;56951;67323;66727;62887;56959;55946;71302;84300;70619;73739;74878;71681;74746;95747;47697;68566;58537;58537;58537;58537;58537;58537
-69;'254;French Guiana;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1868;Sawlogs and veneer logs;5916;Export quantity;m3;7800;9600;8300;16900;29100;34500;10000;6600;12400;3700;6200;5500;6600;8100;3800;7000;11000;15000;19200;19200;9500;13200;600;600;449;220;1872;9023;8608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;48;77;84;234;540;560;168;128;433;38;170;190;250;250;93;250;480;800;1319;1319;853;1200;58;58;46;27;283;2105;1850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;22000;20000;21000;33000;50000;71000;60000;73000;58000;30000;26000;27000;32000;32000;177000;171000;137000;131000;154000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;179000;50000;51000;52541;57460;56118;69143;64961;52298;58413;56951;67323;66727;62887;56959;55946;71302;84300;70619;73739;74878;71681;74746;95747;47697;68566;58537;58537;58537;58537;58537;58537
-69;'254;French Guiana;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;7800;9600;8300;16900;29100;34500;10000;6600;12400;3700;6200;5500;6600;8100;3800;7000;11000;15000;19200;19200;9500;13200;600;600;449;220;1872;9023;8608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;48;77;84;234;540;560;168;128;433;38;170;190;250;250;93;250;480;800;1319;1319;853;1200;58;58;46;27;283;2105;1850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1871;Other industrial roundwood;5516;Production;m3;;;;5000;5000;5000;8000;9000;7000;7000;6000;5000;5000;5000;14000;13000;3000;5000;12000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-69;'254;French Guiana;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;300;1000;400;3000;6000;9000;12000;15000;18000;21000;24200;24200;20500;20500;4700;4700;4700;4700;4700;4700;4700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;8;25;10;96;234;414;612;855;1080;1400;1997;1997;1700;1700;281;281;281;281;281;281;281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;5000;5000;5000;8000;9000;7000;7000;6000;5000;5000;5000;14000;13000;3000;5000;12000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-69;'254;French Guiana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;300;1000;400;3000;6000;9000;12000;15000;18000;21000;24200;24200;20500;20500;4700;4700;4700;4700;4700;4700;4700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;8;25;10;96;234;414;612;855;1080;1400;1997;1997;1700;1700;281;281;281;281;281;281;281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1630;Wood charcoal;5510;Production;t;1080;1078;1075;1072;1070;1067;1064;1062;1059;1057;1038;1042;1002;960;949;983;1108;1089;1086;1031;1121;1243;1398;1519;1644;1769;1895;2116;2211;2115;2197;2249;2428;2570;2629;2773;2949;3280;3566;3861;4134;4427;4740;5076;5435;5753;6100;6400;6822;7221;7533;7858;8198;8553;8922;9144;9372;9605;9844;10090;10326;10569;10816
-69;'254;French Guiana;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16
-69;'254;French Guiana;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-69;'254;French Guiana;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1872;Sawnwood;5516;Production;m3;8100;5500;7000;8500;7500;11900;16100;16900;13700;12300;7000;7700;9200;9200;9500;9600;9600;14000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;18000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;25200;24780;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500
-69;'254;French Guiana;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1531;1179;400;521;521;521;521;521;521;521;521;521;521;521;280;1183;1542;1542;325;255;494;837;752;752;752;752;752;752;752;752;752;752
-69;'254;French Guiana;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;356;184;122;122;122;122;122;122;122;122;122;122;122;149;444;925;925;286;286;556;942;846;846;846;846;846;846;846;846;846;846
-69;'254;French Guiana;1872;Sawnwood;5916;Export quantity;m3;3600;2000;2000;1300;1900;3000;3200;4100;3400;4100;2200;1300;2300;3200;7500;6000;4500;3000;1000;1000;5700;8100;11700;11700;13448;7025;10022;4800;1768;4238;4238;5051;2196;3700;3908;3908;3908;3908;3908;3908;3908;3908;3908;3908;3908;7156;7013;6968;5788;4735;4094;4354;3650;5620;5620;5620;5620;5620;5620;5620;5620;5620;5620
-69;'254;French Guiana;1872;Sawnwood;5922;Export value;1000 USD;217;124;90;72;83;140;137;170;246;300;130;100;200;200;261;450;500;450;194;194;1327;1700;1830;1830;2849;2173;3660;1847;538;1711;1711;1450;750;1218;1609;1609;1609;1609;1609;1609;1609;1609;1609;1609;1609;3234;3478;3777;3380;3050;3033;3226;2704;4164;4164;4164;4164;4164;4164;4164;4164;4164;4164
-69;'254;French Guiana;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;701;100;361;361;361;361;361;361;361;361;361;361;361;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;40;69;69;69;69;69;69;69;69;69;69;69;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;100;300;300;300;300;300;300;300;300;300;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;34;28;125;125;125;125;125;125;125;125;125;125;125;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1633;Sawnwood, non-coniferous;5516;Production;m3;8100;5500;7000;8500;7500;11900;16100;16900;13700;12300;7000;7700;9200;9200;9500;9600;9600;14000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;18000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;25200;24780;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500;31500
-69;'254;French Guiana;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;478;300;160;160;160;160;160;160;160;160;160;160;160;280;1183;1542;1542;325;255;494;837;752;752;752;752;752;752;752;752;752;752
-69;'254;French Guiana;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;223;144;53;53;53;53;53;53;53;53;53;53;53;149;444;925;925;286;286;556;942;846;846;846;846;846;846;846;846;846;846
-69;'254;French Guiana;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;3600;2000;2000;1300;1900;3000;3200;4100;3400;4100;2200;1300;2300;3200;7500;6000;4500;3000;1000;1000;5700;8100;11700;11700;13448;7025;10022;4800;1768;4238;4238;4851;1996;3600;3608;3608;3608;3608;3608;3608;3608;3608;3608;3608;3608;7156;7013;6968;5788;4735;4094;4354;3650;5620;5620;5620;5620;5620;5620;5620;5620;5620;5620
-69;'254;French Guiana;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;217;124;90;72;83;140;137;170;246;300;130;100;200;200;261;450;500;450;194;194;1327;1700;1830;1830;2849;2173;3660;1847;538;1711;1711;1403;716;1190;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;3234;3478;3777;3380;3050;3033;3226;2704;4164;4164;4164;4164;4164;4164;4164;4164;4164;4164
-69;'254;French Guiana;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;3;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16
-69;'254;French Guiana;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;4;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-69;'254;French Guiana;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1873;Wood-based panels;5616;Import quantity;m3;100;100;200;300;300;500;1000;1300;1300;900;1100;800;800;800;800;800;800;700;600;1500;1400;1400;1800;1800;537;457;1653;2027;3182;3176;3176;3525;2502;2852;3369;3369;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319;3319
-69;'254;French Guiana;1873;Wood-based panels;5622;Import value;1000 USD;20;31;45;74;69;139;250;346;357;230;340;271;271;271;271;271;271;300;350;840;554;554;722;722;213;256;1028;1042;1666;1767;1767;2094;1423;1536;1509;1509;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501
-69;'254;French Guiana;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1640;Plywood and LVL;5616;Import quantity;m3;100;100;200;300;300;500;1000;1300;1300;900;1100;800;800;800;800;800;800;700;600;500;400;400;1200;1200;223;220;1341;1824;3094;3130;3130;3203;2150;2500;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252;3252
-69;'254;French Guiana;1640;Plywood and LVL;5622;Import value;1000 USD;20;31;45;74;69;139;250;346;357;230;340;271;271;271;271;271;271;300;350;395;242;242;554;554;122;173;898;937;1614;1736;1736;1879;1280;1393;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450;1450
-69;'254;French Guiana;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;1000;1000;1000;600;600;314;237;312;203;88;46;46;229;305;305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;445;312;312;168;168;91;83;130;105;52;31;31;137;125;125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67
-69;'254;French Guiana;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51
-69;'254;French Guiana;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;47;47;50;50;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;18;18;8;8;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;20;20;50;50;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;7;7;8;8;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103
-69;'254;French Guiana;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-69;'254;French Guiana;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-69;'254;French Guiana;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103
-69;'254;French Guiana;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-69;'254;French Guiana;1876;Paper and paperboard;5610;Import quantity;t;0;0;0;200;100;100;200;100;100;100;200;200;200;200;200;200;200;200;200;200;100;300;300;300;300;300;300;300;300;300;300;1211;704;804;318;318;318;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239;239
-69;'254;French Guiana;1876;Paper and paperboard;5622;Import value;1000 USD;0;0;0;112;25;43;89;59;60;62;89;101;128;135;135;135;135;135;135;337;111;350;365;365;365;365;365;365;365;365;365;2559;1383;1551;624;624;624;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386;386
-69;'254;French Guiana;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;304;304;237;237;237;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158
-69;'254;French Guiana;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582;545;600;428;428;428;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190
-69;'254;French Guiana;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158;158
-69;'254;French Guiana;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190
-69;'254;French Guiana;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-69;'254;French Guiana;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;300;300;79;79;79;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582;543;598;238;238;238;;;;;;;;;;;;;;;;;;;;;;;;;;
-69;'254;French Guiana;1675;Other paper and paperboard;5610;Import quantity;t;0;0;0;200;100;100;200;100;100;100;200;200;200;200;200;200;200;200;200;200;100;300;300;300;300;300;300;300;300;300;300;478;400;500;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81
-69;'254;French Guiana;1675;Other paper and paperboard;5622;Import value;1000 USD;0;0;0;112;25;43;89;59;60;62;89;101;128;135;135;135;135;135;135;337;111;350;365;365;365;365;365;365;365;365;365;977;838;951;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196
-69;'254;French Guiana;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81
-69;'254;French Guiana;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196
-70;'258;French Polynesia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44422;50746;60724;54978;72022;73923;48251
-70;'258;French Polynesia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;756;518;506;424;670;607
-70;'258;French Polynesia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1040;1133;1118;1118;1455;2618;2618;3369;3729;3646;3652;4540;5205;4957;4907;7397;9757;10507;14496;11886;11251;16902;20672;17853;10052;7835;11238;8535;13462;13632;13735;17018;15568;18745;16502;15193;20970;20445;22199;21514;21467;18782;32800;34171;30602;33853;33663;38557;29010;31043;26249;23384;22419;23710;17115;21947;17263;21370;26457;23391;37098;33844;17599
-70;'258;French Polynesia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;35;35;1;1;53;103;112;152;152;143;120;198;198;104;163;145;170;125;116;120;196;181;177;404;569;528;226;243;242;169;169
-70;'258;French Polynesia;1861;Roundwood;5516;Production;m3;2936;2916;2896;2877;2857;2838;2819;2800;2781;2763;2783;2861;2769;2615;2621;2628;2671;2647;2610;2582;2696;2783;2886;2967;2972;3050;3117;3193;3269;3327;3404;3455;3505;3579;3627;3802;3895;3932;3973;4013;4057;4100;4144;4189;5234;5270;5306;5343;5380;5417;5449;5482;5515;5549;5582;5603;5623;5644;5665;5686;5706;5727;5748
-70;'258;French Polynesia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;701;3878;1777;3081;1017;1080;910;791;1525;1017;39;804;2508;11223;1919;1919;3557;4892;2601;1945;848;1147;960;449;10;8;8467;1392;199;3478;197;858;226;577
-70;'258;French Polynesia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;104;207;172;292;87;102;106;157;221;156;51;436;331;162;124;124;266;506;609;369;268;510;180;158;32;30;3693;518;119;770;85;599;130;317
-70;'258;French Polynesia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;412;412;463;463;463;463;32;32;32;32;32;32;32;32;32;32;32;1;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50;50;66;66;66;66;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;199;2908;184;796;214;373
-70;'258;French Polynesia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;119;562;79;547;115;257
-70;'258;French Polynesia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-70;'258;French Polynesia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-70;'258;French Polynesia;1863;Roundwood, non-coniferous;5516;Production;m3;2936;2916;2896;2877;2857;2838;2819;2800;2781;2763;2783;2861;2769;2615;2621;2628;2671;2647;2610;2582;2696;2783;2886;2967;2972;3050;3117;3193;3269;3327;3404;3455;3505;3579;3627;3802;3895;3932;3973;4013;4057;4100;4144;4189;5234;5270;5306;5343;5380;5417;5449;5482;5515;5549;5582;5603;5623;5644;5665;5686;5706;5727;5748
-70;'258;French Polynesia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289;0;570;13;62;12;204
-70;'258;French Polynesia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;0;208;6;52;15;60
-70;'258;French Polynesia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-70;'258;French Polynesia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-70;'258;French Polynesia;1864;Wood fuel;5516;Production;m3;2936;2916;2896;2877;2857;2838;2819;2800;2781;2763;2783;2861;2769;2615;2621;2628;2671;2647;2610;2582;2696;2783;2886;2967;2972;3050;3117;3193;3269;3327;3404;3455;3505;3579;3627;3802;3895;3932;3973;4013;4057;4100;4144;4189;4234;4270;4306;4343;4380;4417;4449;4482;4515;4549;4582;4603;4623;4644;4665;4686;4706;4727;4748
-70;'258;French Polynesia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;96;2;2;2;4;2;2;;;3;3;3;8;8
-70;'258;French Polynesia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;14;5;5;4;13;5;5;;;2;2;2;12;12
-70;'258;French Polynesia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-70;'258;French Polynesia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-70;'258;French Polynesia;1628;Wood fuel, non-coniferous;5516;Production;m3;2936;2916;2896;2877;2857;2838;2819;2800;2781;2763;2783;2861;2769;2615;2621;2628;2671;2647;2610;2582;2696;2783;2886;2967;2972;3050;3117;3193;3269;3327;3404;3455;3505;3579;3627;3802;3895;3932;3973;4013;4057;4100;4144;4189;4234;4270;4306;4343;4380;4417;4449;4482;4515;4549;4582;4603;4623;4644;4665;4686;4706;4727;4748
-70;'258;French Polynesia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3
-70;'258;French Polynesia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2
-70;'258;French Polynesia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;96;2;2;2;4;2;2;;;;;;;
-70;'258;French Polynesia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;14;5;5;4;13;5;5;;;;;;;
-70;'258;French Polynesia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-70;'258;French Polynesia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;701;3878;1777;3081;1017;1080;910;791;1525;1017;39;804;2508;11223;1919;1919;3557;4892;2600;1944;752;1145;958;447;6;6;8465;1392;199;3475;194;855;218;569
-70;'258;French Polynesia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;104;207;172;292;87;102;106;157;221;156;51;436;331;162;124;124;266;506;601;361;254;505;175;154;19;25;3688;518;119;768;83;597;118;305
-70;'258;French Polynesia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;412;412;463;463;463;463;32;32;32;32;32;32;32;32;32;32;32;1;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50;50;66;66;66;66;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;3299;1198;2502;108;1070;900;659;1097;954;11;700;2402;972;1262;1262;3467;4739;2460;1790;671;624;728;283;0;2;272;103;199;2908;184;796;209;368
-70;'258;French Polynesia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;111;76;196;7;100;104;84;134;115;8;345;234;59;77;77;211;289;150;109;118;14;6;16;0;10;20;44;119;562;79;547;105;247
-70;'258;French Polynesia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;3299;1198;2502;108;1070;900;659;1097;954;11;700;2402;972;1262;1262;3467;4739;2460;1790;671;624;728;283;0;2;272;103;199;2908;184;796;209;368
-70;'258;French Polynesia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;111;76;196;7;100;104;84;134;115;8;345;234;59;77;77;211;289;150;109;118;14;6;16;0;10;20;44;119;562;79;547;105;247
-70;'258;French Polynesia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-70;'258;French Polynesia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;579;579;579;909;10;10;132;428;63;28;104;106;10251;657;657;90;153;140;154;81;521;230;164;6;4;8193;1289;0;567;10;59;9;201
-70;'258;French Polynesia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;96;96;96;80;2;2;73;87;41;43;91;97;103;47;47;55;217;451;252;136;491;169;138;19;15;3668;474;0;206;4;50;13;58
-70;'258;French Polynesia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;412;412;463;463;463;463;32;32;32;32;32;32;32;32;32;32;32;1;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50;50;66;66;66;66;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;24;24;24;24;100;100;1125;44;44;44;49;89;35;21;21;4;4;4;4;40;0;0;21;0;0;0;0
-70;'258;French Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;28;28;28;28;76;76;2;7;7;7;33;370;50;64;64;9;9;9;15;77;1;0;23;0;0;0;0
-70;'258;French Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;412;412;463;463;463;463;32;32;32;32;32;32;32;32;32;32;32;1;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50;50;66;66;66;66;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;579;579;579;909;0;0;108;404;39;4;4;6;9126;613;613;46;104;51;119;60;500;226;160;2;0;8153;1289;0;546;10;59;9;201
-70;'258;French Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;96;96;96;80;0;0;45;59;13;15;15;21;101;40;40;48;184;81;202;72;427;160;129;10;0;3591;473;0;183;4;50;13;58
-70;'258;French Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-70;'258;French Polynesia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-70;'258;French Polynesia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;505;510;515;521;526;530;534;538;543;547;551;555;559
-70;'258;French Polynesia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;59;63;33;33;76;308;60;41;200;48;32;32;32;95;134;154;203;157;126;134;136;112;117;139;144;249;208;169;222;165;20
-70;'258;French Polynesia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;26;32;16;16;27;51;23;22;65;32;49;49;49;113;121;195;205;182;126;152;182;145;161;94;97;157;244;190;279;255;46
-70;'258;French Polynesia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;10;10;10;40;467;467;82;55;181;179;187;19;24;17;42;74;55;60;63;5;0;255;6;6
-70;'258;French Polynesia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;1;1;1;11;19;19;21;12;106;105;111;16;28;28;34;36;25;27;20;9;3;24;20;11
-70;'258;French Polynesia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;0;0;0;0;0;0;0;0;30;61;61;52;52;176;176;176;18;18;1;24;44;52;52;36;2;0;107;3;1
-70;'258;French Polynesia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;0;0;0;0;3;3;3;3;3;93;93;93;10;10;0;8;16;21;21;15;7;2;13;14;7
-70;'258;French Polynesia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;71;77;0;0;0;31;31;10;10;10;10;406;406;30;3;5;3;11;1;6;16;18;30;3;8;27;3;0;148;3;5
-70;'258;French Polynesia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;0;0;0;4;4;1;1;1;8;16;16;18;9;13;12;18;6;18;28;26;20;4;6;5;2;1;11;6;4
-70;'258;French Polynesia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;12
-70;'258;French Polynesia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;16
-70;'258;French Polynesia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;12
-70;'258;French Polynesia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;16
-70;'258;French Polynesia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1872;Sawnwood;5616;Import quantity;m3;11600;11200;11200;11200;11200;31800;31800;30300;30700;27700;21900;25900;27700;23000;19000;14300;17200;20300;31000;24000;20000;32000;36600;47200;35100;35100;35100;35100;32643;33318;33318;52256;33966;38146;35519;33600;48729;49910;51244;32917;36100;34442;41493;63341;39241;49835;54409;43844;34721;47620;55757;49737;37181;37585;18702;25935;8688;22392;27677;26057;45111;37418;25092
-70;'258;French Polynesia;1872;Sawnwood;5622;Import value;1000 USD;730;703;703;703;703;1866;1866;2204;2581;2225;2061;2836;3172;2650;2200;2531;3550;4300;6600;5500;4800;8670;9900;6896;5148;5148;5148;5148;7712;7194;7194;9988;8186;9913;9793;8870;12327;11393;12102;12894;12135;11490;15429;18085;14516;17428;17701;16660;11806;14113;10138;9374;8491;9174;6318;7491;4906;8603;10517;10055;19785;17288;11724
-70;'258;French Polynesia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;102;102;9;9;9;9;55;64;64;64;41;54;54;54;54;91;91;90;90;90;90;90;0;0;1;0;0;6;0;5;0
-70;'258;French Polynesia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;35;35;1;1;1;1;10;15;15;15;10;11;11;11;11;35;35;0;0;0;0;0;0;0;0;0;0;60;0;0;0
-70;'258;French Polynesia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1632;Sawnwood, coniferous;5616;Import quantity;m3;11600;11200;11200;11200;11200;31800;31800;30300;30700;27700;21900;25900;27700;23000;19000;14300;17200;20300;31000;24000;20000;32000;36600;47200;35100;35100;35100;35100;32643;33318;33318;49506;33478;36750;35086;32900;48210;48814;50644;32255;35600;33700;38400;55300;31200;43600;51604;40485;33364;45199;54729;48305;35987;37037;17568;21563;7532;20150;22924;25370;44132;35725;24649
-70;'258;French Polynesia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;730;703;703;703;703;1866;1866;2204;2581;2225;2061;2836;3172;2650;2200;2531;3550;4300;6600;5500;4800;8670;9900;6896;5148;5148;5148;5148;7712;7194;7194;8809;7861;9078;9352;8459;11993;10889;11742;12440;11761;11091;13149;15632;12063;13561;14550;12452;10123;11923;8740;6389;6855;8439;5204;5802;3536;7485;7822;9546;19090;16146;11099
-70;'258;French Polynesia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;90;90;90;90;90;90;90;0;0;1;0;0;0;0;1;0
-70;'258;French Polynesia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;31;31;0;0;0;0;0;0;0;0;0;0;56;0;0;0
-70;'258;French Polynesia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2750;488;1396;433;700;519;1096;600;662;500;742;3093;8041;8041;6235;2805;3359;1357;2421;1028;1432;1194;548;1134;4372;1156;2242;4753;687;979;1693;443
-70;'258;French Polynesia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179;325;835;441;411;334;504;360;454;374;399;2280;2453;2453;3867;3151;4208;1683;2190;1398;2985;1636;735;1114;1689;1370;1118;2695;509;695;1142;625
-70;'258;French Polynesia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;102;102;9;9;9;9;15;24;24;24;1;14;14;14;14;1;1;0;0;0;0;0;0;0;0;0;0;6;0;4;0
-70;'258;French Polynesia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;35;35;1;1;1;1;3;8;8;8;3;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;4;0;0;0
-70;'258;French Polynesia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;12;30;123;0;8;21;6;13;13;53;44;146;146;68;55;63;59;34;28;1;5;4;4;1;1;29;45;5;5;3;21
-70;'258;French Polynesia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;18;38;43;0;9;30;6;14;14;31;123;114;114;54;79;77;189;102;81;53;93;57;13;7;4;44;55;9;1336;179;50
-70;'258;French Polynesia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1873;Wood-based panels;5616;Import quantity;m3;1200;1600;1600;1600;3300;3400;3400;5300;4900;5100;5500;5100;5600;5600;5600;6300;6700;6700;10100;6700;6700;8700;14000;15800;9009;3964;9839;2314;9577;10832;10832;11954;7057;9877;8419;9530;11744;11631;41044;9511;13200;6353;13643;19138;19138;9457;6859;7359;6197;8962;7360;9318;11364;10450;10319;7123;9243;9070;8282;10580;11843;10036;4739
-70;'258;French Polynesia;1873;Wood-based panels;5622;Import value;1000 USD;240;321;321;321;658;658;658;1071;1054;1082;1180;1374;1628;1628;1628;2438;3155;3155;4842;3172;3177;4926;6927;7773;2926;1652;3413;1303;3147;3672;3672;4615;2553;4504;3564;4160;4303;4396;5248;3536;3465;3508;7501;4394;4394;5638;6105;7993;5550;6198;5205;5289;5719;4945;4143;3830;4806;5538;5362;5322;6022;7160;3476
-70;'258;French Polynesia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;72;72;72;0;0;3;3;3;3;49;0;0;0;0;0;0;0
-70;'258;French Polynesia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;0;1;3;7;3;3;14;0;0;0;0;0;0;0
-70;'258;French Polynesia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-70;'258;French Polynesia;1640;Plywood and LVL;5616;Import quantity;m3;300;500;500;500;1800;1800;1800;3500;3300;3000;3000;3600;4100;4100;4100;4400;5000;5000;8400;5000;5000;6900;8900;10500;1924;1590;4414;1332;6631;6731;6731;8585;4975;7233;6289;5300;9434;7753;9582;6179;5800;564;7981;3724;3724;6437;4718;3550;2962;5995;4737;7506;10316;9076;9346;6089;6700;7071;5063;7100;6031;5260;2825
-70;'258;French Polynesia;1640;Plywood and LVL;5622;Import value;1000 USD;75;116;116;116;446;446;446;789;831;784;817;1090;1275;1275;1275;1838;2513;2513;4200;2530;2535;4195;5101;5985;963;762;1809;836;2076;2256;2256;3071;1526;3101;2690;2358;3277;2786;3593;2373;2185;2459;4082;1322;1322;3799;4021;4061;2544;3167;2582;3200;4382;3294;3037;2845;2774;3283;2664;2393;2997;2724;1549
-70;'258;French Polynesia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;72;72;72;0;0;0;0;0;0;46;0;0;0;0;0;0;0
-70;'258;French Polynesia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;0;1;0;4;0;0;11;0;0;0;0;0;0;0
-70;'258;French Polynesia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;400;600;600;600;600;600;700;1700;1200;3608;786;3187;660;1084;1375;1375;1108;783;445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;145;250;250;250;250;250;334;616;481;879;403;860;316;451;642;642;478;445;289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;2000;1927;2311;1773;1536;2270;1263;3463;11204;11204;364;467;2066;1869;1650;1439;1043;40;52;43;26;831;831;1767;1595;3424;1916;801
-70;'258;French Polynesia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;869;843;977;806;529;787;711;2247;1838;1838;293;458;1847;1584;1481;1179;943;88;105;121;30;1039;1039;1456;1335;1512;1928;908
-70;'258;French Polynesia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0
-70;'258;French Polynesia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0
-70;'258;French Polynesia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7564;230;230;59;71;240;240;860;537;356;145;176;201;52;209;361;45;307;1189;439;169;853;633;979;38
-70;'258;French Polynesia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;53;53;23;144;39;39;540;590;478;142;218;229;76;252;218;50;382;440;572;163;726;559;980;42
-70;'258;French Polynesia;1874;Fibreboard;5616;Import quantity;m3;900;1100;1100;1100;1500;1600;1600;1800;1600;2100;2500;1500;1500;1500;1500;1500;1100;1100;1100;1100;1100;1100;3400;4100;3477;1588;2238;322;1862;2726;2726;2261;1299;2199;1230;2230;383;1567;22125;1566;4900;4467;2128;3970;3970;1796;1137;1387;1221;1141;983;717;799;961;885;701;523;729;1283;1032;1755;1881;1075
-70;'258;French Polynesia;1874;Fibreboard;5622;Import value;1000 USD;165;205;205;205;212;212;212;282;223;298;363;284;353;353;353;455;392;392;392;392;392;397;1210;1307;1084;487;744;151;620;774;774;1066;582;1114;425;933;183;633;773;581;440;315;1028;1195;1195;1006;1036;1607;1280;1332;1215;1070;997;1328;935;573;553;644;1079;868;954;1528;977
-70;'258;French Polynesia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;105;1167;19279;1111;500;231;1432;1869;1869;1237;776;917;360;121;86;69;123;71;266;17;32;284;140;106;57;63;63
-70;'258;French Polynesia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;47;532;446;432;309;195;789;867;867;814;618;852;351;88;94;128;101;112;201;26;26;175;205;154;99;152;152
-70;'258;French Polynesia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;230;230;80;2300;119;4200;4200;460;1387;1387;433;233;263;722;822;894;580;605;719;583;668;450;377;901;634;1444;1202;396
-70;'258;French Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;30;282;77;97;97;97;237;237;152;233;295;787;1051;1115;841;835;994;688;508;452;426;797;565;787;1094;543
-70;'258;French Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960;366;916;1000;1000;48;320;546;336;200;36;236;714;714;126;128;207;139;198;3;68;71;171;36;16;41;68;242;292;254;616;616
-70;'258;French Polynesia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;230;580;325;325;36;71;45;72;34;23;142;91;91;40;185;460;142;193;6;101;61;222;46;39;75;43;77;149;68;282;282
-70;'258;French Polynesia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;900;1100;1100;1100;1500;1600;1600;1800;1600;2100;2500;1500;1500;1500;1500;1500;1100;1100;1100;1100;1100;1100;3400;4100;3477;1588;2238;322;1862;2726;2726;1301;933;1283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;165;205;205;205;212;212;212;282;223;298;363;284;353;353;353;455;392;392;392;392;392;397;1210;1307;1084;487;744;151;620;774;774;521;352;534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4500;2000;2500;2500;2500;2500;2500;2500;2500
-70;'258;French Polynesia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;127;127;127;45;328;328;328;363;329;329;329;443;22;15;8;109;109;109;109;108;108;120;111;110
-70;'258;French Polynesia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;1;9;9;9;9;41;41;41;48;74;74;74;140;70;39;3;174;169;156;156;159;159;158;161;162
-70;'258;French Polynesia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;249;165;165;1295;1295;304;2019;980;1540;2411;2153;2296;3602;3546;4579;2297;2927;5484;5132;4126;5534;4326;4326
-70;'258;French Polynesia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;10;11;128;128;34;93;51;76;113;97;99;171;160;161;377;556;506;209;171;230;167;167
-70;'258;French Polynesia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;2;2;2;2;14;14;14;49;15;15;15;15;15;15;8;108;108;108;108;108;108;108;108;110
-70;'258;French Polynesia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;1;1;1;1;1;6;6;6;13;39;39;39;39;39;39;3;160;155;155;155;155;155;155;155;160
-70;'258;French Polynesia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;2;2;2;2;15;15;15;50;16;16;16;16;16;16;9;109;109;109;109;108;108;108;108;110
-70;'258;French Polynesia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;1;1;1;1;1;7;7;7;14;40;40;40;40;40;40;4;161;156;156;156;155;155;155;155;160
-70;'258;French Polynesia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;2;2;2;2;2;37;3;3;3;3;3;3;0;0;0;;;;;;;
-70;'258;French Polynesia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;8;34;34;34;34;34;34;0;4;0;;;;;;;
-70;'258;French Polynesia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-70;'258;French Polynesia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;1;0;;;;;;;
-70;'258;French Polynesia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;8;108;108;108;108;108;108;108;108;110
-70;'258;French Polynesia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;3;155;155;155;155;155;155;155;155;160
-70;'258;French Polynesia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;108;108;108;108;108;108;108;108;108
-70;'258;French Polynesia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;155;155;155;155;155;155;155;155;155
-70;'258;French Polynesia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-70;'258;French Polynesia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-70;'258;French Polynesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;0;0;0;;;;;;;
-70;'258;French Polynesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;;
-70;'258;French Polynesia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-70;'258;French Polynesia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-70;'258;French Polynesia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0
-70;'258;French Polynesia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0
-70;'258;French Polynesia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4500;2000;2500;2500;2500;2500;2500;2500;2500
-70;'258;French Polynesia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;43;314;314;314;314;314;314;314;428;7;0;0;1;1;1;1;0;0;12;3;0
-70;'258;French Polynesia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;35;35;35;35;35;35;35;101;31;0;0;14;14;1;1;4;4;3;6;2
-70;'258;French Polynesia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;249;165;165;1295;1295;304;2019;980;1540;2411;2153;2296;3602;3546;4579;2297;2927;5484;5132;4126;5534;4326;4326
-70;'258;French Polynesia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;10;11;128;128;34;93;51;76;113;97;99;171;160;161;377;556;506;209;171;230;167;167
-70;'258;French Polynesia;1876;Paper and paperboard;5610;Import quantity;t;200;300;200;200;200;200;200;200;200;1000;1000;800;900;1200;1500;1800;1900;1900;1900;1900;1900;2200;3000;2600;1908;593;2615;1684;2262;2717;2717;1444;4547;4145;2569;1700;2996;3255;4138;4216;6501;2331;7035;15138;15138;7275;6652;7711;6733;6445;6861;5946;5686;5976;4745;5294;5324;5270;6440;5007;5994;4682;895
-70;'258;French Polynesia;1876;Paper and paperboard;5622;Import value;1000 USD;70;109;94;94;94;94;94;94;94;339;411;330;405;679;1079;2301;2754;2754;2754;2754;2754;2777;3317;2853;1614;671;2313;1720;2239;2662;2662;2192;4491;4155;2984;2041;4144;4347;4659;4987;5342;3380;9516;11344;11344;10291;9090;12836;10705;9988;10026;8231;7702;9313;6233;6631;6742;6726;9341;7568;8895;8632;1797
-70;'258;French Polynesia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;20;20;20;20;20;20;1;4;4;4;4;4;4;4;10;10;10;10;10;10;10;28;27;8;8;1;1
-70;'258;French Polynesia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;24;24;24;24;24;24;5;7;7;7;7;7;7;7;13;13;13;13;13;13;13;22;17;12;12;2;2
-70;'258;French Polynesia;2042;Graphic papers;5610;Import quantity;t;100;100;;;;;;;;400;400;200;300;300;300;100;100;100;100;100;100;1000;1000;1200;0;0;0;1121;1436;1508;1508;762;2737;2861;1898;900;1438;2418;2709;2797;2167;1542;5410;11276;11276;5507;5152;5892;4753;4751;5191;4076;4010;4346;3274;3421;3625;3129;4375;3203;3604;2509;758
-70;'258;French Polynesia;2042;Graphic papers;5622;Import value;1000 USD;20;15;;;;;;;;66;81;47;79;79;79;70;89;89;89;89;89;934;774;875;0;0;0;895;1048;884;884;1274;2413;2593;1755;942;1815;2744;2841;2798;2402;1581;6348;7666;7666;6537;5880;7942;6253;5810;6096;5104;5028;5608;4011;3394;3705;3450;5205;3762;4074;3579;1396
-70;'258;French Polynesia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;1;3;3;3;3;3;3;3;3;3;3;3;3;3;3;21;20;1;1;0;0
-70;'258;French Polynesia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;15;10;5;5;1;1
-70;'258;French Polynesia;1671;Newsprint;5610;Import quantity;t;100;100;;;;;;;;400;400;200;300;300;300;100;100;100;100;100;100;1000;1000;1200;0;0;0;1121;1436;1508;1508;;1738;1658;1485;600;56;457;434;367;367;367;2742;4421;4421;2200;1844;2535;1934;2344;2156;1565;1266;950;1115;92;126;393;871;625;456;195;195
-70;'258;French Polynesia;1671;Newsprint;5622;Import value;1000 USD;20;15;;;;;;;;66;81;47;79;79;79;70;89;89;89;89;89;934;774;875;0;0;0;895;1048;884;884;;877;863;994;427;31;287;248;193;193;193;2023;2255;2255;1657;1254;2195;1783;2047;1789;1384;1039;757;1022;71;81;225;716;501;457;257;257
-70;'258;French Polynesia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;762;999;1203;413;300;1382;1961;2275;2430;1800;1175;2668;6855;6855;3307;3308;3357;2819;2407;3035;2511;2744;3396;2159;3329;3499;2736;3504;2578;3148;2314;563
-70;'258;French Polynesia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274;1536;1730;761;515;1784;2457;2593;2605;2209;1388;4325;5411;5411;4880;4626;5747;4470;3763;4307;3720;3989;4851;2989;3323;3624;3225;4489;3261;3617;3322;1139
-70;'258;French Polynesia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;1;3;3;3;3;3;3;3;3;3;3;3;3;3;3;21;20;1;1;0;0
-70;'258;French Polynesia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;5;6;6;6;6;6;6;6;6;6;6;6;6;6;6;15;10;5;5;1;1
-70;'258;French Polynesia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;207;67;100;141;62;32;32;43;95;7;16;11;3;101;12;21;19;220;130;130;76;85;77;125;8
-70;'258;French Polynesia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;237;88;96;162;56;26;26;67;128;56;66;64;36;190;73;76;73;338;251;251;117;148;117;105;52
-70;'258;French Polynesia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;1355;1755;1400;739;1223;2722;2722;1216;1489;1308;1077;895;1148;840;956;1624;833;2238;2364;1801;2082;1216;2010;1249;415
-70;'258;French Polynesia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1460;1541;1894;1768;910;1979;2148;2148;1829;2142;2413;1786;1523;1766;1264;1388;2342;1212;2161;2411;1937;2633;1606;2207;1793;836
-70;'258;French Polynesia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;20;20;0;0;0;0
-70;'258;French Polynesia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;5;1;1;1;1;1;1;1;1;1;1;1;1;1;1;10;10;0;0;1;1
-70;'258;French Polynesia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;713;608;300;295;1383;4101;4101;2048;1724;2042;1726;1501;1884;1570;1776;1751;1307;871;1005;805;1346;1277;1061;940;140
-70;'258;French Polynesia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;815;623;345;316;2290;3237;3237;2984;2356;3278;2618;2176;2505;2266;2528;2433;1704;824;962;1037;1739;1507;1293;1424;251
-70;'258;French Polynesia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;1;1;0;0
-70;'258;French Polynesia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;5;5;0;0
-70;'258;French Polynesia;1675;Other paper and paperboard;5610;Import quantity;t;100;200;200;200;200;200;200;200;200;600;600;600;600;900;1200;1700;1800;1800;1800;1800;1800;1200;2000;1400;1908;593;2615;563;826;1209;1209;682;1810;1284;671;800;1558;837;1429;1419;4334;789;1625;3862;3862;1768;1500;1819;1980;1694;1670;1870;1676;1630;1471;1873;1699;2141;2065;1804;2390;2173;137
-70;'258;French Polynesia;1675;Other paper and paperboard;5622;Import value;1000 USD;50;94;94;94;94;94;94;94;94;273;330;283;326;600;1000;2231;2665;2665;2665;2665;2665;1843;2543;1978;1614;671;2313;825;1191;1778;1778;918;2078;1562;1229;1099;2329;1603;1818;2189;2940;1799;3168;3678;3678;3754;3210;4894;4452;4178;3930;3127;2674;3705;2222;3237;3037;3276;4136;3806;4821;5053;401
-70;'258;French Polynesia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;7;7;1;1
-70;'258;French Polynesia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;7;7;1;1
-70;'258;French Polynesia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;570;1100;342;1051;1411;1411;1481;1123;1411;1564;1332;1313;1525;1386;1364;1304;1533;1385;1654;1675;1431;1781;1581;3
-70;'258;French Polynesia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;812;1201;424;1378;1552;1552;2226;1594;2657;2304;2157;1918;2399;2112;2097;1889;1882;1666;2002;2314;2077;2746;3037;23
-70;'258;French Polynesia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;0;0
-70;'258;French Polynesia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;0;0
-70;'258;French Polynesia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;562;1034;297;160;612;612;157;185;196;162;121;135;249;220;108;76;191;279;438;353;329;551;554;133
-70;'258;French Polynesia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;462;557;646;368;379;379;450;509;626;560;417;447;588;441;377;200;383;457;620;909;703;967;1087;371
-70;'258;French Polynesia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;23;35;2;48;48;17;46;44;30;28;29;30;56;34;30;69;6;19;2;1;12;1;1
-70;'258;French Polynesia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;35;35;21;9;30;30;33;43;66;28;25;36;31;74;45;32;45;14;20;8;8;15;6;7
-70;'258;French Polynesia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;262;100;9;48;41;41;45;15;54;67;43;34;130;108;15;18;87;200;144;165;134;217;161;10
-70;'258;French Polynesia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;232;53;15;36;25;25;117;91;187;240;158;121;205;141;74;44;236;351;280;530;282;443;369;85
-70;'258;French Polynesia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-70;'258;French Polynesia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;266;900;242;105;472;472;93;120;96;63;48;71;88;55;58;27;34;21;171;136;146;245;296;26
-70;'258;French Polynesia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;190;464;605;298;292;292;286;355;353;271;213;284;346;220;252;118;96;65;260;321;359;445;601;168
-70;'258;French Polynesia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;5;51;51;2;4;2;2;2;1;1;1;1;1;1;52;104;50;48;77;96;96
-70;'258;French Polynesia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;5;5;25;32;32;14;20;20;21;21;6;6;6;6;6;6;27;60;50;54;64;111;111
-70;'258;French Polynesia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;574;287;2200;150;414;1839;1839;130;192;212;254;241;222;96;70;158;91;149;35;49;37;44;58;38;1
-70;'258;French Polynesia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1603;658;915;1182;729;1422;1747;1747;1078;1107;1611;1588;1604;1565;140;121;1231;133;972;914;654;913;1026;1108;929;7
-70;'258;French Polynesia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-70;'258;French Polynesia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-70;'258;French Polynesia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13226;14968;18777;16987;17557;20655;16638
-70;'258;French Polynesia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;166;254;220;133;469;434
-70;'258;French Polynesia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;1832;3046;2295;2369;2971;1696
-70;'258;French Polynesia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-70;'258;French Polynesia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;596;563;514;634;820;650
-70;'258;French Polynesia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-70;'258;French Polynesia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1332;1236;2483;1781;1735;2151;1046
-70;'258;French Polynesia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-70;'258;French Polynesia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;111;130;84;172;188;81
-70;'258;French Polynesia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;1;0;0;0
-70;'258;French Polynesia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;211;696;466;519;696;492
-70;'258;French Polynesia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;160;120;136;102;192;154
-70;'258;French Polynesia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2837;2180;2892;2823;2587;3315;2116
-70;'258;French Polynesia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;0;0
-70;'258;French Polynesia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19
-70;'258;French Polynesia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27
-70;'258;French Polynesia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7829;10359;10807;10138;10583;11752;11129
-70;'258;French Polynesia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;1;9;3;260;260
-70;'258;French Polynesia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;8;33;284;109
-70;'258;French Polynesia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;275;1173;1173;1294;1449;1015
-70;'258;French Polynesia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;131;72;26;16;19
-70;'258;French Polynesia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13933;14408;15490;14600;17367;19424;14014
-70;'258;French Polynesia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;62;38;43;49;32;4
-70;'258;French Polynesia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;5;3;6;9;6
-70;'258;French Polynesia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;602;579;659;631;724;603
-70;'258;French Polynesia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;0;1;0;0;0
-70;'258;French Polynesia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2166;2194;2615;2310;2968;2706;2471
-70;'258;French Polynesia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;1;1
-70;'258;French Polynesia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5853;6120;6534;6275;7544;8548;5837
-70;'258;French Polynesia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;9;10;11;20;2
-70;'258;French Polynesia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5427;5489;5757;5353;6218;7437;5097
-70;'258;French Polynesia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;49;25;31;37;11;1
-71;'260;French Southern Territories;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2744;1546;2257;2494;2483;2002;1559
-71;'260;French Southern Territories;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;127
-71;'260;French Southern Territories;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;0;6;2670;2587;2340;969;1643;1604;1655;965;788
-71;'260;French Southern Territories;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74
-71;'260;French Southern Territories;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-71;'260;French Southern Territories;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6
-71;'260;French Southern Territories;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5318;5661;4917;1370;236;142;633;300;0
-71;'260;French Southern Territories;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650;2587;2253;607;83;27;591;216;0
-71;'260;French Southern Territories;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;56
-71;'260;French Southern Territories;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;74
-71;'260;French Southern Territories;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5214;5615;4917;1370;236;142;600;240;0
-71;'260;French Southern Territories;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474;2563;2253;590;83;27;554;166;0
-71;'260;French Southern Territories;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;46;0;0;0;0;33;60;0
-71;'260;French Southern Territories;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;24;0;17;0;0;37;50;0
-71;'260;French Southern Territories;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;56
-71;'260;French Southern Territories;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;74
-71;'260;French Southern Territories;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;0;6;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;156;570;1009;1577;476;0;81
-71;'260;French Southern Territories;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;87;362;607;834;321;0;39
-71;'260;French Southern Territories;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;156;570;1009;1577;476;0;81
-71;'260;French Southern Territories;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;87;362;607;834;321;0;39
-71;'260;French Southern Territories;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-71;'260;French Southern Territories;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;631;631;631;631
-71;'260;French Southern Territories;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;743;743;743;743
-71;'260;French Southern Territories;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;216;216;216;216
-71;'260;French Southern Territories;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;214;214;214;214
-71;'260;French Southern Territories;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;216;216;216;216
-71;'260;French Southern Territories;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;214;214;214;214
-71;'260;French Southern Territories;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-71;'260;French Southern Territories;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-71;'260;French Southern Territories;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;216;216;216;216
-71;'260;French Southern Territories;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;214;214;214;214
-71;'260;French Southern Territories;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;415;415;415;415
-71;'260;French Southern Territories;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;529;529;529;529
-71;'260;French Southern Territories;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;415;415;415;415
-71;'260;French Southern Territories;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;529;529;529;529
-71;'260;French Southern Territories;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;359;359;359;359
-71;'260;French Southern Territories;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;496;496;496;496
-71;'260;French Southern Territories;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56
-71;'260;French Southern Territories;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33
-71;'260;French Southern Territories;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-71;'260;French Southern Territories;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-71;'260;French Southern Territories;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;232;269;545;483;692;426
-71;'260;French Southern Territories;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-71;'260;French Southern Territories;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-71;'260;French Southern Territories;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-71;'260;French Southern Territories;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50
-71;'260;French Southern Territories;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;177;214;490;428;637;371
-71;'260;French Southern Territories;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-71;'260;French Southern Territories;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;345;345;345;345;345;345
-71;'260;French Southern Territories;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53
-71;'260;French Southern Territories;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;251;251;251;251;251;251
-71;'260;French Southern Territories;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35
-71;'260;French Southern Territories;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34
-71;'260;French Southern Territories;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-71;'260;French Southern Territories;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;60
-71;'260;French Southern Territories;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14
-74;'266;Gabon;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29604;38448;36653;31058;36770;36821;43783
-74;'266;Gabon;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561157;657308;627309;565211;614549;794987;711086
-74;'266;Gabon;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;99;116;752;802;220;1448;181;228;326;329;329;12722;3198;5667;2014;3512;3599;2970;3370;3370;3655;5822;7651;6704;8335;6021;7049;7049;6502;5665;3706;2251;3065;3290;3183;2333;2333;6114;13461;28753;32661;8508;6179;7511.3;11136;12777;11857;12218;13099;14980;11537;8770;8567;7665;9209;9150;8440;8085;7115;13695
-74;'266;Gabon;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;36155;36089;39281;45884;41832;40816;39466;41810;50261;49368;39540;66037;104427;144337;69562;68829;105080;110238;123772;162560;142047;120892;131336;139422;108450;157460;127053;139448;156004;293052;119477;258580;345316;363201;130862;132615;178131;296285;344392;332598;347852;289772;211256;296634;771300;745995;1025653;1036289;756215;682584;444431;411298;423705;462527;506738;474659;559375;655729;624573;560273;600296;773462;683094
-74;'266;Gabon;1861;Roundwood;5516;Production;m3;1957605;1800472;1802349;1763236;1815133;1865040;1899956;2009883;2207820;2254766;2402129;2641188;2734169;2446034;1818973;1516071;1701205;1679565;1636861;1741802;1541329;1541885;1713592;1894889;1801276;1722346;1681150;1828228;1870906;2084989;1779411;1993479;2326357;2618691;2794650;2909841;3280318;3282057;2849155;3099409;3101740;3220173;4069000;3670000;4270000;4570000;4470000;4370000;3570000;2870000;2570000;2870000;3070000;3270000;3070000;3070000;3370000;3104000;3209000;3988585;3988585;3988585;3988585
-74;'266;Gabon;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;436;436;436;1300;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;1;0;0;0;0;5169;0;5;5;34
-74;'266;Gabon;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;38;38;38;60;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;692;0;1;1;15
-74;'266;Gabon;1861;Roundwood;5916;Export quantity;m3;1224000;1064000;1157400;1339000;1225400;1198200;1180400;1294200;1592700;1633500;1287000;1548000;1749000;1354000;1100000;1201000;1627300;1894000;1173000;1071000;1112700;1159900;1134000;1536200;1088800;982800;1229000;1200000;1350000;1154843;1307000;1252342;1334256;1330102;1587000;2351000;2719000;1773000;2337700;2584000;2500000;2016000;1927744;1513002;1677780;1716226;1859781;2162094;1741788;906360;42120;57651;31297;18322;37256;20939;34918;41047;49000;2133;928;626;11065
-74;'266;Gabon;1861;Roundwood;5922;Export value;1000 USD;28400;27609;29900;35433;31876;31047;29467;32360;40644;38782;32200;55300;87840;125000;52844;57600;81917;85909;111494;129525;115430;97733;105359;110897;91683;114427;66913;77633;101050;249802;71227;243525;330482;349179;112338;109932;152337;240112;273166;285751;275550;198887;126519;109251;522484;528286;703070;702397;552534;399311;24815;24513;13443;6488;12467;5394;15485;19797;16876;1005;611;536;41
-74;'266;Gabon;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-74;'266;Gabon;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;5;5;34
-74;'266;Gabon;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;9
-74;'266;Gabon;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;258;0;0;0;0;4
-74;'266;Gabon;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;20;11;0;0;0
-74;'266;Gabon;1863;Roundwood, non-coniferous;5516;Production;m3;1957605;1800472;1802349;1763236;1815133;1865040;1899956;2009883;2207820;2254766;2402129;2641188;2734169;2446034;1818973;1516071;1701205;1679565;1636861;1741802;1541329;1541885;1713592;1894889;1801276;1722346;1681150;1828228;1870906;2084989;1779411;1993479;2326357;2618691;2794650;2909841;3280318;3282057;2849155;3099409;3101740;3220173;4069000;3670000;4270000;4570000;4470000;4370000;3570000;2870000;2570000;2870000;3070000;3270000;3070000;3070000;3370000;3104000;3209000;3988585;3988585;3988585;3988585
-74;'266;Gabon;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5168;0;0;0;0
-74;'266;Gabon;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;692;0;0;0;6
-74;'266;Gabon;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34918;40789;49000;2133;928;626;11061
-74;'266;Gabon;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15485;19783;16856;994;611;536;41
-74;'266;Gabon;1864;Wood fuel;5516;Production;m3;357605;359472;361349;363236;365133;367040;368956;370883;372820;374766;372129;371188;374169;359034;355973;342071;358205;384565;390861;394802;399329;406885;410592;410889;419276;427346;451150;447228;448906;451989;453411;464479;467357;491691;496650;500841;505318;507057;511155;515409;517740;520173;1069000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000
-74;'266;Gabon;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;
-74;'266;Gabon;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;39;39;39;39;39;39;;;;;;;
-74;'266;Gabon;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-74;'266;Gabon;1628;Wood fuel, non-coniferous;5516;Production;m3;357605;359472;361349;363236;365133;367040;368956;370883;372820;374766;372129;371188;374169;359034;355973;342071;358205;384565;390861;394802;399329;406885;410592;410889;419276;427346;451150;447228;448906;451989;453411;464479;467357;491691;496650;500841;505318;507057;511155;515409;517740;520173;1069000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000;1070000
-74;'266;Gabon;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;
-74;'266;Gabon;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;39;39;39;39;39;39;;;;;;;
-74;'266;Gabon;1865;Industrial roundwood;5516;Production;m3;1600000;1441000;1441000;1400000;1450000;1498000;1531000;1639000;1835000;1880000;2030000;2270000;2360000;2087000;1463000;1174000;1343000;1295000;1246000;1347000;1142000;1135000;1303000;1484000;1382000;1295000;1230000;1381000;1422000;1633000;1326000;1529000;1859000;2127000;2298000;2409000;2775000;2775000;2338000;2584000;2584000;2700000;3000000;2600000;3200000;3500000;3400000;3300000;2500000;1800000;1500000;1800000;2000000;2200000;2000000;2000000;2300000;2034000;2139000;2918585;2918585;2918585;2918585
-74;'266;Gabon;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;436;436;436;1300;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;1;0;0;0;0;5169;0;5;5;34
-74;'266;Gabon;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;38;38;38;60;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;692;0;1;1;15
-74;'266;Gabon;1865;Industrial roundwood;5916;Export quantity;m3;1224000;1064000;1157400;1339000;1225400;1198200;1180400;1294200;1592700;1633500;1287000;1548000;1749000;1354000;1100000;1201000;1627300;1894000;1173000;1071000;1112700;1159900;1134000;1536200;1088800;982800;1229000;1200000;1350000;1154843;1307000;1252342;1334256;1330102;1587000;2351000;2719000;1773000;2337700;2584000;2500000;2016000;1927742;1513000;1677778;1716224;1859779;2162092;1741786;906358;42118;57649;31295;18320;37254;20937;34918;41047;49000;2133;928;626;11065
-74;'266;Gabon;1865;Industrial roundwood;5922;Export value;1000 USD;28400;27609;29900;35433;31876;31047;29467;32360;40644;38782;32200;55300;87840;125000;52844;57600;81917;85909;111494;129525;115430;97733;105359;110897;91683;114427;66913;77633;101050;249802;71227;243525;330482;349179;112338;109932;152337;240112;273166;285751;275550;198887;126480;109212;522445;528247;703031;702358;552495;399272;24776;24474;13404;6449;12428;5355;15485;19797;16876;1005;611;536;41
-74;'266;Gabon;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;35;0;0;0;0;0;1;0;5;5;34
-74;'266;Gabon;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;9
-74;'266;Gabon;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1358;238;606;2225;0;64;0;0;258;0;0;0;0;4
-74;'266;Gabon;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;167;25;145;1631;0;7;0;0;14;20;11;0;0;0
-74;'266;Gabon;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;35;0;0;0;0;0;1;0;5;5;34
-74;'266;Gabon;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;9
-74;'266;Gabon;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1358;238;606;2225;0;64;0;0;258;0;0;0;0;4
-74;'266;Gabon;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;167;25;145;1631;0;7;0;0;14;20;11;0;0;0
-74;'266;Gabon;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1600000;1441000;1441000;1400000;1450000;1498000;1531000;1639000;1835000;1880000;2030000;2270000;2360000;2087000;1463000;1174000;1343000;1295000;1246000;1347000;1142000;1135000;1303000;1484000;1382000;1295000;1230000;1381000;1422000;1633000;1326000;1529000;1859000;2127000;2298000;2409000;2775000;2775000;2338000;2584000;2584000;2700000;3000000;2600000;3200000;3500000;3400000;3300000;2500000;1800000;1500000;1800000;2000000;2200000;2000000;2000000;2300000;2034000;2139000;2918585;2918585;2918585;2918585
-74;'266;Gabon;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;436;436;436;1300;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;5168;0;0;0;0
-74;'266;Gabon;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;38;38;38;60;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;692;0;0;0;6
-74;'266;Gabon;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154843;1307000;1252342;1334256;1330102;1587000;2351000;2719000;1773000;2337700;2584000;2500000;2016000;1927742;1513000;1677778;1716224;1859779;2162092;1741786;905000;41880;57043;29070;18320;37190;20937;34918;40789;49000;2133;928;626;11061
-74;'266;Gabon;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249802;71227;243525;330482;349179;112338;109932;152337;240112;273166;285751;275550;198887;126480;109212;522445;528247;703031;702358;552495;399105;24751;24329;11773;6449;12421;5355;15485;19783;16856;994;611;536;41
-74;'266;Gabon;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;0;0;0;0
-74;'266;Gabon;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;84;0;0;0;0
-74;'266;Gabon;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154843;1307000;1252342;1334256;1330102;1587000;2351000;2719000;1773000;2337700;2584000;2500000;2016000;1927742;1513000;1677778;1716224;1859295;2162022;1741786;905000;41880;57043;29070;18320;37190;20937;34918;40789;49000;2133;928;45;11061
-74;'266;Gabon;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249802;71227;243525;330482;349179;112338;109932;152337;240112;273166;285751;275550;198887;126480;109212;522445;528247;702901;702334;552495;399105;24751;24329;11773;6449;12421;5355;15485;19783;16856;994;611;41;41
-74;'266;Gabon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;436;436;436;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;5137;0;0;0;0
-74;'266;Gabon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;38;38;38;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;608;0;0;0;6
-74;'266;Gabon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;70;0;0;0;0;0;0;0;0;0;0;0;0;0;581;0
-74;'266;Gabon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;24;0;0;0;0;0;0;0;0;0;0;0;0;0;495;0
-74;'266;Gabon;1868;Sawlogs and veneer logs;5516;Production;m3;1600000;1441000;1441000;1400000;1450000;1498000;1531000;1639000;1835000;1880000;2030000;2270000;2360000;2087000;1463000;1174000;1343000;1295000;1246000;1347000;1142000;1135000;1303000;1484000;1382000;1295000;1230000;1381000;1422000;1633000;1326000;1529000;1859000;2127000;2298000;2409000;2775000;2775000;2338000;2584000;2584000;2700000;3000000;2600000;3200000;3500000;3400000;3300000;2500000;1800000;1500000;1800000;2000000;2200000;2000000;2000000;2300000;2034000;2139000;2918585;2918585;2918585;2918585
-74;'266;Gabon;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1224000;1064000;1157400;1339000;1225400;1198200;1180400;1294200;1592700;1633500;1287000;1548000;1749000;1354000;1100000;1201000;1627300;1894000;1173000;1071000;1112700;1159900;1134000;1536200;1088800;982800;1229000;1200000;1350000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;28400;27609;29900;35433;31876;31047;29467;32360;40644;38782;32200;55300;87840;125000;52844;57600;81917;85909;111494;129525;115430;97733;105359;110897;91683;114427;66913;77633;101050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1600000;1441000;1441000;1400000;1450000;1498000;1531000;1639000;1835000;1880000;2030000;2270000;2360000;2087000;1463000;1174000;1343000;1295000;1246000;1347000;1142000;1135000;1303000;1484000;1382000;1295000;1230000;1381000;1422000;1633000;1326000;1529000;1859000;2127000;2298000;2409000;2775000;2775000;2338000;2584000;2584000;2700000;3000000;2600000;3200000;3500000;3400000;3300000;2500000;1800000;1500000;1800000;2000000;2200000;2000000;2000000;2300000;2034000;2139000;2918585;2918585;2918585;2918585
-74;'266;Gabon;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1224000;1064000;1157400;1339000;1225400;1198200;1180400;1294200;1592700;1633500;1287000;1548000;1749000;1354000;1100000;1201000;1627300;1894000;1173000;1071000;1112700;1159900;1134000;1536200;1088800;982800;1229000;1200000;1350000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;28400;27609;29900;35433;31876;31047;29467;32360;40644;38782;32200;55300;87840;125000;52844;57600;81917;85909;111494;129525;115430;97733;105359;110897;91683;114427;66913;77633;101050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-74;'266;Gabon;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-74;'266;Gabon;1630;Wood charcoal;5510;Production;t;3283;3383;3486;3592;3701;3814;3930;4049;4172;4299;4339;4415;4542;4320;4325;4126;4560;5263;5544;5800;6070;6433;6699;6911;7364;7798;8780;8909;9210;9619;9917;10574;11001;12272;12820;13310;13831;14310;14877;15466;15928;16404;16895;17400;17920;18348;18800;19200;19697;20168;20561;20962;21371;21787;22212;22567;22929;23295;23668;24047;24420;24799;25184
-74;'266;Gabon;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;122;3;2;4;4;6;54;23;5;7;6;12;9;10;67
-74;'266;Gabon;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1089;12;4;4;6;11;48;7;6;13;6;11;10;15;25
-74;'266;Gabon;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;6;6;6;22;22;0;0;0;7
-74;'266;Gabon;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;7;6;6;6;10;10;1;1;1;10
-74;'266;Gabon;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;1740;191;1312;1312;1312;24;8;8;8;8;8;9;8;8;84;0
-74;'266;Gabon;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;151;34;126;126;126;21;9;9;9;9;9;10;9;9;72;6
-74;'266;Gabon;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;49;3;3;3;3;3;62;24;24;24;5181
-74;'266;Gabon;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;13;23;23;23;23;23;38;6;6;6;7997
-74;'266;Gabon;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1716;167;1288;1288;1288;0;0;0;0;0;0;1;0;0;0;0
-74;'266;Gabon;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;13;105;105;105;0;0;0;0;0;0;1;0;0;0;6
-74;'266;Gabon;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;49;3;3;3;3;3;62;24;24;24;5181
-74;'266;Gabon;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;13;23;23;23;23;23;38;6;6;6;7997
-74;'266;Gabon;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;24;24;24;24;24;24;8;8;8;8;8;8;8;8;84;0
-74;'266;Gabon;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;21;21;21;21;21;9;9;9;9;9;9;9;9;72;0
-74;'266;Gabon;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;13;103;39
-74;'266;Gabon;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;30;127;72
-74;'266;Gabon;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684
-74;'266;Gabon;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340
-74;'266;Gabon;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;13;13;0
-74;'266;Gabon;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;30;30;3
-74;'266;Gabon;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;39
-74;'266;Gabon;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;69
-74;'266;Gabon;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684
-74;'266;Gabon;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340
-74;'266;Gabon;1872;Sawnwood;5516;Production;m3;24900;38800;43000;39300;47800;49700;60500;85000;67000;84000;65000;66000;72000;66000;75000;75000;108000;108000;108000;108000;108000;108000;108000;97000;106000;100000;46000;37000;30000;37000;85000;155000;153000;173000;100000;50000;30000;60000;98000;88000;112000;176100;231100;133000;230000;235000;296000;290000;280000;337410;500000;500000;520000;650000;651490;651490;801490;960339;952000;903000;803000;1033000;1033000
-74;'266;Gabon;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1580;492;580;300;450;300;300;300;300;300;585;1000;2;29;98;25;491;39;0;348;1774;1328;10;30;137;225;156;2;6;60;230;6
-74;'266;Gabon;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;239;372;201;206;47;47;47;47;47;95;204;3;22;101;14.3;340;32;0;120;824;752;2;127;89;109;92;14;585;31;4;6
-74;'266;Gabon;1872;Sawnwood;5916;Export quantity;m3;10000;11700;12300;18100;21800;19400;25800;29500;21300;14500;12500;9300;4600;4600;2100;6800;19700;14200;7900;18100;3900;1600;2200;500;2700;1000;3600;8100;3300;2500;2500;3935;16628;3927;6400;12200;29000;54500;24000;79000;77000;88730;124031;124031;207000;198850;253000;222738;208644;278236;469621;430139;412590;456445;526390;496530;703170;841686;857581;872833;739339;999887;864872
-74;'266;Gabon;1872;Sawnwood;5922;Export value;1000 USD;355;457;707;1054;1348;1291;1618;1805;1397;940;390;307;237;237;118;323;844;639;1105;3599;425;337;464;78;500;128;1229;2695;1219;1042;1042;1476;2801;1828;2995;5511;9004;17000;21000;9388;19099;24939;27124;68280;125149;87125;140981;149953;66675;116836;231285;237705;257302;298674;366367;319795;397749;466120;352569;323834;321547;401905;351786
-74;'266;Gabon;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490;1490;1490;1490;2000;3000;3000;3000;3000
-74;'266;Gabon;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;175;163;100;300;300;300;300;300;300;300;1;2;1;14;24;1;0;0;18;18;116;0;16;19;51;50;1;0;58;179;4
-74;'266;Gabon;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;29;31;20;47;47;47;47;47;47;47;1;3;1;36;14;3;0;0;7;14;145;0;4;4;16;15;14;0;24;3;3
-74;'266;Gabon;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1070;2590;1067;580;580;419;1388;1735;1833;1339;2887;872
-74;'266;Gabon;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;249;94;379;1052;341;403;403;291;444;658;693;517;1111;138
-74;'266;Gabon;1633;Sawnwood, non-coniferous;5516;Production;m3;24900;38800;43000;39300;47800;49700;60500;85000;67000;84000;65000;66000;72000;66000;75000;75000;108000;108000;108000;108000;108000;108000;108000;97000;106000;100000;46000;37000;30000;37000;85000;155000;153000;173000;100000;50000;30000;60000;98000;88000;112000;176100;231100;133000;230000;235000;296000;290000;280000;337410;500000;500000;520000;650000;650000;650000;800000;958849;950000;900000;800000;1030000;1030000
-74;'266;Gabon;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1431;317;417;200;150;0;0;0;0;0;285;999;0;28;84;1;490;39;0;330;1756;1212;10;14;118;174;106;1;6;2;51;2
-74;'266;Gabon;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;210;341;181;159;0;0;0;0;0;48;203;0;21;65;0.3;337;32;0;113;810;607;2;123;85;93;77;0;585;7;1;3
-74;'266;Gabon;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;10000;11700;12300;18100;21800;19400;25800;29500;21300;14500;12500;9300;4600;4600;2100;6800;19700;14200;7900;18100;3900;1600;2200;500;2700;1000;3600;8100;3300;2500;2500;3935;16628;3878;6400;12200;29000;54500;24000;79000;77000;88730;124031;124031;207000;198850;253000;222738;208644;278236;469621;429069;410000;455378;525810;495950;702751;840298;855846;871000;738000;997000;864000
-74;'266;Gabon;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;355;457;707;1054;1348;1291;1618;1805;1397;940;390;307;237;237;118;323;844;639;1105;3599;425;337;464;78;500;128;1229;2695;1219;1042;1042;1476;2801;1801;2995;5511;9004;17000;21000;9388;19099;24939;27124;68280;125149;87125;140981;149953;66675;116587;231191;237326;256250;298333;365964;319392;397458;465676;351911;323141;321030;400794;351648
-74;'266;Gabon;1634;Veneer sheets;5516;Production;m3;15800;17600;24100;24400;23400;26400;21000;10000;5000;21000;35000;32000;40000;41000;41000;41000;45000;60000;101000;97000;97000;97000;97000;70000;70000;70000;70000;65000;68000;65000;12000;9000;2000;2000;2000;5000;0;76000;133000;91000;110000;54000;63000;120300;170000;200000;250000;200000;120000;282015;296060;300000;270000;270000;270490;270490;280080;389000;438000;365741;464863;464863;464863
-74;'266;Gabon;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;81;16;300;100;0;0;0;0;0;9943;6276;8100;1641;2;70;329;164;10;92;50;195;31;1;178;488;1;37;17;54;0;2
-74;'266;Gabon;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;301;68;195;84;0;0;0;0;0;6697;2752;3977;821;6;109;427;187;27;259;62;497;96;5;175;349;3;30;121;49;4;17
-74;'266;Gabon;1634;Veneer sheets;5916;Export quantity;m3;15800;15300;19900;24400;19900;26400;20500;9600;4900;20500;18200;22400;14000;26000;8500;9300;13200;19100;16800;18900;21200;14400;9000;2000;8100;5300;8200;10400;5200;2600;2600;2432;1706;417;1400;3000;13000;40400;124000;91000;63000;108000;56468;129223;137643;71140;80892;70921;58916;74642;140625;116122;107702;104295;112508;133652;140036;162094;292394;281010;398681;445516;391669
-74;'266;Gabon;1634;Veneer sheets;5922;Export value;1000 USD;1100;1507;1641;2209;1761;2369;1608;770;147;1544;1450;3430;4350;8100;2300;2569;3024;4395;5573;7636;5792;3922;2413;347;1405;1784;6960;8412;3735;2208;2208;1885;1574;421;778;1525;6790;19820;25023;11797;39561;47930;37529;100146;103230;103577;140612;130836;93994;117271;147847;112210;109700;115127;95949;112169;117774;145960;231830;214486;242338;284580;240284
-74;'266;Gabon;1873;Wood-based panels;5516;Production;m3;58500;59900;80000;61100;88600;61400;63300;69300;70000;71400;73700;79000;76600;71000;63000;50000;43000;69000;73000;95000;70000;104000;104000;110000;131000;100000;115000;130000;110000;80000;80000;20000;20000;20000;25000;25000;25000;115000;134000;104000;76000;97600;101400;39900;146000;142000;85000;141000;77000;72000;92000;64000;64000;64000;64000;64000;64000;41000;46000;50117;74000;150000;150000
-74;'266;Gabon;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;19;7;300;100;100;0;0;0;0;2565;12343;13634;3401;580;5041;2690;2814;3661;657;696;825;2707;446;317;824;798;421;196;416;743;726
-74;'266;Gabon;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;22;4;51;55;55;0;0;0;0;407;18766;22446;1740;307;1623;1291;1315;1664;349;383;497;794;338;233;451;323;199;177;239;476;722
-74;'266;Gabon;1873;Wood-based panels;5916;Export quantity;m3;53900;58300;59400;55700;51200;51300;53600;59900;65800;60800;40800;52200;41100;39000;51300;25800;39300;39300;11300;41700;39000;36000;44000;53500;46200;89200;112400;124000;101000;80000;80000;14366;13040;14224;16600;21600;25000;57300;56000;78000;57000;27452;25973;22831;28238;36815;45310;47197;51044;54863;46085;40727;50762;47886;38907;47154;32908;30268;29824;25941;52846;129670;124733
-74;'266;Gabon;1873;Wood-based panels;5922;Export value;1000 USD;6300;6516;7033;7188;6847;6109;6773;6875;8073;8102;5500;7000;12000;11000;14300;8337;19295;19295;5600;21800;20400;18900;23100;28100;14862;41121;51951;50708;50000;40000;45000;11694;10459;11773;14751;15647;10000;19353;25203;25662;13642;18016;20013;18817;20297;26872;40855;52742;42614;48581;40157;36024;42244;40823;30859;34879;27695;23560;22952;20572;35513;85995;82302
-74;'266;Gabon;1640;Plywood and LVL;5516;Production;m3;58500;59900;80000;61100;88600;61400;63300;69300;70000;71400;73700;79000;76600;71000;63000;50000;43000;69000;73000;95000;70000;104000;104000;110000;131000;100000;115000;130000;110000;80000;80000;20000;20000;20000;25000;25000;25000;115000;134000;104000;76000;97600;101400;39900;146000;142000;85000;141000;77000;72000;92000;64000;64000;64000;64000;64000;64000;41000;46000;50117;74000;150000;150000
-74;'266;Gabon;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;9;4;0;100;100;0;0;0;0;2565;12169;13435;3202;465;4926;2098;2655;3220;420;433;437;2421;203;178;536;656;279;150;75;357;463
-74;'266;Gabon;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;11;2;0;55;55;0;0;0;0;407;18743;22387;1681;252;1568;891;1172;1320;182;185;214;338;118;111;217;167;111;147;36;199;386
-74;'266;Gabon;1640;Plywood and LVL;5916;Export quantity;m3;53900;58300;59400;55700;51200;51300;53600;59900;65800;60800;40800;52200;41100;39000;51300;25800;39300;39300;11300;41700;39000;36000;44000;53500;46200;89200;112400;124000;101000;80000;80000;14366;13040;14224;16600;21600;25000;57300;56000;78000;57000;27452;25973;22763;27376;36645;45140;46903;50933;54752;45974;40619;50713;47862;38740;46987;32857;30220;29776;25844;52749;129548;124608
-74;'266;Gabon;1640;Plywood and LVL;5922;Export value;1000 USD;6300;6516;7033;7188;6847;6109;6773;6875;8073;8102;5500;7000;12000;11000;14300;8337;19295;19295;5600;21800;20400;18900;23100;28100;14862;41121;51951;50708;50000;40000;45000;11694;10459;11773;14751;15647;10000;19353;25203;25662;13642;18016;20013;18622;20097;26811;40794;52563;42530;48497;40073;36013;42190;40798;30740;34760;27673;23530;22922;20523;35464;85916;82255
-74;'266;Gabon;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;55;55;55;55;376;14;13;45;29;52;29;29;29;36;36;86;5;25;253;121
-74;'266;Gabon;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;31;31;31;31;215;5;4;29;41;45;35;35;35;30;30;63;8;41;132;56
-74;'266;Gabon;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;68;862;170;170;294;111;111;111;108;49;24;167;167;0;0;0;49;49;74;77
-74;'266;Gabon;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;195;200;61;61;179;84;84;84;11;54;25;119;119;0;0;0;19;19;49;17
-74;'266;Gabon;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;3;3;3;0;0;0;0;0;0;1
-74;'266;Gabon;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;21;21;21;0;0;0;0;0;0;3
-74;'266;Gabon;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;48;48;48;48;48;48
-74;'266;Gabon;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;30;30;30;30;30;30
-74;'266;Gabon;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;3;300;0;0;0;0;0;0;0;174;144;144;60;60;214;143;426;190;232;334;254;211;107;252;106;56;41;316;133;141
-74;'266;Gabon;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;2;51;0;0;0;0;0;0;0;23;28;28;24;24;179;132;334;132;151;232;400;164;66;204;126;25;22;162;145;277
-74;'266;Gabon;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;21;27;27;27;27;27;27;27;27;27;1;4;0;29;0
-74;'266;Gabon;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;15;19;19;19;19;19;19;19;19;19;3;3;7;64;4
-74;'266;Gabon;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;58;335;99;141;223;224;175;71;223;72;28;30;107;103;131
-74;'266;Gabon;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;55;253;51;70;138;377;137;39;176;99;17;18;79;77;271
-74;'266;Gabon;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;10;3;300;0;0;0;0;0;0;0;174;144;144;60;60;64;64;64;64;64;84;3;9;9;2;7;27;7;209;1;10
-74;'266;Gabon;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;2;51;0;0;0;0;0;0;0;23;28;28;24;24;62;62;62;62;62;75;4;8;8;9;8;5;1;76;4;2
-74;'266;Gabon;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-74;'266;Gabon;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;1500;100;1800;1800;1800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;74;115;51;51;103;103;83;30;30;30;200;239;248;248;248;248;340;158;258;196;152;149;113;78;89;27;27;15;41;18;18;11
-74;'266;Gabon;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;368;49;613;613;613;700;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;67;76;29;29;62;62;60;15;15;15;118;137;185;185;185;185;234;95;160;139;136;214;179;149;48;24;24;17;98;39;42;26
-74;'266;Gabon;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;87;656;222;246;81;55;55;55;45;45;24;24;24;24;24
-74;'266;Gabon;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;29;326;90;103;37;16;16;16;19;19;13;13;13;13;13
-74;'266;Gabon;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;1500;100;1800;1800;1800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;74;95;31;31;83;83;83;30;30;30;200;196;205;205;205;205;297;115;256;189;144;131;95;60;85;13;13;13;23;12;12;11
-74;'266;Gabon;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;368;49;613;613;613;700;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;67;74;27;27;60;60;60;15;15;15;118;125;173;173;173;173;222;83;156;136;99;92;57;27;42;12;12;12;31;18;21;26
-74;'266;Gabon;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;50;24;24;24;24;24;24;24;24;24;24
-74;'266;Gabon;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;34;13;13;13;13;13;13;13;13;13;13
-74;'266;Gabon;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;1500;100;1800;1800;1800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;74;95;31;31;83;83;83;30;30;30;200;196;205;205;205;205;297;113;253;164;121;131;94;59;84;12;12;12;23;12;12;11
-74;'266;Gabon;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;368;49;613;613;613;700;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;67;74;27;27;60;60;60;15;15;15;118;125;173;173;173;173;222;80;152;103;76;92;55;25;40;10;10;10;30;14;17;22
-74;'266;Gabon;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;50;24;24;24;24;24;24;24;24;24;24
-74;'266;Gabon;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;34;13;13;13;13;13;13;13;13;13;13
-74;'266;Gabon;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;1500;100;1800;1800;1800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;32;32;0;0;0;0;0;0;0;0;0;47;47;47;47;47;47;47;47;47;47;47;47;47;47;;;;;;;
-74;'266;Gabon;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;368;49;613;613;613;700;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;1070;18;18;0;0;0;0;0;0;0;0;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;;;;;;;
-74;'266;Gabon;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-74;'266;Gabon;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-74;'266;Gabon;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;63;31;31;83;83;83;30;30;30;200;149;158;158;158;158;250;66;206;117;74;84;47;12;37;12;12;12;23;12;12;11
-74;'266;Gabon;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;56;27;27;60;60;60;15;15;15;118;111;159;159;159;159;208;66;138;89;62;78;41;11;26;10;10;10;30;14;17;22
-74;'266;Gabon;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;50;24;24;24;24;24;24;24;24;24;24
-74;'266;Gabon;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;34;13;13;13;13;13;13;13;13;13;13
-74;'266;Gabon;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;19;19;19;19;111;16;156;67;24;26;47;12;37;12;12;12;23;12;12;11
-74;'266;Gabon;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;29;29;29;29;78;22;94;45;18;26;41;11;26;10;10;10;30;14;17;22
-74;'266;Gabon;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24
-74;'266;Gabon;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13
-74;'266;Gabon;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;;;;;;;
-74;'266;Gabon;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;;;;;;;
-74;'266;Gabon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;63;31;31;83;83;83;30;30;30;200;24;139;139;139;139;139;50;50;50;50;50;0;0;0;;;;;;;
-74;'266;Gabon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;56;27;27;60;60;60;15;15;15;118;14;130;130;130;130;130;44;44;44;44;44;0;0;0;;;;;;;
-74;'266;Gabon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;0;0;0;;;;;;;
-74;'266;Gabon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;;;;;;;
-74;'266;Gabon;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;25;23;0;1;1;1;1;1;1;0;0;0;0
-74;'266;Gabon;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;33;23;0;2;2;2;2;2;2;1;4;4;4
-74;'266;Gabon;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7
-74;'266;Gabon;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-74;'266;Gabon;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;0;0;0;0;0;43;43;43;43;43;43;43;2;7;8;18;18;18;4;14;14;2;18;6;6;0
-74;'266;Gabon;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;0;0;0;0;12;12;12;12;12;12;12;4;3;37;122;122;122;6;12;12;5;67;21;21;0
-74;'266;Gabon;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;87;656;222;222;31;31;31;31;21;21;0;0;0;0;0
-74;'266;Gabon;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;29;326;90;90;3;3;3;3;6;6;0;0;0;0;0
-74;'266;Gabon;1876;Paper and paperboard;5610;Import quantity;t;;;;200;200;900;800;400;1300;400;400;500;300;300;12700;1600;2200;900;2000;2000;1300;1600;1600;1800;4900;6000;5100;5800;2500;2500;2500;3644;3385;2266;700;1300;1500;1501;1300;1300;7200;7400;10082;11719;11752;5074;5074;5752;5934;5385;6899;5696;8533;6308;5122;5447;4298;7928;7166;5916;5559;3465;8457
-74;'266;Gabon;1876;Paper and paperboard;5622;Import value;1000 USD;;;;99;116;752;802;220;1448;181;228;326;329;329;12354;3149;5054;1401;2899;2899;1900;2300;2300;2585;4752;6581;5634;7265;4951;5979;5979;5630;5021;3195;1737;2620;3066;3054;2271;2271;6052;6144;6893;6039;5729;5569;5569;8682;10015;9858;11211;11554;12983;10434;8084;7996;6707;8735;8148;7405;7667;6364;12796
-74;'266;Gabon;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;46;48;48;43;43;304;306;207;308;1213;2010;2560;1953;2797;309;268;425;611;538;680;584
-74;'266;Gabon;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;71;140;140;135;135;360;369;259;237;694;959;1369;1051;2377;624;240;285;356;267;426;321
-74;'266;Gabon;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;100;100;200;200;200;12600;900;1500;600;1300;1300;800;1000;1000;1600;2700;3600;2600;2900;1400;1500;1500;1337;1339;897;300;400;1500;1501;1300;1300;2400;4400;8598;8962;8995;1862;1862;4483;4136;3884;5418;3880;6192;4571;3649;3532;2566;5601;4630;3553;3470;1313;5322
-74;'266;Gabon;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;51;83;93;108;108;12133;2240;3628;851;1800;1800;1100;1400;1400;2273;3183;4532;3411;4278;3345;4166;4166;3430;3292;1843;832;1096;3066;3054;2271;2271;3096;4010;4937;4147;3837;2703;2703;6144;7133;7138;8641;8576;9127;7312;5196;4823;4277;6303;4962;4004;4410;2839;8063
-74;'266;Gabon;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;101;1023;1935;2486;1879;2723;209;168;152;150;149;221;148
-74;'266;Gabon;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;60;503;856;1275;957;2283;507;123;103;98;100;181;99
-74;'266;Gabon;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;533;350;383;383;383;428;902;851;766;756;668;671;811;482;411;571;611;376;203;265;100
-74;'266;Gabon;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524;500;403;411;411;411;491;989;891;845;727;667;659;652;415;347;339;559;319;201;284;133
-74;'266;Gabon;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;147;147;147;147;147;147;147;147;147;147
-74;'266;Gabon;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;97;97;97;97;97;97;97;97
-74;'266;Gabon;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;100;100;200;200;200;12600;900;1500;600;1300;1300;800;1000;1000;1600;2700;3600;2600;2900;1400;1500;1500;1337;1339;897;300;400;1500;1501;1300;1300;2400;3800;8065;8612;8612;1479;1479;4055;3234;3033;4652;3124;5524;3900;2838;3050;2155;5030;4019;3177;3267;1048;5222
-74;'266;Gabon;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;51;83;93;108;108;12133;2240;3628;851;1800;1800;1100;1400;1400;2273;3183;4532;3411;4278;3345;4166;4166;3430;3292;1843;832;1096;3066;3054;2271;2271;3096;3486;4437;3744;3426;2292;2292;5653;6144;6247;7796;7849;8460;6653;4544;4408;3930;5964;4403;3685;4209;2555;7930
-74;'266;Gabon;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;101;876;1788;2339;1732;2576;62;21;5;3;2;74;1
-74;'266;Gabon;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;60;406;759;1178;860;2186;410;26;6;1;3;84;2
-74;'266;Gabon;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;54;54;100;300;147;157;157;53;53;48;51;213;203;132;111;70;333;60;106;106;121;13;160;29;173
-74;'266;Gabon;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;162;162;221;366;150;438;120;39;39;168;131;471;422;208;229;178;501;232;358;358;104;13;205;121;291
-74;'266;Gabon;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;851;1740;2309;1691;2514;0;0;0;0;0;72;0
-74;'266;Gabon;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;340;731;1156;833;1776;0;0;0;0;0;81;0
-74;'266;Gabon;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;650;650;1200;2000;7500;8100;8100;701;701;3257;2327;1991;3563;2830;4315;3014;1923;2495;1394;3941;2816;1667;2411;576;4332
-74;'266;Gabon;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089;1554;1554;2118;2111;3436;2405;2405;500;500;3631;4248;3928;5414;5307;6085;4729;2887;3215;2250;4488;2725;1848;3035;1308;6189
-74;'266;Gabon;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;21;0;0;11;32;32;3;5;3;2;2;1
-74;'266;Gabon;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;61;0;0;5;388;388;1;6;1;3;3;2
-74;'266;Gabon;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688;596;596;1100;1500;418;355;355;725;725;750;856;829;886;162;1098;816;582;495;655;983;1082;1497;696;443;717
-74;'266;Gabon;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;555;555;757;1009;851;901;901;1753;1753;1854;1765;1848;1960;2334;2146;1746;1156;961;1322;1118;1574;1824;969;1126;1450
-74;'266;Gabon;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;48;30;30;30;30;18;0;0;0;0;0
-74;'266;Gabon;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;28;22;22;22;22;25;0;0;0;0;0
-74;'266;Gabon;1675;Other paper and paperboard;5610;Import quantity;t;;;;200;200;900;800;400;1300;300;300;300;100;100;100;700;700;300;700;700;500;600;600;200;2200;2400;2500;2900;1100;1000;1000;2307;2046;1369;400;900;0;;;;4800;3000;1484;2757;2757;3212;3212;1269;1798;1501;1481;1816;2341;1737;1473;1915;1732;2327;2536;2363;2089;2152;3135
-74;'266;Gabon;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;99;116;752;802;220;1448;130;145;233;221;221;221;909;1426;550;1099;1099;800;900;900;312;1569;2049;2223;2987;1606;1813;1813;2200;1729;1352;905;1524;0;;;;2956;2134;1956;1892;1892;2866;2866;2538;2882;2720;2570;2978;3856;3122;2888;3173;2430;2432;3186;3401;3257;3525;4733
-74;'266;Gabon;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;46;48;48;43;43;304;306;203;207;190;75;74;74;74;100;100;273;461;389;459;436
-74;'266;Gabon;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;71;140;140;135;135;360;369;254;177;191;103;94;94;94;117;117;182;258;167;245;222
-74;'266;Gabon;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;689;508;508;963;963;695;958;738;565;1022;1165;435;702;573;728;481;1031;915;887;349;680
-74;'266;Gabon;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;474;727;544;544;1518;1518;1171;1360;1245;955;1452;1888;1034;1981;638;835;586;1137;1078;1117;825;986
-74;'266;Gabon;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;0;0;0
-74;'266;Gabon;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;23;23;23;23;23;23;23;23;23;23;0;0;0
-74;'266;Gabon;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1000;388;449;449;449;449;338;583;486;886;746;1111;551;319;540;970;1814;1497;1438;1160;1774;2440
-74;'266;Gabon;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;869;522;732;732;732;732;639;1043;772;1416;1227;1702;811;525;1297;1430;1690;1966;2236;2009;2597;3635
-74;'266;Gabon;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;285;287;184;202;178;68;49;49;49;75;75;270;436;389;459;436
-74;'266;Gabon;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;236;245;130;133;113;70;58;58;58;81;81;159;222;167;245;222
-74;'266;Gabon;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;700;168;118;118;118;118;104;111;77;141;42;58;101;26;26;1;26;48;8;94;240;916
-74;'266;Gabon;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;264;75;41;41;41;41;77;68;102;220;32;34;45;16;11;2;46;46;20;91;172;721
-74;'266;Gabon;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;155;155;155;155;155;19;0;0;0;0;0;269;387;387;387;387
-74;'266;Gabon;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;83;83;83;83;83;12;0;0;0;0;0;149;164;164;164;164
-74;'266;Gabon;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;113;154;154;154;154;106;318;150;365;233;328;153;63;247;267;167;476;477;357;627;606
-74;'266;Gabon;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;476;299;491;491;491;491;245;743;379;677;747;920;300;149;873;701;347;918;1123;1114;1174;1622
-74;'266;Gabon;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;23;26;2;0;0;0;0;26;26;1;0;1;23;0
-74;'266;Gabon;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;35;31;11;0;0;0;0;23;23;2;0;2;23;0
-74;'266;Gabon;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;66;129;129;129;129;118;144;249;94;36;312;92;25;62;21;170;92;104;110;152;222
-74;'266;Gabon;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;129;113;161;161;161;161;300;215;274;314;127;440;141;35;88;67;360;153;222;143;188;262
-74;'266;Gabon;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;6;6;21;21;49;49;49;49;49;49;0;49;1;49;49
-74;'266;Gabon;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;12;12;19;19;58;58;58;58;58;58;8;58;1;58;58
-74;'266;Gabon;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;48;48;48;48;10;10;10;286;435;413;205;205;205;681;1451;881;849;599;755;696
-74;'266;Gabon;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;39;39;39;39;17;17;17;205;321;308;325;325;325;660;937;849;871;661;1063;1030
-74;'266;Gabon;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1400;407;1800;1800;1800;1800;236;257;277;30;48;65;751;452;802;34;32;8;10;42;29;15
-74;'266;Gabon;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1444;791;707;616;616;616;616;728;479;703;199;299;266;1277;382;1238;165;156;83;87;131;103;112
-74;'266;Gabon;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;22;19;19;19;19;19;19;19;2;9;4;22;22;22;22;22;0;22;0;0;0
-74;'266;Gabon;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;60;124;124;124;124;124;124;124;21;55;10;13;13;13;13;13;0;13;0;0;0
-74;'266;Gabon;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7021;10335;10040;8865;10560;11217;9443
-74;'266;Gabon;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1655;1512;2579;4905;14156;21422;27927
-74;'266;Gabon;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;206;7;45;67;19;8
-74;'266;Gabon;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;836;830;1191;4307;8566;14414
-74;'266;Gabon;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;1;3;3;3
-74;'266;Gabon;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;16;263;263;263;263;263
-74;'266;Gabon;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;203;5;44;64;16;5
-74;'266;Gabon;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;820;567;928;4044;8303;14151
-74;'266;Gabon;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610;547;642;265;237;258;240
-74;'266;Gabon;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;10;5;11;6;1
-74;'266;Gabon;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;94;111;148;166;150;183
-74;'266;Gabon;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;23;25;30;63;71;22
-74;'266;Gabon;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;581;540;477;706;627;213
-74;'266;Gabon;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;12;1038;500;5977;8408;10774
-74;'266;Gabon;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;214
-74;'266;Gabon;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;204
-74;'266;Gabon;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178
-74;'266;Gabon;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90
-74;'266;Gabon;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5868;8813;8642;7694;9024;9421;8453
-74;'266;Gabon;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720;638;675;929;2463;2336;527
-74;'266;Gabon;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;178;515;43
-74;'266;Gabon;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;94;98;149;182;227;303
-74;'266;Gabon;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;2250;1335;2035;2189
-74;'266;Gabon;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14918;18904;17463;13753;18125;18489;20645
-74;'266;Gabon;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;67;157;33;97;103;65
-74;'266;Gabon;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;30;32;35;31;30;22
-74;'266;Gabon;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;841;1449;2775;1231;2517;2681;2989
-74;'266;Gabon;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;1;2;1;5;17
-74;'266;Gabon;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240;6211;5980;3690;4548;4382;5126
-74;'266;Gabon;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;8;0;1;3;1
-74;'266;Gabon;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4577;5907;4096;4560;5865;5862;6505
-74;'266;Gabon;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;40;139;2;32;19;32
-74;'266;Gabon;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4233;5307;4580;4237;5164;5534;6003
-74;'266;Gabon;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;13;9;29;63;76;15
-75;'270;Gambia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11028;15085;17256;17500;17870.84;10115.12;11075.2
-75;'270;Gambia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108274;20619;69643;27315;35874;35041.5;19729.5
-75;'270;Gambia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;0;30;37;190;157;107;125;118;99;67;73;165;95;165;165;184;171;175;185;565;316;324;324;394;613;667;732;512;477;474;1234;1642;715;682;468;818;1100;1416;1710;1710;532;2337;1718;1718;2695;6994;5029;5362;10747;5320;6060;6323;7290;6046;5357;5945;8648;6657;5891;9161.84;5251.12;7234.2
-75;'270;Gambia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;57;38;27;1;338;179;175;262;262;186;161;669;669;841;1342;655;792;7747;39116;79208;68190;40950;64571;100678;107881;19855;69554;27259;35823;34986.5;19628.5
-75;'270;Gambia;1861;Roundwood;5516;Production;m3;214965;220090;225341;230721;240232;244879;251664;257591;263664;269885;272580;278170;285549;284569;296647;300509;308690;323668;322515;341140;343459;352633;369452;378737;389766;410875;438515;463169;489223;520733;549283;594614;621321;602700;607700;607700;612700;612700;617700;715382;723939;732675;741594;750701;760000;769021;778200;787600;797198;825974;900034;975072;959492;845097;958892;1086921;1035093;803411;851878;820496;839267;848193;827279
-75;'270;Gambia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;284;200;46;46;0;245;175;0;224;224;490;759;759;759;116;116;116;69;926;759;573;2450;9141;9147;9161;166;55;3;9;7;11;301
-75;'270;Gambia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;180;109;3;3;0;39;19;0;50;50;153;133;133;133;17;17;17;28;176;189;145;458;528;530;533;38;7;1;5;3;6;77
-75;'270;Gambia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;14;0;5;5;5;16;2318;2318;227;1075;153;266;19272;85999;150450;123894;85246;204458;328507;253649;19990;62529;17797;28446;31469;188
-75;'270;Gambia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;0;3;3;3;5;179;179;43;703;16;50;7169;38338;78180;67338;33250;56869;92834;97400;14978;52118;8081;17173;15434;92
-75;'270;Gambia;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-75;'270;Gambia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;48;3;6;1;11;265
-75;'270;Gambia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;4;1;3;1;6;49
-75;'270;Gambia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-75;'270;Gambia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-75;'270;Gambia;1863;Roundwood, non-coniferous;5516;Production;m3;214965;220090;225341;230721;240232;244879;251664;257591;263664;269885;272580;278170;285549;284569;296647;300509;308690;323668;322515;341140;343459;352633;369452;378737;389766;410875;438515;463169;489223;520733;549283;594614;621321;602700;607700;607700;612700;612700;617700;715382;723939;732675;741594;750701;760000;769021;778200;787600;797198;825974;900034;974072;958492;844097;957892;1085921;1034093;802411;850878;819496;838267;847193;826279
-75;'270;Gambia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;0;3;6;0;36
-75;'270;Gambia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;0;2;2;0;28
-75;'270;Gambia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253649;19990;62529;17797;28446;31469;188
-75;'270;Gambia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97400;14978;52118;8081;17173;15434;92
-75;'270;Gambia;1864;Wood fuel;5516;Production;m3;208965;214090;219341;224721;230232;235879;241664;247591;253664;259885;262580;268170;275549;274569;286647;290509;298690;313668;312515;331140;333459;334133;348852;358137;369166;384275;401915;416569;432623;454133;467683;498014;511621;490000;495000;495000;500000;500000;505000;602682;611239;619975;628894;638001;647300;656321;665500;674900;684498;694274;703334;712572;721992;731597;741392;749421;757593;765911;774378;782996;791767;800693;809779
-75;'270;Gambia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;178;2437;9139;9139;9139;;;;;;;27
-75;'270;Gambia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;44;44;418;527;527;527;;;;;;;4
-75;'270;Gambia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172;1172;591;591;591;591;;;;;;;
-75;'270;Gambia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;29;29;29;29;;;;;;;
-75;'270;Gambia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27
-75;'270;Gambia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-75;'270;Gambia;1628;Wood fuel, non-coniferous;5516;Production;m3;208965;214090;219341;224721;230232;235879;241664;247591;253664;259885;262580;268170;275549;274569;286647;290509;298690;313668;312515;331140;333459;334133;348852;358137;369166;384275;401915;416569;432623;454133;467683;498014;511621;490000;495000;495000;500000;500000;505000;602682;611239;619975;628894;638001;647300;656321;665500;674900;684498;694274;703334;712572;721992;731597;741392;749421;757593;765911;774378;782996;791767;800693;809779
-75;'270;Gambia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;178;178;2437;9139;9139;9139;;;;;;;
-75;'270;Gambia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;44;44;418;527;527;527;;;;;;;
-75;'270;Gambia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172;1172;591;591;591;591;;;;;;;
-75;'270;Gambia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;29;29;29;29;;;;;;;
-75;'270;Gambia;1865;Industrial roundwood;5516;Production;m3;6000;6000;6000;6000;10000;9000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;18500;20600;20600;20600;26600;36600;46600;56600;66600;81600;96600;109700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;131700;196700;262500;237500;113500;217500;337500;277500;37500;77500;37500;47500;47500;17500
-75;'270;Gambia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;284;200;46;46;0;245;175;0;224;224;490;759;759;759;116;116;116;69;922;581;395;13;2;8;22;166;55;3;9;7;11;274
-75;'270;Gambia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;180;109;3;3;0;39;19;0;50;50;153;133;133;133;17;17;17;28;174;145;101;40;1;3;6;38;7;1;5;3;6;73
-75;'270;Gambia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;14;0;5;5;5;16;2318;2318;227;1075;153;266;19272;84827;149278;123303;84655;203867;327916;253649;19990;62529;17797;28446;31469;188
-75;'270;Gambia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;0;3;3;3;5;179;179;43;703;16;50;7169;38238;78080;67309;33221;56840;92805;97400;14978;52118;8081;17173;15434;92
-75;'270;Gambia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-75;'270;Gambia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;284;200;46;46;0;70;0;0;224;224;224;493;493;493;48;48;48;48;785;465;279;0;0;0;10;165;48;3;6;1;11;238
-75;'270;Gambia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;180;109;3;3;0;20;0;0;50;50;50;30;30;30;3;3;3;3;0;61;17;2;0;0;4;37;4;1;3;1;6;45
-75;'270;Gambia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;0;0;57;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;8;3;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;284;200;46;46;0;70;0;0;224;224;224;493;493;493;48;48;48;48;785;465;279;0;0;0;10;165;48;3;6;1;11;238
-75;'270;Gambia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;180;109;3;3;0;20;0;0;50;50;50;30;30;30;3;3;3;3;0;61;17;2;0;0;4;37;4;1;3;1;6;45
-75;'270;Gambia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;0;0;57;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;8;3;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6000;6000;6000;6000;10000;9000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;18500;20600;20600;20600;26600;36600;46600;56600;66600;81600;96600;109700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;112700;131700;196700;261500;236500;112500;216500;336500;276500;36500;76500;36500;46500;46500;16500
-75;'270;Gambia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;0;266;266;266;266;68;68;68;21;137;116;116;13;2;8;12;1;7;0;3;6;0;36
-75;'270;Gambia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;0;103;103;103;103;14;14;14;25;174;84;84;38;1;3;2;1;3;0;2;2;0;28
-75;'270;Gambia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;14;0;5;5;5;16;2318;2318;84;932;10;123;19272;84827;149221;123303;84655;203867;327916;253649;19990;62529;17797;28446;31469;188
-75;'270;Gambia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;0;3;3;3;5;179;179;35;695;8;42;7169;38230;78077;67309;33221;56840;92805;97400;14978;52118;8081;17173;15434;92
-75;'270;Gambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;3;13;2;8;11;0;5;0;0;0;0;0
-75;'270;Gambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1;1;38;1;3;2;0;3;0;0;0;0;0
-75;'270;Gambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;484;484;84;932;10;123;19272;84827;149157;123303;84655;203867;327916;253649;19990;62529;17797;28446;31469;188
-75;'270;Gambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;71;71;35;695;8;42;7169;38230;78057;67309;33221;56840;92805;97400;14978;52118;8081;17173;15434;92
-75;'270;Gambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;0;266;266;266;266;68;68;68;21;132;113;113;0;0;0;1;1;2;0;3;6;0;36
-75;'270;Gambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;0;103;103;103;103;14;14;14;25;113;83;83;0;0;0;0;1;0;0;2;2;0;28
-75;'270;Gambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;5;5;5;16;1834;1834;0;0;0;0;0;0;64;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;3;3;3;5;108;108;0;0;0;0;0;0;20;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;13000;14000;14000;14000;20000;30000;40000;50000;60000;75000;90000;103000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;125000;190000;255000;230000;106000;210000;330000;270000;30000;70000;30000;40000;40000;10000
-75;'270;Gambia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1000;1000;1000;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;13000;14000;14000;14000;20000;30000;40000;50000;60000;75000;90000;103000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;125000;190000;255000;230000;106000;210000;330000;270000;30000;70000;30000;40000;40000;10000
-75;'270;Gambia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1871;Other industrial roundwood;5516;Production;m3;5000;5000;5000;5000;5000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5500;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500
-75;'270;Gambia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-75;'270;Gambia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;5000;5000;5000;5000;5000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5500;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6700;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500
-75;'270;Gambia;1630;Wood charcoal;5510;Production;t;10975;11336;11708;12093;12491;12902;13326;13764;14216;14684;14849;15221;15779;15639;16551;16861;17521;18786;18709;20292;20532;20662;21997;22853;23822;25113;26679;27961;29376;31331;32529;35340;36663;38793;40566;42281;43360;44439;45605;46802;47922;49069;50244;51447;52679;53883;55100;56400;57666;58985;60256;61555;62882;64237;65622;66835;68070;69328;70609;71914;73242;74593;75970
-75;'270;Gambia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;132;1105;3152;2339;3485;5566;3247;3794;3427;1179;1695;2953;1899
-75;'270;Gambia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;41;375;343;230;239;281;334;539;681;349;215;204;154
-75;'270;Gambia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;70;70;70;70;102;284;98;166;90;61;13;2800;993;993;993;993;993;993
-75;'270;Gambia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;15;15;15;15;50;20;43;15;39;24;5;421;486;486;486;486;486;486
-75;'270;Gambia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;97;97;20;25;25;25;25;25;466;29;128;128.47;60
-75;'270;Gambia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;20;20;4;4;4;4;4;4;38;12;43;42.92;27
-75;'270;Gambia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3179;3179;669;58750;58750;58750;58750;73;17;17;17;17;17
-75;'270;Gambia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;50;7496;7496;7496;7496;7;1;6;6;6;6
-75;'270;Gambia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;97;97;20;25;25;25;25;25;466;29;128;128.47;60
-75;'270;Gambia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;20;20;4;4;4;4;4;4;38;12;43;42.92;27
-75;'270;Gambia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3106;3106;596;58677;58677;58677;58677;0;0;0;0;0;0
-75;'270;Gambia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;43;7489;7489;7489;7489;0;0;5;5;5;5
-75;'270;Gambia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;73;73;73;73;73;17;17;17;17;17
-75;'270;Gambia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;1;1;1;1;1
-75;'270;Gambia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3.6;3.6
-75;'270;Gambia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2.76;2.76
-75;'270;Gambia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3.6;3.6
-75;'270;Gambia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2.76;2.76
-75;'270;Gambia;1872;Sawnwood;5516;Production;m3;;300;300;400;400;900;900;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1500;1500;10500;20500;45500;45500;45500;45500;45500
-75;'270;Gambia;1872;Sawnwood;5616;Import quantity;m3;;;;;1100;1700;600;1000;100;100;300;400;800;200;700;700;600;200;200;200;500;100;100;100;700;700;100;100;200;200;200;23;213;365;616;500;342;1100;700;1001;1001;538;204;663;663;1795;2430;872;396;1523;518;273;598;241;889;721;1992;3046;2778;2418;5243;2908;4608
-75;'270;Gambia;1872;Sawnwood;5622;Import value;1000 USD;;;;;80;118;74;109;17;17;30;36;91;35;115;115;64;18;20;25;100;35;89;89;138;138;26;65;151;151;151;11;161;197;195;108;90;215;157;174;174;80;201;135;135;577;1711;609;232;1383;256;217;160;134;228;158;454;719;582;445;1456;811;939
-75;'270;Gambia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;126;64;35;0;366;300;300;282;282;35;69;420;420;236;33;33;127;61;717;162;83;21;71;474;3511;9723;30229;33029;20363;37364;184
-75;'270;Gambia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;57;31;9;0;209;176;175;90;90;14;28;128;128;141;83;83;117;59;378;672;676;55;52;248;2455;4276;16841;18585;18064;18956;18956
-75;'270;Gambia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500;500;500
-75;'270;Gambia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;1100;1700;600;1000;100;100;100;100;100;100;200;200;100;;;;;;;;;;;;;;;12;93;235;486;400;242;700;300;642;642;463;93;513;513;908;661;216;211;388;482;97;212;55;845;692;1915;2999;2482;2368;5147;2834;4328
-75;'270;Gambia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;80;118;74;109;17;17;17;17;17;24;85;85;34;;;;;;;;;;;;;;;2;32;69;67;79;61;132;80;104;104;50;27;89;89;207;360;107;95;203;244;48;108;99;197;128;378;661;509;425;1395;785;871
-75;'270;Gambia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;28;0;28;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;10;0;117;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1633;Sawnwood, non-coniferous;5516;Production;m3;;300;300;400;400;900;900;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;10000;20000;45000;45000;45000;45000;45000
-75;'270;Gambia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;200;300;700;100;500;500;500;200;200;200;500;100;100;100;700;700;100;100;200;200;200;11;120;130;130;100;100;400;400;359;359;75;111;150;150;887;1769;656;185;1135;36;176;386;186;44;29;77;47;296;50;96;74;280
-75;'270;Gambia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;13;19;74;11;30;30;30;18;20;25;100;35;89;89;138;138;26;65;151;151;151;9;129;128;128;29;29;83;77;70;70;30;174;46;46;370;1351;502;137;1180;12;169;52;35;31;30;76;58;73;20;61;26;68
-75;'270;Gambia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;126;64;35;0;366;300;300;282;282;35;61;412;412;228;25;25;119;33;717;134;83;21;71;474;3511;9723;30229;33029;20363;37364;184
-75;'270;Gambia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;57;31;9;0;209;176;175;90;90;14;25;125;125;138;80;80;114;49;378;555;676;55;52;248;2455;4276;16841;18585;18064;18956;18956
-75;'270;Gambia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-75;'270;Gambia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;335;335;335;9;0;0;0;0;1;1;1;1;1;1;1;1;612;7894;325;346;74;36;5;269;299;714;11;0;0;6
-75;'270;Gambia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;33;33;33;10;0;0;0;0;1;1;1;1;1;1;1;1;86;491;73;72;18;18;1;131;90;111;229;404;7;12
-75;'270;Gambia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;0;0;285;285;285;27;27;27;27;27;27;27;27;27;27;27;0;37;0;1;0;0;0;0;3;0
-75;'270;Gambia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;0;0;144;144;144;73;73;73;73;73;73;73;31;40;41;6;0;20;0;1;0;0;0;0;10;0
-75;'270;Gambia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1873;Wood-based panels;5616;Import quantity;m3;;0;100;100;100;200;200;200;1000;800;400;400;500;300;200;200;600;600;600;600;600;400;200;200;400;200;900;700;300;400;400;913;2282;331;1564;1302;1151;1800;1400;2218;2218;168;3041;1172;1172;2141;4927;3772;3297;7676;5461;7470;7608;4757;4902;4562;7450;7031;17126;11904;17127.35;9889;14763
-75;'270;Gambia;1873;Wood-based panels;5622;Import value;1000 USD;;0;30;37;110;39;33;16;101;82;37;37;74;60;50;50;120;153;155;160;165;121;75;75;156;88;398;287;82;115;115;320;885;102;139;179;352;588;383;587;587;46;751;501;501;976;3201;2516;2138;7047;2438;3475;3537;2922;2836;2346;2905;3968;4739;4117;5712.3;2774;4324
-75;'270;Gambia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;20;20;20;20;20;20;921;921;921;935;73;32;32;11;5;2;1;0;0;0;0;0;0;0
-75;'270;Gambia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;4;4;4;4;4;4;38;38;38;107;8;110;42;7;2;2;0;0;0;0;0;0;0;0
-75;'270;Gambia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1640;Plywood and LVL;5616;Import quantity;m3;;0;100;100;100;200;200;200;1000;800;400;400;500;300;200;200;600;600;600;600;600;400;200;200;400;200;900;700;300;400;400;285;1600;70;70;200;207;400;200;195;195;34;767;170;170;1103;3634;2058;2284;5134;3979;5890;5504;3477;2447;3050;5897;5287;12358;6265;11472;8660;13158
-75;'270;Gambia;1640;Plywood and LVL;5622;Import value;1000 USD;;0;30;37;110;39;33;16;101;82;37;37;74;60;50;50;120;153;155;160;165;121;75;75;156;88;398;287;82;115;115;123;670;20;20;89;110;193;104;87;87;18;230;60;60;600;2718;1644;1684;6146;1786;2675;2532;2486;1610;1493;2179;3312;3939;2462;3812;2181;3701
-75;'270;Gambia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;73;73;32;32;11;5;2;1;0;0;0;0;0;0;0
-75;'270;Gambia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;85;8;110;42;7;2;2;0;0;0;0;0;0;0;0
-75;'270;Gambia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;23;0;0;0;0;0;2;2;2;67;26;25;25;1292;327;327;127;175;175;175;0;0;337;418;632;17;63
-75;'270;Gambia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;9;0;0;0;0;0;1;1;1;47;28;16;14;334;59;59;25;125;125;125;0;0;40;84;127;15;27
-75;'270;Gambia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;20;20;20;20;20;20;862;862;862;862;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;4;4;4;4;4;4;22;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15;15;0;0;0;0;0;0;0;0;0;4;91;40;40;40;40;1
-75;'270;Gambia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;17;17;0;0;0;0;0;0;0;0;0;3;1;12;12;13;13;0
-75;'270;Gambia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;682;261;1492;1100;921;1400;1200;2023;2023;134;2272;1000;1000;956;1252;1689;988;1250;1155;1253;1977;1105;2280;1337;1549;1653;4391;5181;4983.35;1172;1541
-75;'270;Gambia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;215;82;118;89;233;395;279;500;500;28;520;440;440;312;438;856;440;567;593;741;980;311;1101;728;723;655;748;1559;1760.3;565;596
-75;'270;Gambia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905;1400;1200;2023;2023;134;2177;905;905;861;1157;1621;822;1062;1102;758;1281;853;1598;499;705;1644;955;1719;1470;345;786
-75;'270;Gambia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;395;279;500;500;28;500;420;420;292;418;812;335;487;570;460;634;234;689;218;298;643;160;602;558;207;303
-75;'270;Gambia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;60;158;133;8;450;651;207;637;837;843;8;2691;2580;3024.35;822;742
-75;'270;Gambia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;42;103;55;4;262;327;58;393;510;425;12;478;887;1114.3;347;293
-75;'270;Gambia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;28;28;1492;1100;16;0;0;0;0;0;8;8;8;8;8;8;8;55;45;45;45;45;45;1;1;1;745;882;489;5;13
-75;'270;Gambia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;13;13;118;89;2;0;0;0;0;0;2;2;2;2;2;2;2;25;19;19;19;19;19;0;0;0;110;70;88;11;0
-75;'270;Gambia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;654;233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;202;69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;18;15;130;80;170;170;100;97;97;214;312;78;78;144;359;66;658;102;225;44;49;88;587;297;90;90;153;86;13;31;121
-75;'270;Gambia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;1;29;13;20;20;15;11;11;36;63;11;11;124;101;52;124;52;158;99;57;49;215;68;22;22;97;29;18;8;18
-75;'270;Gambia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;16;0;0;0;0;0;81;81;81;81;81;81;81;120;120;75;75;75;6;6;6;6;6;74;74.25;74.25
-75;'270;Gambia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;0;0;0;0;0;8;8;8;8;8;8;8;38;38;5;5;5;1;1;1;1;1;10;10.5;10.5
-75;'270;Gambia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;17;6;6;6;6;17;17;18;20;20;20;38;23;23;23;23;38;9;6;2;20
-75;'270;Gambia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;3;3;3;3;34;34;34;35;35;35;36;3;3;3;3;72;7;6;1;11
-75;'270;Gambia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0;0;0;15;17;6;6;6;6;17;17;18;18;18;18;17;2;2;2;2;2;2;2;2;16
-75;'270;Gambia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0;0;10;14;3;3;3;3;34;34;34;34;34;34;34;1;1;1;1;1;1;1;1;10
-75;'270;Gambia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;17;6;6;6;6;17;17;18;18;18;18;17;2;2;2;2;2;2;2;2;16
-75;'270;Gambia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;3;3;3;3;34;34;34;34;34;34;34;1;1;1;1;1;1;1;1;10
-75;'270;Gambia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-75;'270;Gambia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;17;6;6;6;6;17;17;17;17;17;17;17;2;2;2;2;2;2;2;2;16
-75;'270;Gambia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;3;3;3;3;34;34;34;34;34;34;34;1;1;1;1;1;1;1;1;10
-75;'270;Gambia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;;;;;;;
-75;'270;Gambia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;;;;;;
-75;'270;Gambia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;21;21;21;21;21;36;7;4;0;4
-75;'270;Gambia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;2;2;71;6;5;0;1
-75;'270;Gambia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;2;0;1;0.92;0.92
-75;'270;Gambia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;4;0;0;0.44;0.44
-75;'270;Gambia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;18;15;130;80;170;170;100;97;97;199;295;72;72;138;353;49;641;84;205;24;29;50;564;274;67;67;115;77;7;29;101
-75;'270;Gambia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;1;29;13;20;20;15;11;11;26;49;8;8;121;98;18;90;18;123;64;22;13;212;65;19;19;25;22;12;7;7
-75;'270;Gambia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;16;0;0;0;0;0;81;81;81;81;81;81;81;120;120;75;75;75;6;6;6;6;6;74;74.25;74.25
-75;'270;Gambia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;0;0;0;0;0;8;8;8;8;8;8;8;38;38;5;5;5;1;1;1;1;1;10;10.5;10.5
-75;'270;Gambia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;400;200;200;200;100;400;200;300;200;200;200;328;385;305;169;100;284;181;700;1034;1034;234;960;1125;1125;490;1122;975;1104;1925;1667;1534;2383;3709;1637;1592;1980;2169;1565;1348;2354.62;486;2899
-75;'270;Gambia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;300;160;160;160;100;387;243;380;279;207;207;712;483;376;280;132;304;258;861;888;888;216;1188;937;937;1000;1952;1823;2828;1991;1727;1656;1686;3399;1970;1960;2051;3293;404;705;1307.55;1395;1680
-75;'270;Gambia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;16;0;0;0;0;6;6;6;24;330;330;828;723;723;723;723;106;106;105;95;95;85;102;102;102;89;65;65;61
-75;'270;Gambia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;17;0;0;0;0;21;21;21;33;259;259;523;422;422;422;422;102;102;93;103;103;94;107;107;107;100;84;84;78
-75;'270;Gambia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;211;265;79;0;244;141;300;188;188;157;758;485;485;374;764;656;780;1274;1046;1209;2093;3289;1412;1339;1724;1868;1283;1047;989;280;2127
-75;'270;Gambia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582;307;334;101;0;248;208;445;199;199;120;514;377;377;315;961;802;1721;953;509;1209;1347;2446;1291;1045;1454;2184;278;441;353;358;968
-75;'270;Gambia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;5;0;0;0;0;0;0;0;0;18;18;516;516;516;516;516;44;44;43;43;43;32;49;49;49;36;12;12;8
-75;'270;Gambia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;0;0;0;0;0;14;14;278;278;278;278;278;44;44;35;35;35;26;39;39;39;32;16;16;10
-75;'270;Gambia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;26;27;26;0;45;0;0;20;20;20;127;25;25;16;24;24;26;384;135;21;113;171;47;100;44;25;21;40;21;21;170
-75;'270;Gambia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;14;32;0;48;0;0;11;11;11;43;13;13;8;14;14;8;220;75;19;26;61;23;49;22;25;7;19;6;6;84
-75;'270;Gambia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;498;498;498;498;498;37;37;37;37;37;26;26;26;26;26;2;2;2
-75;'270;Gambia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;264;264;264;264;264;26;26;26;26;26;17;17;17;17;17;1;1;1
-75;'270;Gambia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;185;238;53;0;199;141;300;168;168;137;631;460;460;358;740;632;754;890;911;1188;1980;3118;1365;1239;1680;1843;1262;1007;968;259;1957
-75;'270;Gambia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577;294;320;69;0;200;208;445;188;188;109;471;364;364;307;947;788;1713;733;434;1190;1321;2385;1268;996;1432;2159;271;422;347;352;884
-75;'270;Gambia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;5;0;0;;;;;;;18;18;18;18;18;18;18;7;7;6;6;6;6;23;23;23;10;10;10;6
-75;'270;Gambia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;;;;;;;14;14;14;14;14;14;14;18;18;9;9;9;9;22;22;22;15;15;15;9
-75;'270;Gambia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;3;3;48;102;43;43;5;5;3;3;9;5;81;81;249;3;140;70;70;17;13;78;6;222
-75;'270;Gambia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;2;2;39;92;34;34;5;5;22;22;4;19;108;83;236;15;106;79;79;6;54;41;25;104
-75;'270;Gambia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3
-75;'270;Gambia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6
-75;'270;Gambia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;218;122;122;80;502;312;312;312;466;526;664;678;401;1005;1333;1933;1291;860;1386;1667;39;169;54;148;981
-75;'270;Gambia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;303;128;128;59;341;247;247;252;527;574;1570;587;295;960;1146;1919;1148;654;1142;1655;17;93;49;171;427
-75;'270;Gambia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;4;4;4;0
-75;'270;Gambia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;6;6;6;0
-75;'270;Gambia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;77;43;43;9;27;105;105;41;269;103;87;203;505;102;566;936;71;239;224;106;1206;825;836;105;754
-75;'270;Gambia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;137;58;58;11;38;83;83;50;415;192;121;142;120;122;92;230;105;236;211;425;248;275;257;156;353
-75;'270;Gambia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;7;7;3;3;3;3;3;3;3;3;3;3;3
-75;'270;Gambia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;18;18;3;3;3;3;3;3;3;3;3;3;3
-75;'270;Gambia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;400;200;200;200;100;400;200;300;200;200;200;101;174;40;90;100;40;40;400;846;846;77;202;640;640;116;358;319;324;651;621;325;290;420;225;253;256;301;282;301;1365.62;206;772
-75;'270;Gambia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;300;160;160;160;100;387;243;380;279;207;207;130;176;42;179;132;56;50;416;689;689;96;674;560;560;685;991;1021;1107;1038;1218;447;339;953;679;915;597;1109;126;264;954.55;1037;712
-75;'270;Gambia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;6;6;6;24;312;312;312;207;207;207;207;62;62;62;52;52;53;53;53;53;53;53;53;53
-75;'270;Gambia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;21;21;21;33;245;245;245;144;144;144;144;58;58;58;68;68;68;68;68;68;68;68;68;68
-75;'270;Gambia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;8;8;4;10;20;20;8;15;17;14;121;92;9;139;57;14;53;19;30;99;99;82;47;130
-75;'270;Gambia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;7;7;5;17;22;22;40;15;35;28;69;38;12;9;20;37;121;46;48;21;63;60;144;143
-75;'270;Gambia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;19;19;19;19;19;19;19;19;19;19
-75;'270;Gambia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;8;8;8;8;8;8;8;8;8;8
-75;'270;Gambia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;15;16;16;39;132;160;160;47;267;263;222;402;395;314;97;266;114;127;218;218;91;155;1236.62;111;587
-75;'270;Gambia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;10;6;6;53;104;101;101;56;255;548;488;532;422;422;292;403;112;148;247;250;64;164;862.55;181;516
-75;'270;Gambia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;38;38;38;5;5;6;6;6;6;6;6;6;6
-75;'270;Gambia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;25;25;25;4;4;4;4;4;4;4;4;4;4
-75;'270;Gambia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;4;14;14;12;39;27;24;204;38;38;38;57;11;7;6;31;1;24;269;3;123
-75;'270;Gambia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;3;9;9;15;24;22;20;121;31;31;31;75;8;4;13;21;3;15;211;7;131
-75;'270;Gambia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;12;8;38;38;7;40;146;147;150;96;22;22;13;3;3;3;3;14;1;9;37;25
-75;'270;Gambia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;36;17;24;24;16;140;420;404;370;194;58;58;25;5;5;5;20;8;3;6;75;35
-75;'270;Gambia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;1;1;2;2;2;2;2;2;2;2
-75;'270;Gambia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;0;0;0;0;0;0;0;0;0;0
-75;'270;Gambia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;15;13;13;4;95;91;91;11;171;73;34;31;244;244;27;186;85;102;208;183;75;129;957.62;69;437
-75;'270;Gambia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;10;5;5;4;75;57;57;14;80;95;53;30;186;186;56;156;90;130;229;209;53;146;645.55;92;343
-75;'270;Gambia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;149;149;149;149;149;149;4;4;4;4;4;4;4;4;4;4;4;4;4
-75;'270;Gambia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;90;90;90;90;4;4;4;4;4;4;4;4;4;4;4;4;4
-75;'270;Gambia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;17;17;17;17;17;17;17;17;10;10;10;15;15;1;1;1;1;1;2;2
-75;'270;Gambia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;11;11;11;11;11;11;11;147;147;147;9;9;0;0;0;0;0;7;7
-75;'270;Gambia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;380;822;822;34;60;460;460;61;76;39;88;128;134;2;54;97;97;73;19;53;92;47;47;48;55
-75;'270;Gambia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;402;676;676;38;553;437;437;589;721;438;591;437;758;13;38;530;530;646;304;811;41;37;32;712;53
-75;'270;Gambia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;6;6;111;111;111;6;6;6;6;6;6;6;28;28;28;28;28;28;28;28;28;28
-75;'270;Gambia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;21;21;21;21;122;122;122;21;21;21;21;21;21;21;56;56;56;56;56;56;56;56;56;56
-75;'270;Gambia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;3685;7695;6910;4791;2062;2260
-75;'270;Gambia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;356;62;31;26;30;76
-75;'270;Gambia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;64;69;1;3
-75;'270;Gambia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;22;22;22;22;22
-75;'270;Gambia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;16;16;1;3
-75;'270;Gambia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;15;15;15;15;15
-75;'270;Gambia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;48;53;0;0
-75;'270;Gambia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7
-75;'270;Gambia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;27;70;53;75;34;98
-75;'270;Gambia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0
-75;'270;Gambia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;11;8;14;2;0
-75;'270;Gambia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;15;24;7;2;2;2
-75;'270;Gambia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;448;495;1203;804;943;1179
-75;'270;Gambia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-75;'270;Gambia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75
-75;'270;Gambia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10
-75;'270;Gambia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;2967;2549;3226;3796;1081;935
-75;'270;Gambia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;1;5;51
-75;'270;Gambia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42
-75;'270;Gambia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;238;4570;2356;33;1;3
-75;'270;Gambia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;316;15;1;1;1;1
-75;'270;Gambia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2735;2752;2904;4699;3918;2802;1581
-75;'270;Gambia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;408;27;25;25;25;25
-75;'270;Gambia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;3;0;6
-75;'270;Gambia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;16;9;125;90
-75;'270;Gambia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-75;'270;Gambia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;813;1097;1802;1331;989;533
-75;'270;Gambia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;384;3;1;1;1;1
-75;'270;Gambia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;1293;1045;1572;1614;849;767
-75;'270;Gambia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20
-75;'270;Gambia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177;643;756;1307;961;839;185
-75;'270;Gambia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;2;2;2;2
-73;'268;Georgia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262574.91;305960;312769;243035;298427;410673;426455
-73;'268;Georgia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33883.08;32214;44799;47396;65679;69517;84265
-73;'268;Georgia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;164;228;303;272;4495;2649;3340;3111;3135;3130;3091;3240;3160;38737;60630;60630;60630;60630;94615;89306;109360;122335;123290;105536;125378.63;155247;149006;109895;147986;199631;190216
-73;'268;Georgia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;157;75;0;10;6177;8722;9639;11864;11407;13334;17994;19410;22176;17748;21648;21648;21648;21648;20186;23426;23587;20824;17885;19520;28951.8;28095;32826;20821;34373;38896;45703
-73;'268;Georgia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304100;329800;375100;298800;383600;449700;542900;615900;641164;838006;838006;838006;838006;838006;420394;626242;592397;642724;576881;584542;554312;584893;550179;544000;566000;478000
-73;'268;Georgia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;0;2054;0;0;0;500;0;0;63;1;4410;16735;16735;16735;16735;21015;34000;10000;34040;25495;23000;25821;24322;38453;27664;40133;34170;10628
-73;'268;Georgia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;143;0;143;143;144;143;143;147;143;439;1709;1709;1709;1709;2620;4340;1360;4646;3337;3044;4082.58;5499;5108;3092;5361;4600;2201
-73;'268;Georgia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4985;1743;595;0;0;45473;57524;57468;56814;55198;55198;55198;55198;55337;2674;941;941;941;941;32;0;0;0;4665;7078;8737;8833;8828;202;100;1661;4306
-73;'268;Georgia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;88;63;0;0;5615;7739;7890;7852;7676;7630;7630;7630;7631;257;152;152;152;152;3;15;0;0;207;333;381.88;372;371;27;14;174;242
-73;'268;Georgia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36400;39600;44900;35900;46000;53900;65200;73900;179202;178473;178473;178473;178473;178473;111274;142737;127310;129177;143705;141752;175906;180288;209201;219000;213000;203000
-73;'268;Georgia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25105;22928;22928;15633;29650;23796;10160
-73;'268;Georgia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3979.39;5402;2956;1827;3970;3186;2110
-73;'268;Georgia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;116;0;28;0
-73;'268;Georgia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.88;0;0;22;0;3;0
-73;'268;Georgia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267700;290200;330200;262900;337600;395800;477700;542000;461962;659533;659533;659533;659533;659533;309120;483505;465087;513547;433176;442790;378406;404605;340978;325000;353000;275000
-73;'268;Georgia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;1394;15525;12031;10483;10374;468
-73;'268;Georgia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103.19;97;2152;1265;1391;1414;91
-73;'268;Georgia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8537;8833;8828;86;100;1633;4306
-73;'268;Georgia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;372;371;5;14;171;242
-73;'268;Georgia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223700;243600;279500;237600;313200;367300;443300;453900;473000;733000;733000;733000;733000;733000;323987;494994;497587;526302;429307;423171;385554;406573;359000;353000;375000;331000
-73;'268;Georgia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;0;0;63;1;0;0;0;0;0;0;0;0;0;58;0;554;958;958;958;0;4;27
-73;'268;Georgia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;4;0;0;0;0;0;0;0;0;0;0;1;0;88;92;92;0;0;38;8
-73;'268;Georgia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1096;1096;442;0;0;0;0;139;0;0;0;0;0;1;0;0;0;3407;7061;8537;8828;8828;86;100;1661;4306
-73;'268;Georgia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;8;46;0;0;0;1;0;0;0;0;0;0;0;0;0;192;321;366;371;371;5;14;173;241
-73;'268;Georgia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26800;29200;33500;28500;37600;44100;53200;54500;94600;146600;146600;146600;146600;146600;42266;58897;62051;64441;60305;63500;77735;79557;74000;73000;67000;78000
-73;'268;Georgia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;0
-73;'268;Georgia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0
-73;'268;Georgia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196900;214400;246000;209100;275600;323200;390100;399400;378400;586400;586400;586400;586400;586400;281721;436097;435536;461861;369002;359671;307819;327016;285000;280000;308000;253000
-73;'268;Georgia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;958;958;958;0;4;27
-73;'268;Georgia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;92;92;0;0;38;8
-73;'268;Georgia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8537;8828;8828;86;100;1633;4306
-73;'268;Georgia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;371;371;5;14;170;241
-73;'268;Georgia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;0;0;63;1;0;0;0;0;0;0;0;0;0;58;0;;;;;;;
-73;'268;Georgia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;4;0;0;0;0;0;0;0;0;0;0;1;0;;;;;;;
-73;'268;Georgia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1096;1096;442;0;0;0;0;139;0;0;0;0;0;1;0;0;0;3407;7061;;;;;;;
-73;'268;Georgia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;8;46;0;0;0;1;0;0;0;0;0;0;0;0;0;192;321;;;;;;;
-73;'268;Georgia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80400;86200;95600;61200;70400;82400;99600;162000;168164;105006;105006;105006;105006;105006;96407;131248;94810;116422;147574;161371;168758;178320;191179;191000;191000;147000
-73;'268;Georgia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;0;2054;0;0;0;0;0;0;0;0;4410;16735;16735;16735;16735;21015;34000;10000;34040;25437;23000;25267;23364;37495;26706;40133;34166;10601
-73;'268;Georgia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;143;0;143;143;143;143;143;143;143;439;1709;1709;1709;1709;2620;4340;1360;4646;3336;3044;3994.58;5407;5016;3092;5361;4562;2193
-73;'268;Georgia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4985;1743;595;0;0;45473;56428;56372;56372;55198;55198;55198;55198;55198;2674;941;941;941;941;31;0;0;0;1258;17;200;5;0;116;0;0;0
-73;'268;Georgia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;88;63;0;0;5615;7693;7844;7844;7630;7630;7630;7630;7630;257;152;152;152;152;3;15;0;0;15;12;15.88;1;0;22;0;1;1
-73;'268;Georgia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600;10400;11400;7400;8400;9800;12000;19400;84602;31873;31873;31873;31873;31873;69008;83840;65259;64736;83400;78252;98171;100731;135201;146000;146000;125000
-73;'268;Georgia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4330;16127;16127;16127;16127;21015;34000;9000;34000;25437;23000;25105;22928;22928;15633;29650;23796;10160
-73;'268;Georgia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;427;1651;1651;1651;1651;2620;4330;1226;4588;3336;3044;3979.39;5402;2956;1827;3970;3186;2110
-73;'268;Georgia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4035;1710;595;0;0;888;1230;1174;1174;0;0;0;0;0;932;0;0;0;0;31;0;0;0;330;0;200;0;0;116;0;0;0
-73;'268;Georgia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;81;63;0;0;82;63;214;214;0;0;0;0;0;90;0;0;0;0;3;7;0;0;6;0;15.88;0;0;22;0;0;0
-73;'268;Georgia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4330;16127;16127;16127;16127;21015;34000;9000;34000;25437;23000;25105;22928;22928;15633;29650;23796;10160
-73;'268;Georgia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;427;1651;1651;1651;1651;2620;4330;1226;4588;3336;3044;3979.39;5402;2956;1827;3970;3186;2110
-73;'268;Georgia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4035;1710;595;0;0;888;1230;1174;1174;0;0;0;0;0;932;0;0;0;0;31;0;0;0;330;0;200;0;0;116;0;0;0
-73;'268;Georgia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;81;63;0;0;82;63;214;214;0;0;0;0;0;90;0;0;0;0;3;7;0;0;6;0;15.88;0;0;22;0;0;0
-73;'268;Georgia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70800;75800;84200;53800;62000;72600;87600;142600;83562;73133;73133;73133;73133;73133;27399;47408;29551;51686;64174;83119;70587;77589;55978;45000;45000;22000
-73;'268;Georgia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;0;2054;0;0;0;0;0;0;0;0;80;608;608;608;608;0;0;1000;40;0;0;162;436;14567;11073;10483;10370;441
-73;'268;Georgia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;143;0;143;143;143;143;143;143;143;12;58;58;58;58;0;10;134;58;0;0;15.19;5;2060;1265;1391;1376;83
-73;'268;Georgia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;33;;;;44585;55198;55198;55198;55198;55198;55198;55198;55198;1742;941;941;941;941;0;0;0;0;928;17;0;5;0;0;0;0;0
-73;'268;Georgia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;7;;;;5533;7630;7630;7630;7630;7630;7630;7630;7630;167;152;152;152;152;0;8;0;0;9;12;0;1;0;0;0;1;1
-73;'268;Georgia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;185;0;0;0;0;0
-73;'268;Georgia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;246;246;246;246;246;246;246;0;0;0;0;0;0;0;0;0;3;0;0;5;0;0;0;0;0
-73;'268;Georgia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0
-73;'268;Georgia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;0;2054;0;0;0;0;0;0;0;0;80;608;608;608;608;0;0;1000;40;0;0;162;251;14567;11073;10483;10370;441
-73;'268;Georgia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;143;0;143;143;143;143;143;143;143;12;58;58;58;58;0;10;134;58;0;0;15.19;5;2060;1265;1391;1376;83
-73;'268;Georgia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;33;;;;44585;54952;54952;54952;54952;54952;54952;54952;54952;1742;941;941;941;941;0;0;0;0;925;17;0;0;0;0;0;0;0
-73;'268;Georgia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;7;;;;5533;7590;7590;7590;7590;7590;7590;7590;7590;167;152;152;152;152;0;8;0;0;9;12;0;0;0;0;0;1;1
-73;'268;Georgia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40200;43100;47800;30600;35200;41200;49800;81000;168164;105006;105006;105006;105006;105006;96407;131248;94810;116422;147574;161371;168758;178320;191179;191000;191000;147000
-73;'268;Georgia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;5200;5700;3700;4200;4900;6000;9700;84602;31873;31873;31873;31873;31873;69008;83840;65259;64736;83400;78252;98171;100731;135201;146000;146000;125000
-73;'268;Georgia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35400;37900;42100;26900;31000;36300;43800;71300;83562;73133;73133;73133;73133;73133;27399;47408;29551;51686;64174;83119;70587;77589;55978;45000;45000;22000
-73;'268;Georgia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40200;43100;47800;30600;35200;41200;49800;81000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;5200;5700;3700;4200;4900;6000;9700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35400;37900;42100;26900;31000;36300;43800;71300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;5;4;4;4;4;158;0;100;400;168;274;173;207;64;53;135;678;1639
-73;'268;Georgia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;7;6;6;6;6;110;96;160;131;173;155;158.96;260;99;60;209;705;1254
-73;'268;Georgia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;71;0;100;400;144;275;101;193;145;0;35;406;245
-73;'268;Georgia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;25;0;16;18;26;75;43.41;91;75;0;25;328;445
-73;'268;Georgia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169900;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800
-73;'268;Georgia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;66;66;66;10;403;403;403;403;226;732;4133;300;1070;1733;2649;2284;3874;160;157;170;1404
-73;'268;Georgia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;45;86;86;86;86;144;254;240;242;189;324;103.48;383;450;307;392;315;525
-73;'268;Georgia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;205;0;0;72;392;350;0;62;0;18;283;90
-73;'268;Georgia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;16;0;0;4;32;19.5;0;15;2;35;28;57
-73;'268;Georgia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;56;56;56;5;383;383;383;383;226;230;4133;300;271;443;3;337;268;160;150;159;452
-73;'268;Georgia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;27;57;57;57;57;144;145;240;242;164;208;1.48;320;365;307;364;298;486
-73;'268;Georgia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;163;0;0;0;17;0;0;16;0;3;1;12
-73;'268;Georgia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8;0;0;0;7;0;0;15;2;34;12;52
-73;'268;Georgia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169900;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800;120800
-73;'268;Georgia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;5;20;20;20;20;0;502;0;0;799;1290;2646;1947;3606;0;7;11;952
-73;'268;Georgia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;18;29;29;29;29;0;109;0;0;25;116;102;63;85;0;28;17;39
-73;'268;Georgia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;;;;;;;;;;;;;0;0;0;0;0;0;42;0;0;72;375;350;0;46;0;15;282;78
-73;'268;Georgia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;;;;;;;;;;;0;0;0;0;0;0;8;0;0;4;25;19.5;0;0;0;1;16;5
-73;'268;Georgia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-73;'268;Georgia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1404;800;807;558;887;2;5;5;944;769;2221;8539
-73;'268;Georgia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;143;149;34;123;7.59;17;19;140;83;419;1620
-73;'268;Georgia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;0;48;290;0;0;0;0;49;818;679
-73;'268;Georgia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;0;4;35;0;0;0;0;1;64;151
-73;'268;Georgia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;7;25;27;2;5;5;135;26;570;891
-73;'268;Georgia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;9;7;7.59;17;19;79;48;171;209
-73;'268;Georgia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;0;0;0;0;0;0;237
-73;'268;Georgia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10;0;0;0;0;0;0;82
-73;'268;Georgia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1397;800;800;533;860;0;0;0;809;743;1651;7648
-73;'268;Georgia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;142;148;25;116;0;0;0;61;35;248;1411
-73;'268;Georgia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;0;48;250;0;0;0;0;49;818;442
-73;'268;Georgia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;0;4;25;0;0;0;0;1;64;69
-73;'268;Georgia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;34300;42800;43500;80900;71100;69400;221900;100000;70000;70000;70000;70000;70000;78000;56000;56100;76100;97000;81000;105630;58000;62000;57700;72700;46700
-73;'268;Georgia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;159;195;263;204;568;2962;2960;800;300;600;300;900;200;1213;2118;2118;2118;2118;5006;20000;6000;15000;10923;61473;51088;77593;63742;30928;8836;20613;53078
-73;'268;Georgia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;73;37;118;82;80;36;275;45;61;61;23;170;77;323;635;635;635;635;1304;4939;1853;3277;2359;7856;6937.65;14819;9302;5563;2856;6136;11368
-73;'268;Georgia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;50;2059;2287;6276;37700;35500;65000;146500;169000;195900;74300;51286;51286;51286;51286;28102;25000;43500;43000;33401;50276;68530;54851;60727;1599;33089;33322;36347
-73;'268;Georgia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;10;242;366;963;3318;3041;5005;9587;11090;13855;16407;20708;20708;20708;20708;8947;9502;11705;11331;10937;13637;18907.77;17852;18868;10037;14160;14689;12866
-73;'268;Georgia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;4300;4400;5900;7100;6900;6900;55000;30000;30000;30000;30000;30000;19500;24000;23100;26635;41000;26109;34050;14000;17020;15840;19957;12822
-73;'268;Georgia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;53;193;142;200;564;2958;2958;800;300;600;300;900;200;1200;2009;2009;2009;2009;4536;19000;4700;12000;7097;44611;20897;56022;40656;27767;6765;19279;50816
-73;'268;Georgia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;36;26;82;80;36;274;45;61;61;23;170;77;313;566;566;566;566;1089;4477;1239;2391;1258;5089;2480.8;7656;4905;3864;1469;4697;10171
-73;'268;Georgia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2009;2237;3242;800;300;600;300;900;200;41600;24063;24063;24063;24063;4214;6000;10300;8000;5387;1771;824;162;588;1599;7882;12918;4669
-73;'268;Georgia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;356;356;45;61;61;23;170;77;5191;6069;6069;6069;6069;921;1608;2395;1662;997;222;109.81;103;68;119;1748;3317;1409
-73;'268;Georgia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;30900;38500;39100;75000;64000;62500;215000;45000;40000;40000;40000;40000;40000;58500;32000;33000;49465;56000;54891;71580;44000;44980;41860;52743;33878
-73;'268;Georgia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;2;121;4;4;4;2;0;0;0;0;0;0;13;109;109;109;109;470;1000;1300;3000;3826;16862;30191;21571;23086;3161;2071;1334;2262
-73;'268;Georgia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;1;92;0;0;0;1;0;0;0;0;0;0;10;69;69;69;69;215;462;614;886;1101;2767;4456.85;7163;4397;1699;1387;1439;1197
-73;'268;Georgia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;50;50;50;3034;36900;35200;64400;146200;168100;195700;32700;27223;27223;27223;27223;23888;19000;33200;35000;28014;48505;67706;54689;60139;0;25207;20404;31678
-73;'268;Georgia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;10;10;10;607;3273;2980;4944;9564;10920;13778;11216;14639;14639;14639;14639;8026;7894;9310;9669;9940;13415;18797.96;17749;18800;9918;12412;11372;11457
-73;'268;Georgia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-73;'268;Georgia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;22;0;0;0;0;0;0;0;0;0;0;66;216;216;216;216;58;80;190;243;64;100;86;108;67;786;96;411;22430
-73;'268;Georgia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;0;0;5;0;0;0;0;0;0;0;87;164;164;164;164;258;370;218;290;256;267;423.41;289;264;398;258;1069;6854
-73;'268;Georgia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;791;441;441;441;441;441;441;441;441;2684;2854;2854;2854;2854;0;24;0;0;0;0;0;679;91;337;225;990;306
-73;'268;Georgia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;173;0;181;181;181;181;181;181;181;541;681;681;681;681;0;32;0;0;0;0;0;95;130;484;322;252;94
-73;'268;Georgia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;1000;17900;9900;9900;9900;9900;9900;9900;9900;9900;9900;9900
-73;'268;Georgia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;190;190;159;375;4394;5060;5070;5070;5070;5070;5070;5070;5070;65339;91462;91462;91462;91462;156551;211000;198100;247000;208307;228113;334316;302052;333231;238623;217855;227560;304427
-73;'268;Georgia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;46;52;22;157;1469;289;603;603;603;603;603;603;603;15937;29963;29963;29963;29963;50970;59024;64332;70517;56746;57971;72978.67;84558;81651;57274;81733;108217;97216
-73;'268;Georgia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;110;60;0;0;0;0;0;0;0;0;0;0;0;2808;279;279;279;279;31468;41000;32303;26236;17749;18551;36601;26261;29262;20631;28839;20755;36781
-73;'268;Georgia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;12;0;0;0;12;0;0;0;0;0;0;0;517;103;103;103;103;9996;13038;10267;7841;4718;4147;7579.67;6954;7531;5504;10404;11043;21392
-73;'268;Georgia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;130;22;69;657;1082;1082;1082;1082;1082;1082;1082;1082;5592;8629;8629;8629;8629;11749;13000;15700;25000;27652;31430;69044;60341;49507;42814;37320;47462;53131
-73;'268;Georgia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;38;5;29;376;38;352;352;352;352;352;352;352;2944;4776;4776;4776;4776;6505;5667;7155;11352;11138;10919;13864.96;19129;17051;12710;18654;28443;21980
-73;'268;Georgia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;60;0;0;0;0;0;0;0;0;0;0;0;958;129;129;129;129;5;0;43;258;202;8;4;45;217;825;1281;1020;17928
-73;'268;Georgia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;0;0;0;12;0;0;0;0;0;0;0;218;65;65;65;65;4;0;31;109;13;3;9.07;40;145;633;1267;1692;13974
-73;'268;Georgia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;1000;17900;9900;9900;9900;9900;9900;9900;9900;9900;9900;9900
-73;'268;Georgia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;300;3240;3000;3000;3000;3000;3000;3000;3000;3000;33343;49120;49120;49120;49120;93548;115440;114000;128400;90337;138682;143820;162851;162851;151370;162653;157970;157317
-73;'268;Georgia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;127;909;14;14;14;14;14;14;14;14;7632;14568;14568;14568;14568;22534;26744;26366;26982;18064;22324;27573.41;30049;31466;26258;39061;46121;44419
-73;'268;Georgia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1762;139;139;139;139;24721;30320;25400;22000;14814;14158;30141;23270;23535;19180;27442;19412;16704
-73;'268;Georgia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;29;29;29;29;8021;10231;7848;6458;3952;3370;7199.21;5904;5779;4365;8451;7958;6498
-73;'268;Georgia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7931;2949;2949;2949;2949;750;4560;1300;1600;2440;3905;4008;6672;6672;21377;5487;8866;16963
-73;'268;Georgia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1349;722;722;722;722;294;1286;338;517;654;893;1018.97;1734;1753;1928;2097;2628;3718
-73;'268;Georgia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2680;0;0;0;0;0;0;0;48;0;49;49
-73;'268;Georgia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;733;0;0;0;0;0;0;0;19;0;19;19
-73;'268;Georgia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;;6;6;497;978;988;988;988;988;988;988;988;18473;30764;30764;30764;30764;50504;78000;67100;92000;87878;54096;117444;72188;114201;23062;12395;13262;77016
-73;'268;Georgia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;;1;1;184;237;237;237;237;237;237;237;237;4012;9897;9897;9897;9897;21637;25327;30473;31666;26890;23835;30521.32;33646;31381;16378;21921;31025;27099
-73;'268;Georgia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;;;;;;;;;;;;;88;11;11;11;11;6742;8000;6860;3978;2733;4385;6456;2946;5510;578;116;274;2100
-73;'268;Georgia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;36;9;9;9;9;1971;2074;2388;1274;753;774;371.38;1010;1607;487;686;1374;901
-73;'268;Georgia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;328;328;328;328;328;328;328;328;3628;5676;5676;5676;5676;4858;7000;9000;9000;8009;6596;8730;10139;10026;10157;3402;4893;19663
-73;'268;Georgia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;153;153;153;153;153;153;153;153;1760;3656;3656;3656;3656;3145;4503;4933;4972;4810;4013;6315.24;6918;7311;6671;10725;16478;12291
-73;'268;Georgia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;0;0;0;823;1000;900;637;595;0;0;0;438;416;41;207;369
-73;'268;Georgia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;0;0;0;512;419;316;352;177;0;0;0;414;301;164;648;204
-73;'268;Georgia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;94;104;104;104;104;104;104;104;1407;5613;5613;5613;5613;31806;53000;42000;73000;73925;41600;106009;58582;99691;8139;1049;1299;48298
-73;'268;Georgia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;61;61;61;61;61;61;61;61;524;2718;2718;2718;2718;15922;18123;22831;24846;20858;18600;23648.85;25881;23211;8098;8029;11147;10878
-73;'268;Georgia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;8;8;1214;1000;900;341;990;797;6456;2946;5072;155;69;53;1335
-73;'268;Georgia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;609;656;458;92;243;289;371.38;1010;1193;156;444;447;339
-73;'268;Georgia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;8;556;556;556;556;556;556;556;556;13438;19475;19475;19475;19475;13840;18000;16100;10000;5944;5900;2705;3467;4484;4766;7944;7070;9055
-73;'268;Georgia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;23;23;23;23;23;23;23;23;1728;3523;3523;3523;3523;2570;2701;2709;1848;1222;1222;557.23;847;859;1609;3167;3400;3930
-73;'268;Georgia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;4705;6000;5060;3000;1148;3588;0;0;0;7;6;14;396
-73;'268;Georgia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;5;850;999;1614;830;333;485;0;0;0;30;78;279;358
-73;'268;Georgia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-73;'268;Georgia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;8238;9954;9954;9954;9954;9954;9954;9950;9950;9950;9950;11000;11000;11000;11000;11000;11000;11000
-73;'268;Georgia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;286;141;155;156;179;155;213;166;183;5;25;25;25;25;1393;1900;895;2090;1490;474;340;223;150;80;278;401;59
-73;'268;Georgia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;62;69;69;70;77;73;72;70;87;18;49;49;49;49;508;575;743;770;535;101;142.85;174;123;75;104;195;106
-73;'268;Georgia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;476;1261;1261;335;297;496;520;297;297;0;9;9;9;9;2057;4660;4000;3000;4201;6751;10822;13084;10539;8952;12187;15401;18105
-73;'268;Georgia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;44;260;260;168;164;173;251;164;164;0;1;1;1;1;409;666;498;375;407;893;1600;1853;1370;802;2188;2792;2286
-73;'268;Georgia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;139;153;153;153;153;153;153;153;5;25;25;25;25;151;0;95;90;37;62;65;93;95;48;59;88;59
-73;'268;Georgia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;69;69;69;69;69;69;69;69;18;49;49;49;49;193;41;125;90;83;101;109.2;158;116;68;76;139;106
-73;'268;Georgia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297;297;297;297;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;18;18
-73;'268;Georgia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;164;164;164;164;164;164;164;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;7;7
-73;'268;Georgia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;181;195;195;195;195;195;195;195;103;78;78;78;78;146;0;37;74;22;41;45;43;60;43;60;93;23
-73;'268;Georgia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;100;100;100;100;100;100;100;100;94;94;94;94;94;177;27;27;58;50;50;61.66;64;73;63;81;160;62
-73;'268;Georgia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297;297;297;297;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;18
-73;'268;Georgia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;164;164;164;164;164;164;164;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;7
-73;'268;Georgia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-73;'268;Georgia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;11;0;0;23;11
-73;'268;Georgia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39.69;32;15;3;0;14;15
-73;'268;Georgia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;18;18
-73;'268;Georgia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;7
-73;'268;Georgia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;84;84;84;0;0;0;0;0;8;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;29;0;0;0;0;0;21;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;55;69;69;69;69;69;69;69;5;25;25;25;25;137;0;37;64;20;41;15;14;47;41;57;65;9
-73;'268;Georgia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;40;40;40;40;40;40;40;40;18;49;49;49;49;147;26;27;46;42;50;21.98;22;50;50;67;121;31
-73;'268;Georgia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297;297;297;297;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;164;164;164;164;164;164;164;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;-51
-73;'268;Georgia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;-93
-73;'268;Georgia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;55;69;69;69;69;69;69;69;0;16;16;16;16;12;0;17;40;15;34;9;7;42;33;49;51;51
-73;'268;Georgia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;40;40;40;40;40;40;40;40;0;17;17;17;17;14;26;12;27;29;27;10.95;8;39;30;46;93;93
-73;'268;Georgia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;297;297;297;297;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;164;164;164;164;164;164;164;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-73;'268;Georgia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;5;8;8;14;9
-73;'268;Georgia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11.03;14;11;20;21;28;31
-73;'268;Georgia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-73;'268;Georgia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-73;'268;Georgia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;9;9;9;9;125;0;20;24;5;7;;;;;;;
-73;'268;Georgia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;32;32;32;32;133;0;15;19;13;23;;;;;;;
-73;'268;Georgia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-73;'268;Georgia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;42;42;42;42;42;42;42;42;98;53;53;53;53;0;0;0;10;2;0;0;3;2;2;3;5;3
-73;'268;Georgia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;31;31;31;31;31;31;31;31;76;45;45;45;45;0;1;0;12;8;0;0;10;8;10;14;25;16
-73;'268;Georgia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;0;58;26;17;21;20;53;37;7;2;0;39
-73;'268;Georgia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;15;98;44;41;51;47.53;104;51;15;9;4;60
-73;'268;Georgia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0
-73;'268;Georgia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0
-73;'268;Georgia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;15;0;120;2;0;1;0;0;0;56;0;0;5
-73;'268;Georgia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;24;0;58;1;0;3;0;0;0;33;0;0;16
-73;'268;Georgia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;8238;9954;9954;9954;9954;9954;9954;9950;9950;9950;9950;11000;11000;11000;11000;11000;11000;11000
-73;'268;Georgia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;174;2;2;3;26;2;60;13;30;0;0;0;0;0;1242;1900;800;2000;1453;412;275;130;55;32;219;313;0
-73;'268;Georgia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;16;0;0;1;8;4;3;1;18;0;0;0;0;0;315;534;618;680;452;0;33.65;16;7;7;28;56;0
-73;'268;Georgia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;476;964;964;38;0;199;223;0;0;0;9;9;9;9;2057;4660;4000;3000;4201;6751;10822;13084;10532;8952;12187;15383;18087
-73;'268;Georgia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;44;96;96;4;0;9;87;0;0;0;1;1;1;1;409;666;498;375;407;893;1600;1853;1361;802;2188;2785;2279
-73;'268;Georgia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1373;1659;1659;1659;1659;1659;1659;12190;13822;14355;16261;21836;23668;34493;37180;47000;54400;49542
-73;'268;Georgia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;61;187;70;55;3734;6299;6299;6299;6299;6299;6299;6299;6299;25287;27785;27785;27785;27785;32257;17025;37625;40029;47568;42960;43664;49588;50277;47964;63848;85351;59326
-73;'268;Georgia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;45;131;47;30;2730;2203;2203;2203;2203;2203;2203;2203;2203;21805;27973;27973;27973;27973;38677;19597;40253;42300;59653;35692;40543.45;49238;51982;42943;56976;77950;69040
-73;'268;Georgia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;27;;0;0;91;294;294;294;294;294;294;294;294;45;1;1;1;1;698;141;1408;2336;1164;460;799;1204;3546;1470;3116;3767;1920
-73;'268;Georgia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;;0;0;103;345;345;345;345;345;345;345;345;26;3;3;3;3;806;149;1090;1259;1582;368;419.57;878;4466;3965;7224;9526;8170
-73;'268;Georgia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;105;15;0;2860;4259;4259;4259;4259;4259;4259;4259;4259;13141;15249;15249;15249;15249;17387;4500;18400;17192;29907;16681;18276;20956;16342;15598;14465;21977;18307
-73;'268;Georgia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;72;17;0;2061;886;886;886;886;886;886;886;886;12230;15053;15053;15053;15053;18548;3435;18579;17357;42826;13969;15326.08;18799;14945;12633;12313;19206;20259
-73;'268;Georgia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;;;;30;116;116;116;116;116;116;116;116;0;1;1;1;1;173;11;379;207;528;55;42;363;491;542;601;432;746
-73;'268;Georgia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;;;;25;135;135;135;135;135;135;135;135;0;3;3;3;3;219;23;426;210;1215;68;44.71;399;514;514;577;715;1097
-73;'268;Georgia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;1786;1786;1786;1786;1786;1786;1786;1786;4260;4260;4260;4260;4260;3130;4000;2700;2000;1787;1784;1231;1297;1232;1117;977;992;1097
-73;'268;Georgia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;814;814;814;814;814;814;814;814;2807;2927;2927;2927;2927;2301;2867;2023;1560;1041;1035;716.17;830;709;525;544;749;628
-73;'268;Georgia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;26;0;0;2;0;0;0;2;0;0
-73;'268;Georgia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;20;0;0;1.31;0;0;0;6;2;0
-73;'268;Georgia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;105;15;0;1488;2473;2473;2473;2473;2473;2473;2473;2473;8881;10989;10989;10989;10989;14257;500;15700;15192;28120;14897;17045;19659;15110;14481;13488;20985;17210
-73;'268;Georgia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;72;17;0;1293;72;72;72;72;72;72;72;72;9423;12126;12126;12126;12126;16247;568;16556;15797;41785;12934;14609.91;17969;14236;12108;11769;18457;19631
-73;'268;Georgia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;30;116;116;116;116;116;116;116;116;0;1;1;1;1;173;11;355;181;528;55;40;363;491;542;599;432;746
-73;'268;Georgia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;25;135;135;135;135;135;135;135;135;0;3;3;3;3;219;23;408;190;1215;68;43.39;399;514;514;571;713;1097
-73;'268;Georgia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;200;200;200;200;483;300;300;500;394;507;585;2934;869;734;678;1327;1365
-73;'268;Georgia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;207;207;207;207;485;272;353;596;341;465;496.69;2317;778;594;545;1256;1490
-73;'268;Georgia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;10;2;0;44;2;0;30;17;41;33;8
-73;'268;Georgia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;11;2;0;52;1.94;0;52;19;38;38;37
-73;'268;Georgia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473;2473;2473;2473;2473;2473;2473;2473;6200;7047;7047;7047;7047;9810;0;10600;11000;10530;10645;12042;10936;10975;11207;9623;15440;12753
-73;'268;Georgia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;5771;7288;7288;7288;7288;11009;29;11016;11541;10041;9345;10363.62;10491;10535;9301;8348;13395;14744
-73;'268;Georgia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;116;116;116;0;0;0;0;0;118;0;300;132;37;6;36;302;352;494;356;276;622
-73;'268;Georgia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;135;135;135;135;135;135;135;0;0;0;0;0;147;0;348;138;45;10;37.81;337;357;447;325;396;659
-73;'268;Georgia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2512;3742;3742;3742;3742;3964;200;4800;3692;17196;3745;4418;5789;3266;2540;3187;4218;3092
-73;'268;Georgia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3344;4631;4631;4631;4631;4753;267;5187;3660;31403;3124;3749.6;5161;2923;2213;2876;3806;3397
-73;'268;Georgia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;55;10;45;47;491;5;2;61;109;31;202;123;116
-73;'268;Georgia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;72;20;49;50;1170;6;3.64;62;105;48;208;279;401
-73;'268;Georgia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1373;1659;1659;1659;1659;1659;1659;12190;13822;14355;16261;21836;23668;34493;37180;47000;54400;49542
-73;'268;Georgia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;60;82;55;55;874;2040;2040;2040;2040;2040;2040;2040;2040;12146;12536;12536;12536;12536;14870;12525;19225;22837;17661;26279;25388;28632;33935;32366;49383;63374;41019
-73;'268;Georgia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;44;59;30;30;669;1317;1317;1317;1317;1317;1317;1317;1317;9575;12920;12920;12920;12920;20129;16162;21674;24943;16827;21723;25217.37;30439;37037;30310;44663;58744;48781
-73;'268;Georgia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;;0;0;61;178;178;178;178;178;178;178;178;45;0;0;0;0;525;130;1029;2129;636;405;757;841;3055;928;2515;3335;1174
-73;'268;Georgia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;;0;0;78;210;210;210;210;210;210;210;210;26;0;0;0;0;587;126;664;1049;367;300;374.87;479;3952;3451;6647;8811;7073
-73;'268;Georgia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;6000;7400;9400;11000;11700;10060;14200;15000;16100;16800;16800
-73;'268;Georgia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5119;5269;5269;5269;5269;2794;3000;3300;4000;2597;3681;4601;5445;5979;5699;6934;11494;8978
-73;'268;Georgia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3315;4010;4010;4010;4010;3716;3196;4543;5034;3486;4369;5353.73;6897;7235;6158;7990;13244;12620
-73;'268;Georgia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;225;0;5;13;12;1;10;13;1;1;25;54;114
-73;'268;Georgia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;404;16;7;15;15;2;10.52;18;1;2;25;86;148
-73;'268;Georgia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1373;1659;1659;1659;1659;1659;1659;6190;6422;4955;5261;10136;13608;20293;22180;30900;37600;32742
-73;'268;Georgia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5866;5514;5514;5514;5514;11522;9000;15425;18079;14747;22091;20272;22507;26669;25683;41383;50834;31206
-73;'268;Georgia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3793;4754;4754;4754;4754;13901;10729;15007;18083;12251;16084;17693.55;19661;21593;18372;28793;37837;30439
-73;'268;Georgia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;0;0;0;0;300;130;1024;2104;621;337;724;804;2918;779;2265;3022;715
-73;'268;Georgia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;183;110;653;1005;332;156;337.99;411;2230;1470;3136;3809;1916
-73;'268;Georgia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2558;1345;1345;1345;1345;3334;3000;6100;6000;5161;10617;7380;9345;11759;12882;23742;25993;14043
-73;'268;Georgia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;789;789;789;789;2185;4407;3566;3169;2331;4505;3385.86;5117;5698;5360;9879;10816;7502
-73;'268;Georgia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;244;100;800;2000;400;154;498;539;2692;330;1595;2294;300
-73;'268;Georgia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;140;83;421;896;186;61;223.02;256;1278;173;835;1202;198
-73;'268;Georgia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1219;2565;2565;2565;2565;5668;4000;7100;6000;6865;7824;9408;8972;10892;9380;13410;18416;10737
-73;'268;Georgia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232;2647;2647;2647;2647;8674;3701;8880;8846;6992;8073;10924.43;10719;12311;10300;14726;20222;15581
-73;'268;Georgia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;45;0;24;9;15;2;0;27;91;117;207;321;199
-73;'268;Georgia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;36;0;32;14;14;2;0.03;29;853;1044;1849;2179;1495
-73;'268;Georgia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1932;1573;1573;1573;1573;2501;2000;2200;6000;2536;3183;2905;3388;3023;2471;3338;5830;5793
-73;'268;Georgia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;1283;1283;1283;1283;3012;2606;2544;6014;2805;3278;3063.19;3361;3017;2274;3577;6246;6930
-73;'268;Georgia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;0;0;0;0;1;0;100;95;158;36;12;22;54;330;451;407;192
-73;'268;Georgia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;1;0;136;95;108;26;18.51;20;58;251;440;428;209
-73;'268;Georgia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1373;1659;1659;1659;1659;1659;1659;6190;6422;4955;5261;10136;13608;20293;22180;30900;37600;32742
-73;'268;Georgia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;31;31;31;31;19;0;25;79;185;467;579;802;995;950;893;595;633
-73;'268;Georgia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;35;35;35;35;30;15;17;54;123;228;320.07;464;567;438;611;553;426
-73;'268;Georgia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;30;100;0;48;145;214;216;81;2;12;0;24
-73;'268;Georgia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;27;64;0;24;67;96.43;106;41;2;12;0;14
-73;'268;Georgia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-73;'268;Georgia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2040;2040;2040;2040;2040;2040;2040;2040;1161;1753;1753;1753;1753;554;525;500;758;317;507;515;680;1287;984;1066;1046;835
-73;'268;Georgia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1317;1317;1317;1317;1317;1317;1317;1317;2467;4156;4156;4156;4156;2512;2237;2124;1826;1090;1270;2170.08;3881;8209;5780;7880;7663;5722
-73;'268;Georgia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;178;178;178;178;178;178;178;6;0;0;0;0;0;0;0;12;3;67;23;24;136;148;225;259;345
-73;'268;Georgia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;210;210;210;210;210;210;210;5;0;0;0;0;0;0;4;29;20;142;26.36;50;1721;1979;3486;4916;5009
-73;'268;Georgia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73606.1;80274;88705;69639;76492;107973;126010
-73;'268;Georgia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177.16;1338;1411;16997;16397;8207;8964
-73;'268;Georgia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3879.9;4276;5204;4406;5497;6724;8284
-73;'268;Georgia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141.43;45;0;9;136;84;33
-73;'268;Georgia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2769.75;3663;4286;3677;4918;5778;7777
-73;'268;Georgia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;0;16
-73;'268;Georgia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110.15;613;918;729;579;946;507
-73;'268;Georgia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141.43;45;0;9;106;84;17
-73;'268;Georgia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1895.58;3022;2823;3218;2303;3879;3417
-73;'268;Georgia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44.19;36;173;171;666;297;216
-73;'268;Georgia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1439.2;1276;3258;2388;2278;3422;2584
-73;'268;Georgia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.28;26;12;18;9;103;149
-73;'268;Georgia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12539.3;15628;17360;16534;15790;26886;32446
-73;'268;Georgia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592.86;274;400;514;778;1783;3302
-73;'268;Georgia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-73;'268;Georgia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51354.81;54791;59249;39852;48303;63275;74232
-73;'268;Georgia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1311.48;896;773;1070;2150;4766;4737
-73;'268;Georgia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;0;0;664;298;549;1694
-73;'268;Georgia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;6;0;0;48
-73;'268;Georgia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2370.32;1281;811;2577;2023;3238;3353
-73;'268;Georgia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78.92;61;53;15209;12658;1174;479
-73;'268;Georgia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63590.18;70439;75058;63501;73949;103069;110229
-73;'268;Georgia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2754.12;2781;10562;9578;14909;22414;29598
-73;'268;Georgia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119.48;88;65;115;230;311;228
-73;'268;Georgia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.14;1;0;1;11;32;44
-73;'268;Georgia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5098.44;6184;7248;5552;7397;11801;10621
-73;'268;Georgia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20.14;29;61;43;65;449;228
-73;'268;Georgia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16383.96;18193;19605;17371;16767;27494;35629
-73;'268;Georgia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2087.65;2167;2154;1447;591;1145;1855
-73;'268;Georgia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17139.47;17799;19813;16031;21151;25856;26360
-73;'268;Georgia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341.44;215;7735;7821;13853;19969;26264
-73;'268;Georgia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24848.83;28175;28327;24432;28404;37607;37391
-73;'268;Georgia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304.76;369;612;266;389;819;1207
-79;'276;Germany;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31689940.27;34487394;31998125;30814299;37230768;39086609;33068176
-79;'276;Germany;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36455424.67;39811769;37809707;36485899;44041413;46124335;41512310
-79;'276;Germany;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;661715;700937;733495;820690;924637;898869;785636;1075114;1337283;1536336;1617187;1855892;2608343;3156025;3071873;4054068;4394803;4584156;5842354;6887866;5869481;5304148;5369268;5655433;5509443;6971722;8670650;9837314;10824257;12628540;12625738;12166340;9306108;11026177;14240484;11730817;10916458;10841800;10789620;12587267;11482347;11789149;13728846;15310212;15391912;17482090;20794745;21506134;15803191;19221557;21598451;19015044;19330210;19797550;17908888;17580991;18407486.76;20146808;17796848;16073435;19656476;21002110;17170408
-79;'276;Germany;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;117034;127099;144595;148540;154560;171984;208017;247314;281551;334076;408634;481750;859937;1336374;1007325;1488544;1541712;1609898;2029522;2394415;2264649;2318562;2254759;2580049;2803791;3711943;4588250;5514788;5891686;6410567;6628095;6621807;5786176;7049762;10637047;9669330;9828224;9912097;9982418;11617943;10100351;11428823;13503874;16088491;17898970;18210269;23805307;24274342;18549526;20674547;22799860;20316966;20545126;20715111;18907893;18986271;20287464.56;22275553;20827807;19782145;24492327;26079324;22615931
-79;'276;Germany;1861;Roundwood;5516;Production;m3;34570000;35736000;30866000;32815000;32875000;35619000;35881000;33596000;36366000;37246000;38270000;33477000;41813000;42148000;36573000;39683000;40563000;39357000;39732000;43159000;41461000;41353000;38593000;41216000;41518000;41123000;41567000;43470000;48126000;84707000;33618000;32954000;33152000;39813000;44315720;49364259;49515606;49671539;49634466;58666633;54419097;52676203;60566711;66952400;73916025;79374119;91487915;74995130;64068927;74573550;74160935;72652792;71316578;69240278;68458659;66016490;66008830;73740365;73217510;78681298;82969134;84716799;73104568
-79;'276;Germany;1861;Roundwood;5616;Import quantity;m3;5594400;5112300;5133500;5824400;5092600;4628200;3981400;4417700;5507700;5325700;4579600;4312600;4358200;3459000;3407000;3839800;3852200;3926800;3861700;3787400;3628100;3263600;3226700;3046000;3041300;2785100;2734000;2952700;2819400;2016000;1601493;1631845;1029031;1615000;1776000;1304000;1815000;2304000;2756000;3596000;3566000;2703000;2608000;2347000;3421000;4216283;5218000;6231000;4904877;8071435;7482510;6965568;9245170;9195354;9371561;9223638;9212794;9340788;7642251;6330698;6535529;5860231;4646271
-79;'276;Germany;1861;Roundwood;5622;Import value;1000 USD;155877;143472;146047;170901;168750;155632;129505;152428;175928;169972;166997;188489;277013;229083;215199;316191;322485;377775;431238;466557;331153;279411;261777;261787;241682;285589;331126;345180;318048;344585;280390;312650;205047;260872;293813;159333;238954;271815;270834;318196;288834;235472;256632;262851;320877;394811;547464;425307;384354;653773;746878;633787;819095;866673;701277;679695;682960.67;670683;510290;412159;559420;635293;519258
-79;'276;Germany;1861;Roundwood;5916;Export quantity;m3;371600;358900;421900;438000;345700;506600;1026500;1138400;874000;848900;818600;785000;2008500;4173900;4167900;3529900;2706900;1777800;1985800;2850500;2692200;2403900;2025400;3197300;4507800;3892900;3615100;4304200;4832500;4523706;8266756;5858630;4423575;4756000;5012000;3044000;4077000;4902000;4598000;5604000;4954000;4932000;4607000;5621000;6889000;7635124;7757000;7181000;4009838;3858698;3774922;3511647;3433945;3535805;3915056;4083760;4393671;5505334;9056743;13292385;12130301;10096015;8724533
-79;'276;Germany;1861;Roundwood;5922;Export value;1000 USD;8837;9568;11394;11488;10765;14574;22529;24966;22193;23701;25247;26548;87053;156627;140927;144718;127863;111429;130098;195367;157201;128785;104667;135184;188475;204279;230885;242716;263110;336288;507767;384519;263627;286131;332349;211923;254244;312532;255897;405875;344775;316568;341079;423666;507188;615347;799643;665435;380978;388372;439414;364643;366052;409142;366863;386244;428192.27;553428;778065;998950;1199205;1116824;954942
-79;'276;Germany;1862;Roundwood, coniferous;5516;Production;m3;24274000;25464000;21693000;22294000;22535000;24075000;25300000;22737000;24436000;25453000;26019000;23637000;31843000;30663000;25540000;29385000;28651000;27470000;28087000;30857000;29468000;29951000;27922000;29802000;29881000;30153000;30709000;32548000;35201000;70928000;23608000;22971000;23374000;29258000;33171330;36638919;37926807;37525964;37334147;44859535;38805322;39773984;44923584;50137135;56639251;60658438;72477133;54459082;47137985;53237410;53968078;50670313;50245509;48868731;48847014;47152940;48071242;55222134;56231015;63060145;65617685;65154202;55785839
-79;'276;Germany;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8369465;8504358;6970467;5785324;5969978;5261064;4188822
-79;'276;Germany;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589037.53;576631;431597;342953;470536;509259;413879
-79;'276;Germany;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2989762;3989361;7605581;12183433;11022212;9158630;7768128
-79;'276;Germany;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238387.24;330687;580686;856001;1041297;972998;784147
-79;'276;Germany;1863;Roundwood, non-coniferous;5516;Production;m3;10296000;10272000;9173000;10521000;10340000;11544000;10581000;10859000;11930000;11793000;12251000;9840000;9970000;11485000;11033000;10298000;11912000;11887000;11645000;12302000;11993000;11402000;10671000;11414000;11637000;10970000;10858000;10922000;12925000;13779000;10010000;9983000;9778000;10555000;11144390;12725340;11588799;12145575;12300319;13807098;15613775;12902219;15643127;16815265;17276774;18715681;19010782;20536048;16930942;21336140;20192857;21982479;21071069;20371547;19611645;18863550;17937588;18518231;16986495;15621153;17351449;19562597;17318729
-79;'276;Germany;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843329;836430;671784;545374;565551;599167;457449
-79;'276;Germany;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93923.14;94052;78693;69206;88884;126034;105379
-79;'276;Germany;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403909;1515973;1451162;1108952;1108089;937385;956405
-79;'276;Germany;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189805.03;222741;197379;142949;157908;143826;170795
-79;'276;Germany;1864;Wood fuel;5516;Production;m3;3473000;3584000;3810000;3985000;3493000;5093000;4975000;5057000;4857000;4283000;4256000;3710000;3704000;3487000;3388000;3588000;3492000;3558000;3859000;4287000;4706000;4948000;4469000;4451000;4357000;4366000;4308000;4282000;4366000;4366000;3795000;3795000;3795000;3795000;6666383;10019814;7937271;7392035;7542526;8952313;13484947;10732060;15116151;16738211;17771922;21208507;20913133;24686950;22697357;27437797;24287445;26806472;26575634;23954297;22403324;21496009;21620634;21986978;20511782;20241727;22664125;26353421;23311455
-79;'276;Germany;1864;Wood fuel;5616;Import quantity;m3;281200;328800;341500;398100;77500;85100;96600;105600;87500;106400;108400;41600;49400;47700;21200;17200;12300;16500;17500;24700;20100;19100;14200;17400;28900;25800;30900;31300;15900;18400;26400;47241;30700;40000;33000;41000;45000;49000;34000;47000;73000;80000;89000;120000;416000;547027;526000;473000;370599;415766;477922;398847;803038;778728;626784;526748;430165;430933;323881;249595;270360;283935;149539
-79;'276;Germany;1864;Wood fuel;5622;Import value;1000 USD;2642;3382;3442;4097;557;688;732;714;632;848;844;416;552;759;510;380;378;483;726;1263;850;844;569;608;962;898;1490;1529;1059;1210;2100;2770;1057;1096;1116;1594;1453;1221;847;2014;2344;3559;5219;6484;11079;19381;16425;20924;31375;33014;47618;33014;55999;54795;40340;34686;44377.32;44236;33390;30446;41225;64404;34910
-79;'276;Germany;1864;Wood fuel;5916;Export quantity;m3;39100;39500;35000;51500;14500;17800;16500;20300;19800;25200;26100;8700;8000;11300;10900;36900;43500;26500;29700;14300;7600;4000;3700;5100;6000;5400;8200;12900;2800;2500;4300;5765;14000;42000;64000;52000;31000;31000;46000;46000;48000;25000;15000;32000;70000;78516;83000;144000;153160;133073;116873;113988;117735;148935;168451;137151;134765;141653;141214;265202;204486;246758;128050
-79;'276;Germany;1864;Wood fuel;5922;Export value;1000 USD;263;335;299;470;122;158;133;125;263;376;409;99;97;182;166;744;984;585;726;441;238;144;148;198;215;279;458;928;417;356;490;385;317;557;832;806;758;736;1092;1260;1385;836;502;1319;2294;2849;4943;6942;7430;6198;7393;6102;6525;7983;7559;5552;7274.88;9816;7961;13864;14219;20345;10248
-79;'276;Germany;1627;Wood fuel, coniferous;5516;Production;m3;873000;884000;1410000;1469000;1336000;1293000;1575000;1657000;1457000;1083000;1156000;1210000;1304000;1287000;1288000;1438000;1342000;1408000;1509000;1637000;1906000;2048000;1679000;1721000;1627000;2055000;1997000;1971000;2055000;2055000;1065000;1065000;1065000;1065000;2841363;4301017;3417721;3197476;3279734;3902970;5875335;4729579;6636929;7362583;7828642;9309020;9204716;10877853;10060824;12145890;10520832;11266649;10832439;9470848;8957611;8637190;8734767;8900311;8251224;8144941;9345317;11088706;10086144
-79;'276;Germany;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121756;119198;104027;82028;94203;72879;32490
-79;'276;Germany;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12618.06;14026;11084;9926;12670;14334;6628
-79;'276;Germany;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82214;89627;99347;183433;122212;180404;84612
-79;'276;Germany;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2783.73;3542;3264;8735;7809;14176;5179
-79;'276;Germany;1628;Wood fuel, non-coniferous;5516;Production;m3;2600000;2700000;2400000;2516000;2157000;3800000;3400000;3400000;3400000;3200000;3100000;2500000;2400000;2200000;2100000;2150000;2150000;2150000;2350000;2650000;2800000;2900000;2790000;2730000;2730000;2311000;2311000;2311000;2311000;2311000;2730000;2730000;2730000;2730000;3825020;5718797;4519550;4194559;4262792;5049343;7609612;6002481;8479222;9375628;9943280;11899487;11708417;13809097;12636533;15291907;13766613;15539823;15743195;14483449;13445713;12858819;12885867;13086667;12260558;12096786;13318808;15264715;13225311
-79;'276;Germany;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308409;311735;219854;167567;176157;211056;117049
-79;'276;Germany;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31759.27;30210;22306;20520;28555;50070;28282
-79;'276;Germany;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52551;52026;41867;81769;82274;66354;43438
-79;'276;Germany;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4491.15;6274;4697;5129;6410;6169;5069
-79;'276;Germany;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;281200;328800;341500;398100;77500;85100;96600;105600;87500;106400;108400;41600;49400;47700;21200;17200;12300;16500;17500;24700;20100;19100;14200;17400;28900;25800;30900;31300;15900;18400;26400;47241;30700;40000;33000;41000;45000;49000;34000;47000;73000;80000;89000;120000;416000;547027;526000;473000;370599;415766;477922;398847;803038;778728;626784;526748;;;;;;;
-79;'276;Germany;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;2642;3382;3442;4097;557;688;732;714;632;848;844;416;552;759;510;380;378;483;726;1263;850;844;569;608;962;898;1490;1529;1059;1210;2100;2770;1057;1096;1116;1594;1453;1221;847;2014;2344;3559;5219;6484;11079;19381;16425;20924;31375;33014;47618;33014;55999;54795;40340;34686;;;;;;;
-79;'276;Germany;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;39100;39500;35000;51500;14500;17800;16500;20300;19800;25200;26100;8700;8000;11300;10900;36900;43500;26500;29700;14300;7600;4000;3700;5100;6000;5400;8200;12900;2800;2500;4300;5765;14000;42000;64000;52000;31000;31000;46000;46000;48000;25000;15000;32000;70000;78516;83000;144000;153160;133073;116873;113988;117735;148935;168451;137151;;;;;;;
-79;'276;Germany;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;263;335;299;470;122;158;133;125;263;376;409;99;97;182;166;744;984;585;726;441;238;144;148;198;215;279;458;928;417;356;490;385;317;557;832;806;758;736;1092;1260;1385;836;502;1319;2294;2849;4943;6942;7430;6198;7393;6102;6525;7983;7559;5552;;;;;;;
-79;'276;Germany;1865;Industrial roundwood;5516;Production;m3;31097000;32152000;27056000;28830000;29382000;30526000;30906000;28539000;31509000;32963000;34014000;29767000;38109000;38661000;33185000;36095000;37071000;35799000;35873000;38872000;36755000;36405000;34124000;36765000;37161000;36757000;37259000;39188000;43760000;80341000;29823000;29159000;29357000;36018000;37649337;39344445;41578335;42279504;42091940;49714320;40934150;41944143;45450560;50214189;56144103;58165612;70574782;50308180;41371570;47135753;49873490;45846320;44740944;45285981;46055335;44520481;44388196;51753387;52705728;58439571;60305009;58363378;49793113
-79;'276;Germany;1865;Industrial roundwood;5616;Import quantity;m3;5313200;4783500;4792000;5426300;5015100;4543100;3884800;4312100;5420200;5219300;4471200;4271000;4308800;3411300;3385800;3822600;3839900;3910300;3844200;3762700;3608000;3244500;3212500;3028600;3012400;2759300;2703100;2921400;2803500;1997600;1575093;1584604;998331;1575000;1743000;1263000;1770000;2255000;2722000;3549000;3493000;2623000;2519000;2227000;3005000;3669256;4692000;5758000;4534278;7655669;7004588;6566721;8442132;8416626;8744777;8696890;8782629;8909855;7318370;6081103;6265169;5576296;4496732
-79;'276;Germany;1865;Industrial roundwood;5622;Import value;1000 USD;153235;140090;142605;166804;168193;154944;128773;151714;175296;169124;166153;188073;276461;228324;214689;315811;322107;377292;430512;465294;330303;278567;261208;261179;240720;284691;329636;343651;316989;343375;278290;309880;203990;259776;292697;157739;237501;270594;269987;316182;286490;231913;251413;256367;309798;375430;531039;404383;352979;620759;699260;600773;763096;811878;660937;645009;638583.34;626447;476900;381713;518195;570889;484348
-79;'276;Germany;1865;Industrial roundwood;5916;Export quantity;m3;332500;319400;386900;386500;331200;488800;1010000;1118100;854200;823700;792500;776300;2000500;4162600;4157000;3493000;2663400;1751300;1956100;2836200;2684600;2399900;2021700;3192200;4501800;3887500;3606900;4291300;4829700;4521206;8262456;5852865;4409575;4714000;4948000;2992000;4046000;4871000;4552000;5558000;4906000;4907000;4592000;5589000;6819000;7556608;7674000;7037000;3856678;3725625;3658049;3397659;3316210;3386870;3746605;3946609;4258906;5363681;8915529;13027183;11925815;9849257;8596483
-79;'276;Germany;1865;Industrial roundwood;5922;Export value;1000 USD;8574;9233;11095;11018;10643;14416;22396;24841;21930;23325;24838;26449;86956;156445;140761;143974;126879;110844;129372;194926;156963;128641;104519;134986;188260;204000;230427;241788;262693;335932;507277;384134;263310;285574;331517;211117;253486;311796;254805;404615;343390;315732;340577;422347;504894;612498;794700;658493;373548;382174;432021;358541;359527;401159;359304;380692;420917.39;543612;770104;985086;1184986;1096479;944694
-79;'276;Germany;1866;Industrial roundwood, coniferous;5516;Production;m3;23401000;24580000;20283000;20825000;21199000;22782000;23725000;21080000;22979000;24370000;24863000;22427000;30539000;29376000;24252000;27947000;27309000;26062000;26578000;29220000;27562000;27903000;26243000;28081000;28254000;28098000;28712000;30577000;33146000;68873000;22543000;21906000;22309000;28193000;30329967;32337902;34509086;34328488;34054413;40956565;32929987;35044405;38286655;42774552;48810609;51349418;63272417;43581229;37077161;41091520;43447246;39403664;39413070;39397883;39889403;38515750;39336475;46321823;47979791;54915204;56272368;54065496;45699695
-79;'276;Germany;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992210;722785;864926;483331;1089000;1197000;1037000;1415000;1859000;2446000;2953000;3070000;2278000;2244000;1906000;2707000;3343075;4182000;5338000;4281773;7252263;6507699;6179343;7976717;7906164;8083841;8153437;8247709;8385160;6866440;5703296;5875775;5188185;4156332
-79;'276;Germany;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90251;59266;78680;33110;77150;111452;89654;109670;131534;173067;149236;152708;117729;134425;116170;169954;224529;355822;276900;278246;530150;596263;534028;692842;736025;591327;582622;576419.47;562605;420513;333027;457866;494925;407251
-79;'276;Germany;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4072119;7506291;5163865;3694575;4023000;3867000;2406000;3277000;3710000;3343000;4083000;3398000;3454000;3148000;4289000;5175000;5866837;6117000;5606000;3017261;2783124;2539046;2288704;2201226;2147703;2619238;2731045;2907548;3899734;7506234;12000000;10900000;8978226;7683516
-79;'276;Germany;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286207;446413;329878;208564;233320;257501;158408;180306;188276;154478;190238;159263;183054;199252;276665;335246;421933;581853;473999;263709;264693;272235;218587;218584;228653;217910;226085;235603.52;327145;577422;847266;1033488;958822;778968
-79;'276;Germany;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992210;722785;864926;483331;1089000;1197000;1037000;1415000;1859000;2446000;2953000;3070000;2278000;2244000;1906000;2707000;3343075;4182000;5338000;4281773;7252263;6507699;6179343;7976717;7906164;8083841;8153437;8247709;8385160;6866440;5703296;5875775;5188185;4156332
-79;'276;Germany;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90251;59266;78680;33110;77150;111452;89654;109670;131534;173067;149236;152708;117729;134425;116170;169954;224529;355822;276900;278246;530150;596263;534028;692842;736025;591327;582622;576419.47;562605;420513;333027;457866;494925;407251
-79;'276;Germany;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4072119;7506291;5163865;3694575;4023000;3867000;2406000;3277000;3710000;3343000;4083000;3398000;3454000;3148000;4289000;5175000;5866837;6117000;5606000;3017261;2783124;2539046;2288704;2201226;2147703;2619238;2731045;2907548;3899734;7506234;12000000;10900000;8978226;7683516
-79;'276;Germany;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286207;446413;329878;208564;233320;257501;158408;180306;188276;154478;190238;159263;183054;199252;276665;335246;421933;581853;473999;263709;264693;272235;218587;218584;228653;217910;226085;235603.52;327145;577422;847266;1033488;958822;778968
-79;'276;Germany;1867;Industrial roundwood, non-coniferous;5516;Production;m3;7696000;7572000;6773000;8005000;8183000;7744000;7181000;7459000;8530000;8593000;9151000;7340000;7570000;9285000;8933000;8148000;9762000;9737000;9295000;9652000;9193000;8502000;7881000;8684000;8907000;8659000;8547000;8611000;10614000;11468000;7280000;7253000;7048000;7825000;7319370;7006543;7069249;7951016;8037527;8757755;8004163;6899738;7163905;7439637;7333494;6816194;7302365;6726951;4294409;6044233;6426244;6442656;5327874;5888098;6165932;6004731;5051721;5431564;4725937;3524367;4032641;4297882;4093418
-79;'276;Germany;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005390;852308;719678;515000;486000;546000;226000;355000;396000;276000;596000;423000;345000;275000;321000;298000;326181;510000;420000;252505;403406;496889;387378;465415;510462;660936;543453;534920;524695;451930;377807;389394;388111;340400
-79;'276;Germany;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253124;219024;231200;170880;182626;181245;68085;127831;139060;96920;166946;133782;114184;116988;140197;139844;150901;175217;127483;74733;90609;102997;66745;70254;75853;69610;62387;62163.87;63842;56387;48686;60329;75964;77097
-79;'276;Germany;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449087;756165;689000;715000;691000;1081000;586000;769000;1161000;1209000;1475000;1508000;1453000;1444000;1300000;1644000;1689771;1557000;1431000;839417;942501;1119003;1108955;1114984;1239167;1127367;1215564;1351358;1463947;1409295;1027183;1025815;871031;912967
-79;'276;Germany;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49725;60864;54256;54746;52254;74016;52709;73180;123520;100327;214377;184127;132678;141325;145682;169648;190565;212847;184494;109839;117481;159786;139954;140943;172506;141394;154607;185313.87;216467;192682;137820;151498;137657;165726
-79;'276;Germany;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363182;306323;277678;183000;174000;237000;97000;122000;154000;133000;161000;141000;111000;83000;98000;97000;106892;105000;69000;36690;37803;26707;16718;13369;11292;10108;11029;11259;7847;9476;9873;11603;15807;9737
-79;'276;Germany;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100186;84753;82495;51242;59658;54145;31135;37636;46776;40397;47628;44900;38174;37022;48982;48745;57884;68147;50548;23159;22921;20489;12323;12595;9259;6079;6566;6524.29;4731;5190;5251;7316;9935;6896
-79;'276;Germany;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;29000;13000;14000;24000;20000;40000;40000;34000;18000;18000;22000;20198;26000;14000;7769;9821;5133;1682;889;1357;1176;2517;3036;4752;4362;5001;4999;4341;4882
-79;'276;Germany;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668;5871;5638;6221;6149;5124;15703;16421;10732;9371;11117;5672;10833;18211;11900;5416;5523;4222;1670;673;1172;813;1397;2646.23;2898;2923;3047;3369;2633;3676
-79;'276;Germany;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642208;545985;442000;332000;312000;309000;129000;233000;242000;143000;435000;282000;234000;192000;223000;201000;219289;405000;351000;215815;365603;470182;370660;452046;499170;650828;532424;523661;516848;442454;367934;377791;372304;330663
-79;'276;Germany;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152938;134271;148705;119638;122968;127100;36950;90195;92284;56523;119318;88882;76010;79966;91215;91099;93017;107070;76935;51574;67688;82508;54422;57659;66594;63531;55821;55639.58;59111;51197;43435;53013;66029;70201
-79;'276;Germany;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449087;756165;689000;715000;675000;1052000;573000;755000;1137000;1189000;1435000;1468000;1419000;1426000;1282000;1622000;1669573;1531000;1417000;831648;932680;1113870;1107273;1114095;1237810;1126191;1213047;1348322;1459195;1404933;1022182;1020816;866690;908085
-79;'276;Germany;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49725;60864;54256;54746;45586;68145;47071;66959;117371;95203;198674;167706;121946;131954;134565;163976;179732;194636;172594;104423;111958;155564;138284;140270;171334;140581;153210;182667.64;213569;189759;134773;148129;135024;162050
-79;'276;Germany;1868;Sawlogs and veneer logs;5516;Production;m3;19354000;20081000;16084000;18256000;18517000;19867000;19785000;16463000;19726000;20067000;19535000;17931000;25528000;22626000;17221000;21498000;21991000;21265000;20536000;21671000;20808000;18741000;18903000;20814000;20480000;20333000;20321000;21366000;23524000;57562000;17493000;16400000;17522000;22935000;29005345;31716399;32657876;32787791;32942545;38075319;31042553;30691873;32744746;37011089;40244948;42846608;52435083;36830863;29239184;34517576;36856676;32876061;33325303;34257789;35037587;33590571;34458906;41557677;41287288;47026109;47430914;45660510;38965541
-79;'276;Germany;1868;Sawlogs and veneer logs;5616;Import quantity;m3;2329300;2257200;2264200;2550500;2460900;2340900;1965100;2248300;2432800;2256200;2288100;2546000;2392900;1613400;1467500;1870000;1828500;1987900;2086000;1990700;1558400;1529600;1700600;1548700;1482500;1536300;1482700;1580500;1755000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;103791;101367;106022;125071;130677;123246;104850;126649;137383;126108;132883;163667;240725;189644;167979;271384;271033;321174;376029;401418;256915;219815;214549;217183;196263;247270;288679;297751;266940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1868;Sawlogs and veneer logs;5916;Export quantity;m3;86700;90400;132500;144200;168600;203500;500400;598200;332100;254700;289100;332800;1309900;1964100;853600;1237500;859300;610400;586700;743600;727300;700000;664800;762600;1425400;1223300;1218800;1124000;1307900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;3238;3756;5245;5703;7242;8349;12587;15046;11279;10573;11751;15013;65939;92734;45312;71270;56875;52049;58033;75825;64150;52358;51517;54230;80257;97522;114108;104600;121048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;14859000;15832000;12379000;14214000;14481000;15471000;15763000;12519000;15035000;15357000;14867000;14204000;21105000;17736000;12893000;17406000;17082000;16307000;16101000;17168000;16344000;14923000;15133000;16552000;16245000;16096000;16323000;17390000;19274000;51890000;14170000;13565000;14753000;19741000;24365843;27248971;28359837;27968933;28020306;32678941;26127569;27031973;28905126;32898328;36145949;38978686;48447000;33080215;27179495;31506808;33392847;29564392;30629513;31130953;31773383;30291942;31397982;38033618;38143808;44609792;44657920;42624755;36146873
-79;'276;Germany;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;547000;506200;450700;507900;531300;539900;340100;381600;454600;471700;476300;529900;449600;344800;293500;402300;441500;602800;743100;729600;636400;677100;730700;607300;556100;613200;650800;745000;928000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;16343;13403;10969;13095;14707;14304;8237;8892;11348;13444;14005;15994;18165;17498;13541;18396;25552;40644;55208;61680;46457;39670;40269;32320;24482;35602;44581;52951;65354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;44800;46900;73900;74200;80300;107200;378500;466100;227700;156300;168600;187700;1057700;1680000;634300;1002900;637300;409300;402200;536500;529000;533500;507100;577000;1181800;939600;963300;909000;1080600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1193;1275;1882;1867;1944;2602;7445;8614;5401;4637;5253;6221;37920;71509;30610;49052;37350;30457;32705;46373;42639;36454;34289;33475;57456;64939;80962;76600;89795;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;4495000;4249000;3705000;4042000;4036000;4396000;4022000;3944000;4691000;4710000;4668000;3727000;4423000;4890000;4328000;4092000;4909000;4958000;4435000;4503000;4464000;3818000;3770000;4262000;4235000;4237000;3998000;3976000;4250000;5672000;3323000;2835000;2769000;3194000;4639502;4467428;4298039;4818858;4922239;5396378;4914984;3659900;3839620;4112761;4098999;3867922;3988083;3750648;2059689;3010768;3463829;3311669;2695790;3126836;3264204;3298629;3060924;3524059;3143480;2416317;2772994;3035755;2818668
-79;'276;Germany;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;1782300;1751000;1813500;2042600;1929600;1801000;1625000;1866700;1978200;1784500;1811800;2016100;1943300;1268600;1174000;1467700;1387000;1385100;1342900;1261100;922000;852500;969900;941400;926400;923100;831900;835500;827000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;87448;87964;95053;111976;115970;108942;96613;117757;126035;112664;118878;147673;222560;172146;154438;252988;245481;280530;320821;339738;210458;180145;174280;184863;171781;211668;244098;244800;201586;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;41900;43500;58600;70000;88300;96300;121900;132100;104400;98400;120500;145100;252200;284100;219300;234600;222000;201100;184500;207100;198300;166500;157700;185600;243600;283700;255500;215000;227300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2045;2481;3363;3836;5298;5747;5142;6432;5878;5936;6498;8792;28019;21225;14702;22218;19525;21592;25328;29452;21511;15904;17228;20755;22801;32583;33146;28000;31253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9416932;9069048;11561578;9823635;11168829;12629079;13135251;15832851;15246680;18068073;13410203;12073924;12558472;12945703;12902890;11347949;10952119;10929024;10853096;9856498;10121669;11346644;11339500;12713219;12568361;10700418
-79;'276;Germany;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6285671;5954699;8201082;6735209;7929890;9305597;9809064;12599009;12299098;14756221;10436416;9840545;9527456;9984410;9772286;8716005;8191044;8027602;8147353;7866150;8214606;9764640;10233724;11461216;11317848;9443828
-79;'276;Germany;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3131261;3114349;3360496;3088426;3238939;3323482;3326187;3233842;2947582;3311852;2973787;2233379;3031016;2961293;3130604;2631944;2761075;2901422;2705743;1990348;1907063;1582004;1105776;1252003;1250513;1256590
-79;'276;Germany;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1859900;1898500;1840000;2223700;2091800;1843800;1760600;1833600;2699600;2662200;1977700;1544900;1680600;1585000;1665900;1757200;1765700;1639100;1572200;1588000;1866100;1483200;1330200;1284700;1337500;1190400;1182600;1303600;871100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;29955;28446;25745;29357;28195;24378;20682;21061;32833;37504;28426;20131;29401;31842;36434;35900;39486;39536;41639;49045;60778;44678;36165;33294;34326;35701;38575;43500;37954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;6700;13500;18100;36400;68600;138200;274900;246700;275600;343700;285100;189300;410500;1784000;2561800;1796300;1362500;740900;1039700;1704600;1609400;1412300;1121600;2183100;2784400;2631600;2355700;3139400;3245000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;133;272;314;608;1137;2425;4302;3596;4490;6551;6768;4231;9971;43677;69555;50081;42670;28542;45180;87751;64039;53230;37286;65649;89916;104758;107513;129600;118698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1870;Pulpwood and particles (1961-1997);5516;Production;m3;5677000;5254000;4929000;5833000;6235000;6275000;7184000;7020000;7116000;8317000;9644000;7594000;7972000;12140000;11623000;10258000;11032000;10274000;11347000;12618000;12283000;12690000;11148000;11638000;11783000;11437000;12184000;13171000;15236000;17779000;10930000;11359000;10435000;11683000;8514257;7521988;8827322;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1859900;1898500;1840000;2223700;2091800;1843800;1760600;1833600;2699600;2662200;1977700;1544900;1680600;1585000;1665900;1757200;1765700;1639100;1572200;1588000;1866100;1483200;1330200;1284700;1337500;1190400;1182600;1303600;871100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;29955;28446;25745;29357;28195;24378;20682;21061;32833;37504;28426;20131;29401;31842;36434;35900;39486;39536;41639;49045;60778;44678;36165;33294;34326;35701;38575;43500;37954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;6700;13500;18100;36400;68600;138200;274900;246700;275600;343700;285100;189300;410500;1784000;2561800;1796300;1362500;740900;1039700;1704600;1609400;1412300;1121600;2183100;2784400;2631600;2355700;3139400;3245000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;133;272;314;608;1137;2425;4302;3596;4490;6551;6768;4231;9971;43677;69555;50081;42670;28542;45180;87751;64039;53230;37286;65649;89916;104758;107513;129600;118698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;4482000;3921000;3716000;3821000;3882000;4023000;4645000;4469000;4273000;5049000;5869000;4629000;5516000;8502000;7809000;6974000;6862000;6254000;7234000;8429000;8318000;9033000;7756000;8047000;7989000;7901000;8503000;9411000;9962000;13073000;7773000;7741000;6956000;7852000;5836064;4984210;6057257;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1195000;1333000;1213000;2012000;2353000;2252000;2539000;2551000;2843000;3268000;3775000;2965000;2456000;3638000;3814000;3284000;4170000;4020000;4113000;4189000;3965000;3657000;3392000;3591000;3794000;3536000;3681000;3760000;5274000;4706000;3157000;3618000;3479000;3831000;2678193;2537778;2770065;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1871;Other industrial roundwood;5516;Production;m3;6066000;6817000;6043000;4741000;4630000;4384000;3937000;5056000;4667000;4579000;4835000;4242000;4609000;3895000;4341000;4339000;4048000;4260000;3990000;4583000;3664000;4974000;4073000;4313000;4898000;4987000;4754000;4651000;5000000;5000000;1400000;1400000;1400000;1400000;129735;106058;93137;74781;80347;77423;67962;83441;76735;67849;66304;72324;71626;67114;58462;59705;71111;67369;67692;76073;88724;76814;72792;74041;71796;73962;160876;134507;127154
-79;'276;Germany;1871;Other industrial roundwood;5616;Import quantity;m3;1124000;627800;687800;652100;462400;358400;159100;230200;287800;300900;205400;180100;235300;212900;252400;195400;245700;283300;186000;184000;183500;231700;181700;195200;192400;32600;37800;37300;177400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1871;Other industrial roundwood;5622;Import value;1000 USD;19489;10277;10838;12376;9321;7320;3241;4004;5080;5512;4844;4275;6335;6838;10276;8527;11588;16582;12844;14831;12610;14074;10494;10702;10131;1720;2382;2400;12095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1871;Other industrial roundwood;5916;Export quantity;m3;239100;215500;236300;205900;94000;147100;234700;273200;246500;225300;218300;254200;280100;414500;741600;459200;441600;400000;329700;388000;347900;287600;235300;246500;292000;32600;32400;27900;276800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1871;Other industrial roundwood;5922;Export value;1000 USD;5203;5205;5536;4707;2264;3642;5507;6199;6161;6201;6319;7205;11046;20034;25894;22623;27334;30253;26159;31350;28774;23053;15716;15107;18087;1720;8806;7588;22947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;4060000;4827000;4188000;2790000;2836000;3288000;3317000;4092000;3671000;3964000;4127000;3594000;3918000;3138000;3550000;3567000;3365000;3501000;3243000;3623000;2900000;3947000;3354000;3482000;4020000;4101000;3886000;3776000;3910000;3910000;600000;600000;600000;600000;128060;104721;91992;73884;79408;76542;67209;82542;75932;67160;65651;71634;69196;64598;57121;57256;69989;66986;67552;75886;88418;76455;72343;73599;71343;71688;153232;122893;108994
-79;'276;Germany;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2006000;1990000;1855000;1951000;1794000;1096000;620000;964000;996000;615000;708000;648000;691000;757000;791000;772000;683000;759000;747000;960000;764000;1027000;719000;831000;878000;886000;868000;875000;1090000;1090000;800000;800000;800000;800000;1675;1337;1145;897;939;881;753;899;803;689;653;690;2430;2516;1341;2449;1122;383;140;187;306;359;449;442;453;2274;7644;11614;18160
-79;'276;Germany;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1124000;627800;687800;652100;462400;358400;159100;230200;287800;300900;205400;180100;235300;212900;252400;195400;245700;283300;186000;184000;183500;231700;181700;195200;192400;32600;37800;37300;177400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;19489;10277;10838;12376;9321;7320;3241;4004;5080;5512;4844;4275;6335;6838;10276;8527;11588;16582;12844;14831;12610;14074;10494;10702;10131;1720;2382;2400;12095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;239100;215500;236300;205900;94000;147100;234700;273200;246500;225300;218300;254200;280100;414500;741600;459200;441600;400000;329700;388000;347900;287600;235300;246500;292000;32600;32400;27900;276800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;5203;5205;5536;4707;2264;3642;5507;6199;6161;6201;6319;7205;11046;20034;25894;22623;27334;30253;26159;31350;28774;23053;15716;15107;18087;1720;8806;7588;22947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;30000;30000;30000;30000;30000;30000;30000;30000
-79;'276;Germany;1630;Wood charcoal;5610;Import quantity;t;13700;9000;11400;11700;8900;7100;9000;9100;12900;16100;17000;17700;17800;24600;30600;41000;26800;30500;26300;49200;47200;64000;49500;56800;82500;57500;49200;46700;56000;67000;59400;84356;85956;72000;83000;87000;88000;94000;112756;112100;113640;124617;113635;138267;149475;149692;165778;157507;202009;217324;224833;246994;226988;223579;230160;203076;222064;235071;214280;164937;147625;133617;118161
-79;'276;Germany;1630;Wood charcoal;5622;Import value;1000 USD;747;471;555;563;620;500;598;586;881;1287;1768;2240;2462;3828;6673;9024;6334;7905;7440;16899;14809;10605;10927;12435;11537;15607;15360;15972;17325;25257;23095;33451;32919;27353;34169;36285;34587;34175;36492;33100;32551;32527;32451;54742;58956;65235;76011;82014;104902;106527;109208;114762;118591;117219;109040;104600;116124.2;129693;116772;102115;97061;91908;92319
-79;'276;Germany;1630;Wood charcoal;5910;Export quantity;t;2800;2600;3400;3200;2700;2600;3100;2700;2600;2000;1900;2000;1900;2400;2100;3100;3600;4000;4500;3600;2900;5500;6300;6000;9400;5500;6700;4400;4200;3400;4000;7991;4870;3000;2000;2000;3000;2000;5401;2020;3390;3390;3389;2657;2569;3509;8606;10931;15132;13151;17206;22784;12880;14519;17146;17946;22058;26829;22385;32364;29970;29660;29881
-79;'276;Germany;1630;Wood charcoal;5922;Export value;1000 USD;356;376;477;445;424;468;505;485;499;564;601;779;935;1185;1160;1569;1925;2407;2998;2942;2450;2559;3341;2934;2826;3309;3918;3424;3420;3257;3036;3791;2283;3311;2619;2504;2512;2155;3599;1861;2160;2158;2153;2838;2663;3256;6275;7411;10381;8614;13007;14616;13458;14708;15622;17494;20877.94;27453;23921;33205;35942;31020;32643
-79;'276;Germany;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300000;8300000;8300000;8300000;8300000;8300000;8300000;8300000;6784000;4960993;3651465;10812928;11661653;13132629;12097628;13483222;13635850;13833717;13611731;14230425;14941336;14917715;16107594;16698058;16276648;15863608
-79;'276;Germany;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2041000;1204000;1753000;1654000;1334000;785390;1945000;1828000;2078423;4553000;3447000;3332875;3857716;3503180;2659501;3382388;3899344;4067308;1786464;2156492;2093552;1499692;1153298;1108451;1787481;1658312
-79;'276;Germany;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24159;22492;30092;28534;27682;24602;42050;47848;81124;149653;156772;146845;196596;181023;104763;136413;163203;137178;62149;79429.73;83816;55727;38195;45195;94712;93035
-79;'276;Germany;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7677000;3653000;4505000;3858000;3719000;2192000;4231000;4202000;4358108;7143000;6311000;4416131;4561385;3814537;2840220;2709628;3134238;2908924;2580435;2558372;2738645;2761950;2939613;2550630;3048410;3354592
-79;'276;Germany;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63707;53002;81831;62254;70087;52826;109775;152006;184214;329930;340852;333081;344089;225032;183094;187521;204247;161462;130102;133255.95;151718;146565;143937;148052;213541;249323
-79;'276;Germany;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3320000;3320000;3320000;3320000;3320000;3320000;3320000;3320000;1804000;2985000;2823000;8380970;8831504;10031170;9097850;10184006;10392190;10160797;10027960;10345838;10613453;11000000;11700000;11800000;11300000;10600000
-79;'276;Germany;1619;Wood chips and particles;5616;Import quantity;m3;;;;3000;3000;3000;500;300;6700;16600;14200;300;400;14000;5700;1000;8300;13500;12500;49700;37800;82200;28500;31500;75200;33800;23900;44000;78700;88300;77400;111811;160000;186000;210000;101000;196000;741000;223000;1036000;815000;566000;261390;834000;680000;447512;1719000;1404000;765848;882454;909368;859501;1069376;1231346;1490677;1217001;1353377;1307246;789724;547432;393139;639237;554775
-79;'276;Germany;1619;Wood chips and particles;5622;Import value;1000 USD;;;;40;40;42;56;40;122;258;243;81;111;408;384;238;524;1342;1026;2540;1764;2528;1168;1151;1602;2024;2365;1408;1554;2296;1982;3533;3117;3055;4578;2266;2242;3826;3661;11825;10176;9591;4735;17370;17246;12833;67666;90435;28153;36337;38063;30321;47489;58670;56869;41371;49781.36;48933;26811;17829;21398;35827;31751
-79;'276;Germany;1619;Wood chips and particles;5916;Export quantity;m3;;;;;100;1000;1000;1000;1000;3000;1000;3000;3800;16100;12700;8500;7500;12700;14000;16700;19700;21200;29500;49000;42800;50200;74800;430900;607200;691100;893300;1007747;914000;1596000;1543000;1257000;1826000;3011000;2243000;3338000;2679000;2775000;1347000;3295000;3290000;2251214;4704000;4227000;2167557;2150868;2354434;1780220;1341670;1624760;1462614;1950576;1831990;1995080;1951584;2071261;1616939;2102693;2231223
-79;'276;Germany;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;26;26;30;48;36;46;37;37;215;371;320;364;449;2078;2326;3008;3197;3292;3407;3648;3574;5799;8165;15900;18821;25195;34336;41961;25689;43105;67457;47053;49675;39262;33864;62968;43207;52165;31783;80210;117049;77153;182042;167051;86759;99947;126167;95132;81710;93243;70357;85636;87880.09;98296;93785;91867;92272;129636;145596
-79;'276;Germany;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4980000;4980000;4980000;4980000;4980000;4980000;4980000;4980000;4980000;1975993;828465;2431958;2830149;3101459;2999778;3299216;3243660;3672920;3583771;3884587;4327883;3917715;4407594;4898058;4976648;5263608
-79;'276;Germany;1620;Wood residues;5616;Import quantity;m3;;;;287400;287400;298300;297700;361600;480400;563400;480600;457100;410200;332000;275300;331000;399400;424900;415700;471400;532200;524200;562400;630400;729700;877900;1058700;976100;1192500;1104900;1018600;915211;552000;580000;579000;619000;677000;1300000;981000;717000;839000;768000;524000;1111000;1148000;1630911;2834000;2043000;2567027;2975262;2593812;1800000;2313012;2667998;2576631;569463;803115;786306;709968;605866;715312;1148244;1103537
-79;'276;Germany;1620;Wood residues;5622;Import value;1000 USD;;;;3496;3496;3525;3318;3576;4665;5785;5596;4727;3790;5150;4668;5133;6919;8860;9168;12358;11905;10714;9642;9426;9732;16912;23610;23365;23117;49321;20346;22899;12807;13713;18484;21162;21202;20333;18831;18267;18358;18091;19867;24680;30602;68291;81987;66337;118692;160259;142960;74442;88924;104533;80309;20778;29648.37;34883;28916;20366;23797;58885;61284
-79;'276;Germany;1620;Wood residues;5916;Export quantity;m3;;;;;62900;98000;93500;94200;81500;150800;168600;221300;235600;364500;590000;754900;748900;567100;570500;680300;796500;739400;839200;1035000;932200;1143500;1128000;806200;898000;1153000;1554900;1644954;1358000;1436000;784300;1730000;1696000;4666000;1410000;1167000;1179000;944000;845000;936000;912000;2106894;2439000;2084000;2248574;2410517;1460103;1060000;1367958;1509478;1446310;629859;726382;743565;810366;868352;933691;945717;1123369
-79;'276;Germany;1620;Wood residues;5922;Export value;1000 USD;;;;;601;945;865;744;759;1597;2306;2217;2879;5951;12537;14950;16102;13438;15061;21342;21922;20743;19023;20949;20735;36166;40908;34800;35229;53109;66502;84980;43771;38360;31658;55296;41290;24445;19138;18863;19047;17922;21043;29565;34957;107061;147888;173801;246322;244142;98865;87962;105811;111004;91105;44466;45375.86;53422;52780;52070;55780;83905;103727
-79;'276;Germany;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;692987;435725
-79;'276;Germany;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38850;30032
-79;'276;Germany;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684637;639571
-79;'276;Germany;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66094;69271
-79;'276;Germany;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6601000;6601000;6601000;8035000;8035000;8035000;8035000
-79;'276;Germany;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071070;997710;875813;914154;935471;569070;417384
-79;'276;Germany;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41147.3;42401;37117;44181;51399;40072;31252
-79;'276;Germany;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;692073;742189;657738;567217;684257;326346;302371
-79;'276;Germany;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48902.29;44995;43387;46520;54228;35622;34455
-79;'276;Germany;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2596079;2557518;2428030;2295575;2239857;2427867;2704927;3661508;3560724;4333229;4015060;4373191
-79;'276;Germany;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574466;818478;741383;690713;656215;742486;729275;619382;582186;761709;813664;761015
-79;'276;Germany;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104723;165517;149640;108991;100289;121862.96;138823;111407;96772;132677;224053;197396
-79;'276;Germany;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866777;741485;696975;699171;374977;524723;686150;815856;868622;915091;882391;936507
-79;'276;Germany;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200548;212676;206977;152928;96858;138383.86;191270;206310;206790;198838;292929;270803
-79;'276;Germany;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2246079;2207518;2078030;1998188;1932013;2250000;2415000;2821000;3100000;3353000;3569000;3709000
-79;'276;Germany;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347466;546623;419378;445790;443097;431585;375299;316740;301622;403576;477216;463300
-79;'276;Germany;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65410;118724;92135;76037;73751;78011.95;78252;65335;58075;77595;134819;127957
-79;'276;Germany;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848777;720204;682800;688289;365069;489876;641450;771279;810921;817257;683443;774768
-79;'276;Germany;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194359;205271;202208;149816;94127;126300.01;175703;191871;191387;176356;257593;240488
-79;'276;Germany;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350000;350000;350000;297387;307844;177867;289927;840508;460724;980229;446060;664191
-79;'276;Germany;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227000;271855;322005;244923;213118;310901;353976;302642;280564;358133;336448;297715
-79;'276;Germany;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39313;46793;57505;32954;26538;43851.01;60571;46072;38697;55082;89234;69439
-79;'276;Germany;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;21281;14175;10882;9908;34847;44700;44577;57701;97834;198948;161739
-79;'276;Germany;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189;7405;4769;3112;2731;12083.85;15567;14439;15403;22482;35336;30315
-79;'276;Germany;1872;Sawnwood;5516;Production;m3;11660700;11605800;10756300;11129100;10965700;11066600;10798900;11063600;11593400;11598500;11928700;11912700;12467000;12249000;11439000;12786000;12859000;12543000;12754000;12972000;11810000;11136000;11862000;12316000;12032000;12236000;12219000;12884000;13909000;14724000;13322000;13496000;11522000;13567000;14105000;14267000;14730000;14972000;16096000;16340000;16131000;17119441;17595908;19538000;21931000;24420000;25063000;19187000;20781166;22059099;22628100;21081299;21478169;21771800;21489849;22197245;23167680;23769456;24566369;26202347;26402884;25327536;23800380
-79;'276;Germany;1872;Sawnwood;5616;Import quantity;m3;4631100;5022300;5160700;5456000;5717400;5228800;4320300;4666600;5215300;5957700;5994200;6375900;6107100;4796900;4862000;4870900;5635500;6292200;6706000;6878800;5934000;5590300;6268600;5855900;5729600;5865800;5765700;6042800;5957200;6058800;4832900;5277000;5117000;5999000;5296000;5043000;6132000;6076000;5514000;6344000;4989000;5211000;4931000;5162000;4878000;5307006;7116000;6303000;3870369;4384498;4578387;4381019;4502718;4622389;4814227;5112717;5235816;5553892;5280868;5450948;5819319;4182693;3085670
-79;'276;Germany;1872;Sawnwood;5622;Import value;1000 USD;222282;240101;248169;269029;288124;261274;213665;234614;278511;336768;354769;407746;609044;594911;574223;985219;863092;1040118;1350205;1618419;1144559;968794;1096860;986548;891260;1094599;1316928;1395643;1423027;1756606;1461819;1772137;1249897;1560872;1543102;1319108;1481825;1292385;1330341;1272751;954460;1264871;1135719;1284449;1285976;1453472;1697750;1534214;1166490;1345896;1533680;1334181;1415271;1464296;1256671;1345747;1389862.5;1583765;1370368;1412977;2294483;1680630;1015289
-79;'276;Germany;1872;Sawnwood;5916;Export quantity;m3;200100;213800;220900;388200;375800;364700;528000;678200;511500;440800;402900;408800;742700;1208100;911200;1286300;1061300;863800;845700;878900;843400;825200;908900;1145400;1327600;1339000;1412400;1846000;1420900;1261200;1263900;1233100;1249000;1864000;1907000;1938000;2260000;2669000;2385000;3911000;4083000;4848000;4706000;6212000;7391000;7858411;9473139;12928000;6788420;7268412;7407579;6753053;6912205;7393367;6989939;7772498;8348455;9043016;9656877;10379104;11381746;11521065;10231674
-79;'276;Germany;1872;Sawnwood;5922;Export value;1000 USD;11840;12672;13333;21713;22406;22188;29111;35316;31544;30814;30693;34467;85677;148227;110616;156015;159420;166203;188502;214153;179245;162922;165090;187709;205147;282363;350277;465360;339477;387626;345018;337996;266653;420377;464848;455711;526813;548998;537492;840613;801188;984136;1101693;1511678;1823339;2090724;3036161;2738351;1731456;1924147;2112145;1808411;1970988;2159900;1747895;1885279;2159107.4;2535368;2331702;2580729;4391719;4190642;2923005
-79;'276;Germany;1632;Sawnwood, coniferous;5516;Production;m3;9388850;9300900;8614650;8831550;8612850;8627800;8444450;8872300;9171700;9139750;9295850;9311850;9792500;9603000;9085000;10253000;10187000;9835500;10118000;10368500;9496000;9024500;9816000;10134000;9892000;10031000;10083500;10725000;11738500;12383000;11599000;11866000;10358000;12365000;12925000;13123000;13682000;13807000;14537000;15020000;14889000;15979000;16525000;18449000;20803000;23242000;23922000;18093000;19656678;21161278;21632500;20076379;20428366;20756900;20433479;21109033;22050255;22609724;23300000;25200000;25300000;24300000;22900000
-79;'276;Germany;1632;Sawnwood, coniferous;5616;Import quantity;m3;4286650;4659850;4846000;5145300;5380700;4892200;4011850;4311300;4757250;5458400;5465850;5777800;5356300;4201700;4235950;4038250;4689050;5309300;5634650;5817250;5154400;4859250;5325100;4970200;4953450;5041350;4836100;5058050;5096450;5221650;4099800;4458300;4487000;5323000;4588000;4490000;5280000;5301000;4705000;5522000;4278000;4505000;4279000;4520000;4264000;4674716;6137000;5549000;3434208;3912115;4089711;3931197;4079918;4173156;4374281;4717962;4819193;5161967;4868020;5042424;5317309;3762574;2815428
-79;'276;Germany;1632;Sawnwood, coniferous;5622;Import value;1000 USD;198284;214531;224962;244192;260462;234019;187818;204960;241193;296054;306320;345612;488606;495773;462117;505185;634745;750982;947059;1175207;859799;722900;781651;716632;668586;815131;945213;1021230;1049537;1340294;1092847;1337385;911369;1172500;1136030;1008500;1124471;972666;975969;955496;700271;1010280;860885;976940;953613;1089759;1270125;1133662;873290;1047017;1198122;1052617;1138847;1179123;992369;1068519;1129537.92;1304168;1123982;1164741;1948155;1343910;780646
-79;'276;Germany;1632;Sawnwood, coniferous;5916;Export quantity;m3;131850;142650;145450;286000;263600;239900;388050;516950;362500;281350;228500;229700;445500;834000;592350;888200;643050;465150;469800;490050;455300;468950;571000;779800;914350;938450;1027700;1405550;1024000;909900;959900;945100;953000;1552000;1587000;1634000;1895000;2223000;1891000;3295000;3496000;4237000;4113000;5526000;6624000;7042327;8432139;11990000;6261864;6648734;6793579;6177053;6269876;6682698;6289002;7049500;7537695;8263498;8889313;9676907;10600000;10800000;9729331
-79;'276;Germany;1632;Sawnwood, coniferous;5922;Export value;1000 USD;6827;7540;7855;14507;14238;12968;19147;24160;20030;17417;15077;16382;47197;95887;63660;96756;87754;78411;90257;111576;89132;82523;89884;111494;121416;170328;221636;304072;207194;236983;211306;213079;169839;298446;319651;313758;362840;349666;309556;543103;539599;710180;789920;1132733;1399183;1676928;2482265;2190535;1412136;1590680;1739871;1477503;1602478;1751763;1375297;1485463;1713364.14;2078501;1900317;2169063;3877081;3708263;2539779
-79;'276;Germany;1633;Sawnwood, non-coniferous;5516;Production;m3;2271850;2304900;2141650;2297550;2352850;2438800;2354450;2191300;2421700;2458750;2632850;2600850;2674500;2646000;2354000;2533000;2672000;2707500;2636000;2603500;2314000;2111500;2046000;2182000;2140000;2205000;2135500;2159000;2170500;2341000;1723000;1630000;1164000;1202000;1180000;1144000;1048000;1165000;1559000;1320000;1242000;1140441;1070908;1089000;1128000;1178000;1141000;1094000;1124488;897821;995600;1004920;1049803;1014900;1056370;1088212;1117425;1159732;1266369;1002347;1102884;1027536;900380
-79;'276;Germany;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;344450;362450;314700;310700;336700;336600;308450;355300;458050;499300;528350;598100;750800;595200;626050;832650;946450;982900;1071350;1061550;779600;731050;943500;885700;776150;824450;929600;984750;860750;837150;733100;818700;630000;676000;708000;553000;852000;775000;809000;822000;711000;706000;652000;642000;614000;632290;979000;754000;436161;472383;488676;449822;422800;449233;439946;394755;416623;391925;412848;408524;502010;420119;270242
-79;'276;Germany;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;23998;25570;23207;24837;27662;27255;25847;29654;37318;40714;48449;62134;120438;99138;112106;480034;228347;289136;403146;443212;284760;245894;315209;269916;222674;279468;371715;374413;373490;416312;368972;434752;338528;388372;407072;310608;357354;319719;354372;317255;254189;254591;274834;307509;332363;363713;427625;400552;293200;298879;335558;281564;276424;285173;264302;277228;260324.58;279597;246386;248236;346328;336720;234643
-79;'276;Germany;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;68250;71150;75450;102200;112200;124800;139950;161250;149000;159450;174400;179100;297200;374100;318850;398100;418250;398650;375900;388850;388100;356250;337900;365600;413250;400550;384700;440450;396900;351300;304000;288000;296000;312000;320000;304000;365000;446000;494000;616000;587000;611000;593000;686000;767000;816084;1041000;938000;526556;619678;614000;576000;642329;710669;700937;722998;810760;779518;767564;702197;781746;721065;502343
-79;'276;Germany;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;5013;5132;5478;7206;8168;9220;9964;11156;11514;13397;15616;18085;38480;52340;46956;59259;71666;87792;98245;102577;90113;80399;75206;76215;83731;112035;128641;161288;132283;150643;133712;124917;96814;121931;145197;141953;163973;199332;227936;297510;261589;273956;311773;378945;424156;413796;553896;547816;319320;333467;372274;330908;368510;408137;372598;399816;445743.27;456867;431385;411666;514638;482379;383226
-79;'276;Germany;1634;Veneer sheets;5516;Production;m3;461300;441300;460500;480500;502300;341000;321000;333000;299000;370000;348000;335000;357000;322000;260000;285000;292000;300000;289000;300000;329000;316000;462000;486000;479000;472000;481000;476000;512000;494000;442000;419000;380000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;392000;395000;392825;166503;183378;186730;126715;103575;97690;89599;86906;88850;88247;97740;99925;115937;110049;111623
-79;'276;Germany;1634;Veneer sheets;5616;Import quantity;m3;48700;49600;42400;44600;57000;73400;67000;74500;77600;82100;87800;88300;99200;93400;89200;113600;124100;150300;155800;173600;146400;148400;156900;166400;152900;162600;135500;162500;186500;202200;195200;204800;209000;312000;227000;192000;201000;210000;177000;187000;163000;155000;167000;163000;168000;171432;256000;232000;114095;132118;123238;118641;102770;102628;112393;124575;116993;111871;106340;105730;113923;98768;76984
-79;'276;Germany;1634;Veneer sheets;5622;Import value;1000 USD;24973;28387;25965;28472;37683;39647;34555;41636;49034;51443;57000;65437;91314;75116;79607;104837;131502;172240;202253;228936;173868;157878;172136;163483;143849;182579;191152;206305;216651;257784;269790;288371;230463;277519;347884;274919;274624;289822;242898;256338;218318;218257;251833;267875;266384;301972;328798;277068;204008;209413;202514;177499;166007;161901;158552;177207;176452.16;181457;168745;175581;204219;217195;169068
-79;'276;Germany;1634;Veneer sheets;5916;Export quantity;m3;26700;26800;31200;37100;35600;38200;44100;48400;52000;53300;57600;61500;92700;74900;59700;78000;65600;59900;67500;75500;66100;61400;67000;71900;78700;77200;86200;99800;105400;93600;86900;84000;139000;146000;256000;230000;115000;120000;113000;127000;124000;120000;120000;127000;118000;115604;175000;169000;80539;86875;82068;66416;56882;55764;63784;50185;63521;62564;58135;58277;62036;51889;44812
-79;'276;Germany;1634;Veneer sheets;5922;Export value;1000 USD;10469;12147;14352;17638;19607;21824;24416;29034;33202;34478;37096;45290;84805;70776;58389;73186;72925;83790;107743;123390;91331;81223;87071;89731;99512;118904;145773;165076;170504;192975;167536;182971;156681;189815;264733;253190;255956;269085;253388;264255;253269;258305;279411;326918;320821;381542;349121;342304;243408;250107;236832;182623;171744;180672;163188;160442;163675.2;168084;157048;145561;179703;163767;156871
-79;'276;Germany;1873;Wood-based panels;5516;Production;m3;2076100;2283400;2454100;2807100;3151700;3481900;3733200;4413800;5089900;5430600;5913900;6451600;7320900;7247800;7005400;7809000;7880000;8127000;8209000;8007000;7356000;7177000;7546000;7784000;7555000;7603000;7716000;8472000;9244000;9141000;8441000;8468000;9061000;9890000;10254000;9996000;11495000;11788000;12360500;13671500;13140000;13301000;14258000;15958000;16700000;17008000;17313000;14280688;13729080;12441176;11905157;12021593;12059849;12168530;11714906;12168615;12709088;12381940;12515558;12690846;13525395;11968002;10888285
-79;'276;Germany;1873;Wood-based panels;5616;Import quantity;m3;291400;345800;378800;445700;657100;757077;669738;659228;808132;952953;1110102;1350923;1374656;1211337;1238120;1616900;1707400;1843500;1994100;2089900;1928900;1756800;1998300;1972700;1901300;2187700;2280000;2462100;2516100;3049800;2913400;3045906;2927000;3119000;3373000;3031000;3286000;3574000;3173000;3879000;3800000;3683000;3776000;3980000;3967000;3981240;5979066;5112746;3642608;4420038;5001405;5174932;5037551;5164918;5404351;5585192;5744761;5994723;5781129;6056180;6467367;5557796;4641771
-79;'276;Germany;1873;Wood-based panels;5622;Import value;1000 USD;22530;26477;30191;34259;47657;52664;47984;53548;70309;90150;115529;146605;209168;192529;195793;280160;318372;379330;486383;575764;463294;396829;419579;389323;354620;471827;658252;710239;690108;937377;953172;1089888;937280;1092785;1365168;1188842;1164663;1164329;1033639;1007593;889776;847604;1073637;1309547;1357651;1634468;2156595;1984270;1540788;1829711;2290771;2077613;2104493;2247391;1942331;1964591;2081042.49;2362544;2135503;2109046;2863588;2799284;2301408
-79;'276;Germany;1873;Wood-based panels;5916;Export quantity;m3;126700;126300;155500;179800;187700;220056;281720;329053;339409;328157;308577;305709;455785;648687;558760;718600;712400;736000;836400;757700;758200;843600;861400;1001600;1181800;1157200;1166200;1614300;1464900;1274700;1288900;1317961;1348000;1775000;1664000;1953000;2467000;2852000;2905000;4493000;4767000;5669000;5892000;6835000;7527000;6777602;8931585;8052617;5971493;6098310;5600577;5501909;5709883;5636401;5995890;6074638;6360265;6145173;6019846;6053528;6786394;5772913;5318802
-79;'276;Germany;1873;Wood-based panels;5922;Export value;1000 USD;16431;15544;18679;22024;23290;24099;28469;32511;36978;43760;39252;43435;71107;103234;93507;124595;138979;174951;220199;237333;208277;211403;206159;214477;244071;351504;429523;522501;523536;543206;531425;565309;518780;660858;792760;871681;971589;1170969;1237610;1350628;1451669;1752291;2104637;2678253;2815866;2927942;3769879;3198079;2984183;3004166;3141672;2832277;3011218;3014552;2665181;2727303;2909380.49;3077091;2781772;2772285;3511369;3260296;2931280
-79;'276;Germany;1640;Plywood and LVL;5516;Production;m3;661000;677800;698200;688700;702900;663500;615000;629600;646700;604800;590200;578200;578900;506000;441000;494000;485000;487000;486000;469000;395000;372000;374000;380000;376000;381000;387000;403000;439000;449000;424000;429000;416000;397000;498000;512000;448000;428000;364000;357000;321000;285000;245000;283000;236000;235000;229000;174000;192831;232327;217568;177724;134590;147980;107674;114486;99845;117786;111162;99827;103012;84600;72537
-79;'276;Germany;1640;Plywood and LVL;5616;Import quantity;m3;34200;38200;51700;55000;76200;101900;103500;151800;202300;249900;296400;359000;413200;287300;330400;439500;430700;479700;561700;539200;530200;485900;551400;569400;488800;595100;640500;650200;573800;705600;669100;879100;865000;1003000;1177000;975000;1095000;1105000;1021000;965000;954000;905000;1103000;1214000;1142000;1314124;1515794;1459234;1065659;1288152;1422578;1336006;1338299;1369425;1411661;1458113;1527995;1619917;1486319;1436998;1482895;1318706;1089255
-79;'276;Germany;1640;Plywood and LVL;5622;Import value;1000 USD;5380;5728;7729;7864;11428;15092;15726;24479;33393;44304;58949;74796;117284;91570;99544;142462;160552;197193;269549;283138;237038;203041;213802;207828;173436;198657;320669;344793;274158;386517;378078;558042;458557;541364;645957;547891;575984;551817;509869;488751;440575;413482;530044;639580;627255;742203;975525;976311;608854;764026;934818;818667;851927;897862;778039;785905;879535.67;998980;882551;814806;1115442;1153484;966134
-79;'276;Germany;1640;Plywood and LVL;5916;Export quantity;m3;59500;47100;53200;56000;51100;50200;62200;71800;70100;60300;49800;49100;52400;52500;43900;51000;50200;46500;47200;51700;63300;70700;87000;92700;107900;116900;119900;164800;82500;83100;81700;121661;110000;131000;149000;135000;153000;166000;160000;210000;232000;167000;200000;265000;287000;321036;368221;341620;277424;337406;355428;298179;296694;309961;333726;349234;381318;392903;375911;372893;387868;330131;303069
-79;'276;Germany;1640;Plywood and LVL;5922;Export value;1000 USD;8875;7016;8251;9281;9054;8577;9625;10772;11870;11864;10429;11135;15687;16782;15647;19458;22081;24694;29507;37805;36470;36113;40943;42011;43055;63400;79115;97616;58867;76158;69523;105831;83733;94652;119445;99616;108057;113691;109582;122077;125273;113496;157807;215620;241140;275264;344336;343887;252741;287992;337006;195420;271708;285047;253168;278654;309209.96;332043;296744;287704;385855;361796;330527
-79;'276;Germany;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;53000
-79;'276;Germany;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39438;38246
-79;'276;Germany;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36460;38998
-79;'276;Germany;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44193;31955
-79;'276;Germany;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50247;31259
-79;'276;Germany;1646;Particle board and OSB (1961-1994);5516;Production;m3;1146300;1311900;1463700;1780100;2106900;2345400;2679200;3338200;3979200;4357800;4869700;5400600;6235000;6242000;6068000;6787000;6826000;7035000;7139000;6978000;6442000;6298000;6627000;6871000;6642000;6696000;6813000;7489000;8125000;7939000;7441000;7451000;7961000;8639000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;156900;190500;201900;255300;451500;452900;351200;301400;346900;400600;467600;581900;597900;564500;615300;828900;936900;1044200;1075600;1169800;1072500;951300;1101000;1039600;1040000;1238800;1269800;1446900;1617000;1989700;1926700;1808400;1732000;1713000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;8605;9999;10400;13429;23932;24703;19724;17212;20749;24969;30436;40250;53231;56038;60918;93026;112045;135178;153630;210206;166858;139043;147207;128788;129981;204247;250675;272307;329838;443517;467653;416633;383156;420828;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;44600;53500;68800;83200;100100;117700;170500;200800;225300;228900;227000;225400;364300;546700;470300;619000;614400;638000;717900;660100;645700;719200;715600;841400;984300;954200;964200;1310000;1241600;1025300;1001000;979600;1026000;1320000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;3711;4295;5310;6467;8246;10053;13556;15852;19514;26535;23525;26078;46515;73661;66817;91190;101118;132376;167191;176521;151558;156153;145703;152748;176590;253138;310061;376981;400765;398876;374601;363374;352063;425180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8902000;8584000;9152000;9375000;9491000;10012000;9595000;8089000;8512000;9817000;9808000;9773000;9748000;8174000;8213981;6500000;5800000;5613569;5552995;5665080;5530587;5617619;5759450;5757411;5714719;5556360;6036276;5526329;5051202
-79;'276;Germany;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1755000;1559000;1630000;1594000;1230000;1284000;1344000;1115000;1186000;1331000;1447000;1608921;2672000;2812000;1520340;1845563;2223234;2227814;2032026;2239937;2257627;2181218;2175639;2118926;1995296;1948184;2200109;1970168;1706688
-79;'276;Germany;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532600;444503;404393;361220;278733;277340;259110;227350;286129;355528;397946;451014;583248;585638;470211;522226;731169;691102;643016;714334;597661;568293;574890.12;617822;558495;533470;736376;764252;648150
-79;'276;Germany;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1245000;1296000;1544000;1658000;1586000;2050000;1955000;2249000;2199000;2702000;2746000;2949217;2680000;4573000;1928852;1886541;1703304;1681916;1719272;1730403;1755994;1752981;1889364;1919866;1823825;1679340;2189887;1924028;1739363
-79;'276;Germany;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489819;492613;490686;508552;486468;463662;474115;490731;554016;673109;691786;793254;917489;997196;674100;642504;659083;608719;618603;626993;530558;519145;544992.68;598815;531658;487060;695224;707652;642379
-79;'276;Germany;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;329000;325000;640000;800000;800000;1117000;1067000;1111000;1000000;1062790;1133813;1140056;1167431;1253005;1142920;1206014;1398485;1451673;1230209;1163010;1233873;1281538;1163557;1166364
-79;'276;Germany;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;292000;310000;334000;423000;284000;250000;210000;303606;305000;252000;294203;372558;426066;416888;470219;533448;646381;746104;762152;848346;791907;856318;758636;679000;569982
-79;'276;Germany;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45323;66171;63793;47797;44610;56230;67600;62543;94125;113354;93224;90217;124755;159284;138026;165813;180901;156410;179559;188909.05;262672;228616;234766;340577;277697;186710
-79;'276;Germany;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;18000;79000;271000;414000;518000;722000;608167;1081000;586000;637903;527734;547512;500151;544470;458403;450793;517894;519609;513038;525391;511343;554892;526214;507166
-79;'276;Germany;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3374;3067;7133;13260;47015;91683;191675;208384;176830;238774;201147;177764;168502;201250;158813;184972;151523;113540;123313;133201.85;161336;148490;135844;231869;216398;167009
-79;'276;Germany;1874;Fibreboard;5516;Production;m3;268800;293700;292200;338300;341900;473000;439000;446000;464000;468000;454000;472800;507000;499800;496400;528000;569000;605000;584000;560000;519000;507000;545000;533000;537000;526000;516000;580000;680000;753000;576000;588000;684000;854000;854000;900000;1895000;1985000;2505500;2973500;2899000;4287000;4701000;5058000;5539000;5933000;6225000;4932688;4259478;4575036;4747533;5062869;5119259;5212550;4870631;5038025;5398120;5276534;5526667;5800786;6104569;5193516;4598182
-79;'276;Germany;1874;Fibreboard;5616;Import quantity;m3;100300;117100;125200;135400;129400;202277;215038;206028;258932;302453;346102;410023;363556;359537;292420;348500;339800;319600;356800;380900;326200;319600;345900;363700;372500;353800;369700;365000;325300;354500;317600;358406;330000;403000;441000;497000;561000;675000;630000;1320000;1168000;1240000;1203000;1185000;1168000;754589;1486272;589512;762406;913765;929527;1194224;1197007;1022108;1088682;1199757;1278975;1407534;1507607;1814680;2025727;1589922;1275846
-79;'276;Germany;1874;Fibreboard;5622;Import value;1000 USD;8545;10750;12062;12966;12297;12869;12534;11857;16167;20877;26144;31559;38653;44921;35331;44672;45775;46959;63204;82420;59398;54745;58570;52707;51203;68923;86908;93139;86112;107343;107441;115213;95567;130593;186611;196448;184286;205969;178866;177709;142294;162162;201234;246839;269907;347126;484468;329097;371506;418704;465500;429818;443737;454294;410221;430834;437707.65;483070;465841;526004;671193;603851;500414
-79;'276;Germany;1874;Fibreboard;5916;Export quantity;m3;22600;25700;33500;40600;36500;52156;49020;56453;44009;38957;31777;31209;39085;49487;44560;48600;47800;51500;71300;45900;49200;53700;58800;67500;89600;86100;82100;139500;140800;166300;206200;216700;212000;324000;270000;522000;770000;1017000;1149000;2215000;2501000;2982000;3079000;3350000;3772000;2899182;4802364;2551997;3127314;3346629;2994333;3021663;3149447;3137634;3455377;3454529;3569974;3319366;3294719;3489952;3653747;2992540;2769204
-79;'276;Germany;1874;Fibreboard;5922;Export value;1000 USD;3845;4233;5118;6276;5990;5469;5288;5887;5594;5361;5298;6222;8905;12791;11043;13947;15780;17881;23501;23007;20249;19137;19513;19718;24426;34966;40347;47904;63904;68172;87301;96104;82984;141026;183496;279452;372846;545352;638493;757756;839021;1101049;1301131;1597849;1674556;1682594;2269280;1655849;1879578;1905168;1944333;1869325;1935935;1950989;1767915;1806191;1921976;1984897;1804880;1861677;2198421;1974450;1791365
-79;'276;Germany;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-79;'276;Germany;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205000;208000;215000;279000;221000;407000;363000;328000;379000;334000;413000;282844;250854;149894;199076;191021;189329;182732;156582;157582;194386;222757;221521;227579;223390;231448;249303;199623;155154
-79;'276;Germany;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114810;112794;92425;107667;85285;72210;56553;56585;72784;83724;124553;189473;134796;93325;93252;86963;99152;87207;85538;99300;103693;115157;114706.41;118098;101528;94350;121248;128847;108569
-79;'276;Germany;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9118;9442;10659;15106;12765;32326;33026;23015;28116;29562;43008;29308;26470;15677;21942;21195;20514;17998;15771;16095;21349;24734;25945;25728;26283;28079;30486;23481;21658
-79;'276;Germany;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8353;8104;8106;12230;10335;11670;11826;9155;12660;14427;19375;20411;29594;14057;17596;16472;18372;14061;12864;13043;14249;16929;17444.61;18780;18475;20235;24946;22030;20467
-79;'276;Germany;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804000;850000;1790000;1875000;2368000;2836000;2899000;4287000;4701000;5058000;5539000;5933000;5831000;4833000;3415519;3461018;3570420;3775154;3737873;3777570;4073628;4216325;4374567;4170959;4505051;4599693;4692624;3791548;3386691
-79;'276;Germany;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104000;157000;220000;270000;246000;640000;517000;639000;491000;602000;600000;290500;844418;320585;356456;470646;463621;397367;391913;414555;432664;479091;492003;517478;495428;603269;653581;424180;375047
-79;'276;Germany;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41965;51845;65677;74428;67812;77262;57831;76593;83055;111175;105576;107744;264868;191469;190096;230627;258320;239222;242386;267388;232043;238544;243419.36;270938;261922;305855;386112;316499;275728
-79;'276;Germany;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216882;469558;706341;950894;1077235;2016674;2253974;2695985;2812884;3212438;3629992;2829632;4470833;2476419;3011288;3206906;2853087;2637562;2638237;2694035;2959146;3009600;3152410;3034591;2877842;2879610;2936089;2345489;2119150
-79;'276;Germany;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158115;253912;345313;516356;608762;728046;807140;1072434;1266589;1567654;1635290;1643949;2188355;1608233;1811546;1837378;1863844;1790691;1844331;1868160;1694865;1741751;1861237.39;1930652;1739198;1770893;2096133;1876879;1697508
-79;'276;Germany;1650;Other fibreboard;5516;Production;m3;39300;44700;44300;50200;47500;174000;153000;142000;138000;142000;114000;112800;109000;92800;74400;55000;57000;50000;58000;55000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;105000;110000;137500;137500;0;0;0;0;0;0;394000;99688;843959;1114018;1177113;1287715;1381386;1434980;797003;821700;1023553;1105575;1021616;1201093;1411945;1401968;1211491
-79;'276;Germany;1650;Other fibreboard;5616;Import quantity;m3;23700;24800;22400;23000;19000;71600;77200;64400;63600;90800;115600;165200;130000;142400;115200;113000;107700;113700;117400;127400;115100;113000;129300;155400;162500;147700;172000;105900;128600;154800;84600;109700;106000;136000;132000;132000;126000;126000;163000;273000;288000;273000;333000;249000;155000;181245;391000;119033;206874;252098;276577;614125;648512;449971;461632;497909;565451;662477;788789;979963;1122843;966119;745645
-79;'276;Germany;1650;Other fibreboard;5622;Import value;1000 USD;2203;2242;2056;2200;2018;1961;2217;1618;1514;3310;4459;7736;7065;10827;8859;8773;8093;10081;12273;13571;11224;9536;11627;12371;12809;17186;26732;13045;28020;38025;17745;24216;22920;30412;29836;31809;26184;23874;25769;28237;27910;28984;45395;51940;39778;49909;84804;44303;88158;101114;108028;103389;115813;87606;74485;77133;79581.88;94034;102391;125799;163833;158505;116117
-79;'276;Germany;1650;Other fibreboard;5916;Export quantity;m3;4000;4800;6800;7200;6700;27200;22800;25600;18000;12000;6400;5200;7600;12000;7600;4800;3300;4400;27000;10400;14000;20500;26700;31100;39900;42000;41200;71600;90600;121500;35200;45700;38000;33000;44000;43000;53000;51000;59000;166000;214000;263000;238000;108000;99000;40242;305061;59901;94084;118528;120732;366103;495439;427504;474882;420195;391619;259047;390594;582263;687172;623570;628396
-79;'276;Germany;1650;Other fibreboard;5922;Export value;1000 USD;538;607;785;821;779;766;644;654;491;384;269;329;530;1474;626;441;528;740;4354;1935;2326;3498;4569;4711;5915;10901;12497;8845;24845;38170;11034;16880;12744;12438;17028;17436;19427;16766;19396;18040;20055;19460;21882;15768;19891;18234;51331;33559;50436;51318;62117;64573;78740;69786;58801;47511;43294;35465;47207;70549;77342;75541;73390
-79;'276;Germany;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;229500;249000;247900;288100;294400;299000;286000;304000;326000;326000;340000;360000;398000;407000;422000;473000;512000;555000;526000;505000;469000;457000;495000;483000;487000;476000;466000;530000;630000;703000;526000;538000;634000;804000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;76600;92300;102800;112400;110400;130677;137838;141628;195332;211653;230502;244823;233556;217137;177220;235500;232100;205900;239400;253500;211100;206600;216600;208300;210000;206100;197700;259100;196700;199700;233000;248706;224000;267000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;6342;8508;10006;10766;10279;10908;10317;10239;14653;17567;21685;23823;31588;34094;26472;35899;37682;36878;50931;68849;48174;45209;46943;40336;38394;51737;60176;80094;58092;69318;89696;90997;72647;100181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;18600;20900;26700;33400;29800;24956;26220;30853;26009;26957;25377;26009;31485;37487;36960;43800;44500;47100;44300;35500;35200;33200;32100;36400;49700;44100;40900;67900;50200;44800;171000;171000;174000;291000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;3307;3626;4333;5455;5211;4703;4644;5233;5103;4977;5029;5893;8375;11317;10417;13506;15252;17141;19147;21072;17923;15639;14944;15007;18511;24065;27850;39059;39059;30002;76267;79224;70240;128588;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1879;Total fibre furnish;5510;Production;t;2989600;2955900;3056000;2922000;3116000;3144000;3199000;3546000;3937000;4369000;4266000;4363900;4626000;4941000;4436000;5140000;5403000;5541000;5863000;5922000;6199000;6129000;6374000;7116000;7571000;7809000;8109000;8554000;8993000;9435000;9476000;10217000;10635000;11669000;12526000;12773000;11460000;11867000;12038000;13207000;13629000;14186000;14899000;15721000;17292000;18182000;18823000;18401802;17970068;18298023;18167000;17885000;17937000;17699000;17913000;17661067;17669000;19743384;19591832;19218116;16883876;15414492;14792134
-79;'276;Germany;1879;Total fibre furnish;5610;Import quantity;t;50400;50900;59000;91000;89900;130300;96800;1303200;1534700;2028100;1783800;2144300;2424300;2645200;2057900;2513600;2420000;2645300;2840000;2959300;2880800;2894700;3280500;3469300;3531600;3569900;3825100;4005500;4252300;4301500;4342300;4505682;4027163;4435400;4630000;4535000;4864000;4798000;4721000;5221000;5497000;5989000;6459000;6978000;7359000;8129205;8640000;8860000;6629927;8725448;8722000;8501000;8488000;8321858;8479178;9102047;9702000;9588000;9327000;8423000;9777000;9253000;8201000
-79;'276;Germany;1879;Total fibre furnish;5622;Import value;1000 USD;3848;3902;4484;9275;9445;12870;9560;172166;215276;293885;275335;315496;420908;707576;700309;832115;899003;757519;1016820;1318821;1328472;1201858;1163405;1388017;1243609;1442655;1922945;2370768;2827528;2800278;2878292;2220369;1541484;2137566;3197264;2169985;1993122;1990911;1905583;2537921;2141696;2104082;2405794;2744950;2831292;3350365;4211603;4456406;2395339;4442319;4629091;3838593;3838457;3731876;3485825;3378297;3649231.38;4136689;3457720;2652992;4039212;4421930;3332839
-79;'276;Germany;1879;Total fibre furnish;5910;Export quantity;t;100;200;200;200;200;200;500;51700;64500;231700;147100;220400;308700;332900;293700;408500;514500;551600;610700;620900;687200;655000;661400;861800;1000300;1044200;1108300;1310500;1416700;1532100;1991700;2120102;2284306;2442700;3246200;3389000;3451000;3679000;4060000;4428000;4357000;3950000;3772000;4124000;4250000;4397989;4546000;4718000;4886272;4217422;4590000;4225000;3961000;3691902;3818000;4006159;4162000;3901000;3743000;3270000;3001000;2847000;3034000
-79;'276;Germany;1879;Total fibre furnish;5922;Export value;1000 USD;6;20;22;64;64;32;89;7173;9791;17480;11128;20460;35330;52996;45313;58175;68480;61664;96980;112783;87234;83025;84098;108330;113870;121567;144537;216968;246232;235684;285475;332526;208391;331916;503550;438771;393107;355960;334156;684664;460243;552723;596073;711168;805250;1000225;1299923;1403945;1055124;1327196;1559425;1264362;1243872;1296516;1115386;1116559;1234608.36;1220242;1108005;888345;1255112;1425177;1242862
-79;'276;Germany;1878;Pulp for paper;5510;Production;t;1780600;1723900;1748000;1452000;1530000;1543000;1573000;1637000;1789000;1866000;1805000;1801900;1835000;1903000;1639000;1842000;1924000;1907000;2030000;2066000;2078000;2080000;2160000;2359000;2256000;2285000;2319000;2420000;2482000;2435000;2476000;2300000;2061000;1979000;1995000;1861000;2003000;1950000;1731000;2215000;2103000;2148000;2450000;2502000;2879000;2938000;3001000;2908802;2545010;2763023;2725000;2636000;2610000;2597000;2553000;2485067;2432000;2543384;2391832;2318116;2383876;2214492;1978134
-79;'276;Germany;1878;Pulp for paper;5610;Import quantity;t;50400;50900;59000;91000;89900;130300;96800;1303200;1534700;1708100;1487800;1754300;1959300;2089200;1702500;2040600;2043000;2277300;2389000;2530300;2478800;2446700;2803300;2850300;2943600;3079100;3221900;3298100;3523300;3500600;3599300;3793178;3450667;3716000;3576000;3505000;3843000;3734000;3591000;3862000;3872000;4218000;4273000;4485000;4610000;5015299;5009000;5305000;3466050;4783777;4582000;4467000;4526000;4367063;4478000;4789000;4875000;4673000;4393000;3884000;4138000;3791000;3659000
-79;'276;Germany;1878;Pulp for paper;5622;Import value;1000 USD;3848;3902;4484;9275;9445;12870;9560;172166;215276;270557;255362;289649;381143;611864;654352;772222;850382;715152;946983;1238076;1262730;1134754;1101513;1299923;1163018;1363205;1815895;2236073;2691493;2643169;2721183;2095084;1463020;2025691;3034264;2039985;1897095;1895911;1818083;2372005;1954303;1876396;2086425;2383195;2478926;2941727;3563482;3782049;1945109;3605892;3549720;3037027;3131036;3009999;2839685;2631969;2784296.18;3314316;2749834;2060524;2802898;3122588;2637988
-79;'276;Germany;1878;Pulp for paper;5910;Export quantity;t;100;200;200;200;200;200;500;51700;64500;47700;31100;73400;100700;71200;65300;85800;81700;68300;78100;78400;74600;72100;87400;81800;79300;85200;81100;125900;124100;113300;169700;227872;201426;194500;260200;349000;394000;368000;333000;383000;433000;520000;465000;539000;837000;1058528;1000000;1056000;1092403;996324;1085000;1134000;1161000;1223349;1155000;1215000;1235000;1077000;1243000;1168000;1172000;1235000;1318000
-79;'276;Germany;1878;Pulp for paper;5922;Export value;1000 USD;6;20;22;64;64;32;89;7173;9791;8711;6425;13893;22567;23463;29194;34237;35846;26419;38468;43631;37819;38488;40208;40615;38283;50490;59183;94142;112258;100230;150021;157367;120800;126609;231550;232826;246480;213960;178475;284375;229751;271430;272370;348950;467383;663864;793554;821220;663509;797685;843986;763723;802104;897450;740230;697189;751015.44;822067;813945;670160;892853;1082960;1005629
-79;'276;Germany;1875;Wood pulp;5510;Production;t;2051300;2016100;2055400;1781600;1777700;1790800;1821200;1895000;2057000;2127000;2067000;2087000;2135000;2214000;1892000;2140000;2224000;2202000;2321000;2347000;2372000;2355000;2431000;2647000;2536000;2547000;2586000;2685000;2745000;2666000;2707000;2278000;2035000;1957000;1984000;1852000;1983000;1973000;1740000;2215000;2103000;2148000;2450000;2502000;2879000;2938000;3001000;2908802;2545010;2763023;2725000;2636000;2610000;2597000;2553000;2485067;2432000;2459000;2325651;2254696;2327399;2171994;1929726
-79;'276;Germany;1875;Wood pulp;5610;Import quantity;t;188400;198000;204500;226500;250600;260400;242200;1461700;1686700;1849200;1610300;1878900;2103100;2260100;1847600;2224000;2202000;2375600;2472900;2629700;2575700;2559700;2927300;2967500;3092000;3225200;3367000;3458600;3695200;3667800;3774000;3966183;3610864;3893000;3750000;3660000;4070000;3963000;3764000;4063000;4089000;4437000;4528000;4723000;4829000;5264187;5275000;5554000;3763023;5123401;4945000;4834000;4963000;4854765;4933000;5199000;5304000;5076000;4755000;4245000;4534000;4173000;3988000
-79;'276;Germany;1875;Wood pulp;5622;Import value;1000 USD;23370;24429;24597;27704;31404;31269;26073;199346;242425;299349;281207;315406;413785;659905;701767;836382;915173;761580;986769;1298889;1318223;1211491;1174551;1370044;1251656;1454421;1912185;2361126;2844432;2799138;2877152;2225911;1576934;2154380;3161264;2186754;2072678;2072800;1950283;2524218;2107083;2031209;2267091;2561534;2645142;3125342;3795447;4061026;2198904;4027296;4122479;3491462;3635531;3507332;3252884;2997890;3182592.13;3701293;3088467;2396067;3182150;3482980;3000273
-79;'276;Germany;1875;Wood pulp;5910;Export quantity;t;34700;41800;40000;35900;32600;31400;22600;69900;87800;63800;48900;95100;126100;94200;72100;120500;110500;95100;110100;110400;111000;102000;115200;135500;111700;127800;141000;182400;167900;164900;191400;213900;192402;198500;271000;346000;392000;379000;331000;392000;439000;522000;456000;528000;824000;1021405;982000;1037000;1049136;957493;1077000;1126000;1272000;1316741;1238000;1258000;1253000;1089000;1254000;1173000;1177000;1253000;1329000
-79;'276;Germany;1875;Wood pulp;5922;Export value;1000 USD;5136;5705;5569;5495;5149;4709;3271;9874;13585;11996;9941;17830;28473;32087;32355;49338;51358;38253;55190;63553;59412;56005;54712;67118;55259;73659;96229;134119;140081;139356;165200;138398;101678;125566;238458;225263;240949;219650;174351;290714;232780;271075;261808;332254;448635;614585;733581;775621;601363;745959;841269;760632;896433;936723;805440;733739;773339.34;839317;827756;674825;895580;1102053;1020238
-79;'276;Germany;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795000;813000;728000;684064;755958;666676;419009
-79;'276;Germany;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;179000;205000;163000;155000;221000;148000
-79;'276;Germany;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98687.03;119874;128176;100933;105960;176819;117096
-79;'276;Germany;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107000;103000;93000;92000;97000;139000;118000
-79;'276;Germany;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48729.86;55687;48581;43329;55269;104347;74222
-79;'276;Germany;1654;Mechanical wood pulp (1961-2016);5510;Production;t;903200;894500;879000;877000;895000;912000;919000;942000;1060000;1144000;1149000;1165000;1171000;1190000;1001000;1153000;1205000;1248000;1316000;1324000;1386000;1388000;1456000;1649000;1543000;1555000;1585000;1660000;1696000;1648000;1531000;1461000;1331000;1236000;1266000;1133000;1220000;1191000;1192000;1342000;1229000;1252000;1344000;1396000;1468000;1468000;1456000;1383000;1063780;1239305;1163000;1043000;1013000;964000;945000;873000;;;;;;;
-79;'276;Germany;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;46800;48000;55200;61000;60400;90600;62000;67400;68600;86400;89200;119500;172000;193300;116500;127300;100000;112000;110800;99500;81200;64200;73200;82000;84200;68500;66300;79600;93700;116600;108900;100856;76600;98000;73000;54000;54000;37000;38000;33000;59000;56000;52000;46000;74000;124795;131000;136000;60455;70854;61000;78000;71000;46246;137000;124696;;;;;;;
-79;'276;Germany;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;3463;3593;4128;4614;4983;7354;5067;5578;5771;7947;8487;10966;19512;35216;28487;30242;25441;22408;29304;32692;26245;19691;20008;24795;24693;23549;26739;33447;39600;55622;52000;38823;24517;37005;39762;21423;21500;14000;14000;11327;19192;17804;20972;18019;27160;48815;63575;64652;26508;32633;29101;37512;35578;23711;65894;53767;;;;;;;
-79;'276;Germany;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;100;200;200;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;200;200;200;200;200;200;200;200;200;200;200;2400;4800;7500;7000;8000;19000;10000;11000;14000;18000;18000;17000;23000;18000;25000;33000;47227;79000;60000;7799;18033;23000;49000;31000;26724;91000;105000;;;;;;;
-79;'276;Germany;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;6;20;22;10;10;10;10;10;10;10;14;14;14;14;14;14;14;14;68;71;71;71;71;71;71;71;71;71;78;1551;3200;2782;1522;862;1518;791;800;570;407;16763;5166;8394;8452;11280;16009;22772;38781;44478;3770;12373;14191;25248;16790;14396;44913;47723;;;;;;;
-79;'276;Germany;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;4500;4500;4400;5000;28000;30000;49000;60000;60000;55000;56000;58000;61000;65000;54000;57000;66000;73000;76000;78000;74000;74000;83000;82000;86000;84000;84000;86000;87000;81000;71000;71000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-79;'276;Germany;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;3600;2900;3800;5300;7100;12800;16000;19100;19700;25800;25200;27100;23900;26700;19400;19200;11000;13000;17500;18000;12500;11200;12600;25600;17100;17500;12500;18400;24500;31000;53000;50014;45000;54000;59000;68000;96000;99000;104000;92000;94000;95000;81000;82000;116000;145727;131000;148000;104663;40267;49000;95000;116000;83342;18000;18304;;;;;;;
-79;'276;Germany;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;385;309;356;406;543;820;1102;1229;1374;2209;2336;2517;2894;5169;4678;4471;2842;3123;5546;6225;3884;3122;3132;10156;4658;6044;5570;8537;11564;16131;27000;20621;16028;23536;43281;31748;45000;53000;52465;50325;37803;35922;35201;37960;52985;62734;75872;92900;57604;23825;27554;51898;65158;46041;31052;36823;;;;;;;
-79;'276;Germany;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;193;2000;2000;5000;5000;3000;0;1000;1000;0;0;0;0;43776;55000;38000;11381;7513;7000;26000;38000;47454;0;0;;;;;;;
-79;'276;Germany;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;165;1461;1400;2278;2300;1390;0;484;358;0;0;0;0;21756;34044;23862;5913;4411;4626;15371;22511;27312;0;0;;;;;;;
-79;'276;Germany;1656;Chemical wood pulp;5510;Production;t;775800;726400;768600;480000;450000;459000;481000;515000;540000;549000;525000;531000;558000;603000;539000;587000;608000;541000;593000;619000;573000;573000;576000;583000;582000;601000;605000;629000;654000;661000;829000;723000;685000;698000;684000;683000;738000;759000;539000;873000;874000;896000;1106000;1106000;1411000;1470000;1545000;1525802;1481230;1523718;1562000;1593000;1597000;1633000;1608000;1612067;1637000;1646000;1597651;1570632;1571441;1505318;1510717
-79;'276;Germany;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1196300;1425200;1574400;1356800;1588700;1742800;1848800;1552500;1877800;1925000;2145300;2237600;2401300;2375900;2361200;2707600;2730700;2830300;2984000;3133000;3188000;3380500;3338600;3423000;3617493;3300277;3552000;3431000;3370000;3681000;3582000;3427000;3721000;3697000;4042000;4106000;4321000;4378000;4663817;4707000;4968000;3243453;4613878;4428000;4265000;4319000;4147388;4308000;4631000;4694000;4478000;4174000;3705000;3968000;3551000;3500000
-79;'276;Germany;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;161444;203850;255793;240177;271616;352325;560376;612812;728086;816732;685345;896507;1190413;1225420;1104651;1071928;1257480;1125777;1325141;1774233;2182228;2619656;2555033;2625800;2007335;1393061;1948150;2934221;1970814;1814595;1813800;1731785;2290892;1874840;1800590;2002056;2294180;2358225;2743066;3336524;3560207;1783516;3469559;3429545;2906532;3003880;2828040;2721495;2519873;2658077.31;3167283;2598873;1939378;2672663;2906056;2498108
-79;'276;Germany;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;50500;63100;46700;27300;68700;95300;67100;61200;85500;81400;68000;77500;77600;73800;71300;87100;81500;79000;84900;80800;125600;110400;110000;164000;200114;173239;179500;236000;323000;366000;347000;306000;361000;411000;491000;438000;500000;790000;924092;842000;935000;1028174;925558;1041000;1047000;1081000;1109563;1063000;1109000;1127000;973000;1149000;1075000;1070000;1092000;1196000
-79;'276;Germany;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;6998;9592;8550;5324;12350;20374;21527;27258;34087;35696;26269;37856;42868;37056;37761;40066;40475;38037;50244;58937;93896;94985;97858;146000;131113;96019;119286;225432;218757;231380;208000;170068;263607;220074;257248;253356;319160;431912;565892;655027;704263;590603;721372;814087;715200;755728;793461;694153;648528;701468.5;765188;763948;625600;829093;970187;923309
-79;'276;Germany;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-79;'276;Germany;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;188200;209400;180100;122800;136000;136700;161400;94000;99700;89100;104000;91300;79100;67900;61700;64500;58200;53800;55600;53500;78700;90500;111800;87000;89039;78270;65000;66000;41000;62000;73000;75000;68000;64000;80000;87000;79000;78000;105384;115000;120000;82239;109770;97000;130000;148000;105037;94000;109303;112000;129000;112000;99000;123000;2382000;423000
-79;'276;Germany;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;21227;24892;25430;18815;20420;24287;46972;37054;34945;32710;28734;34080;35377;29414;22833;20804;21655;18354;23334;28556;41660;55012;68769;79300;48541;33456;29700;32000;30200;28823;29000;29000;32622;26990;30812;38062;36326;37348;52865;76378;77358;41921;70640;70289;81885;96568;71054;52298;56618;62461.4;82580;66542;52637;79814;1861278;265769
-79;'276;Germany;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;4597;1000;4000;10000;9000;11000;2000;1000;4000;13000;7000;3000;5000;1366;4000;13000;756;1733;1000;4000;4000;2813;3000;6225;9000;7000;13000;8000;11000;10000;11000
-79;'276;Germany;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;1661;364;3000;5000;5000;5000;909;381;1931;5611;3346;1697;2328;724;3018;7304;610;1477;1242;2211;3165;2046;2147;3523;5779.33;5343;8484;4694;8799;8924;7518
-79;'276;Germany;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5000;252000;290000;305000;489000;489000;621000;647000;682000;803652;930773;929468;953000;978000;997000;998000;1005000;1002067;1018000;1050000;1121457;1090341;1065213;1017864;1107548
-79;'276;Germany;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;807800;1006500;1158400;1032700;1243900;1388200;1433900;1236200;1533800;1531300;1768300;1890500;2059100;2058800;2052100;2388800;2436600;2511500;2656900;2812900;2859500;3043700;2896800;3001000;3155624;2913239;3292000;3167000;3079000;3448000;3297000;3128000;3449000;3375000;3692000;3775000;4050000;4098000;4360390;4414000;4668000;2998375;4327331;4181000;4011000;4011000;3977059;4149000;4440697;4498000;4263000;3981000;3526000;3774000;1102000;3036000
-79;'276;Germany;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;111185;147382;190033;184096;214299;282038;433655;491514;603077;669073;570596;762968;1028447;1076483;977624;959820;1140687;1008868;1184690;1607578;1975871;2376636;2233480;2299400;1744454;1225149;1818950;2790521;1838614;1701772;1708000;1627185;2120631;1712227;1634680;1832469;2143963;2199583;2562190;3112921;3331265;1629489;3254469;3195562;2670224;2727505;2675733;2600153;2381009;2506213.23;2982319;2438654;1792134;2501885;953399;2179211
-79;'276;Germany;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15900;22124;17000;84000;136000;140000;129000;107000;261000;286000;312000;268000;344000;629000;766076;703000;827000;936987;821400;939000;956000;995000;1028346;991000;1018775;1029000;881000;1054000;968000;948000;977000;1089000
-79;'276;Germany;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9848;11233;5596;70000;80000;93380;85000;66550;163068;131527;136060;128228;179250;305465;436902;505934;573413;484241;592587;679922;592056;632595;674064;599990;539440;584111.35;637092;636344;495952;671392;809972;771889
-79;'276;Germany;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619000;596000;476194;480291;506228;487454;403169
-79;'276;Germany;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;86000;81000;80000;71000;67000;41000
-79;'276;Germany;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89402.68;102384;93677;94607;90964;91379;53128
-79;'276;Germany;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89000;85000;82000;99000;111000;105000;96000
-79;'276;Germany;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111577.82;122753;119120;124954;148902;151291;143902
-79;'276;Germany;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;123000;97000;79000;66000;65000;65000;47000;37000;39000;44000;33000;34000;34000;23000;13000;13000;9000;9000;6000;7000;6000;7000;7000;7000;7000;4000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-79;'276;Germany;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;30600;35400;34800;21600;26100;26900;25900;15800;17700;30000;26000;38600;32500;30100;27900;33100;25300;31600;22900;19500;34400;33700;31700;12000;18484;16187;7000;4000;8000;5000;7000;4000;9000;7000;5000;6000;5000;8000;3769;3000;3000;1645;3341;2000;4000;3000;3964;4000;3812;;;;;;;
-79;'276;Germany;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3526;4028;4670;3070;3745;4695;7245;5962;6492;7382;7431;14642;14774;13436;10621;11132;10045;10726;9376;8820;16866;22767;21187;9200;8547;5109;2500;1700;2000;2000;2800;1600;5373;2989;1959;2855;2567;3845;1652;2032;1796;767;1465;788;1507;1126;1650;1407;1304;;;;;;;
-79;'276;Germany;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;100;200;100;500;2900;4000;400;100;300;400;2000;1300;5400;4800;600;600;600;600;600;600;600;600;300;500;2225;242;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-79;'276;Germany;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;7;22;7;49;412;808;55;33;23;31;74;59;166;140;17;17;17;17;17;17;17;17;167;285;1120;76;326;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-79;'276;Germany;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;480000;327000;362000;402000;449000;475000;484000;478000;494000;519000;559000;506000;553000;574000;518000;580000;606000;564000;564000;570000;576000;576000;594000;598000;622000;647000;657000;826000;720000;682000;698000;684000;683000;738000;759000;534000;621000;584000;591000;617000;617000;790000;823000;863000;722150;550457;594250;609000;615000;600000;635000;603000;610000;;;;;;;
-79;'276;Germany;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;169700;173900;201100;179700;182700;191000;227600;206500;226600;274600;247000;217200;230600;219100;219500;221200;210600;233400;248600;247100;215400;212600;298300;323000;354346;292581;188000;194000;242000;166000;205000;220000;195000;251000;265000;238000;187000;194000;194274;175000;177000;161194;173436;148000;120000;157000;61328;61000;77188;;;;;;;
-79;'276;Germany;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;25506;27548;35660;34196;33152;41305;72504;78282;83572;107567;78584;84817;111815;106087;93573;80172;85093;87829;107741;129279;147831;165241;231597;237900;205793;129347;97000;110000;100000;82000;74000;74000;132266;132634;133139;128670;111324;117449;126359;145193;149788;111339;142985;162906;152916;178681;79603;67637;80942;;;;;;;
-79;'276;Germany;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;50400;62900;46600;26800;65800;91300;66700;61100;85200;81000;66000;76200;72200;69000;70700;86500;80900;78400;84300;80200;125000;109800;109700;163500;181123;146276;161000;148000;177000;217000;207000;197000;99000;121000;166000;163000;153000;156000;156650;135000;95000;90431;102425;101000;87000;82000;78404;69000;84000;;;;;;;
-79;'276;Germany;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;6991;9570;8543;5275;11938;19566;21472;27225;34064;35665;26195;37797;42702;36916;37744;40049;40458;38020;50227;58920;93879;94968;97691;145715;119748;83049;113000;152432;133757;133000;118000;102609;100158;86616;115577;121782;138213;124119;128266;146075;123546;105752;127308;132923;120933;119968;117351;92016;105565;;;;;;;
-79;'276;Germany;1667;Dissolving wood pulp;5510;Production;t;367800;390700;403400;419600;404700;389800;372200;378000;397000;379000;337000;333000;345000;356000;298000;343000;345000;340000;336000;326000;339000;320000;316000;333000;325000;307000;312000;310000;308000;276000;276000;23000;19000;23000;34000;36000;25000;23000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-79;'276;Germany;1667;Dissolving wood pulp;5610;Import quantity;t;138000;147100;145500;160200;183100;157000;164200;178900;173200;162600;139100;143600;164400;191300;159200;199700;166000;105300;107000;110900;106100;123100;133900;129200;160400;155200;155200;172600;196500;181600;189100;197820;188987;189000;187000;168000;239000;245000;195000;217000;239000;244000;289000;274000;261000;329848;306000;302000;354452;398402;407000;396000;457000;577789;470000;425000;445000;419000;376000;377000;411000;401000;340000
-79;'276;Germany;1667;Dissolving wood pulp;5622;Import value;1000 USD;19522;20527;20113;22684;25878;23095;19904;31095;31430;33400;30207;30307;39054;59144;55790;73583;70158;50704;55412;69559;62674;84027;79483;77613;96528;99687;105643;136914;173612;172352;172352;159132;143328;145689;144000;162769;191583;192000;152033;171674;175248;176893;208862;211375;206772;270727;319476;343267;331276;501279;636279;495520;530915;609540;434443;387427;425827.79;414136;361418;355756;403527;400105;385069
-79;'276;Germany;1667;Dissolving wood pulp;5910;Export quantity;t;34600;41600;39800;35800;32500;31300;22500;19300;24600;17000;21500;26300;30700;27000;10800;34900;29000;27000;32400;32600;37000;30500;27900;53800;32500;42700;60000;56600;57300;52500;22600;6028;11970;9000;14000;8000;10000;15000;7000;12000;10000;8000;0;3000;1000;6310;6000;4000;1782;6389;6000;4000;122000;133000;84000;44000;19000;13000;12000;6000;10000;22000;15000
-79;'276;Germany;1667;Dissolving wood pulp;5922;Export value;1000 USD;5130;5685;5547;5485;5139;4699;3261;2866;3983;3436;4603;5466;8085;10546;5083;15237;15648;11970;17266;20614;22285;18173;14575;26572;17151;23344;37221;40152;45018;39947;16000;4406;3972;3957;10108;3437;6469;9690;3876;9860;7182;5433;0;1814;714;4165;5729;3018;1077;7803;8365;4813;101404;101554;66374;37488;23140.99;18442;15227;5896;11218;27519;22707
-79;'276;Germany;1668;Pulp from fibres other than wood;5510;Production;t;97100;98500;96000;90000;157000;142000;124000;120000;129000;118000;75000;47900;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;84384;66181;63420;56477;42498;48408
-79;'276;Germany;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;24700;22400;26900;18800;20400;21200;21500;16600;19000;20600;20400;14100;16300;7000;7000;23100;11500;9200;10100;9900;12000;12000;9100;10100;12100;24600;14400;14400;24815;28790;12000;13000;13000;12000;16000;22000;16000;22000;25000;34000;36000;42000;80960;40000;53000;57479;58778;44000;29000;20000;90087;15000;15000;16000;16000;14000;16000;15000;19000;11000
-79;'276;Germany;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;4255;3919;4696;3391;3915;4281;4608;4362;4550;6412;11103;8375;9423;5367;4276;15626;8746;7181;7290;6445;7492;7890;8471;9353;11861;20673;16383;16383;28305;29414;17000;17000;16000;16000;15111;19833;19461;22468;22080;28196;33036;40556;87112;87511;64290;77481;79875;63520;41085;26420;112207;21244;21506;27531.84;27159;22785;20213;24275;39713;22784
-79;'276;Germany;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;100;100;100;400;1100;1300;900;3700;4600;5300;4000;4000;200;200;200;400;600;600;600;100;100;100;100;100;100;13500;900;900;20000;20994;5000;3200;11000;12000;4000;9000;3000;4000;6000;9000;14000;14000;43433;24000;23000;45049;45220;14000;12000;11000;39608;1000;1000;1000;1000;1000;1000;5000;4000;4000
-79;'276;Germany;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;54;54;22;79;165;189;151;1087;1529;2179;1922;1922;136;136;136;544;692;692;656;71;69;175;175;175;175;17195;821;821;23375;23094;5000;3200;11000;12000;4000;8000;3521;4153;5788;10562;18510;19462;53444;65702;48617;63223;59529;11082;7904;7075;62281;1164;938;817.09;1192;1416;1231;8491;8426;8098
-79;'276;Germany;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;11000;48000;44000;24000;11000;9000;9000;5025;1000;3000;3394;25387;55000;110000;93000;96089;11349;17329;17643;18053;30607;79000;47966;54160;85000
-79;'276;Germany;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1889;10389;4257;5585;2663;773;921;1513;968;801;1674;1827;8691;13871;17317;8485;7335;5933;4862;5405.16;9117;15457;22824;24224;27352;20150
-79;'276;Germany;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;57000;60000;64000;54000;56000;45000;49000;73177;64000;81000;84571;111942;117000;132000;112000;94843;101000;111000;110000;138000;118000;114000;121000;81000;78000
-79;'276;Germany;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;57000;17138;18439;15241;17436;16432;18992;31495;39009;48526;42882;59239;79142;86160;79487;63743;52805;56987;58986.81;75112;62894;60119;70762;53347;52055
-79;'276;Germany;1669;Recovered paper;5510;Production;t;1209000;1232000;1308000;1470000;1586000;1601000;1626000;1909000;2148000;2503000;2461000;2562000;2791000;3038000;2797000;3298000;3479000;3634000;3833000;3856000;4121000;4049000;4214000;4757000;5315000;5524000;5790000;6134000;6511000;7000000;7000000;7917000;8574000;9690000;10531000;10912000;9457000;9917000;10307000;10992000;11526000;12038000;12449000;13219000;14413000;15244000;15822000;15493000;15425058;15535000;15442000;15249000;15327000;15102000;15360000;15176000;15237000;17200000;17200000;16900000;14500000;13200000;12814000
-79;'276;Germany;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;320000;296000;390000;465000;556000;355400;473000;377000;368000;451000;429000;402000;448000;477200;619000;588000;490800;603200;707400;729000;800900;743000;712504;576496;719400;1054000;1030000;1021000;1064000;1130000;1359000;1625000;1771000;2186000;2493000;2749000;3113906;3631000;3555000;3163877;3941671;4140000;4034000;3962000;3954795;4001178;4313047;4827000;4915000;4934000;4539000;5639000;5462000;4542000
-79;'276;Germany;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;23328;19973;25847;39765;95712;45957;59893;48621;42367;69837;80745;65742;67104;61892;88094;80591;79450;107050;134695;136035;157109;157109;125285;78464;111875;163000;130000;96027;95000;87500;165916;187393;227686;319369;361755;352366;408638;648121;674357;450230;836427;1079371;801566;707421;721877;646140;746328;864935.2;822373;707886;592468;1236314;1299342;694851
-79;'276;Germany;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;184000;116000;147000;208000;261700;228400;322700;432800;483300;532600;542500;612600;582900;574000;780000;921000;959000;1027200;1184600;1292600;1418800;1822000;1892230;2082880;2248200;2986000;3040000;3057000;3311000;3727000;4045000;3924000;3430000;3307000;3585000;3413000;3339461;3546000;3662000;3793869;3221098;3505000;3091000;2800000;2468553;2663000;2791159;2927000;2824000;2500000;2102000;1829000;1612000;1716000
-79;'276;Germany;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;8769;4703;6567;12763;29533;16119;23938;32634;35245;58512;69152;49415;44537;43890;67715;75587;71077;85354;122826;133974;135454;135454;175159;87591;205307;272000;205945;146627;142000;155681;400289;230492;281293;323703;362218;337867;336361;506369;582725;391615;529511;715439;500639;441768;399066;375156;419370;483592.92;398175;294060;218185;362259;342217;237233
-79;'276;Germany;1876;Paper and paperboard;5510;Production;t;4358700;4476000;4611800;4320900;4533900;4636500;4510300;5025000;5474400;5891800;5977500;6226300;6733500;6873400;5563600;6703000;6874000;7129000;7727000;7868000;8119000;8075000;8560000;9443000;9478000;9713000;10255000;10902000;11579000;12194000;12904000;13214000;13034000;14457000;14827000;14733000;15930000;16311000;16742000;18182000;17879000;18526000;19310000;20391000;21679000;22656000;23317000;22828000;20870000;23072000;22706000;22603000;22401000;22540000;22601000;22629000;22925000;22681549;22080042;21348480;23127062;21611516;18639999
-79;'276;Germany;1876;Paper and paperboard;5610;Import quantity;t;1226200;1380600;1492700;1684800;2004400;2058400;1854800;2303100;2898200;2898800;3021900;3232100;3377100;3230600;2758800;3333200;3456500;3662900;4032300;4056800;4051500;3993400;4262700;4760800;4643500;5166600;5384700;5815200;6088000;7012400;7374900;7355939;7191000;7593000;7163000;6935000;7856000;8423000;9029000;9810000;9439000;9651000;10090000;10465000;10618000;10737052;11832000;11466000;9900076;10803879;11032000;10871000;10552358;10772433;11787000;11800000;11835592;11628236;10914000;10357639;10114547;9302000;8343000
-79;'276;Germany;1876;Paper and paperboard;5622;Import value;1000 USD;211936;237600;257971;281971;342944;349620;326491;385425;511127;553388;609743;694764;955479;1288280;1239227;1447568;1776414;1788363;2282409;2578013;2336983;2191504;2154291;2365650;2515024;3360243;4103269;4631520;5133287;6282684;6564500;6263910;4949766;5506753;7292022;6396148;5513656;5580315;5784919;6955345;6747345;6879098;8338543;9131452;9014643;9928948;11306594;12245142;9527362;9927352;11255136;10116286;10026966;10278476;9568647;9376127;9638140.43;10393684;9456324;8650837;8941471;10369576;9013325
-79;'276;Germany;1876;Paper and paperboard;5910;Export quantity;t;167100;186100;212800;219000;219300;255600;335300;402500;496100;616600;795700;914500;1193000;1359200;821700;1232400;1329000;1488800;1678300;1715900;1983900;2134500;2441000;2853400;2932100;3059000;3414000;3845100;4121200;4165900;4199500;4673130;4652000;5715000;6156000;6322000;7661000;7661000;8005000;8905000;8774000;9965000;10575000;11556000;12579000;10823926;14275000;13680000;12276450;13916386;13483000;13404000;13023000;13107883;13823000;13959000;14269567;14273199;14244125;13649309;14165984;13078001;12118001
-79;'276;Germany;1876;Paper and paperboard;5922;Export value;1000 USD;63965;71087;80791;69683;72238;83129;98742;114171;142566;178200;257671;303051;483851;786461;539473;899735;939921;981968;1248349;1463483;1491507;1606437;1567328;1790515;1908430;2564708;3197043;3807891;4246339;4593280;4671000;4683348;4296329;5071932;8166965;7329764;7326569;7122001;7246398;7961218;6699172;7471881;9008566;10305949;11452131;10971359;14169637;15526421;11766956;13360814;14984826;13375419;13186706;13063100;12400189;12371515;12968953;14212350;13172911;11899808;13436179;15268640;13744985
-79;'276;Germany;2042;Graphic papers;5510;Production;t;1337700;1378000;1438800;1554900;1598900;1829500;1880300;2095000;2315400;2590800;2588500;2727300;2955500;3120400;2478600;2986000;3140000;3325000;3603000;3773000;3971000;4022000;4309000;4796000;4819000;4953000;5242000;5621000;5891000;6226000;6343000;6395000;6230000;7364000;7598000;7274000;7985000;8260000;8401000;9335000;8923000;9069000;9638000;10284000;10684000;10711000;10942000;10712000;9289000;10196000;9820000;9393000;8901000;8858000;8614000;8549000;8371000;7933919;7292298;6247323;6822530;6194000;4306999
-79;'276;Germany;2042;Graphic papers;5610;Import quantity;t;521600;562500;622500;738400;870400;899400;810700;1089300;1297100;1254100;1295100;1395500;1476900;1462600;1329800;1596100;1667500;1754700;1968900;2027100;2056500;1994500;2101900;2406100;2323300;2496500;2732300;3126400;3307300;3895100;4301400;4190853;4233000;4511000;4209000;4152000;5055000;5271000;5683000;6060000;5942000;5837000;5928000;6424000;6417000;6778871;7009000;6663000;5568350;5892256;6064000;5940000;5775000;5650830;5789000;5584000;5559090;5213743;4677000;4069466;4052769;3585000;3098000
-79;'276;Germany;2042;Graphic papers;5622;Import value;1000 USD;85171;92043;102521;116871;139248;145080;132711;177943;215065;219851;254539;285836;415760;592970;627567;755499;965702;985576;1239825;1386374;1246253;1175390;1132198;1237423;1366075;1724630;2229688;2776532;2878403;3837133;4092300;3590271;2776326;3227613;4164708;3715337;3090891;3221315;3305250;4515163;4398229;4304186;4909620;5507827;5360320;5750558;6547793;6815374;5320900;5172343;5726608;5151774;5076956;5120153;4130104;3928690;3933431.76;4170809;3687650;3072525;3189914;4014288;3530249
-79;'276;Germany;2042;Graphic papers;5910;Export quantity;t;63400;69000;88700;110700;112800;146900;201800;257300;267200;373700;490100;531200;656300;640300;366300;569500;642000;697600;776100;790400;972600;1089800;1254000;1472400;1479700;1575700;1781200;2460600;2619000;2638500;2625000;2934130;2822000;3522000;4022000;3942000;5025000;4810000;5139000;5721000;5717000;6302000;6641000;7185000;7548000;7900001;8069000;7966000;6576006;7614344;7024000;6495000;6056000;6064126;6116000;5941000;5955304;5629629;5286591;4582895;5007072;4466777;3139000
-79;'276;Germany;2042;Graphic papers;5922;Export value;1000 USD;17888;18978;23188;28685;30820;39495;51846;64659;66876;94186;136265;147964;235976;358948;228323;501903;430852;455800;573304;659017;720886;838228;783915;928611;960759;1275181;1619219;2530338;2640488;2985358;3064000;3009348;2531329;3032432;4867766;4253869;4194483;4158000;4372581;5159990;4519359;4976088;5680013;6358345;6824919;7271341;8094664;8758829;6689103;7336637;7300724;6231940;5821670;5985489;4872981;4741249;4811791.95;5106628;4741420;3933773;4425050;5475520;3955942
-79;'276;Germany;1671;Newsprint;5510;Production;t;318100;304600;285600;298800;309600;321800;344900;377900;421700;504800;540800;603600;618300;626500;581900;605000;644000;624000;715000;712000;787000;767000;759000;830000;834000;874000;950000;1028000;1117000;1244000;1229000;1222000;1302000;1499000;1726000;1572000;1618000;1630000;1645000;1806000;2046000;2026000;2251000;2403000;2451000;2365000;2333000;2340000;2126000;2250000;1888000;1718000;1750000;1733000;1770000;1761000;1433000;1210115;1091498;909971;1052197;938978;631571
-79;'276;Germany;1671;Newsprint;5610;Import quantity;t;365200;379400;414000;486000;529100;567500;506300;586100;757000;732200;712100;706000;751300;763800;704800;734200;780100;760800;871800;914400;826700;798700;789500;933900;909500;972100;1036300;1021300;1084800;1234900;1360800;1258675;1314000;1291000;1183000;1095000;1286000;1425000;1496000;1638000;1337000;1251000;1219000;1247000;1338000;1353472;1269000;1184000;1046912;1086936;1167000;1102000;1066000;974565;877000;876000;886352;782517;715000;549657;602255;609401;491940
-79;'276;Germany;1671;Newsprint;5622;Import value;1000 USD;51128;54127;58447;68317;73425;80043;72595;81362;104049;104900;107902;105808;144874;188611;260066;269581;375854;367326;455651;512366;405135;385179;346903;353440;363001;519100;636316;655728;660409;861999;953000;730092;555616;615533;811376;848506;644581;659316;659316;692630;749529;676612;704801;740312;797369;861589;914100;898872;756881;612133;795151;691569;666499;619811;426992;431180;445405.16;459878;423655;287369;306946;515360;392479
-79;'276;Germany;1671;Newsprint;5910;Export quantity;t;9600;12200;13800;24800;16200;16600;38800;38500;48700;64600;81900;87100;97100;99700;69800;85000;91000;89600;98200;91100;100200;118400;153500;177600;180900;242400;286000;369600;375500;428800;379400;423157;507000;575000;561000;569000;641000;621000;575000;765000;890000;1097000;1052000;1189000;1091000;1105059;889000;1011000;770155;893726;783000;689000;720000;715512;760000;725000;675923;459295;443171;395185;523790;525019;373765
-79;'276;Germany;1671;Newsprint;5922;Export value;1000 USD;1378;1766;2063;3693;2429;2502;5998;5815;7381;10038;13100;14395;20099;31922;26029;30803;42338;40716;47994;49015;48856;58963;71736;71979;72963;131668;175708;248562;245950;315273;281000;251039;187351;232782;423290;431059;337924;297000;292217;382186;487426;550583;574375;663039;666878;721964;618014;735831;542480;514946;546134;440287;449367;457546;366728;353004;338513.47;266663;259050;200544;259927;455540;296744
-79;'276;Germany;1674;Printing and writing papers;5510;Production;t;1019600;1073400;1153200;1256100;1289300;1507700;1535400;1717100;1893700;2086000;2047700;2123700;2337200;2493900;1896700;2381000;2496000;2701000;2888000;3061000;3184000;3255000;3550000;3966000;3985000;4079000;4292000;4593000;4774000;4982000;5114000;5173000;4928000;5865000;5872000;5702000;6367000;6630000;6756000;7529000;6877000;7043000;7387000;7881000;8233000;8346000;8609000;8372000;7163000;7946000;7932000;7675000;7151000;7125000;6844000;6788000;6938000;6723804;6200800;5337352;5770333;5255022;3675428
-79;'276;Germany;1674;Printing and writing papers;5610;Import quantity;t;156400;183100;208500;252400;341300;331900;304400;503200;540100;521900;583000;689500;725600;698800;625000;861900;887400;993900;1097100;1112700;1229800;1195800;1312400;1472200;1413800;1524400;1696000;2105100;2222500;2660200;2940600;2932178;2919000;3220000;3026000;3057000;3769000;3846000;4187000;4422000;4605000;4586000;4709000;5177000;5079000;5425399;5740000;5479000;4521438;4805320;4897000;4838000;4709000;4676265;4912000;4708000;4672738;4431226;3962000;3519809;3450514;2975599;2606060
-79;'276;Germany;1674;Printing and writing papers;5622;Import value;1000 USD;34043;37916;44074;48554;65823;65037;60116;96581;111016;114951;146637;180028;270886;404359;367501;485918;589848;618250;784174;874008;841118;790211;785295;883983;1003074;1205530;1593372;2120804;2217994;2975134;3139300;2860179;2220710;2612080;3353332;2866831;2446310;2561999;2645934;3822533;3648700;3627574;4204819;4767515;4562951;4888969;5633693;5916502;4564019;4560210;4931457;4460205;4410457;4500342;3703112;3497510;3488026.6;3710931;3263995;2785156;2882968;3498928;3137770
-79;'276;Germany;1674;Printing and writing papers;5910;Export quantity;t;53800;56800;74900;85900;96600;130300;163000;218800;218500;309100;408200;444100;559200;540600;296500;484500;551000;608000;677900;699300;872400;971400;1100500;1294800;1298800;1333300;1495200;2091000;2243500;2209700;2245600;2510973;2315000;2947000;3461000;3373000;4384000;4189000;4564000;4956000;4827000;5205000;5589000;5996000;6457000;6794942;7180000;6955000;5805851;6720618;6241000;5806000;5336000;5348614;5356000;5216000;5279381;5170334;4843420;4187710;4483282;3941758;2765235
-79;'276;Germany;1674;Printing and writing papers;5922;Export value;1000 USD;16510;17212;21125;24992;28391;36993;45848;58844;59495;84148;123165;133569;215877;327026;202294;471100;388514;415084;525310;610002;672030;779265;712179;856632;887796;1143513;1443511;2281776;2394538;2670085;2783000;2758309;2343978;2799650;4444476;3822810;3856559;3861000;4080364;4777804;4031933;4425505;5105638;5695306;6158041;6549377;7476650;8022998;6146623;6821691;6754590;5791653;5372303;5527943;4506253;4388245;4473278.49;4839965;4482370;3733229;4165123;5019980;3659198
-79;'276;Germany;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1531000;1413000;1622000;1577000;1585000;1630000;1648000;1729000;1861000;1870000;1968000;1753000;1813000;2041000;1965000;1826000;1842000;1855000;1824000;1976000;2045535;1906322;1741811;1808782;1680538;1276001
-79;'276;Germany;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896000;868000;809000;966000;906000;911000;982000;802000;894814;1127000;1135000;954905;989070;906000;866000;790000;632736;612000;657000;767377;641719;527000;545122;441672;423186;456890
-79;'276;Germany;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596867;567557;486154;607562;589540;652220;761011;566842;654043;860909;926076;793014;751216;769429;718151;664383;548778;422096;446365;523869.04;502933;413929;389040;335746;407222;440170
-79;'276;Germany;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610000;565000;659000;811000;686000;871000;775000;889000;884561;1244000;1346000;1170359;1175134;1143000;1117000;991000;936186;965000;997000;975504;1010555;927657;854954;816940;763443;426756
-79;'276;Germany;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562237;525369;379064;476127;421006;618618;582419;691920;713010;1034569;1202269;1022765;914946;1002424;884590;772691;727033;574788;570884;560998.54;653010;601105;509945;475030;690186;414392
-79;'276;Germany;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376000;1387000;1501000;1400000;1612000;1555000;1566000;1526000;1600000;1770000;1638000;1623000;1755000;1616000;1649000;1553000;1612000;1623000;1630000;1683000;1635755;1552180;1376541;1447551;1327085;1047933
-79;'276;Germany;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135000;1217000;1417000;1483000;1369000;1447000;1540000;1624000;1663188;1544000;1312000;1188116;1349083;1370000;1348000;1331000;1427301;1384000;1255000;1278459;1268944;1161000;1106628;1114522;1055253;936759
-79;'276;Germany;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756076;746084;1304338;1266221;1195694;1428578;1513516;1562621;1618266;1752858;1728750;1366034;1450651;1586110;1415324;1433234;1505369;1200612;1127454;1155348.81;1282010;1162850;1040591;1082091;1351262;1213751
-79;'276;Germany;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793000;784000;902000;679000;869000;830000;839000;785000;1090577;865000;775000;926893;1064954;1015000;1011000;980000;1065733;1059000;1005000;1024401;984144;959461;841914;899154;831567;578900
-79;'276;Germany;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730908;723534;1263052;702484;834763;893284;951170;877281;1225361;1322580;1399344;1237368;1427087;1492848;1318270;1318094;1427336;1202146;1171684;1207986.03;1282166;1260920;1077614;1168413;1354947;1120920
-79;'276;Germany;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3723000;3956000;4406000;3900000;3846000;4202000;4667000;4978000;4885000;4969000;4766000;3787000;4378000;4275000;4061000;3772000;3671000;3366000;3334000;3279000;3042514;2742298;2219000;2514000;2247399;1351494
-79;'276;Germany;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1815000;2102000;2196000;2156000;2311000;2351000;2655000;2653000;2867397;3069000;3032000;2378417;2467167;2621000;2624000;2588000;2616228;2916000;2796000;2626902;2520563;2274000;1868059;1894320;1497160;1212411
-79;'276;Germany;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1209056;1332293;2032041;1774917;1842340;2124021;2492988;2433488;2616660;3019926;3261676;2404971;2358343;2575918;2326730;2312840;2446195;2080404;1923691;1808808.75;1925988;1687216;1355525;1465131;1740444;1483849
-79;'276;Germany;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2786000;3215000;3395000;3337000;3650000;3888000;4382000;4783000;4819804;5071000;4834000;3708599;4480530;4083000;3678000;3365000;3346695;3332000;3214000;3279476;3175635;2956302;2490842;2767188;2346748;1759579
-79;'276;Germany;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2567855;2831461;3135688;2853322;3169736;3593736;4161717;4588840;4611006;5119501;5421385;3886490;4479658;4259318;3588793;3281518;3373574;2729319;2645677;2704293.92;2904789;2620345;2145670;2521680;2974847;2123886
-79;'276;Germany;1675;Other paper and paperboard;5510;Production;t;3021000;3098000;3173000;2766000;2935000;2807000;2630000;2930000;3159000;3301000;3389000;3499000;3778000;3753000;3085000;3717000;3734000;3804000;4124000;4095000;4148000;4053000;4251000;4647000;4659000;4760000;5013000;5281000;5688000;5968000;6561000;6819000;6804000;7093000;7229000;7459000;7945000;8051000;8341000;8847000;8956000;9457000;9672000;10107000;10995000;11945000;12375000;12116000;11581000;12876000;12886000;13210000;13500000;13682000;13987000;14080000;14554000;14747630;14787744;15101157;16304532;15417516;14333000
-79;'276;Germany;1675;Other paper and paperboard;5610;Import quantity;t;704600;818100;870200;946400;1134000;1159000;1044100;1213800;1601100;1644700;1726800;1836600;1900200;1768000;1429000;1737100;1789000;1908200;2063400;2029700;1995000;1998900;2160800;2354700;2320200;2670100;2652400;2688800;2780700;3117300;3073500;3165086;2958000;3082000;2954000;2783000;2801000;3152000;3346000;3750000;3497000;3814000;4162000;4041000;4201000;3958181;4823000;4803000;4331726;4911623;4968000;4931000;4777358;5121603;5998000;6216000;6276502;6414493;6237000;6288173;6061778;5717000;5245000
-79;'276;Germany;1675;Other paper and paperboard;5622;Import value;1000 USD;126765;145557;155450;165100;203696;204540;193780;207482;296062;333537;355204;408928;539719;695310;611660;692069;810712;802787;1042584;1191639;1090730;1016114;1022093;1128227;1148949;1635613;1873581;1854988;2254884;2445551;2472200;2673639;2173440;2279140;3127314;2680811;2422765;2359000;2479669;2440182;2349116;2574912;3428923;3623625;3654323;4178390;4758801;5429768;4206462;4755009;5528528;4964512;4950010;5158323;5438543;5447437;5704708.67;6222875;5768674;5578312;5751557;6355288;5483076
-79;'276;Germany;1675;Other paper and paperboard;5910;Export quantity;t;103700;117100;124100;108300;106500;108700;133500;145200;228900;242900;305600;383300;536700;718900;455400;662900;687000;791200;902200;925500;1011300;1044700;1187000;1381000;1452400;1483300;1632800;1384500;1502200;1527400;1574500;1739000;1830000;2193000;2134000;2380000;2636000;2851000;2866000;3184000;3057000;3663000;3934000;4371000;5031000;2923925;6206000;5714000;5700444;6302042;6459000;6909000;6967000;7043757;7707000;8018000;8314263;8643570;8957534;9066414;9158912;8611224;8979001
-79;'276;Germany;1675;Other paper and paperboard;5922;Export value;1000 USD;46077;52109;57603;40998;41418;43634;46896;49512;75690;84014;121406;155087;247875;427513;311150;397832;509069;526168;675045;804466;770621;768209;783413;861904;947671;1289527;1577824;1277553;1605851;1607922;1607000;1674000;1765000;2039500;3299199;3075895;3132086;2964001;2873817;2801228;2179813;2495793;3328553;3947604;4627212;3700018;6074973;6767592;5077853;6024177;7684102;7143479;7365036;7077611;7527208;7630266;8157161.05;9105722;8431491;7966035;9011129;9793120;9789043
-79;'276;Germany;1676;Household and sanitary papers;5510;Production;t;100000;141000;158000;173000;195000;219000;208000;223000;252000;272000;299000;337000;370000;402000;376000;411000;411000;417000;465000;515000;522000;540000;565000;613000;621000;649000;731000;746000;766000;829000;889000;879000;847000;864000;877000;886000;890000;931000;954000;1017000;1027000;1036000;1053000;1071000;1188000;1251000;1323000;1380000;1333000;1343000;1377000;1392000;1414000;1438000;1458000;1507000;1513000;1508083;1495531;1514476;1479322;1465565;1379000
-79;'276;Germany;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;22300;27400;42800;39100;59400;73100;41700;40500;51200;19000;31300;42500;51400;54200;48300;46800;57000;64100;73800;74000;85900;70000;91700;264000;236086;195000;109000;111000;117000;127000;115000;131000;143000;126000;147000;179000;163000;169000;173323;174000;181000;174528;199469;219000;211000;219358;223174;707000;703000;680666;680700;675000;681198;156000;200000;192000
-79;'276;Germany;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;8783;10888;15976;16028;29799;47087;34117;35376;43294;17207;24371;39386;56657;53376;43919;36641;41526;48678;70416;83910;111013;85428;141932;409200;459439;312000;200000;230000;210000;200000;170000;192174;125639;148124;171888;241621;243311;252870;268956;306757;358526;283684;333235;398141;346653;389452;388807;1102657;1071823;1055461.51;1055461;1115638;1083189;270978;422434;423635
-79;'276;Germany;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;17600;22900;21900;17500;34700;53700;55600;29000;40300;34000;32000;31800;35000;44900;51500;61600;59200;49500;49900;78300;89000;95700;112400;218000;89000;92000;114000;107000;99000;108000;110000;106000;110000;134000;141000;160000;171000;163000;134218;142000;105000;85331;82894;107000;122000;177000;145077;619000;736000;725340;725340;723988;672183;147000;106000;131000
-79;'276;Germany;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;10313;13456;14027;12199;23946;40245;41830;27717;34275;28333;24420;29666;38887;44592;45883;47575;47081;41139;55148;96595;122628;116468;157957;308000;85400;85000;100000;110000;100000;110000;108000;122727;144480;169731;189544;256935;287140;278936;264943;300340;247304;205821;207534;273208;260315;290004;317354;1377738;1440322;1444718.81;1444719;1511937;1338066;315818;271179;367504
-79;'276;Germany;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5983000;6217000;6561000;6737000;7203000;7318000;7617000;8367000;9135000;9463000;9247000;8973000;10058000;10042000;10468000;10735000;10869000;11191000;11210000;11639000;11838960;11949644;12251681;13343425;12535866;11616000
-79;'276;Germany;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2869000;3043000;3444000;3203000;3507000;3814000;3763000;3920000;3492332;4445000;4414000;4053545;4584050;4575000;4547000;4417000;4810232;5102000;5324000;5395062;5517776;5348000;5418177;5711577;5346000;4903000
-79;'276;Germany;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2075000;2175531;2154788;2007254;2263522;2981835;3182378;3185528;3129556;4204982;4520607;3658144;4138223;4585212;4089232;4026854;4437527;3797147;3882444;4143182.69;4644117;4128388;3995210;4883527;5384348;4490404
-79;'276;Germany;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511000;2538000;2832000;2731000;3341000;3605000;4095000;4610000;1977425;5744000;5356000;5494823;6094251;6029000;6464000;6471000;6782631;6777000;6959000;7244177;7577127;7914692;8076594;8679235;8189049;8231001
-79;'276;Germany;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664001;2579125;2175959;1705221;2144721;2762919;3397466;3524362;1220445;5413522;5553924;4464816;5399694;6380317;5899927;6049916;6302866;5297737;5349862;5825560.69;6709513;6011194;5717041;7677568;8498042;7144371
-79;'276;Germany;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2113000;2139000;2181000;1876000;2037000;1939000;1923000;2189000;2359000;1884000;1887000;2029000;2214000;2245000;1803000;2290000;2763000;2855000;3091000;3050000;3089000;3029000;3168000;3438000;3430000;3504000;3613000;3823000;4070000;4250000;4685000;5019000;5024000;5275000;5348000;5562000;5953000;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;976500;1151500;1128700;1272200;1380900;1421500;1332400;1074200;1381000;1450000;1557700;1682200;1642800;1645200;1664100;1804900;1945200;1873500;2208100;2161700;1920300;2316700;2782900;2651500;2826000;2661000;2856000;2717000;2551000;2537000;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;148512;180774;195491;215927;261666;346932;476257;416469;485716;554609;551752;731807;834043;790162;741223;748323;824063;811826;1177722;1320981;1127264;1663024;2119779;1943000;2100000;1761440;1979140;2757314;2350811;2092765;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;76400;129900;131900;190900;225300;335200;479000;280900;452400;469000;569100;659100;654100;735700;754900;862500;1009200;1053700;1077700;1167200;766200;1112600;1166800;1252500;1549000;1638000;1966000;1900000;2141000;2362000;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;18676;32872;34521;59993;54445;98974;213634;124629;181218;233045;256629;343784;400935;409801;403570;410250;451751;496247;636489;769560;485959;954822;1011265;1115000;1400000;1500000;1769500;3009199;2795895;2815086;;;;;;;;;;;;;;;;;;;;;;;;;;
-79;'276;Germany;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3475000;3623000;3828000;4040000;4402000;4605000;4808000;5471000;6029000;6233000;6160000;6153000;7017000;7041000;7319000;7557000;7638000;7693000;7919000;8334000;8575947;8730078;9048017;9978423;9515774;9120000
-79;'276;Germany;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1575000;1627000;1782000;1605000;1682000;1754000;1729000;1818000;1328660;1944000;1843000;1813323;2095247;2123000;2173000;2176000;2362819;2523000;2668000;2731172;2862804;2736000;2791729;2956159;2618565;2509673
-79;'276;Germany;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1139116;1188297;773459;732820;738003;866111;880531;897931;735926;1240753;1204907;938693;1238229;1385902;1211017;1285383;1470339;1193435;1186793;1321495.55;1566752;1220778;1172260;1661411;1833690;1344890
-79;'276;Germany;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1401000;1326000;1425000;1492000;1673000;1975000;2048000;2518000;1210317;3164000;2804000;3340394;3706624;3435000;3803000;3814000;4089492;3860000;3911000;4157204;4378702;4723260;4845495;5057911;4770182;5080524
-79;'276;Germany;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1486366;1395125;865039;657377;683062;898388;1015484;1128181;491694;1964937;1618299;1485575;2090694;2059468;1813254;1985013;2516142;1752341;1730244;2033472.33;2522109;2116514;1931623;2989416;3378563;2517302
-79;'276;Germany;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106000;1156000;1285000;1312000;1386000;1409000;1518000;1575000;1742000;1821000;1737000;1580000;1709000;1661000;1703000;1733000;1716000;1810000;1753000;1806000;1765456;1785611;1779172;1830530;1545427;1262000
-79;'276;Germany;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555000;613000;780000;823000;988000;1160000;1211000;1243000;1339994;1501000;1518000;1422630;1566306;1407000;1417000;1217000;1393236;1393000;1438000;1423602;1381929;1388000;1391138;1409932;1458639;1326360
-79;'276;Germany;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401403;448414;770278;711220;915442;1298638;1499445;1490851;1600379;1926273;2035973;1825795;1898636;1923677;1808170;1593776;1823414;1497510;1553207;1590578.16;1667397;1604915;1592590;1731068;1823016;1745577
-79;'276;Germany;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469000;532000;609000;597000;1039000;1004000;1508000;1516000;31278;1924000;1795000;1435959;1628860;1739000;1862000;1929000;1840572;1993000;2064000;2091513;2061233;2099554;2060513;2260897;2039839;1910149
-79;'276;Germany;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497577;530466;794255;701889;1085009;1402879;1923963;1935361;61833;2692486;2903230;2299371;2535938;3075792;2988892;3044120;2921843;2542546;2565763;2651467.37;2782822;2621951;2495333;3028482;3193550;3043713
-79;'276;Germany;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249000;249000;257000;241000;239000;201000;208000;222000;247000;244000;224000;211000;217000;234000;344000;351000;378000;357000;391000;418000;424769;406021;410356;494551;469451;382000
-79;'276;Germany;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511000;549000;611000;541000;596000;635000;598000;603000;654172;691000;776000;654592;745028;767000;685000;756000;839233;916000;950000;973590;994491;950000;956933;1045555;1020446;834534
-79;'276;Germany;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369580;371026;498806;477104;515511;660748;690591;666725;703097;924781;1015660;798409;898445;1023681;847326;924193;1008860;901828;929785;1006413.84;1160457;1063625;970783;1170461;1399506;1128790
-79;'276;Germany;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197000;249000;320000;220000;232000;195000;212000;224000;429515;266000;389000;385704;426729;493000;445000;388000;496252;576000;627000;672954;832675;793193;876103;1040830;1097656;1015512
-79;'276;Germany;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209004;222796;345274;207065;206962;212749;276014;263988;500180;553115;693684;475081;557794;899860;784811;714110;618533;744051;800336;892854.73;1150222;1026525;1040850;1334671;1565899;1280550
-79;'276;Germany;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153000;1189000;1191000;1144000;1176000;1103000;1083000;1099000;1117000;1165000;1126000;1029000;1115000;1106000;1102000;1094000;1137000;1331000;1147000;1081000;1072788;1027934;1014136;1039921;1005214;852000
-79;'276;Germany;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;254000;271000;234000;241000;265000;225000;256000;169506;309000;277000;163000;177469;278000;272000;268000;214944;270000;268000;266698;278552;274000;278377;299931;248350;232433
-79;'276;Germany;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164901;167794;112245;86110;94566;156338;111811;130021;90154;113175;264067;95247;102913;251952;222719;223502;134914;204374;212659;224695.14;249511;239070;259577;320587;328136;271147
-79;'276;Germany;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444000;431000;478000;422000;397000;431000;327000;352000;306315;390000;368000;332766;332038;362000;354000;340000;356315;348000;357000;322506;304517;298685;294483;319597;281372;224816
-79;'276;Germany;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471054;430738;171391;138890;169688;248903;182005;196832;166738;202984;338711;204789;215268;345197;312970;306673;246348;258799;253519;247766.26;254360;246204;249235;324999;360030;302806
-79;'276;Germany;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;808000;818000;834000;717000;703000;649000;499000;518000;548000;1145000;1203000;1133000;1194000;1106000;906000;1016000;560000;532000;568000;530000;537000;484000;518000;596000;608000;607000;669000;712000;852000;889000;987000;921000;933000;954000;1004000;1011000;1102000;1137000;1170000;1269000;1192000;1218000;1301000;1419000;1440000;1559000;1589000;1489000;1275000;1475000;1467000;1350000;1351000;1375000;1338000;1363000;1402000;1400587;1342569;1335000;1481785;1416085;1338000
-79;'276;Germany;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;215000;422200;473200;415500;396300;405600;393900;314300;304900;320000;319200;338700;335500;295600;286500;309100;352500;382600;388200;416700;682600;394000;242700;158000;103000;102000;117000;126000;115000;137000;168000;172000;163000;168000;160000;169000;115000;112000;292526;204000;208000;103653;128104;174000;173000;141000;88197;189000;189000;200774;216017;214000;188798;194201;171000;150000
-79;'276;Germany;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;50187;104400;122070;123249;117463;145700;184936;159815;163059;238896;226664;271391;300939;247192;230972;237129;262638;288445;387475;468690;616711;506432;183840;120000;114200;100000;100000;140000;120000;130000;114000;111964;159755;193738;139502;205467;197936;215925;779878;247062;550635;264634;283551;545175;528627;533704;331989;538739;493170;506064.47;523297;524648;499913;597052;548506;569037
-79;'276;Germany;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;51200;76100;89100;97200;123300;147800;184300;145500;170200;184000;190100;211300;236400;230700;238300;262900;312600;349200;355700;387300;529300;293900;248200;104000;101000;100000;113000;127000;140000;166000;230000;222000;242000;192000;181000;169000;105000;258000;812282;320000;253000;120290;124897;323000;323000;319000;116049;311000;323000;344746;341103;318854;317637;332677;316175;617000
-79;'276;Germany;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;20523;29362;35466;49214;76696;108656;172049;158804;182339;247691;245119;301595;364644;316228;318756;325588;363072;410285;597890;711669;668966;534561;438700;184000;188600;180000;170000;180000;180000;207000;192000;171965;480789;304861;161528;308699;262998;823914;2214630;361111;966364;407216;416949;1030577;983237;1025116;457391;851733;840082;886881.55;951490;908360;910928;1017743;1023899;2277168
-79;'276;Germany;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8997072.02;9731370;9690357;10246536;12623764;12429846;10586287
-79;'276;Germany;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7973981.74;8511303;8361782;8314929;10148844;10037592;9374727
-79;'276;Germany;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267962.36;279512;267256;317156;458853;388420;253627
-79;'276;Germany;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233068.86;260645;250763;237366;336468;294640;202009
-79;'276;Germany;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116094.9;129200;128765;192316;307907;255372;158565
-79;'276;Germany;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156928.89;186897;174851;184993;283123;243099;150468
-79;'276;Germany;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151867.46;150312;138491;124840;150946;133048;95062
-79;'276;Germany;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76139.98;73748;75912;52373;53345;51541;51541
-79;'276;Germany;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590233.29;675674;605879;565362;995014;1184217;794529
-79;'276;Germany;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350801.31;412679;365315;337929;520474;632265;498791
-79;'276;Germany;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306173.79;342016;346329;347210;428962;436886;330470
-79;'276;Germany;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134688.38;159691;161327;162618;196756;184680;178937
-79;'276;Germany;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185861.6;1334334;1329976;1361984;1634268;1628882;1273567
-79;'276;Germany;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335408.54;1361099;1369328;1393279;1714099;1657884;1476565
-79;'276;Germany;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1166000;1299000
-79;'276;Germany;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312556;270703
-79;'276;Germany;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229172;177676
-79;'276;Germany;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437924;488774
-79;'276;Germany;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321642;295603
-79;'276;Germany;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946000;392509
-79;'276;Germany;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71719;111723
-79;'276;Germany;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48897;61795
-79;'276;Germany;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54488;77506
-79;'276;Germany;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46799;58364
-79;'276;Germany;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5507;2292
-79;'276;Germany;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594;3455
-79;'276;Germany;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;436
-79;'276;Germany;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;535
-79;'276;Germany;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5685548.29;6002996;6058718;6443960;7520902;7237174;6776873
-79;'276;Germany;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5318014.2;5628343;5575280;5557487;6567160;6480882;6324784
-79;'276;Germany;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192070.33;230787;229150;266941;368143;332072;273719
-79;'276;Germany;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125657.61;140417;105175;85923;112065;104581;107357
-79;'276;Germany;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769222.36;866051;853049;943923;1217622;1222195;883502
-79;'276;Germany;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476342.84;548429;534594;540327;701822;682660;586284
-79;'276;Germany;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4285381.49;4609216;4510920;4494328;4950528;5654653;5311481
-79;'276;Germany;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8193978.36;9024913;8620118;8388825;9400242;10007419;9521652
-79;'276;Germany;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55834.55;61513;55596;48829;49169;59557;52625
-79;'276;Germany;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98193.4;99792;92192;87194;95507;137521;125355
-79;'276;Germany;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616872.53;675469;635400;620383;732897;777980;632954
-79;'276;Germany;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1736197.45;1993605;1796990;1680700;1999018;2109170;1873468
-79;'276;Germany;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884300.69;985250;965676;986051;862408;1164060;1250286
-79;'276;Germany;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312480.56;1446603;1415324;1299567;1314348;1641757;1663070
-79;'276;Germany;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1530530.82;1618088;1581262;1610199;1850216;2049075;1906173
-79;'276;Germany;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3188450.35;3463768;3369899;3441890;3807902;3924066;3773579
-79;'276;Germany;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197842.89;1268896;1272986;1228866;1455838;1603981;1469443
-79;'276;Germany;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858656.6;2021145;1945713;1879474;2183467;2194905;2086180
-81;'288;Ghana;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434520;350106;287008;373937;299347;339311;332776
-81;'288;Ghana;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290943;323518;354553;207261;283753;254237;233985
-81;'288;Ghana;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2118;1964;2848;2854;4385;5384;4296;3617;4918;6729;5225;4138;8159;20703;16149;7134;4113;3605;3205;2835;8435;2790;3829;4329;9493;9608;15814;15876;12349;16249;11455;10298;10610;13041;11084;11983;17721;24016;20943;20882;18558;19940;34088;45620;46496;51779;51890;56219;57300;81801;80426.1;78895;78368;87768;91962;97694;129624;220081;167570;169584;151135;205644;226681
-81;'288;Ghana;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;43656;36537;38992;43846;36658;31461;29503;32376;41047;39286;36730;51095;123938;84121;74620;70978;70551;61771;41993;38940;18570;11184;13945;17784;26587;39522;91336;100073;76585;109701;106341;148188;146256;347890;170564;152321;140886;140950;186692;137614;139084;155315;170441;185950;219429;214895;280342;333395;178686;223034.4;271020;333625;265553;346690;255286;293746;271379;285049;336108;185096;238658;226513;209269
-81;'288;Ghana;1861;Roundwood;5516;Production;m3;8223000;8433000;8557000;8666000;8967000;8826000;8928000;9109000;9506000;9670000;9641000;10158000;10897000;10491000;10556000;10985000;11179000;10812000;10733000;10628000;10983000;11740000;13262000;13372000;13461000;13499000;13582000;13720000;13790000;14310000;12379000;16300000;19932000;22542000;23519166;24340525;25235762;26087359;26883907;27723457;28929105;29835088;31168142;32179033;33114547;34343530;35492900;36755400;37863781;39740966;40923647;42235470;43785188;44911574;46628427;47543347;48799988;50326628;49852861;52011401;54162027;55841811;56920905
-81;'288;Ghana;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;65;65;65;487;23017;9200;7354;1281;3709;11349;146565;33697;7155;10316;30534;42156;29709;14491;9519;11828
-81;'288;Ghana;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3;3;3;79;4293;1586;1077;170;794;2099;12395;9124;1458;2533;8541;14013;8717;4371;3707;3454
-81;'288;Ghana;1861;Roundwood;5916;Export quantity;m3;774900;576300;670500;688600;559800;476600;504200;569400;697000;472000;554000;747000;856000;434000;440000;345000;454300;312400;198400;104900;54100;53200;61600;70000;129900;176700;318600;338900;201000;140154;183659;168705;495600;653000;149900;25000;0;0;0;0;0;0;109;96379;115784;175827;281865;209243;158234;156658;171965;279197;256549;452620;391120;661768;334733;409076;403379;253369;300981;276128;148003
-81;'288;Ghana;1861;Roundwood;5922;Export value;1000 USD;25381;16247;20372;22709;18628;15298;14751;16930;23636;19480;23300;32141;77039;49002;42719;41265;49680;38386;18573;12398;4391;3469;4311;5140;9550;18440;39505;45420;23809;33886;42013;40909;56718;143758;24204;6000;0;0;0;0;0;0;29;11255;25217;25378;69040;93154;54698;56107.4;65763;118155;122943;223811;124734;186268;164618;169634;167318;80110;93965;78544;36150
-81;'288;Ghana;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-81;'288;Ghana;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8893;27902;40000;29706;14159;7767;7828
-81;'288;Ghana;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092;7757;13840;8713;4246;3062;3062
-81;'288;Ghana;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;5240;3457;17395;5007;6720;4984
-81;'288;Ghana;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;1200;1452;3877;2205;481;228
-81;'288;Ghana;1863;Roundwood, non-coniferous;5516;Production;m3;8223000;8433000;8557000;8666000;8967000;8826000;8928000;9109000;9506000;9670000;9641000;10158000;10897000;10491000;10556000;10985000;11179000;10812000;10733000;10628000;10983000;11740000;13262000;13372000;13461000;13499000;13582000;13720000;13790000;14310000;12379000;16300000;19932000;22542000;23519166;24340525;25235762;26087359;26883907;27723457;28929105;29835088;31168142;32179033;33114547;34343530;35492900;36755400;37863781;39690966;40873647;42185470;43735188;44861574;46578427;47493347;48749988;50276628;49802861;51961401;54112027;55791811;56870905
-81;'288;Ghana;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1423;2632;2156;3;332;1752;4000
-81;'288;Ghana;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;784;173;4;125;645;392
-81;'288;Ghana;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334423;403836;399922;235974;295974;269408;143019
-81;'288;Ghana;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164575;168434;165866;76233;91760;78063;35922
-81;'288;Ghana;1864;Wood fuel;5516;Production;m3;6286000;6491000;6693000;6881000;7046000;7190000;7319000;7445000;7584000;7750000;7950000;8179000;8421000;8650000;8848000;9014000;9158000;9301000;9462000;9647000;10052000;10949000;12307000;12388000;12411000;12429000;12562000;12750000;12870000;12870000;11000000;15000000;18100000;20678000;22236166;23085525;23957762;24860359;25781907;26725457;27717105;28731088;29768142;30829033;31914547;33039530;34188900;35363400;36563781;37790966;38984647;40203470;41448188;42719574;44018427;45203347;46409988;47638911;47638911;50165917;51453027;52764811;54101905
-81;'288;Ghana;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;13;0;0;0;0;614;508;2;;;;;;;0
-81;'288;Ghana;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;7;0;0;0;0;14;13;1;;;;;;;16
-81;'288;Ghana;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;109;92;92;92;92;92;14358;8027;5587;3607;3607;6500;3600;1300;189;2416;4669;1974;1974;168;32
-81;'288;Ghana;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;29;39;39;39;39;39;3731;1165;884;669;669;2024;1127;89;103;877;1058;1353;1353;34;67
-81;'288;Ghana;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-81;'288;Ghana;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38
-81;'288;Ghana;1628;Wood fuel, non-coniferous;5516;Production;m3;6286000;6491000;6693000;6881000;7046000;7190000;7319000;7445000;7584000;7750000;7950000;8179000;8421000;8650000;8848000;9014000;9158000;9301000;9462000;9647000;10052000;10949000;12307000;12388000;12411000;12429000;12562000;12750000;12870000;12870000;11000000;15000000;18100000;20678000;22236166;23085525;23957762;24860359;25781907;26725457;27717105;28731088;29768142;30829033;31914547;33039530;34188900;35363400;36563781;37790966;38984647;40203470;41448188;42719574;44018427;45203347;46409988;47638911;47638911;50165917;51453027;52764811;54101905
-81;'288;Ghana;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-81;'288;Ghana;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16
-81;'288;Ghana;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;2416;4669;1974;1974;168;19
-81;'288;Ghana;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;877;1058;1353;1353;34;29
-81;'288;Ghana;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;13;0;0;0;0;614;508;2;;;;;;;
-81;'288;Ghana;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;7;0;0;0;0;14;13;1;;;;;;;
-81;'288;Ghana;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;109;92;92;92;92;92;14358;8027;5587;3607;3607;6500;3600;1300;;;;;;;
-81;'288;Ghana;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;29;39;39;39;39;39;3731;1165;884;669;669;2024;1127;89;;;;;;;
-81;'288;Ghana;1865;Industrial roundwood;5516;Production;m3;1937000;1942000;1864000;1785000;1921000;1636000;1609000;1664000;1922000;1920000;1691000;1979000;2476000;1841000;1708000;1971000;2021000;1511000;1271000;981000;931000;791000;955000;984000;1050000;1070000;1020000;970000;920000;1440000;1379000;1300000;1832000;1864000;1283000;1255000;1278000;1227000;1102000;998000;1212000;1104000;1400000;1350000;1200000;1304000;1304000;1392000;1300000;1950000;1939000;2032000;2337000;2192000;2610000;2340000;2390000;2687717;2213950;1845484;2709000;3077000;2819000
-81;'288;Ghana;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;422;22952;9187;7354;1281;3709;11349;145951;33189;7153;10316;30534;42156;29709;14491;9519;11828
-81;'288;Ghana;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;76;4290;1579;1077;170;794;2099;12381;9111;1457;2533;8541;14013;8717;4371;3707;3438
-81;'288;Ghana;1865;Industrial roundwood;5916;Export quantity;m3;774900;576300;670500;688600;559800;476600;504200;569400;697000;472000;554000;747000;856000;434000;440000;345000;454300;312400;198400;104900;54100;53200;61600;70000;129900;176700;318600;338900;201000;140154;183659;168705;495600;653000;149900;25000;0;0;0;0;0;0;0;96287;115692;175735;281773;209151;143876;148631;166378;275590;252942;446120;387520;660468;334544;406660;398710;251395;299007;275960;147971
-81;'288;Ghana;1865;Industrial roundwood;5922;Export value;1000 USD;25381;16247;20372;22709;18628;15298;14751;16930;23636;19480;23300;32141;77039;49002;42719;41265;49680;38386;18573;12398;4391;3469;4311;5140;9550;18440;39505;45420;23809;33886;42013;40909;56718;143758;24204;6000;0;0;0;0;0;0;0;11216;25178;25339;69001;93115;50967;54942.4;64879;117486;122274;221787;123607;186179;164515;168757;166260;78757;92612;78510;36083
-81;'288;Ghana;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-81;'288;Ghana;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;389;18253;5501;6010;1277;2812;10082;145887;3668;5863;8893;27902;40000;29706;14159;7767;7828
-81;'288;Ghana;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;68;3065;907;602;168;351;1935;12334;1493;1059;2092;7757;13840;8713;4246;3062;3062
-81;'288;Ghana;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;388;959;146;309;21;122;550;460;120;520;468;310;5240;3457;17395;5007;6720;4971
-81;'288;Ghana;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;46;225;149;119;37;28;13;77;477;125;154;59;43;1200;1452;3877;2205;481;190
-81;'288;Ghana;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;389;18253;5501;6010;1277;2812;10082;145887;3668;5863;8893;27902;40000;29706;14159;7767;7828
-81;'288;Ghana;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;68;3065;907;602;168;351;1935;12334;1493;1059;2092;7757;13840;8713;4246;3062;3062
-81;'288;Ghana;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;388;959;146;309;21;122;550;460;120;520;468;310;5240;3457;17395;5007;6720;4971
-81;'288;Ghana;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;46;225;149;119;37;28;13;77;477;125;154;59;43;1200;1452;3877;2205;481;190
-81;'288;Ghana;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1937000;1942000;1864000;1785000;1921000;1636000;1609000;1664000;1922000;1920000;1691000;1979000;2476000;1841000;1708000;1971000;2021000;1511000;1271000;981000;931000;791000;955000;984000;1050000;1070000;1020000;970000;920000;1440000;1379000;1300000;1832000;1864000;1283000;1255000;1278000;1227000;1102000;998000;1212000;1104000;1400000;1350000;1200000;1304000;1304000;1392000;1300000;1900000;1889000;1982000;2287000;2142000;2560000;2290000;2340000;2637717;2163950;1795484;2659000;3027000;2769000
-81;'288;Ghana;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;33;4699;3686;1344;4;897;1267;64;29521;1290;1423;2632;2156;3;332;1752;4000
-81;'288;Ghana;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;8;1225;672;475;2;443;164;47;7618;398;441;784;173;4;125;645;376
-81;'288;Ghana;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140154;183659;168705;495600;653000;149900;25000;0;0;0;0;0;0;0;96287;115677;175347;280814;209005;143567;148610;166256;275040;252482;446000;387000;660000;334234;401420;395253;234000;294000;269240;143000
-81;'288;Ghana;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33886;42013;40909;56718;143758;24204;6000;0;0;0;0;0;0;0;11216;25132;25114;68852;92996;50930;54914.4;64866;117409;121797;221662;123453;186120;164472;167557;164808;74880;90407;78029;35893
-81;'288;Ghana;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;2471;705;4;8;1247;50;20;149;55;198;1226;2;215;679;4000
-81;'288;Ghana;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;319;295;2;4;155;25;10;69;26;101;135;4;100;251;376
-81;'288;Ghana;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140154;183659;168705;495600;653000;149900;25000;0;0;0;0;0;0;0;95939;115495;175186;280739;208934;143422;148609;166256;275040;252482;446000;387000;660000;334234;401420;395253;234000;294000;266548;143000
-81;'288;Ghana;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33886;42013;40909;56718;143758;24204;6000;0;0;0;0;0;0;0;11053;25063;25058;68832;92938;50873;54914;64866;117409;121797;221662;123453;186120;164472;167557;164808;74880;90407;77379;35893
-81;'288;Ghana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;33;4664;1215;639;0;889;20;14;29501;1141;1368;2434;930;1;117;1073;0
-81;'288;Ghana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;8;1175;353;180;0;439;9;22;7608;329;415;683;38;0;25;394;0
-81;'288;Ghana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;182;161;75;71;145;1;0;0;0;0;0;0;0;0;0;0;0;2692;0
-81;'288;Ghana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;69;56;20;58;57;0.4;0;0;0;0;0;0;0;0;0;0;0;650;0
-81;'288;Ghana;1868;Sawlogs and veneer logs;5516;Production;m3;1662000;1637000;1614000;1458000;1594000;1389000;1342000;1389000;1595000;1565000;1446000;1597000;2076000;1439000;1332000;1590000;1640000;1130000;890000;600000;550000;410000;574000;603000;700000;720000;720000;720000;720000;1290000;1229000;1170000;1682000;1800000;1194000;1166000;1189000;1138000;1102000;998000;1212000;1104000;1400000;1350000;1200000;1304000;1304000;1392000;1300000;1250000;1289000;1282000;1587000;1442000;1860000;1590000;1640000;1937717;1463950;1095484;1959000;2327000;2069000
-81;'288;Ghana;1868;Sawlogs and veneer logs;5916;Export quantity;m3;774900;576300;670500;688600;559800;476600;504200;569400;697000;472000;554000;747000;856000;434000;440000;345000;454300;312400;198400;104900;54100;53200;61600;70000;129900;176700;318600;338900;201000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;25381;16247;20372;22709;18628;15298;14751;16930;23636;19480;23300;32141;77039;49002;42719;41265;49680;38386;18573;12398;4391;3469;4311;5140;9550;18440;39505;45420;23809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1662000;1637000;1614000;1458000;1594000;1389000;1342000;1389000;1595000;1565000;1446000;1597000;2076000;1439000;1332000;1590000;1640000;1130000;890000;600000;550000;410000;574000;603000;700000;720000;720000;720000;720000;1290000;1229000;1170000;1682000;1800000;1194000;1166000;1189000;1138000;1102000;998000;1212000;1104000;1400000;1350000;1200000;1304000;1304000;1392000;1300000;1250000;1289000;1282000;1587000;1442000;1860000;1590000;1640000;1937717;1463950;1095484;1959000;2327000;2069000
-81;'288;Ghana;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;774900;576300;670500;688600;559800;476600;504200;569400;697000;472000;554000;747000;856000;434000;440000;345000;454300;312400;198400;104900;54100;53200;61600;70000;129900;176700;318600;338900;201000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;25381;16247;20372;22709;18628;15298;14751;16930;23636;19480;23300;32141;77039;49002;42719;41265;49680;38386;18573;12398;4391;3469;4311;5140;9550;18440;39505;45420;23809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1871;Other industrial roundwood;5516;Production;m3;275000;305000;250000;327000;327000;247000;267000;275000;327000;355000;245000;382000;400000;402000;376000;381000;381000;381000;381000;381000;381000;381000;381000;381000;350000;350000;300000;250000;200000;150000;150000;130000;150000;64000;89000;89000;89000;89000;0;0;0;0;0;0;0;0;0;0;0;700000;650000;750000;750000;750000;750000;750000;750000;750000;750000;750000;750000;750000;750000
-81;'288;Ghana;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-81;'288;Ghana;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;275000;305000;250000;327000;327000;247000;267000;275000;327000;355000;245000;382000;400000;402000;376000;381000;381000;381000;381000;381000;381000;381000;381000;381000;350000;350000;300000;250000;200000;150000;150000;130000;150000;64000;89000;89000;89000;89000;0;0;0;0;0;0;0;0;0;0;0;650000;600000;700000;700000;700000;700000;700000;700000;700000;700000;700000;700000;700000;700000
-81;'288;Ghana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1630;Wood charcoal;5510;Production;t;102110;109577;117590;126188;135416;145318;155944;167347;179585;192716;212664;231942;250719;271149;290633;310313;330351;349489;370157;384000;398000;431000;491000;507000;508000;509000;527000;529000;533000;533000;752000;752000;752000;778700;816100;859400;903600;948700;993700;1038800;1091000;1143100;1195300;1247500;1299600;1358977;1418300;1477700;1537039;1596393;1654622;1712851;1771080;1829309;1887538;1944250;2000962;2057674;2057674;2171097;2225801;2280505;2335209
-81;'288;Ghana;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;4;4;4;4;68;40;209;24;17;30;54;2244;77;7
-81;'288;Ghana;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;5;15;9;9;41;17;67;19;15;21;149;181;46;35
-81;'288;Ghana;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;47;0;0;0;0;0;0;0;0;3709;2789;2789;2366;2366;2366;2366;1267;739;1920;1920;3217;2222;9223;9843;15137;592;884;9;51;109
-81;'288;Ghana;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;26;0;0;0;0;0;0;0;0;1141;971;971;350;350;350;350;183;687;826;826;1385;910;1932;2419;4345;138;224;99;146;164
-81;'288;Ghana;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1;1;1;1;1;1;37;0;0;0;0;0;8;37;7;7;204;1638;2119;12
-81;'288;Ghana;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;7;7;7;7;7;17;0;0;0;0;0;18;29;0;0;82;1088;1363;115
-81;'288;Ghana;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;232;264;264;416;416;416;420;7305;6634;162821;139974;46402;70;210;26;281;84;99;53;126;126
-81;'288;Ghana;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;156;175;175;117;117;117;126;5683;2826;7129;3560;3401;83;13;1;82;43;35;8;15;15
-81;'288;Ghana;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;197;1631;2119;12
-81;'288;Ghana;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;82;1088;1363;115
-81;'288;Ghana;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6905;2816;139974;139974;46053;0;128;26;5;46;46;0;126;126
-81;'288;Ghana;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5601;2454;3560;3560;3392;0;11;1;1;27;27;0;15;15
-81;'288;Ghana;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1;1;1;1;1;1;37;0;0;0;0;0;8;37;7;7;7;7;0;0
-81;'288;Ghana;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;7;7;7;7;7;17;0;0;0;0;0;18;29;0;0;0;0;0;0
-81;'288;Ghana;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;232;264;264;416;416;416;416;400;3818;22847;0;349;70;82;0;276;38;53;53;0;0
-81;'288;Ghana;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;156;175;175;117;117;117;117;82;372;3569;0;9;83;2;0;81;16;8;8;0;0
-81;'288;Ghana;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;2000;2000
-81;'288;Ghana;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;29;0;1;0;19
-81;'288;Ghana;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;11;0;2;10;19
-81;'288;Ghana;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;92;192;116;216;216;663;663;792;459;360
-81;'288;Ghana;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;37;44;18;35;35;184;184;221;125;96
-81;'288;Ghana;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;0;0;0;0;19
-81;'288;Ghana;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;0;0;1;0;18
-81;'288;Ghana;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;92;192;116;216;216;360;360;360;360;360
-81;'288;Ghana;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;37;44;18;35;35;88;88;88;88;88
-81;'288;Ghana;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;2000;2000
-81;'288;Ghana;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;1;0;0
-81;'288;Ghana;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;1;10;1
-81;'288;Ghana;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;303;432;99;0
-81;'288;Ghana;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;133;37;8
-81;'288;Ghana;1872;Sawnwood;5516;Production;m3;422000;428000;411000;342000;455500;403400;220100;265400;369600;359400;343000;352000;374000;457000;403000;381000;585000;385000;345000;225000;225000;215000;275000;285000;345000;355000;455000;455000;537000;472000;400000;420000;504000;801000;612000;604000;575000;590000;454000;475000;480000;461000;496000;480000;530000;537000;530000;523000;532000;513000;515000;519000;511000;521000;534000;534000;533780;533780;533780;677994;525000;525000;525000
-81;'288;Ghana;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;34;82;73;200;700;700;200;200;200;200;200;200;1530;5463;3328;2579;558;2448;1874;687;2954;2220;2886;2062;2645;8486;47585;7670;2374;2494;3080
-81;'288;Ghana;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;9;20;16;17;240;240;59;59;59;59;59;59;536;1834;1335;1017;330;2320;413;462;1099;534;811;616;808;1821;4942;1928;809;572;582
-81;'288;Ghana;1872;Sawnwood;5916;Export quantity;m3;246400;264000;236900;252100;229800;205000;189500;215100;219100;240900;185800;250300;305000;169000;165000;139000;73100;77200;77600;69400;52900;39600;42600;56400;80300;102300;172900;169600;154000;200500;185100;202066;239712;249860;287100;229800;271300;254300;251100;244100;237000;213636;199000;210000;259198;216793;212037;239461;118574;181017;171651;96745;93617;103217;90723;116934;200804;128264;219126;239368;196431;238097;282347
-81;'288;Ghana;1872;Sawnwood;5922;Export value;1000 USD;17372;18017;16257;18661;16009;13972;11228;12050;14664;16748;11484;16092;36327;29542;24506;23566;18840;20467;20508;23212;11974;6640;7686;10051;14077;18000;43636;45365;43676;64053;51295;87474;72812;164648;110058;105449;95326;91661;89596;76869;75030;77383;84856;91046;110051;96717;101582;125868;71125;80259;123220;77468;69660;74810;71836;64463;64126;74490;90495;78006;86442;103621;111925
-81;'288;Ghana;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;29000;54000;54000;54000;0;0;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-81;'288;Ghana;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;25;73;73;200;700;700;200;200;200;200;200;200;936;1739;1245;2113;25;2435;824;618;2302;1740;2047;1515;1998;7623;47040;7544;2181;868;2080
-81;'288;Ghana;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;16;16;17;240;240;59;59;59;59;59;59;131;267;181;736;15;1964;142;171;818;330;409;298;450;1734;4749;1852;687;140;150
-81;'288;Ghana;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2235;512;860;900;4800;1300;1300;1100;1100;0;6636;0;0;5712;7233;6037;6269;5024;3537;2590;2214;1087;2654;1193;1836;794;481;126;1530;953;3356;2000
-81;'288;Ghana;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;682;135;336;336;1449;745;745;262;262;0;2100;0;0;1823;2672;1814;2094;1102;1112;1007;833;262;874;391;504;132;137;48;541;454;409;464
-81;'288;Ghana;1633;Sawnwood, non-coniferous;5516;Production;m3;422000;428000;411000;342000;455500;403400;220100;265400;369600;359400;343000;352000;374000;457000;403000;381000;585000;385000;345000;225000;225000;215000;275000;285000;345000;355000;455000;455000;537000;472000;400000;410000;475000;747000;558000;550000;575000;590000;454000;475000;480000;461000;496000;480000;520000;527000;520000;513000;522000;503000;505000;509000;501000;511000;524000;524000;523780;523780;523780;667994;515000;515000;515000
-81;'288;Ghana;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;9;9;0;0;0;0;0;0;0;0;0;0;594;3724;2083;466;533;13;1050;69;652;480;839;547;647;863;545;126;193;1626;1000
-81;'288;Ghana;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;4;4;0;0;0;0;0;0;0;0;0;0;405;1567;1154;281;315;356;271;291;281;204;402;318;358;87;193;76;122;432;432
-81;'288;Ghana;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;246400;264000;236900;252100;229800;205000;189500;215100;219100;240900;185800;250300;305000;169000;165000;139000;73100;77200;77600;69400;52900;39600;42600;56400;80300;102300;172900;169600;154000;200500;185100;199831;239200;249000;286200;225000;270000;253000;250000;243000;237000;207000;199000;210000;253486;209560;206000;233192;113550;177480;169061;94531;92530;100563;89530;115098;200010;127783;219000;237838;195478;234741;280347
-81;'288;Ghana;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;17372;18017;16257;18661;16009;13972;11228;12050;14664;16748;11484;16092;36327;29542;24506;23566;18840;20467;20508;23212;11974;6640;7686;10051;14077;18000;43636;45365;43676;64053;51295;86792;72677;164312;109722;104000;94581;90916;89334;76607;75030;75283;84856;91046;108228;94045;99768;123774;70023;79147;122213;76635;69398;73936;71445;63959;63994;74353;90447;77465;85988;103212;111461
-81;'288;Ghana;1634;Veneer sheets;5516;Production;m3;1000;1200;700;1000;1400;1200;1700;100;700;500;3000;4700;6800;18400;15400;13500;18000;19000;17000;22000;23000;21000;15000;24000;34000;34000;34000;34000;26000;46000;21000;25000;33000;105000;58000;67000;75000;90000;150000;245000;259000;264000;300000;300000;300000;213000;237000;247000;275000;274000;273000;274000;272000;269000;262000;262000;262000;262000;262000;222000;222000;222000;223000
-81;'288;Ghana;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;24;24;24;0;0;0;0;0;0;0;0;0;42;221;269;447;35;395;267;374;199;94;245;189;276;96;73;25;255;1985
-81;'288;Ghana;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;32;32;32;0;0;0;0;0;0;0;0;0;66;357;229;104;48;406;150;164;204;235;98;93;248;161;404;179;392;7198
-81;'288;Ghana;1634;Veneer sheets;5916;Export quantity;m3;1000;900;400;400;400;200;200;100;500;400;2000;3700;4100;8800;7500;2000;5500;7800;5500;7500;7100;5300;8800;11500;13400;16100;21300;20800;15000;17300;19400;18233;25100;35000;46200;53700;66000;84000;101000;110000;114000;117000;108000;103000;99819;72048;69655;70462;40570;25593;29861;25181;29334;28029;20325;20001;17851;15417;13649;11677;14390;15555;19416
-81;'288;Ghana;1634;Veneer sheets;5922;Export value;1000 USD;85;118;100;104;111;73;41;16;145;78;222;640;645;1708;1444;460;1372;2145;2331;2935;2161;1024;1679;2534;2855;3000;7544;8678;8798;11187;12438;19273;15447;38659;34911;33412;36520;45371;89601;48660;50556;55004;59483;59382;59289;49571;56493;55817;36359;47889;30940;25334;27223;21026;36208;31794;26842;25034;20980;17293;21104;24024;39950
-81;'288;Ghana;1873;Wood-based panels;5516;Production;m3;7800;15700;19500;14200;19800;28800;26800;27100;25200;33300;41200;49100;53200;59000;40000;59000;54800;47500;45500;56500;50500;46500;34500;33500;26000;30000;30000;30000;27000;34000;38000;35000;35000;26000;38000;38000;68000;79000;83000;98000;122000;112000;113000;135000;128000;136000;181000;221000;199000;170890;178890;180890;183890;183890;187890;187890;188000;188000;188000;136014;145000;145000;145000
-81;'288;Ghana;1873;Wood-based panels;5616;Import quantity;m3;2500;1500;600;500;1300;600;100;;;;;;;;;;;;;;;;;;;;;;;;;988;882;638;900;900;700;700;100;0;0;140;441;1488;1448;1434;1929;3222;701;7604;5520;6450;7630;9333;10129;15138;25410;33949;33507;64007;103998;54098;101783
-81;'288;Ghana;1873;Wood-based panels;5622;Import value;1000 USD;204;108;45;49;82;35;6;;;;;;;;;;;;;;;;;;;;;;;;;184;212;184;189;189;151;151;61;0;0;127;377;821;856;831;1074;1635;308;8033;2439;2434;2977;6111;6478;7075;8915;13645;13797;21788;36855;31802;84466
-81;'288;Ghana;1873;Wood-based panels;5916;Export quantity;m3;4100;12300;13800;14200;11700;13600;10600;7900;18900;21700;12400;16700;46900;16300;17700;17300;1900;1800;1800;1500;100;300;900;200;900;700;1400;1500;1000;1900;1400;518;2800;1200;3800;19100;26000;12000;25000;47000;53000;90280;80190;74454;70226;111998;139586;146958;34365;52837;45127;47681.14;29702.14;57236.14;50948.14;17944;24783;18777;26329;26569;30828;41743;49386
-81;'288;Ghana;1873;Wood-based panels;5922;Export value;1000 USD;818;2155;2263;2372;1910;2118;3483;3380;2602;2980;1724;2222;9927;3869;5951;5687;659;773;581;395;44;51;269;59;105;82;651;610;302;575;595;417;1210;732;1391;7460;9040;3918;7495;12085;13498;22928;24560;23004;23609;42645;52643;57972;15788;32000;43425;100831;37865;19097;18926;6932;9947;6611;7974;8556;11962;13492;14191
-81;'288;Ghana;1640;Plywood and LVL;5516;Production;m3;7800;15700;19500;14200;19800;28800;26800;27100;25200;33300;41200;49100;53200;59000;40000;59000;47300;40000;38000;49000;43000;39000;27000;26000;21000;25000;25000;25000;22000;29000;35000;32000;32000;23000;35000;35000;65000;71000;75000;90000;114000;104000;105000;127000;120000;128000;173000;213000;191000;162890;170890;172890;175890;175890;179890;179890;180000;180000;180000;128014;137000;137000;137000
-81;'288;Ghana;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927;712;400;900;900;700;700;100;0;0;140;56;346;306;292;787;2080;217;2192;4433;4047;5227;6232;7164;9933;16024;18791;13330;36068;82919;40799;88698
-81;'288;Ghana;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;170;94;189;189;151;151;61;0;0;127;66;184;219;194;437;998;130;851;1926;1489;2032;3602;3717;4759;5593;7482;8169;15200;26670;21682;77327
-81;'288;Ghana;1640;Plywood and LVL;5916;Export quantity;m3;4100;12300;13800;14200;11700;13600;10600;7900;18900;21700;12400;16700;46900;16300;17700;17300;1900;1800;1800;1500;100;300;900;200;900;700;1400;1500;1000;1900;1400;518;2800;1200;3800;19100;26000;12000;25000;47000;53000;90280;80000;74000;69772;111544;139132;146504;34214;52374;44650;47658;29679;57089;50814;17745;24477;18633;26017;26095;30588;41683;49152
-81;'288;Ghana;1640;Plywood and LVL;5922;Export value;1000 USD;818;2155;2263;2372;1910;2118;3483;3380;2602;2980;1724;2222;9927;3869;5951;5687;659;773;581;395;44;51;269;59;105;82;651;610;302;575;595;417;1210;732;1391;7460;9040;3918;7495;12085;13498;22928;24478;22739;23344;42380;52378;57707;15736;31894;43300;100820;37854;19017;18851;6787;9760;6572;7929;8429;11862;13457;14126
-81;'288;Ghana;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;7500;7500;7500;7500;7500;7500;7500;7500;5000;5000;5000;5000;5000;5000;3000;3000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;2500;1500;600;500;1300;600;100;;;;;;;;;;;;;;;;;;;;;;;;;42;152;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;204;108;45;49;82;35;6;;;;;;;;;;;;;;;;;;;;;;;;;15;33;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-81;'288;Ghana;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;178;260;260;260;260;260;38;47;371;648;648;141;71;1088;2428;2428;5117;9903;1424;625;341
-81;'288;Ghana;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;166;190;190;190;190;190;15;38;180;287;287;318;184;720;925;925;1431;2591;4161;4735;2337
-81;'288;Ghana;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;156;151;151;151;151;151;151;463;463;2;2;104;104;145;80;80;0;50;0;0;0
-81;'288;Ghana;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;55;52;52;52;52;52;52;106;106;1;1;48;48;62;16;16;0;10;5;9;0
-81;'288;Ghana;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;160;1097;1153;1141;2031;351;134;108;51
-81;'288;Ghana;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;259;375;232;416;371;61;811;683;330
-81;'288;Ghana;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;18;238;0;0;0;0;0;0;0;0;207;882;882;882;882;882;446;5365;716;1755;1755;2779;2734;3020;5805;11589;13029;17685;19521;12566;12693
-81;'288;Ghana;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;90;0;0;0;0;0;0;0;0;145;447;447;447;447;447;163;7144;333;658;658;1659;2318;1221;2165;4822;3826;3936;5213;4702;4472
-81;'288;Ghana;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;303;303;303;303;303;0;0;14;21.14;21.14;43.14;30.14;54;226;64;312;424;240;60;234
-81;'288;Ghana;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;213;213;213;213;213;0;0;19;10;10;32;27;83;171;23;45;117;95;26;65
-81;'288;Ghana;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;158;158;158;158;158;158;5109;5;68;68;86;50;202;109;173;790;388;89;12;11
-81;'288;Ghana;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;128;128;128;128;128;128;7095;9;68;68;83;52;122;116;111;123;182;47;109;132
-81;'288;Ghana;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;159;159;159;159;159;0;0;0;0.14;0.14;0.14;0.14;12;12;27;27;27;27;27;27
-81;'288;Ghana;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;193;193;193;193;193;0;0;0;2;2;2;2;33;33;5;5;5;5;5;5
-81;'288;Ghana;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;530;530;530;530;530;94;62;707;1635;1635;2610;2522;2416;5232;9701;10346;13482;16221;12495;12530
-81;'288;Ghana;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;308;308;308;308;308;24;38;322;573;573;1519;2101;940;1750;3654;3207;3514;4450;4234;4192
-81;'288;Ghana;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;5;27;27;32;204;27;56;396;213;33;206
-81;'288;Ghana;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;1;23;23;37;125;5;8;111;90;21;55
-81;'288;Ghana;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;18;238;0;0;0;0;0;0;0;0;7;194;194;194;194;194;194;194;4;52;52;83;162;402;464;1715;1893;3815;3211;59;152
-81;'288;Ghana;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;90;0;0;0;0;0;0;0;0;2;11;11;11;11;11;11;11;2;17;17;57;165;159;299;1057;496;240;716;359;148
-81;'288;Ghana;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;144;144;144;144;144;0;0;0;16;16;16;3;10;10;10;229;1;0;0;1
-81;'288;Ghana;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;20;20;20;20;20;0;0;0;7;7;7;2;13;13;13;32;1;0;0;5
-81;'288;Ghana;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;7000;7000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-81;'288;Ghana;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3824;2255;2128;2900;2900;1200;2200;2200;2200;2500;2500;1388;2645;2645;3620;3620;3620;1469;941;926;1363;1363;1016;363;1928;3179;7840;10122;13200;10087;33963;28753
-81;'288;Ghana;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;451;186;501;501;108;126;193;193;194;194;632;1108;1108;1351;1351;1351;979;647;918;1290;1290;571;242;1098;1700;3485;2986;3268;2692;6684;18067
-81;'288;Ghana;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;406;406;0;0;0;0;0;0;0;0;460;648;648;648;648;648;1240;2843;9131;6235;6235;2897;719;555;1321;1321;574;2;1214;632;33
-81;'288;Ghana;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;41;41;0;0;0;0;0;0;0;0;12;18;18;18;18;18;77;388;2270;1120;1120;662;153;166;233;233;26;2;169;123;50
-81;'288;Ghana;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896;679;0;0;0;0;0;0;0;0;0;220;266;266;266;266;266;184;120;287;483;483;511;254;603;801;3229;3943;2630;2129;2389;10427
-81;'288;Ghana;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;212;0;0;0;0;0;0;0;0;0;234;255;255;255;255;255;229;190;352;525;525;514;235;533;449;1721;1262;1034;1217;2056;15300
-81;'288;Ghana;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;8;32
-81;'288;Ghana;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;1;35
-81;'288;Ghana;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896;679;0;0;0;0;0;0;0;0;0;220;266;266;266;266;266;184;120;288;483;483;511;254;601;726;3154;3943;2630;2129;2292;10450
-81;'288;Ghana;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;212;0;0;0;0;0;0;0;0;0;234;255;255;255;255;255;229;190;352.1;525;525;514;235;504;410;1682;1262;1034;1204;2008;15293
-81;'288;Ghana;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24
-81;'288;Ghana;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34
-81;'288;Ghana;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;552;1801;45;390;7;0
-81;'288;Ghana;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;322;615;28;271;29;193
-81;'288;Ghana;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;
-81;'288;Ghana;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;
-81;'288;Ghana;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;0;0;0;0;0;0;0;0;;;;;;;
-81;'288;Ghana;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;0;0;0;0;0;0;0;0;;;;;;;
-81;'288;Ghana;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896;679;0;0;0;0;0;0;0;0;0;211;257;257;257;257;257;184;120;287;483;483;511;254;601;531;2602;2142;2585;1739;2261;10426
-81;'288;Ghana;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;212;0;0;0;0;0;0;0;0;0;227;248;248;248;248;248;229;190;352;525;525;514;235;504;349;1360;647;1006;933;1959;15080
-81;'288;Ghana;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24
-81;'288;Ghana;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34
-81;'288;Ghana;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;66;44;173;281;281;281;72;146;320;320;529;504;566;48;0
-81;'288;Ghana;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;59;53;209;287;287;287;52;159;258;258;112;374;224;28;0
-81;'288;Ghana;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896;679;0;0;0;0;0;0;0;0;0;144;118;118;118;118;118;91;49;114;202;202;218;171;157;209;2155;1612;2076;1160;2213;10336
-81;'288;Ghana;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;212;0;0;0;0;0;0;0;0;0;99;76;76;76;76;76;89;56;142;238;238;157;114;109;85;1057;533;594;689;1902;14994
-81;'288;Ghana;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24
-81;'288;Ghana;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34
-81;'288;Ghana;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;127;1;5;13;0;90
-81;'288;Ghana;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;45;2;38;20;29;86
-81;'288;Ghana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;27;27;27;27;27;27;27;0;0;0;12;11;298;;;;;;;
-81;'288;Ghana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;81;81;81;81;81;81;81;1;0;0;70;69;236;;;;;;;
-81;'288;Ghana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;24;24
-81;'288;Ghana;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0.1;0;0;0;0;0;0;0;0;0;0;20;20
-81;'288;Ghana;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;75;75;0;0;0;121;1
-81;'288;Ghana;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;29;39;39;0;0;13;68;27
-81;'288;Ghana;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;8;8
-81;'288;Ghana;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;1;1
-81;'288;Ghana;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;56;56;56;56;50;61;1882;6555;3516;15881;18286;6476
-81;'288;Ghana;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;75;75;75;75;17;34;1270;1454;753;3910;26699;9453
-81;'288;Ghana;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;7000;7000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-81;'288;Ghana;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2928;1576;2128;2900;2900;1200;2200;2200;2200;2500;2500;1168;2379;2379;3354;3354;3354;1285;821;639;880;880;505;109;1325;2378;4611;6179;10570;7958;31574;18326
-81;'288;Ghana;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;239;186;501;501;108;126;193;193;194;194;398;853;853;1096;1096;1096;750;457;566;765;765;57;7;565;1251;1764;1724;2234;1475;4628;2767
-81;'288;Ghana;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;406;406;0;0;0;0;0;0;0;0;460;648;648;648;648;648;1240;2843;9131;6235;6235;2897;719;553;1319;1319;572;0;1212;624;1
-81;'288;Ghana;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;41;41;0;0;0;0;0;0;0;0;12;18;18;18;18;18;77;388;2270;1120;1120;662;153;164;231;231;24;0;167;122;15
-81;'288;Ghana;1876;Paper and paperboard;5610;Import quantity;t;7700;7200;11800;22800;36600;42700;24800;19700;17500;20200;17500;13400;22600;40000;31000;13200;11800;9600;8000;6700;10700;4000;6900;7800;14600;13100;23100;20600;16200;19600;17600;14305;16051;19834;12800;15900;21700;38769;36400;36400;36200;44500;59576;76317;75937;65269;65269;65269;67429;82725;82898;80412;77872;79196;101509;108001;136735;232493;225599;210842;132470;114708;112571
-81;'288;Ghana;1876;Paper and paperboard;5622;Import value;1000 USD;1914;1856;2803;2805;4303;5349;4290;3617;4918;6729;5225;4138;8159;20703;16149;7134;4113;3605;3205;2835;8435;2790;3829;4329;9493;9608;15814;15876;12349;16249;11455;9182;9918;12619;10346;11244;17222;23499;20630;20630;18305;19560;33016;43555;43919;47620;47620;47620;53919;69654;76034;73681;70655;67837;74978;87247;115492;191055;130185;132495;101048;134349;103272
-81;'288;Ghana;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;4;30;0;0;0;0;0;0;0;0;563;263;263;263;263;263;103;1955;1831.3;2169;1416;2370;1928;1980;3368;4208;4305;835;25410;19464;14900
-81;'288;Ghana;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;26;0;0;0;0;0;0;0;0;204;99;99;99;99;99;163;525;1889;2762;2291;2461;2392;2160;3158;4585;48950;686;24688;6423;6728
-81;'288;Ghana;2042;Graphic papers;5610;Import quantity;t;5500;5900;8400;17900;23500;32900;18300;14700;11600;11200;7700;8700;11400;21200;14000;10400;9900;7700;6100;4800;6800;2600;3900;4800;9500;7400;9200;9300;10700;13300;12900;10970;8117;7033;5500;8600;12000;21500;22000;22000;18700;21500;29847;30657;30657;31843;31843;31843;39280;47675;46751;49763;49763;44626;40309;54900;62201;123447;97836;72244;46109;39753;30721
-81;'288;Ghana;2042;Graphic papers;5622;Import value;1000 USD;1159;1290;1591;1380;2297;2509;2223;1745;2367;2449;2198;2159;4046;11410;7791;5697;3234;2726;2326;1956;5335;1690;2600;3100;6700;6476;7443;8014;9240;12012;7642;6777;5728;5653;4390;5288;9037;13105;12795;12795;10416;9270;17709;19296;19296;27194;27194;27194;35812;43473;45820;46553;46553;37656;32004;42538;56969;108553;60346;49426;31209;59201;53182
-81;'288;Ghana;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;4;30;0;0;0;;;;;;40;2;2;2;2;2;9;50;89.3;210;210;693;196;631;1050;1909;412;110;194;791;1337
-81;'288;Ghana;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;26;0;0;0;;;;;;42;6;6;6;6;6;52;55;133;729;729;442;184;588;1204;2347;47429;124;289;954;656
-81;'288;Ghana;1671;Newsprint;5610;Import quantity;t;3300;4300;5200;11700;18900;28300;10300;5700;6500;3600;3900;6000;7600;11300;7300;5800;6600;4400;2800;1500;1500;1000;2300;3200;4000;1600;2100;2000;1800;6000;8400;564;2040;1144;4500;7600;3400;9700;8600;8600;6500;14400;11110;9639;9639;14573;14573;14573;11209;11579;11657;10235;10235;6287;12355;14809;13351;16119;19914;12036;6716;6801;6754
-81;'288;Ghana;1671;Newsprint;5622;Import value;1000 USD;527;654;594;630;831;1438;1006;561;811;891;1091;1258;1802;3892;3188;2068;1708;1200;800;430;435;290;1200;1700;2100;850;1115;1029;1900;4172;3122;193;1068;586;3058;3956;1326;3896;3690;3690;2799;4595;4709;5523;5523;11140;11140;11140;7536;7820;8965;7919;7919;3551;7693;8924;7693;11543;10176;4544;2665;4710;9927
-81;'288;Ghana;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;279;147;25;59;25;17;11;0;585;109
-81;'288;Ghana;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;120;177;161;27;57;11;23;3;30;727;286
-81;'288;Ghana;1674;Printing and writing papers;5610;Import quantity;t;2200;1600;3200;6200;4600;4600;8000;9000;5100;7600;3800;2700;3800;9900;6700;4600;3300;3300;3300;3300;5300;1600;1600;1600;5500;5800;7100;7300;8900;7300;4500;10406;6077;5889;1000;1000;8600;11800;13400;13400;12200;7100;18737;21018;21018;17270;17270;17270;28071;36096;35094;39528;39528;38339;27954;40091;48850;107328;77922;60208;39393;32952;23967
-81;'288;Ghana;1674;Printing and writing papers;5622;Import value;1000 USD;632;636;997;750;1466;1071;1217;1184;1556;1558;1107;901;2244;7518;4603;3629;1526;1526;1526;1526;4900;1400;1400;1400;4600;5626;6328;6985;7340;7840;4520;6584;4660;5067;1332;1332;7711;9209;9105;9105;7617;4675;13000;13773;13773;16054;16054;16054;28276;35653;36855;38634;38634;34105;24311;33614;49276;97010;50170;44882;28544;54491;43255
-81;'288;Ghana;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;4;30;0;0;0;;;;;;40;2;2;2;2;2;9;50;7.3;128;128;414;49;606;991;1884;395;99;194;206;1228
-81;'288;Ghana;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;26;0;0;0;;;;;;42;6;6;6;6;6;52;55;13;609;609;265;23;561;1147;2336;47406;121;259;227;370
-81;'288;Ghana;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;549;549;500;1300;2201;1471;1471;435;435;435;382;1671;772;621;621;1705;1350;2459;2018;1212;1771;2386;252;149;428
-81;'288;Ghana;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;437;437;366;821;1737;1143;1143;372;372;372;643;2924;807;419;419;1516;1972;4261;1545;996;1159;1403;873;826;1081
-81;'288;Ghana;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;16;0.3;19;19;9;9;303;55;55;16;2;0;4;0
-81;'288;Ghana;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;41;3;551;551;1;1;48;134;134;33;3;1;8;0
-81;'288;Ghana;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8995;10215;10215;9300;3400;13893;14774;14774;12600;12600;12600;23455;28729;28475;33307;33307;28055;17059;28843;36564;44159;63892;49604;29479;25957;21103
-81;'288;Ghana;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6837;6760;6760;5655;2258;8967;8378;8378;11138;11138;11138;23848;27072;29642;32487;32487;24087;14667;22842;32130;42156;41165;39227;16893;44150;38821
-81;'288;Ghana;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;1;1;1;1;1;1;1;6;34;34;367;2;154;4;630;63;29;143;201;1228
-81;'288;Ghana;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;2;2;2;2;8;2;9;49;49;243;1;385;6;319;52;15;134;217;345
-81;'288;Ghana;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2321;2636;2636;2400;2400;2643;4773;4773;4235;4235;4235;4234;5696;5847;5600;5600;8579;9545;8789;10268;61957;12259;8218;9662;6846;2436
-81;'288;Ghana;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930;1908;1908;1596;1596;2296;4252;4252;4544;4544;4544;3785;5657;6406;5728;5728;8502;7672;6511;15601;53858;7846;4252;10778;9515;3353
-81;'288;Ghana;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;33;1;75;75;38;38;149;932;1199;316;68;51;1;0
-81;'288;Ghana;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;12;1;9;9;21;21;128;1007;1883;47321;103;124;2;25
-81;'288;Ghana;1675;Other paper and paperboard;5610;Import quantity;t;2200;1300;3400;4900;13100;9800;6500;5000;5900;9000;9800;4700;11200;18800;17000;2800;1900;1900;1900;1900;3900;1400;3000;3000;5100;5700;13900;11300;5500;6300;4700;3335;7934;12801;7300;7300;9700;17269;14400;14400;17500;23000;29729;45660;45280;33426;33426;33426;28149;35050;36147;30649;28109;34570;61200;53101;74534;109046;127763;138598;86361;74955;81850
-81;'288;Ghana;1675;Other paper and paperboard;5622;Import value;1000 USD;755;566;1212;1425;2006;2840;2067;1872;2551;4280;3027;1979;4113;9293;8358;1437;879;879;879;879;3100;1100;1229;1229;2793;3132;8371;7862;3109;4237;3813;2405;4190;6966;5956;5956;8185;10394;7835;7835;7889;10290;15307;24259;24623;20426;20426;20426;18107;26181;30214;27128;24102;30181;42974;44709;58523;82502;69839;83069;69839;75148;50090
-81;'288;Ghana;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;523;261;261;261;261;261;94;1905;1742;1959;1206;1677;1732;1349;2318;2299;3893;725;25216;18673;13563
-81;'288;Ghana;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;162;93;93;93;93;93;111;470;1756;2033;1562;2019;2208;1572;1954;2238;1521;562;24399;5469;6072
-81;'288;Ghana;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;500;1300;970;2486;2486;1400;1400;1400;529;873;967;1669;1669;2037;3447;4037;7615;6747;7995;30764;17513;8832;6922
-81;'288;Ghana;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;436;1140;850;1920;1920;980;980;980;593;1192;1366;2263;2263;3869;5516;4052;7228;6621;6121;33743;11201;14288;11076
-81;'288;Ghana;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;3;50;50;32;28;347;649;370;46;4;16049;98;10
-81;'288;Ghana;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;8;102;102;26;11;479;395;204;98;3;18792;71;43
-81;'288;Ghana;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17269;14400;14400;15000;21100;27300;28962;28582;28026;28026;28026;25830;33727;34779;27633;25093;31967;57555;48306;66235;101572;119182;105460;68599;65819;74649
-81;'288;Ghana;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10394;7835;7835;5880;8025;12069;11675;12039;13946;13946;13946;16452;24469;28242;23334;20308;25026;37013;39940;50584;74912;63016;45403;57623;60084;38071
-81;'288;Ghana;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;337;260;260;260;260;260;90;1894;1739;1877;1124;1610;1697;1002;1620;1926;3843;721;9167;18574;13553
-81;'288;Ghana;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;100;89;89;89;89;89;81;468;1748;1871;1400;1962;2196;1093;1457;1959;1396;559;5603;5360;6028
-81;'288;Ghana;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;4100;3000;6934;11801;7300;7300;9700;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2610;3253;2200;3390;6166;5956;5956;8185;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12963;10752;10752;11200;16500;18320;25646;25646;25279;25279;25279;20218;29862;28922;20371;20371;18663;43516;34897;55125;77266;100266;85862;48260;35292;30843
-81;'288;Ghana;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6321;4765;4765;3576;5079;6832;9454;9454;10166;10166;10166;11341;20490;22180;15637;15637;11245;26127;20737;32139;54323;50545;29801;21117;22311;20522
-81;'288;Ghana;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2;2;2;2;2;2;74;1;1;1;1;1;344;168;37;104;6821;16568;11658
-81;'288;Ghana;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2;2;2;2;2;2;72;32;32;32;32;32;177;146;55;65;4088;3876;4847
-81;'288;Ghana;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;672;672;700;200;1630;2380;2000;1811;1811;1811;987;1585;855;625;625;7826;8520;6405;3859;11050;4064;3111;3273;11538;30584
-81;'288;Ghana;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1163;877;877;658;394;946;1516;1880;3075;3075;3075;1156;1718;969;1155;1155;8707;6306;3321;2724;8903;3100;1495;5748;10439;3863
-81;'288;Ghana;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;94;20;183;183;111;5;9;97;693;3110;126;180;688;688
-81;'288;Ghana;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;57;34;98;98;81;7;10;91;347;412;46;47;518;518
-81;'288;Ghana;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;2880;2880;3000;4300;7052;496;496;496;496;496;4205;2063;4184;5458;2918;5450;5489;6789;6768;12221;13831;16269;16965;18962;13120
-81;'288;Ghana;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2809;2117;2117;1589;2406;4110;544;544;544;544;544;3715;2116;4527;5759;2733;5050;4547;15652;15457;10968;8695;13968;30691;27081;13569
-81;'288;Ghana;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;28;28;28;28;28;85;1798;1645;1693;940;1498;1691;992;1179;1065;696;491;2166;1318;1207
-81;'288;Ghana;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;30;30;30;30;30;70;409;1642;1741;1270;1849;2157;1051;1189;1466;929;448;1468;966;663
-81;'288;Ghana;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;96;96;100;100;298;440;440;440;440;440;420;217;818;1179;1179;28;30;215;483;1035;1021;218;101;27;102
-81;'288;Ghana;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;76;76;57;146;181;161;161;161;161;161;240;145;566;783;783;24;33;230;264;718;676;139;67;253;117
-81;'288;Ghana;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;227;227;227;227;227;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;48;48;48;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-81;'288;Ghana;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;5000;5900;9000;9800;4700;11200;18800;17000;2800;1900;1900;1900;1900;3900;1400;3000;3000;5100;5700;13900;11300;5500;1200;600;335;1000;1000;0;0;0;0;0;0;2000;600;1459;14212;14212;4000;4000;4000;1790;450;401;1347;1347;566;198;758;684;727;586;2374;249;304;279
-81;'288;Ghana;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;1872;2551;4280;3027;1979;4113;9293;8358;1437;879;879;879;879;3100;1100;1229;1229;2793;3132;8371;7862;3109;1627;560;205;800;800;0;0;0;0;0;0;1573;1125;2388;10664;10664;5500;5500;5500;1062;520;606;1531;1531;1286;445;717;711;969;702;3923;1015;776;943
-81;'288;Ghana;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;1;1;1;1;1;1;1;0;32;32;35;7;0;49;3;4;0;0;1;0
-81;'288;Ghana;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;4;4;4;4;4;21;1;0;60;60;31;1;0;102;75;27;0;4;38;1
-81;'288;Ghana;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41331;50081;72241;83715;70870;59681;44313
-81;'288;Ghana;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11367;10443;6922;12466;5578;3849;3489
-81;'288;Ghana;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;87;308;517;475;172;119
-81;'288;Ghana;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10620;7919;1747;5667;1128;1169;1092
-81;'288;Ghana;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;3;341;230;28;32
-81;'288;Ghana;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10568;7917;1707;46;1128;1169;1052
-81;'288;Ghana;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;86;305;176;245;144;87
-81;'288;Ghana;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;2;40;5621;0;0;40
-81;'288;Ghana;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;973;921;1573;2231;1811;1156
-81;'288;Ghana;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;1660;2178;2144;930;1;27
-81;'288;Ghana;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;552;15436;624;1044;1043;812
-81;'288;Ghana;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;130;142;272;77;7;11
-81;'288;Ghana;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3583;4130;3205;6884;5597;5594;4108
-81;'288;Ghana;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;237;2436;1714;1751;1804;1792
-81;'288;Ghana;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;672
-81;'288;Ghana;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862;1038
-81;'288;Ghana;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19
-81;'288;Ghana;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35
-81;'288;Ghana;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33818;34150;28727;71764;59000;49182;36592
-81;'288;Ghana;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;423;309;1121;456;88;164
-81;'288;Ghana;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;44;586;177;131;478
-81;'288;Ghana;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-81;'288;Ghana;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024;9843;23600;1767;2346;1748;1048
-81;'288;Ghana;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;74;110;1548;1236;780;403
-81;'288;Ghana;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263565;79944;47197;120638;77342;73986;61782
-81;'288;Ghana;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8197;28026;11523;9699;39517;23875;21227
-81;'288;Ghana;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;541;382;463;193;923;343
-81;'288;Ghana;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-81;'288;Ghana;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122675;22901;1891;9363;2808;2380;2359
-81;'288;Ghana;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;0;1;95;23;7
-81;'288;Ghana;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9872;12676;9687;18698;7545;5410;6072
-81;'288;Ghana;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829;379;367;274;10714;2366;3292
-81;'288;Ghana;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28610;31134;24179;54155;48379;47259;36788
-81;'288;Ghana;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6152;25255;8149;6185;25120;17488;13855
-81;'288;Ghana;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102319;12692;11058;37959;18417;18014;16220
-81;'288;Ghana;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;2326;3007;3239;3588;3998;4073
-82;'292;Gibraltar;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30383;38950;43708;29089;30585;47480;49225
-82;'292;Gibraltar;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1788;1495;1227;1442;605;833;635
-82;'292;Gibraltar;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;1681;1573;828;827;827;827;644;644;644;644;644;644;644;644;644;644;644;644;443;518;404;605;838;756;585;638;871;2906;2426;2459;1895;2973
-82;'292;Gibraltar;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;55;143;143;143;143;142;142;142;142;142;142;142;142;142;142;142;142;107;125;107;107;107;109;127;111;109;178;132;97;30;25
-82;'292;Gibraltar;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;140;728;49;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;535;80;41;246;690;6;14;23;202
-82;'292;Gibraltar;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;65;5;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;66;5;61;74;44;5;14;7;13
-82;'292;Gibraltar;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;240;682;6;13;17;79
-82;'292;Gibraltar;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;68;44;5;13;4;9
-82;'292;Gibraltar;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-82;'292;Gibraltar;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-82;'292;Gibraltar;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;8;0;1;6;123
-82;'292;Gibraltar;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;0;0;1;3;4
-82;'292;Gibraltar;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-82;'292;Gibraltar;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-82;'292;Gibraltar;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;;;;;;15;14
-82;'292;Gibraltar;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;4;4
-82;'292;Gibraltar;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;14
-82;'292;Gibraltar;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-82;'292;Gibraltar;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;;;;;;;
-82;'292;Gibraltar;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;;
-82;'292;Gibraltar;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;140;728;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;463;8;41;246;690;6;14;8;188
-82;'292;Gibraltar;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;65;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;64;3;61;74;44;5;14;3;9
-82;'292;Gibraltar;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;5;40;240;682;6;13;2;65
-82;'292;Gibraltar;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;2;59;68;44;5;13;0;5
-82;'292;Gibraltar;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;5;40;240;682;6;13;2;65
-82;'292;Gibraltar;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;2;59;68;44;5;13;0;5
-82;'292;Gibraltar;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;140;728;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;21;3;1;6;8;0;1;6;123
-82;'292;Gibraltar;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;65;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;2;1;2;6;0;0;1;3;4
-82;'292;Gibraltar;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;140;728;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;21;3;1;6;8;0;1;6;123
-82;'292;Gibraltar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;13;65;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;2;1;2;6;0;0;1;3;4
-82;'292;Gibraltar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;67;91;100;55;93
-82;'292;Gibraltar;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;5;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;63;85;99;58;119
-82;'292;Gibraltar;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;11;16;12;8;88
-82;'292;Gibraltar;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;11;7;8;6;19
-82;'292;Gibraltar;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;52;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;37;11;16;12;8;88
-82;'292;Gibraltar;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;11;7;8;6;19
-82;'292;Gibraltar;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;26;36;9;2
-82;'292;Gibraltar;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;13;19;9;2
-82;'292;Gibraltar;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;22;31;8;2
-82;'292;Gibraltar;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;11;16;8;1
-82;'292;Gibraltar;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;4;5;1;0
-82;'292;Gibraltar;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;2;3;1;1
-82;'292;Gibraltar;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1675;2480;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;629;1559;1010;1557;4701;4448;1491;140;168;675;116
-82;'292;Gibraltar;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;666;307;307;307;307;307;307;307;307;307;307;307;307;307;307;307;307;143;156;111;167;385;392;233;159;302;147;130;171;302;56
-82;'292;Gibraltar;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;0;6;1;0;0;0;0;0;0
-82;'292;Gibraltar;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;0;18;0;0;0;0;4;0;2;0;0;0;0;0
-82;'292;Gibraltar;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312;1440;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;1302;450;170;1;10;271;3;140;311;0
-82;'292;Gibraltar;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;255;131;131;131;131;131;131;131;131;131;131;131;131;131;131;131;131;53;36;32;74;165;254;75;1;6;16;39;97;181;0
-82;'292;Gibraltar;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;0;18;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;1040;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;257;560;1387;4700;4438;1220;137;28;364;116
-82;'292;Gibraltar;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;411;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;90;120;79;93;220;138;158;158;296;131;91;74;121;56
-82;'292;Gibraltar;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;1;0;0;0;0;0;0
-82;'292;Gibraltar;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;2;0;0;0;0;0
-82;'292;Gibraltar;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;3;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;10;0;23;48;1;0;59;59
-82;'292;Gibraltar;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;4;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;1;4;4;11;0;0;15;1;87;41;4;0;35;35
-82;'292;Gibraltar;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1141;397;273;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;270;417;355;818;1084;5361;4549;5826;692;11984
-82;'292;Gibraltar;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;146;156;155;155;155;155;155;155;155;155;155;155;155;155;155;155;155;143;202;133;271;297;149;183;268;259;476;576;592;677;1005
-82;'292;Gibraltar;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;36;45;37;34;0;34;34;34;34
-82;'292;Gibraltar;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;17;31;19;15;0;15;15;15;15
-82;'292;Gibraltar;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629;62;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;119;266;204;667;933;317;1084;2714;242;242
-82;'292;Gibraltar;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;49;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;76;135;66;204;230;82;116;201;192;310;125;273;221;443
-82;'292;Gibraltar;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;3;0;0;0;0;0;0
-82;'292;Gibraltar;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;16;4;0;0;0;0;0;0
-82;'292;Gibraltar;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;287;140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;86;62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;34;34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;2333;2805;2792;419;9436
-82;'292;Gibraltar;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;137;262;214;401;320
-82;'292;Gibraltar;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;0;34;34;34;34
-82;'292;Gibraltar;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;15;15;15;15
-82;'292;Gibraltar;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422
-82;'292;Gibraltar;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65
-82;'292;Gibraltar;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;48;14;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;2711;660;320;31;1884
-82;'292;Gibraltar;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;11;6;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;29;189;105;55;177
-82;'292;Gibraltar;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154
-82;'292;Gibraltar;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25
-82;'292;Gibraltar;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134
-82;'292;Gibraltar;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80
-82;'292;Gibraltar;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;32;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;2711;660;320;31;1596
-82;'292;Gibraltar;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;29;189;105;55;72
-82;'292;Gibraltar;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;16;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;5;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;5646;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;46;12;8;5;4
-82;'292;Gibraltar;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;355;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;115;88;36;35;21
-82;'292;Gibraltar;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;2920;2700;1771;402;40
-82;'292;Gibraltar;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;177;116;81;14;1
-82;'292;Gibraltar;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-82;'292;Gibraltar;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;5646;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;46;12;8;5;4
-82;'292;Gibraltar;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;355;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;115;88;36;35;21
-82;'292;Gibraltar;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;2920;2700;1771;402;40
-82;'292;Gibraltar;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;177;116;81;14;1
-82;'292;Gibraltar;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;228;207;207;207;207;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;97;640;509;491;214;401
-82;'292;Gibraltar;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;390;328;328;328;328;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;1975;1518;1520;766;1703
-82;'292;Gibraltar;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;8
-82;'292;Gibraltar;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;92;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;1;1;1;1;9
-82;'292;Gibraltar;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;136;148;148;148;148;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;480;380;353;172;284
-82;'292;Gibraltar;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;222;221;221;221;221;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;1012;796;747;400;797
-82;'292;Gibraltar;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;43;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;2;29;4;4;8
-82;'292;Gibraltar;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;59;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;10;47;13;18;52
-82;'292;Gibraltar;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;93;110;110;110;110;;;;;;;;;;;;;;;;;;;;;;478;351;349;168;276
-82;'292;Gibraltar;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;163;183;183;183;183;;;;;;;;;;;;;;;;;;;;;;1002;749;734;382;745
-82;'292;Gibraltar;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;10;10;4;13
-82;'292;Gibraltar;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;80;78;35;53
-82;'292;Gibraltar;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427;334;322;156;247
-82;'292;Gibraltar;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;776;567;570;306;595
-82;'292;Gibraltar;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-82;'292;Gibraltar;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;17;8;16
-82;'292;Gibraltar;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;102;86;41;97
-82;'292;Gibraltar;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;92;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;160;129;138;42;117
-82;'292;Gibraltar;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;168;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;963;722;773;366;906
-82;'292;Gibraltar;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;8
-82;'292;Gibraltar;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;1;1;1;1;9
-82;'292;Gibraltar;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;61;56;18;58
-82;'292;Gibraltar;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;154;157;74;187
-82;'292;Gibraltar;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-82;'292;Gibraltar;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;50;71;16;36
-82;'292;Gibraltar;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;199;281;96;215
-82;'292;Gibraltar;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8
-82;'292;Gibraltar;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8
-82;'292;Gibraltar;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;1;3
-82;'292;Gibraltar;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4;5;9;30
-82;'292;Gibraltar;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7
-82;'292;Gibraltar;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-82;'292;Gibraltar;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;3;2;2
-82;'292;Gibraltar;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;18;18;15;10
-82;'292;Gibraltar;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-82;'292;Gibraltar;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-82;'292;Gibraltar;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;38;55;11;24
-82;'292;Gibraltar;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;122;170;53;100
-82;'292;Gibraltar;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-82;'292;Gibraltar;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-82;'292;Gibraltar;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;12;2;7
-82;'292;Gibraltar;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;55;88;19;75
-82;'292;Gibraltar;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;19;18;11;8;23
-82;'292;Gibraltar;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;107;448;369;335;196;504
-82;'292;Gibraltar;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;0
-82;'292;Gibraltar;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;1;1;1;1;1
-82;'292;Gibraltar;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20895;29513;31888;19452;21044;36108;36637
-82;'292;Gibraltar;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631;1377;1014;1208;452;657;602
-82;'292;Gibraltar;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;362;318;313;227;340;178
-82;'292;Gibraltar;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3
-82;'292;Gibraltar;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;211;84;53;47;63;53
-82;'292;Gibraltar;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-82;'292;Gibraltar;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;151;234;260;180;277;125
-82;'292;Gibraltar;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3
-82;'292;Gibraltar;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;266;1059;277;376;465;491
-82;'292;Gibraltar;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;504;464;562;353;345;375
-82;'292;Gibraltar;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;478;172;256;919;284;201
-82;'292;Gibraltar;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;1
-82;'292;Gibraltar;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8302;15044;15789;8062;7301;9495;10092
-82;'292;Gibraltar;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;89;21;13;89;122;141
-82;'292;Gibraltar;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-82;'292;Gibraltar;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7
-82;'292;Gibraltar;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-82;'292;Gibraltar;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;2
-82;'292;Gibraltar;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10248;12235;12167;9747;11306;24414;24740
-82;'292;Gibraltar;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1109;781;524;629;5;185;79
-82;'292;Gibraltar;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;180;1090;104;11;10;16
-82;'292;Gibraltar;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1268;948;1293;693;904;1100;919
-82;'292;Gibraltar;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;2;1;2;0;3
-82;'292;Gibraltar;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8850;8566;8914;7211;7082;9477;9615
-82;'292;Gibraltar;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;9;35;102;56;146;8
-82;'292;Gibraltar;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;2;0;0;0;5
-82;'292;Gibraltar;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;128;152;81;121;146;185
-82;'292;Gibraltar;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;1;2
-82;'292;Gibraltar;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3453;3584;3678;3603;3565;4725;5240
-82;'292;Gibraltar;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;12;42;5;0
-82;'292;Gibraltar;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1584;1154;1231;1186;1474;1656;1540
-82;'292;Gibraltar;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;31;1;10;13;1
-82;'292;Gibraltar;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;3695;3851;2341;1922;2950;2645
-82;'292;Gibraltar;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;4;3;88;4;127;5
-84;'300;Greece;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520472.34;1733719;1664427;1599477;1772225;1922924;1998508
-84;'300;Greece;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401707.07;425486;405483;441234;568078;659862;747300
-84;'300;Greece;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;29118;32048;36540;39911;52277;61755;57766;73617;73692;84937;92795;107519;144310;171396;209451;222263;208585;216217;272522;346527;289422;286845;286907;293326;289143;381344;484736;512463;869726;936631;906157;616570;431581;463768;382832;442749;834064;694478;734213;856168;767914;756520;1068531;1044811;1134644;1190759;1393434;1702462;1187540;1144511;1077249;897467;982905;1034456;1028566;1029997;988439.95;1119900;1071448;1007349;1020924;1046612;1024485
-84;'300;Greece;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;429;324;457;734;1173;1146;1435;1489;2263;2567;3825;5294;9815;18580;15480;22704;22184;20441;35107;50693;46368;48456;30761;31374;31984;31425;37137;41792;107083;94661;87957;102407;48479;40315;50432;49096;83289;79046;79508;77955;70921;75360;124388;140377;141517;116907;150761;176958;162582;182738;218960;210299;193336;196430;196066;203659;205839.5;205840;190412;208950;252546;255052;255625
-84;'300;Greece;1861;Roundwood;5516;Production;m3;3043000;2733000;2733000;2831000;2831000;2666000;2585000;3343000;2614000;3046000;2946000;2488000;2554000;2627000;2628000;2940000;2908000;2338000;2338000;2706000;2727000;2407000;2914000;2683000;3044000;3162000;2926000;3102000;2491000;2492000;2546000;2321000;2218000;2091000;1961000;2012000;1744000;1692000;2214000;2244935;1915522;1591297;1672856;1693678;1522857;1561840;1742916;1742916;1033897;1047962;1196326;1611662;1586400;1432000;1432000;1432000;1636126;1453201;1359105;1359105;1359105;1359105;1359105
-84;'300;Greece;1861;Roundwood;5616;Import quantity;m3;23300;46400;52500;77700;94400;122900;168100;211200;189500;194700;217000;259500;358800;276600;257700;290800;331400;356300;392000;362200;270700;146800;220900;201800;161900;299000;241100;307400;552900;268319;281549;251757;186194;23749;21500;23000;269200;500100;515000;445371;631894;459766;493283;650568;327835;284660;490330;622071;386065;439426;408871;540892;404993;309281;309281;309281;203057;202489;201313;196000;196000;196000;196000
-84;'300;Greece;1861;Roundwood;5622;Import value;1000 USD;1302;2328;2502;3756;5300;6756;9747;13052;11166;11717;14007;18332;32831;33023;31867;33209;48643;49897;71370;78137;53839;22113;32412;30209;25006;56169;48376;61826;105577;60030;63206;45830;34739;1973;1671;3666;42526;50548;50338;34557;34740;28872;35669;41338;31531;25228;50528;55933;30050;35971;35895;39104;28578;23236;23236;23236;15402.93;17140;19587;22965;22965;22965;22965
-84;'300;Greece;1861;Roundwood;5916;Export quantity;m3;400;300;100;300;200;200;100;100;100;100;100;100;100;2700;100;100;100;100;100;100;350;300;300;400;500;1000;2600;2600;8300;49052;108792;186802;28657;6800;3900;3900;2000;223400;232000;9845;3702;16095;18989;16429;16026;27280;35790;25183;7536;11556;13501;30122;27689;21383;21383;21383;17683;31966;38773;42336;42336;42336;42336
-84;'300;Greece;1861;Roundwood;5922;Export value;1000 USD;16;27;6;19;10;7;4;4;4;4;4;4;4;150;13;13;16;16;16;14;42;36;108;145;36;445;1300;1300;5053;5028;10239;16976;10467;936;673;673;1728;1935;1949;728;355;953;1353;1286;1100;2519;3269;2523;1170;1350;1304;2480;2983;2759;2759;2760;889.21;1526;1398;1781;1781;1781;1781
-84;'300;Greece;1862;Roundwood, coniferous;5516;Production;m3;242000;271000;271000;459000;459000;287000;317000;791000;737000;698000;615000;614000;639000;597000;677000;789000;675000;648000;648000;657000;689000;583000;686000;607000;776000;820000;798000;832000;644000;620000;642000;505000;649000;629000;521000;524000;403000;442000;591000;600386;366995;484000;495194;440400;426040;428680;915220;915220;234872;314732;331572;793169;361300;327000;327000;327000;231537;258830;267283;267283;267283;267283;267283
-84;'300;Greece;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102950;118163;98581;128591;128591;128591;128591
-84;'300;Greece;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8523.99;11141;11793;18004;18004;18004;18004
-84;'300;Greece;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12115;16017;17483;12045;12045;12045;12045
-84;'300;Greece;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624.17;760;872;895;895;895;895
-84;'300;Greece;1863;Roundwood, non-coniferous;5516;Production;m3;2801000;2462000;2462000;2372000;2372000;2379000;2268000;2552000;1877000;2348000;2331000;1874000;1915000;2030000;1951000;2151000;2233000;1690000;1690000;2049000;2038000;1824000;2228000;2076000;2268000;2342000;2128000;2270000;1847000;1872000;1904000;1816000;1569000;1462000;1440000;1488000;1341000;1250000;1623000;1644549;1548527;1107297;1177662;1253278;1096817;1133160;827696;827696;799025;733230;864754;818493;1225100;1105000;1105000;1105000;1404589;1194371;1091822;1091822;1091822;1091822;1091822
-84;'300;Greece;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100107;84326;102732;67409;67409;67409;67409
-84;'300;Greece;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6878.94;5999;7794;4961;4961;4961;4961
-84;'300;Greece;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5568;15949;21290;30291;30291;30291;30291
-84;'300;Greece;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265.04;766;526;886;886;886;886
-84;'300;Greece;1864;Wood fuel;5516;Production;m3;2698000;2364000;2364000;2217000;2217000;2300000;2190000;2850000;2200000;2456000;2300000;1902000;1909000;2090000;1789000;2075000;2112000;1584000;1584000;1939000;1991000;1628000;2072000;1915000;2244000;2280000;2112000;2158000;1382000;1346000;1350000;1637000;1519000;1354000;1330000;1338000;1236000;1197000;1403000;1601407;1400590;1093000;1073608;1225000;1004330;1099880;794840;794840;747273;711481;857179;794840;1192500;1065000;1065000;1065000;1064482;998081;946849;946849;946849;946849;946849
-84;'300;Greece;1864;Wood fuel;5616;Import quantity;m3;100;100;700;200;1400;700;5700;3800;100;100;400;1100;3800;4100;400;500;500;200;100;1400;;;;;;;;;;;;43533;886;526;1900;1600;200;217000;223000;206058;267083;146674;145000;370757;45835;68490;320330;384081;221152;299806;254731;429875;315735;219643;219643;219643;180641;175291;167949;144359;144359;144359;144359
-84;'300;Greece;1864;Wood fuel;5622;Import value;1000 USD;1;1;6;3;15;6;34;20;2;2;7;10;48;67;13;11;11;10;5;39;;;;;;;;;;;;1123;37;26;71;49;10;9299;9254;5812;7275;4184;5595;15965;2243;4336;29146;32974;11797;13971;14666;30198;21401;16039;16039;16039;9628.93;10126;11032;9614;9614;9614;9614
-84;'300;Greece;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;;0;0;0;0;220500;229000;9391;2950;16057;15400;15326;15847;6720;5410;2559;2825;3629;4408;6630;4864;3351;3351;3351;9559;23887;20365;22778;22778;22778;22778
-84;'300;Greece;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;0;0;0;0;153;155;362;164;944;899;1132;1046;704;579;373;372;300;467;575;617;1251;1251;1251;237.89;567;372;626;626;626;626
-84;'300;Greece;1627;Wood fuel, coniferous;5516;Production;m3;38000;38000;38000;50000;50000;100000;90000;500000;500000;386000;300000;303000;328000;332000;333000;405000;288000;258000;258000;272000;273000;192000;276000;219000;297000;310000;294000;303000;140000;116000;120000;107000;209000;158000;168000;162000;104000;118000;143000;189000;43290;152000;184016;144000;96640;126000;113802;113802;63908;71771;90239;113802;116100;97000;97000;97000;62769;83127;78386;78386;78386;78386;78386
-84;'300;Greece;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89024;96449;72590;82146;82146;82146;82146
-84;'300;Greece;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4915.8;5761;5159;5851;5851;5851;5851
-84;'300;Greece;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5753;12747;5280;1217;1217;1217;1217
-84;'300;Greece;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145.28;337;138;67;67;67;67
-84;'300;Greece;1628;Wood fuel, non-coniferous;5516;Production;m3;2660000;2326000;2326000;2167000;2167000;2200000;2100000;2350000;1700000;2070000;2000000;1599000;1581000;1758000;1456000;1670000;1824000;1326000;1326000;1667000;1718000;1436000;1796000;1696000;1947000;1970000;1818000;1855000;1242000;1230000;1230000;1530000;1310000;1196000;1162000;1176000;1132000;1079000;1260000;1412407;1357300;941000;889592;1081000;907690;973880;681038;681038;683365;639710;766940;681038;1076400;968000;968000;968000;1001713;914954;868463;868463;868463;868463;868463
-84;'300;Greece;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91617;78842;95359;62213;62213;62213;62213
-84;'300;Greece;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4713.13;4365;5873;3763;3763;3763;3763
-84;'300;Greece;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3806;11140;15085;21561;21561;21561;21561
-84;'300;Greece;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92.61;230;234;559;559;559;559
-84;'300;Greece;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;100;100;700;200;1400;700;5700;3800;100;100;400;1100;3800;4100;400;500;500;200;100;1400;;;;;;;;;;;;43533;886;526;1900;1600;200;217000;223000;206058;267083;146674;145000;370757;45835;68490;320330;384081;221152;299806;254731;429875;315735;219643;219643;219643;;;;;;;
-84;'300;Greece;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;1;1;6;3;15;6;34;20;2;2;7;10;48;67;13;11;11;10;5;39;;;;;;;;;;;;1123;37;26;71;49;10;9299;9254;5812;7275;4184;5595;15965;2243;4336;29146;32974;11797;13971;14666;30198;21401;16039;16039;16039;;;;;;;
-84;'300;Greece;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;;0;0;0;0;220500;229000;9391;2950;16057;15400;15326;15847;6720;5410;2559;2825;3629;4408;6630;4864;3351;3351;3351;;;;;;;
-84;'300;Greece;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;0;0;0;0;153;155;362;164;944;899;1132;1046;704;579;373;372;300;467;575;617;1251;1251;1251;;;;;;;
-84;'300;Greece;1865;Industrial roundwood;5516;Production;m3;345000;369000;369000;614000;614000;366000;395000;493000;414000;590000;646000;586000;645000;537000;839000;865000;796000;754000;754000;767000;736000;779000;842000;768000;800000;882000;814000;944000;1109000;1146000;1196000;684000;699000;737000;631000;674000;508000;495000;811000;643528;514932;498297;599248;468678;518527;461960;948076;948076;286624;336481;339147;816822;393900;367000;367000;367000;571644;455120;412256;412256;412256;412256;412256
-84;'300;Greece;1865;Industrial roundwood;5616;Import quantity;m3;23200;46300;51800;77500;93000;122200;162400;207400;189400;194600;216600;258400;355000;272500;257300;290300;330900;356100;391900;360800;270700;146800;220900;201800;161900;299000;241100;307400;552900;268319;281549;208224;185308;23223;19600;21400;269000;283100;292000;239313;364811;313092;348283;279811;282000;216170;170000;237990;164913;139620;154140;111017;89258;89638;89638;89638;22416;27198;33364;51641;51641;51641;51641
-84;'300;Greece;1865;Industrial roundwood;5622;Import value;1000 USD;1301;2327;2496;3753;5285;6750;9713;13032;11164;11715;14000;18322;32783;32956;31854;33198;48632;49887;71365;78098;53839;22113;32412;30209;25006;56169;48376;61826;105577;60030;63206;44707;34702;1947;1600;3617;42516;41249;41084;28745;27465;24688;30074;25373;29288;20892;21382;22959;18253;22000;21229;8906;7177;7197;7197;7197;5774.01;7014;8555;13351;13351;13351;13351
-84;'300;Greece;1865;Industrial roundwood;5916;Export quantity;m3;400;300;100;300;200;200;100;100;100;100;100;100;100;2700;100;100;100;100;100;100;350;300;300;400;500;1000;2600;2600;8300;49052;108792;186737;28657;6800;3900;3900;2000;2900;3000;454;752;38;3589;1103;179;20560;30380;22624;4711;7927;9093;23492;22825;18032;18032;18032;8124;8079;18408;19558;19558;19558;19558
-84;'300;Greece;1865;Industrial roundwood;5922;Export value;1000 USD;16;27;6;19;10;7;4;4;4;4;4;4;4;150;13;13;16;16;16;14;42;36;108;145;36;445;1300;1300;5053;5028;10239;16971;10467;936;673;673;1728;1782;1794;366;191;9;454;154;54;1815;2690;2150;798;1050;837;1905;2366;1508;1508;1509;651.32;959;1026;1155;1155;1155;1155
-84;'300;Greece;1866;Industrial roundwood, coniferous;5516;Production;m3;204000;233000;233000;409000;409000;187000;227000;291000;237000;312000;315000;311000;311000;265000;344000;384000;387000;390000;390000;385000;416000;391000;410000;388000;479000;510000;504000;529000;504000;504000;522000;398000;440000;471000;353000;362000;299000;324000;448000;411386;323705;332000;311178;296400;329400;302680;801418;801418;170964;242961;241333;679367;245200;230000;230000;230000;168768;175703;188897;188897;188897;188897;188897
-84;'300;Greece;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80980;80686;70468;53672;16891;17000;15500;102000;107500;111000;96000;55196;53544;135980;136707;117000;128000;86000;153990;112890;100110;86630;61733;53731;51333;51333;51333;13926;21714;25991;46445;46445;46445;46445
-84;'300;Greece;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17085;17544;14785;5067;1395;1395;2808;11476;11131;11089;4771;2719;2785;8460;9353;9145;10014;11050;12627;13259;9383;13517;5062;4406;4209;4209;4209;3608.19;5380;6634;12153;12153;12153;12153
-84;'300;Greece;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302;284;284;9588;6000;2600;2600;0;400;0;12;47;2;977;293;27;19860;23300;15544;3590;4090;6430;17291;8241;12018;12018;12018;6362;3270;12203;10828;10828;10828;10828
-84;'300;Greece;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804;29;29;1143;650;341;341;0;76;76;2;3;4;61;20;9;1705;2001;1461;301;356;611;1378;818;997;997;997;478.89;423;734;828;828;828;828
-84;'300;Greece;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80980;80686;70468;53672;16891;17000;15500;102000;107500;111000;96000;55196;53544;135980;136707;117000;128000;86000;153990;112890;100110;86630;61733;53731;51333;51333;51333;13926;21714;25991;46445;46445;46445;46445
-84;'300;Greece;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17085;17544;14785;5067;1395;1395;2808;11476;11131;11089;4771;2719;2785;8460;9353;9145;10014;11050;12627;13259;9383;13517;5062;4406;4209;4209;4209;3608.19;5380;6634;12153;12153;12153;12153
-84;'300;Greece;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302;284;284;9588;6000;2600;2600;0;400;0;12;47;2;977;293;27;19860;23300;15544;3590;4090;6430;17291;8241;12018;12018;12018;6362;3270;12203;10828;10828;10828;10828
-84;'300;Greece;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804;29;29;1143;650;341;341;0;76;76;2;3;4;61;20;9;1705;2001;1461;301;356;611;1378;818;997;997;997;478.89;423;734;828;828;828;828
-84;'300;Greece;1867;Industrial roundwood, non-coniferous;5516;Production;m3;141000;136000;136000;205000;205000;179000;168000;202000;177000;278000;331000;275000;334000;272000;495000;481000;409000;364000;364000;382000;320000;388000;432000;380000;321000;372000;310000;415000;605000;642000;674000;286000;259000;266000;278000;312000;209000;171000;363000;232142;191227;166297;288070;172278;189127;159280;146658;146658;115660;93520;97814;137455;148700;137000;137000;137000;402876;279417;223359;223359;223359;223359;223359
-84;'300;Greece;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187339;200863;137756;131636;6332;2600;5900;167000;175600;181000;143313;309615;259548;212303;143104;165000;88170;84000;84000;52023;39510;67510;49284;35527;38305;38305;38305;8490;5484;7373;5196;5196;5196;5196
-84;'300;Greece;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42945;45662;29922;29635;552;205;809;31040;30118;29995;23974;24746;21903;21614;16020;20143;10878;10332;10332;4994;12617;7712;3844;2771;2988;2988;2988;2165.82;1634;1921;1198;1198;1198;1198
-84;'300;Greece;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44750;108508;186453;19069;800;1300;1300;2000;2500;3000;442;705;36;2612;810;152;700;7080;7080;1121;3837;2663;6201;14584;6014;6014;6014;1762;4809;6205;8730;8730;8730;8730
-84;'300;Greece;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4224;10210;16942;9324;286;332;332;1728;1706;1718;364;188;5;393;134;45;110;689;689;497;694;226;527;1548;511;511;512;172.43;536;292;327;327;327;327
-84;'300;Greece;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145656;154795;113764;113764;0;0;0;70000;74000;76000;92017;58922;92615;53013;40520;47251;17420;36160;36160;13196;9290;12970;8748;5126;6720;6720;6720;6142;4604;412;3262;3262;3262;3262
-84;'300;Greece;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39297;41953;27891;27891;0;0;0;14576;14200;14084;20895;12785;21218;13133;11038;14035;8506;8070;8070;3983;3075;5678;2511;1499;2070;2070;2070;1580.67;1266;1331;676;676;676;676
-84;'300;Greece;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;297;0;15;439;0;0;130;10;10;30;540;345;180;1018;6;6;6;30;30;179;34;34;34;34
-84;'300;Greece;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;48;328;0;0;154;0;0;31;7;7;7;518;100;209;846;12;12;12;35.96;36;30;27;27;27;27
-84;'300;Greece;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41683;46068;23992;17872;6332;2600;5900;97000;101600;105000;51296;250693;166933;159290;102584;117749;70750;47840;47840;38827;30220;54540;40536;30401;31585;31585;31585;2348;880;6961;1934;1934;1934;1934
-84;'300;Greece;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648;3709;2031;1744;552;205;809;16464;15918;15911;3079;11961;685;8481;4982;6108;2372;2262;2262;1011;9542;2034;1333;1272;918;918;918;585.15;368;590;522;522;522;522
-84;'300;Greece;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44750;108508;186453;19069;800;1300;1300;2000;2500;3000;145;705;21;2173;810;152;570;7070;7070;1091;3297;2318;6021;13566;6008;6008;6008;1732;4779;6026;8696;8696;8696;8696
-84;'300;Greece;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4224;10210;16942;9324;286;332;332;1728;1659;1670;36;188;5;239;134;45;79;682;682;490;176;126;318;702;499;499;500;136.46;500;262;300;300;300;300
-84;'300;Greece;1868;Sawlogs and veneer logs;5516;Production;m3;334000;283000;283000;367000;367000;287000;303000;391000;319000;453000;480000;459000;490000;328000;552000;589000;492000;457000;457000;407000;583000;615000;446000;407000;445000;482000;445000;524000;549000;546000;586000;512000;465000;508000;389000;467000;403000;360000;696000;440847;409957;409000;527772;380878;419600;384420;755922;755922;240091;258228;278151;755922;325200;304000;304000;304000;499382;400451;344968;344968;344968;344968;344968
-84;'300;Greece;1868;Sawlogs and veneer logs;5616;Import quantity;m3;14800;25000;36100;52000;62100;93700;90600;124000;141400;146600;167500;225400;312200;243100;227100;275600;322100;347300;383500;346900;256800;145400;210200;191100;156700;229400;213100;275000;275900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;762;1024;1492;2389;3130;4816;4746;6382;7390;7958;10202;15719;29371;30800;30084;32020;48008;49263;68898;75868;51609;21948;30426;28223;24345;45899;45144;58100;53624;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1868;Sawlogs and veneer logs;5916;Export quantity;m3;400;300;100;300;200;200;100;100;100;100;100;100;100;2700;100;100;100;100;100;100;350;300;300;400;500;1000;2600;2600;8300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;16;27;6;19;10;7;4;4;4;4;4;4;4;150;13;13;16;16;16;14;42;36;108;145;36;445;1300;1300;5053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;200000;200000;200000;215000;215000;171000;168000;228000;205000;245000;248000;248000;258000;210000;280000;314000;315000;302000;302000;267000;331000;308000;273000;265000;292000;310000;302000;309000;312000;302000;315000;337000;335000;371000;242000;282000;239000;221000;374000;283981;258746;271000;268173;248000;260980;246540;634067;634067;141251;186480;195985;634067;201600;187000;187000;187000;131902;133115;134457;134457;134457;134457;134457
-84;'300;Greece;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;12300;12500;16400;30800;36600;51200;37700;50800;57300;48200;41100;41800;51500;47600;38900;47400;48600;59500;70400;49500;24200;64800;49300;43400;41900;33400;53300;80000;85400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;623;571;718;1361;1785;2388;1696;2066;2372;2023;2166;2223;4365;4183;6480;4469;4885;6760;11772;7754;5164;8269;5809;5656;4665;5031;9868;15000;15615;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;134000;83000;83000;152000;152000;116000;135000;163000;114000;208000;232000;211000;232000;118000;272000;275000;177000;155000;155000;140000;252000;307000;173000;142000;153000;172000;143000;215000;237000;244000;271000;175000;130000;137000;147000;185000;164000;139000;322000;156866;151211;138000;259599;132878;158620;137880;121855;121855;98840;71748;82166;121855;123600;117000;117000;117000;367480;267336;210511;210511;210511;210511;210511
-84;'300;Greece;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;2500;12500;19700;21200;25500;42500;52900;73200;84100;98400;126400;183600;260700;195500;188200;228200;273500;287800;313100;297400;232600;80600;160900;147700;114800;196000;159800;195000;190500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;139;453;774;1028;1345;2428;3050;4316;5018;5935;8036;13496;25006;26617;23604;27551;43123;42503;57126;68114;46445;13679;24617;22567;19680;40868;35276;43100;38009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;400;300;100;300;200;200;100;100;100;100;100;100;100;2700;100;100;100;100;100;100;350;300;300;400;500;1000;2600;2600;8300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;16;27;6;19;10;7;4;4;4;4;4;4;4;150;13;13;16;16;16;14;42;36;108;145;36;445;1300;1300;5053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135000;115000;112573;0;0;0;0;0;0;0;0;0;78253;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103000;74000;72834;0;0;0;0;0;0;0;0;0;56481;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;41000;39739;0;0;0;0;0;0;0;0;0;21772;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;51000;108000;142000;96000;137000;97000;174000;163000;156000;142000;142000;150000;137000;141000;170000;142000;181000;210000;220000;220000;360000;400000;410000;67000;133000;124000;142000;105000;105000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;6000;43000;50000;37000;41000;33000;40000;46000;39000;47000;47000;64000;76000;69000;75000;73000;129000;140000;158000;158000;130000;140000;145000;42000;84000;70000;92000;60000;60000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;45000;65000;92000;59000;96000;64000;134000;117000;117000;95000;95000;86000;61000;72000;95000;69000;52000;70000;62000;62000;230000;260000;265000;25000;49000;54000;50000;45000;45000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1871;Other industrial roundwood;5516;Production;m3;11000;86000;86000;247000;247000;79000;92000;102000;44000;29000;24000;31000;18000;112000;113000;113000;148000;155000;155000;210000;16000;23000;226000;219000;174000;190000;149000;200000;200000;200000;200000;105000;101000;105000;100000;102000;0;0;0;90108;104975;89297;71476;87800;98927;77540;192154;192154;46533;0;60996;60900;68700;63000;63000;63000;72262;54669;67288;67288;67288;67288;67288
-84;'300;Greece;1871;Other industrial roundwood;5616;Import quantity;m3;8400;21300;15700;25500;30900;28500;71800;83400;48000;48000;49100;33000;42800;29400;30200;14700;8800;8800;8400;13900;13900;1400;10700;10700;5200;69600;28000;32400;277000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1871;Other industrial roundwood;5622;Import value;1000 USD;539;1303;1004;1364;2155;1934;4967;6650;3774;3757;3798;2603;3412;2156;1770;1178;624;624;2467;2230;2230;165;1986;1986;661;10270;3232;3726;51953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;4000;33000;33000;194000;194000;16000;59000;63000;26000;24000;17000;26000;12000;22000;24000;24000;33000;41000;41000;54000;9000;14000;62000;50000;58000;60000;44000;62000;62000;62000;62000;19000;21000;30000;19000;20000;0;0;0;54571;64959;61000;43005;48400;68420;56140;167351;167351;29713;0;45348;45300;43600;43000;43000;43000;36866;42588;54440;54440;54440;54440;54440
-84;'300;Greece;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;7000;53000;53000;53000;53000;63000;33000;39000;18000;5000;7000;5000;6000;90000;89000;89000;115000;114000;114000;156000;7000;9000;164000;169000;116000;130000;105000;138000;138000;138000;138000;86000;80000;75000;81000;82000;0;0;0;35537;40016;28297;28471;39400;30507;21400;24803;24803;16820;0;15648;15600;25100;20000;20000;20000;35396;12081;12848;12848;12848;12848;12848
-84;'300;Greece;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;8400;21300;15700;25500;30900;28500;71800;83400;48000;48000;49100;33000;42800;29400;30200;14700;8800;8800;8400;13900;13900;1400;10700;10700;5200;69600;28000;32400;277000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;539;1303;1004;1364;2155;1934;4967;6650;3774;3757;3798;2603;3412;2156;1770;1178;624;624;2467;2230;2230;165;1986;1986;661;10270;3232;3726;51953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;9000;10000;10000;11591;11000;3044;3044;3044;3044;3044;3044;3044;0;3332;3295;3044;1908;1908;1908;1908;504;303;303;303;303;303;303
-84;'300;Greece;1630;Wood charcoal;5610;Import quantity;t;;;800;300;200;200;200;1400;1000;1100;800;1000;1500;1500;600;200;200;500;400;200;300;100;100;100;500;200;600;600;600;500;500;3021;587;1959;400;400;16000;16300;1000;16745;25930;32200;45000;50560;53854;62660;62100;68447;67150;56718;59034;60996;62670;56581;56581;56581;57206;60936;60366;53921;53921;53921;53921
-84;'300;Greece;1630;Wood charcoal;5622;Import value;1000 USD;;;40;12;11;11;11;70;62;58;64;83;136;182;87;47;47;105;90;55;64;28;28;28;108;66;128;128;128;218;218;762;179;355;94;158;3568;3458;75;3412;4886;6965;11407;14847;17030;21197;26440;35006;32640;28519;29652;31364;32893;30728;30728;30728;28742.7;29689;30014;26459;26459;26459;26459
-84;'300;Greece;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1161;259;226;600;600;200;300;0;2006;189;43;80;96;64;0;160;262;269;167;360;673;1864;925;925;925;387;498;439;472;472;472;472
-84;'300;Greece;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;84;168;238;214;81;78;8;104;59;42;68;92;33;0;155;295;303;187;289;511;1118;549;549;549;397.19;579;490;637;637;637;637
-84;'300;Greece;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;33000;52540;20000;16443;21611;21611;21611;7000;7000;7000;13854;12335;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000
-84;'300;Greece;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;11600;3425;3146;8560;107353;194090;361326;434360;33040;12961;10909;29512;77336;67107;38732;37206;37206;37206;22612;21278;18058;19778;19778;19778;19778
-84;'300;Greece;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;650;399;390;717;3933;7125;13080;16513;2670;1974;1739;2201;4726;6876;4235;4783;4783;4783;2161.57;2879;2622;2682;2682;2682;2682
-84;'300;Greece;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;212;3616;240;3840;31;75;6980;600;8745;23574;17444;19314;3387;6582;7276;7276;7276;3535;2194;1512;867;867;867;867
-84;'300;Greece;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;36;11;113;9;94;1;9;731;157;628;2315;2082;1865;240;839;962;962;962;183.59;189;192;167;167;167;167
-84;'300;Greece;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;0;0;0;0;0;0;2500;2500;2500;2498;2499;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500
-84;'300;Greece;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;2451;3100;3600;4300;1000;500;6000;2405;1473;8010;106000;193000;358181;428790;23760;3137;1437;13153;35491;5561;9827;7384;7384;7384;8782;7754;4534;6254;6254;6254;6254
-84;'300;Greece;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;180;237;227;263;77;75;326;205;204;277;3342;6859;12598;15719;1462;725;730;1132;1844;733;1021;1246;1246;1246;834.5;998;741;801;801;801;801
-84;'300;Greece;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;1300;0;0;0;37;27;202;10;31;55;11;280;1;0;0;27;22;33;14;14;14;207;1346;664;19;19;19;19
-84;'300;Greece;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;14;0;8;18;2;4;5;2;1;3;0;82;7;0;0;7;4;3;14;14;14;53.27;56;59;34;34;34;34
-84;'300;Greece;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;30000;31000;52540;20000;16443;21611;21611;21611;4500;4500;4500;11356;9836;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500
-84;'300;Greece;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2403;259;549;2200;2200;5000;5400;5600;1020;1673;550;1353;1090;3145;5570;9280;9824;9472;16359;41845;61546;28905;29822;29822;29822;13830;13524;13524;13524;13524;13524;13524
-84;'300;Greece;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;10;25;104;92;337;328;324;194;186;440;591;266;482;794;1208;1249;1009;1069;2882;6143;3214;3537;3537;3537;1327.08;1881;1881;1881;1881;1881;1881
-84;'300;Greece;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;100;0;0;100;100;175;3589;38;3830;0;20;6969;320;8744;23574;17444;19287;3365;6549;7262;7262;7262;3328;848;848;848;848;848;848
-84;'300;Greece;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;0;0;18;18;9;109;4;92;0;6;731;75;621;2315;2082;1858;236;836;948;948;948;130.33;133;133;133;133;133;133
-84;'300;Greece;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;35000;36000;0;40000;53837;59360;59360;59360;59360;59360;59360
-84;'300;Greece;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20986;17958;25030;23836;23250;78292;71500;76121;72839;67786;60251;54325
-84;'300;Greece;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5693;4544;5702;5361;5112;12185.66;14988;13452;12818;12950;13886;12324
-84;'300;Greece;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;230;783;1204;3479;18951;18098;14093;13709;10630;7857;12442
-84;'300;Greece;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;54;181;243;624;3451.58;4170;3149;3037;2534;3394;3783
-84;'300;Greece;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;35000;36000;0;40000;53837;59360;59360;59360;59360;59360;59360
-84;'300;Greece;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17986;16276;20992;20992;20992;40876;46898;40486;43781;43781;43781;43781
-84;'300;Greece;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4128;3661;4697;4697;4697;7815.94;10044;7907;8042;8042;8042;8042
-84;'300;Greece;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;217;670;670;670;12521;8984;3588;3497;3497;3497;3497
-84;'300;Greece;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;133;133;133;2162.93;2114;821;954;954;954;954
-84;'300;Greece;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1682;4038;2844;2258;37416;24602;35635;29058;24005;16470;10544
-84;'300;Greece;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565;883;1005;664;415;4369.72;4944;5545;4776;4908;5844;4282
-84;'300;Greece;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;113;534;2809;6430;9114;10505;10212;7133;4360;8945
-84;'300;Greece;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;48;110;491;1288.65;2056;2328;2083;1580;2440;2829
-84;'300;Greece;1872;Sawnwood;5516;Production;m3;176200;188200;206500;184800;212000;210000;198000;243000;263000;272000;274000;328000;351000;305000;337000;366000;420200;425200;390200;380200;350000;363200;323200;321200;305200;454200;428200;410200;417200;355200;387000;337000;337000;337000;337000;337000;130000;137000;140000;122574;122574;195802;191080;191080;191080;108000;108000;108000;105964;118216;108000;108000;108000;108000;108000;108000;52554;65805;65805;65805;65805;65805;65805
-84;'300;Greece;1872;Sawnwood;5616;Import quantity;m3;237600;278400;318700;319700;437100;532900;459300;494600;503000;487000;472700;536400;481000;323300;297200;473100;430900;451100;660100;544600;384000;350700;387200;354700;384900;431500;522000;413900;621600;592800;550200;545359;360163;395144;205400;466100;910100;411100;780000;757610;762927;838229;1001638;918251;874151;897950;928420;670100;446000;370480;288700;226550;223080;279850;290000;290000;258789;269064;292823;254494;254494;254494;254494
-84;'300;Greece;1872;Sawnwood;5622;Import value;1000 USD;12997;14834;16452;17425;24407;30843;25576;27439;28859;31403;30003;34958;33942;18460;36137;49693;55155;61586;74448;80872;60188;64852;68014;63984;67986;90850;117333;129500;168001;188854;188854;150298;73703;91298;56135;100912;154572;150018;149236;137628;136815;228229;211071;218698;212820;241113;322068;244468;152737;122661;95759;64508;63575;76350;71050;71050;74312.68;80834;87279;73173;73173;73173;73173
-84;'300;Greece;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;700;500;500;500;500;500;2100;3100;13900;5500;7550;6250;3700;2000;11500;4300;6200;3400;2400;3300;3500;14900;21900;21900;29809;12400;8403;20700;9800;102000;10600;16330;11347;15857;12361;10907;18471;13111;8720;13780;10900;17260;18491;24868;26450;17183;15947;13000;13000;10363;9199;9199;7740;7740;7740;7740
-84;'300;Greece;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;57;52;51;56;62;72;511;338;2777;1580;1520;1748;1110;602;3467;1475;2118;1180;909;1336;1336;4249;7160;7160;10940;3440;3136;6131;3510;10638;10227;10280;4483;5121;4304;5016;9942;6777;4823;8638;6646;5926;5164;5942;5641;5322;5243;4101;4101;4552.42;4673;4673;6042;6042;6042;6042
-84;'300;Greece;1632;Sawnwood, coniferous;5516;Production;m3;111100;111100;128250;111400;128500;125000;116500;156500;178000;169500;167500;176500;186500;149500;178500;203500;250100;250100;205100;205100;222000;178100;191100;191100;200100;290100;201100;180100;187100;185100;198000;210000;210000;210000;210000;210000;81000;85000;87000;70536;70536;81022;73904;73904;73904;64000;64000;64000;67652;67573;64000;64000;64000;64000;64000;64000;49062;51532;51532;51532;51532;51532;51532
-84;'300;Greece;1632;Sawnwood, coniferous;5616;Import quantity;m3;226350;268300;300450;296350;402700;479300;407550;437700;444950;415000;401150;469350;414350;295400;244250;389550;357700;410050;609050;493150;366550;326800;358900;327900;353500;376900;472600;376400;545600;522600;480000;471539;345211;374709;189400;410900;620100;380700;580000;595240;582631;649115;832963;725322;704597;796130;819600;538000;365000;315480;250700;195550;188080;233850;250000;250000;200654;212181;234350;199391;199391;199391;199391
-84;'300;Greece;1632;Sawnwood, coniferous;5622;Import value;1000 USD;12214;14094;15174;15705;22085;27077;21851;23455;25043;26202;24746;29917;26454;14536;32530;41894;45648;54817;67506;72613;54916;59456;61602;58306;60859;76063;101875;113000;141757;157707;157707;121850;64809;81126;45910;82006;128639;124824;124178;91420;83463;159238;155471;146856;140705;184939;246833;160468;99118;85921;72339;49072;46456;52850;52850;52850;48207.49;54128;55794;47424;47424;47424;47424
-84;'300;Greece;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;600;400;400;400;400;400;1000;2700;6400;1700;975;1175;100;200;300;100;100;100;100;100;100;2200;1400;1400;3068;5550;1984;700;1100;5000;500;5400;220;857;1900;3050;2421;4634;4170;5210;2500;3780;10341;14378;15800;8370;5655;4000;4000;4092;1982;1982;973;973;973;973
-84;'300;Greece;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;47;36;36;36;36;36;180;290;1030;285;176;241;44;62;67;16;16;20;36;36;36;389;259;259;557;1054;327;126;289;1393;1340;1346;105;212;634;982;858;1112;1412;2020;846;1261;2378;2211;1856;1947;1301;1301;1301;815.22;868;868;439;439;439;439
-84;'300;Greece;1633;Sawnwood, non-coniferous;5516;Production;m3;65100;77100;78250;73400;83500;85000;81500;86500;85000;102500;106500;151500;164500;155500;158500;162500;170100;175100;185100;175100;128000;185100;132100;130100;105100;164100;227100;230100;230100;170100;189000;127000;127000;127000;127000;127000;49000;52000;53000;52038;52038;114780;117176;117176;117176;44000;44000;44000;38312;50643;44000;44000;44000;44000;44000;44000;3492;14273;14273;14273;14273;14273;14273
-84;'300;Greece;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11250;10100;18250;23350;34400;53600;51750;56900;58050;72000;71550;67050;66650;27900;52950;83550;73200;41050;51050;51450;17450;23900;28300;26800;31400;54600;49400;37500;76000;70200;70200;73820;14952;20435;16000;55200;290000;30400;200000;162370;180296;189114;168675;192929;169554;101820;108820;132100;81000;55000;38000;31000;35000;46000;40000;40000;58135;56883;58473;55103;55103;55103;55103
-84;'300;Greece;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;783;740;1278;1720;2322;3766;3725;3984;3816;5201;5257;5041;7488;3924;3607;7799;9507;6769;6942;8259;5272;5396;6412;5678;7127;14787;15458;16500;26244;31147;31147;28448;8894;10172;10225;18906;25933;25194;25058;46208;53352;68991;55600;71842;72115;56174;75235;84000;53619;36740;23420;15436;17119;23500;18200;18200;26105.2;26706;31485;25749;25749;25749;25749
-84;'300;Greece;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;100;100;100;100;100;100;1100;400;7500;3800;6575;5075;3600;1800;11200;4200;6100;3300;2300;3200;3400;12700;20500;20500;26741;6850;6419;20000;8700;97000;10100;10930;11127;15000;10461;7857;16050;8477;4550;8570;8400;13480;8150;10490;10650;8813;10292;9000;9000;6271;7217;7217;6767;6767;6767;6767
-84;'300;Greece;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;10;16;15;20;26;36;331;48;1747;1295;1344;1507;1066;540;3400;1459;2102;1160;873;1300;1300;3860;6901;6901;10383;2386;2809;6005;3221;9245;8887;8934;4378;4909;3670;4034;9084;5665;3411;6618;5800;4665;2786;3731;3785;3375;3942;2800;2800;3737.19;3805;3805;5603;5603;5603;5603
-84;'300;Greece;1634;Veneer sheets;5516;Production;m3;;;;2000;1500;2000;2000;2000;4000;6600;8500;10000;10000;7900;8000;10000;12000;11000;13000;14000;11000;10000;12000;12000;20000;20000;20000;20000;20000;20000;20000;8000;8000;8000;8000;8000;5000;6000;7300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1634;Veneer sheets;5616;Import quantity;m3;300;200;300;300;400;500;300;300;200;100;100;200;200;100;200;200;200;100;700;600;400;500;1400;1500;1900;2300;3400;1900;3700;4900;4900;5595;12593;3273;9000;11000;10000;10420;10734;10026;13916;22062;16430;23499;26992;24470;28520;19708;17846;31154;24045;11231;25283;23429;23429;23429;29272;27756;28117;26793;26793;26793;26793
-84;'300;Greece;1634;Veneer sheets;5622;Import value;1000 USD;159;165;186;264;316;534;347;286;157;131;177;209;245;116;160;269;247;567;1134;989;600;845;1904;2174;2651;4191;5983;6000;8032;13502;13502;13382;10793;8929;5758;13385;18872;18346;18184;21185;20019;24246;35640;46173;44919;48932;64066;66908;38545;30951;23960;18650;22102;19500;19500;19500;25683.31;23822;28629;25760;25760;25760;25760
-84;'300;Greece;1634;Veneer sheets;5916;Export quantity;m3;300;200;200;200;200;100;200;400;500;400;900;1000;1000;800;1900;1400;1000;1000;1300;900;200;100;200;500;200;200;7400;2600;1800;3300;3700;2859;334;1500;900;400;1100;1400;1400;121;1640;8858;671;561;714;1320;2140;1414;767;720;1040;686;691;854;854;854;1437;1671;1281;854;854;854;854
-84;'300;Greece;1634;Veneer sheets;5922;Export value;1000 USD;413;213;242;223;223;225;282;374;467;358;575;672;692;793;750;691;315;614;471;537;87;102;146;303;248;248;1935;2400;1221;3077;3077;2500;633;2304;978;448;1175;1074;1077;134;3284;2543;656;619;954;1054;3408;1969;1568;923;1269;1035;1131;1174;1174;1174;2447.75;2824;3641;2162;2162;2162;2162
-84;'300;Greece;1873;Wood-based panels;5516;Production;m3;;10000;20000;32000;54000;56700;64700;72600;98700;142700;182800;219800;266800;282800;262000;256000;271000;271000;383000;373000;387000;353000;359000;385000;368000;393000;358000;402000;378000;385000;375500;350000;355000;355000;355000;355000;288000;385000;402200;712432;662432;797090;866876;841712;841712;918000;918000;488000;993982;992038;987779;336210;336200;336200;336200;336200;351644;409067;421496;373309;373309;373309;373309
-84;'300;Greece;1873;Wood-based panels;5616;Import quantity;m3;39300;44600;55600;59500;54600;58273;50014;47588;29723;16348;15233;18701;20617;10700;14200;25700;20700;19014;16900;10000;7100;13300;17500;65200;79800;111200;179800;98100;126800;193200;171100;215801;116142;124585;90577;140100;366700;439905;482392;376607;279410;251987;428698;458913;400222;481540;404380;439338;242082;225374;185261;157731;199606;266480;266480;266480;379304;457148;451637;515536;515536;515536;515536
-84;'300;Greece;1873;Wood-based panels;5622;Import value;1000 USD;4548;5081;6246;6302;6247;6024;4901;3891;2653;1884;1781;2859;3063;1968;2083;2981;3029;1990;2008;2773;1265;2141;2346;6105;7255;11558;22887;17030;38205;64484;62807;67750;35597;40741;33521;44411;75828;74412;73963;69806;55427;48958;98013;116869;137600;156006;162492;189518;97059;97032;81112;62659;80831;93810;93810;93810;108717.63;134636;119440;119771;119771;119771;119771
-84;'300;Greece;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;100;100;2700;5100;9300;22700;44900;36100;41500;34100;28800;32400;27600;25700;32000;40000;40000;31200;41900;33800;45800;41000;38900;47000;67296;20906;29939;34400;31929;113000;133000;110900;90445;84028;70215;129154;200659;199175;79570;84610;88598;167444;140808;188399;233183;159895;148556;148556;148556;118013;136693;133979;133348;133348;133348;133348
-84;'300;Greece;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;14;14;451;1053;2243;7228;10359;8590;13978;13423;11890;16020;18656;8593;13412;16052;13907;12576;16291;14887;17500;17381;23102;24094;33881;10136;14325;9739;15787;33429;32123;32203;20188;18304;23324;37659;56343;58677;36147;49443;57281;45551;52939;71938;73770;60775;61417;61417;61417;49319.58;55037;54672;54711;54711;54711;54711
-84;'300;Greece;1640;Plywood and LVL;5516;Production;m3;;10000;20000;20000;30000;25000;28000;33000;45000;58000;72000;84000;84000;89000;70000;64000;65000;63000;77000;68000;69000;47000;52000;97000;80000;95000;70000;95000;90000;98000;86500;70000;70000;70000;70000;70000;31000;32000;34200;33516;33516;38000;38000;12902;12902;21000;21000;21000;17706;17706;17662;21000;21000;21000;21000;21000;30193;33233;33233;33233;33233;33233;33233
-84;'300;Greece;1640;Plywood and LVL;5616;Import quantity;m3;19300;20000;28000;26900;29800;26500;22300;15400;12600;7800;6700;9400;11900;4700;4400;7200;10200;2300;1300;2200;500;2000;1900;2700;2800;2600;4700;6400;9600;13000;17000;15465;1802;3001;3900;8600;14000;14700;15200;25382;30228;17164;51200;58061;68265;81790;64760;89418;61939;54870;41180;32630;50900;67511;67511;67511;53513;67241;52085;45364;45364;45364;45364
-84;'300;Greece;1640;Plywood and LVL;5622;Import value;1000 USD;2853;3069;4225;3962;4361;3822;2990;1938;1618;1181;950;1968;2291;1402;1180;1741;2323;746;483;1245;317;901;590;696;821;969;1946;3350;4889;6762;6800;7745;1304;1759;2371;5177;4789;4648;4609;10878;12561;7531;26047;32510;41945;52269;44812;54170;33337;29581;22659;19335;23288;30544;30544;30544;32827.04;42718;25996;22043;22043;22043;22043
-84;'300;Greece;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;100;100;2400;4900;8400;18700;17200;22200;29700;22100;23800;27300;23100;8700;16600;23200;22700;20800;25000;19400;18900;16300;23600;24000;26395;8334;13533;7600;13700;17000;17800;18500;5642;5721;685;7859;9885;11359;12750;13180;12568;45392;12078;19718;22428;25945;33023;33023;33023;15895;15870;16179;15118;15118;15118;15118
-84;'300;Greece;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;14;14;417;1037;2138;6800;7806;7330;12586;12052;11208;15101;17712;5101;10474;12822;11368;11193;13858;11840;11800;12581;19094;19094;22361;5956;10402;3652;9363;13142;12621;12616;3302;2434;308;9334;11973;13055;16844;20866;22103;15607;14427;20135;14225;16495;18443;18443;18443;22093.58;22614;23322;22920;22920;22920;22920
-84;'300;Greece;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;3000;15000;18000;23000;28000;40000;70000;95000;120000;167000;178000;178000;178000;190000;190000;289000;288000;298000;288000;289000;270000;270000;280000;270000;289000;270000;275000;264000;250000;250000;250000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;4700;6600;8700;12200;10900;18400;17500;18900;8700;1600;1900;3300;2400;1200;4600;4500;1900;958;1000;2000;2000;1000;2100;9600;24600;24600;29800;29700;44800;61300;54000;67075;39065;27744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;347;451;518;701;593;956;898;1017;470;77;80;196;145;100;346;325;225;283;566;755;335;432;280;1214;2430;2950;4500;5000;11740;18187;18000;23262;15930;12912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;300;200;900;4000;27700;13900;11800;12000;5000;5100;4500;17000;15400;16800;17300;10400;16900;14400;26900;24700;15300;23000;21433;7117;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;34;16;105;428;2553;1260;1392;1371;682;919;944;3492;2938;3230;2539;1383;2433;3047;5700;4800;4008;5000;6274;1616;3371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;250000;257000;268000;283000;593916;593916;757090;820810;820810;820810;892000;892000;462000;910439;898062;893512;240000;240000;240000;240000;240000;256451;310834;323263;265076;265076;265076;265076
-84;'300;Greece;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25400;31700;49700;106000;139000;65505;64392;34799;124980;122220;123001;157000;8370;136002;88311;85014;71659;64618;95745;155166;155166;155166;129194;160862;171188;241187;241187;241187;241187
-84;'300;Greece;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6687;10340;18696;17647;17608;18034;14879;8628;23526;27338;30207;38724;2670;41398;21226;32534;26465;19899;34018;43007;43007;43007;32776.29;40361;42514;47225;47225;47225;47225
-84;'300;Greece;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;15729;46000;59500;34400;60113;67538;55073;103240;166962;154771;29870;800;33794;80622;76995;95956;150129;73500;49606;49606;49606;30663;36325;36316;35833;35833;35833;35833
-84;'300;Greece;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5982;5342;11593;11113;11175;12788;13791;11873;23427;37575;35173;6106;203;13128;14103;21890;28410;37855;22082;16611;16611;16611;9405.39;11184;11064;10993;10993;10993;10993
-84;'300;Greece;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;16605;16492;13926;1208;4848;20020;10780;10915;23000;134050;6418;5689;6786;7341;8832;7655;9102;9102;9102;11505;13757;12812;12813;12813;12813;12813
-84;'300;Greece;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3300;3653;3628;894;279;1045;2518;2883;2890;6098;40938;2210;3135;3367;3858;3744;3597;3857;3857;3857;4110.95;4922;4237;3906;3906;3906;3906
-84;'300;Greece;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2600;155;0;1405;780;464;611;0;33130;136;231;5;44;70;100;100;100;100;329;587;596;1079;1079;1079;1079
-84;'300;Greece;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;38;0;303;276;148;181;0;12968;43;78;2;19;74;71;52;52;52;66.67;280;400;471;471;471;471
-84;'300;Greece;1874;Fibreboard;5516;Production;m3;;;;9000;9000;13700;13700;11600;13700;14700;15800;15800;15800;15800;14000;14000;16000;18000;17000;17000;20000;18000;18000;18000;18000;18000;18000;18000;18000;12000;25000;30000;35000;35000;35000;35000;0;85000;85000;85000;35000;2000;8066;8000;8000;5000;5000;5000;65837;76270;76605;75210;75200;75200;75200;75200;65000;65000;65000;75000;75000;75000;75000
-84;'300;Greece;1874;Fibreboard;5616;Import quantity;m3;15300;18000;18900;20400;13900;13373;10214;13288;8423;6948;6633;6001;6317;4800;5200;14000;8600;15756;14600;5800;4600;10300;13500;52900;52400;84000;145300;62000;72400;118900;100100;133261;75275;93840;61277;84800;288000;302600;311700;271794;183582;195176;232498;267852;198041;219750;197200;207500;86143;78704;65081;51651;45306;34701;34701;34701;185092;215288;215552;216172;216172;216172;216172
-84;'300;Greece;1874;Fibreboard;5622;Import value;1000 USD;1348;1561;1503;1639;1293;1246;1013;936;565;626;751;695;627;466;557;915;481;961;959;773;613;808;1476;4195;4004;7639;16441;8680;21576;39535;38007;36743;18363;26070;24463;25594;49043;48464;48118;40000;27708;31754;45922;54138;62558;58915;74072;91740;39361;31550;28130;19681;19928;16402;16402;16402;39003.36;46635;46693;46597;46597;46597;46597
-84;'300;Greece;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19468;5455;1406;800;2500;50000;53200;55400;24535;10769;13052;17275;23348;32434;36950;37500;42100;41199;51730;72681;60556;60350;65827;65827;65827;71126;83911;80888;81318;81318;81318;81318
-84;'300;Greece;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5246;2564;552;105;1082;8694;8359;8382;4060;2079;10840;4622;6647;10268;13197;15406;22007;15763;16620;23374;21616;22127;26311;26311;26311;17753.94;20959;19886;20327;20327;20327;20327
-84;'300;Greece;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;0;30000;30000;30000;30000;2000;8066;8000;8000;5000;5000;5000;4405;5426;4802;5000;5000;5000;5000;5000;0;0;0;0;0;0;0
-84;'300;Greece;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;6500;31000;32500;33400;23476;19010;18682;29103;36466;32104;29470;9200;13500;8536;8423;6638;6564;7962;6758;6758;6758;4940;6426;6690;7310;7310;7310;7310
-84;'300;Greece;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3818;2780;8769;8921;8847;6998;6062;6454;11293;15240;15924;17027;9042;15300;9611;9581;7033;5380;6198;6233;6233;6233;4436.61;5321;5379;5283;5283;5283;5283
-84;'300;Greece;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1000;1500;1600;7536;2030;3050;2374;4681;12003;17790;1000;1300;761;648;1732;1690;1740;7077;7077;7077;7076;9595;6572;7002;7002;7002;7002
-84;'300;Greece;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977;392;377;378;1969;797;871;1053;1542;4297;6680;911;1362;777;697;1624;1412;1517;4447;4447;4447;3559.96;5042;3969;4410;4410;4410;4410
-84;'300;Greece;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;0;0;0;0;0;0;0;0;58640;69772;70206;70210;70200;70200;70200;70200;65000;65000;65000;75000;75000;75000;75000
-84;'300;Greece;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;71100;233000;244900;252300;241786;143163;139930;150553;191257;154931;168850;135000;160000;72773;56743;56888;44300;36400;26500;26500;26500;57639;67004;67004;67004;67004;67004;67004
-84;'300;Greece;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20352;21900;37173;36531;36283;32240;19706;20928;25352;32721;43005;37191;53500;66800;26676;19841;20452;14057;13353;9745;9745;9745;20231.16;24316;24316;24316;24316;24316;24316
-84;'300;Greece;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;35800;37300;7967;4057;6800;8728;14948;14877;16770;36000;40000;39758;48248;69151;57300;58000;58700;58700;58700;17393;19128;19128;19128;19128;19128;19128
-84;'300;Greece;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6003;5772;5784;1026;656;1325;1733;3790;5006;5977;14100;20100;14821;15441;21410;19910;20404;21858;21858;21858;7688.55;8731;8731;8731;8731;8731;8731
-84;'300;Greece;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;0;5000;5000;5000;5000;0;0;0;0;0;0;0;2792;1072;1597;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;3600;4000;4000;4000;4000;4000;4000;4000;12800;8300;15456;14300;5500;4300;8500;11600;48500;48000;78100;129700;46400;1200;100;100;14844;447;1277;1277;7200;24000;25200;26000;6532;21409;36564;52842;40129;11006;21430;53000;34000;4834;13538;1555;787;944;1443;1443;1443;122513;141858;141858;141858;141858;141858;141858
-84;'300;Greece;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;249;236;236;236;236;236;236;236;594;301;781;779;593;433;465;847;3062;2999;6150;12061;4300;108;7;7;4777;152;293;293;914;3101;3012;2988;762;1940;4372;9277;6177;3629;4697;11530;9640;3074;2128;645;244;377;424;424;424;14335.59;16998;16998;16998;16998;16998;16998
-84;'300;Greece;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2619;3674;616;800;800;15000;15900;16500;9032;4682;3202;6173;3719;5554;2390;500;800;680;2834;1798;1566;610;50;50;50;46657;55188;55188;55188;55188;55188;55188
-84;'300;Greece;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1213;1858;213;105;105;2299;2210;2220;1065;626;8644;1836;1315;965;540;395;545;165;482;340;294;206;6;6;6;6505.43;7186;7186;7186;7186;7186;7186
-84;'300;Greece;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;9000;9000;13700;13700;11600;13700;14700;15800;15800;15800;15800;14000;14000;16000;18000;17000;17000;20000;18000;18000;18000;18000;18000;18000;18000;18000;12000;25000;30000;30000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;15300;18000;18900;20400;13900;13373;10214;9688;4423;2948;2633;2001;2317;800;1200;1200;300;300;300;300;300;1800;1900;4400;4400;5900;15600;15600;71200;118800;100000;118417;74828;92563;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1348;1561;1503;1639;1293;1246;1013;687;329;390;515;459;391;230;321;321;180;180;180;180;180;343;629;1133;1005;1489;4380;4380;21468;39528;38000;31966;18211;25777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16849;1781;790;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4033;706;339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1879;Total fibre furnish;5510;Production;t;;;;;;8000;11000;11000;12000;53000;53000;63000;65000;70000;64000;60000;60000;67000;145000;169000;155000;142000;121000;101000;153000;154000;192000;193000;194000;232000;232000;232000;202000;202000;202000;202000;43000;175000;180000;56940;51940;51940;51940;345000;345000;146000;191000;191000;353000;309107;285000;310000;270000;275000;295000;320000;315000;310000;310000;330000;360000;390000;390000
-84;'300;Greece;1879;Total fibre furnish;5610;Import quantity;t;11900;14000;12900;13500;15900;12300;12000;87500;92300;118400;103500;85200;117200;103500;81900;101300;90700;112700;87700;102200;95200;117200;144600;145800;137600;168300;149100;113000;148200;148900;161000;124366;90442;90008;109201;79801;129901;136300;141020;116308;109415;109362;111041;118298;112477;84690;83710;106077;134117;121172;132269;147744;159854;150774;155669;156981;142097;128705;137171;124281;136662;138895;138895
-84;'300;Greece;1879;Total fibre furnish;5622;Import value;1000 USD;1416;1482;1324;1604;1805;1341;1186;12308;13445;20400;18349;14952;24827;40560;32122;37622;29227;31808;34191;52399;46182;53687;54448;67484;53788;64463;77231;58376;100425;100499;100570;59708;26645;43114;74423;38425;64916;58909;58634;76462;45216;45852;51207;61038;56322;49499;59736;79642;70571;96386;95957;88008;104147;92275;92026;93706;73454.8;82886;77930;64630;69353;69896;69896
-84;'300;Greece;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10609;12064;21984;5802;5802;27400;27800;32000;54691;35990;48178;72086;110327;145644;155089;195896;198449;365980;316483;285902;333806;276445;287685;312653;337150;359585;345718;345048;328387;362221;398103;398103
-84;'300;Greece;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193;1493;2645;1632;990;3029;2748;2746;6075;3980;6643;10849;13976;16181;16041;28206;34440;32726;44410;52861;56534;45251;43321;44037;51248;64679.89;47175;45865;41628;84193;85597;85597
-84;'300;Greece;1878;Pulp for paper;5510;Production;t;;;;;;8000;11000;11000;12000;13000;13000;18000;18000;20000;22000;18000;18000;25000;67000;66000;35000;27000;21000;21000;23000;26000;26000;28000;24000;52000;52000;52000;27000;27000;27000;27000;0;0;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1878;Pulp for paper;5610;Import quantity;t;11900;14000;12900;13500;15900;12300;12000;87500;92300;104400;92500;80200;107200;92900;65200;85900;71000;91200;70400;85400;82200;110300;137300;130800;126000;156200;139700;103600;130300;132000;144100;115101;70577;83966;96001;70401;121001;127000;131020;109197;100502;101622;105678;112643;102554;76300;80140;103933;123021;115183;122721;128333;147616;131307;131307;131307;89447;95940;104406;112028;112028;112028;112028
-84;'300;Greece;1878;Pulp for paper;5622;Import value;1000 USD;1416;1482;1324;1604;1805;1341;1186;12308;13445;19229;17451;14640;23964;37423;27747;34147;25376;28974;31502;47223;43487;52308;53041;60025;51729;62885;75200;56345;95931;96168;96239;57725;24535;41550;71667;36547;62480;56516;56255;75173;43757;44643;49183;57965;52017;45011;56870;77930;67608;92565;93284;84508;101594;87876;87876;87876;61954.64;76223;71267;61400;61400;61400;61400
-84;'300;Greece;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;194;908;902;902;400;0;3000;1025;1568;1408;4458;6574;4980;989;846;98;1137;1454;87;12915;7163;3241;3241;3241;3304;3270;2600;1245;1245;1245;1245
-84;'300;Greece;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;407;381;381;189;22;2;589;630;695;2219;3038;2661;840;818;322;423;1109;114;8122;4944;3008;3008;3008;3043.08;3009;1699;725;725;725;725
-84;'300;Greece;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;29000;28000;22000;21000;15000;15000;17000;18000;18000;18000;18000;50000;50000;50000;25000;25000;25000;25000;0;0;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1875;Wood pulp;5610;Import quantity;t;14200;15400;13900;14800;16700;19000;15600;91100;95000;109100;95900;84600;112500;99200;70600;87700;72800;90900;74500;99100;82400;111600;142600;137400;141600;177100;179000;133300;168200;148900;161400;117446;76235;88819;110001;85201;130001;136100;140000;110574;100421;101547;105596;112557;102446;76160;80260;104019;123109;114939;122660;127952;147394;131112;131112;131112;89237;95789;104228;111814;111814;111814;111814
-84;'300;Greece;1875;Wood pulp;5622;Import value;1000 USD;1699;1646;1418;1710;1839;2236;1948;13070;14017;20360;18259;15695;25375;39661;30650;35415;26644;28982;33586;54469;43631;53176;55144;63587;58649;71682;97587;75599;122091;107129;107566;59856;27951;44470;84466;47083;69419;57191;56894;76307;43658;44565;49055;57817;51848;44659;56588;77541;67331;91975;92740;83891;101221;87627;87627;87627;61683.1;76033;70997;61129;61129;61129;61129
-84;'300;Greece;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;884;902;902;400;0;1000;1024;1562;1405;4456;6574;4978;980;840;96;1130;1448;81;12908;7158;3237;3237;3237;3232;3235;2596;1242;1242;1242;1242
-84;'300;Greece;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;381;381;381;189;22;2;587;616;688;2212;3037;2654;828;805;313;395;1090;93;8094;4935;2994;2994;2994;2981.61;2980;1689;718;718;718;718
-84;'300;Greece;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-84;'300;Greece;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;2940;2940;3791;3791;3791;3791
-84;'300;Greece;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;1250;1250;1640;1640;1640;1640
-84;'300;Greece;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;31;31;20;20;20;20
-84;'300;Greece;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;24;24;16;16;16;16
-84;'300;Greece;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;29000;28000;22000;21000;15000;15000;17000;18000;18000;18000;18000;50000;50000;50000;25000;25000;25000;25000;0;0;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;5300;9200;9700;10000;12700;11500;11200;9900;13600;9500;9300;5600;8400;18700;11700;12700;22000;4100;10100;7900;9600;12100;25000;14600;14800;21800;9800;2500;5800;2800;2800;2008;1509;1;1;1;1;500;1000;67;48;53;40;87;51;70;310;256;24;41;257;183;208;347;347;347;;;;;;;
-84;'300;Greece;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;486;873;898;1002;1306;1215;1060;940;1436;1206;1145;623;1327;7459;4780;5241;7151;935;4787;3509;4711;5863;9269;6795;6328;8510;5082;1300;3252;1798;1798;705;387;1;1;1;1;195;193;30;15;29;28;73;41;128;153;146;15;22;175;118;757;188;188;188;;;;;;;
-84;'300;Greece;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45;0;0;0;0;7;0;0;5;497;31;31;31;;;;;;;
-84;'300;Greece;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;0;0;0;0;3;0;0;1;651;25;25;25;;;;;;;
-84;'300;Greece;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;6600;4800;3200;2800;500;500;500;500;500;500;500;500;500;500;500;7100;7100;7100;7100;7100;23400;20700;30000;33100;25000;41200;24900;24900;1700;1200;1200;3282;2032;3548;3000;3000;0;200;0;1844;10;0;0;0;0;60;20;0;103;386;858;1380;1401;1446;1446;1446;;;;;;;
-84;'300;Greece;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;930;609;426;472;65;65;65;65;65;65;65;65;65;65;65;2723;2723;2723;2723;2723;12657;10009;11615;13652;9783;16180;14299;14299;1094;768;768;1571;754;1366;1994;1994;0;77;77;812;12;0;3;3;0;21;9;1;69;378;880;1303;1056;1248;1248;1248;;;;;;;
-84;'300;Greece;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;76800;78100;94300;82600;74000;98200;73600;52900;59000;34800;76900;51100;66000;48600;76800;81300;80700;82800;91600;103900;75100;121500;125400;137500;107554;67017;80362;93000;67400;121000;126300;130000;107165;100363;101494;105556;112466;102395;75960;79480;103356;122624;114321;121238;126389;145784;129313;129313;129313;88978;92849;101288;108023;108023;108023;108023
-84;'300;Greece;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;11242;11932;17934;16217;13928;22548;29858;22861;23460;12779;24185;23100;38569;25809;36000;31687;38386;33947;37407;55073;40000;90762;91929;92000;54476;23380;40157;69672;34552;62479;56244;55952;74263;43631;44536;49024;57735;51807;44453;56046;77045;66969;91429;91506;82469;99406;86179;86179;86179;61572.48;74782;69746;59488;59488;59488;59488
-84;'300;Greece;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;882;900;900;400;0;1000;1024;1562;1405;4456;6529;4978;980;840;96;1123;1448;81;12903;6659;3206;3206;3206;3205;3204;2565;1222;1222;1222;1222
-84;'300;Greece;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;379;379;379;189;22;2;587;616;688;2212;3033;2654;828;805;313;392;1090;93;8093;4282;2969;2969;2969;2959.4;2956;1665;702;702;702;702
-84;'300;Greece;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;300;1200;400;300;300;300;300;500;6100;2500;16300;6900;3900;700;1900;1900;1100;1100;200;600;600;2000;2000;3000;298;525;490;0;0;300;300;0;308;0;94;514;301;577;350;290;1497;238;117;95;36;0;11;11;11;11;22;0;0;0;0;0
-84;'300;Greece;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;41;164;57;53;53;53;53;180;3057;879;4874;3116;1721;277;774;645;445;445;76;313;313;1344;1344;1500;124;198;227;0;0;90;195;193;157;0;47;179;148;256;182;200;1023;163;100;106;26;0;20;20;20;15.71;33;0;0;0;0;0
-84;'300;Greece;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2499;2885;0;0;0;0;0
-84;'300;Greece;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2470.34;2714;0;0;0;0;0
-84;'300;Greece;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;7000;9300;13000;16800;5300;11400;10000;1300;1000;8800;19700;14800;24100;5600;8300;8800;12600;23500;23100;27500;27500;78200;36900;47500;74039;62547;78026;70500;58700;109000;115900;119000;90577;83503;89200;90900;107936;101228;75070;77250;100523;122082;113703;120335;126264;145624;129155;129155;129155;88802;92640;101129;107819;107819;107819;107819
-84;'300;Greece;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;990;1415;2373;3309;1051;2555;3667;630;337;3132;6042;6621;13646;3145;3471;3329;6446;9822;9863;16796;16796;59159;26664;25550;38060;21814;38940;51466;30315;56839;77;77;64356;37459;39098;42592;55413;51009;43782;54365;74683;66400;90730;90570;82269;99093;85920;85920;85920;61310.65;74477;69471;59120;59120;59120;59120
-84;'300;Greece;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;766;0;0;0;0;1000;1024;405;523;3814;6222;4924;920;780;41;1092;1403;68;12899;6648;3202;3202;3202;703;317;2565;1221;1221;1221;1221
-84;'300;Greece;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;319;0;0;0;19;2;587;160;233;1873;2789;2518;612;597;42;329;1001;59;8082;4260;2950;2950;2950;479.74;236;1665;700;700;700;700
-84;'300;Greece;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-84;'300;Greece;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;187;159;204;204;204;204
-84;'300;Greece;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246.12;272;275;368;368;368;368
-84;'300;Greece;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;0;1;1;1;1
-84;'300;Greece;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.32;6;0;2;2;2;2
-84;'300;Greece;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;4900;5800;6400;7400;9300;19200;11600;2700;1900;3500;6900;6500;4000;5800;9200;9900;9600;9000;4900;900;900;1200;3700;4000;455;1452;1112;0;700;1000;800;1000;295;0;0;0;0;0;0;0;9;5;4;4;0;0;0;0;0;;;;;;;
-84;'300;Greece;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;629;842;1124;1372;1667;4242;4920;1450;843;1473;2352;2644;1982;3318;5807;5374;4640;5013;2321;539;539;904;2917;2950;242;437;512;0;430;457;87;86;172;0;0;0;0;0;0;0;71;14;9;12;0;0;0;0;0;;;;;;;
-84;'300;Greece;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;27;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-84;'300;Greece;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;64600;61800;74500;58100;59100;67300;51700;48400;50000;20000;34000;22900;34000;36500;57400;60700;57400;49200;63400;74900;46100;40100;82800;83000;32762;2493;734;22500;8000;10700;9300;10000;15985;16860;12200;14142;4229;590;540;1940;1327;299;497;804;89;160;147;147;147;;;;;;;
-84;'300;Greece;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;9582;9511;14380;11483;11157;15698;21218;20601;19223;7295;10917;10719;21220;19069;25948;22339;26855;18667;25147;37425;22352;29355;61004;62000;16050;931;478;18206;3807;5093;55885;55596;9578;6172;5391;6253;2174;542;489;1481;1268;392;590;818;174;313;239;239;239;;;;;;;
-84;'300;Greece;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;116;900;900;400;0;0;0;1157;882;642;307;27;60;60;55;31;45;13;4;11;4;4;4;;;;;;;
-84;'300;Greece;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;60;379;379;189;3;0;0;456;455;339;244;136;216;208;271;63;89;34;11;22;19;19;19;;;;;;;
-84;'300;Greece;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1667;Dissolving wood pulp;5610;Import quantity;t;2300;1400;1000;2000;3500;7000;3900;3900;2800;4800;3500;4500;5400;6400;5500;8900;8900;2800;6200;18100;800;2000;6300;9000;19000;22500;40400;30800;39200;19500;19900;4602;5677;4908;14000;14800;9000;9100;9000;1498;0;0;0;4;0;70;450;407;358;191;307;0;1;6;6;6;0;0;0;0;0;0;0
-84;'300;Greece;1667;Dissolving wood pulp;5622;Import value;1000 USD;283;164;94;236;468;956;823;823;584;1155;832;1079;1435;2279;2944;3991;3991;1139;2976;9668;454;1304;2573;4754;8591;9585;23133;20000;26983;12634;13000;3104;3430;2946;12799;10536;6939;675;672;1202;0;0;0;6;0;57;380;349;278;146;179;1;2;12;12;12;0.62;1;1;1;1;1;1
-84;'300;Greece;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0.21;0;0;0;0;0;0
-84;'300;Greece;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;8000;11000;11000;12000;13000;13000;18000;18000;20000;22000;18000;18000;25000;38000;38000;13000;6000;6000;6000;6000;8000;8000;10000;6000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;700;2700;300;300;300;100;100;100;100;100;100;100;7100;7100;3100;2100;4400;600;700;1000;2400;3400;1600;1100;1100;1300;2600;2600;2257;19;55;0;0;0;0;20;121;81;75;82;90;108;210;330;321;270;435;368;381;223;201;201;201;210;151;178;214;214;214;214
-84;'300;Greece;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;130;434;61;61;61;12;24;24;24;24;41;41;2723;2723;1131;892;2422;310;436;470;1192;1671;788;746;746;823;1673;1673;973;14;26;0;0;0;0;33;68;99;78;128;154;169;409;662;738;555;736;723;618;375;261;261;261;272.16;191;271;272;272;272;272
-84;'300;Greece;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;24;0;0;0;0;2000;1;6;3;2;0;2;9;6;2;7;6;6;7;7;4;4;4;72;35;4;3;3;3;3
-84;'300;Greece;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;0;0;0;0;0;2;14;7;7;1;7;12;13;9;28;19;21;28;11;14;14;14;61.69;29;10;7;7;7;7
-84;'300;Greece;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;13;0;144;165;247;170;450;303;432;350;835;600;445;402;402;402;566;614;567;495;495;495;495
-84;'300;Greece;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;5;0;136;156;239;193;470;370;475;419;592;539;417;435;435;435;576.69;585;551;479;479;479;479
-84;'300;Greece;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;62;0;1;173;5;10;17;19;910;83;278;0;0;0;0;23;1;0;1;1;1;1
-84;'300;Greece;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;49;0;1;76;3;11;27;30;180;51;196;0;0;0;0;8.47;1;0;1;1;1;1
-84;'300;Greece;1669;Recovered paper;5510;Production;t;;;;;;;;;;40000;40000;45000;47000;50000;42000;42000;42000;42000;78000;103000;120000;115000;100000;80000;130000;128000;166000;165000;170000;180000;180000;180000;175000;175000;175000;175000;43000;175000;175000;51940;51940;51940;51940;345000;345000;146000;191000;191000;353000;309107;285000;310000;270000;275000;295000;320000;315000;310000;310000;330000;360000;390000;390000
-84;'300;Greece;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;14000;11000;5000;10000;10600;16700;15400;19700;21500;17300;16800;13000;6900;7300;15000;11600;12100;9400;9400;17900;16900;16900;9265;19865;6042;13200;9400;8900;9300;10000;7111;8913;7740;5363;5655;9923;8390;3570;2144;11096;5989;9548;19411;12238;19467;24362;25674;52650;32765;32765;12253;24634;26867;26867
-84;'300;Greece;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1171;898;312;863;3137;4375;3475;3851;2834;2689;5176;2695;1379;1407;7459;2059;1578;2031;2031;4494;4331;4331;1983;2110;1564;2756;1878;2436;2393;2379;1289;1459;1209;2024;3073;4305;4488;2866;1712;2963;3821;2673;3500;2553;4399;4150;5830;11500.16;6663;6663;3230;7953;8496;8496
-84;'300;Greece;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10395;11870;21076;4900;4900;27000;27800;29000;53666;34422;46770;67628;103753;140664;154100;195050;198351;364843;315029;285815;320891;269282;284444;309412;333909;356281;342448;342448;327142;360976;396858;396858
-84;'300;Greece;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1065;1365;2238;1251;609;2840;2726;2744;5486;3350;5948;8630;10938;13520;15201;27388;34118;32303;43301;52747;48412;40307;40313;41029;48240;61636.81;44166;44166;40903;83468;84872;84872
-84;'300;Greece;1876;Paper and paperboard;5510;Production;t;72000;72000;80000;90000;100000;110000;125000;136000;145000;125000;135000;160000;235000;234000;211000;214000;213000;196000;311000;307000;287000;266000;277000;294000;282000;283000;280000;280000;280000;361000;387000;387000;750000;750000;750000;750000;478000;622000;545000;496000;495000;493000;493000;510000;510000;412000;409000;409000;521729;607774;507896;409000;409000;409000;409000;409000;295846;320541;320541;320541;320541;320541;320541
-84;'300;Greece;1876;Paper and paperboard;5610;Import quantity;t;48600;40200;49600;51600;66700;70400;68000;69900;71700;72700;109400;137800;143700;144500;168300;190300;129100;132800;145900;160000;174100;206700;221000;210400;211600;214400;242400;255900;446000;463300;355100;338605;376455;366288;195000;250600;553000;379521;579157;681932;647159;496804;757151;596695;709721;1044220;701120;920783;790185;739967;634494;583945;637169;664899;664899;664899;738203;786310;795104;788561;791048;791893;779913
-84;'300;Greece;1876;Paper and paperboard;5622;Import value;1000 USD;8413;7994;9696;10312;13723;15290;15175;15748;16766;18189;27582;35047;47831;74808;104051;94451;68246;69125;86305;121634;126830;141875;125182;118588;123758;144462;189665;219603;422375;496410;464000;275614;246305;274150;198100;230901;466429;337709;382432;511517;470416;372681;621455;538561;621103;632021;704584;1028294;763446;730225;709417;580065;641581;687625;687625;687625;647201.35;732440;691943;658611;667331;691540;670975
-84;'300;Greece;1876;Paper and paperboard;5910;Export quantity;t;0;500;900;2400;4500;4700;8500;3800;6000;5900;8600;8400;5100;8600;10900;10700;14100;12100;29000;43900;43400;41700;17000;20500;25400;21400;24200;26200;62500;56000;34800;25261;23231;20652;28200;24700;41300;41420;44050;62428;43396;57223;81254;72568;71868;67500;118770;73930;86325;88546;95089;87511;89610;97794;97794;97794;98099;118000;109139;128162;130648;129333;129788
-84;'300;Greece;1876;Paper and paperboard;5922;Export value;1000 USD;0;84;209;492;940;914;1149;1040;1726;1703;2137;2313;1819;6767;5789;5245;6850;6401;16852;30376;37044;31439;12980;14901;17944;13532;17679;19256;79179;56294;43387;36441;22225;16797;31036;27460;33209;30835;31209;46232;39705;37493;68693;58117;57710;55589;57474;73149;72993;75503;83441;69890;75861;80824;80824;80824;79909.6;89666;76332;98784;100318;100560;100744
-84;'300;Greece;2042;Graphic papers;5510;Production;t;23000;23000;23000;23000;23000;22000;30000;36000;36000;30000;35000;41000;40000;39000;35000;37000;37000;62000;92000;89000;79000;78000;68000;85000;82000;73000;70000;70000;70000;91000;96000;96000;134000;134000;134000;134000;30000;32000;23000;24000;25000;23000;23000;0;0;0;0;0;0;64000;10734;0;0;0;0;0;47941;53458;53458;53458;53458;53458;53458
-84;'300;Greece;2042;Graphic papers;5610;Import quantity;t;26800;27100;34400;39000;48200;42400;39400;43000;37800;37300;62100;68100;74700;82200;82300;85500;69400;72700;70200;82500;76100;105800;111700;115700;115100;95800;126100;155500;176200;175300;143200;160299;198291;178559;88600;126300;331000;107900;348000;398717;400542;288460;424565;330800;455094;838810;481550;589929;480092;425872;344485;286623;293990;296788;296788;296788;247541;254270;248985;191856;194343;195188;183208
-84;'300;Greece;2042;Graphic papers;5622;Import value;1000 USD;4519;4590;5881;6939;8903;8277;7845;9043;8187;8564;14550;17141;22788;43891;49921;46668;38246;38825;39402;63862;55315;72694;63958;62407;66824;63882;92362;125000;159755;178565;164000;137974;130443;141563;87747;110601;264328;55083;194037;304707;267295;207760;352463;267233;385173;447834;485610;648058;465207;410791;357412;265221;282453;294318;294318;294318;209884.39;233672;218529;163360;172080;196289;175724
-84;'300;Greece;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;400;200;200;4200;400;200;100;1100;12000;36200;26200;27200;4000;3600;5000;5700;10500;3600;10700;6800;2700;2261;2623;828;5300;3800;3300;1500;3000;15773;11724;18990;31117;4517;3403;8700;55020;4462;14701;4543;4040;2339;2356;2267;2267;2267;2056;2413;2894;2009;4495;3180;3635
-84;'300;Greece;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;102;43;43;3416;277;115;50;390;4520;24776;16995;17659;1936;2122;2899;3085;7043;2320;8054;4772;2387;1633;2076;816;5028;3583;3393;954;2740;10465;7547;9334;24619;3749;3735;8969;4945;6878;14938;5406;4567;2732;3272;3070;3070;3070;2824.55;3886;5141;4109;5643;5885;6069
-84;'300;Greece;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;12000;9000;5000;6000;15000;15000;12000;11000;8000;8000;8000;16000;20000;20000;9000;9000;9000;9000;9000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40243;43969;43969;43969;43969;43969;43969
-84;'300;Greece;1671;Newsprint;5610;Import quantity;t;26200;26000;33500;36600;45400;40400;35500;38800;33800;31600;48100;49900;53900;47800;48000;45600;38700;42000;39500;40000;50000;52000;61600;65800;68800;58600;80800;86800;90700;88800;79200;38429;59552;59559;35400;43900;103000;107900;111000;134963;125690;91400;108170;119736;143974;156360;120790;148825;132510;115592;94119;66349;81197;59299;59299;59299;40121;40824;32500;29828;29828;29828;29828
-84;'300;Greece;1671;Newsprint;5622;Import value;1000 USD;4222;4201;5431;6067;7826;7242;6418;7123;5984;5743;9052;9342;11663;20256;23156;20091;15885;16464;17041;21040;31500;30836;28796;28033;31589;29365;43127;50000;61503;65955;64000;19986;24475;28997;25955;28739;56739;55083;54823;70110;75637;47425;60168;68223;92173;113947;97943;123092;102307;78771;74861;47532;56109;44721;44721;44721;24050.63;27162;21799;17725;17725;17725;17725
-84;'300;Greece;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;100;100;;1000;11900;7900;3500;1000;1800;200;1800;900;3400;600;4100;4100;;1214;947;328;2800;2800;300;500;0;3830;212;98;5119;172;31;780;90;93;3610;53;669;166;131;11;11;11;106;66;66;112;112;112;112
-84;'300;Greece;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;54;54;;335;4460;3527;1980;502;690;33;768;361;1799;320;2385;2385;;638;607;281;2701;2701;290;278;280;2476;133;56;2604;105;8;571;88;48;2872;27;433;117;213;18;18;18;79.58;58;58;159;159;159;159
-84;'300;Greece;1674;Printing and writing papers;5510;Production;t;23000;23000;23000;23000;23000;22000;30000;36000;36000;30000;35000;41000;40000;39000;35000;37000;37000;62000;80000;80000;74000;72000;53000;70000;70000;62000;62000;62000;62000;75000;76000;76000;125000;125000;125000;125000;21000;23000;23000;24000;25000;23000;23000;0;0;0;0;0;0;64000;10734;0;0;0;0;0;7698;9489;9489;9489;9489;9489;9489
-84;'300;Greece;1674;Printing and writing papers;5610;Import quantity;t;600;1100;900;2400;2800;2000;3900;4200;4000;5700;14000;18200;20800;34400;34300;39900;30700;30700;30700;42500;26100;53800;50100;49900;46300;37200;45300;68700;85500;86500;64000;121870;138739;119000;53200;82400;228000;;237000;263754;274852;197060;316395;211064;311120;682450;360760;441104;347582;310280;250366;220274;212793;237489;237489;237489;207420;213446;216485;162028;164515;165360;153380
-84;'300;Greece;1674;Printing and writing papers;5622;Import value;1000 USD;297;389;450;872;1077;1035;1427;1920;2203;2821;5498;7799;11125;23635;26765;26577;22361;22361;22361;42822;23815;41858;35162;34374;35235;34517;49235;75000;98252;112610;100000;117988;105968;112566;61792;81862;207589;;139214;234597;191658;160335;292295;199010;293000;333887;387667;524966;362900;332020;282551;217689;226344;249597;249597;249597;185833.75;206510;196730;145635;154355;178564;157999
-84;'300;Greece;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;400;200;200;4200;300;100;100;100;100;28300;22700;26200;2200;3400;3200;4800;7100;3000;6600;2700;2700;1047;1676;500;2500;1000;3000;1000;3000;11943;11512;18892;25998;4345;3372;7920;54930;4369;11091;4490;3371;2173;2225;2256;2256;2256;1950;2347;2828;1897;4383;3068;3523
-84;'300;Greece;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;102;43;43;3416;223;61;50;55;60;21249;15015;17157;1246;2089;2131;2724;5244;2000;5669;2387;2387;995;1469;535;2327;882;3103;676;2460;7989;7414;9278;22015;3644;3727;8398;4857;6830;12066;5379;4134;2615;3059;3052;3052;3052;2744.97;3828;5083;3950;5484;5726;5910
-84;'300;Greece;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;22254;21872;22560;28997;32000;17272;16710;27370;32958;36889;23652;32309;26348;19387;21016;21016;21016;25184;19635;29435;18589;18589;18589;18589
-84;'300;Greece;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6258;14537;15334;15101;20351;21503;13651;14068;24696;33473;34294;21060;31233;23328;17961;19457;19457;19457;18214.94;17016;20251;15947;15947;15947;15947
-84;'300;Greece;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3433;3202;489;2497;2460;1;260;70;21;1458;93;18;185;18;34;34;34;108;116;87;45;45;45;45
-84;'300;Greece;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;2689;2238;374;1639;1577;50;228;58;32;1606;135;30;154;23;54;54;54;126.58;129;104;68;68;68;68
-84;'300;Greece;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;21000;25000;23000;23000;0;0;0;0;0;0;64000;10734;0;0;0;0;0;4764;5312;5312;5312;5312;5312;5312
-84;'300;Greece;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;52478;52261;53700;89358;81124;97102;115800;122420;115206;108317;103789;83712;84568;83305;110526;110526;110526;92558;95059;97914;78116;78116;78116;78116
-84;'300;Greece;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;53278;44864;44385;94039;78374;96472;111707;141974;150298;121243;120134;104566;90599;98157;119850;119850;119850;90438.77;99516;98824;73854;73854;73854;73854
-84;'300;Greece;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;984;1504;2903;1703;1583;2670;4810;53830;3421;4615;2273;2041;1365;1414;1358;1358;1358;1076;1274;2093;1135;1135;1135;1135
-84;'300;Greece;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;869;1358;1654;2443;1888;1760;2950;4960;3108;4607;5302;3208;2613;1575;1764;1755;1755;1755;1509.18;2187;3604;2186;2186;2186;2186
-84;'300;Greece;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2934;4177;4177;4177;4177;4177;4177
-84;'300;Greece;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155000;189022;200719;120800;198040;97940;196746;549940;210970;292940;202376;182839;134345;109358;110101;105947;105947;105947;89678;98752;89136;65323;67810;68655;56675
-84;'300;Greece;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132897;166782;131460;100849;177905;99133;182877;208112;220997;341195;207363;190826;146752;103762;110226;110290;110290;110290;77180.05;89978;77655;55834;64554;88763;68198
-84;'300;Greece;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;7526;6806;15500;21798;302;701;2850;1030;927;5018;2124;1312;623;793;864;864;864;766;957;648;717;3203;1888;2343
-84;'300;Greece;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;3942;3522;6461;18488;307;727;3210;1691;2191;5158;2036;1491;886;1272;1243;1243;1243;1109.21;1512;1375;1696;3230;3472;3656
-84;'300;Greece;1675;Other paper and paperboard;5510;Production;t;49000;49000;57000;67000;77000;88000;95000;100000;109000;95000;100000;119000;195000;195000;176000;177000;176000;134000;219000;218000;208000;188000;209000;209000;200000;210000;210000;210000;210000;270000;291000;291000;616000;616000;616000;616000;448000;590000;522000;472000;470000;470000;470000;510000;510000;412000;409000;409000;521729;543774;497162;409000;409000;409000;409000;409000;247905;267083;267083;267083;267083;267083;267083
-84;'300;Greece;1675;Other paper and paperboard;5610;Import quantity;t;21800;13100;15200;12600;18500;28000;28600;26900;33900;35400;47300;69700;69000;62300;86000;104800;59700;60100;75700;77500;98000;100900;109300;94700;96500;118600;116300;100400;269800;288000;211900;178306;178164;187729;106400;124300;222000;271621;231157;283215;246617;208344;332586;265895;254627;205410;219570;330854;310093;314095;290009;297322;343179;368111;368111;368111;490662;532040;546119;596705;596705;596705;596705
-84;'300;Greece;1675;Other paper and paperboard;5622;Import value;1000 USD;3894;3404;3815;3373;4820;7013;7330;6705;8579;9625;13032;17906;25043;30917;54130;47783;30000;30300;46903;57772;71515;69181;61224;56181;56934;80580;97303;94603;262620;317845;300000;137640;115862;132587;110353;120300;202101;282626;188395;206810;203121;164921;268992;271328;235930;184187;218974;380236;298239;319434;352005;314844;359128;393307;393307;393307;437316.96;498768;473414;495251;495251;495251;495251
-84;'300;Greece;1675;Other paper and paperboard;5910;Export quantity;t;0;500;900;2400;4500;4700;8500;3800;6000;5900;8200;8200;4900;4400;10500;10500;14000;11000;17000;7700;17200;14500;13000;16900;20400;15700;13700;22600;51800;49200;32100;23000;20608;19824;22900;20900;38000;39920;41050;46655;31672;38233;50137;68051;68465;58800;63750;69468;71624;84003;91049;85172;87254;95527;95527;95527;96043;115587;106245;126153;126153;126153;126153
-84;'300;Greece;1675;Other paper and paperboard;5922;Export value;1000 USD;0;84;209;492;940;914;1149;1040;1726;1703;2035;2270;1776;3351;5512;5130;6800;6011;12332;5600;20049;13780;11044;12779;15045;10447;10636;16936;71125;51522;41000;34808;20149;15981;26008;23877;29816;29881;28469;35767;32158;28159;44074;54368;53975;46620;52529;66271;58055;70097;78874;67158;72589;77754;77754;77754;77085.05;85780;71191;94675;94675;94675;94675
-84;'300;Greece;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;85000;85000;80000;85000;85000;85000;85000;109000;117000;117000;247000;247000;247000;247000;128000;128000;128000;140000;140000;140000;140000;155000;155000;51000;51000;51000;68424;75217;58061;51000;51000;51000;51000;51000;66214;70420;70420;70420;70420;70420;70420
-84;'300;Greece;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1300;1300;1400;1200;1200;1400;1400;1400;1000;1400;1200;1000;1000;1200;1000;4000;19000;19500;20000;15618;15783;18600;26093;27353;30932;44350;34850;28931;27625;31628;31967;40296;38816;63528;63528;63528;112696;122982;122982;161701;161701;161701;161701
-84;'300;Greece;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;926;926;940;1500;1700;2073;2000;1900;1740;1763;2500;3010;3010;1242;2229;2000;1800;1300;1400;1200;4500;21321;20728;20601;14466;13491;18505;29184;30757;35873;53484;45935;48179;38798;47817;49233;51442;54360;87977;87977;87977;124668.43;148620;148620;168535;168535;168535;168535
-84;'300;Greece;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;8300;8300;6500;10000;4600;10300;8700;8000;10000;12100;9200;8000;8000;21500;19900;10000;8000;6000;6000;6000;9600;20000;21200;22000;19943;16933;22100;21594;21304;19032;15710;17780;22502;18770;17695;16033;12065;12601;14264;14264;14264;18896;19284;19284;27980;27980;27980;27980
-84;'300;Greece;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;4316;4316;3800;7800;3600;12891;8860;8050;9300;10949;7600;7700;7700;23952;22276;12000;9000;6000;6100;6000;9600;19630;18895;18605;15708;13703;18323;22044;21456;20782;17534;22477;31388;23214;24295;23038;15327;18746;21450;21450;21450;25402.43;23552;23552;33216;33216;33216;33216
-84;'300;Greece;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462000;394000;332000;330000;330000;330000;355000;355000;361000;358000;358000;453305;460557;439101;358000;358000;358000;358000;358000;181691;196663;196663;196663;196663;196663;196663
-84;'300;Greece;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194221;189157;195373;197603;176644;280397;212481;216914;155170;178130;296114;277245;275991;252016;252835;296218;297893;297893;297893;373023;403825;421729;426284;426284;426284;426284
-84;'300;Greece;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174292;141070;150584;143057;113815;189184;187359;176365;107366;147565;304532;234413;244293;268608;232360;266292;268672;268672;268672;281954.78;322041;322102;298733;298733;298733;298733
-84;'300;Greece;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7020;6050;12689;5198;13865;23101;44267;48034;42270;45540;46024;51338;64618;74518;72423;72841;79902;79902;79902;76296;95737;86860;97396;97396;97396;97396
-84;'300;Greece;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4676;4425;6065;3283;6309;11415;23277;26174;22514;28994;33871;34288;42222;53877;47055;49755;53044;53044;53044;45614.29;57865;47530;55910;55910;55910;55910
-84;'300;Greece;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;83000;83000;80000;85000;85000;85000;85000;109000;117000;117000;325000;325000;325000;325000;320000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;89200;50800;51000;64000;66000;83000;85500;92600;80200;81700;100000;100000;84100;124900;140000;100000;50000;50000;52000;29000;36300;148000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;32260;20300;20500;31700;39000;48300;46700;39324;36100;36584;51900;62700;60000;107131;133970;98000;48000;46000;48000;29000;34000;90478;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;1300;1300;1000;1600;700;1600;1300;1200;1500;1800;1500;1000;9900;30100;25400;19100;13000;13608;13824;16900;11300;7000;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;353;353;313;640;300;1082;744;700;800;942;700;700;7000;46968;26121;26100;23908;13249;9881;20008;14277;3616;;;;;;;;;;;;;;;;;;;;;;;;;;
-84;'300;Greece;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134000;30000;33000;30000;35000;35000;165000;165000;165000;165000;165000;152176;133575;141949;165000;165000;165000;165000;165000;42828;41129;41129;41129;41129;41129;41129
-84;'300;Greece;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109453;106000;114614;123400;111000;185258;132979;128615;104350;125300;173437;166079;173580;149735;153703;176961;185764;185764;185764;238066;270854;288084;285856;285856;285856;285856
-84;'300;Greece;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51251;43965;50903;49129;44158;68297;65246;65671;54017;83851;121709;84503;104935;113085;97900;118298;120973;120973;120973;132606.46;168404;152777;139156;139156;139156;139156
-84;'300;Greece;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2339;1000;4638;1764;11050;14375;14507;14746;11800;10780;10260;4207;3338;5664;306;241;1332;1332;1332;820;900;1349;5433;5433;5433;5433
-84;'300;Greece;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833;381;1601;1182;4212;5667;5843;6374;4685;5095;5465;2683;2499;3297;378;325;1155;1155;1155;538.17;565;728;2338;2338;2338;2338
-84;'300;Greece;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328000;328000;1000;1000;0;0;0;0;6000;3000;3000;3482;4080;11642;3000;3000;3000;3000;3000;95337;108422;108422;108422;108422;108422;108422
-84;'300;Greece;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47065;43000;40992;42924;39800;49089;38589;40133;1070;3270;51223;49975;43819;41989;42569;45281;49725;49725;49725;64055;70826;70470;75504;75504;75504;75504
-84;'300;Greece;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87895;63201;67708;66298;48976;78922;82764;66259;1598;4694;100362;87758;78368;81760;71680;76201;80646;80646;80646;80264.42;89073;112992;96823;96823;96823;96823
-84;'300;Greece;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;1000;1362;706;879;598;8707;10508;7310;6160;6371;12110;43613;53783;55803;56550;58413;58413;58413;55217;66571;71133;68742;68742;68742;68742
-84;'300;Greece;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035;1206;1415;764;617;469;4972;5933;3922;3175;4689;8801;27891;38635;35567;37631;37663;37663;37663;30613.47;37000;38087;37683;37683;37683;37683
-84;'300;Greece;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36000;36000;35000;35000;35000;120000;120000;120000;120000;120000;147891;229031;154222;120000;120000;120000;120000;120000;27490;29755;29755;29755;29755;29755;29755
-84;'300;Greece;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182;39000;38821;29100;18670;43920;31401;38818;49750;49560;55061;47888;44135;43396;45061;55706;45433;45433;45433;55296;45508;44321;45732;45732;45732;45732
-84;'300;Greece;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34920;33422;31611;26766;18132;40843;35127;40235;51751;59020;71647;55553;52483;59641;54703;58844;56309;56309;56309;60440.49;55221;47161;54466;54466;54466;54466
-84;'300;Greece;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3859;4000;6686;2720;1700;8126;21053;21163;23160;28600;28296;24077;6396;6337;5003;4661;6073;6073;6073;9061;14154;1718;10997;10997;10997;10997
-84;'300;Greece;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2775;2824;3047;1324;1410;5278;12462;13247;13907;20724;23107;17783;6130;6643;5396;5983;7432;7432;7432;9437.64;13706;3190;11120;11120;11120;11120
-84;'300;Greece;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;262000;264000;260000;260000;70000;70000;70000;70000;70000;149756;93871;131288;70000;70000;70000;70000;70000;16036;17357;17357;17357;17357;17357;17357
-84;'300;Greece;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;1157;946;2179;7174;2130;9512;9348;0;0;16393;13303;14457;16896;11502;18270;16971;16971;16971;15606;16637;18854;19192;19192;19192;19192
-84;'300;Greece;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;482;362;864;2549;1122;4222;4200;0;0;10814;6599;8507;14122;8077;12949;10744;10744;10744;8643.41;9343;9172;8288;8288;8288;8288
-84;'300;Greece;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;50;3;8;236;2;0;1617;0;0;1097;10944;11271;8734;11311;11389;14084;14084;14084;11198;14112;12660;12224;12224;12224;12224
-84;'300;Greece;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;14;2;13;70;1;0;620;0;0;610;5021;5702;5302;5714;5816;6794;6794;6794;5025.01;6594;5525;4769;4769;4769;4769
-84;'300;Greece;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;41000;41000;40000;40000;40000;40000;40000;52000;57000;57000;44000;44000;44000;44000;0;0;0;0;0;0;0;0;0;0;0;0;0;8000;0;0;0;0;0;0;0;0;0;0;0;0;0
-84;'300;Greece;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;14500;7800;8000;10600;10400;13700;14100;15300;13300;13600;17200;14900;14900;143900;146600;110700;127306;127164;134529;76400;84000;55000;57900;22000;72224;33231;13100;26096;26061;6781;5890;6590;5809;5223;6476;6026;4191;8145;6690;6690;6690;4943;5233;1408;8720;8720;8720;8720
-84;'300;Greece;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;14597;8774;8860;13703;17072;21142;20481;20000;18341;18587;26180;31593;31593;154247;181646;200000;87840;68562;83187;80153;81800;90302;87606;26724;41760;46573;32601;50624;53212;23692;23337;25474;27525;25028;27324;34164;31042;38476;36658;36658;36658;30693.74;28107;2692;27983;27983;27983;27983
-84;'300;Greece;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;900;4400;3500;5400;2400;5300;4500;3800;5400;6500;5000;4700;4700;200;3900;3000;2000;1000;0;0;0;11000;11700;13000;14023;9541;2268;5442;2480;1399;820;430;942;1516;1690;498;684;1812;1361;1361;1361;851;566;101;777;777;777;777
-84;'300;Greece;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;461;2131;1898;3892;1700;6076;4176;2294;2679;3154;2147;2236;2236;205;3125;2900;1900;900;0;0;0;6570;6310;5439;13994;15172;3527;10615;9635;7019;6572;1058;1012;553;3580;1959;4776;4088;3260;3260;3260;6068.33;4363;109;5549;5549;5549;5549
-84;'300;Greece;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253084.23;296594;272530;263531;334048;370903;416117
-84;'300;Greece;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58730.08;78431;72800;81077;90497;104740;147771
-84;'300;Greece;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10177.65;11886;11886;11886;11886;11886;11886
-84;'300;Greece;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1378.97;1730;1730;1730;1730;1730;1730
-84;'300;Greece;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5736.21;6303;6303;6303;6303;6303;6303
-84;'300;Greece;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283.17;210;210;210;210;210;210
-84;'300;Greece;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4441.44;5583;5583;5583;5583;5583;5583
-84;'300;Greece;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095.8;1520;1520;1520;1520;1520;1520
-84;'300;Greece;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30048.95;34225;31125;33323;40892;55136;61409
-84;'300;Greece;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5597.75;5870;5134;5444;7716;10623;16670
-84;'300;Greece;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10167.15;11975;11975;11975;11975;11975;11975
-84;'300;Greece;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069.33;1527;1527;1527;1527;1527;1527
-84;'300;Greece;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14789.4;19516;19516;19516;19516;19516;19516
-84;'300;Greece;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4976.38;4743;4743;4743;4743;4743;4743
-84;'300;Greece;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168491.7;197755;176791;165594;228542;251153;290094
-84;'300;Greece;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40380.35;58943;54048;62015;69163;80499;117483
-84;'300;Greece;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922.87;1162;1162;1162;1162;1162;1162
-84;'300;Greece;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1580.73;1981;1981;1981;1981;1981;1981
-84;'300;Greece;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18486.53;20075;20075;20075;20075;20075;20075
-84;'300;Greece;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3746.57;3637;3637;3637;3637;3637;3637
-84;'300;Greece;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278948.15;317225;320449;328597;417253;505409;557906
-84;'300;Greece;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137137.49;141215;142271;151207;225035;300070;343904
-84;'300;Greece;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2455.86;2877;2877;2877;2877;2877;2877
-84;'300;Greece;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267.53;361;361;361;361;361;361
-84;'300;Greece;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39474.77;44459;44459;44459;44459;44459;44459
-84;'300;Greece;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28429.55;27951;27951;27951;27951;27951;27951
-84;'300;Greece;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42999.12;45074;45074;45074;45074;45074;45074
-84;'300;Greece;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33017.26;35315;35315;35315;35315;35315;35315
-84;'300;Greece;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106540;130694;133918;142066;230722;318878;371375
-84;'300;Greece;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48625;49707;50763;59699;133527;208562;252396
-84;'300;Greece;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87478.39;94121;94121;94121;94121;94121;94121
-84;'300;Greece;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26798.16;27881;27881;27881;27881;27881;27881
-85;'304;Greenland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34915;26395;52845;67183;72411;69986;94261
-85;'304;Greenland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;39;62;253;106;267;560
-85;'304;Greenland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;26;10113;9809;7253;7179;7179;7179;6928;6928;3454;3722;6916;8300;10058;7927;8913;8887;9759;8463;7824;8315;9296;7925;7374;6181;6475;7255;6017;7389;7591;7874;5474;7294
-85;'304;Greenland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;61;77;77;77;77;77;77;0;1;0;1;0;0;0;0;0;2;0;3;27;32;16;17;16;16;16;17;16;17;16;17
-85;'304;Greenland;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;191;45;78;892;892;892;892;892;892;1149;1154;883;882;882;378;671;624;640;82;61;72;107;90;81;192;101;1247;20;38;746;21;1377;50
-85;'304;Greenland;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;26;9;16;64;64;64;64;64;64;101;80;62;58;58;6;150;112;189;79;72;76;159;109;43;60;34;167;7;13;40;22;470;27
-85;'304;Greenland;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;5;12;455;8;79;43
-85;'304;Greenland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;2;7;20;13;26;13
-85;'304;Greenland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-85;'304;Greenland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-85;'304;Greenland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123;15;26;291;13;1298;7
-85;'304;Greenland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;5;6;20;9;444;14
-85;'304;Greenland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-85;'304;Greenland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-85;'304;Greenland;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;7;5;4;5;9;15;70;41;29;18;1;4;5;10;12;13;4;4
-85;'304;Greenland;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;6;2;7;7;19;13;124;91;20;26;1;2;2;6;9;9;7;3
-85;'304;Greenland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;10;12;13;4;4
-85;'304;Greenland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;6;9;9;7;3
-85;'304;Greenland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;7;5;4;5;9;15;70;41;29;18;1;;;;;;;
-85;'304;Greenland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;6;2;7;7;19;13;124;91;20;26;1;;;;;;;
-85;'304;Greenland;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;191;45;78;892;892;892;892;892;892;1149;1154;880;879;879;378;664;619;636;77;52;57;37;49;52;174;100;1243;15;28;734;8;1373;46
-85;'304;Greenland;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;26;9;16;64;64;64;64;64;64;101;80;61;57;57;6;144;110;182;72;53;63;35;18;23;34;33;165;5;7;31;13;463;24
-85;'304;Greenland;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;141;9;29;879;879;879;879;879;879;879;879;879;879;879;378;215;55;21;23;0;20;0;0;0;0;0;124;5;12;455;8;79;43
-85;'304;Greenland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;13;4;4;57;57;57;57;57;57;57;57;57;57;57;6;2;4;1;1;0;15;0;0;0;0;0;29;2;7;20;13;26;13
-85;'304;Greenland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;141;9;29;879;879;879;879;879;879;879;879;879;879;879;378;215;55;21;23;0;20;0;0;0;0;0;124;5;12;455;8;79;43
-85;'304;Greenland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;13;4;4;57;57;57;57;57;57;57;57;57;57;57;6;2;4;1;1;0;15;0;0;0;0;0;29;2;7;20;13;26;13
-85;'304;Greenland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;50;36;49;13;13;13;13;13;13;270;275;1;0;0;0;449;564;615;54;52;37;37;49;52;174;100;1119;10;16;279;0;1294;3
-85;'304;Greenland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;13;5;12;7;7;7;7;7;7;44;23;4;0;0;0;142;106;181;71;53;48;35;18;23;34;33;136;3;0;11;0;437;11
-85;'304;Greenland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;20;1;1;0;0;0;34;44;577;50;49;37;37;38;41;29;99;0;3;0;0;0;1120;0
-85;'304;Greenland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;28;1;4;0;0;0;76;57;174;69;52;48;35;15;20;14;33;0;2;0;0;0;419;0
-85;'304;Greenland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;50;36;36;0;0;0;0;0;0;250;274;0;0;0;0;415;520;38;4;3;0;0;11;11;145;1;1119;7;16;279;0;174;3
-85;'304;Greenland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;13;5;5;0;0;0;0;0;0;16;22;0;0;0;0;66;49;7;2;1;0;0;3;3;20;0;136;1;0;11;0;18;11
-85;'304;Greenland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;5;7;14;14;10;12;31;21;15;28;28;33;13;17;23;24;17;17;18;10;7;10;16
-85;'304;Greenland;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;3;4;20;21;14;12;31;21;20;28;42;28;20;26;26;24;26;26;22;11;8;12;23
-85;'304;Greenland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;19;19;9;9;16;9;9;15;27;6;9;19
-85;'304;Greenland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;18;44;6;4;7;6;6;12;16;3;3;12
-85;'304;Greenland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-85;'304;Greenland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0
-85;'304;Greenland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;16;2;5;11;2;2;13;24;0;3;11
-85;'304;Greenland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;43;1;1;4;1;1;11;15;1;1;8
-85;'304;Greenland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;11;3;7;4;5;7;7;2;3;6;6;8
-85;'304;Greenland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;9;1;5;3;3;5;5;1;1;2;2;4
-85;'304;Greenland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0
-85;'304;Greenland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0
-85;'304;Greenland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;2;1;2;1;1;16;5;13;5;13
-85;'304;Greenland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;14;3;11;4;26
-85;'304;Greenland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;2;1;2;1;1;4;4;4;4;10
-85;'304;Greenland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;5;3;3;3;11
-85;'304;Greenland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;9;1;3
-85;'304;Greenland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;8;1;15
-85;'304;Greenland;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10442;7870;7208;7208;7208;7208;7208;7208;3846;4043;10667;9793;10906;9866;8128;12221;18582;15310;16174;10439;13692;12744;10547;13426;15739;13706;7643;15168;4258;4587;4256;13397
-85;'304;Greenland;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4793;3371;2646;2646;2646;2646;2646;2646;1169;1218;3406;3394;4778;2810;3146;3536;4099;3427;3408;3425;4178;3671;2977;2614;2671;2739;1960;1699;1627;1539;1290;1556
-85;'304;Greenland;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9536;7283;6441;6441;6441;6441;6441;6441;3766;4011;9641;7593;7278;8626;7310;8679;13361;11000;10000;9334;13101;12601;10248;9359;9575;8324;7347;3162;3117;3542;3031;5109
-85;'304;Greenland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4234;2845;2275;2275;2275;2275;2275;2275;1129;1202;3123;2777;2984;2175;2576;2797;3267;2629;2444;2613;3688;3547;2687;2393;2382;2312;1454;1087;1061;1030;816;1037
-85;'304;Greenland;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906;587;767;767;767;767;767;767;80;32;1026;2200;3628;1240;818;3542;5221;4310;6174;1105;591;143;299;4067;6164;5382;296;12006;1141;1045;1225;8288
-85;'304;Greenland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;526;371;371;371;371;371;371;40;16;283;617;1794;635;570;739;832;798;964;812;490;124;290;221;289;427;506;612;566;509;474;519
-85;'304;Greenland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;39;49;49;49;49;49;49;24;20;21;23;17;77;97;1700;1720;350;424;20;30;1;1;6;7;1;0;99;1231;3;29;394
-85;'304;Greenland;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;51;38;38;38;38;38;38;20;31;20;27;30;75;96;1611;1753;478;418;65;34;3;1;28;8;2;0;69;782;6;45;100
-85;'304;Greenland;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4263;5551;5163;5091;5091;5091;5091;5091;2404;2426;2529;4659;4497;3387;4445;1997;1107;2343;3427;4523;3963;3496;3300;3145;3634;4246;3422;4731;3482;8639;3009;5174
-85;'304;Greenland;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3490;4546;3514;3440;3440;3440;3440;3440;1314;1553;1775;3101;3125;2593;3143;1228;1504;2104;1940;2545;2514;2197;2271;1751;2081;2272;1971;1840;1474;2760;1206;1536
-85;'304;Greenland;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;0;0;0;0
-85;'304;Greenland;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;0;0
-85;'304;Greenland;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3780;4959;4751;4751;4751;4751;4751;4751;2000;2000;2000;4000;4000;3000;4000;1719;820;2183;3109;4295;3678;3335;3135;3043;3391;4081;3257;4472;3035;8032;2774;3674
-85;'304;Greenland;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3109;4065;3212;3212;3212;3212;3212;3212;1088;1369;1428;2607;2607;2106;2810;962;1197;1912;1605;2269;2158;2006;2087;1678;1879;2088;1787;1653;1287;2411;979;1245
-85;'304;Greenland;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;491;337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;413;226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;337;337;337;337;401;423;526;656;494;384;442;124;96;36;120;46;99;30;10;0;141;10;10;37;8;65;133;1264
-85;'304;Greenland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;226;226;226;226;224;182;345;492;516;485;331;85;79;23;92;60;151;19;27;0;122;27;27;71;11;4;25;140
-85;'304;Greenland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0
-85;'304;Greenland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-85;'304;Greenland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;4;4;4;2;14;1;31;58
-85;'304;Greenland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;2;2;3;10;5;3;28
-85;'304;Greenland;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;101;75;3;3;3;3;3;3;3;3;3;3;3;3;154;191;124;198;182;186;131;151;102;98;151;151;220;425;541;71;178
-85;'304;Greenland;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;68;76;2;2;2;2;2;2;2;2;2;2;2;2;181;228;169;243;216;205;172;155;73;78;155;155;113;166;340;199;123
-85;'304;Greenland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;9;3;0;14;0;0;0;0;0;0;0;2;1;21;2
-85;'304;Greenland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;9;27;11;0;18;0;0;0;0;0;0;0;1;0;19;2
-85;'304;Greenland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;167;115;195;182;172;131;151;102;98;151;151;218;251;354;48;168
-85;'304;Greenland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;212;142;232;216;187;172;155;73;77;155;155;113;156;195;35;113
-85;'304;Greenland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;19;3;3;3;3;3;3;3;3;3;3;3;3;3;14;21;0;0;0;0;0;0;0;0;0;0;2;172;186;2;8
-85;'304;Greenland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;2;2;2;2;2;2;2;2;2;2;2;2;2;10;7;0;0;0;0;0;0;0;1;0;0;0;9;145;145;8
-85;'304;Greenland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;82;72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;61;74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;11;7.35;6.35;0;0;1;2;50;2;31;31;400
-85;'304;Greenland;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;24;24;16;3;3;9;13;53;27;57;83;270
-85;'304;Greenland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5.35;5.35;0;0;0;1;2;1;1;0;2
-85;'304;Greenland;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1;1;1;5;7;5;4;0;32
-85;'304;Greenland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5.35;5.35;0;0;0;1;2;1;1;0;0
-85;'304;Greenland;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1;1;1;5;7;5;4;0;0
-85;'304;Greenland;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5.35;5.35;0;0;0;1;2;1;1;0;0
-85;'304;Greenland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1;1;1;5;7;5;4;0;0
-85;'304;Greenland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;1;1;0;0
-85;'304;Greenland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;7;5;4;0;0
-85;'304;Greenland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0.35;0.35;0;0;;;;;;;
-85;'304;Greenland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;1;1;1;;;;;;;
-85;'304;Greenland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;;;;;;;
-85;'304;Greenland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;;;;;;;
-85;'304;Greenland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-85;'304;Greenland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32
-85;'304;Greenland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;2;2;0;0;2;2;2;2;2;2;2
-85;'304;Greenland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;5;5;0;0;5;5;5;5;5;5;5
-85;'304;Greenland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;4;2;1;0;0;1;1;48;1;30;31;398
-85;'304;Greenland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;16;16;8;2;2;8;8;46;22;53;83;238
-85;'304;Greenland;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;1301;734;734;734;734;624;624;535;533;939;811;857;1012;843;665;587;593;519;532;456;456;546;450;406;546;546;808;880;789;680;650
-85;'304;Greenland;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1798;1820;986;986;986;986;735;735;843;832;1644;1695;2041;2424;2361;2364;2188;2350;1953;2157;2311;1851;2028;1694;1646;2028;2028;3662;3606;3463;2356;3739
-85;'304;Greenland;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;148;148;148;148;148;148;148;0;0;0;1;0;0;0;0;0;1;0;3;87;201;18;18;18;18;18;18;18;18;18;18
-85;'304;Greenland;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;61;61;61;61;61;61;61;0;0;0;1;0;0;0;0;0;2;0;3;27;32;16;16;16;16;16;16;16;17;16;17
-85;'304;Greenland;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;671;210;210;210;210;100;100;258;266;557;563;625;732;542;489;421;397;329;254;230;243;244;232;187;244;244;331;359;279;383;203
-85;'304;Greenland;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;817;347;347;347;347;96;96;456;384;952;1123;1180;1317;1192;1279;1014;1140;828;663;551;521;519;372;364;519;519;1178;881;706;881;790
-85;'304;Greenland;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;154;100;100;100;100;100;100;0;11;209;67;25;52;51;144;81;100;94;65;16;16;2;0;2;2;2;3;2;15;9;11
-85;'304;Greenland;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;182;96;96;96;96;96;96;0;12;311;118;45;70;118;392;215;328;185;162;93;81;14;2;11;14;14;23;22;116;45;79
-85;'304;Greenland;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;517;110;110;110;110;;;258;255;348;496;600;680;491;345;340;297;235;189;214;227;242;232;185;242;242;328;357;264;374;192
-85;'304;Greenland;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;635;251;251;251;251;;;456;372;641;1005;1135;1247;1074;887;799;812;643;501;458;440;505;370;353;505;505;1155;859;590;836;711
-85;'304;Greenland;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;157;327;291;462;226;163;160;108;65;24;28;18;50;25;17;50;50;58;54;47;61;40
-85;'304;Greenland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7;248;583;492;728;382;276;317;285;170;98;86;55;152;86;98;152;152;227;245;115;187;167
-85;'304;Greenland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-85;'304;Greenland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;227;133;100;275;195;221;158;168;173;150;145;172;193;183;200;167;183;183;220;267;189;74;140
-85;'304;Greenland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;314;226;174;519;398;482;430;438;485;417;344;297;324;321;262;246;321;321;619;471;314;217;454
-85;'304;Greenland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-85;'304;Greenland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27;58;69;34;23;44;24;12;16;20;20;14;16;9;7;1;9;9;50;36;28;239;12
-85;'304;Greenland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;51;167;248;124;121;210;181;44;42;56;59;75;61;32;22;9;32;32;309;143;161;432;90
-85;'304;Greenland;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699;630;524;524;524;524;524;524;277;267;382;248;232;280;301;176;166;196;190;278;226;213;302;218;219;302;302;477;521;510;297;447
-85;'304;Greenland;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1133;1003;639;639;639;639;639;639;387;448;692;572;861;1107;1169;1085;1174;1210;1125;1494;1760;1330;1509;1322;1282;1509;1509;2484;2725;2757;1475;2949
-85;'304;Greenland;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;148;148;148;148;148;148;148;0;0;0;1;0;0;0;0;0;1;0;3;87;201;18;18;18;18;18;18;18;18;18;18
-85;'304;Greenland;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;61;61;61;61;61;61;61;0;0;0;1;0;0;0;0;0;2;0;3;27;32;16;16;16;16;16;16;16;17;16;17
-85;'304;Greenland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;17;29;12;31;58;68;90;68;66;85;89;87;104;210;112;119;210;210;304;353;334;212;251
-85;'304;Greenland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;35;82;50;164;432;460;572;526;512;631;604;648;578;735;485;470;735;735;1429;1682;1691;1012;1783
-85;'304;Greenland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;14;208;153;157;93;125;71;79;118;91;171;122;93;75;89;87;75;75;155;146;164;75;167
-85;'304;Greenland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;37;342;344;558;420;378;325;440;542;308;598;694;406;323;348;320;323;323;823;615;863;353;801
-85;'304;Greenland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;183;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;16;0;0;0;0;0;0;0;1;0;1
-85;'304;Greenland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;30;5;4;14;6;5;4;12;7;12;6;3;3;4;3;3;9;19;26;2;4
-85;'304;Greenland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;67;64;31;29;41;50;44;37;44;43;54;45;29;26;37;29;29;60;122;55;11;43
-85;'304;Greenland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;16;22;29;10;7;12;10;10;5;6;3;8;9;3;8;8;91;10;29;16;28
-85;'304;Greenland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;33;26;70;130;38;51;143;104;43;49;55;29;28;50;14;28;28;492;82;238;76;187
-85;'304;Greenland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;181;107;129;60;84;58;62;82;63;126;99;74;60;73;80;60;60;54;116;108;53;131
-85;'304;Greenland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;30;240;254;455;261;282;224;253;357;197;451;574;306;260;266;269;260;260;262;401;555;204;568
-85;'304;Greenland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;183;0;0;0;0;0;0;0;0;0;0
-85;'304;Greenland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;16;0;0;0;0;0;0;0;1;0;1
-85;'304;Greenland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;17;0;0;22;6;33;5;10;4;4;0;4;4;1;1;1;4;4
-85;'304;Greenland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;17;0;0;44;24;55;11;26;6;6;0;6;6;9;10;15;62;3
-85;'304;Greenland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524;524;229;236;145;83;44;129;108;15;19;12;14;18;17;16;17;17;13;17;17;18;22;12;10;29
-85;'304;Greenland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;639;297;376;268;178;139;255;331;188;208;156;186;292;418;346;451;489;492;451;451;232;428;203;110;365
-85;'304;Greenland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;148;0;0;0;1;0;0;0;0;0;1;0;3;8;18;18;18;18;18;18;18;18;18;18;18
-85;'304;Greenland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;0;0;0;1;0;0;0;0;0;2;0;3;13;16;16;16;16;16;16;16;16;16;16;16
-85;'304;Greenland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20848;12674;27445;41358;47471;43247;49852
-85;'304;Greenland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;20;42;58;85;187;175
-85;'304;Greenland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608;787;1363;2111;930;1107;1849
-85;'304;Greenland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11
-85;'304;Greenland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;160;297;399;341;314;556
-85;'304;Greenland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11
-85;'304;Greenland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;627;1066;1712;589;793;1293
-85;'304;Greenland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730;1062;2101;2382;4158;4609;4477
-85;'304;Greenland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;24;46;53;71;114
-85;'304;Greenland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;180;412;290;367;354;1448
-85;'304;Greenland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;3
-85;'304;Greenland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3626;5004;11819;19921;20952;15319;18552
-85;'304;Greenland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;0;0;1;0
-85;'304;Greenland;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;597
-85;'304;Greenland;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;896
-85;'304;Greenland;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-85;'304;Greenland;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-85;'304;Greenland;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31
-85;'304;Greenland;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241
-85;'304;Greenland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9664;1180;7164;9540;10736;11035;12860
-85;'304;Greenland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;4;1;20;39;41
-85;'304;Greenland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5429;2915;1260;1053;2364;1803;2476
-85;'304;Greenland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;1546;3326;6061;7964;9020;8190
-85;'304;Greenland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;64;6
-85;'304;Greenland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6812;7704;18011;18234;17066;21265;37115
-85;'304;Greenland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;3;3;179;4;64;368
-85;'304;Greenland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;9;9;38;1;5
-85;'304;Greenland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;160;178;292;174;485;409
-85;'304;Greenland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;0
-85;'304;Greenland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158;2362;5440;5630;4992;5777;7028
-85;'304;Greenland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;176;0;19;28
-85;'304;Greenland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3231;4029;9887;9584;9101;12245;26928
-85;'304;Greenland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;3;0;31;337
-85;'304;Greenland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1153;2497;2719;2761;2757;2745
-85;'304;Greenland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;13;3
-86;'308;Grenada;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24338.1;32494.1;28598;20620;28752;35470;33088
-86;'308;Grenada;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7118;7379;7110;7076;7122;7326;7131
-86;'308;Grenada;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977;3177;5735;6244;6244;10832;5167;5167;5167;5167;5167;5167;5167;5167;5167;5167;5167;5167;4965;4612;3779;6679.3;5680.1;6323.1;6778.1;7493.1;9974.1;10351;7295;11842;14604;9336
-86;'308;Grenada;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;14;4;0;2;4
-86;'308;Grenada;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066;3066;3066;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;700;500;336;0;110;274;1544;1359;4211;2975;968
-86;'308;Grenada;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;113;43;0;611;461;43;0;61;81;479;445;1287;1033;533
-86;'308;Grenada;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;111;1505;1355;2009;1008;609
-86;'308;Grenada;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;40;456;435;646;401;253
-86;'308;Grenada;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;163;39;4;2202;1967;359
-86;'308;Grenada;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;41;23;10;641;632;280
-86;'308;Grenada;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-86;'308;Grenada;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-86;'308;Grenada;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-86;'308;Grenada;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-86;'308;Grenada;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066;3066;3066;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;700;500;336;0;110;274;1544;1359;4211;2975;968
-86;'308;Grenada;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;113;43;0;611;461;43;0;61;81;479;445;1287;1033;533
-86;'308;Grenada;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066;3066;3066;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;335;0;3;111;1505;1355;2009;1008;609
-86;'308;Grenada;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;113;43;0;58;67;43;0;2;40;456;435;646;401;253
-86;'308;Grenada;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066;3066;3066;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;335;0;3;111;1505;1355;2009;1008;609
-86;'308;Grenada;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444;444;0;0;0;0;0;0;0;0;0;0;0;0;0;113;43;0;58;67;43;0;2;40;456;435;646;401;253
-86;'308;Grenada;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;500;1;0;107;163;39;4;2202;1967;359
-86;'308;Grenada;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;394;0;0;59;41;23;10;641;632;280
-86;'308;Grenada;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;500;1;0;0;19;11;0;178;20;32
-86;'308;Grenada;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;394;0;0;0;8;13;0;52;9;20
-86;'308;Grenada;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;107;144;28;4;2024;1947;327
-86;'308;Grenada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;59;33;10;10;589;623;260
-86;'308;Grenada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2;2;2;2;1;2;2;2
-86;'308;Grenada;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3;2.1;2.1;2.1;2.1;2.1;4;4;3;4;6
-86;'308;Grenada;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;0;0;0;1;0
-86;'308;Grenada;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1;1;1;2;0
-86;'308;Grenada;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;281;281;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;0;0;0;1;0
-86;'308;Grenada;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;10;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;1;1;1;2;0
-86;'308;Grenada;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4
-86;'308;Grenada;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8
-86;'308;Grenada;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4
-86;'308;Grenada;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8
-86;'308;Grenada;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9597;5217;8800;11900;11900;25700;9900;9900;9900;9900;9900;9900;9900;9900;9900;9900;9900;9900;15927;8477;5874;9824;8621;7373;9337;9841;11849;14196;6258;8047;8855;6357
-86;'308;Grenada;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1767;1048;2717;4029;4029;8717;3345;3345;3345;3345;3345;3345;3345;3345;3345;3345;3345;3345;2561;2814;2220;2400;2036;1801;2294;2822;3495;4111;2418;4146;4773;3147
-86;'308;Grenada;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;40;0
-86;'308;Grenada;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;14;2;0;0;0
-86;'308;Grenada;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9299;4945;6800;11600;11600;25000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;6109;6291;4974;5468;6379;6955;8950;9574;10637;13869;5948;7941;8784;6339
-86;'308;Grenada;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662;920;2294;3949;3949;8500;3043;3043;3043;3043;3043;3043;3043;3043;3043;3043;3043;3043;1794;2406;1946;2088;1620;1702;2227;2708;3110;3904;2311;4068;4712;3109
-86;'308;Grenada;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;40;0
-86;'308;Grenada;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;11;2;0;0;0
-86;'308;Grenada;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;272;2000;300;300;700;900;900;900;900;900;900;900;900;900;900;900;900;9818;2186;900;4356;2242;418;387;267;1212;327;310;106;71;18
-86;'308;Grenada;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;128;423;80;80;217;302;302;302;302;302;302;302;302;302;302;302;302;767;408;274;312;416;99;67;114;385;207;107;78;61;38
-86;'308;Grenada;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0
-86;'308;Grenada;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;16;5;4;2;3;0;6;1;1
-86;'308;Grenada;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;31;4;0;6;6;13;18;6;8;28;52;11;3
-86;'308;Grenada;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2820;3267;5086;3323;3323;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;3650;3454;3102;3105;4493;5204;5547;6214;8197;4539;7503;9984;6277
-86;'308;Grenada;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862;1272;2367;1564;1564;1912;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;2258;1711;1542;1846;1672;2968;2966;3087;4887;3806;2609;4667;6027;3972
-86;'308;Grenada;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0
-86;'308;Grenada;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;2;0;0;0
-86;'308;Grenada;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2773;3081;5035;3300;3300;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;3650;3454;3100;3100;4488;5199;5542;6209;8184;4526;7481;9717;6128
-86;'308;Grenada;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848;1212;2346;1556;1556;1912;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;1809;2258;1711;1542;1844;1669;2965;2963;3084;4884;3792;2602;4656;5851;3848
-86;'308;Grenada;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0
-86;'308;Grenada;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;2;0;0;0
-86;'308;Grenada;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;5;5;5;5;5;13;13;22;65;6
-86;'308;Grenada;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;3;3;3;3;3;14;7;11;43;7
-86;'308;Grenada;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8
-86;'308;Grenada;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-86;'308;Grenada;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;186;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;135
-86;'308;Grenada;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;60;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;114
-86;'308;Grenada;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-86;'308;Grenada;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-86;'308;Grenada;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;73
-86;'308;Grenada;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77
-86;'308;Grenada;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;60
-86;'308;Grenada;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;33
-86;'308;Grenada;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;186;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;60;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2
-86;'308;Grenada;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;14
-86;'308;Grenada;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-86;'308;Grenada;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14
-86;'308;Grenada;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-86;'308;Grenada;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-86;'308;Grenada;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-86;'308;Grenada;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-86;'308;Grenada;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-86;'308;Grenada;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2
-86;'308;Grenada;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-86;'308;Grenada;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1399;873;191;191;191;191;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;1424;1035;1035;1035;1035;1035;1466;1475;1129;1014;785
-86;'308;Grenada;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342;837;191;191;191;191;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1809;1491;1491;1491;1491;1491;1942;1790;1686;2735;1653
-86;'308;Grenada;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-86;'308;Grenada;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;4
-86;'308;Grenada;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;82;71;71;71;71;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;30;36;36;36;36;36;55;44;44;30;31
-86;'308;Grenada;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;131;81;81;81;81;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;118;135;135;135;135;135;195;129;136;145;159
-86;'308;Grenada;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;5;5;5;5;5;0;0;0;0;0
-86;'308;Grenada;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;3;3;3;1;0;0;1;1
-86;'308;Grenada;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-86;'308;Grenada;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;80;69;69;69;69;;;;;;;;;;;;;;;;28;31;31;31;31;31;55;44;44;30;31
-86;'308;Grenada;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;130;80;80;80;80;;;;;;;;;;;;;;;;117;132;132;132;132;132;194;129;136;144;158
-86;'308;Grenada;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;10;10;10;10;3;1;9;2;8
-86;'308;Grenada;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24;24;24;24;24;20;6;17;11;26
-86;'308;Grenada;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-86;'308;Grenada;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;10;10;10;10;10;41;38;28;17;9
-86;'308;Grenada;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;46;46;46;46;46;110;88;78;73;60
-86;'308;Grenada;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;11;11;11;11;11;11;5;7;11;14
-86;'308;Grenada;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;62;62;62;62;62;64;35;41;60;72
-86;'308;Grenada;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1347;791;120;120;120;120;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1394;999;999;999;999;999;1411;1431;1085;984;754
-86;'308;Grenada;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287;706;110;110;110;110;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1691;1356;1356;1356;1356;1356;1747;1661;1550;2590;1494
-86;'308;Grenada;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-86;'308;Grenada;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;4
-86;'308;Grenada;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;900;900;900;900;900;1350;1396;1037;920;688
-86;'308;Grenada;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1491;1149;1149;1149;1149;1149;1520;1551;1401;2305;1209
-86;'308;Grenada;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;96;96;96;96;96;56;31;39;53;55
-86;'308;Grenada;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;152;152;152;152;152;175;91;115;191;228
-86;'308;Grenada;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;5;5;5;2;8;6;6;7
-86;'308;Grenada;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;5;5;5;9;9;12;13;18
-86;'308;Grenada;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;46;46;46;46;46;12;3;1;12;8
-86;'308;Grenada;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;35;35;35;35;35;45;15;10;54;45
-86;'308;Grenada;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;45;45;45;45;45;42;20;32;35;40
-86;'308;Grenada;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;112;112;112;112;112;121;67;93;123;162
-86;'308;Grenada;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-86;'308;Grenada;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3
-86;'308;Grenada;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;3;3;3;3;3;5;4;9;11;11
-86;'308;Grenada;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30;55;55;55;55;55;52;19;34;94;57
-86;'308;Grenada;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-86;'308;Grenada;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;4
-86;'308;Grenada;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11023;15201;9873;7265;9619;11699;14613
-86;'308;Grenada;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;18;27;25;23;31;46
-86;'308;Grenada;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4124;4807;3697;3246;5137;5534;5845
-86;'308;Grenada;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;13;12;12;29
-86;'308;Grenada;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3244;4200;3375;2905;4889;5154;5286
-86;'308;Grenada;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;4;4;21
-86;'308;Grenada;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;607;322;341;248;380;559
-86;'308;Grenada;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8
-86;'308;Grenada;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;101;66;168;295;529;504
-86;'308;Grenada;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;241;90;113;49;84;114
-86;'308;Grenada;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;5;5
-86;'308;Grenada;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1554;1892;1861;1567;1413;1848;2453
-86;'308;Grenada;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;8;8;8;1;1
-86;'308;Grenada;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-86;'308;Grenada;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7
-86;'308;Grenada;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5011;7910;4078;2140;2683;3633;5649
-86;'308;Grenada;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;8;10;3;2;11;2
-86;'308;Grenada;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;250;81;31;42;71;48
-86;'308;Grenada;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;9
-86;'308;Grenada;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5822;7319;8374;6060;7291;9167;9139
-86;'308;Grenada;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7074;7361;7069;7047;7099;7293;7081
-86;'308;Grenada;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;1;2;3;1
-86;'308;Grenada;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-86;'308;Grenada;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;168;83;83;85;144;176
-86;'308;Grenada;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5531;5531;5531;5531;5531;5531;5531
-86;'308;Grenada;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941;2218;2017;1867;2037;2355;2679
-86;'308;Grenada;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1533;1781;1534;1515;1554;1737;1520
-86;'308;Grenada;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;1218;1472;1077;1283;1696;1563
-86;'308;Grenada;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;3;5;13
-86;'308;Grenada;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2859;3709;4802;3032;3884;4969;4720
-86;'308;Grenada;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;49;3;1;11;20;17
-87;'312;Guadeloupe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463;30463;30463;30463;30463;30463;30463
-87;'312;Guadeloupe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;145;145;145;145;145
-87;'312;Guadeloupe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1449;1505;1843;3073;2891;4500;4034;5033;3713;3809;4280;4318;4713;4713;4713;7722;6673;6673;8073;8073;14163;14163;14194;14194;15192;18137;26018;29851;31774;44729;46720;44984;42619;37135;39939;40024;40106;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30486;30463;30463;30463;30463;30463;30463;30463
-87;'312;Guadeloupe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;261;243;236;153;153;153;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145;145
-87;'312;Guadeloupe;1861;Roundwood;5516;Production;m3;40000;39000;38000;38000;38000;32000;26000;20000;20000;20000;20000;20000;20000;20000;20000;17000;19000;19500;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;20800;19900;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15600;15300;15270;15290;15107;15023;15159;15024;15013;15013;15067;15018;15057;15082;15000;15000;15000;15000;15000;15000;15000
-87;'312;Guadeloupe;1861;Roundwood;5616;Import quantity;m3;300;200;500;500;500;1000;1100;1100;1100;1100;1100;1100;1100;1100;1100;200;200;200;800;800;500;500;900;900;900;900;900;900;900;7792;5613;4565;4111;13177;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;5305;4946;4946;4946;4946;4946;4946;4946
-87;'312;Guadeloupe;1861;Roundwood;5622;Import value;1000 USD;16;11;32;32;37;108;86;90;90;90;90;90;90;90;90;52;52;52;195;195;185;185;307;307;307;361;361;361;361;1838;1265;1509;1212;1838;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1749;1734;1734;1734;1734;1734;1734;1734
-87;'312;Guadeloupe;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;485;485;10;34;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;5;3;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-87;'312;Guadeloupe;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1343;1343;1343;1343;1343;1343;1343
-87;'312;Guadeloupe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;169;169;169;169;169;169
-87;'312;Guadeloupe;1863;Roundwood, non-coniferous;5516;Production;m3;40000;39000;38000;38000;38000;32000;26000;20000;20000;20000;20000;20000;20000;20000;20000;17000;19000;19500;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;20800;19900;15300;15300;15300;15300;15300;15300;15300;15300;15300;15300;15600;15300;15270;15290;15107;15023;15159;15024;15013;15013;15067;15018;15057;15082;15000;15000;15000;15000;15000;15000;15000
-87;'312;Guadeloupe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3603;3603;3603;3603;3603;3603;3603
-87;'312;Guadeloupe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565;1565;1565;1565;1565;1565;1565
-87;'312;Guadeloupe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20
-87;'312;Guadeloupe;1864;Wood fuel;5516;Production;m3;34000;33000;32000;31000;30000;25000;19000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-87;'312;Guadeloupe;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;;;;;;;
-87;'312;Guadeloupe;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;;
-87;'312;Guadeloupe;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1628;Wood fuel, non-coniferous;5516;Production;m3;34000;33000;32000;31000;30000;25000;19000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-87;'312;Guadeloupe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;;;;;;;
-87;'312;Guadeloupe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;;
-87;'312;Guadeloupe;1865;Industrial roundwood;5516;Production;m3;6000;6000;6000;7000;8000;7000;7000;5000;5000;5000;5000;5000;5000;5000;5000;2000;4000;4500;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5800;4900;300;300;300;300;300;300;300;300;300;300;600;300;270;290;107;23;159;24;13;13;67;18;57;82;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1865;Industrial roundwood;5616;Import quantity;m3;300;200;500;500;500;1000;1100;1100;1100;1100;1100;1100;1100;1100;1100;200;200;200;800;800;500;500;900;900;900;900;900;900;900;7792;5613;4565;3752;12818;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946;4946
-87;'312;Guadeloupe;1865;Industrial roundwood;5622;Import value;1000 USD;16;11;32;32;37;108;86;90;90;90;90;90;90;90;90;52;52;52;195;195;185;185;307;307;307;361;361;361;361;1838;1265;1509;1197;1823;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734;1734
-87;'312;Guadeloupe;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;485;485;10;34;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;5;3;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-87;'312;Guadeloupe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1341;705;4;4;9057;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343
-87;'312;Guadeloupe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;73;2;2;1292;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169
-87;'312;Guadeloupe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1341;705;4;4;9057;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343;1343
-87;'312;Guadeloupe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;73;2;2;1292;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169;169
-87;'312;Guadeloupe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6000;6000;6000;7000;8000;7000;7000;5000;5000;5000;5000;5000;5000;5000;5000;2000;4000;4500;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5800;4900;300;300;300;300;300;300;300;300;300;300;600;300;270;290;107;23;159;24;13;13;67;18;57;82;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6451;4908;4561;3748;3761;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603;3603
-87;'312;Guadeloupe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1698;1192;1507;1195;531;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565;1565
-87;'312;Guadeloupe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;485;485;10;34;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;5;3;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-87;'312;Guadeloupe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6221;4769;4404;3298;3747;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237;237
-87;'312;Guadeloupe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1674;1174;1493;1011;529;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;485;485;10;34;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77
-87;'312;Guadeloupe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;5;3;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20
-87;'312;Guadeloupe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;139;157;450;14;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366;3366
-87;'312;Guadeloupe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;18;14;184;2;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488;1488
-87;'312;Guadeloupe;1868;Sawlogs and veneer logs;5516;Production;m3;6000;6000;6000;7000;8000;7000;7000;5000;5000;5000;5000;5000;5000;5000;5000;2000;4000;4500;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5800;4900;300;300;300;300;300;300;300;300;300;300;600;300;270;290;107;23;159;24;13;13;67;18;57;82;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6000;6000;6000;7000;8000;7000;7000;5000;5000;5000;5000;5000;5000;5000;5000;2000;4000;4500;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5800;4900;300;300;300;300;300;300;300;300;300;300;600;300;270;290;107;23;159;24;13;13;67;18;57;82;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1871;Other industrial roundwood;5616;Import quantity;m3;300;200;500;500;500;1000;1100;1100;1100;1100;1100;1100;1100;1100;1100;200;200;200;800;800;500;500;900;900;900;900;900;900;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1871;Other industrial roundwood;5622;Import value;1000 USD;16;11;32;32;37;108;86;90;90;90;90;90;90;90;90;52;52;52;195;195;185;185;307;307;307;361;361;361;361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;300;200;500;500;500;1000;1100;1100;1100;1100;1100;1100;1100;1100;1100;200;200;200;800;800;500;500;900;900;900;900;900;900;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;16;11;32;32;37;108;86;90;90;90;90;90;90;90;90;52;52;52;195;195;185;185;307;307;307;361;361;361;361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1630;Wood charcoal;5510;Production;t;1949;1878;1810;1744;1680;1619;1560;1504;1449;1396;1389;1370;1272;1212;1176;1150;1123;1057;1002;964;1005;1065;1152;1234;1301;1343;1384;1431;1473;1521;1552;1534;1588;1571;1659;1812;1852;1903;1928;1953;1968;1983;1998;2013;2029;2040;2051;2062;2073;2085;2091;2098;2104;2111;2117;2121;2125;2129;2132;2136;2141;2146;2150
-87;'312;Guadeloupe;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;33;87;31;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;25;60;12;12;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962
-87;'312;Guadeloupe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42
-87;'312;Guadeloupe;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193;1178;364;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962;962
-87;'312;Guadeloupe;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;41;12;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42;42
-87;'312;Guadeloupe;1872;Sawnwood;5516;Production;m3;2500;2600;2600;3500;3500;3500;3700;2500;2500;2500;2500;2500;2500;2500;2500;1000;2000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-87;'312;Guadeloupe;1872;Sawnwood;5616;Import quantity;m3;18200;20500;22300;28300;21800;28000;30400;22100;21650;27050;23450;23450;25550;25550;25550;33400;17200;17200;20500;20500;38000;38000;41400;41400;37300;35500;48900;50700;62600;67700;66100;74830;74281;68223;69353;69353;69353;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994;45994
-87;'312;Guadeloupe;1872;Sawnwood;5622;Import value;1000 USD;854;915;1111;1398;1163;1515;1754;1310;1358;1703;1633;1715;2237;2237;2237;4490;2714;2714;3971;3971;7798;7798;7740;7740;8264;9159;14762;14942;18414;25213;38656;20383;20778;20115;22915;22915;22915;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097;13097
-87;'312;Guadeloupe;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;284;50;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72
-87;'312;Guadeloupe;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;70;12;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-87;'312;Guadeloupe;1632;Sawnwood, coniferous;5616;Import quantity;m3;15800;19100;21050;26550;20500;25100;26650;20150;19700;25100;21500;21500;23600;23600;23600;22800;14400;14400;17600;17600;29300;29300;35000;35000;23200;22400;28700;41200;49600;51900;20000;58861;64168;52155;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994;37994
-87;'312;Guadeloupe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;747;855;1057;1309;1078;1244;1393;1140;1188;1533;1463;1545;2067;2067;2067;3007;2162;2162;3074;3074;5440;5440;6317;6317;5351;5432;7600;11071;13689;18004;8656;14368;16315;13254;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597;9597
-87;'312;Guadeloupe;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;131;18;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;3;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1633;Sawnwood, non-coniferous;5516;Production;m3;2500;2600;2600;3500;3500;3500;3700;2500;2500;2500;2500;2500;2500;2500;2500;1000;2000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-87;'312;Guadeloupe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2400;1400;1250;1750;1300;2900;3750;1950;1950;1950;1950;1950;1950;1950;1950;10600;2800;2800;2900;2900;8700;8700;6400;6400;14100;13100;20200;9500;13000;15800;46100;15969;10113;16068;31359;31359;31359;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-87;'312;Guadeloupe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;107;60;54;89;85;271;361;170;170;170;170;170;170;170;170;1483;552;552;897;897;2358;2358;1423;1423;2913;3727;7162;3871;4725;7209;30000;6015;4463;6861;13318;13318;13318;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500
-87;'312;Guadeloupe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;153;32;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70;70
-87;'312;Guadeloupe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;56;9;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-87;'312;Guadeloupe;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;131;24;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98
-87;'312;Guadeloupe;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;87;24;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94
-87;'312;Guadeloupe;1873;Wood-based panels;5616;Import quantity;m3;700;700;900;1100;1300;1700;1600;1800;2100;2500;2600;2800;2700;2700;2700;4400;4100;4100;4100;4100;3300;3300;4600;4600;5574;4998;6465;8943;10418;14669;10300;13482;13239;12832;21691;22007;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000
-87;'312;Guadeloupe;1873;Wood-based panels;5622;Import value;1000 USD;127;142;214;253;301;371;387;414;503;579;651;796;946;946;946;1740;2145;2145;2145;2145;2085;2085;2518;2518;2633;3110;4561;5603;6298;9544;5377;7995;8492;7123;9319;9408;9490;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700;9700
-87;'312;Guadeloupe;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1640;Plywood and LVL;5616;Import quantity;m3;600;600;800;900;1100;1400;1400;1600;1900;2200;2400;2500;2400;2400;2400;3300;3200;3200;3200;3200;2600;2600;3700;3700;4542;3723;4656;7119;7965;11985;8600;10678;11335;11237;20684;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000
-87;'312;Guadeloupe;1640;Plywood and LVL;5622;Import value;1000 USD;119;132;208;241;278;345;363;390;473;529;615;729;879;879;879;1471;1880;1880;1880;1880;1777;1777;2211;2211;2263;2547;3663;4610;5095;7977;4380;6526;7357;6447;8611;8700;8800;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-87;'312;Guadeloupe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;100;100;200;200;300;200;200;200;300;200;300;300;300;300;1100;900;900;900;900;700;700;900;900;1032;1275;1809;1824;2453;2684;1700;2703;1752;1447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;8;10;6;12;23;26;24;24;30;50;36;67;67;67;67;269;265;265;265;265;308;308;307;307;370;563;898;993;1203;1567;997;1437;1076;593;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;984;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-87;'312;Guadeloupe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;685;690;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700
-87;'312;Guadeloupe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;152;148;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;59;83;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;152;148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;59;83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-87;'312;Guadeloupe;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-87;'312;Guadeloupe;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;19;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;17;17;17;17;17;17;17
-87;'312;Guadeloupe;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;10;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;5;5;5;5;5;5;5
-87;'312;Guadeloupe;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1362;1221;779;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450
-87;'312;Guadeloupe;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;116;76;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72
-87;'312;Guadeloupe;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;;;;;;;
-87;'312;Guadeloupe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;;;;;;;
-87;'312;Guadeloupe;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-87;'312;Guadeloupe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-87;'312;Guadeloupe;1669;Recovered paper;5510;Production;t;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-87;'312;Guadeloupe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-87;'312;Guadeloupe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3
-87;'312;Guadeloupe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1362;1221;779;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450;450
-87;'312;Guadeloupe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;116;76;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72
-87;'312;Guadeloupe;1876;Paper and paperboard;5610;Import quantity;t;1900;1700;1700;9100;9100;9900;11100;21200;11500;9900;12000;10500;9900;9900;9900;9900;11500;11500;11500;11500;8900;8900;9900;9900;7815;9156;8858;12101;7192;7211;2000;16300;13391;10571;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385;6385
-87;'312;Guadeloupe;1876;Paper and paperboard;5622;Import value;1000 USD;452;437;486;1390;1390;2506;1807;3219;1762;1437;1906;1717;1440;1440;1440;1440;1762;1762;1762;1762;4095;4095;3629;3629;3988;5507;6334;8945;6701;8134;1422;14820;11975;7949;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791;5791
-87;'312;Guadeloupe;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;63;119;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25
-87;'312;Guadeloupe;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;52;137;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38
-87;'312;Guadeloupe;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;2100;600;;;;;;;;;;;;;900;1200;1400;1500;1400;1300;600;3257;4934;1975;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424;424
-87;'312;Guadeloupe;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;466;277;;;;;;;;;;;;;1047;1698;2307;2806;2682;2823;624;5117;4763;2928;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872;872
-87;'312;Guadeloupe;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-87;'312;Guadeloupe;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23
-87;'312;Guadeloupe;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;2100;600;;;;;;;;;;;;;;;;;;;;4;85;23;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7
-87;'312;Guadeloupe;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;466;277;;;;;;;;;;;;;;;;;;;;2;51;16;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5
-87;'312;Guadeloupe;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;900;1200;1400;1500;1400;1300;600;3253;4849;1952;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417
-87;'312;Guadeloupe;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;1047;1698;2307;2806;2682;2823;624;5115;4712;2912;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867
-87;'312;Guadeloupe;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-87;'312;Guadeloupe;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23
-87;'312;Guadeloupe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417;417
-87;'312;Guadeloupe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867;867
-87;'312;Guadeloupe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11
-87;'312;Guadeloupe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23
-87;'312;Guadeloupe;1675;Other paper and paperboard;5610;Import quantity;t;1900;1700;1700;9100;9100;9900;11100;21200;11500;9900;9900;9900;9900;9900;9900;9900;11500;11500;11500;11500;8900;8900;9900;9900;6915;7956;7458;10601;5792;5911;1400;13043;8457;8596;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961
-87;'312;Guadeloupe;1675;Other paper and paperboard;5622;Import value;1000 USD;452;437;486;1390;1390;2506;1807;3219;1762;1437;1440;1440;1440;1440;1440;1440;1762;1762;1762;1762;4095;4095;3629;3629;2941;3809;4027;6139;4019;5311;798;9703;7212;5021;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919
-87;'312;Guadeloupe;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;63;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-87;'312;Guadeloupe;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;52;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-87;'312;Guadeloupe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1900;1700;1700;9100;9100;9900;11100;21200;11500;9900;9900;9900;9900;9900;9900;9900;11500;11500;11500;11500;8900;8900;9900;9900;6915;7956;7458;10601;5792;5911;1400;13043;8457;8596;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961;5961
-87;'312;Guadeloupe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;452;437;486;1390;1390;2506;1807;3219;1762;1437;1440;1440;1440;1440;1440;1440;1762;1762;1762;1762;4095;4095;3629;3629;2941;3809;4027;6139;4019;5311;798;9703;7212;5021;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919;4919
-87;'312;Guadeloupe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;63;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-87;'312;Guadeloupe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;52;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15
-88;'316;Guam;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6618;8274;17160;9248;7151;9420;4757
-88;'316;Guam;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;190;10;36;45;116;26
-88;'316;Guam;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;265;290;298;2696;2888;2111;294;1296
-88;'316;Guam;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;11;1;1;3;12;1
-88;'316;Guam;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-88;'316;Guam;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;17
-88;'316;Guam;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;15
-88;'316;Guam;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;35;35;35;35
-88;'316;Guam;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;33;32;32;32
-88;'316;Guam;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;35;35;35;35
-88;'316;Guam;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;33;32;32;32
-88;'316;Guam;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;50;0;1;0;0;100;23
-88;'316;Guam;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;50;0;5;18;0;69;19
-88;'316;Guam;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0;0;0
-88;'316;Guam;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-88;'316;Guam;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0;100;0
-88;'316;Guam;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;0;0;0;0;69;0
-88;'316;Guam;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;47;0;1;0;0;0;23
-88;'316;Guam;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;41;0;5;18;0;0;19
-88;'316;Guam;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0;0;0
-88;'316;Guam;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-88;'316;Guam;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2
-88;'316;Guam;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9
-88;'316;Guam;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;258;246;299;188;0;0;48;671
-88;'316;Guam;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;234;240;298;213;305;403;32;397
-88;'316;Guam;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;0;0;18;0;0
-88;'316;Guam;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;0;0;2;11;0
-88;'316;Guam;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-88;'316;Guam;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;258;246;299;188;0;0;48;671
-88;'316;Guam;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;234;240;298;213;305;403;32;397
-88;'316;Guam;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;0;0;18;0;0
-88;'316;Guam;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;0;0;2;11;0
-88;'316;Guam;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844;1823;1351;89;600
-88;'316;Guam;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445;2532;1676;161;824
-88;'316;Guam;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-88;'316;Guam;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-88;'316;Guam;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1547;1096;1126;54;595
-88;'316;Guam;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1795;1223;1282;72;816
-88;'316;Guam;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1547;1096;1126;54;595
-88;'316;Guam;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1795;1223;1282;72;816
-88;'316;Guam;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;1077;1108;29;590
-88;'316;Guam;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1554;1196;1263;37;799
-88;'316;Guam;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;19;18;25;5
-88;'316;Guam;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;27;19;35;17
-88;'316;Guam;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;727;225;35;5
-88;'316;Guam;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650;1309;394;89;8
-88;'316;Guam;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-88;'316;Guam;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-88;'316;Guam;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;699;225;35;0
-88;'316;Guam;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;1259;392;78;1
-88;'316;Guam;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28;0;0;5
-88;'316;Guam;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;50;2;11;7
-88;'316;Guam;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-88;'316;Guam;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-88;'316;Guam;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-88;'316;Guam;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;2
-88;'316;Guam;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;0;0;2
-88;'316;Guam;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;0;0;3
-88;'316;Guam;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;2;11;5
-88;'316;Guam;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0
-88;'316;Guam;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-88;'316;Guam;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-88;'316;Guam;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887;4877;7652;3655;2115;5827;1737
-88;'316;Guam;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;159;1;32;32;71;9
-88;'316;Guam;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;273;136;183;164;283;123
-88;'316;Guam;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;273;136;183;164;283;123
-88;'316;Guam;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;152;15;5;60;2
-88;'316;Guam;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;288;350;106;84;83;82
-88;'316;Guam;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;431;683;558;667;597;362
-88;'316;Guam;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021;3823;6282;2754;1182;4205;1137
-88;'316;Guam;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;159;1;32;32;71;9
-88;'316;Guam;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;0
-88;'316;Guam;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;58;49;39;13;41;31
-88;'316;Guam;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3441;3099;6812;2705;2925;3299;1724
-88;'316;Guam;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;20;8;3;10;33;16
-88;'316;Guam;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-88;'316;Guam;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;41;225;29;43;115;25
-88;'316;Guam;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;0;2;19;0
-88;'316;Guam;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;1543;1280;1255;1262;1220;232
-88;'316;Guam;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;4;1;2;7;15
-88;'316;Guam;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1156;798;4324;852;1191;1104;967
-88;'316;Guam;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;2;0;5;1;1
-88;'316;Guam;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891;717;983;569;429;860;500
-88;'316;Guam;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;15;0;2;1;6;0
-89;'320;Guatemala;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691526;765108;837965;740949;1039839.95;1434001;1076818
-89;'320;Guatemala;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415860;435213;492651;480035;538655.35;602477.83;591139.45
-89;'320;Guatemala;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1625;1706;1100;1875;3938;5120;7509;8752;9449;10293;10359;14749;14296;23017;15564;22453;22121;38572;40413;95846;65795;58349;63786;61674;44823;44169;44169;51152;71967;71613;51047;95063;95553;87571;132223;77754;89942;161577;120793;159299;167778;189087;196386;217073;229375;231931;290859.3;333031;272521.6;354633;428489;396156;424018;445412;420032;346635;444690;510352;580119;530435;737754.95;1066327;733953
-89;'320;Guatemala;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;943;1159;833;1615;1572;1888;2192;1859;2130;2824;3278;6386;9274;12051;9525;11664;13032;10555;18132;22640;23646;12511;12521;10680;6915;9930;9930;18877;18616;13246;13871;26768;20625;15186;17555;10546;10760;16938;18509;20377;25011;26411;30952;37814;50968;49663;55735;53806;50776;59655;73844.5;73288.22;74142.15;79668.54;83502;74798;74762;75008;89981;67562;104252.35;126945.83;102450.45
-89;'320;Guatemala;1861;Roundwood;5516;Production;m3;5689554;5840290;6010425;6198248;6360749;6566022;6748164;6977271;7144445;7324790;7498349;7700890;7840720;7942976;8249106;8253446;8582998;8769407;8748000;8880800;9134000;9347000;9535000;9764000;10042000;10213000;10481000;10763000;11050000;11340000;11834150;12156324;13013100;13393400;13589400;13532569;13784630;14075751;14709329;15007108;15313828;15725027;15934873;16323542;16670211;17063047;17414100;17772700;18466804;18750663;19261795;19310716;19880141;20158523;20537791;20872958;21213778;21560345;21912756;22271112;22635459;23005949;23382687
-89;'320;Guatemala;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;2800;2800;2700;5000;5000;100;100;100;100;;;;2940;1883;3168;200;1200;3100;3100;1600;1000;1800;300;45;2434;11819;1216;79;60;2581;494;609;1091;4658;3056;13163;2105;238;775;565;592;346;1524;744;195
-89;'320;Guatemala;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;149;149;143;320;320;14;22;22;22;;;;273;176;322;44;343;634;634;621;183;445;71;31;1126;736;639;17;23.3;785;264.6;158;386;1284;943;1293;719;93;225;90;251;117;499;426;151
-89;'320;Guatemala;1861;Roundwood;5916;Export quantity;m3;1500;4800;3600;700;700;800;;;;;;;;;;;;100;100;100;1100;100;100;200;2100;1900;1900;16800;12100;2416;4136;842;323;0;0;0;0;0;0;0;0;1451;14797;11660;39285;21902;16703;4257;10732;10156;16546;10610;8233;20693;31204;27324;22898;25905;43109;25537;37653;44542;35454
-89;'320;Guatemala;1861;Roundwood;5922;Export value;1000 USD;75;240;180;35;35;43;;;;;;;;;;;;11;11;11;78;16;32;53;362;290;290;5643;3848;477;1402;195;104;0;0;0;0;0;0;0;0;693;1103;2629;4203;2946;2189;2147;4054;4060;7293;6171;3397;6217;8934;7121;9014;8055;11281;6820;12146;12176;11799
-89;'320;Guatemala;1862;Roundwood, coniferous;5516;Production;m3;3559865;3647258;3774759;3918546;4036613;4195019;4311824;4480087;4579871;4684241;4792224;4914676;4979786;4920261;5234757;5190244;5312962;5477931;7206000;7271400;7464000;7621000;7803000;7999000;8225000;8371000;8579000;8799000;9023000;9249000;7314859;7505920;9026000;9289000;8502000;8348995;8511305;8691794;9209753;9385549;9558968;9838224;9904821;10008468;10217075;10660246;10877900;11100200;11281192;11422976;11744670;11856063;12144229;12281232;12516370;12724166;12935467;13150331;13368818;13590991;13816878;14046574;14280143
-89;'320;Guatemala;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;524;221;158;1484;680;158
-89;'320;Guatemala;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;73;86;54;469;369;124
-89;'320;Guatemala;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6604;11375;17723;8606;8562;11512;9792
-89;'320;Guatemala;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;2855;3462;1613;2860;2356;2018
-89;'320;Guatemala;1863;Roundwood, non-coniferous;5516;Production;m3;2129689;2193032;2235666;2279702;2324136;2371003;2436340;2497184;2564574;2640549;2706125;2786214;2860934;3022715;3014349;3063202;3270036;3291476;1542000;1609400;1670000;1726000;1732000;1765000;1817000;1842000;1902000;1964000;2027000;2091000;4519291;4650404;3987100;4104400;5087400;5183574;5273325;5383957;5499576;5621559;5754860;5886803;6030052;6315074;6453136;6402801;6536200;6672500;7185612;7327687;7517125;7454653;7735912;7877291;8021421;8148792;8278311;8410014;8543938;8680121;8818581;8959375;9102544
-89;'320;Guatemala;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;41;371;188;40;64;37
-89;'320;Guatemala;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;17;165;63;30;57;27
-89;'320;Guatemala;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16294;14530;25386;16931;29091;33030;25662
-89;'320;Guatemala;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7032;5200;7819;5207;9286;9820;9781
-89;'320;Guatemala;1864;Wood fuel;5516;Production;m3;5422554;5560290;5701425;5846248;5994749;6147022;6303164;6463271;6627445;6795790;6968349;7144890;7325720;7511976;7703106;7897446;8096998;8303407;8517000;8722000;8932000;9153000;9377000;9608000;9847000;10081000;10334000;10594000;10867000;11142000;11621150;11929324;12307000;12656000;12794000;13239169;13583230;13874351;14203329;14540108;14869828;15207027;15551873;15904542;16265211;16609047;16960100;17318700;17684804;18058663;18409795;18767760;19132690;19504719;19883987;20219154;20559974;20906541;21258952;21617308;21981655;22352145;22728883
-89;'320;Guatemala;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;0;0;0;0;0;0;0;0;0;0;16;16;16;16
-89;'320;Guatemala;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;18;18;18
-89;'320;Guatemala;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;53;9;9;25;25;25;0;0;0;0;0;114;19;75;46;0;7;12;12;12;12
-89;'320;Guatemala;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;14;15;15;31;31;31;0;0;0;0;0;17;10;13;2;0;1;2;2;2;2
-89;'320;Guatemala;1627;Wood fuel, coniferous;5516;Production;m3;3361865;3447258;3534759;3624546;3716613;3811019;3907824;4007087;4108871;4213241;4320224;4429676;4541786;4657261;4775757;4896244;5019962;5147931;6997000;7165000;7338000;7505000;7689000;7880000;8076000;8268000;8476000;8689000;8913000;9139000;7204859;7395920;8615000;8859000;7932000;8207995;8421305;8601794;8805753;9014549;9218968;9428024;9641821;9860468;10084075;10297246;10514900;10737200;10964192;11195976;11413670;11635601;11861849;12092499;12327637;12535433;12746734;12961598;13180085;13402258;13628145;13857841;14091410
-89;'320;Guatemala;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-89;'320;Guatemala;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-89;'320;Guatemala;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;7;12;12;12;12
-89;'320;Guatemala;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;2;2;2;2
-89;'320;Guatemala;1628;Wood fuel, non-coniferous;5516;Production;m3;2060689;2113032;2166666;2221702;2278136;2336003;2395340;2456184;2518574;2582549;2648125;2715214;2783934;2854715;2927349;3001202;3077036;3155476;1520000;1557000;1594000;1648000;1688000;1728000;1771000;1813000;1858000;1905000;1954000;2003000;4416291;4533404;3692000;3797000;4862000;5031174;5161925;5272557;5397576;5525559;5650860;5779003;5910052;6044074;6181136;6311801;6445200;6581500;6720612;6862687;6996125;7132159;7270841;7412220;7556350;7683721;7813240;7944943;8078867;8215050;8353510;8494304;8637473
-89;'320;Guatemala;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;16;16;16;16
-89;'320;Guatemala;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;18;18;18;18
-89;'320;Guatemala;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;0;0;0;0;0;0
-89;'320;Guatemala;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-89;'320;Guatemala;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;0;0;0;0;0;0;0;;;;;;;
-89;'320;Guatemala;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-89;'320;Guatemala;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;53;9;9;25;25;25;0;0;0;0;0;114;19;75;;;;;;;
-89;'320;Guatemala;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;14;15;15;31;31;31;0;0;0;0;0;17;10;13;;;;;;;
-89;'320;Guatemala;1865;Industrial roundwood;5516;Production;m3;267000;280000;309000;352000;366000;419000;445000;514000;517000;529000;530000;556000;515000;431000;546000;356000;486000;466000;231000;158800;202000;194000;158000;156000;195000;132000;147000;169000;183000;198000;213000;227000;706100;737400;795400;293400;201400;201400;506000;467000;444000;518000;383000;419000;405000;454000;454000;454000;782000;692000;852000;542956;747451;653804;653804;653804;653804;653804;653804;653804;653804;653804;653804
-89;'320;Guatemala;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;2800;2800;2700;5000;5000;100;100;100;100;;;;2940;1883;3168;200;1200;3100;3100;1600;1000;1800;300;45;2434;11819;1213;76;57;2580;493;609;1091;4658;3056;13163;2105;238;775;565;592;330;1508;728;179
-89;'320;Guatemala;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;149;149;143;320;320;14;22;22;22;;;;273;176;322;44;343;634;634;621;183;445;71;31;1126;736;639;17;23.3;785;264.6;158;386;1284;943;1293;719;93;225;90;251;99;481;408;133
-89;'320;Guatemala;1865;Industrial roundwood;5916;Export quantity;m3;1500;4800;3600;700;700;800;;;;;;;;;;;;100;100;100;1100;100;100;200;2100;1900;1900;16800;12100;2416;4136;842;323;;;;;;;;;1450;14744;11651;39276;21877;16678;4232;10732;10156;16546;10610;8233;20579;31185;27249;22852;25905;43102;25525;37641;44530;35442
-89;'320;Guatemala;1865;Industrial roundwood;5922;Export value;1000 USD;75;240;180;35;35;43;;;;;;;;;;;;11;11;11;78;16;32;53;362;290;290;5643;3848;477;1402;195;104;;;;;;;;;690;1089;2614;4188;2915;2158;2116;4054;4060;7293;6171;3397;6200;8924;7108;9012;8055;11280;6818;12144;12174;11797
-89;'320;Guatemala;1866;Industrial roundwood, coniferous;5516;Production;m3;198000;200000;240000;294000;320000;384000;404000;473000;471000;471000;472000;485000;438000;263000;459000;294000;293000;330000;209000;106400;126000;116000;114000;119000;149000;103000;103000;110000;110000;110000;110000;110000;411000;430000;570000;141000;90000;90000;404000;371000;340000;410200;263000;148000;133000;363000;363000;363000;317000;227000;331000;220462;282380;188733;188733;188733;188733;188733;188733;188733;188733;188733;188733
-89;'320;Guatemala;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;9;9;100;700;2900;2900;1000;1000;1800;300;14;1000;11801;146;38;4;761;123;91;566;3288;1307;4523;1482;93;395;524;221;158;1484;680;158
-89;'320;Guatemala;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;17;200;612;612;183;183;445;71;1;31;720;9;7;0.3;179;55;13;224;789;384;363;438;40;103;73;86;54;469;369;124
-89;'320;Guatemala;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;260;1270;1904;65;34;0;86;113;497;295;461;2821;7336;9497;6599;11375;17716;8594;8550;11500;9780
-89;'320;Guatemala;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;14;67;218;28;8;0;36;70;163;221;140;283;759;914;1981;2855;3461;1611;2858;2354;2016
-89;'320;Guatemala;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;9;9;100;700;2900;2900;1000;1000;1800;300;14;1000;11801;146;38;4;761;123;91;566;3288;1307;4523;1482;93;395;524;221;158;1484;680;158
-89;'320;Guatemala;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;17;200;612;612;183;183;445;71;1;31;720;9;7;0.3;179;55;13;224;789;384;363;438;40;103;73;86;54;469;369;124
-89;'320;Guatemala;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;260;1270;1904;65;34;0;86;113;497;295;461;2821;7336;9497;6599;11375;17716;8594;8550;11500;9780
-89;'320;Guatemala;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;14;67;218;28;8;0;36;70;163;221;140;283;759;914;1981;2855;3461;1611;2858;2354;2016
-89;'320;Guatemala;1867;Industrial roundwood, non-coniferous;5516;Production;m3;69000;80000;69000;58000;46000;35000;41000;41000;46000;58000;58000;71000;77000;168000;87000;62000;193000;136000;22000;52400;76000;78000;44000;37000;46000;29000;44000;59000;73000;88000;103000;117000;295100;307400;225400;152400;111400;111400;102000;96000;104000;107800;120000;271000;272000;91000;91000;91000;465000;465000;521000;322494;465071;465071;465071;465071;465071;465071;465071;465071;465071;465071;465071
-89;'320;Guatemala;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904;1874;3159;100;500;200;200;600;0;0;0;31;1434;18;1067;38;53;1819;370;518;525;1370;1749;8640;623;145;380;41;371;172;24;48;21
-89;'320;Guatemala;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;175;321;27;143;22;22;438;0;0;0;30;1095;16;630;10;23;606;209.6;145;162;495;559;930;281;53;122;17;165;45;12;39;9
-89;'320;Guatemala;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2416;4136;842;323;;;;;;;;;1212;14484;10381;37372;21812;16644;4232;10646;10043;16049;10315;7772;17758;23849;17752;16253;14530;25386;16931;29091;33030;25662
-89;'320;Guatemala;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;1402;195;104;;;;;;;;;638;1075;2547;3970;2887;2150;2116;4018;3990;7130;5950;3257;5917;8165;6194;7031;5200;7819;5207;9286;9820;9781
-89;'320;Guatemala;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;8;879;38;1;332;1;290;416;34;0;117;14;49;34;41;350;2;24;0;21
-89;'320;Guatemala;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;4;517;10;1;99;0.6;57;123;10;0;115;7;21;14;17;157;0;12;0;9
-89;'320;Guatemala;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2416;4136;842;323;;;;;;;;;;645;3281;6034;4264;2624;4232;10646;10043;16049;10315;7772;17758;23849;17752;16253;14530;25386;16931;29091;33000;25662
-89;'320;Guatemala;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;1402;195;104;;;;;;;;;;258;2128;2121;1852;1323;2116;4018;3990;7130;5950;3257;5917;8165;6194;7031;5200;7819;5207;9286;9801;9781
-89;'320;Guatemala;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904;1874;3159;100;500;200;200;600;0;0;0;31;1404;10;188;0;52;1487;369;228;109;1336;1749;8523;609;96;346;0;21;170;0;48;0
-89;'320;Guatemala;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;175;321;27;143;22;22;438;0;0;0;30;1046;12;113;0;22;507;209;88;39;485;559;815;274;32;108;0;8;45;0;39;0
-89;'320;Guatemala;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1212;13839;7100;31338;17548;14020;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30;0
-89;'320;Guatemala;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;817;419;1849;1035;827;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0
-89;'320;Guatemala;1868;Sawlogs and veneer logs;5516;Production;m3;264000;275000;303000;344000;358000;412000;436000;501000;504000;513000;513000;536000;492000;404000;536000;346000;476000;456000;221000;148800;192000;184000;148000;146000;185000;122000;137000;159000;173000;188000;203000;217000;665000;695000;753000;251000;159000;159000;504000;464000;425000;492000;366000;404000;385000;439000;439000;439000;767000;677000;837000;527956;732451;638804;638804;638804;638804;638804;638804;638804;638804;638804;638804
-89;'320;Guatemala;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1500;4800;3600;700;700;800;;;;;;;;;;;;;;;;;;;1500;1500;1500;16800;12100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;75;240;180;35;35;43;;;;;;;;;;;;;;;;;;;257;208;208;5643;3848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;195000;195000;234000;286000;312000;377000;395000;460000;458000;455000;455000;465000;415000;236000;449000;284000;283000;320000;199000;96400;116000;106000;104000;109000;139000;93000;93000;100000;100000;100000;100000;100000;399000;417000;557000;128000;77000;77000;404000;371000;340000;392000;251000;138000;124000;359000;359000;359000;313000;223000;327000;216462;278380;184733;184733;184733;184733;184733;184733;184733;184733;184733;184733
-89;'320;Guatemala;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;69000;80000;69000;58000;46000;35000;41000;41000;46000;58000;58000;71000;77000;168000;87000;62000;193000;136000;22000;52400;76000;78000;44000;37000;46000;29000;44000;59000;73000;88000;103000;117000;266000;278000;196000;123000;82000;82000;100000;93000;85000;100000;115000;266000;261000;80000;80000;80000;454000;454000;510000;311494;454071;454071;454071;454071;454071;454071;454071;454071;454071;454071;454071
-89;'320;Guatemala;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1500;4800;3600;700;700;800;;;;;;;;;;;;;;;;;;;1500;1500;1500;16800;12100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;75;240;180;35;35;43;;;;;;;;;;;;;;;;;;;257;208;208;5643;3848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1871;Other industrial roundwood;5516;Production;m3;3000;5000;6000;8000;8000;7000;9000;13000;13000;16000;17000;20000;23000;27000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;41100;42400;42400;42400;42400;42400;2000;3000;19000;26000;17000;15000;20000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-89;'320;Guatemala;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;2800;2800;2700;5000;5000;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;149;149;143;320;320;14;22;22;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;100;100;100;1100;100;100;200;600;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;11;11;11;78;16;32;53;105;82;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;3000;5000;6000;8000;8000;7000;9000;13000;13000;16000;17000;20000;23000;27000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;12000;13000;13000;13000;13000;13000;0;0;0;18200;12000;10000;9000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-89;'320;Guatemala;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29100;29400;29400;29400;29400;29400;2000;3000;19000;7800;5000;5000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000
-89;'320;Guatemala;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;2800;2800;2700;5000;5000;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;149;149;143;320;320;14;22;22;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;100;100;100;1100;100;100;200;600;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;11;11;11;78;16;32;53;105;82;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1630;Wood charcoal;5510;Production;t;6227;6360;6495;6634;6775;6919;7067;7217;7371;7528;7695;7822;7965;8122;8399;8524;8642;8839;9050;9294;9634;10130;10618;11018;11476;11927;12259;12588;12923;13304;13692;14020;85600;88000;89000;15655;16088;16442;16858;17285;17749;18224;8000;7000;5000;24000;20800;21300;21868;22438;23000;23576;24167;24773;25393;8646;9828;11597;11636;13705;16141;15344;15344
-89;'320;Guatemala;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;0;0;0;0;0;0;0;0;28;29;30;34;12;63;24;11;12;25;115;36;88;219;311;189;333;423;471;487.81;447;1150
-89;'320;Guatemala;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;0;0;0;0;0;0;0;15;14;28;15;18;47;27;34;37;72;89;59;77;148;135;86;137;323;391;456;367;775
-89;'320;Guatemala;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;0;0;0;0;0;0;0;0;40;33;129;206;27;131;131;36;234;457;688;1022;1205;920;384;328;36;82;82;20;23;15
-89;'320;Guatemala;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;0;0;0;0;0;0;0;0;63;16;64;71;15;64;64;25;96;261;237;430;610;402;232;172;23;46;46;18;1;21
-89;'320;Guatemala;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159233;168929;227544;231742;238100;217276;167053;167053
-89;'320;Guatemala;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;1090;804;5346;102;59;43;125;12;1;1;17;0;0;38;17;98;119;10;16;10;132;16
-89;'320;Guatemala;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;27;344;350;212;42;31;27;64;14;1;1;12;0;1;44;11;27;23;12;22;14;24;23
-89;'320;Guatemala;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;49;67;255;5;6;5;29;24;25;5;0.03;3;2815;150;1754;290;8254;5811;15894.83;8876;5042
-89;'320;Guatemala;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;8;2;124;1;10;12;62;20;21;3.72;0.1;1.5;173;3;34;7;43;45;322;74;32
-89;'320;Guatemala;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66694;69254;90632;70185;88100;67276;17053;17053
-89;'320;Guatemala;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836;300;900;1000;1000;0;0;0;200;0;46;266;2;34;18;25;10;1;1;14;0;0;38;16;96;107;10;16;10;12;12
-89;'320;Guatemala;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;28;68;96;96;0;0;0;27;0;12;14;1;20;16;26;12;1;1;11;0;0;43;11;26;20;12;22;14;21;20
-89;'320;Guatemala;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;4;94;2;2;2;26;0;1;1;0.03;3;2749;50;29;29;29;29;0;2;2
-89;'320;Guatemala;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;98;0;2;2;52;0;1;1.72;0.1;1.5;171;1;5;5;5;5;0;0;0
-89;'320;Guatemala;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92539;99675;136912;161557;150000;150000;150000;150000
-89;'320;Guatemala;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1090;758;5080;100;25;25;100;2;0;0;3;0;0;0;1;2;12;0;0;0;120;4
-89;'320;Guatemala;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;338;198;41;11;11;38;2;0;0;1;0;1;1;0;1;3;0;0;0;3;3
-89;'320;Guatemala;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;700;0;0;0;0;0;0;17;23;63;161;3;4;3;3;24;24;4;0;0;66;100;1725;261;8225;5782;15894.83;8874;5040
-89;'320;Guatemala;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;0;0;0;0;0;0;9;2;2;26;1;8;10;10;20;20;2;0;0;2;2;29;2;38;40;322;74;32
-89;'320;Guatemala;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386;6444;6444
-89;'320;Guatemala;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71177;80697;65696;99475;59289;83235;85591;85591
-89;'320;Guatemala;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2040;2000;2000;2001;2000;2000;7;23;7;5;15
-89;'320;Guatemala;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1536;1500;1500;1501;1500;1500;7;23;17;16;24
-89;'320;Guatemala;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;8;0;0;0;3980;6807;3991;15206;15174;132
-89;'320;Guatemala;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.64;29;6;0;0;0;1032;2239;974;6114;7320;3
-89;'320;Guatemala;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;0;0;1;0;0;1;23;6;5;15
-89;'320;Guatemala;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;0;0;1;0;0;2;21;5;10;20
-89;'320;Guatemala;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;8;0;0;0;0;0;0;0;0;0
-89;'320;Guatemala;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.64;29;6;0;0;0;0;0;0;0;0;0
-89;'320;Guatemala;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71177;80697;65696;99475;59289;83235;85591;85591
-89;'320;Guatemala;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;6;0;1;0;0
-89;'320;Guatemala;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1500;1500;1500;1500;1500;5;2;12;6;4
-89;'320;Guatemala;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3980;6807;3991;15206;15174;132
-89;'320;Guatemala;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032;2239;974;6114;7320;3
-89;'320;Guatemala;1872;Sawnwood;5516;Production;m3;108700;113700;177900;136600;141600;161700;171800;196900;198300;204000;205000;216600;236000;207000;222000;326000;353000;346000;167500;93300;135700;129700;104400;103400;131400;90200;90000;23000;36000;37000;55000;90000;398000;417000;355000;355000;355000;308000;235000;340000;340000;175000;366000;351000;351000;148000;148000;187000;209000;133593;142781;144962;184994;245084;245084;243812;291730;290906;369076;369076;448060;404298;404298
-89;'320;Guatemala;1872;Sawnwood;5616;Import quantity;m3;200;200;200;2900;1900;3900;2500;2700;500;500;500;500;500;500;11000;5900;5300;5300;2400;700;1100;200;100;100;100;100;100;100;100;100;100;1371;766;600;1700;1700;1700;1200;1600;2900;1000;1055;660;3396;11854;15607;44100;39348;14994;16925;45366;58289;52173;56450;78145;95824;100965;222976;115308;134704;141715;117945;118930
-89;'320;Guatemala;1872;Sawnwood;5622;Import value;1000 USD;4;4;5;85;79;89;59;63;10;10;10;10;10;10;389;487;421;421;240;74;166;25;4;4;4;4;4;4;4;4;4;798;539;225;339;339;339;364;391;923;425;338;299;1514;5024;3983;14224;14260;5356;7822;14445;17728;16089;18675;21909;24546;25494;32610;27816;30324;43347;40957;46827
-89;'320;Guatemala;1872;Sawnwood;5916;Export quantity;m3;12400;16700;11700;15700;15700;12200;15100;6900;10200;9800;25200;55900;73000;68100;40300;35300;43300;38400;30500;27300;28200;16200;6800;8500;17800;28800;28800;20400;33100;9600;19200;70281;43100;43300;49200;31600;28200;49100;51300;45100;67000;31280;22699;34516;53500;46126;51113;41673;34132;50046;53803;54210;47491;42832;43847;34844;37881;29181;44530;32708;34761;36874;44862
-89;'320;Guatemala;1872;Sawnwood;5922;Export value;1000 USD;586;805;442;1203;1183;972;1069;224;360;333;876;3310;3288;3705;2129;3112;3427;3718;3854;3971;4448;2950;1082;1374;2908;3540;3540;4907;6870;4036;5524;19809;15454;7511;9376;6005;5909;7408;9561;10191;15209;9659;7901;9628;13979;13863;20438;19491;13717;18791;22336;23387;20248;19059;18576;15205;12870;13369;14076;10948;14132;16987;19157
-89;'320;Guatemala;1632;Sawnwood, coniferous;5516;Production;m3;76850;76850;118950;110800;120800;145850;152900;177950;177150;177000;177500;182300;195500;146000;176500;244000;208000;247500;125500;60300;81850;74350;72200;77200;98200;75200;75000;13000;21000;30000;40000;60000;239000;250000;263000;263000;263000;263000;195000;180000;180000;140000;251000;251000;251000;33000;33000;59000;81000;43000;39781;38962;38994;38994;38994;197267;238202;241241;319200;319200;372120;336093;336093
-89;'320;Guatemala;1632;Sawnwood, coniferous;5616;Import quantity;m3;200;200;200;2900;1900;3900;2500;2700;500;500;500;500;500;500;11000;5900;5300;5300;2400;700;1100;200;100;100;100;100;100;100;100;100;100;369;127;300;900;900;900;800;1200;1500;400;658;122;542;5480;13857;39731;34804;13419;13161;43263;55487;49325;52915;73960;90966;97167;218612;111465;131098;136293;111549;115144
-89;'320;Guatemala;1632;Sawnwood, coniferous;5622;Import value;1000 USD;4;4;5;85;79;89;59;63;10;10;10;10;10;10;389;487;421;421;240;74;166;25;4;4;4;4;4;4;4;4;4;73;21;139;200;200;200;206;233;182;52;132;39;169;1784;3025;11202;10705;4071;3472;12110;15619;13884;15766;18305;21049;22502;28438;25286;27801;38582;33872;43169
-89;'320;Guatemala;1632;Sawnwood, coniferous;5916;Export quantity;m3;6550;10750;5700;7950;7950;4100;3200;5100;7400;7500;24750;43400;60700;50900;29400;4900;6450;1900;1900;1900;1900;2600;800;4000;5800;17300;17300;12300;20000;2700;4600;54970;24800;27300;32200;19600;17500;43500;40600;34900;52000;17580;11311;18059;33000;28378;29174;27675;27472;40570;40043;43872;36882;30276;31943;23884;25345;20730;36922;28704;28903;29478;36603
-89;'320;Guatemala;1632;Sawnwood, coniferous;5922;Export value;1000 USD;178;348;188;397;387;144;59;125;185;189;848;2144;2317;2068;1192;542;497;138;138;138;138;362;100;484;655;2124;2124;2907;5170;603;1138;10434;4980;5627;7253;3733;3670;5304;5322;5991;7220;2259;2329;3016;4600;5049;7358;8395;7184;10792;11203;11119;8875;7558;7901;4954;5394;5389;6865;6185;7352;7902;9400
-89;'320;Guatemala;1633;Sawnwood, non-coniferous;5516;Production;m3;31850;36850;58950;25800;20800;15850;18900;18950;21150;27000;27500;34300;40500;61000;45500;82000;145000;98500;42000;33000;53850;55350;32200;26200;33200;15000;15000;10000;15000;7000;15000;30000;159000;167000;92000;92000;92000;45000;40000;160000;160000;35000;115000;100000;100000;115000;115000;128000;128000;90593;103000;106000;146000;206090;206090;46545;53528;49665;49876;49876;75940;68205;68205
-89;'320;Guatemala;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002;639;300;800;800;800;400;400;1400;600;397;538;2854;6374;1750;4369;4544;1575;3764;2103;2802;2848;3535;4185;4858;3798;4364;3843;3606;5422;6396;3786
-89;'320;Guatemala;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;518;86;139;139;139;158;158;741;373;206;260;1345;3240;958;3022;3555;1285;4350;2335;2109;2205;2909;3604;3497;2992;4172;2530;2523;4765;7085;3658
-89;'320;Guatemala;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;5850;5950;6000;7750;7750;8100;11900;1800;2800;2300;450;12500;12300;17200;10900;30400;36850;36500;28600;25400;26300;13600;6000;4500;12000;11500;11500;8100;13100;6900;14600;15311;18300;16000;17000;12000;10700;5600;10700;10200;15000;13700;11388;16457;20500;17748;21939;13998;6660;9476;13760;10338;10609;12556;11904;10960;12536;8451;7608;4004;5858;7396;8259
-89;'320;Guatemala;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;408;457;254;806;796;828;1010;99;175;144;28;1166;971;1637;937;2570;2930;3580;3716;3833;4310;2588;982;890;2253;1416;1416;2000;1700;3433;4386;9375;10474;1884;2123;2272;2239;2104;4239;4200;7989;7400;5572;6612;9379;8814;13080;11096;6533;7999;11133;12268;11373;11501;10675;10251;7476;7980;7211;4763;6780;9085;9757
-89;'320;Guatemala;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;2000;4600;1600;2000;1000;2000;2300;2300;1000;900;900;1000;1000;200;200;2000;2000;3000;5000;5000;17000;17400;18600;18600;18600;18600;18600;19000;19000;19000;19000;19000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;21980;22950;22950;7950;4020;4020;4020
-89;'320;Guatemala;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;11;0;0;0;0;400;900;500;300;944;342;151;1043;123;671;697;367;540;345;280;514;443;1088;1377;413;926;580;420;624;622;618
-89;'320;Guatemala;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;8;0;0;0;0;324;545;340;199;661;580;429;1098;397;720;789;326;307;445;280;463;383;967;1073;564;523;468;348;471;713;368
-89;'320;Guatemala;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;2000;3300;1300;1500;1000;1500;1100;200;200;200;200;200;200;200;200;1500;900;2500;4000;572;748;400;200;0;600;800;700;2000;200;461;381;188;763;395;238;183;171;204;183;39;14;45;13;124;14;18;5;1;14;2;6
-89;'320;Guatemala;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;414;371;626;722;542;593;868;191;191;191;191;191;191;191;191;1122;698;1365;1864;502;459;571;306;0;310;495;577;2050;76;279;669;379;1270;603;320;203;265;209;231;108;93;25;18;298;23;33;19;3;38;7;20
-89;'320;Guatemala;1873;Wood-based panels;5516;Production;m3;3400;3400;5400;6000;6000;6000;6000;5700;5500;5400;12600;13500;15900;17900;19300;7800;9700;6900;8500;7100;5400;4600;4600;4500;7300;7800;7900;8200;8200;8200;8200;12800;15100;16000;24800;24800;24800;24800;24800;24500;24500;24500;24500;34500;34500;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;34390;24979;27647;27249;25277;19067;35320;35320
-89;'320;Guatemala;1873;Wood-based panels;5616;Import quantity;m3;200;100;200;600;600;900;900;1000;1000;1300;1800;1400;1500;1500;1500;1500;1500;2200;7600;5100;3700;3900;4100;2200;1100;600;600;600;600;600;600;9235;4232;12164;13500;11000;11000;22700;20600;26100;26300;39170;39266;62579;50601;52501;33736;36108;26553;37088;37977;65857;42511;40560;42701;59667;68202;78943;86079;89322;141824.4;126655;131996
-89;'320;Guatemala;1873;Wood-based panels;5622;Import value;1000 USD;10;14;41;122;148;198;202;236;199;286;386;370;348;348;348;348;348;756;2712;2616;1912;2279;2563;1517;784;295;295;295;295;295;295;2556;955;3660;4078;3025;3025;6270;5963;7352;6939;9806;9753;12368;13124;14163;16687;20469;16244;18296;20651;31756;21369;22981;25907;30251;29718;35790;37138;38754;71440.05;69761;67554
-89;'320;Guatemala;1873;Wood-based panels;5916;Export quantity;m3;1700;500;1100;1900;1900;2000;1700;1500;1200;1100;2500;2500;4500;3400;500;300;400;1600;2800;700;100;200;500;200;200;200;200;200;200;200;200;7155;8703;10800;11500;5400;5400;5400;5200;6700;12900;15597;6003;9840;13910;11451;14085;7281;11146;11516;14834;10069;20108;30060;21589;23917;30515;39689;33096;29161;31877.06;26828;23282
-89;'320;Guatemala;1873;Wood-based panels;5922;Export value;1000 USD;259;93;190;356;333;352;324;279;216;252;269;169;384;397;196;78;170;397;662;289;60;161;310;116;116;116;116;116;116;116;116;3316;3536;3810;3589;1815;1815;2042;1815;2526;3308;4785;3205;4236;10812;9531;7859;4711;6835;6293;8694;10500.12;16949;19265;23194;25837;17011;25478;24480;19704;27002.34;26283;22687
-89;'320;Guatemala;1640;Plywood and LVL;5516;Production;m3;2400;2400;2000;2000;2000;2000;2000;1700;1200;1100;3000;3100;3200;3600;3800;3800;3800;4400;4300;3700;2800;800;900;900;2300;2400;2400;2400;2400;2400;2400;7000;11700;12300;20300;20300;20300;20300;20300;20000;20000;20000;20000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;20470;22349;22111;22111;12747;31100;31100
-89;'320;Guatemala;1640;Plywood and LVL;5616;Import quantity;m3;200;100;200;600;600;900;900;1000;1000;1300;1800;1400;1500;1500;1500;1500;1500;2200;7600;5100;3700;3900;4100;2200;1100;600;600;600;600;600;600;566;1132;1300;700;600;600;1900;1600;3400;3000;3111;3803;2875;3423;4463;5207;7020;3009;4677;6195;8650;12050;12348;18324;32713;27391;39253;36386;35603;56823;43368;52851
-89;'320;Guatemala;1640;Plywood and LVL;5622;Import value;1000 USD;10;14;41;122;148;198;202;236;199;286;386;370;348;348;348;348;348;756;2712;2616;1912;2279;2563;1517;784;295;295;295;295;295;295;287;361;736;378;330;330;1087;865;1441;1303;1333;1392;963;1200;1319;2196;3151;1651;2201;3546;5329;7716;8655;12235;16537;11374;18106;17635;17951;28951;27165;27413
-89;'320;Guatemala;1640;Plywood and LVL;5916;Export quantity;m3;1600;400;600;1100;700;1000;1300;800;500;600;1000;500;300;900;300;200;300;300;2300;200;100;200;500;200;200;200;200;200;200;200;200;7052;8600;7100;6500;5400;5400;5000;2600;2900;5000;5000;3616;4299;9671;7755;5458;1376;3357;2001;2442;4031;7820;14846;12737;17868;13876;23212;16564;16282;17070;11276;9452
-89;'320;Guatemala;1640;Plywood and LVL;5922;Export value;1000 USD;253;87;108;250;192;222;267;189;141;188;130;61;172;206;160;63;155;153;480;107;60;161;310;116;116;116;116;116;116;116;116;3267;3487;3075;2492;1815;1815;1930;1085;1622;1800;2120;2532;3268;9026;8189;1783;1002;3854;2791;3742;6640;11307;13473;18612;22874;10993;19492;18253;15100;20366;17982;15905
-89;'320;Guatemala;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;130
-89;'320;Guatemala;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;111
-89;'320;Guatemala;1646;Particle board and OSB (1961-1994);5516;Production;m3;1000;1000;3400;4000;4000;4000;4000;4000;4300;4300;9600;10400;12700;14300;15500;4000;5900;2500;4200;3400;2600;3800;3700;3600;5000;5400;5500;5800;5800;5800;5800;5800;3400;3700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8127;2636;10400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2068;410;2740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;100;100;500;800;1200;1000;400;700;700;500;1500;2000;4200;2500;200;100;100;1300;500;500;;;;;;;;;;;;103;103;3700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;6;6;82;106;141;130;57;90;75;64;139;108;212;191;36;15;15;244;182;182;;;;;;;;;;;;49;49;735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;4500;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;4390;4509;5298;5138;3166;6320;4220;4220
-89;'320;Guatemala;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11200;8800;8800;18300;14000;15000;18000;27986;21420;32614;20902;26315;17638;15509;7939;10202;8700;22094;10582;7690;3058;2734;14997;14997;16758;19545;39628.32;35152;38936
-89;'320;Guatemala;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3181;2176;2176;4215;3231;3387;3973;6437;4807;5349;5327;6849;8103;9022;6797;6529;5664;6464;4195;3735;1324;1120;4653;4653;5602;6205;15550.82;17775;18064
-89;'320;Guatemala;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;0;0;400;2600;1900;6000;3560;2228;5281;4143;3614;8461;5657;6114;8459;12243;5924;11879;15018;7934;5619;16355;16355;16305;12769;14649.06;15428;13641
-89;'320;Guatemala;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097;0;0;112;730;519;1123;797;621;893;1717;1297;5813;3535;2694;3237;4878;3741;5089;5707;3940;2696;5756;5756;5879;4548;6311.34;7778;6632
-89;'320;Guatemala;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;587;163;8;207;284;60;74;1300;282;239;115;894;869;810;150;931;1964;2262.64;1143;1077
-89;'320;Guatemala;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;96;58;4;154;160;56;39;672;199;97;40;450;408;281;77;278;566;1088.1;615;343
-89;'320;Guatemala;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;53;53;2;2;10;10;10;10;10;10;10;0;0;0;0;0;0;0
-89;'320;Guatemala;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;21;151;1;1;5;5;5;5;5;5;5;0;0;0;0;0;0;0
-89;'320;Guatemala;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;464;464;1600;1600;1600;2500;5000;7700;5300;8073;14027;26503;26113;21715;10684;13295;15545;22135;21782;34831;19640;20407;20425;23351;25004;24543;32004;32210;43110.43;46992;39132
-89;'320;Guatemala;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;184;184;519;519;519;968;1867;2524;1663;2036;3544;5960;6539;5991;6234;8136;7740;9527;10769;19764;9361;10551;11898;12186;13410;12954;13623;14032;25850.13;24206;21734
-89;'320;Guatemala;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1900;1900;7037;159;260;84;29;113;246;1673;1046;139;104;399;186;908;420;284;122;227;110;158;124;189
-89;'320;Guatemala;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;385;385;1868;52;75;59;24;112;173;286;260;69;114.12;548;80;637;262;262;230;348;56;325;523;150
-89;'320;Guatemala;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;2500;5000;7700;5300;2312;4634;5570;6732;6565;3092;4163;5208;4757;7000;6825;3860;6426;7056;6825;7390;6706;9360;10099;13678.55;7622;10146
-89;'320;Guatemala;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;519;519;968;1867;2524;1663;1041;1790;2584;3319;3059;1748;2573;4058;3877;5696;6206;2953;4969;5667;4877;4903;4812;6341;6879;12497.52;7665;9454
-89;'320;Guatemala;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1900;1900;7000;40;127;19;8;5;7;0;0;2;1;16;0;6;14;18;45;49;25;36;29;26
-89;'320;Guatemala;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;385;385;1865;33;51;31;18;8;7;0;0;1;0.12;53;0;25;6;12;50;80;33;56;56;50
-89;'320;Guatemala;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3876;8364;16297;7488;9217;6495;7864;9649;14925;12000;25022;13364;11473;11159;15605;17088;17292;20810;21066;28655.88;38846;28544
-89;'320;Guatemala;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777;1587;2787;1808;2115;3654;4745;3241;5261;4401;11852;5971;5153;5794;7144;8357;7969;6907;6912;13120.61;16296;12007
-89;'320;Guatemala;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;42;37;53;4;73;135;73;27;25;48;164;108;786;351;68;44;98;2;118;93;161
-89;'320;Guatemala;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;9;14;1;83;103;57;27;33;91;416;52;523;222;124;162;248;3;261;465;98
-89;'320;Guatemala;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1885;1029;4636;11893;5933;1097;1268;688;2453;2782;2984;2416;2508;2210;921;526;545;1834;1045;776;524;442
-89;'320;Guatemala;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;167;589;1412;817;832;818;441;389;672;1706;437;429;437;165;150;173;375;241;232;245;273
-89;'320;Guatemala;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;77;96;12;17;35;104;1600;1019;112;55;219;78;116;55;198;33;80;83;4;2;2
-89;'320;Guatemala;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;15;14;5;21;63;229;233;35;23;79;28;89;34;126;18;20;20;8;2;2
-89;'320;Guatemala;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;464;464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;184;184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;8000;7000;7000;7000;7000;20000;6000;10000;36000;39000;19000;19000;18000;5000;10000;12000;12000;12000;9000;9000;12000;12000;12000;12000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;25000;25000;30000;50000;40000;55000;80000;95000;91000;95000;101000;100000;115000;115000;115000;115000;115000;115000;115000
-89;'320;Guatemala;1879;Total fibre furnish;5610;Import quantity;t;;;;;;5000;8700;4400;6900;12100;8700;9400;20200;30036;10030;22085;18455;12700;19300;36900;17000;4300;17300;9300;11100;10400;10400;15300;13200;17300;17300;15300;15307;6646;11746;21446;21446;19400;10700;19000;23000;14688;22088;50002;27563;21459;32047;27005;29692;29524;34351;27837;22983.16;31945;39949;44466;43151;47809;81717;85402;82356.45;100078;133896
-89;'320;Guatemala;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;736;1180;584;953;1600;1499;1455;4617;7633;3052;7538;6090;3566;7247;18952;8265;1126;6356;4837;4427;1781;1781;5267;4069;4373;4373;4392;3066;2301;5033;4125;4125;3361;2831;6342;4855;4143;7435;5982;8130;6274;9873;11900;7563;9853;13877;8570;6346;11206;14993;15418;15170;23130;33372;29057;33333.46;59243;69575
-89;'320;Guatemala;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;1100;400;700;200;800;1000;100;100;100;100;100;100;100;300;200;900;1200;4009;389;10000;8300;8400;8400;12600;12300;10400;23200;27721;41179;73158;46577;42402;55525;69274;66416;76553;91940.5;106226.65;111321.05;114235.85;132536;130081;146145;113211;103238;94171;127497.5;128201.8;118010
-89;'320;Guatemala;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;163;60;54;13;42;186;10;10;10;10;10;10;10;28;25;191;148;636;48;1465;2329;1081;1081;2317;1797;1547;2729;4033;6756;7277;7760;7076;8462;10842;8476;13290;18581.5;20081.75;19984.05;20123.03;22940;20099;27132;18382;14503;12949;25324.02;28158.38;16708
-89;'320;Guatemala;1878;Pulp for paper;5610;Import quantity;t;;;;;;5000;8700;4400;6900;12100;8700;9400;20200;13600;5500;13600;9800;9400;14500;31400;13800;3100;13900;8000;9900;7400;7400;5900;6300;6300;6300;3542;2298;1146;2646;1446;1446;2200;700;600;800;277;867;1355;2024;2754;3185;3999;1105;1071;5971;1924;2098.16;6835;8694;12246;10657;15467;21267;15007;10202;24835;47953
-89;'320;Guatemala;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;736;1180;584;953;1600;1499;1455;4617;4188;2112;5003;3493;2989;6038;17038;7112;868;5640;4430;4286;1438;1438;1995;1811;1811;1811;2381;1159;907;1890;1007;1007;998;418;417;383;203;1405;582;1355;1863;2486;4470;974;1097;4293;1548;1606;4960;6177;6632;6078;11232;15670;8726;9088.94;23816;35474
-89;'320;Guatemala;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;108;27;48;36;518;39;16;1.5;1.65;6.05;6.85;238;3;33;29;99;140;94;28.8;32
-89;'320;Guatemala;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;45;74;47;20;410;11;16;2.5;2.75;17.05;19.04;91;11;45;40;56;59;53;35.38;41
-89;'320;Guatemala;1875;Wood pulp;5610;Import quantity;t;;;;;;5000;8700;4400;6900;12100;8700;9400;20200;13600;5500;13600;9800;9400;14500;31400;13800;3100;13900;8000;9900;7400;7400;5900;6300;6300;6300;1965;2097;1346;2746;1546;1546;2300;700;600;800;269;860;1361;2027;2761;3114;4002;1108;1041;32783;1912;2086.16;6820;8677;8599;6403;11476;21250;14989;10182;24772;47878
-89;'320;Guatemala;1875;Wood pulp;5622;Import value;1000 USD;;;;;;736;1180;584;953;1600;1499;1455;4617;4188;2112;5003;3493;2989;6038;17038;7112;868;5640;4430;4286;1438;1438;1995;1811;1811;1811;1140;1120;996;1974;1091;1091;1082;418;417;383;201;1404;586;1354;1855;2416;4456;970;1066;14112;1508;1577;4911;6128;4880;3903;9064;15601;8664;9004.94;23604;35234
-89;'320;Guatemala;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;108;26;47;35;517;33;1;0.5;60.65;60.05;60.85;297;62;92;88;89;91;92;88.81;32
-89;'320;Guatemala;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;45;72;45;18;408;5;1;0.5;35.75;35.05;37.03;120;40;74;69;71;72;74;70.38;41
-89;'320;Guatemala;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;75;185;157;129;106;78
-89;'320;Guatemala;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;80;216;171;128;168;115
-89;'320;Guatemala;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;2;4;4;1;4
-89;'320;Guatemala;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;5;6;6;2;3
-89;'320;Guatemala;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;23;42;11;11;11;11;1599;37;70;1436;22;22;172;124;22;;;;;;;
-89;'320;Guatemala;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;18;17;4;4;4;4;2378;48;71;1345;35;69;271;167;39;;;;;;;
-89;'320;Guatemala;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;1;0.3;0.05;0.05;0;6;0;;;;;;;
-89;'320;Guatemala;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0.3;0.05;0.05;0;5;1;;;;;;;
-89;'320;Guatemala;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;246;246;246;246;246;300;100;200;200;79;420;2;773;564;564;564;5;0;19;24;24;0;0;1;;;;;;;
-89;'320;Guatemala;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;94;94;94;94;94;211;42;114;114;40;210;1;387;282;282;282;5;0;62;14;14;0;1;2;;;;;;;
-89;'320;Guatemala;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;4400;6900;12100;8700;9400;20200;13600;5500;13600;9800;9400;14500;31400;13800;3100;13900;8000;9900;7400;7400;5900;6300;6300;6300;1670;1831;900;2400;1200;1200;1900;600;400;600;156;387;1337;1232;2175;2528;1828;1055;971;4508;1864;2038.16;6647;8552;8575;6288;11400;21061;14828;10049;24664;47798
-89;'320;Guatemala;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;584;953;1600;1499;1455;4617;4188;2112;5003;3493;2989;6038;17038;7112;868;5640;4430;4286;1438;1438;1995;1811;1811;1811;1026;1016;813;1796;913;913;787;376;303;269;135;1169;573;955;1561;2122;1788;909;995;2864;1455;1490;4638;5958;4837;3780;8982;15377;8486;8868.94;23430;35113
-89;'320;Guatemala;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;108;26;15;3;485;1;0;0.2;0.6;0;0.85;231;2;28;27;27;27;28;27.8;28
-89;'320;Guatemala;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;45;72;45;18;408;5;0;0.2;0.7;0;2.04;80;4;34;31;31;31;33;33.38;38
-89;'320;Guatemala;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;184;8;8;17;8;8;8;8;8;8;8;8;8;37;37;25;7;1;0;0
-89;'320;Guatemala;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;42;65;22;24;50;25;23;23;25;26;25;25;24;24;22;22;16;25;3;0;1
-89;'320;Guatemala;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;4400;6900;12100;8700;9400;20200;13600;5500;13600;9800;9400;14500;31400;13800;3100;13900;8000;9900;7400;7400;5900;6300;6300;6300;1654;1717;900;2400;1200;1200;1900;600;400;600;137;303;719;1129;2107;2438;1660;878;942;2250;1782;2004;6595;8499;8526;6181;11344;21001;14809;10030;24656;47793
-89;'320;Guatemala;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;584;953;1600;1499;1455;4617;4188;2112;5003;3493;2989;6038;17038;7112;868;5640;4430;4286;1438;1438;1995;1811;1811;1811;1010;953;813;1796;913;913;787;376;303;269;81;966;303;686;1362;1858;1442;686;920;1419;1286;1387;4518;5861;4708;3658;8923;15288;8398;8783.94;23388;35080
-89;'320;Guatemala;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;0;0;0;0;0;0.67;231;1;27;27;27;27;27;27;27
-89;'320;Guatemala;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;0;0;0;0;0;0.04;80;1;30;30;30;30;30;30;30
-89;'320;Guatemala;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;19;35;12;18;8;5
-89;'320;Guatemala;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;37;73;63;82;42;32
-89;'320;Guatemala;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1;0.81;1
-89;'320;Guatemala;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;1;3;3.38;8
-89;'320;Guatemala;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;8;25;0.16;0;0;0;;;;;;;
-89;'320;Guatemala;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;22;64;1;2;0;0;;;;;;;
-89;'320;Guatemala;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;114;;;;;;;;;4;69;434;95;60;67;154;163;21;2242;49;26;44;45;41;;;;;;;
-89;'320;Guatemala;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;63;;;;;;;;;13;161;205;247;175;210;317;196;51;1398;79;77;93;73;105;;;;;;;
-89;'320;Guatemala;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;108;26;15;3;3;1;0;0.2;0.6;0;0.19;0;1;;;;;;;
-89;'320;Guatemala;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;45;72;45;18;18;5;0;0.2;0.7;0;2;0;3;;;;;;;
-89;'320;Guatemala;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;200;100;100;100;100;0;0;0;11;11;11;11;11;11;11;11;0;26820;2;2;1;1;1;1;1;4;4;4;2;2
-89;'320;Guatemala;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;89;84;84;84;84;0;0;0;8;8;8;8;8;8;8;8;0;9841;4;4;2;2;2;2;2;8;7;8;6;6
-89;'320;Guatemala;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;60;60;60;60;60;0
-89;'320;Guatemala;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35;35;0
-89;'320;Guatemala;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577;221;0;0;0;0;0;0;0;0;19;18;5;8;4;82;8;8;30;8;14;14;16;18;3648;4255;3992;21;22;24;65;77
-89;'320;Guatemala;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241;49;0;0;0;0;0;0;0;0;10;9;4;9;16;78;22;12;31;22;44;33;51;51;1754;2177;2170;77;69;92;218;246
-89;'320;Guatemala;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;6;15;1;1;6;6;1;1;1;1;70;109;62;0;0
-89;'320;Guatemala;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;6;15;2;2;17;17;6;6;6;6;20;22;14;0;0
-89;'320;Guatemala;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;3;27;102;16;72;1200;1745;2242;2908;2985;3772;3563;1321;1496;1678;5080;4605;5271.71;5041;5650
-89;'320;Guatemala;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;10;16;7;40;683;971;1398;1535;1855;2209;2060;428;721;950;3100;2444;3113;4611;5965
-89;'320;Guatemala;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;74;74;74;74;74;5;0;0;5;0;1;1;1;1;1;49;49;10;22;21.76;21.76
-89;'320;Guatemala;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;5;5;5;5;6;0;0;6;0;2;2;2;2;2;10;10;5;11;11.45;11.45
-89;'320;Guatemala;1669;Recovered paper;5510;Production;t;;;;;;;;;;8000;7000;7000;7000;7000;20000;6000;10000;36000;39000;19000;19000;18000;5000;10000;12000;12000;12000;9000;9000;12000;12000;12000;12000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;25000;25000;30000;50000;40000;55000;80000;95000;91000;95000;101000;100000;115000;115000;115000;115000;115000;115000;115000
-89;'320;Guatemala;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;16436;4530;8485;8655;3300;4800;5500;3200;1200;3400;1300;1200;3000;3000;9400;6900;11000;11000;11758;13009;5500;9100;20000;20000;17200;10000;18400;22200;14411;21221;48647;25539;18705;28862;23006;28587;28453;28380;25913;20885;25110;31255;32220;32494;32342;60450;70395;72154.45;75243;85943
-89;'320;Guatemala;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;3445;940;2535;2597;577;1209;1914;1153;258;716;407;141;343;343;3272;2258;2562;2562;2011;1907;1394;3143;3118;3118;2363;2413;5925;4472;3940;6030;5400;6775;4411;7387;7430;6589;8756;9584;7022;4740;6246;8816;8786;9092;11898;17702;20331;24244.52;35427;34101
-89;'320;Guatemala;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;1100;400;700;200;800;1000;100;100;100;100;100;100;100;300;200;900;1200;4009;389;10000;8300;8400;8400;12600;12300;10400;23200;27721;41170;73050;46550;42354;55489;68756;66377;76537;91939;106225;111315;114229;132298;130078;146112;113182;103139;94031;127403.5;128173;117978
-89;'320;Guatemala;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;163;60;54;13;42;186;10;10;10;10;10;10;10;28;25;191;148;636;48;1465;2329;1081;1081;2317;1797;1547;2729;4033;6733;7232;7686;7029;8442;10432;8465;13274;18579;20079;19967;20104;22849;20088;27087;18342;14447;12890;25271.02;28123;16667
-89;'320;Guatemala;1876;Paper and paperboard;5510;Production;t;2700;3000;4000;6500;10200;9400;10100;11000;12000;14000;15500;22100;22100;21000;19100;23200;28600;32300;29400;31700;29000;17000;21000;23000;19100;22100;22000;22000;22000;22000;22000;22000;22000;25000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000
-89;'320;Guatemala;1876;Paper and paperboard;5610;Import quantity;t;6500;7800;5900;7400;14900;17300;26900;39200;44400;38800;39900;65800;31800;37900;32500;35300;37500;63000;46400;92300;76500;74800;71700;70800;61000;73200;73200;54200;80700;83000;86500;138806;142438;119900;131200;110500;112700;200992;181884;196784;231000;275482;282672;292643;293096;289628;327068;340711;274448;340212;478077;442437;459476;484618;479372;427178;538236;539165;579747;604237;631953.23;731110;590773
-89;'320;Guatemala;1876;Paper and paperboard;5622;Import value;1000 USD;1611;1688;1054;1668;3711;4097;6068;7869;8287;8397;8464;12914;9321;15026;11775;14080;15262;33829;30065;74055;55309;54599;54543;55302;39586;42067;42067;45586;67599;66941;46102;87115;90594;81224;122278;69451;81639;150553;110880;143897;155262;173738;176818;195794;201285;207024;249243;284689;242029;317188;367373;333398;375354;387085;351783;273177;371183;415597;477624;428948;585056.44;890203;542685
-89;'320;Guatemala;1876;Paper and paperboard;5910;Export quantity;t;200;200;200;200;200;2000;2700;4400;4900;6800;6600;8200;12300;11300;9500;11800;13400;8300;15700;18400;14200;7500;9000;7200;3000;5100;5100;6700;6800;7100;6600;4109;1609;2141;1871;1700;1700;5299;6061;5961;5861;12034;12322;15960;15576;17935;20442;17362;21793;22999;23082;15659;16554;18575;10660;7480;11174;10565;33186;26103;22715.23;31180;24541
-89;'320;Guatemala;1876;Paper and paperboard;5922;Export value;1000 USD;23;21;21;21;21;521;799;1356;1554;2239;2133;2907;5188;7578;6411;7692;8839;5823;12695;17992;18859;9183;10896;8936;3328;5783;5783;7061;7059;7061;4817;2310;1003;1829;1926;1645;1645;4676;4759;4063;3689;6883;11289;13594;12744;15623;16388;16330;17342;16896;16421;12763;12975;14325;9228;5966;8469;8584;23249;16033;19109.99;35893;32012
-89;'320;Guatemala;2042;Graphic papers;5510;Production;t;;;;1000;4000;3800;4000;4500;5000;6700;7800;9500;9500;12300;9600;7000;12300;13000;14500;14700;15000;7000;10000;11000;9100;10100;10000;10000;10000;10000;10000;10000;10000;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-89;'320;Guatemala;2042;Graphic papers;5610;Import quantity;t;5200;6200;5100;6400;7100;7800;7800;7800;8800;9400;9000;11000;8100;10000;9100;18500;19800;21900;12800;22600;31700;27300;25400;29100;24900;9800;9800;12100;14100;15000;17200;64206;63538;39800;38100;38000;42000;109092;89684;72784;84400;95942;98040;118560;87325;125641;98533;93961;76701;105004;122825;103311;103427;98326;77420;87372;96859;94412;92130;62580;73916.51;98749;72498
-89;'320;Guatemala;2042;Graphic papers;5622;Import value;1000 USD;1005;1193;848;1289;1399;1479;1484;1442;1658;1752;1972;2424;1859;3577;3344;6921;7763;7591;6994;36377;17255;15277;13635;15201;11973;5793;5793;6908;8308;8808;9614;52558;43622;28120;41377;29750;32811;84373;59104;59188;70563;69199;67143;81737;71318;97220;90360;93315;74216;111602;105255;103657;104531;100896;75027;70600;79990;83596;93968;57289;73912.03;140418;87327
-89;'320;Guatemala;2042;Graphic papers;5910;Export quantity;t;;;;;;200;600;2700;2700;4100;3700;4900;9100;4700;4400;6200;7400;500;8200;13500;8600;5000;5100;2800;1800;700;700;700;700;1000;700;114;9;241;271;300;300;999;1361;1061;1061;867;2346;3733;2330;3260;1359;1737;1932;3825;3741;2386;1536;881;792;358;879;772;2606;1432;2402;3394;3046
-89;'320;Guatemala;2042;Graphic papers;5922;Export value;1000 USD;;;;;;54;264;942;978;1569;1468;1883;4213;4751;3838;4761;5667;390;6661;12614;10287;5577;5428;3123;1689;1206;1206;1100;1200;1206;917;143;5;255;233;615;615;1150;1431;1099;1117;975;2657;2767;2213;2733;1343;1838;2136;4808;4099;3032;2474;1894;1105;568;1019;904;2172;1448;2281;3999;5015
-89;'320;Guatemala;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;600;;300;;;;;;;;100;100;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-89;'320;Guatemala;1671;Newsprint;5610;Import quantity;t;3600;4400;4600;4600;5500;5900;6200;6300;7400;8300;8100;9700;7400;9100;7500;7100;6700;15000;11000;17000;10000;11400;10800;13200;7100;7700;7700;10000;12000;13000;15000;18206;38000;21200;20500;18000;22000;30500;36700;27100;29600;34305;33177;42318;31032;30356;40806;37745;21962;31353;45153;26532;29380;24702;21720;21409;18855;20994;10010;10238;11829.08;11013;9704
-89;'320;Guatemala;1671;Newsprint;5622;Import value;1000 USD;528;666;721;743;888;943;963;996;1187;1352;1576;1808;1519;2947;2722;2800;2631;5790;5065;9016;5609;6447;5601;6543;3591;3485;3485;4600;6000;6500;7500;8627;23176;13043;18199;12939;16000;21104;19450;18704;22381;20274;18270;21582;20281;23286;28494;26980;15445;21328;29358;20957;21738;19430;15056;12561;11044;12729;7279;6032;8097.2;9532;8352
-89;'320;Guatemala;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;9;100;200;100;100;100;200;200;100;160;131;314;226;407;252;793;407;169;66;145;163;98;248;90;157;185;374;209;551;798;1477
-89;'320;Guatemala;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;5;42;88;88;88;88;159;75;59;130;81;148;167;157;169;600;185;134;81;128;139;108;210;54;143;170;397;212;558;1141;2676
-89;'320;Guatemala;1674;Printing and writing papers;5510;Production;t;;;;1000;4000;3800;4000;4500;5000;6700;7800;9500;9500;12300;9000;7000;12000;13000;14500;14700;15000;7000;10000;11000;9000;10000;10000;10000;10000;10000;10000;10000;10000;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-89;'320;Guatemala;1674;Printing and writing papers;5610;Import quantity;t;1600;1800;500;1800;1600;1900;1600;1500;1400;1100;900;1300;700;900;1600;11400;13100;6900;1800;5600;21700;15900;14600;15900;17800;2100;2100;2100;2100;2000;2200;46000;25538;18600;17600;20000;20000;78592;52984;45684;54800;61637;64863;76242;56293;95285;57727;56216;54739;73651;77672;76779;74047;73624;55700;65963;78004;73418;82120;52342;62087.44;87736;62794
-89;'320;Guatemala;1674;Printing and writing papers;5622;Import value;1000 USD;477;527;127;546;511;536;521;446;471;400;396;616;340;630;622;4121;5132;1801;1929;27361;11646;8830;8034;8658;8382;2308;2308;2308;2308;2308;2114;43931;20446;15077;23178;16811;16811;63269;39654;40484;48182;48925;48873;60155;51037;73934;61866;66335;58771;90274;75897;82700;82793;81466;59971;58039;68946;70867;86689;51257;65814.83;130886;78975
-89;'320;Guatemala;1674;Printing and writing papers;5910;Export quantity;t;;;;;;200;600;2700;2700;4100;3700;4900;9100;4700;4400;6200;7400;500;8200;13500;8600;5000;5100;2800;1800;700;700;700;700;1000;700;90;0;141;71;200;200;899;1161;861;961;707;2215;3419;2104;2853;1107;944;1525;3656;3675;2241;1373;783;544;268;722;587;2232;1223;1851;2596;1569
-89;'320;Guatemala;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;54;264;942;978;1569;1468;1883;4213;4751;3838;4761;5667;390;6661;12614;10287;5577;5428;3123;1689;1206;1206;1100;1200;1206;917;115;0;213;145;527;527;1062;1272;1024;1058;845;2576;2619;2046;2576;1174;1238;1951;4674;4018;2904;2335;1786;895;514;876;734;1775;1236;1723;2858;2339
-89;'320;Guatemala;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;384;384;400;473;488;924;1895;2941;2548;2220;275;845;839;1352;1855;2108;576;3952;2698;2698;1599;153;1023;2195;669
-89;'320;Guatemala;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;242;242;359;297;370;729;1472;2426;2213;2757;776;1232;1387;1547;2714;2484;878;3154;2155;2155;1779;203;1041;3113;1036
-89;'320;Guatemala;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;9;10;13;13;14;40;17;5;1;1;25;86;4;75;43;73;73;80;18;45;43;40
-89;'320;Guatemala;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;13;19;10;10;12;32;19;6;1;2;41;121;9;124;35;66;66;143;40;105;165;151
-89;'320;Guatemala;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28208;28500;24000;32000;34773;40185;43868;40268;44926;38389;36474;38281;40609;48878;50011;51533;48280;45277;46036;57795;58728;52703;31833;40754.36;56323;45711
-89;'320;Guatemala;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23170;20585;21650;28247;28441;29434;34613;36217;42380;40023;42285;38111;50557;44410;50802;52350;49947;44515;40036;51078;56367;53240;28963;39372.64;81977;53802
-89;'320;Guatemala;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;500;200;300;187;1520;2032;1485;2026;938;837;361;1072;956;978;867;625;265;154;505;379;838;622;835;1328;546
-89;'320;Guatemala;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;479;231;265;214;1352;1557;1373;1695;959;1027;660;1513;1449;1143;1007;819;375;228;597;470;1145;843;999;1604;1395
-89;'320;Guatemala;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-89;'320;Guatemala;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;24100;21300;22400;26391;24190;31450;14130;47418;16790;17522;16183;32197;27955;25416;20659;23236;9847;15975;17511;11992;27818;20356;20310.08;29218;16414
-89;'320;Guatemala;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39857;18827;18592;19576;20187;19069;24813;13348;29128;19630;21293;19884;38485;30100;30351;27729;29035;14578;14849;15713;12345;31670;22091;25401.19;45796;24137
-89;'320;Guatemala;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650;650;650;650;511;685;1374;606;813;129;90;1159;2583;2718;1238;420;154;204;71;144;135;1314;583;971;1225;983
-89;'320;Guatemala;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777;777;777;777;618;1205;1052;663;869;183;192;1285;3160;2567;1720;1207;958;396;251;213;198;487;353;619;1089;793
-89;'320;Guatemala;1675;Other paper and paperboard;5510;Production;t;2700;3000;4000;5500;6200;5600;6100;6500;7000;7300;7700;12600;12600;8700;9500;16200;16300;19300;14900;17000;14000;10000;11000;12000;10000;12000;12000;12000;12000;12000;12000;12000;12000;21000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000
-89;'320;Guatemala;1675;Other paper and paperboard;5610;Import quantity;t;1300;1600;800;1000;7800;9500;19100;31400;35600;29400;30900;54800;23700;27900;23400;16800;17700;41100;33600;69700;44800;47500;46300;41700;36100;63400;63400;42100;66600;68000;69300;74600;78900;80100;93100;72500;70700;91900;92200;124000;146600;179540;184632;174083;205771;163987;228535;246750;197747;235208;355252;339126;356049;386292;401952;339806;441377;444753;487617;541657;558036.72;632361;518275
-89;'320;Guatemala;1675;Other paper and paperboard;5622;Import value;1000 USD;606;495;206;379;2312;2618;4584;6427;6629;6645;6492;10490;7462;11449;8431;7159;7499;26238;23071;37678;38054;39322;40908;40101;27613;36274;36274;38678;59291;58133;36488;34557;46972;53104;80901;39701;48828;66180;51776;84709;84699;104539;109675;114057;129967;109804;158883;191374;167813;205586;262118;229741;270823;286189;276756;202577;291193;332001;383656;371659;511144.41;749785;455358
-89;'320;Guatemala;1675;Other paper and paperboard;5910;Export quantity;t;200;200;200;200;200;1800;2100;1700;2200;2700;2900;3300;3200;6600;5100;5600;6000;7800;7500;4900;5600;2500;3900;4400;1200;4400;4400;6000;6100;6100;5900;3995;1600;1900;1600;1400;1400;4300;4700;4900;4800;11167;9976;12227;13246;14675;19083;15625;19861;19174;19341;13273;15018;17694;9868;7122;10295;9793;30580;24671;20313.23;27786;21495
-89;'320;Guatemala;1675;Other paper and paperboard;5922;Export value;1000 USD;23;21;21;21;21;467;535;414;576;670;665;1024;975;2827;2573;2931;3172;5433;6034;5378;8572;3606;5468;5813;1639;4577;4577;5961;5859;5855;3900;2167;998;1574;1693;1030;1030;3526;3328;2964;2572;5908;8632;10827;10531;12890;15045;14492;15206;12088;12322;9731;10501;12431;8123;5398;7450;7680;21077;14585;16828.99;31894;26997
-89;'320;Guatemala;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;400;500;700;700;600;600;1300;1400;2200;3400;4300;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;14000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000
-89;'320;Guatemala;1676;Household and sanitary papers;5610;Import quantity;t;200;200;100;300;400;500;1000;1600;1800;1500;1500;2700;2700;2700;2700;700;900;1800;1700;2700;2400;3800;4700;3800;1900;1100;1100;2700;2500;3000;3000;5000;100;100;100;0;0;0;0;1300;2100;14363;13716;918;1865;3130;2268;2896;3153;3522;24690;17210;15329;19805;9426;11050;17441;15519;23604;36908;43986.24;44252;34195
-89;'320;Guatemala;1676;Household and sanitary papers;5622;Import value;1000 USD;143;117;49;222;301;340;596;923;862;864;844;1364;1364;1364;1364;832;959;1917;2610;4638;4516;6479;7334;5900;3023;1172;1172;3144;2758;2700;2500;3000;167;117;73;0;0;0;0;1200;1769;9826;8834;1009;1550;3014;2616;3615;4641;4743;24618;19348;18695;27543;12053;11944;19528;16493;28133;42645;57621.54;76449;52235
-89;'320;Guatemala;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;200;300;200;300;400;400;500;500;500;500;700;800;600;1600;1000;400;400;700;200;;;;;;;;;;0;0;0;0;0;0;1100;0;184;1015;588;619;667;1059;87;82;119;76;51;128;86;521;62;14;3;1968;189;291;645;4793
-89;'320;Guatemala;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;75;86;66;92;107;106;248;248;248;248;428;497;431;1516;882;985;602;860;192;;;;;;;;;;0;0;0;0;0;0;769;0;192;922;651;1057;1706;1369;78;90;145;68;126;263;239;796;91;23;13;3063;318;516;1129;9799
-89;'320;Guatemala;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-89;'320;Guatemala;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91900;92200;116700;136600;156044;158699;155934;191274;160439;225936;243129;194240;231118;330318;321662;340637;365897;392450;328688;423890;429161;463918;504438;513959.47;588018;483785
-89;'320;Guatemala;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66180;51776;74425;71391;82299;85785;96679;110921;105274;154984;185989;161654;199924;236514;209105;251624;257529;264225;190198;271232;315005;354989;328405;452817.64;672668;402177
-89;'320;Guatemala;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;4700;800;800;6920;2975;5296;6581;8887;10039;10431;15943;19039;19259;13207;14827;17604;9344;6994;10274;9766;28531;24466;19961.23;27134;16698
-89;'320;Guatemala;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3526;3328;518;492;2899;2205;3199;4190;5448;6783;7189;7997;11888;12233;9531;9998;12184;7315;5268;7413;7570;17959;14248;16259.99;30749;17190
-89;'320;Guatemala;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;3000;3600;5700;5700;6700;3300;9300;9300;11500;3300;4500;4000;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;7000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;4800;5900;11800;19500;22100;18200;19100;34000;14600;17300;14200;10100;10900;35900;20500;64700;42200;43400;41300;37700;34100;47100;47100;20300;50600;51000;52300;51600;70500;73500;74400;72500;70700;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;1040;1178;2063;2847;2983;2990;2921;4720;3218;5927;3667;3227;3362;21468;7394;31333;33123;32373;33214;33957;24347;19420;19420;16000;41000;39900;19988;15557;35386;41567;55585;39701;48828;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;500;600;500;700;800;900;1000;2600;3100;1800;1800;1800;4000;2800;1600;200;100;200;200;200;200;200;200;200;200;200;200;200;1800;1400;1400;1400;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;121;139;108;150;174;173;182;672;1244;838;790;824;3032;2133;1082;165;35;155;155;155;155;155;155;155;155;155;155;155;1459;1203;1030;1030;;;;;;;;;;;;;;;;;;;;;;;;;;
-89;'320;Guatemala;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-89;'320;Guatemala;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72942;74400;83400;104600;127591;129469;104347;157667;124835;175805;183178;150366;185153;276601;272661;289447;305056;340141;266907;352034;360614;391656;440576;433001.93;489921;398615
-89;'320;Guatemala;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45614;35686;47147;47891;56644;58714;64696;77351;68344;100010;113260;104487;145221;180611;163729;195154;203739;212116;127331;197071;238386;250409;239984;339883.04;502840;267455
-89;'320;Guatemala;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;4700;800;800;1014;1497;1547;3109;5194;3958;2969;1925;6412;3013;1374;1635;2130;1311;232;824;584;2329;1812;2770.56;5497;2072
-89;'320;Guatemala;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3526;3328;518;492;508;740;934;1651;2563;2124;1896;984;3822;2090;1174;905;1373;958;155;647;544;1930;1405;2596.26;6278;2209
-89;'320;Guatemala;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18958;17800;12000;4600;5236;9956;14645;8328;11810;14737;21427;13685;14294;27955;24462;30449;36892;30858;36578;42448;36008;39527;33832;44914.84;54019;50326
-89;'320;Guatemala;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20566;16090;10161;5610;7257;9868;9079;13137;17265;23846;35385;27289;35959;30100;22361;27845;22145;30070;40404;47880;44107;65517;58842;75511.7;107198;84899
-89;'320;Guatemala;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;520;841;1334;1893;3260;4322;10515;8073;10222;6647;7839;7676;4378;3640;4289;5127;7545;8584;9751.97;12654;8986
-89;'320;Guatemala;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;432;508;876;1438;2285;2617;4183;5126;6522;5977;6691;7137;3132;2607;2948;3570;5271;5885;8050.47;14132;9166
-89;'320;Guatemala;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19600;26000;21690;17155;31385;24771;23614;35327;38066;28432;30599;24690;23716;19919;23176;20722;24576;28724;31588;31917;29332;35565.71;43631;34175
-89;'320;Guatemala;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15935;17053;17610;16062;19459;19907;19512;31081;36880;28558;17559;24618;22128;27724;30868;21280;21794;25480;31611;38242;28925;36938.9;62017;49071
-89;'320;Guatemala;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;930;2825;2132;1765;2814;3116;1768;2497;3967;3768;4300;6271;1875;2494;3225;2212;17167;12525;5968.7;7663;4251
-89;'320;Guatemala;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;955;1023;1707;1648;1410;2369;2665;1409;1378;2059;1335;1580;2528;1725;1935;2555;2091;9624;5823;4469.49;9056;4669
-89;'320;Guatemala;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1400;1527;2119;5557;508;180;67;458;1757;1072;1072;823;822;773;729;627;684;951;818;698;477;447;669
-89;'320;Guatemala;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182;837;788;1141;3445;526;153;47;464;1320;1185;1185;887;901;777;759;669;801;901;821;654;484;613;752
-89;'320;Guatemala;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4710;28;83;6;35;7;24;1735;2057;2057;1418;1053;1527;1780;628;1936;1843;1490;1545;1470;1320;1389
-89;'320;Guatemala;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1322;10;50;15;37;5;11;1421;1562;1562;1045;822;1146;1500;571;1263;1365;1134;1135;1143.76;1283;1146
-89;'320;Guatemala;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;3900;3600;6200;6200;1400;5600;5600;5600;5600;8200;8200;5000;2000;3000;4000;1000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-89;'320;Guatemala;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1100;1400;700;700;2600;3100;6300;10300;11700;9700;10300;18100;6400;7900;6500;6000;5900;3400;11400;2300;200;300;300;200;100;15200;15200;19100;13500;14000;14000;18000;8300;6500;18600;0;0;0;0;6000;7900;9133;12217;17231;12632;418;331;725;354;568;244;254;83;590;76;68;46;73;95;311;91;91;295
-89;'320;Guatemala;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;463;378;157;157;971;1100;1925;2657;2784;2791;2727;4406;2880;4158;3400;3100;3178;2853;13067;1707;415;470;360;244;243;15682;15682;19534;15533;15533;14000;16000;11419;11420;25243;0;0;0;0;9084;11539;12414;15056;16369;17496;1516;1283;1770;1518;919;986;1288;504;1117;478;435;433;503;534;609;705.24;668;946
-89;'320;Guatemala;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;200;200;200;200;200;1100;1200;1000;1200;1500;1600;1800;100;3000;2800;3100;3400;3200;3100;2300;5000;2000;3000;4000;1000;4200;4200;5800;5900;5900;5700;3795;1400;100;200;0;0;0;0;3000;4000;4063;5986;6343;6046;5121;7985;5107;3836;16;6;15;63;4;3;66;7;24;81;16;61;7;4
-89;'320;Guatemala;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;23;21;21;21;21;271;310;240;334;389;386;594;55;1335;1487;1713;1851;1970;2385;3414;7422;2969;4453;5466;1484;4422;4422;5806;5704;5700;3745;2012;843;115;490;0;0;0;0;1677;2080;2817;5505;6977;5284;5736;6893;7225;7119;55;21;74;240;8;12;39;14;97;55;19;53;16;8
-89;'320;Guatemala;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49267;54772;52811;41846;74969;77071;70061
-89;'320;Guatemala;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98049;101049;104009;93290;108306;95843;66419
-89;'320;Guatemala;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;467;406;401;334;631;983
-89;'320;Guatemala;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;251;183;170;474;632;654
-89;'320;Guatemala;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;235;95;164;82;109;450
-89;'320;Guatemala;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;18;98;148;196;129
-89;'320;Guatemala;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;232;311;237;252;522;533
-89;'320;Guatemala;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;250;165;72;326;436;525
-89;'320;Guatemala;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1899;3980;2934;2890;6208;15540;5938
-89;'320;Guatemala;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29231;36565;50453;42661;31944;47615;20528
-89;'320;Guatemala;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1477;1336;1664;1568;2121;2565;2505
-89;'320;Guatemala;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352;953;886;895;1164;1443;980
-89;'320;Guatemala;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3877;6654;6970;4090;6424;3865;4133
-89;'320;Guatemala;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50027;50208;39136;36003;49703;17912;15452
-89;'320;Guatemala;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;45
-89;'320;Guatemala;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;33
-89;'320;Guatemala;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-89;'320;Guatemala;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-89;'320;Guatemala;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70
-89;'320;Guatemala;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;98
-89;'320;Guatemala;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36293;37195;35721;28309;53715;48239;50304
-89;'320;Guatemala;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13595;8647;8794;7794;14576;16650;18007
-89;'320;Guatemala;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;1615;647;352;315;252;54
-89;'320;Guatemala;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;42;21;21;125;0;8
-89;'320;Guatemala;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4618;3525;4469;4236;5852;5979;6144
-89;'320;Guatemala;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690;4383;4536;5746;10320;11591;10790
-89;'320;Guatemala;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197569;199984;205035;168668;227116;290603;272804
-89;'320;Guatemala;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243049;259156;298661;319183;326097;379689;422270
-89;'320;Guatemala;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;236;267;207;273;463;350
-89;'320;Guatemala;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1888;2779;3198;2368;2675;2871;2941
-89;'320;Guatemala;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21008;19707;22457;18819;23554;28495;30387
-89;'320;Guatemala;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2242;1936;1911;2197;3236;3644;4181
-89;'320;Guatemala;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86090;81955;81526;64276;70111;79650;86256
-89;'320;Guatemala;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59309;59765;78151;97258;108291;112800;155958
-89;'320;Guatemala;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42010;45842;47444;45053;77180;113708;84757
-89;'320;Guatemala;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140090;153540;173499;180226;167148;210884;200843
-89;'320;Guatemala;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48220;52244;53341;40313;55998;68287;71054
-89;'320;Guatemala;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39520;41136;41902;37134;44747;49490;58347
-90;'324;Guinea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51921;56312;65952;73415;81125;98457;121300
-90;'324;Guinea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22338;4854;3439;2559;2336;2509;13872
-90;'324;Guinea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1700;1300;1300;1300;1056;1056;1056;1056;1056;1081;974;2922;2880;3397;3351;4523;5860;6291;4542;4542;4542;4542;4542;3402;3402;3402;3402;5605;5498;4049;9794;9913;10942;6866;6675;5810;7331;7620;22774;24903;22728;15937;27500
-90;'324;Guinea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;2755;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;;1200;1400;1400;1400;800;800;800;800;800;3006;2816;4303;2050;6329;4236;5706;11425;8591;6024;6024;6024;7242;7466;8236;8236;8236;8236;32853;11697;64999;24096;7416;2591;8316;8041;34551;20944;3571;2654;2033;1964;2175;13793
-90;'324;Guinea;1861;Roundwood;5516;Production;m3;8995033;8981804;8966617;8998473;8984370;9011310;9018292;9005315;8992380;8998487;8999960;9037992;9038747;8963188;8932039;8814017;8888897;8838062;8894804;8870828;8996384;9076682;9293150;9459500;9801417;9835762;9911854;9967752;10154687;10425241;10865439;8207000;8319000;8555000;12602290;12677683;8651000;8650000;12226899;12095377;12140757;12187722;12236288;12286470;12338298;12389441;12442200;12496500;12552398;12609951;12661208;12714046;12768481;12824531;12882215;12917165;12953556;12991396;13030696;13071467;13115300;13160605;13207394
-90;'324;Guinea;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;262;315;315;0;0;0;886;886;0;0;0;0;0;697;697;697;697;365;365;69;69;1;278;180;844;4;133;418;619;219;113;96;24
-90;'324;Guinea;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;33;20;20;0;0;0;168;168;0;0;0;0;0;46;46;46;46;238;238;84;84;11;42;103;527;6;79;199;0;22;72;27;3
-90;'324;Guinea;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;10200;13900;13900;13900;8000;8000;8000;8000;8000;12873;14828;21221;8543;27837;13200;30600;43000;33000;31700;31700;31700;31700;31700;22988;22988;22988;22988;15327;17656;149501;51004;9715;4193;9004;10084;134650;25719;745;47;729;319;679;22633
-90;'324;Guinea;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;1200;1400;1400;1400;800;800;800;800;800;3006;2816;4084;1955;6105;3975;5378;11069;8422;5991;5991;5991;5991;5991;1907;1907;1907;1907;12728;7216;58421;19332;5441;1636;3886;2813;25491;16137;417;34;229;141;224;11397
-90;'324;Guinea;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;98;619;219;111;0;0
-90;'324;Guinea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;0;22;71;0;0
-90;'324;Guinea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-90;'324;Guinea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-90;'324;Guinea;1863;Roundwood, non-coniferous;5516;Production;m3;8995033;8981804;8966617;8998473;8984370;9011310;9018292;9005315;8992380;8998487;8999960;9037992;9038747;8963188;8932039;8814017;8888897;8838062;8894804;8870828;8996384;9076682;9293150;9459500;9801417;9835762;9911854;9967752;10154687;10425241;10865439;8207000;8319000;8555000;12602290;12677683;8651000;8650000;12226899;12095377;12140757;12187722;12236288;12286470;12338298;12389441;12442200;12496500;12552398;12609951;12661208;12714046;12768481;12824531;12882215;12917165;12953556;12991396;13030696;13071467;13115300;13160605;13207394
-90;'324;Guinea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;320;0;0;2;96;24
-90;'324;Guinea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;163;0;0;1;27;3
-90;'324;Guinea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25719;745;47;729;319;679;22633
-90;'324;Guinea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16137;417;34;229;141;224;11397
-90;'324;Guinea;1864;Wood fuel;5516;Production;m3;8738033;8718804;8699617;8680473;8661370;8642310;8623292;8604315;8585380;8566487;8553960;8577992;8575747;8497188;8463039;8341017;8411897;8357062;8408804;8379828;8499384;8572682;8782150;8940500;9273417;9339762;9407854;9454752;9629687;9884241;10305439;7625000;7715000;7931000;11933290;12000683;7980000;8000000;11575899;11444377;11489757;11536722;11585288;11635470;11687298;11738441;11791200;11845500;11901398;11958951;12010208;12063046;12117481;12173531;12231215;12266165;12302556;12340396;12379696;12420467;12464300;12509605;12556394
-90;'324;Guinea;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;;;;;;;
-90;'324;Guinea;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;1;;;;;;;
-90;'324;Guinea;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1628;Wood fuel, non-coniferous;5516;Production;m3;8738033;8718804;8699617;8680473;8661370;8642310;8623292;8604315;8585380;8566487;8553960;8577992;8575747;8497188;8463039;8341017;8411897;8357062;8408804;8379828;8499384;8572682;8782150;8940500;9273417;9339762;9407854;9454752;9629687;9884241;10305439;7625000;7715000;7931000;11933290;12000683;7980000;8000000;11575899;11444377;11489757;11536722;11585288;11635470;11687298;11738441;11791200;11845500;11901398;11958951;12010208;12063046;12117481;12173531;12231215;12266165;12302556;12340396;12379696;12420467;12464300;12509605;12556394
-90;'324;Guinea;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;;;;;;;
-90;'324;Guinea;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;1;;;;;;;
-90;'324;Guinea;1865;Industrial roundwood;5516;Production;m3;257000;263000;267000;318000;323000;369000;395000;401000;407000;432000;446000;460000;463000;466000;469000;473000;477000;481000;486000;491000;497000;504000;511000;519000;528000;496000;504000;513000;525000;541000;560000;582000;604000;624000;669000;677000;671000;650000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000
-90;'324;Guinea;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;262;315;315;0;0;0;886;886;0;0;0;0;0;697;697;697;697;365;365;69;69;1;278;180;844;4;133;418;619;219;113;96;24
-90;'324;Guinea;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;33;20;20;0;0;0;168;168;0;0;0;0;0;46;46;46;46;238;238;84;84;11;42;103;527;6;79;199;0;22;72;27;3
-90;'324;Guinea;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;10200;13900;13900;13900;8000;8000;8000;8000;8000;12873;14828;21221;8543;27837;13200;30600;43000;33000;31700;31700;31700;31700;31700;22988;22988;22988;22988;15327;17656;149501;51000;9711;4189;9000;10080;134646;25719;745;47;729;319;679;22633
-90;'324;Guinea;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;1200;1400;1400;1400;800;800;800;800;800;3006;2816;4084;1955;6105;3975;5378;11069;8422;5991;5991;5991;5991;5991;1907;1907;1907;1907;12728;7216;58421;19332;5441;1636;3885;2812;25490;16137;417;34;229;141;224;11397
-90;'324;Guinea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;262;315;315;0;0;0;886;886;0;0;0;0;0;249;249;249;249;249;249;0;0;0;0;149;837;0;0;98;619;219;111;0;0
-90;'324;Guinea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;33;20;20;0;0;0;168;168;0;0;0;0;0;15;15;15;15;15;15;0;0;0;0;76;514;0;0;36;0;22;71;0;0
-90;'324;Guinea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;31;0;50;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;262;315;315;0;0;0;886;886;0;0;0;0;0;249;249;249;249;249;249;0;0;0;0;149;837;0;0;98;619;219;111;0;0
-90;'324;Guinea;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;33;20;20;0;0;0;168;168;0;0;0;0;0;15;15;15;15;15;15;0;0;0;0;76;514;0;0;36;0;22;71;0;0
-90;'324;Guinea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;31;0;50;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;257000;263000;267000;318000;323000;369000;395000;401000;407000;432000;446000;460000;463000;466000;469000;473000;477000;481000;486000;491000;497000;504000;511000;519000;528000;496000;504000;513000;525000;541000;560000;582000;604000;624000;669000;677000;671000;650000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000;651000
-90;'324;Guinea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;448;448;448;448;116;116;69;69;1;278;31;7;4;133;320;0;0;2;96;24
-90;'324;Guinea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;31;31;31;31;223;223;84;84;11;42;27;13;6;79;163;0;0;1;27;3
-90;'324;Guinea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12873;14828;21221;8543;27837;13200;30600;43000;33000;31700;31700;31700;31700;31700;22988;22988;22988;22988;15327;17656;149501;51000;9711;4189;9000;10080;134646;25719;745;47;729;319;679;22633
-90;'324;Guinea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3006;2816;4084;1955;6105;3975;5378;11069;8422;5991;5991;5991;5991;5991;1907;1907;1907;1907;12728;7216;58413;19301;5441;1586;3885;2812;25490;16137;417;34;229;141;224;11397
-90;'324;Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;68;68;68;68;0;0;25;7;4;23;0;0;0;0;0;0
-90;'324;Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;73;73;73;73;0;0;26;13;6;30;0;0;0;0;0;0
-90;'324;Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12873;14828;21221;8543;27837;13200;30600;43000;33000;31700;31700;31700;31700;31700;6337;6337;6337;6337;15327;17656;149501;51000;9711;4189;9000;10080;134646;25719;745;47;729;319;679;22633
-90;'324;Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3006;2816;4084;1955;6105;3975;5378;11069;8422;5991;5991;5991;5991;5991;925;925;925;925;12728;7216;58413;19301;5441;1586;3885;2812;25490;16137;417;34;229;141;224;11397
-90;'324;Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;435;435;435;435;48;48;1;1;1;278;6;0;0;110;320;0;0;2;96;24
-90;'324;Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;29;29;29;29;150;150;11;11;11;42;1;0;0;49;163;0;0;1;27;3
-90;'324;Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;16651;16651;16651;16651;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;982;982;982;982;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-90;'324;Guinea;1868;Sawlogs and veneer logs;5516;Production;m3;34000;35000;35000;80000;80000;120000;140000;140000;140000;160000;170000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;140000;140000;140000;140000;140000;140000;140000;140000;140000;170000;170000;160000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000
-90;'324;Guinea;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;10200;13900;13900;13900;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;1200;1400;1400;1400;800;800;800;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;34000;35000;35000;80000;80000;120000;140000;140000;140000;160000;170000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;140000;140000;140000;140000;140000;140000;140000;140000;140000;170000;170000;160000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000
-90;'324;Guinea;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;10200;13900;13900;13900;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;1200;1400;1400;1400;800;800;800;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1871;Other industrial roundwood;5516;Production;m3;223000;228000;232000;238000;243000;249000;255000;261000;267000;272000;276000;280000;283000;286000;289000;293000;297000;301000;306000;311000;317000;324000;331000;339000;348000;356000;364000;373000;385000;401000;420000;442000;464000;484000;499000;507000;511000;512000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000
-90;'324;Guinea;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;223000;228000;232000;238000;243000;249000;255000;261000;267000;272000;276000;280000;283000;286000;289000;293000;297000;301000;306000;311000;317000;324000;331000;339000;348000;356000;364000;373000;385000;401000;420000;442000;464000;484000;499000;507000;511000;512000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000;513000
-90;'324;Guinea;1630;Wood charcoal;5510;Production;t;94383;95807;97252;98719;100208;101720;103254;104812;106393;107998;109386;111798;113843;114387;115865;115260;119292;120316;123813;125440;130845;135034;142899;149721;161846;166395;171303;175496;183001;192316;205697;30000;57000;66000;22000;269156;30000;36000;274528;276593;283205;289976;296908;304007;311275;318362;325600;333025;340608;348363;356011;363827;371815;379978;388320;395907;403642;411528;419569;427766;436043;444480;453080
-90;'324;Guinea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;3;3;30;30;8;28;28;45;83;199;29;30;438
-90;'324;Guinea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;2;2;16;16;5;29;29;47;151;174;91;65;225
-90;'324;Guinea;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;105;105;105;19;49;26;811;811;811;33;54;1;2;2;101
-90;'324;Guinea;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;22;9;24;14;382;382;382;20;36;1;2;2;16
-90;'324;Guinea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;11;11;11;34;34;13;13;13;13;13;13;2
-90;'324;Guinea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;5;5;5;18;18;6;6;6;6;6;6;4
-90;'324;Guinea;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5535
-90;'324;Guinea;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556
-90;'324;Guinea;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;2;2;2;2;2;2;1
-90;'324;Guinea;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;1;1;1;1;1;1;4
-90;'324;Guinea;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5535
-90;'324;Guinea;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556
-90;'324;Guinea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;11;11;11;11;11;11;11;11;11;11;11;1
-90;'324;Guinea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;5;5;5;5;5;5;5;5;5;5;5;0
-90;'324;Guinea;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1872;Sawnwood;5516;Production;m3;17000;18000;18000;40000;40000;60000;67000;70000;70000;80000;85000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;70000;70000;70000;70000;70000;70000;62500;65000;72000;85000;85000;25000;26000;26000;26000;26000;26000;26000;26000;26000;26000;30000;30000;30000;30000;30000;30000;30000;30000;31000;31000;31000;31000;31000;31000;31000;31000;31000
-90;'324;Guinea;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;1700;1300;1300;1300;1100;1100;1100;1100;1100;1100;600;4160;2608;2400;2500;2600;1702;1702;1100;1100;1100;1100;1100;211;211;211;211;135;184;54;86;158;1646;1699;380;1085;559;521;1083;1085;411;565;174
-90;'324;Guinea;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;400;300;300;300;265;265;265;265;265;265;150;294;398;497;555;432;444;444;283;283;283;283;283;41;41;41;41;69;97;25;46;248;510;457;136;237;139;200;399;439;227;190;58
-90;'324;Guinea;1872;Sawnwood;5916;Export quantity;m3;;;;;;34000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;;;;;;;;;;;;;626;285;700;1000;1100;400;700;150;150;150;4021;2583;8524;8524;8524;8524;24630;2052;6467;4397;1728;45;1777;1753;9794;2734;2263;1131;981;1034;1648;1678
-90;'324;Guinea;1872;Sawnwood;5922;Export value;1000 USD;;;;;;2755;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;;;;;;;;;;;;;219;95;224;261;328;90;169;33;33;33;1251;1475;4984;4984;4984;4984;15087;1811;3589;2559;1178;74;2218;2137;5351;1832;596;713;643;571;957;957
-90;'324;Guinea;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000
-90;'324;Guinea;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4145;2591;2400;2500;2500;1696;1696;1100;1100;1100;1100;1100;183;183;183;183;36;160;50;73;10;1470;1686;319;1065;555;447;1079;1040;409;564;174
-90;'324;Guinea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;380;497;555;419;442;442;283;283;283;283;283;32;32;32;32;24;78;21;32;138;414;425;103;213;137;126;399;393;201;190;58
-90;'324;Guinea;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;;500;500;0;0;0;0;0;0;0;0;847;847;847;847;280;280;0;177;0;0;0;31;0;91;0;0;0;0;43;73
-90;'324;Guinea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;96;96;0;0;0;0;0;0;0;0;141;141;141;141;136;136;0;86;0;25;0;8;0;45;0;4;0;3;30;30
-90;'324;Guinea;1633;Sawnwood, non-coniferous;5516;Production;m3;17000;18000;18000;40000;40000;60000;67000;70000;70000;80000;85000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;70000;70000;70000;70000;70000;70000;62500;65000;72000;85000;85000;25000;26000;26000;26000;26000;26000;26000;26000;26000;26000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-90;'324;Guinea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;1700;1300;1300;1300;1100;1100;1100;1100;1100;1100;600;15;17;0;0;100;6;6;0;0;0;0;0;28;28;28;28;99;24;4;13;148;176;13;61;20;4;74;4;45;2;1;0
-90;'324;Guinea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;400;300;300;300;265;265;265;265;265;265;150;11;18;0;0;13;2;2;0;0;0;0;0;9;9;9;9;45;19;4;14;110;96;32;33;24;2;74;0;46;26;0;0
-90;'324;Guinea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;34000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;;;;;;;;;;;;;588;285;200;500;1100;400;700;150;150;150;4021;2583;7677;7677;7677;7677;24350;1772;6467;4220;1728;45;1777;1722;9794;2643;2263;1131;981;1034;1605;1605
-90;'324;Guinea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;2755;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;3646;;;;;;;;;;;;;209;95;128;165;328;90;169;33;33;33;1251;1475;4843;4843;4843;4843;14951;1675;3589;2473;1178;49;2218;2129;5351;1787;596;709;643;568;927;927
-90;'324;Guinea;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2200;2200;2200;2200;2200;2200;2200;2200;2200;3000;3000;3000;3000;3000;3000;3000;3000;3000
-90;'324;Guinea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;3;2;49;193;21;203;93;21;4;0;0;0;42;34;5
-90;'324;Guinea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;46;17;104;313;131;177;47;76;3;0;2;23;28;85;12
-90;'324;Guinea;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;761;0;0;0;0;0;0;693;693;693;693;1180;428;1000;116;73;73;724;293;1123;670;1088;1081;598;406;214;86
-90;'324;Guinea;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;266;0;0;0;0;0;0;546;546;546;546;1370;503;1284;234;48;141;303;351;1223;547;1155;980;497;571;359;236
-90;'324;Guinea;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;45000;39600;39600;39600;39600;21000;21000;21000;21000;22000;22000;22000;22000;22000;22000;20562;20562;20562;20562
-90;'324;Guinea;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7157;4183;5471;5100;5900;6295;6595;5400;5400;5400;5400;5400;2182;2182;2182;2182;5778;2238;2107;9671;12278;13121;6136;3867;4124;4732;6930;16280;24947;18325;13322;22181
-90;'324;Guinea;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;1321;1766;1638;1740;2903;3053;1999;1999;1999;1999;1999;914;914;914;914;2095;1307;1133;4655;6307;6809;1645;2223;2028;1972;3181;7575;11303;8455;8419;12833
-90;'324;Guinea;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2245;2245;2245;2245;3099;2578;3271;2683;845;845;1838;3932;4062;4679;2596;1229;850;850;850;850
-90;'324;Guinea;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;736;736;736;736;3544;2021;1598;1618;422;398;1580;2043;1780;1762;1099;757;411;411;426;411
-90;'324;Guinea;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;45000;39600;39600;39600;39600;21000;21000;21000;21000;22000;22000;22000;22000;22000;22000;20562;20562;20562;20562
-90;'324;Guinea;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3283;1966;1946;1700;1800;3200;3500;2400;2400;2400;2400;2400;125;125;125;125;520;248;75;5279;9067;8360;983;1583;1214;3246;3373;6492;10856;9613;10420;13757
-90;'324;Guinea;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910;752;775;695;733;1689;1839;1014;1014;1014;1014;1014;45;45;45;45;389;412;155;2374;4645;4406;548;980;618;1236;1717;3698;5575;4363;6693;7223
-90;'324;Guinea;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2245;2245;2245;2245;3040;2519;3212;1220;34;34;1027;3121;3251;3868;1746;379;0;0;0;0
-90;'324;Guinea;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;736;736;736;736;3508;1985;1562;698;30;6;1188;1651;1388;1370;688;346;0;0;15;0
-90;'324;Guinea;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;69;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;15;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;373;373;0;0;0;0;0;0;0;0;0;52;74;76;76;90;83;127;6;3;30;30;294;1123;2408;1376;3150
-90;'324;Guinea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;467;467;0;0;0;0;0;0;0;0;0;118;92;77;53;69;104;246;6;3;77;77;167;385;1024;888;2804
-90;'324;Guinea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;12;12;23;10;3;149;119;0;0;35;0;33;50;1
-90;'324;Guinea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;5;5;68;23;17;140;115;0;0;15;0;80;54;2
-90;'324;Guinea;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39
-90;'324;Guinea;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19
-90;'324;Guinea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3785;2148;3525;3400;4100;2722;2722;3000;3000;3000;3000;3000;2057;2057;2057;2057;5202;1912;1944;4304;3098;4668;5023;2129;2788;1456;3527;9459;12968;6271;1476;5273
-90;'324;Guinea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037;554;991;943;1007;747;747;985;985;985;985;985;869;869;869;869;1584;799;896;2223;1525;2276;834;1097;1292;659;1387;3695;5343;2988;784;2804
-90;'324;Guinea;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;1463;811;811;811;811;811;811;811;811;811;811;811;811
-90;'324;Guinea;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;920;392;392;392;392;392;392;392;392;392;392;392;392
-90;'324;Guinea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;2682;2682;3000;3000;3000;3000;3000;1771;1771;1771;1771;3051;771;1285;3470;2746;4423;3338;2007;2398;1325;3335;6790;11771;5365;15;3507
-90;'324;Guinea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;914;742;742;985;985;985;985;985;822;822;822;822;611;278;557;1658;1283;2061;568;946;1024;573;1240;2952;4891;2521;16;1728
-90;'324;Guinea;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;750;750;750;750;750;750;750;750;750;750;750;750
-90;'324;Guinea;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;373;373;373;373;373;373;373;373;373;373
-90;'324;Guinea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;242;242;242;1850;1136;330;736;254;147;1663;100;368;105;167;640;1010;879;1336;1754
-90;'324;Guinea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;909;505;167;437;114;87;246;131;248;75;119;446;327;450;729;1048
-90;'324;Guinea;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;713;61;61;61;61;61;61;61;61;61;61;61;61
-90;'324;Guinea;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;547;19;19;19;19;19;19;19;19;19;19;19;19
-90;'324;Guinea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;3;400;1100;40;40;0;0;0;0;0;44;44;44;44;301;5;329;98;98;98;22;22;22;26;25;2029;187;27;125;12
-90;'324;Guinea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;1;29;93;5;5;0;0;0;0;0;6;6;6;6;64;16;172;128;128;128;20;20;20;11;28;297;125;17;39;28
-90;'324;Guinea;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3780;2137;3522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035;548;990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;100;130;30;0;0;0;0;0;16;16;16;16;9;359;364;364;364;118;119;60;15;26;125;175;323;677;2029;2359
-90;'324;Guinea;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;34;19;38;19;0;0;0;0;0;9;9;9;9;4;51;90;90;90;78;84;66;46;19;100;101;169;416;2483;2132
-90;'324;Guinea;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;24;24;24;24;24;24;24;24;24;17;17
-90;'324;Guinea;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;3;3;3;3;3;3;3;3;1;1
-90;'324;Guinea;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;30;0;0;0;0;0;16;16;16;16;9;9;14;14;14;14;15;18;12;24;123;155;303;657;2029;2359
-90;'324;Guinea;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;19;19;0;0;0;0;0;9;9;9;9;4;4;43;43;43;43;49;57;45;19;100;97;166;413;2483;2132
-90;'324;Guinea;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;30;0;0;0;0;0;8;8;8;8;21;21;26;26;26;26;27;30;24;36;135;38;242;213;1944;2270
-90;'324;Guinea;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;19;19;0;0;0;0;0;3;3;3;3;11;11;50;50;50;50;56;64;52;26;107;29;136;167;2347;2069
-90;'324;Guinea;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;5;;;;;;;
-90;'324;Guinea;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;0;0;0;0;0;0;0;0;0;39;39;39;39;39;39;39;;;;;;;
-90;'324;Guinea;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-90;'324;Guinea;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-90;'324;Guinea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;9;12;6;23;122;25;229;200;1931;2257
-90;'324;Guinea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;9;17;5;18;99;21;128;159;2339;2061
-90;'324;Guinea;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;6;23;122;25;229;200;1931;2257
-90;'324;Guinea;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;5;18;99;21;128;159;2339;2061
-90;'324;Guinea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;0;;;;;;;
-90;'324;Guinea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14;0;;;;;;;
-90;'324;Guinea;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13
-90;'324;Guinea;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-90;'324;Guinea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;1;1;1;1;1;1;1;1;1;1;1;130;74;457;98;102
-90;'324;Guinea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;1;1;1;1;1;1;1;1;1;1;1;76;38;254;144;71
-90;'324;Guinea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;100;100;0;0;0;0;0;0;0;0;0;0;0;350;350;350;350;104;104;42;3;2;2;20;20;20;0;0
-90;'324;Guinea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;34;19;19;0;0;0;0;0;0;0;0;0;0;0;47;47;47;47;35;35;9;1;0;0;4;3;3;0;0
-90;'324;Guinea;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;24;24;24;24;24;24;24;24;24;17;17
-90;'324;Guinea;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;3;3;3;3;3;3;3;3;1;1
-90;'324;Guinea;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;1600;1200;1200;1200;600;600;600;600;600;600;600;415;1814;1283;900;1900;3004;3404;3950;3950;3950;3950;3950;3152;3152;3152;3152;2891;3006;2339;3780;2716;3383;5734;5338;3890;5894;3997;11814;8408;14317;2005;11931
-90;'324;Guinea;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1300;1000;1000;1000;791;791;791;791;791;791;791;636;1140;1031;1124;2332;2307;2607;2260;2260;2260;2260;2260;2392;2392;2392;2392;3103;3675;2616;4799;2929;3343;4371;3645;3362;5076;3879;14532;12759;13425;4654;12225
-90;'324;Guinea;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;105;105;105;105;170;170;103;691;662;662;655;655;677;460;460;153;166;134;124;134
-90;'324;Guinea;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;63;63;63;63;124;124;85;327;315;315;312;312;321;281;281;131;249;265;206;219
-90;'324;Guinea;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;232;294;252;200;100;2104;2204;2450;2450;2450;2450;2450;1071;1071;1071;1071;1556;1357;1455;2524;1698;2696;3745;3491;2580;3441;2285;7822;5195;9460;1095;6008
-90;'324;Guinea;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;261;453;286;468;202;1307;1307;1459;1459;1459;1459;1459;844;844;844;844;1336;1359;1504;3247;1917;2773;2847;2376;2282;3300;2560;11301;5006;9121;2324;7727
-90;'324;Guinea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;24;24;24;24;24;24;132;132;43;43;43;43;53
-90;'324;Guinea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;16;16;16;16;16;16;100;100;38;38;38;38;51
-90;'324;Guinea;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;2;;0;0;0;1700;1800;1800;1800;1800;1800;1800;4;4;4;4;183;183;52;31;46;46;619;955;17;40;16;191;17;254;1;152
-90;'324;Guinea;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;1;;0;0;0;800;800;800;800;800;800;800;2;2;2;2;131;131;27;33;46;46;318;530;12;30;9;169;20;190;4;159
-90;'324;Guinea;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;294;252;200;100;404;404;650;650;650;650;650;1067;1067;1067;1067;1373;1174;1403;2493;1652;2650;3126;2536;2563;3401;2269;7631;5178;9206;1094;5856
-90;'324;Guinea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;453;286;468;202;507;507;659;659;659;659;659;842;842;842;842;1205;1228;1477;3214;1871;2727;2529;1846;2270;3270;2551;11132;4986;8931;2320;7568
-90;'324;Guinea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;24;24;24;24;24;24;132;132;43;43;43;43;53
-90;'324;Guinea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;16;16;16;16;16;16;100;100;38;38;38;38;51
-90;'324;Guinea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;19;145;108;75;123;210;42;134;111;143;143;372;228;336;132;223
-90;'324;Guinea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;61;131;130;136;273;335;57;213;315;497;497;807;323;554;386;857
-90;'324;Guinea;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21
-90;'324;Guinea;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13
-90;'324;Guinea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;650;650;650;650;650;625;625;625;625;952;759;908;2049;1189;1962;2732;2045;2170;2829;1948;6799;4174;8100;503;5117
-90;'324;Guinea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;659;659;659;659;659;494;494;494;494;755;699;914;2579;1105;1843;2100;1339;1666;2378;1866;9524;3693;7124;643;6057
-90;'324;Guinea;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;0;0;0;0;10
-90;'324;Guinea;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;0;0;0;13
-90;'324;Guinea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;428;428;428;402;270;387;369;340;478;352;357;282;429;178;460;776;770;459;516
-90;'324;Guinea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;337;337;337;389;398;433;499;493;549;372;294;289;395;188;801;970;1253;1291;654
-90;'324;Guinea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;22;22;22;22;22;22;22
-90;'324;Guinea;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;25;25;25;25;25;25;25
-90;'324;Guinea;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;1600;1200;1200;1200;600;600;600;600;600;600;600;183;1520;1031;700;1800;900;1200;1500;1500;1500;1500;1500;2081;2081;2081;2081;1335;1649;884;1256;1018;687;1989;1847;1310;2453;1712;3992;3213;4857;910;5923
-90;'324;Guinea;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1300;1000;1000;1000;791;791;791;791;791;791;791;375;687;745;656;2130;1000;1300;801;801;801;801;801;1548;1548;1548;1548;1767;2316;1112;1552;1012;570;1524;1269;1080;1776;1319;3231;7753;4304;2330;4498
-90;'324;Guinea;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;105;105;105;105;167;167;100;667;638;638;631;631;653;328;328;110;123;91;81;81
-90;'324;Guinea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;63;63;63;63;121;121;82;311;299;299;296;296;305;181;181;93;211;227;168;168
-90;'324;Guinea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;39;31;50;32;90;48;87;373;60;126;86;148;123;148;123;212
-90;'324;Guinea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;80;56;100;80;96;142;156;301;178;196;116;358;222;242;315;401
-90;'324;Guinea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1328;1328;1328;1328;960;1452;725;1078;894;599;1612;1370;1235;2324;1621;3825;3083;4690;643;5663
-90;'324;Guinea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;824;824;824;1063;1260;691;1010;794;332;952;883;839;1546;1177;2721;7425;3949;1421;3827
-90;'324;Guinea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;105;105;105;105;161;161;94;449;420;420;413;413;435;110;110;110;110;78;68;68
-90;'324;Guinea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;63;63;63;63;96;96;57;223;211;211;208;208;217;93;93;93;93;95;36;36
-90;'324;Guinea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;548;548;548;537;872;261;603;627;215;492;1104;962;1998;1250;2987;1687;3677;117;4564
-90;'324;Guinea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;340;340;340;368;448;152;376;338;112;341;742;451;1053;723;1722;3048;2217;106;2245
-90;'324;Guinea;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;59;59;59;27;27;27
-90;'324;Guinea;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;7;7;7
-90;'324;Guinea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;388;388;388;324;514;381;364;181;343;126;169;161;247;36;243;200;290;338;386
-90;'324;Guinea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;241;241;241;611;726;464;484;294;151;87;60;176;396;75;510;638;758;969;959
-90;'324;Guinea;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;93;93;93;93;93;335;335;335;335;335;335;10;10;10;10;10;0;0
-90;'324;Guinea;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;56;56;183;183;183;183;183;183;59;59;59;59;59;0;0
-90;'324;Guinea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;387;387;387;91;58;75;94;79;25;992;93;108;75;333;593;1192;706;178;696
-90;'324;Guinea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;240;240;240;74;76;65;146;152;39;518;73;207;92;378;488;3738;943;339;563
-90;'324;Guinea;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;12;12;12;68;68;1;53;24;24;17;17;39;39;39;39;39;39;39;39
-90;'324;Guinea;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;7;7;7;7;40;40;1;28;16;16;13;13;22;22;22;22;22;22;22;22
-90;'324;Guinea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;8;8;8;17;7;16;2;4;4;4;2;2;4;17;10;17
-90;'324;Guinea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;10;10;10;4;10;30;6;8;5;5;1;1;1;31;7;60
-90;'324;Guinea;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2
-90;'324;Guinea;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7
-90;'324;Guinea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1500;1500;1500;1500;1500;690;690;690;690;336;166;109;146;34;40;290;104;15;3;5;19;7;19;144;48
-90;'324;Guinea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;801;801;801;801;801;656;656;656;656;624;1000;321;462;122;96;416;85;63;34;26;152;106;113;594;270
-90;'324;Guinea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;218;218;218;218;218;218;218;218;0;13;13;13;13
-90;'324;Guinea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;88;88;88;88;88;88;88;88;0;118;132;132;132
-90;'324;Guinea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17313;14982;11449;10539;15411;32502;44586
-90;'324;Guinea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;154;526;437;196;315;37
-90;'324;Guinea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;47;150;3;51;33;263
-90;'324;Guinea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;30;347;230;148;148;0
-90;'324;Guinea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;32;77;0;1;20;251
-90;'324;Guinea;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;4;344;0;0;0;0
-90;'324;Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;15;73;3;50;13;12
-90;'324;Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;26;3;230;148;148;0
-90;'324;Guinea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;28;93;69;336;346;394
-90;'324;Guinea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;25;7;0;0;0
-90;'324;Guinea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;68;51;52;194;39;111
-90;'324;Guinea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;29;27;8;32;24;16
-90;'324;Guinea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3526;1971;1710;2053;1617;3305;4649
-90;'324;Guinea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;34;5;4;15
-90;'324;Guinea;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-90;'324;Guinea;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-90;'324;Guinea;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12
-90;'324;Guinea;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16
-90;'324;Guinea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12720;12424;9164;8018;11463;27709;37881
-90;'324;Guinea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;60;119;158;11;139;6
-90;'324;Guinea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;24;57;20;42;4;967
-90;'324;Guinea;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-90;'324;Guinea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;420;224;324;1708;1066;321
-90;'324;Guinea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;9;7;0;0;0;0
-90;'324;Guinea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27277;33710;31729;37973;42986;50018;49214
-90;'324;Guinea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1113;1129;259;89;176;19;42
-90;'324;Guinea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;1;43;54;0;4
-90;'324;Guinea;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7
-90;'324;Guinea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;652;426;428;769;2076;855
-90;'324;Guinea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;3;3;0;0;0
-90;'324;Guinea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2505;2533;2946;2549;3581;3522;4186
-90;'324;Guinea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;151;1;1;1;0;0
-90;'324;Guinea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13978;18759;15537;20628;25003;26467;29212
-90;'324;Guinea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;693;1;78;145;1;32
-90;'324;Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10528;11763;12819;14325;13579;17953;14957
-90;'324;Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;104;247;0;23;11;3
-175;'624;Guinea-Bissau;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2323;3051;12909;6314;8822;10056;9362
-175;'624;Guinea-Bissau;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;8154;8913;460;517;608;458
-175;'624;Guinea-Bissau;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;27;27;27;27;27;27;27;27;27;53;70;87;88;88;98;98;98;98;98;98;130;310;310;310;310;200;200;200;200;200;200;404;518;208;186;186;300;155;176;125;125;184;199;356;356;536;948;1042;922;835;1349;2528;3194;1139;870;1010;809;1173;4685;1247;3508;2583;1584
-175;'624;Guinea-Bissau;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;300;286;276;57;64;59;50;63;84;90;88;130;130;130;130;130;130;130;130;130;500;350;350;350;350;498;940;895;674;1562;2628;1925;1192;1081;4648;5059;2182;2083;610;1013;1013;931;719;885;885;873;1072;1964;1884;4078;4681;7183;685;50497;18197;686;717;8148;8905;460;516;597;457
-175;'624;Guinea-Bissau;1861;Roundwood;5516;Production;m3;484000;488000;493000;482000;482000;836796;874921;916087;959402;1005977;1042442;1073704;1115668;1165817;1215801;1281546;1387357;1440533;1519466;1655300;1668181;1709875;1764734;1779713;1812098;1838037;1870092;1912158;1947933;1990190;2019255;2027555;2044255;2056285;2089185;2113108;2142275;2211352;2288122;2364018;2403414;2439978;2474894;2508669;2544171;2584499;2625845;2654976;2693189;2731864;2769266;2807102;2845377;2884099;2923273;2957065;2991181;3025626;3025626;3095525;3130205;3165226;3200594
-175;'624;Guinea-Bissau;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;41;41;41;41;41;43;0;0;47;6;0;0;0;91;36
-175;'624;Guinea-Bissau;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;7;5;5;5;5;16;0;0;14;2;0;0;0;29;13
-175;'624;Guinea-Bissau;1861;Roundwood;5916;Export quantity;m3;17700;16300;18300;4100;2200;;;;;;;;;;;;;;;;;;;;;2286;4828;3676;3446;5850;11351;9025;5275;4501;15695;16495;8988;11389;2892;6547;6547;6547;25002;6961;6961;6961;6961;1663;1433;14503;14043;16801;0;134000;63278;553;243;10153;9710;0;0;0;0
-175;'624;Guinea-Bissau;1861;Roundwood;5922;Export value;1000 USD;177;167;186;43;24;;;;;;;;;;;;;;;;;;;;;275;831;677;558;1237;2303;1720;880;1064;4309;4720;1682;1920;512;898;898;898;686;823;823;823;823;1827;1712;3901;4219;6111;0;49928;17621;160;191;7622;8232;0;0;0;0
-175;'624;Guinea-Bissau;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;0;0;91;36
-175;'624;Guinea-Bissau;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;29;13
-175;'624;Guinea-Bissau;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1863;Roundwood, non-coniferous;5516;Production;m3;484000;488000;493000;482000;482000;836796;874921;916087;959402;1005977;1042442;1073704;1115668;1165817;1215801;1281546;1387357;1440533;1519466;1655300;1668181;1709875;1764734;1779713;1812098;1838037;1870092;1912158;1947933;1990190;2019255;2027555;2044255;2056285;2089185;2113108;2142275;2211352;2288122;2364018;2403414;2439978;2474894;2508669;2544171;2584499;2625845;2654976;2693189;2731864;2769266;2807102;2845377;2884099;2923273;2957065;2991181;3025626;3025626;3095525;3130205;3165226;3200594
-175;'624;Guinea-Bissau;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;0
-175;'624;Guinea-Bissau;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0
-175;'624;Guinea-Bissau;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;10153;9710;0;0;0;0
-175;'624;Guinea-Bissau;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;7622;8232;0;0;0;0
-175;'624;Guinea-Bissau;1864;Wood fuel;5516;Production;m3;390000;390000;395000;395000;395000;749796;788921;830087;873402;918977;944442;973704;1013668;1060817;1107801;1169546;1271357;1320533;1395466;1528300;1539181;1578875;1632734;1645713;1677098;1728226;1757324;1788799;1827028;1872303;1888264;1905460;1922064;1924656;1953202;1983765;2009430;2081376;2154199;2229507;2264964;2300849;2337169;2373929;2411133;2447999;2485308;2523066;2561279;2599954;2637356;2675192;2713467;2752189;2791363;2825155;2859271;2893716;2893716;2963615;2998295;3033316;3068684
-175;'624;Guinea-Bissau;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-175;'624;Guinea-Bissau;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-175;'624;Guinea-Bissau;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1628;Wood fuel, non-coniferous;5516;Production;m3;390000;390000;395000;395000;395000;749796;788921;830087;873402;918977;944442;973704;1013668;1060817;1107801;1169546;1271357;1320533;1395466;1528300;1539181;1578875;1632734;1645713;1677098;1728226;1757324;1788799;1827028;1872303;1888264;1905460;1922064;1924656;1953202;1983765;2009430;2081376;2154199;2229507;2264964;2300849;2337169;2373929;2411133;2447999;2485308;2523066;2561279;2599954;2637356;2675192;2713467;2752189;2791363;2825155;2859271;2893716;2893716;2963615;2998295;3033316;3068684
-175;'624;Guinea-Bissau;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-175;'624;Guinea-Bissau;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-175;'624;Guinea-Bissau;1865;Industrial roundwood;5516;Production;m3;94000;98000;98000;87000;87000;87000;86000;86000;86000;87000;98000;100000;102000;105000;108000;112000;116000;120000;124000;127000;129000;131000;132000;134000;135000;109811;112768;123359;120905;117887;130991;122095;122191;131629;135983;129343;132845;129976;133923;134511;138450;139129;137725;134740;133038;136500;140537;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910
-175;'624;Guinea-Bissau;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;41;41;41;41;41;43;0;0;47;6;0;0;0;91;36
-175;'624;Guinea-Bissau;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;7;5;5;5;5;16;0;0;14;2;0;0;0;29;13
-175;'624;Guinea-Bissau;1865;Industrial roundwood;5916;Export quantity;m3;17700;16300;18300;4100;2200;;;;;;;;;;;;;;;;;;;;;2286;4828;3676;3446;5850;11351;9025;5275;4501;15695;16495;8988;11389;2892;6547;6547;6547;25002;6961;6961;6961;6961;1663;1433;14503;14043;16801;0;134000;63278;553;243;10153;9710;0;0;0;0
-175;'624;Guinea-Bissau;1865;Industrial roundwood;5922;Export value;1000 USD;177;167;186;43;24;;;;;;;;;;;;;;;;;;;;;275;831;677;558;1237;2303;1720;880;1064;4309;4720;1682;1920;512;898;898;898;686;823;823;823;823;1827;1712;3901;4219;6111;0;49928;17621;160;191;7622;8232;0;0;0;0
-175;'624;Guinea-Bissau;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;35;35;35;35;35;0;0;47;0;0;0;0;91;36
-175;'624;Guinea-Bissau;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;14;0;0;0;0;29;13
-175;'624;Guinea-Bissau;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;35;35;35;35;35;0;0;47;0;0;0;0;91;36
-175;'624;Guinea-Bissau;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;14;0;0;0;0;29;13
-175;'624;Guinea-Bissau;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;501;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1867;Industrial roundwood, non-coniferous;5516;Production;m3;94000;98000;98000;87000;87000;87000;86000;86000;86000;87000;98000;100000;102000;105000;108000;112000;116000;120000;124000;127000;129000;131000;132000;134000;135000;109811;112768;123359;120905;117887;130991;122095;122191;131629;135983;129343;132845;129976;133923;134511;138450;139129;137725;134740;133038;136500;140537;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910;131910
-175;'624;Guinea-Bissau;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;8;0;0;0;6;0;0;0;0;0
-175;'624;Guinea-Bissau;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;16;0;0;0;2;0;0;0;0;0
-175;'624;Guinea-Bissau;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5850;11351;9025;4774;4000;15194;15994;8487;10888;2391;6046;6046;6046;24501;6460;6460;6460;6460;1162;932;14503;14043;16801;0;134000;63278;553;243;10153;9710;0;0;0;0
-175;'624;Guinea-Bissau;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1237;2303;1720;804;988;4233;4644;1606;1844;436;822;822;822;610;747;747;747;747;1751;1636;3901;4219;6111;0;49928;17621;160;191;7622;8232;0;0;0;0
-175;'624;Guinea-Bissau;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;6;0;0;0;0;0
-175;'624;Guinea-Bissau;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;0;0;0;0
-175;'624;Guinea-Bissau;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5850;11351;9025;4774;4000;4000;4800;797;7833;1356;1356;1356;1356;19811;4206;4206;4206;4206;559;329;121;644;448;0;134000;63278;553;243;10153;9710;0;0;0;0
-175;'624;Guinea-Bissau;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1237;2303;1720;804;988;988;1399;80;1175;240;240;240;240;28;614;614;614;614;282;167;49;215;163;0;49928;17621;160;191;7622;8232;0;0;0;0
-175;'624;Guinea-Bissau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;8;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;16;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11194;11194;7690;3055;1035;4690;4690;4690;4690;2254;2254;2254;2254;603;603;14382;13399;16353;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3245;3245;1526;669;196;582;582;582;582;133;133;133;133;1469;1469;3852;4004;5948;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1868;Sawlogs and veneer logs;5516;Production;m3;35000;40000;40000;30000;30000;30000;30000;30000;30000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;12811;13768;22359;17905;12887;21991;11095;9191;15629;16983;8343;8845;2976;3923;4511;8450;9129;7725;4740;3038;6500;10537;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910
-175;'624;Guinea-Bissau;1868;Sawlogs and veneer logs;5916;Export quantity;m3;17700;16300;18300;4100;2200;;;;;;;;;;;;;;;;;;;;;2286;4828;3676;3446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;177;167;186;43;24;;;;;;;;;;;;;;;;;;;;;275;831;677;558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;35000;40000;40000;30000;30000;30000;30000;30000;30000;30000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;12811;13768;22359;17905;12887;21991;11095;9191;15629;16983;8343;8845;2976;3923;4511;8450;9129;7725;4740;3038;6500;10537;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910;1910
-175;'624;Guinea-Bissau;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;17700;16300;18300;4100;2200;;;;;;;;;;;;;;;;;;;;;2286;4828;3676;3446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;177;167;186;43;24;;;;;;;;;;;;;;;;;;;;;275;831;677;558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1871;Other industrial roundwood;5516;Production;m3;59000;58000;58000;57000;57000;57000;56000;56000;56000;57000;58000;60000;62000;65000;68000;72000;76000;80000;84000;87000;89000;91000;92000;94000;95000;97000;99000;101000;103000;105000;109000;111000;113000;116000;119000;121000;124000;127000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000
-175;'624;Guinea-Bissau;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;59000;58000;58000;57000;57000;57000;56000;56000;56000;57000;58000;60000;62000;65000;68000;72000;76000;80000;84000;87000;89000;91000;92000;94000;95000;97000;99000;101000;103000;105000;109000;111000;113000;116000;119000;121000;124000;127000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000
-175;'624;Guinea-Bissau;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1630;Wood charcoal;5510;Production;t;11951;12625;13337;14088;14882;15721;16607;17543;18532;19577;20162;20703;21512;22507;23472;24834;27439;28183;30019;33874;33290;33839;35071;34927;35328;36436;36735;37013;37648;38464;39295;40250;41190;41640;42956;43710;44332;46624;49013;51485;52579;53696;54837;56002;57191;58507;59854;61231;62640;64081;65594;67142;68728;70350;72011;73631;75288;76982;76982;80485;82323;84203;86127
-175;'624;Guinea-Bissau;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-175;'624;Guinea-Bissau;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-175;'624;Guinea-Bissau;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;116;15;3;1;5;18;153;109;97;97;97;97;97;97;97;97;0
-175;'624;Guinea-Bissau;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;30;6;1;0;1;11;46;41;63;63;63;63;63;63;63;63;4
-175;'624;Guinea-Bissau;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;8;8;8;8;8;8;8;1;16;16;16;16;16;16;23;23;7;7;7;9;10
-175;'624;Guinea-Bissau;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;2;2;2;2;2;2;2;1;13;13;13;13;13;13;15;15;3;2;2;4;5
-175;'624;Guinea-Bissau;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7
-175;'624;Guinea-Bissau;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-175;'624;Guinea-Bissau;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;41;41;41;41;41;8;8;8;8;8;8;8;1;16;16;16;16;16;16;16;16;0;0;0;2;3
-175;'624;Guinea-Bissau;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;13;13;13;13;2;2;2;2;2;2;2;1;13;13;13;13;13;13;13;13;1;0;0;2;3
-175;'624;Guinea-Bissau;1872;Sawnwood;5516;Production;m3;7900;7600;5600;900;2500;3700;3100;4400;10500;10000;16200;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700
-175;'624;Guinea-Bissau;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;35;29;28;28;19;30;10;10;10;75;94;724;724;599;784;552;534;557;762;1241;1296;384;458;544;896;1532;408;0;3195;2439;1618
-175;'624;Guinea-Bissau;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;18;13;11;11;10;8;2;2;2;44;27;192;192;256;490;447;420;323;554;975;2174;270;212;169;260;473;199;62;1414;1299;465
-175;'624;Guinea-Bissau;1872;Sawnwood;5916;Export quantity;m3;7900;7600;5600;900;2500;3700;3100;3900;5200;5400;5500;7600;7600;7600;6200;6200;6200;6200;6200;6200;2100;1800;1800;1800;1800;606;199;592;437;493;493;274;898;24;985;985;1667;523;2204;392;392;44;44;168;168;44;290;182;161;89;454;1926;327;137;100;0;0;0;239;0;0;156;0
-175;'624;Guinea-Bissau;1872;Sawnwood;5922;Export value;1000 USD;123;119;90;14;40;59;50;63;84;90;88;130;130;130;130;130;130;130;130;130;500;350;350;350;350;223;109;218;116;325;325;205;312;17;339;339;500;163;87;104;104;22;22;51;51;18;192;104;129;55;192;598;176;65;50;0;0;0;154;0;0;81;0
-175;'624;Guinea-Bissau;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;15;15;15;15;15;29;4;4;4;4;45;217;217;76;250;97;12;56;0;136;191;150;396;505;807;1484;331;0;1645;1298;1618
-175;'624;Guinea-Bissau;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;7;7;7;7;8;1;1;1;1;16;38;38;18;70;50;3;12;0;48;75;67;136;126;170;406;124;53;713;521;465
-175;'624;Guinea-Bissau;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;62;32;0;0;10;18;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;15;0;0;7;10;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1633;Sawnwood, non-coniferous;5516;Production;m3;7900;7600;5600;900;2500;3700;3100;4400;10500;10000;16200;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700;15700
-175;'624;Guinea-Bissau;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;20;14;13;13;4;1;6;6;6;71;49;507;507;523;534;455;522;501;762;1105;1105;234;62;39;89;48;77;0;1550;1141;0
-175;'624;Guinea-Bissau;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;11;6;4;4;3;0;1;1;1;43;11;154;154;238;420;397;417;311;554;927;2099;203;76;43;90;67;75;9;701;778;0
-175;'624;Guinea-Bissau;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;7900;7600;5600;900;2500;3700;3100;3900;5200;5400;5500;7600;7600;7600;6200;6200;6200;6200;6200;6200;2100;1800;1800;1800;1800;606;199;592;437;493;493;274;898;24;985;985;1667;523;2204;392;392;44;44;168;168;44;290;120;129;89;454;1916;309;137;100;0;0;0;239;0;0;156;0
-175;'624;Guinea-Bissau;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;123;119;90;14;40;59;50;63;84;90;88;130;130;130;130;130;130;130;130;130;500;350;350;350;350;223;109;218;116;325;325;205;312;17;339;339;500;163;87;104;104;22;22;51;51;18;192;88;114;55;192;591;166;65;50;0;0;0;154;0;0;81;0
-175;'624;Guinea-Bissau;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;3;3;25;25;8;8;3;1;5;0;0;23;0;0;160
-175;'624;Guinea-Bissau;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;2;2;2;0;19;4;6;0;1;1;7;0;0;23;0;0;10
-175;'624;Guinea-Bissau;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;4;4;4;4;4;4;33;33;33;33;33;33;33;33;33;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;6;6;6;6;6;6;27;27;27;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;15;127;127;69;71;77;37;37;37;37;95;95;104;323;370;296;403;386;1415;95;199;373;754;317;171;528;644;2779;1291;4068
-175;'624;Guinea-Bissau;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;9;43;43;31;31;35;30;30;31;31;30;30;38;239;349;231;353;395;829;346;206;250;515;212;170;386;150;825;732;323
-175;'624;Guinea-Bissau;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;57;259;259;259;234;234;234;234;234;234;234;234;234
-175;'624;Guinea-Bissau;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;61;108;108;108;108;108;108;108;108;108;108;108;108
-175;'624;Guinea-Bissau;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;12;114;114;0;2;8;2;2;2;2;2;2;11;281;340;284;390;354;1384;25;144;190;709;270;152;400;94;2623;1170;290
-175;'624;Guinea-Bissau;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;8;28;28;0;0;4;2;2;2;2;2;2;10;196;326;213;337;373;795;295;163;150;486;176;146;285;82;761;624;160
-175;'624;Guinea-Bissau;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;25;25;25;25;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;0;0;0;0;0;0;0;0;0;0;0;0
-175;'624;Guinea-Bissau;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40
-175;'624;Guinea-Bissau;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40
-175;'624;Guinea-Bissau;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;2;2;2;2;2;2;2;3;3;3;3;4;4;4;4;3;3;5;5;107;49;60;17;3551
-175;'624;Guinea-Bissau;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;1;1;1;1;1;1;1;6;6;6;7;7;7;7;7;4;4;11;11;81;19;5;17;26
-175;'624;Guinea-Bissau;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14
-175;'624;Guinea-Bissau;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24
-175;'624;Guinea-Bissau;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;412;12;12;24
-175;'624;Guinea-Bissau;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;6;6;10
-175;'624;Guinea-Bissau;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;13;13;20;20;20;33;33;33;33;91;91;91;39;27;9;10;28;27;66;51;180;42;42;14;21;89;84;92;203
-175;'624;Guinea-Bissau;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;15;15;17;17;17;27;27;28;28;27;27;27;37;17;12;9;15;27;44;36;96;25;25;13;19;38;53;85;127
-175;'624;Guinea-Bissau;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;220;220;220;220;220;220;220;220;220;220;220;220
-175;'624;Guinea-Bissau;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;84;84;84;84;84;84;84;84;84;84;84;84
-175;'624;Guinea-Bissau;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;44;43;149;35;35;2;2;20;3;20;56
-175;'624;Guinea-Bissau;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;3;3;3;3;3;3;3;3;3;3;3;20;18;68;14;14;1;1;12;6;36;56
-175;'624;Guinea-Bissau;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;3;1;2;20;19;19;5;28;4;4;9;9;53;25;20;140
-175;'624;Guinea-Bissau;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;3;5;2;8;20;20;14;24;7;7;8;8;26;7;28;60
-175;'624;Guinea-Bissau;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;220;220;220;220;220;220;220;220;220;220;220;220
-175;'624;Guinea-Bissau;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;84;84;84;84;84;84;84;84;84;84;84;84
-175;'624;Guinea-Bissau;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;5;5;7;7;7;20;20;20;20;78;78;78;26;19;3;3;3;3;3;3;3;3;3;3;10;16;56;52;7
-175;'624;Guinea-Bissau;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;11;11;11;11;10;10;10;20;11;4;4;4;4;4;4;4;4;4;4;10;0;40;21;11
-175;'624;Guinea-Bissau;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;9;17;17;0;0
-175;'624;Guinea-Bissau;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;1;0
-175;'624;Guinea-Bissau;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;167;260;260;260;260;260;260;260;260;260;260;260;260
-175;'624;Guinea-Bissau;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;152;152;152;152;152;152;152;152;152;152;152;152
-175;'624;Guinea-Bissau;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193;193;193;193;193;193
-175;'624;Guinea-Bissau;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;133;133;133;133;133;133;133;133
-175;'624;Guinea-Bissau;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193;193;193;193;193;193
-175;'624;Guinea-Bissau;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;133;133;133;133;133;133;133;133
-175;'624;Guinea-Bissau;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193;193;193;193;193;193
-175;'624;Guinea-Bissau;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;133;133;133;133;133;133;133;133
-175;'624;Guinea-Bissau;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193;193;193;193;193;193
-175;'624;Guinea-Bissau;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;133;133;133;133;133;133;133;133
-175;'624;Guinea-Bissau;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;9;17;17;0;0
-175;'624;Guinea-Bissau;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;1;0
-175;'624;Guinea-Bissau;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;167;67;67;67;67;67;67;67;67;67;67;67;67
-175;'624;Guinea-Bissau;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;19;19;19;19;19;19;19;19;19;19;19;19
-175;'624;Guinea-Bissau;1876;Paper and paperboard;5610;Import quantity;t;100;100;100;100;100;100;100;100;100;100;200;300;300;300;300;300;300;300;300;300;200;500;500;500;500;300;300;300;300;300;300;384;213;128;77;77;158;84;83;67;67;70;105;161;161;205;244;127;181;90;269;391;346;314;390;252;230;392;1946;698;1105;299;512
-175;'624;Guinea-Bissau;1876;Paper and paperboard;5622;Import value;1000 USD;27;27;27;27;27;27;27;27;27;53;70;87;88;88;98;98;98;98;98;98;130;310;310;310;310;200;200;200;200;200;200;369;311;185;131;131;250;102;125;79;79;95;138;131;131;234;207;234;257;150;360;699;647;631;391;309;298;510;4094;1007;1264;518;768
-175;'624;Guinea-Bissau;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;95;146;167;167;167;167;167;167;167;167;79;160;160;160
-175;'624;Guinea-Bissau;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;71;182;203;203;203;203;203;203;203;196;137;193;193;193
-175;'624;Guinea-Bissau;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;200;200;200;200;0;0;0;0;0;0;329;130;112;32;32;113;34;67;49;49;44;59;99;99;42;68;86;113;71;191;144;120;141;339;175;87;305;732;512;973;175;399
-175;'624;Guinea-Bissau;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;24;24;24;34;34;34;34;34;34;50;110;110;110;110;0;0;0;0;0;0;327;226;139;59;59;178;47;88;41;41;39;67;76;76;90;106;158;158;91;240;177;139;179;308;197;115;378;888;705;1063;286;552
-175;'624;Guinea-Bissau;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;102;102;102;102;102;102;102;102;21;102;102;102
-175;'624;Guinea-Bissau;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;77;77;77;77;77;77;77;77;21;77;77;77
-175;'624;Guinea-Bissau;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;200;200;200;200;0;0;0;0;0;0;;5;5;5;5;2;5;7;30;30;30;4;6;6;2;5;13;10;10;10;10;4;4;2;2;2;2;2;0;0;1;1
-175;'624;Guinea-Bissau;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;24;24;24;34;34;34;34;34;34;50;110;110;110;110;0;0;0;0;0;0;;3;6;6;6;3;6;7;26;26;26;3;3;3;4;8;12;7;7;7;7;4;4;7;7;7;7;7;1;0;1;1
-175;'624;Guinea-Bissau;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;81;81;81;81;81;81;0;81;81;81
-175;'624;Guinea-Bissau;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;56;56;56;56;56;0;56;56;56
-175;'624;Guinea-Bissau;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;125;107;27;27;111;29;60;19;19;14;55;93;93;40;63;73;103;61;181;134;116;137;337;173;85;303;730;512;973;174;398
-175;'624;Guinea-Bissau;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;223;133;53;53;175;41;81;15;15;13;64;73;73;86;98;146;151;84;233;170;135;175;301;190;108;371;881;704;1063;285;551
-175;'624;Guinea-Bissau;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21
-175;'624;Guinea-Bissau;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21
-175;'624;Guinea-Bissau;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;7;7;7;7;15;15;15;2;2;2;5;1;1;1;1;1;1;20;20;12;5;1;13;6
-175;'624;Guinea-Bissau;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;5;5;5;5;12;12;12;3;3;3;9;7;7;3;3;3;2;21;21;41;5;11;53;14
-175;'624;Guinea-Bissau;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;6;6;6;31;55;55;24;9;18;58;37;162;132;111;122;335;163;64;266;710;474;956;161;368
-175;'624;Guinea-Bissau;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;7;7;7;33;43;43;39;17;33;69;50;201;158;111;133;280;150;69;321;817;651;1015;228;510
-175;'624;Guinea-Bissau;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;44;6;6;1;17;23;23;1;52;53;43;19;18;1;4;14;1;9;1;17;8;33;16;0;24
-175;'624;Guinea-Bissau;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;57;3;3;1;26;18;18;35;78;110;79;25;25;5;21;39;18;38;18;29;23;48;37;4;27
-175;'624;Guinea-Bissau;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21
-175;'624;Guinea-Bissau;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21
-175;'624;Guinea-Bissau;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;100;100;100;100;100;100;100;200;200;200;200;200;200;200;200;200;200;100;300;300;300;300;300;300;300;300;300;300;55;83;16;45;45;45;50;16;18;18;26;46;62;62;163;176;41;68;19;78;247;226;173;51;77;143;87;1214;186;132;124;113
-175;'624;Guinea-Bissau;1675;Other paper and paperboard;5622;Import value;1000 USD;27;27;27;27;27;27;27;27;27;53;70;63;64;64;64;64;64;64;64;64;80;200;200;200;200;200;200;200;200;200;200;42;85;46;72;72;72;55;37;38;38;56;71;55;55;144;101;76;99;59;120;522;508;452;83;112;183;132;3206;302;201;232;216
-175;'624;Guinea-Bissau;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;14;65;65;65;65;65;65;65;65;65;58;58;58;58
-175;'624;Guinea-Bissau;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;15;126;126;126;126;126;126;126;126;119;116;116;116;116
-175;'624;Guinea-Bissau;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;16;16;1;1;8;2;2;2;8;8;8;8;5;3;11;14;43;8;7;6
-175;'624;Guinea-Bissau;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;18;18;2;2;3;4;4;4;27;27;27;27;11;10;21;37;109;23;20;14
-175;'624;Guinea-Bissau;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;12;12;20;40;21;21;157;170;23;58;9;70;233;212;162;40;68;136;73;1199;142;123;115;107
-175;'624;Guinea-Bissau;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;18;18;36;51;13;13;117;74;47;73;33;94;473;459;418;49;92;164;89;3165;180;174;206;200
-175;'624;Guinea-Bissau;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;14;14;14;14;14;14;14;14;14;14;14;7;7;7;7
-175;'624;Guinea-Bissau;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;15;15;15;15;15;15;15;15;15;8;5;5;5;5
-175;'624;Guinea-Bissau;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;1;1;96;20;5;5;4;26;30;9;9;9;9;4;13;33;16;21;4;13
-175;'624;Guinea-Bissau;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;1;1;34;25;14;4;19;23;24;10;10;10;10;8;10;29;10;20;7;11
-175;'624;Guinea-Bissau;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;15;15;17;9;9;1;1;8;198;198;6;6;4;4;4;1;0;2;1;37
-175;'624;Guinea-Bissau;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;9;9;36;19;19;3;3;20;432;432;5;5;4;4;4;9;2;13;3;86
-175;'624;Guinea-Bissau;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;14;34;3;3;42;140;8;51;3;35;4;4;146;24;54;127;55;1165;126;100;110;56
-175;'624;Guinea-Bissau;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;23;38;2;2;46;23;7;59;4;44;10;10;396;27;71;145;68;3127;168;133;195;102
-175;'624;Guinea-Bissau;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;14;14;14;14;14;14;14;14;14;14;14;7;7;7;7
-175;'624;Guinea-Bissau;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;15;15;15;15;15;15;15;15;15;8;5;5;5;5
-175;'624;Guinea-Bissau;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;1
-175;'624;Guinea-Bissau;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;7;7;7;0;0;8;1;1
-175;'624;Guinea-Bissau;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;55;83;16;45;45;45;50;3;3;3;3;3;25;25;5;5;10;8;8;6;6;6;3;3;4;4;3;1;1;1;2;0
-175;'624;Guinea-Bissau;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;42;85;46;72;72;72;55;17;17;17;17;17;24;24;25;25;26;22;22;22;22;22;7;7;9;9;22;4;13;4;6;2
-175;'624;Guinea-Bissau;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51;51;51;51;51
-175;'624;Guinea-Bissau;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;111;111;111;111;111;111
-175;'624;Guinea-Bissau;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;1339;2114;2553;2566;3783;3845
-175;'624;Guinea-Bissau;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;8;0;1;11;1
-175;'624;Guinea-Bissau;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;8;10;38;13
-175;'624;Guinea-Bissau;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;8;10;38;13
-175;'624;Guinea-Bissau;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;147;43;163;44;43
-175;'624;Guinea-Bissau;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;38;13;18;27;18;36
-175;'624;Guinea-Bissau;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;199;491;843;901;640;650
-175;'624;Guinea-Bissau;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;970;1098;1556;1189;2734;2707
-175;'624;Guinea-Bissau;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;8;0;1;11;1
-175;'624;Guinea-Bissau;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;206;169;338
-175;'624;Guinea-Bissau;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;104;348;67;70;140;58
-175;'624;Guinea-Bissau;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;539;6110;2514;2748;3690;3933
-175;'624;Guinea-Bissau;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-175;'624;Guinea-Bissau;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-175;'624;Guinea-Bissau;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;442;19;52;26;50
-175;'624;Guinea-Bissau;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;165;473;416;508;835;1584
-175;'624;Guinea-Bissau;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;60;1150;1171;907;1574;1404
-175;'624;Guinea-Bissau;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;311;4045;908;1281;1255;895
-175;'624;Guinea-Bissau;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-91;'328;Guyana;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49752;51071;48471;43178;52716.75;58012;62118
-91;'328;Guyana;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88015;83591;62561;72228;75526;89190;34879
-91;'328;Guyana;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1003;967;803;1089;1113;1487;2146;1654;1632;2109;1903;2206;3144;3825;4099;4155;5013;4051;5847;5357;4011;2931;2931;2931;2813;3127;2645;3201;1273;1554;1554;2067;1809;1284;3360;3206;3469;3239;2873;3077;1863;2657;3646;3803;4956;5771;5394;5424;5346;6328;7341;7669;8021;7444;7066;6411;9061;9581;8664;10084;10324.75;10195;10700
-91;'328;Guyana;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1824;1506;1671;1368;1883;1630;1446;1397;1261;1227;1606;1708;2056;2468;6056;6627;6011;4288;5633;6260;6612;6512;6512;3885;4262;5391;8592;3066;2350;1570;4997;3834;5547;19214;38590;46214;38813;30014;32067;38414;27854;27566;26656;38659;34038;48545;54867;51155;41136;48222;39726;38950;36717;51179;86254;58355;59669;59652;39927;44888;45680;55575;17731
-91;'328;Guyana;1861;Roundwood;5516;Production;m3;1018158;1002445;976643;1010853;1025773;1052705;1043749;1050503;1040569;1059647;1041849;1073517;1087141;1089676;1015146;1009715;986305;981271;1017469;1046063;1048560;1078353;1098562;1087357;1117535;1109915;1120222;1119189;1121345;1065961;1060715;1071361;1168987;1309647;1374262;1357952;1458387;1288115;1334983;1168873;1188420;1165008;1210635;1332302;1360009;1433952;1381900;1314900;1309005;1364096;1346403;1329744;1360120;1268630;1186256;1123640;1128560;1140835;1137736;1134179;1130719;1127298;1123916
-91;'328;Guyana;1861;Roundwood;5616;Import quantity;m3;10000;12100;10900;11000;17600;15800;15100;12100;10700;18400;12200;8800;8400;8200;8900;8200;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1002;1013;1013;1088;1289;427;318;18;462;144;183;99;2761;7;70;0;1126;523;197
-91;'328;Guyana;1861;Roundwood;5622;Import value;1000 USD;47;57;37;49;67;77;48;40;33;42;33;24;102;109;160;145;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;17;24;23;45;54;49;55;13;117;19;48;34;590;3;27;3;579;15;39
-91;'328;Guyana;1861;Roundwood;5916;Export quantity;m3;26900;18100;27200;18600;25700;13100;28500;29400;20700;19600;20100;32000;44900;26300;39600;30600;31800;23200;34100;24100;30000;26200;26200;10600;12400;19300;23300;5800;8400;1800;11200;11600;3200;25300;18600;22200;80200;61000;48000;54000;41000;48000;66095;71196;123196;200044;171044;103044;67044;121289;104720;101202;84152;147062;223253;124017;190309;127754;77716;62366;85522;100629;34346
-91;'328;Guyana;1861;Roundwood;5922;Export value;1000 USD;735;551;617;371;741;428;725;752;632;607;595;733;936;1069;3704;3784;3168;2052;2818;2533;2885;2785;2785;1359;1758;2653;5163;1095;1131;238;1403;954;489;3232;2194;2823;8584;6000;3056;3409;3567;4578;5697;7797;13581;23994;23749;18082;11786;19431;15682;15475;13171;25323;63659;37177;40682;42013;25022;19849;19939;25921;8121
-91;'328;Guyana;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2540;0;0;0;25;67;0
-91;'328;Guyana;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;0;0;3;0;10;0
-91;'328;Guyana;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;4448;333;0;24;99;91
-91;'328;Guyana;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;1037;0;0;8;28;77
-91;'328;Guyana;1863;Roundwood, non-coniferous;5516;Production;m3;1018158;1002445;976643;1010853;1025773;1052705;1043749;1050503;1040569;1059647;1041849;1073517;1087141;1089676;1015146;1009715;986305;981271;1017469;1046063;1048560;1078353;1098562;1087357;1117535;1109915;1120222;1119189;1121345;1062961;1057715;1068361;1165987;1309647;1374262;1357952;1458387;1288115;1334983;1168873;1188420;1165008;1210635;1332302;1360009;1433952;1381900;1314900;1309005;1364096;1346403;1329744;1360120;1268630;1186256;1123640;1128560;1140835;1137736;1134179;1130719;1127298;1123916
-91;'328;Guyana;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;7;70;0;1101;456;197
-91;'328;Guyana;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;3;27;0;579;5;39
-91;'328;Guyana;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189941;123306;77383;62366;85498;100530;34255
-91;'328;Guyana;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40552;40976;25022;19849;19931;25893;8044
-91;'328;Guyana;1864;Wood fuel;5516;Production;m3;800158;802445;805643;807853;810773;813705;816749;819503;822569;825647;830849;841517;842141;833676;824146;825715;836305;844271;853469;857063;859560;889353;909562;923357;919535;917915;911222;910189;912345;915961;910715;905361;900987;896447;898162;890452;885187;882115;880983;879873;876420;873008;869635;866302;863009;859952;856900;853900;851005;848096;845403;842744;840120;837530;834974;831253;827573;823935;820336;816779;813319;809898;806516
-91;'328;Guyana;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-91;'328;Guyana;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-91;'328;Guyana;1864;Wood fuel;5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;196;196;196;44;44;44;44;44;44;44;44;7;9206;8476;5902;5493;5366;5366;5366;5366;5366
-91;'328;Guyana;1864;Wood fuel;5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;99;99;99;2;2;2;2;2;2;2;2;3;335;283;268;228;298;298;298;298;298
-91;'328;Guyana;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1628;Wood fuel, non-coniferous;5516;Production;m3;800158;802445;805643;807853;810773;813705;816749;819503;822569;825647;830849;841517;842141;833676;824146;825715;836305;844271;853469;857063;859560;889353;909562;923357;919535;917915;911222;910189;912345;915961;910715;905361;900987;896447;898162;890452;885187;882115;880983;879873;876420;873008;869635;866302;863009;859952;856900;853900;851005;848096;845403;842744;840120;837530;834974;831253;827573;823935;820336;816779;813319;809898;806516
-91;'328;Guyana;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5902;5493;5366;5366;5366;5366;5366
-91;'328;Guyana;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;228;298;298;298;298;298
-91;'328;Guyana;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-91;'328;Guyana;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;;
-91;'328;Guyana;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;196;196;196;44;44;44;44;44;44;44;44;7;9206;8476;;;;;;;
-91;'328;Guyana;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;99;99;99;2;2;2;2;2;2;2;2;3;335;283;;;;;;;
-91;'328;Guyana;1865;Industrial roundwood;5516;Production;m3;218000;200000;171000;203000;215000;239000;227000;231000;218000;234000;211000;232000;245000;256000;191000;184000;150000;137000;164000;189000;189000;189000;189000;164000;198000;192000;209000;209000;209000;150000;150000;166000;268000;413200;476100;467500;573200;406000;454000;289000;312000;292000;341000;466000;497000;574000;525000;461000;458000;516000;501000;487000;520000;431100;351282;292387;300987;316900;317400;317400;317400;317400;317400
-91;'328;Guyana;1865;Industrial roundwood;5616;Import quantity;m3;10000;12100;10900;11000;17600;15800;15100;12100;10700;18400;12200;8800;8400;8200;8900;8200;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1001;1012;1012;1087;1288;426;317;17;461;143;182;98;2761;7;70;0;1126;523;197
-91;'328;Guyana;1865;Industrial roundwood;5622;Import value;1000 USD;47;57;37;49;67;77;48;40;33;42;33;24;102;109;160;145;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;23;22;44;53;48;54;12;116;18;47;33;590;3;27;3;579;15;39
-91;'328;Guyana;1865;Industrial roundwood;5916;Export quantity;m3;25100;17000;25900;18100;25300;12800;28200;29400;20700;19600;20100;32000;44900;26300;39600;30600;31800;23200;34100;24100;30000;26200;26200;10600;12400;19300;23300;5800;8400;1800;11200;11600;3200;25300;18600;22200;80200;61000;48000;54000;41000;48000;65899;71000;123000;200000;171000;103000;67000;121245;104676;101158;84108;147055;214047;115541;184407;122261;72350;57000;80156;95263;28980
-91;'328;Guyana;1865;Industrial roundwood;5922;Export value;1000 USD;729;547;600;365;739;425;724;752;632;607;595;733;936;1069;3704;3784;3168;2052;2818;2533;2885;2785;2785;1359;1758;2653;5163;1095;1131;238;1403;954;489;3232;2194;2823;8584;6000;3056;3409;3567;4578;5598;7698;13482;23992;23747;18080;11784;19429;15680;15473;13169;25320;63324;36894;40414;41785;24724;19551;19641;25623;7823
-91;'328;Guyana;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;11;53;170;233;307;17;372;123;23;76;2540;0;0;0;25;67;0
-91;'328;Guyana;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;6;20;27;34;51;9;97;10;10;26;538;0;0;3;0;10;0
-91;'328;Guyana;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;1700;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5245;3776;18283;7108;8553;1047;1128;368;4448;333;0;24;99;91
-91;'328;Guyana;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;39;127;284;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;429;330;1547;717;871;276;547;130;1037;0;0;8;28;77
-91;'328;Guyana;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;11;53;170;233;307;17;372;123;23;76;2540;0;0;0;25;67;0
-91;'328;Guyana;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;6;20;27;34;51;9;97;10;10;26;538;0;0;3;0;10;0
-91;'328;Guyana;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;1700;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5245;3776;18283;7108;8553;1047;1128;368;4448;333;0;24;99;91
-91;'328;Guyana;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;39;127;284;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;429;330;1547;717;871;276;547;130;1037;0;0;8;28;77
-91;'328;Guyana;1867;Industrial roundwood, non-coniferous;5516;Production;m3;218000;200000;171000;203000;215000;239000;227000;231000;218000;234000;211000;232000;245000;256000;191000;184000;150000;137000;164000;189000;189000;189000;189000;164000;198000;192000;209000;209000;209000;147000;147000;163000;265000;413200;476100;467500;573200;406000;454000;289000;312000;292000;341000;466000;497000;574000;525000;461000;458000;516000;501000;487000;520000;431100;351282;292387;300987;316900;317400;317400;317400;317400;317400
-91;'328;Guyana;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1001;1001;1034;1118;193;10;0;89;20;159;22;221;7;70;0;1101;456;197
-91;'328;Guyana;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;24;26;14;3;3;19;8;37;7;52;3;27;0;579;5;39
-91;'328;Guyana;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;10900;9900;1500;25300;18600;22200;80200;61000;48000;54000;41000;48000;65899;71000;123000;200000;171000;103000;67000;116000;100900;82875;77000;138502;213000;114413;184039;117813;72017;57000;80132;95164;28889
-91;'328;Guyana;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;1364;827;205;3232;2194;2823;8584;6000;3056;3409;3567;4578;5598;7698;13482;23992;23747;18080;11784;19000;15350;13926;12452;24449;63048;36347;40284;40748;24724;19551;19633;25595;7746
-91;'328;Guyana;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;117;193;0;0;0;0;0;0;0;0;58;0;1101;0;0
-91;'328;Guyana;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;14;0;0;0;0;0;0;0;0;17;0;579;0;0
-91;'328;Guyana;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;10900;9900;1500;25300;18600;22200;80200;61000;48000;54000;41000;48000;65899;71000;123000;200000;171000;103000;67000;116000;100900;82875;77000;138502;145167;114413;184039;117813;72017;57000;80132;95164;28889
-91;'328;Guyana;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;1364;827;205;3232;2194;2823;8584;6000;3056;3409;3567;4578;5598;7698;13482;23992;23747;18080;11784;19000;15350;13926;12452;24449;61980;36347;40284;40748;24724;19551;19633;25595;7746
-91;'328;Guyana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1001;1001;1001;1001;0;10;0;89;20;159;22;221;7;12;0;0;456;197
-91;'328;Guyana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;0;3;3;19;8;37;7;52;3;10;0;0;5;39
-91;'328;Guyana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67833;0;0;0;0;0;0;0;0
-91;'328;Guyana;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1068;0;0;0;0;0;0;0;0
-91;'328;Guyana;1868;Sawlogs and veneer logs;5516;Production;m3;196000;178000;149000;181000;193000;217000;205000;209000;197000;214000;197000;210000;223000;231000;177000;171000;137000;132000;154000;179000;179000;179000;179000;156000;172000;171000;188000;188000;188000;140000;143000;151000;253000;396000;455000;443000;554000;387000;435000;150000;173000;165000;236000;351000;381000;462000;404000;342000;339000;398000;386000;370000;399000;406433;331195;272300;280900;293000;293000;293000;293000;293000;293000
-91;'328;Guyana;1868;Sawlogs and veneer logs;5616;Import quantity;m3;10000;12100;10900;11000;17600;15800;15100;12100;10700;18400;12200;8800;8400;8200;8900;8200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;47;57;37;49;67;77;48;40;33;42;33;24;102;109;160;145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1868;Sawlogs and veneer logs;5916;Export quantity;m3;11500;2100;16600;5600;13600;1800;11800;9500;6400;6300;10700;10900;31000;10700;19600;18600;15000;7100;20500;10800;16700;12900;12900;4200;4800;16000;18200;4000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;305;19;340;34;369;36;292;190;184;166;282;278;655;444;2754;3279;2546;947;1934;1448;1800;1700;1700;264;611;1764;4373;875;486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;196000;178000;149000;181000;193000;217000;205000;209000;197000;214000;197000;210000;223000;231000;177000;171000;137000;132000;154000;179000;179000;179000;179000;156000;172000;171000;188000;188000;188000;137000;140000;148000;250000;396000;455000;443000;554000;387000;435000;150000;173000;165000;236000;351000;381000;462000;404000;342000;339000;398000;386000;370000;399000;406433;331195;272300;280900;293000;293000;293000;293000;293000;293000
-91;'328;Guyana;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;10000;12100;10900;11000;17600;15800;15100;12100;10700;18400;12200;8800;8400;8200;8900;8200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;47;57;37;49;67;77;48;40;33;42;33;24;102;109;160;145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;11500;2100;16600;5600;13600;1800;11800;9500;6400;6300;10700;10900;31000;10700;19600;18600;15000;7100;20500;10800;16700;12900;12900;4200;4800;16000;18200;4000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;305;19;340;34;369;36;292;190;184;166;282;278;655;444;2754;3279;2546;947;1934;1448;1800;1700;1700;264;611;1764;4373;875;486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;108000;120000;112000;90000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;108000;120000;112000;90000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;0;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;3100;2500;2200;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;3100;2500;2200;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1871;Other industrial roundwood;5516;Production;m3;22000;22000;22000;22000;22000;22000;22000;22000;21000;20000;14000;22000;22000;25000;14000;13000;13000;5000;10000;10000;10000;10000;10000;8000;26000;21000;21000;21000;21000;10000;7000;15000;15000;14300;18000;22000;17000;19000;19000;31000;19000;15000;15000;15000;16000;12000;21000;19000;19000;18000;15000;17000;21000;24667;20087;20087;20087;23900;24400;24400;24400;24400;24400
-91;'328;Guyana;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1871;Other industrial roundwood;5916;Export quantity;m3;13600;14900;9300;12500;11700;11000;16400;19900;14300;13300;9400;21100;13900;15600;20000;12000;16800;16100;13600;13300;13300;13300;13300;6400;7600;3300;5100;1800;5400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1871;Other industrial roundwood;5922;Export value;1000 USD;424;528;260;331;370;389;432;562;448;441;313;455;281;625;950;505;622;1105;884;1085;1085;1085;1085;1095;1147;889;790;220;645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;22000;22000;22000;22000;22000;22000;22000;22000;21000;20000;14000;22000;22000;25000;14000;13000;13000;5000;10000;10000;10000;10000;10000;8000;26000;21000;21000;21000;21000;10000;7000;15000;15000;14300;18000;22000;17000;19000;19000;31000;19000;15000;15000;15000;16000;12000;21000;19000;19000;18000;15000;17000;21000;24667;20087;20087;20087;23900;24400;24400;24400;24400;24400
-91;'328;Guyana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;13600;14900;9300;12500;11700;11000;16400;19900;14300;13300;9400;21100;13900;15600;20000;12000;16800;16100;13600;13300;13300;13300;13300;6400;7600;3300;5100;1800;5400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;424;528;260;331;370;389;432;562;448;441;313;455;281;625;950;505;622;1105;884;1085;1085;1085;1085;1095;1147;889;790;220;645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1630;Wood charcoal;5510;Production;t;20114;20499;18784;23070;17356;16843;16630;16517;17105;16994;18394;16506;16531;16264;15965;16019;16325;16622;17087;17106;17308;18382;19154;19758;19797;19894;19913;20256;20638;560;700;20623;20495;2000;1800;1300;1000;500;21397;20922;21118;21316;21516;21718;21922;31900;24500;22500;22500;22500;23181;23397;23614;23833;24054;24230;24407;24585;24765;24945;25125;25306;25488
-91;'328;Guyana;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;3;28;3;4;5;2;3
-91;'328;Guyana;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;5;44;7;9;16;6;11
-91;'328;Guyana;1630;Wood charcoal;5910;Export quantity;t;4800;5100;3300;7500;1700;1100;800;600;1100;900;2200;2200;2200;2200;2200;2200;2200;2200;200;100;100;100;100;100;100;;;;;;;;0;100;200;200;0;800;700;300;300;0;109;109;536;530;530;915;1106;1054;1081;1014;837;1004;925;697;560;589;807;1859;792.23;644;884
-91;'328;Guyana;1630;Wood charcoal;5922;Export value;1000 USD;138;152;133;202;78;39;24;14;26;24;10;10;10;10;10;10;10;10;30;36;36;36;36;36;36;;;;;;;;0;5;17;17;0;14;11;5;5;0;144;144;173;80;80;151;204;200;197;373;212;266;310;243;216;231;264;525;489;189;259
-91;'328;Guyana;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;20468;19352;15985;16923;13623;17503;17503;17503;17503;17503
-91;'328;Guyana;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;40;40;40;40;40;40;40;40;34;30;114;137;137;5;24;24;24;0
-91;'328;Guyana;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;11;11;11;11;11;11;11;11;7;9;4;5;5;0;1;1;1;0
-91;'328;Guyana;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;65;65;188;188;125;177;177;44;26;0;0.05;0.05
-91;'328;Guyana;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;9;9;25;25;16;17;17;2;1;1;1;1
-91;'328;Guyana;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;20468;19352;15985;16923;13623;17503;17503;17503;17503;17503
-91;'328;Guyana;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;6;2;113;113;113;0;0;0;0;0
-91;'328;Guyana;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;0;2;4;4;4;0;0;0;0;0
-91;'328;Guyana;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123;44;26;0;0.05;0.05
-91;'328;Guyana;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;2;1;1;1;1
-91;'328;Guyana;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;1;24;24;5;24;24;24;0
-91;'328;Guyana;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;0;1;1;0;1;1;1;0
-91;'328;Guyana;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;65;65;65;65;2;54;54;0;0;0;0;0
-91;'328;Guyana;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;9;9;9;9;0;1;1;0;0;0;0;0
-91;'328;Guyana;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2
-91;'328;Guyana;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4
-91;'328;Guyana;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;320;320;320;320
-91;'328;Guyana;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;31;31;31;31
-91;'328;Guyana;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-91;'328;Guyana;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-91;'328;Guyana;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1
-91;'328;Guyana;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1
-91;'328;Guyana;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;320;320;320;320
-91;'328;Guyana;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;31;31;31;31
-91;'328;Guyana;1872;Sawnwood;5516;Production;m3;70000;57000;68000;73500;81000;89000;84000;83000;92000;87000;73000;69000;68000;82000;66000;82000;75000;51000;61000;70000;70000;70000;70000;60000;65000;60000;57000;57000;57000;50000;50000;50000;50000;77000;101000;97000;57000;50000;50000;29000;30000;31000;38000;36000;58000;68000;74000;67000;73000;77600;76000;75586;74000;67148;70952;42100;48938;45600;43900;66000;71000;101000;101000
-91;'328;Guyana;1872;Sawnwood;5616;Import quantity;m3;2100;1400;900;1900;2000;3000;2600;7000;6300;5200;4000;1700;1600;1600;400;200;200;200;200;200;100;200;200;200;200;200;200;200;200;200;200;500;500;100;200;200;0;0;0;0;0;312;0;0;0;305;55;74;42;24;319;3154;3002;3441;2533;1251;671;1083;1184;2674;2345;3154;2070
-91;'328;Guyana;1872;Sawnwood;5622;Import value;1000 USD;70;82;51;98;133;188;146;192;187;161;156;61;71;71;7;2;3;3;3;3;15;30;30;30;30;30;30;30;30;30;30;67;67;51;72;72;0;0;0;0;0;50;0;0;10;58;24;31;22;19;115;1036;833;893;873;548;216;384;470;1628;1752;1872;1351
-91;'328;Guyana;1872;Sawnwood;5916;Export quantity;m3;21000;17700;19300;16900;24100;22900;20500;24000;21500;21000;29300;32200;39200;30700;38200;33500;33500;11100;12500;14400;14400;14400;14400;9700;8600;8700;9600;6500;3800;3900;9000;10700;13100;12700;15600;18900;22100;21000;22000;42000;24000;33000;27378;40000;22000;34000;44000;48000;42000;37070;29807;25061;23057;23155;19311;21241;17687;16074;28388;40557;55428;79023;17551
-91;'328;Guyana;1872;Sawnwood;5922;Export value;1000 USD;951;803;921;795;1064;1163;697;631;603;596;1001;965;1110;1389;2342;2833;2833;2226;2785;3691;3691;3691;3691;2490;2468;2738;3429;1971;1219;1332;3594;2809;3686;4392;5807;7494;8561;8000;7000;11000;7591;10717;9220;15090;8762;15377;21862;26013;24509;23421;21920;19524;19726;20413;18175;18944;16542;15328;12367;23165;24014;28962;8924
-91;'328;Guyana;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;1000;1000;1000;1000;1000;1000
-91;'328;Guyana;1632;Sawnwood, coniferous;5616;Import quantity;m3;2100;1400;900;1900;2000;3000;2600;7000;6300;5200;4000;1700;1600;1600;400;200;200;200;200;200;100;200;200;200;200;200;200;200;200;200;200;500;500;100;100;100;0;0;0;0;0;312;0;0;0;21;23;58;17;7;311;3033;2988;3435;2451;1202;648;513;1183;2631;2282;2243;2015
-91;'328;Guyana;1632;Sawnwood, coniferous;5622;Import value;1000 USD;70;82;51;98;133;188;146;192;187;161;156;61;71;71;7;2;3;3;3;3;15;30;30;30;30;30;30;30;30;30;30;67;67;51;51;51;0;0;0;0;0;50;0;0;10;19;7;25;7;4;106;965;826;857;851;516;201;233;469;1592;1743;1836;1317
-91;'328;Guyana;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1070;307;1084;57;419;588;241;141;374;390;334;227;450;46
-91;'328;Guyana;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;221;69;148;49;69;162;107;44;128;212;263;35;2;23
-91;'328;Guyana;1633;Sawnwood, non-coniferous;5516;Production;m3;70000;57000;68000;73500;81000;89000;84000;83000;92000;87000;73000;69000;68000;82000;66000;82000;75000;51000;61000;70000;70000;70000;70000;60000;65000;60000;57000;57000;57000;50000;50000;50000;50000;77000;101000;97000;57000;50000;50000;29000;30000;31000;38000;36000;58000;68000;74000;67000;73000;77600;76000;75586;74000;67148;70952;42100;47938;44600;42900;65000;70000;100000;100000
-91;'328;Guyana;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;100;100;0;0;0;0;0;0;0;0;0;284;32;16;25;17;8;121;14;6;82;49;23;570;1;43;63;911;55
-91;'328;Guyana;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;21;21;0;0;0;0;0;0;0;0;0;39;17;6;15;15;9;71;7;36;22;32;15;151;1;36;9;36;34
-91;'328;Guyana;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;21000;17700;19300;16900;24100;22900;20500;24000;21500;21000;29300;32200;39200;30700;38200;33500;33500;11100;12500;14400;14400;14400;14400;9700;8600;8700;9600;6500;3800;3900;9000;10500;13100;12700;15600;18900;22100;21000;22000;42000;24000;33000;27378;40000;22000;34000;44000;48000;42000;36000;29500;23977;23000;22736;18723;21000;17546;15700;27998;40223;55201;78573;17505
-91;'328;Guyana;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;951;803;921;795;1064;1163;697;631;603;596;1001;965;1110;1389;2342;2833;2833;2226;2785;3691;3691;3691;3691;2490;2468;2738;3429;1971;1219;1332;3594;2767;3686;4392;5807;7494;8561;8000;7000;11000;7591;10717;9220;15090;8762;15377;21862;26013;24509;23200;21851;19376;19677;20344;18013;18837;16498;15200;12155;22902;23979;28960;8901
-91;'328;Guyana;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;2000;2000;2000;2000;2000;20943;23574;25000;17131;17000;17000;17000;17000;17000;17000;17000
-91;'328;Guyana;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;58;0;0;0;32;19;4;10;30;32;112;65;35;69;489;138;54;11;12;55;55;56
-91;'328;Guyana;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;0;0;0;63;34;13;19;64;60;30;67;66;19;164;53;22;23;39;74;9;131
-91;'328;Guyana;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;268;6;33;49;5;219;36;38;0;47;0;1;30;9;0
-91;'328;Guyana;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;223;18;33;69;17;199;26;33;3;27;145;102;15;16;0
-91;'328;Guyana;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;57000;96000;98000;67000;76000;87000;92000;69000;51000;75000;54000;37000;34000;39000;21000;19000;18200;13000;12577;18000;20798;16617;14617;7333;14600;14600;14600;14600;14600;14600
-91;'328;Guyana;1873;Wood-based panels;5616;Import quantity;m3;2100;2500;1400;1800;4300;3948;3148;5853;7817;6742;7237;9137;10001;19142;20637;5800;800;1400;900;900;500;900;900;900;500;500;500;200;200;200;200;600;26;102;0;0;0;0;0;0;0;104;2163;2893;4619;4844;3406;3743;3562;5482;8508;2629;4089;2002;2317;2434;4951;4942;6943;6950;6180.15;6760;8819
-91;'328;Guyana;1873;Wood-based panels;5622;Import value;1000 USD;150;122;100;129;184;268;251;262;239;239;267;300;538;770;882;453;285;382;313;313;448;313;313;313;295;295;184;66;66;66;66;136;8;22;0;0;0;0;0;0;0;103;295;452;1024;1116;803;825;741;1686;2601;1497;1911;1328;1222;1011;1791;2256;2437;2496;2714.04;3306;3756
-91;'328;Guyana;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3000;32200;87200;96700;61300;70000;76000;87000;70000;47000;52550;49038;37038;24038;24038;16038;11038;13098;3136;6399;6860;6840;6158;2139;2197;3070;4154;4605;4903;170;93
-91;'328;Guyana;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;1372;11585;30572;35880;21668;16000;22000;24000;16691;12271;11515;15548;11337;8802;8884;6589;4122;4860;1602;3199;3292;3479;2594;1310;1554;1561;1540;719;873;132;79
-91;'328;Guyana;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;57000;96000;98000;67000;76000;87000;92000;69000;51000;75000;54000;37000;34000;39000;21000;19000;18200;13000;12577;18000;20798;16617;14617;7333;14600;14600;14600;14600;14600;14600
-91;'328;Guyana;1640;Plywood and LVL;5616;Import quantity;m3;700;800;200;600;2300;1400;1100;2600;3500;3900;4500;6400;3000;2700;19300;5300;600;1200;700;700;300;700;700;700;300;300;200;100;100;100;100;500;0;0;0;0;0;0;0;0;0;104;0;730;1723;2101;663;1000;819;2739;5765;1179;2639;854;1018;1133;3992;3935;5330;5179;3613;4075;5835
-91;'328;Guyana;1640;Plywood and LVL;5622;Import value;1000 USD;64;57;32;44;66;117;116;158;145;148;162;198;202;413;408;173;145;208;125;125;260;125;125;125;107;107;71;48;48;48;48;118;0;0;0;0;0;0;0;0;0;103;0;157;516;511;198;220;136;1081;1996;497;911;488;467;410;1275;1725;1735;1831;1354;1957;2505
-91;'328;Guyana;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3000;32200;87200;96700;61300;70000;76000;87000;70000;47000;52512;49000;37000;24000;24000;16000;11000;13060;3098;6361;6822;6802;6120;2101;2159;3032;4116;4567;4903;162;85
-91;'328;Guyana;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;1372;11585;30572;35880;21668;16000;22000;24000;16691;12271;11508;15541;11330;8795;8877;6582;4115;4853;1595;3192;3285;3472;2587;1303;1547;1554;1533;712;873;122;69
-91;'328;Guyana;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;300;500;300;700;1000;1600;1100;2200;2000;2000;2000;2000;5000;1700;600;400;100;100;100;100;100;100;100;100;100;100;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;13;19;12;31;43;67;51;98;81;79;92;90;317;213;200;203;51;85;99;99;99;99;99;99;99;99;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;417;417;105;326;326;326;326;326;326;86;86;64;48;270;31;31;109;6;94;273;59
-91;'328;Guyana;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;107;107;48;115;115;115;115;115;115;74;74;71;70;111;13;13;151;4;44;137;41
-91;'328;Guyana;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0
-91;'328;Guyana;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0
-91;'328;Guyana;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;23;23;23;23;23;23;23;23;23;5;15;14;14;51;47;134;47;47
-91;'328;Guyana;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;6;6;6;6;6;6;6;6;6;2;6;8;8;14;13;55;14;14
-91;'328;Guyana;1874;Fibreboard;5616;Import quantity;m3;1100;1200;900;500;1000;948;948;1053;2317;842;737;737;2001;14742;737;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;26;102;0;0;0;0;0;0;0;0;1746;1746;2710;2394;2394;2394;2394;2394;2394;1341;1341;1061;1246;1016;914;962;1453;1718;2339.15;2365;2878
-91;'328;Guyana;1874;Fibreboard;5622;Import value;1000 USD;73;46;56;54;75;84;84;6;13;12;13;12;19;144;274;77;89;89;89;89;89;89;89;89;89;89;89;18;18;18;18;18;8;22;0;0;0;0;0;0;0;0;188;188;422;484;484;484;484;484;484;920;920;763;683;484;495;510;537;648;1261.04;1198;1196
-91;'328;Guyana;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8
-91;'328;Guyana;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-91;'328;Guyana;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;1405;389;389;389;389;389;389;104;104;42;74;48;29;8;0;26;36;1;1
-91;'328;Guyana;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;178;189;189;189;189;189;189;98;98;38;45;19;33;17;0;24;15;1;1
-91;'328;Guyana;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075;1075;618;1026;1026;1026;1026;1026;1026;1208;1208;992;1089;911;850;910;1449;1692;2157.15;2322;2613
-91;'328;Guyana;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;140;239;239;239;239;239;239;800;800;691;590;437;446;461;531;624;1194.04;1188;1165
-91;'328;Guyana;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8
-91;'328;Guyana;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-91;'328;Guyana;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;515;515;687;979;979;979;979;979;979;29;29;27;83;57;35;44;4;0;146;42;264
-91;'328;Guyana;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;62;62;104;56;56;56;56;56;56;22;22;34;48;28;16;32;6;0;52;9;30
-91;'328;Guyana;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1100;1200;900;500;1000;948;948;1053;2317;842;737;737;2001;14742;737;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;26;102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;73;46;56;54;75;84;84;6;13;12;13;12;19;144;274;77;89;89;89;89;89;89;89;89;89;89;89;18;18;18;18;18;8;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;100;100;100;100;0;0;0;0;0;0;115;115;5;23;23;23;23;23;23;1841;1841;1864;1886;529;305;305;5;0;0;1;24
-91;'328;Guyana;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;13;12;12;12;0;0;0;0;0;0;16;16;28;2;2;2;2;2;2;369;369;343;335;84;50;50;10;0;0;10;8
-91;'328;Guyana;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;82;0;0;0;1;80;80;424;180;90;90;200
-91;'328;Guyana;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;1;19;19;83;39;20;20;14
-91;'328;Guyana;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;49;0;3;0;0;0;0;0;0;16
-91;'328;Guyana;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;8;0;1;0;0;0;0;0;0;6
-91;'328;Guyana;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;49;0;3;19;19;19;0;0;0;0
-91;'328;Guyana;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;28;0;0;0;0;0;0;0;0;8;0;1;9;9;9;0;0;0;0
-91;'328;Guyana;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;;;;;;;
-91;'328;Guyana;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;;;;;;;
-91;'328;Guyana;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;
-91;'328;Guyana;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0
-91;'328;Guyana;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-91;'328;Guyana;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-91;'328;Guyana;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;0;;;;;;;
-91;'328;Guyana;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;;;;;;;
-91;'328;Guyana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-91;'328;Guyana;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-91;'328;Guyana;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;19;19;0;0;0;0
-91;'328;Guyana;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;9;0;0;0;0
-91;'328;Guyana;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16
-91;'328;Guyana;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6
-91;'328;Guyana;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;100;100;100;100;0;0;0;0;0;0;115;115;0;23;23;23;23;23;23;1841;1841;1815;1886;526;305;305;5;0;0;1;8
-91;'328;Guyana;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;13;12;12;12;0;0;0;0;0;0;16;16;0;2;2;2;2;2;2;369;369;335;335;83;50;50;10;0;0;10;2
-91;'328;Guyana;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;82;0;0;0;0;80;80;424;180;90;90;200
-91;'328;Guyana;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;19;19;83;39;20;20;14
-91;'328;Guyana;1876;Paper and paperboard;5610;Import quantity;t;3800;3500;5700;3600;3200;4500;5000;4900;5100;5700;8900;6000;5600;4600;4200;5200;6100;4900;7200;6200;4700;2700;2700;2700;3900;4800;4200;4400;2000;2600;2600;2300;2300;1600;5700;5500;5900;5400;5100;5600;3300;6600;4100;4100;6218;5505;5505;5505;5505;5505;5505;4055;4055;4350;4256;4593;7196;7056;5477;7350;4998.2;2976;3954
-91;'328;Guyana;1876;Paper and paperboard;5622;Import value;1000 USD;736;706;615;813;729;954;1701;1160;1173;1667;1447;1821;2433;2875;3050;3555;4725;3666;5531;5041;3548;2588;2588;2588;2488;2802;2431;3105;1177;1458;1458;1819;1721;1199;3276;3122;3469;3239;2873;3077;1863;2494;3334;3334;3870;4497;4497;4497;4497;4497;4497;4711;4711;4786;4558;4565;6342;6808;5681;5908;5188.72;4973;5400
-91;'328;Guyana;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;27;27;24;49;49;49;49;49;49;50;50;250;244;207;208;205;215;208;200;305;301
-91;'328;Guyana;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;78;78;183;290;290;290;290;290;290;290;290;1474;1465;631;636;456;495;457;298;303;302
-91;'328;Guyana;2042;Graphic papers;5610;Import quantity;t;1600;2000;3200;1600;1400;1200;1700;1900;1700;2400;2700;2000;2700;2800;2800;3800;3100;2600;3300;2300;3500;1500;1500;1500;1900;1100;1100;1000;500;800;800;1000;1700;1300;1300;1200;1900;1900;2400;2300;1900;1800;2109;2109;1932;2601;2601;2601;2601;2601;2601;3412;3412;3371;2870;2681;3634;3280;2301;1900;2317;2333;2263
-91;'328;Guyana;2042;Graphic papers;5622;Import value;1000 USD;377;404;281;380;361;417;554;547;544;749;730;957;1224;1644;1894;2517;1878;1558;1864;1374;2212;1252;1252;1252;1556;816;889;992;458;697;697;899;1207;945;1050;951;1403;1330;1398;1329;1234;865;1569;1569;1642;2526;2526;2526;2526;2526;2526;3991;3991;3423;3055;2419;2824;2887;2468;1702;2195.32;3309;3016
-91;'328;Guyana;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;1;1;11;6;6;6;6;6;6;7;7;7;7;7;7;4;3;3;3;109;108
-91;'328;Guyana;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;0;0;80;183;183;183;183;183;183;183;183;183;183;183;183;3;12;0;11;13;13
-91;'328;Guyana;1671;Newsprint;5610;Import quantity;t;1200;1600;2900;1200;1000;700;900;1100;700;1200;1400;700;1200;1500;1400;1800;1800;1500;2500;1500;2500;500;500;500;500;500;500;100;100;500;500;300;700;500;500;1100;1500;1500;2000;2000;1600;1500;1545;1545;1541;1888;1888;1888;1888;1888;1888;1686;1686;1840;2014;1753;2876;2509;1302;1138;1308;925;981
-91;'328;Guyana;1671;Newsprint;5622;Import value;1000 USD;220;275;159;237;188;202;210;247;164;291;312;343;415;511;645;841;815;640;1190;700;1200;240;240;240;260;260;308;77;43;325;325;188;346;304;350;845;943;865;933;1058;942;620;1053;1053;1157;1707;1707;1707;1707;1707;1707;1700;1700;1520;1614;1380;1788;1790;943;775;855.32;1043;949
-91;'328;Guyana;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;2;2;2;2;2;2;2;2;2;2;108;108
-91;'328;Guyana;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;13
-91;'328;Guyana;1674;Printing and writing papers;5610;Import quantity;t;400;400;300;400;400;500;800;800;1000;1200;1300;1300;1500;1300;1400;2000;1300;1100;800;800;1000;1000;1000;1000;1400;600;600;900;400;300;300;700;1000;800;800;100;400;400;400;300;300;300;564;564;391;713;713;713;713;713;713;1726;1726;1531;856;928;758;771;999;762;1009;1408;1282
-91;'328;Guyana;1674;Printing and writing papers;5622;Import value;1000 USD;157;129;122;143;173;215;344;300;380;458;418;614;809;1133;1249;1676;1063;918;674;674;1012;1012;1012;1012;1296;556;581;915;415;372;372;711;861;641;700;106;460;465;465;271;292;245;516;516;485;819;819;819;819;819;819;2291;2291;1903;1441;1039;1036;1097;1525;927;1340;2266;2067
-91;'328;Guyana;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;10;5;5;5;5;5;5;5;5;5;5;5;5;2;1;1;1;1;0
-91;'328;Guyana;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;;80;183;183;183;183;183;183;183;183;183;183;183;183;3;12;0;11;0;0
-91;'328;Guyana;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;58;119;119;119;119;119;119;453;453;646;248;112;107;107;42;29;148;186;387
-91;'328;Guyana;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;80;213;213;213;213;213;213;719;719;936;710;158;191;191;340;80;250;876;610
-91;'328;Guyana;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-91;'328;Guyana;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-91;'328;Guyana;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;100;100;100;352;352;269;454;454;454;454;454;454;725;725;672;489;652;517;566;851;652;726;1076;799
-91;'328;Guyana;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;201;117;106;106;264;264;233;386;386;386;386;386;386;938;938;729;535;640;605;724;960;658;844;1089;1236
-91;'328;Guyana;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;4;4;4;4;4;4;4;4;4;4;4;1;0;1;0;1;0
-91;'328;Guyana;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;180;180;180;180;180;180;180;180;180;180;180;180;0;9;0;0;0;0
-91;'328;Guyana;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;267;200;200;200;161;161;64;140;140;140;140;140;140;548;548;213;119;164;134;98;106;81;135;146;96
-91;'328;Guyana;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;264;154;186;139;218;218;172;220;220;220;220;220;220;634;634;238;196;241;240;182;225;189;246;301;221
-91;'328;Guyana;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;1;0;0
-91;'328;Guyana;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;11;0;0
-91;'328;Guyana;1675;Other paper and paperboard;5610;Import quantity;t;2200;1500;2500;2000;1800;3300;3300;3000;3400;3300;6200;4000;2900;1800;1400;1400;3000;2300;3900;3900;1200;1200;1200;1200;2000;3700;3100;3400;1500;1800;1800;1300;600;300;4400;4300;4000;3500;2700;3300;1400;4800;1991;1991;4286;2904;2904;2904;2904;2904;2904;643;643;979;1386;1912;3562;3776;3176;5450;2681.2;643;1691
-91;'328;Guyana;1675;Other paper and paperboard;5622;Import value;1000 USD;359;302;334;433;368;537;1147;613;629;918;717;864;1209;1231;1156;1038;2847;2108;3667;3667;1336;1336;1336;1336;932;1986;1542;2113;719;761;761;920;514;254;2226;2171;2066;1909;1475;1748;629;1629;1765;1765;2228;1971;1971;1971;1971;1971;1971;720;720;1363;1503;2146;3518;3921;3213;4206;2993.4;1664;2384
-91;'328;Guyana;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;26;26;13;43;43;43;43;43;43;43;43;243;237;200;201;201;212;205;197;196;193
-91;'328;Guyana;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;78;78;103;107;107;107;107;107;107;107;107;1291;1282;448;453;453;483;457;287;290;289
-91;'328;Guyana;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;528;528;764;242;242;242;242;242;242;105;105;169;323;297;444;515;588;540;491;550;525
-91;'328;Guyana;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;512;512;452;271;271;271;271;271;271;137;137;189;479;425;666;702;804;801;1003;1249;932
-91;'328;Guyana;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0
-91;'328;Guyana;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6
-91;'328;Guyana;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;4700;1128;1128;3271;2358;2358;2358;2358;2358;2358;501;501;707;1032;1561;3089;3223;2576;4899;2155.2;74;1135
-91;'328;Guyana;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;1539;745;745;1199;1082;1082;1082;1082;1082;1082;506;506;787;918;1351;2432;3103;2366;3368;1912.4;358;1298
-91;'328;Guyana;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;11;29;29;29;29;29;29;29;29;199;193;194;195;195;206;199;197;194;193
-91;'328;Guyana;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;14;39;39;39;39;39;39;39;39;287;278;284;289;289;319;293;287;285;280
-91;'328;Guyana;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;4800;1100;1800;1000;600;100;200;1400;2700;2700;600;600;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;339;455;582;566;375;26;50;934;2302;2302;602;602;602;602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-91;'328;Guyana;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;4500;888;888;2195;2217;2217;2217;2217;2217;2217;439;439;430;701;1461;2917;2980;2331;4080;1608.2;0;834
-91;'328;Guyana;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;1459;354;354;786;777;777;777;777;777;777;390;390;420;608;1050;2135;2595;1994;2614;1048.4;107;627
-91;'328;Guyana;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5
-91;'328;Guyana;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5
-91;'328;Guyana;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;1002;85;85;85;85;85;85;33;33;225;275;44;47;150;1;5;18;5;11
-91;'328;Guyana;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;312;205;205;205;205;205;205;33;33;252;186;181;76;293;16;38;261;18;99
-91;'328;Guyana;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1
-91;'328;Guyana;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3
-91;'328;Guyana;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;199;199;67;53;53;53;53;53;53;16;16;43;47;47;99;67;218;523;238;68;290
-91;'328;Guyana;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;254;254;97;95;95;95;95;95;95;58;58;100;109;105;194;188;326;548;435;232;572
-91;'328;Guyana;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;11;29;29;29;29;29;29;29;29;7;1;2;3;3;14;7;5;2;1
-91;'328;Guyana;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;14;39;39;39;39;39;39;39;39;9;0;6;11;11;41;15;9;7;2
-91;'328;Guyana;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;7;7;7;3;3;3;3;3;3;13;13;9;9;9;26;26;26;291;291;1;0
-91;'328;Guyana;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;0;4;4;4;5;5;5;5;5;5;25;25;15;15;15;27;27;30;168;168;1;0
-91;'328;Guyana;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;186;186;186;186;186;186;186;186
-91;'328;Guyana;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;270;270;270;270;270;270;270;270
-91;'328;Guyana;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;1400;2900;1100;800;800;1300;2800;900;1200;1200;600;600;600;600;2000;3700;3100;3400;1500;1800;1800;1300;600;300;4400;4300;4000;3500;2700;3300;100;100;335;335;251;304;304;304;304;304;304;37;37;103;31;54;29;38;12;11;35;19;31
-91;'328;Guyana;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;378;409;627;665;781;1012;2797;1174;1365;1365;734;734;734;734;932;1986;1542;2113;719;761;761;920;514;254;2226;2171;2066;1909;1475;1748;134;90;508;508;577;618;618;618;618;618;618;77;77;387;106;370;420;116;43;37;78;57;154
-91;'328;Guyana;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;14;14;2;14;14;14;14;14;14;14;14;44;44;6;6;6;6;6;0;0;0
-91;'328;Guyana;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;68;68;89;68;68;68;68;68;68;68;68;1004;1004;164;164;164;164;164;0;2;3
-91;'328;Guyana;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8030;9675;14026;8240;12431;13884;14220
-91;'328;Guyana;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26252;21921;20880;26206;29747;33441;15990
-91;'328;Guyana;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;760;424;1043;87;52;1459;18
-91;'328;Guyana;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11042;7842;6442;6407;12878;10069;4692
-91;'328;Guyana;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;411;1007;76;3;4;0
-91;'328;Guyana;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;61;61;61;61;61
-91;'328;Guyana;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;36;11;49;1455;18
-91;'328;Guyana;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11012;7842;6381;6346;12817;10008;4631
-91;'328;Guyana;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;1843;4738;591;642;513;629
-91;'328;Guyana;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;28;239;90;40;74;59
-91;'328;Guyana;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;44;66;40;49;44;154
-91;'328;Guyana;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;34;3;5;5;2;5
-91;'328;Guyana;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135;1255;1046;2645;2500;3377;2218
-91;'328;Guyana;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3302;3498;2522;4448;7241;10933;5691
-91;'328;Guyana;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4496;5947;6637;4598;8857;8100;10895
-91;'328;Guyana;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;87;94;18;322;54;82
-91;'328;Guyana;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;17;1;3
-91;'328;Guyana;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;9;161;2301
-91;'328;Guyana;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;162;442;279;314;390;303
-91;'328;Guyana;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11663;10414;11562;15220;9252;12148;3160
-91;'328;Guyana;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32661;31815;25781;24854;29961;33933;37198
-91;'328;Guyana;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2094;2018;1754;1134;99;174;1158
-91;'328;Guyana;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;2;0;1;1;3
-91;'328;Guyana;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-91;'328;Guyana;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;697;622;252;277;472;536
-91;'328;Guyana;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;1;0;0;64;0
-91;'328;Guyana;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17406;16397;10335;11359;14141;16139;17426
-91;'328;Guyana;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;4;28;6;10;4
-91;'328;Guyana;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4903;4606;4685;3945;4003;6183;5782
-91;'328;Guyana;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2031;1998;1744;1088;29;72;1111
-91;'328;Guyana;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10091;10111;10137;9298;11539;11138;13451
-91;'328;Guyana;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;13;5;18;64;28;43
-93;'332;Haiti;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120408.66;123632.66;118383.66;113982.66;136501.66;103987.66;92458.66
-93;'332;Haiti;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;1234;954;1712;931;809;544
-93;'332;Haiti;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;348;348;348;357;380;513;621;595;929;1424;1616;1825;1986;2211;2501;3725;5216;5217;5173;4812;5723;6185;6185;6185;11538;10214;14010;4530;12160;10190;10237;2136;5219;5515;16099;12545;13670;9545;10735;11026;11171;16244;16244;11409;11409;21693;22390;22889;25686;61237;53548;36003;42645.34;32420.38;36365.66;34824.66;49933.66;53629.66;47237.66;47266.66;59792.66;33325.66;30542.66
-93;'332;Haiti;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;0;18;18;18;0;0;0;0;0;57;0;0;24;24;24;24;24;24;108;342;270;47.5;73.6;150;174;397;439;116;99;43;102;124
-93;'332;Haiti;1861;Roundwood;5516;Production;m3;1491498;1498563;1505667;1512812;1524995;1532220;1539486;1546792;1554139;1553528;1559001;1574014;1589505;1591690;1615940;1613098;1630247;1636858;1636627;1636738;1662579;1690963;1709026;1729114;1750548;1773338;1799557;1821599;1842660;1867210;1901817;1980004;2014722;2080155;2145814;2162644;2183371;2184913;2193712;2202646;2209701;2216872;2224158;2231557;2239070;2247047;2255100;2263400;2271686;2280135;2289471;2298933;2308520;2318234;2328074;2337954;2347961;2358091;2368349;2378734;2389726;2400849;2412105
-93;'332;Haiti;1861;Roundwood;5616;Import quantity;m3;;;;;;200;200;100;700;1400;2000;2500;3000;3500;4000;4500;5600;5600;5600;;;;;;;;;;;39;573;573;230;297;383;4145;4145;3300;300;1000;600;600;600;600;600;600;600;600;600;14931;5094;3171;3333.71;9930.13;2763;1974;1302;789;1980;4630;6345;9557;242
-93;'332;Haiti;1861;Roundwood;5622;Import value;1000 USD;;;;;;5;5;3;22;46;68;87;108;133;156;180;234;234;234;;;;;;;;;;;3;50;50;21;25;64;633;426;312;41;133;51;51;51;51;51;51;51;51;51;1572;788;594;1893.04;1045.72;1060;255;345;321;601;500;2659;1584;47
-93;'332;Haiti;1861;Roundwood;5916;Export quantity;m3;;;7100;4900;8600;4300;4300;4300;1200;1200;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0;1;0;0;0;0;63
-93;'332;Haiti;1861;Roundwood;5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;1;0;0;0;0;27
-93;'332;Haiti;1862;Roundwood, coniferous;5516;Production;m3;195527;196093;196661;197233;197807;198385;198967;199551;200139;205730;205608;206809;208049;208223;210164;209936;211308;211837;211819;211828;213895;216166;217611;219218;220933;222756;224854;226618;228303;230267;233036;239291;242069;247304;252557;253903;255562;255685;256389;257104;257668;258242;258825;259417;260018;260656;261300;262000;262627;263303;264050;264807;265574;266352;267139;267929;268730;269540;270361;271192;272071;272961;273862
-93;'332;Haiti;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;461;1698;4630;5058;251;0
-93;'332;Haiti;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;125;514;500;1728;144;0
-93;'332;Haiti;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-93;'332;Haiti;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-93;'332;Haiti;1863;Roundwood, non-coniferous;5516;Production;m3;1295971;1302470;1309006;1315579;1327188;1333835;1340519;1347241;1354000;1347798;1353393;1367205;1381456;1383467;1405776;1403162;1418939;1425021;1424808;1424910;1448684;1474797;1491415;1509896;1529615;1550582;1574703;1594981;1614357;1636943;1668781;1740713;1772653;1832851;1893257;1908741;1927809;1929228;1937323;1945542;1952033;1958630;1965333;1972140;1979052;1986391;1993800;2001400;2009059;2016832;2025421;2034126;2042946;2051882;2060935;2070025;2079231;2088551;2097988;2107542;2117655;2127888;2138243
-93;'332;Haiti;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178;328;282;0;1287;9306;242
-93;'332;Haiti;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;196;87;0;931;1440;47
-93;'332;Haiti;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;63
-93;'332;Haiti;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;27
-93;'332;Haiti;1864;Wood fuel;5516;Production;m3;1256498;1263563;1270667;1277812;1284995;1292220;1299486;1306792;1314139;1321528;1320001;1335014;1350505;1352690;1376940;1374098;1391247;1397858;1397627;1397738;1423579;1451963;1470026;1490114;1511548;1534338;1560557;1582599;1603660;1628210;1662817;1741004;1775722;1841155;1906814;1923644;1944371;1945913;1954712;1963646;1970701;1977872;1985158;1992557;2000070;2008047;2016100;2024400;2032686;2041135;2050471;2059933;2069520;2079234;2089074;2098954;2108961;2119091;2129349;2139734;2150726;2161849;2173105
-93;'332;Haiti;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;206;108;0.58;5;0;0;;;;;;;
-93;'332;Haiti;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;99;13;0.32;2;0;0;;;;;;;
-93;'332;Haiti;1627;Wood fuel, coniferous;5516;Production;m3;100527;101093;101661;102233;102807;103385;103967;104551;105139;105730;105608;106809;108049;108223;110164;109936;111308;111837;111819;111828;113895;116166;117611;119218;120933;122756;124854;126618;128303;130267;133036;139291;142069;147304;152557;153903;155562;155685;156389;157104;157668;158242;158825;159417;160018;160656;161300;162000;162627;163303;164050;164807;165574;166352;167139;167929;168730;169540;170361;171192;172071;172961;173862
-93;'332;Haiti;1628;Wood fuel, non-coniferous;5516;Production;m3;1155971;1162470;1169006;1175579;1182188;1188835;1195519;1202241;1209000;1215798;1214393;1228205;1242456;1244467;1266776;1264162;1279939;1286021;1285808;1285910;1309684;1335797;1352415;1370896;1390615;1411582;1435703;1455981;1475357;1497943;1529781;1601713;1633653;1693851;1754257;1769741;1788809;1790228;1798323;1806542;1813033;1819630;1826333;1833140;1840052;1847391;1854800;1862400;1870059;1877832;1886421;1895126;1903946;1912882;1921935;1931025;1940231;1949551;1958988;1968542;1978655;1988888;1999243
-93;'332;Haiti;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;206;108;0.58;5;0;0;;;;;;;
-93;'332;Haiti;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;99;13;0.32;2;0;0;;;;;;;
-93;'332;Haiti;1865;Industrial roundwood;5516;Production;m3;235000;235000;235000;235000;240000;240000;240000;240000;240000;232000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000;239000
-93;'332;Haiti;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;200;200;100;700;1400;2000;2500;3000;3500;4000;4500;5600;5600;5600;;;;;;;;;;;39;573;573;230;297;383;4145;4145;3300;300;1000;600;600;600;600;600;600;600;600;600;14924;4888;3063;3333.13;9925.13;2763;1974;1302;789;1980;4630;6345;9557;242
-93;'332;Haiti;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;5;5;3;22;46;68;87;108;133;156;180;234;234;234;;;;;;;;;;;3;50;50;21;25;64;633;426;312;41;133;51;51;51;51;51;51;51;51;51;1571;689;581;1892.72;1043.72;1060;255;345;321;601;500;2659;1584;47
-93;'332;Haiti;1865;Industrial roundwood;5916;Export quantity;m3;;;7100;4900;8600;4300;4300;4300;1200;1200;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0;1;0;0;0;0;63
-93;'332;Haiti;1865;Industrial roundwood;5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;1;0;0;0;0;27
-93;'332;Haiti;1866;Industrial roundwood, coniferous;5516;Production;m3;95000;95000;95000;95000;95000;95000;95000;95000;95000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-93;'332;Haiti;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;369;369;102;102;211;4100;4100;3300;300;1000;600;600;600;600;600;600;600;600;600;14896;4820;3021;917;9385;1168;1792;124;461;1698;4630;5058;251;0
-93;'332;Haiti;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;31;8;8;24;617;410;312;41;133;51;51;51;51;51;51;51;51;51;1459;583;570;240;754;102;201;38;125;514;500;1728;144;0
-93;'332;Haiti;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;369;369;102;102;211;4100;4100;3300;300;1000;600;600;600;600;600;600;600;600;600;14896;4820;3021;917;9385;1168;1792;124;461;1698;4630;5058;251;0
-93;'332;Haiti;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;31;8;8;24;617;410;312;41;133;51;51;51;51;51;51;51;51;51;1459;583;570;240;754;102;201;38;125;514;500;1728;144;0
-93;'332;Haiti;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1867;Industrial roundwood, non-coniferous;5516;Production;m3;140000;140000;140000;140000;145000;145000;145000;145000;145000;132000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000;139000
-93;'332;Haiti;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;204;128;195;172;45;45;0;0;0;0;0;0;0;0;0;0;0;0;28;68;42;2416.13;540.13;1595;182;1178;328;282;0;1287;9306;242
-93;'332;Haiti;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;13;17;40;16;16;0;0;0;0;0;0;0;0;0;0;0;0;112;106;11;1652.72;289.72;958;54;307;196;87;0;931;1440;47
-93;'332;Haiti;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;0;0;0;1;0;0;0;0;63
-93;'332;Haiti;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;1;0;0;0;0;27
-93;'332;Haiti;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2413;537;1211;0;1119;160;238;0;658;2641;241
-93;'332;Haiti;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1652;289;832;0;269;97;64;0;130;1091;47
-93;'332;Haiti;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;63
-93;'332;Haiti;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;27
-93;'332;Haiti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;204;128;195;137;45;45;0;0;0;0;0;0;0;0;0;0;0;0;28;68;42;3.13;3.13;384;182;59;168;44;0;629;6665;1
-93;'332;Haiti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;13;17;30;16;16;0;0;0;0;0;0;0;0;0;0;0;0;112;106;11;0.72;0.72;126;54;38;99;23;0;801;349;0
-93;'332;Haiti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1868;Sawlogs and veneer logs;5516;Production;m3;225000;225000;225000;225000;225000;225000;225000;225000;225000;217000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000;224000
-93;'332;Haiti;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;95000;95000;95000;95000;95000;95000;95000;95000;95000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-93;'332;Haiti;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;130000;130000;130000;130000;130000;130000;130000;130000;130000;117000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000;124000
-93;'332;Haiti;1871;Other industrial roundwood;5516;Production;m3;10000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-93;'332;Haiti;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;200;200;100;700;1400;2000;2500;3000;3500;4000;4500;5600;5600;5600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;5;5;3;22;46;68;87;108;133;156;180;234;234;234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1871;Other industrial roundwood;5916;Export quantity;m3;;;7100;4900;8600;4300;4300;4300;1200;1200;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1871;Other industrial roundwood;5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;10000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-93;'332;Haiti;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;200;200;100;700;1400;2000;2500;3000;3500;4000;4500;5600;5600;5600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;5;5;3;22;46;68;87;108;133;156;180;234;234;234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;7100;4900;8600;4300;4300;4300;1200;1200;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1630;Wood charcoal;5510;Production;t;9358;9488;9620;9754;9889;10027;10167;10308;10451;10597;10610;10860;11123;11208;11611;11612;11918;12060;12116;12167;12645;13180;13551;13969;14412;14902;15448;15945;16444;17020;17780;19391;20225;21702;22709;23277;23964;24905;25413;25931;26434;26947;27470;28002;28546;29117;29700;30300;30902;31521;32163;32817;33485;34166;34862;35555;36262;36983;37718;38468;39224;39994;40779
-93;'332;Haiti;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;544;544;0;0;0;0;0;0;0;0;0;0;0;0;1429;208;53;37;37;37;37;37;7;7;0;0;1;4
-93;'332;Haiti;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;0;0;0;0;0;0;0;0;0;0;0;0;179;61;13;7;7;7;7;7;9;8;1;1;10;7
-93;'332;Haiti;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;1;2;2;2;2;10;10;8;1;1;1;1
-93;'332;Haiti;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;6;6;6;6;6;6;4;1;1;1;1
-93;'332;Haiti;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2143;795;2033;5.27;20.82;72.82;11.82;754.82;2292.82;1291.82;1211.82;1253.82;1205.82;666.82
-93;'332;Haiti;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;86;52;120;33.1;43.66;90.66;50.66;139.66;97.66;84.66;55.66;113.66;59.66;54.66
-93;'332;Haiti;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;0;0;0;0;0;0;0;0;0;0;3
-93;'332;Haiti;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143;783;1996;4;17;69;8;751;2289;1288;1208;1250;1202;663
-93;'332;Haiti;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;38;109;32;39;86;46;135;93;80;51;109;55;50
-93;'332;Haiti;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;0;0;0;0;0;0;0;0;0;0;3
-93;'332;Haiti;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;37;1.27;3.82;3.82;3.82;3.82;3.82;3.82;3.82;3.82;3.82;3.82
-93;'332;Haiti;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;11;1.1;4.66;4.66;4.66;4.66;4.66;4.66;4.66;4.66;4.66;4.66
-93;'332;Haiti;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1872;Sawnwood;5516;Production;m3;22400;17400;17400;16400;15000;15500;15000;12600;14200;12800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;13800;5677;5677;5677;5677
-93;'332;Haiti;1872;Sawnwood;5616;Import quantity;m3;;;;;;1400;1800;1800;2800;3800;5000;6000;7000;8000;9000;10000;10600;10600;10600;10600;11800;9600;9600;9600;11200;7852;12323;325;26902;22241;22241;1803;6172;6632;31010;20500;17700;8500;25000;21900;5800;6200;6200;18935;18935;22000;23800;19567;37393;118382;99065;58093;68415;54895;65056;78510;88472;95428;70132;76799;64401;34000;30650
-93;'332;Haiti;1872;Sawnwood;5622;Import value;1000 USD;;;;;;167;192;185;203;500;670;860;1000;1200;1400;1700;1906;1906;1906;1906;2200;2100;2100;2100;3043;2217;3533;107;4695;3857;3857;286;990;1297;6593;4842;4751;3546;4813;4861;1530;2042;2042;3505;3505;4444;4823;5322;8119;31442;25299;14223;19162;14827;16752;21067;25666;26886;20622;21478;24249;12605;7189
-93;'332;Haiti;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;0;0;79;79;79;79;79;79;79;79;79;79;3;0;0;4;25;0;0;0;0;0
-93;'332;Haiti;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;57;0;0;24;24;24;24;24;24;0;0;0;0;0;0;0;3;43;0;0;0;0;0
-93;'332;Haiti;1632;Sawnwood, coniferous;5516;Production;m3;13200;14200;14200;13200;11500;11750;11500;4300;4600;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;7900;0;0;0;0
-93;'332;Haiti;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;10395;6968;10364;226;25929;21209;21209;1687;5131;6430;29697;19300;16700;7000;24400;21000;3100;3600;3600;17328;17328;14000;17000;12767;36359;117812;97610;56326;66949;53379;63661;76856;87000;94000;69531;76205;63697;33000;30570
-93;'332;Haiti;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;2839;2037;3040;66;4375;3424;3424;244;705;1208;6025;4341;4269;2105;4417;4403;506;918;918;3015;3015;2444;3123;3622;7295;30994;23970;12570;18061;13318;15632;19525;24576;25834;19972;20842;23715;11781;7130
-93;'332;Haiti;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1633;Sawnwood, non-coniferous;5516;Production;m3;9200;3200;3200;3200;3500;3750;3500;8300;9600;4900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5900;5677;5677;5677;5677
-93;'332;Haiti;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;1400;1800;1800;2800;3800;5000;6000;7000;8000;9000;10000;10600;10600;10600;10600;11800;9600;9600;9600;805;884;1959;99;973;1032;1032;116;1041;202;1313;1200;1000;1500;600;900;2700;2600;2600;1607;1607;8000;6800;6800;1034;570;1455;1767;1466;1516;1395;1654;1472;1428;601;594;704;1000;80
-93;'332;Haiti;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;167;192;185;203;500;670;860;1000;1200;1400;1700;1906;1906;1906;1906;2200;2100;2100;2100;204;180;493;41;320;433;433;42;285;89;568;501;482;1441;396;458;1024;1124;1124;490;490;2000;1700;1700;824;448;1329;1653;1101;1509;1120;1542;1090;1052;650;636;534;824;59
-93;'332;Haiti;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;0;0;79;79;79;79;79;79;79;79;79;79;3;0;0;4;25;0;0;0;0;0
-93;'332;Haiti;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;57;0;0;24;24;24;24;24;24;0;0;0;0;0;0;0;3;43;0;0;0;0;0
-93;'332;Haiti;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;1;60;100;300;300;0;0;1100;1200;1200;14;14;14;14;14;14;41;126;28;188;246;14;10;10;0;0;0;2;0;0
-93;'332;Haiti;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;3;32;75;193;193;0;0;594;795;795;11;11;11;11;11;11;121;315;65;20;46;44;30;9;0;0;0;6;0;0
-93;'332;Haiti;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1340;1332;9094;7000;7300;7150;6800;3700;5100;8100;8100;2111;2111;7802;9702;9702;9702;44758;34401;21982;23952;18220;22848;21370;33926;26613;36136;26635;45081;10219;23638
-93;'332;Haiti;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;350;367;2552;1842;1361;1397;2451;1140;2052;3198;3198;772;772;2767;3437;3437;3437;16790;13159;9101;10172;9655;10043;7493;10374;11541;10226;9803;17812;5451;7783
-93;'332;Haiti;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-93;'332;Haiti;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;1;0;0;0;0;0
-93;'332;Haiti;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;686;1079;1158;9034;6700;7000;7000;6800;3700;4800;7500;7500;1509;1509;7200;9100;9100;9100;42086;32471;18830;21567;15903;18254;17642;31070;24498;27117;23543;41167;7294;19370
-93;'332;Haiti;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;274;321;2494;1766;1285;1285;2451;1140;1940;2945;2945;536;536;2531;3201;3201;3201;15407;12347;7628;9073;8623;8404;6278;9277;10611;8254;8596;15938;3733;5683
-93;'332;Haiti;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0
-93;'332;Haiti;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;1;0;0;0;0;0
-93;'332;Haiti;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;166;79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;48;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;300;300;150;0;0;300;600;600;134;134;134;134;134;134;10;138;72;121;45;26;4;8;8;8;11;11;28;424
-93;'332;Haiti;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;76;76;112;0;0;112;253;253;22;22;22;22;22;22;10;75;33;66;11;27;1;5;5;6;7;7;54;28
-93;'332;Haiti;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;889;442;196;57;65;28;0;42;26;32;64;47;47;116
-93;'332;Haiti;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;195;64;34;22;8;0;14;16;9;17;15;15;3
-93;'332;Haiti;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697;95;95;14;0;0;0;0;0;0;0;0;468;468;468;468;468;468;1773;1350;2884;2207;2207;4540;3724;2806;2081;8979;3017;3856;2850;3728
-93;'332;Haiti;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;28;28;10;0;0;0;0;0;0;0;0;214;214;214;214;214;214;648;542;1376;999;999;1604;1214;1078;909;1957;1183;1852;1649;2069
-93;'332;Haiti;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;460;460;460;460;460;1463;1210;2173;1751;1751;4524;3691;2736;1914;3047;2768;3452;1980;1965
-93;'332;Haiti;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;213;213;213;213;213;476;452;1020;809;809;1590;1171;1034;733;1704;1078;1649;962;993
-93;'332;Haiti;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;303;133;704;307;307;14;27;64;161;5926;203;358;824;1713
-93;'332;Haiti;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;163;81;347;129;129;14;38;39;171;248;92;191;675;1062
-93;'332;Haiti;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;7;7;7;149;149;2;6;6;6;6;46;46;46;50
-93;'332;Haiti;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;9;9;9;61;61;0;5;5;5;5;13;12;12;14
-93;'332;Haiti;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697;95;95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;28;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-93;'332;Haiti;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;147;68;116;54;54;0;0;0;0;0;0;1004;1004;1004;1004;1004;1004;811;811;818;25.06;12;319;67;748;748;97;154;204;163;1
-93;'332;Haiti;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;46;6;70;40;40;0;0;0;0;0;0;214;214;214;214;214;214;409;409;421;33.2;7;155;64;142;142;70;231;86;77;22
-93;'332;Haiti;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;846;630;420;775;828;509;1206;1206;657;509;177;215;215
-93;'332;Haiti;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;281;210;36;61;104;165;322;322;89;75;30;85;85
-93;'332;Haiti;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;0;78;54;54;0;0;0;0;0;0;357;357;357;357;357;357;783;783;783;12.06;12;14;31;0;0;0;0;0;0;0
-93;'332;Haiti;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;0;59;40;40;0;0;0;0;0;0;142;142;142;142;142;142;398;398;398;6.2;7;10;10;0;0;0;0;0;0;0
-93;'332;Haiti;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;357;357;357;783;783;783;12.06;12;14;31;0;0;0;0;0;0;0
-93;'332;Haiti;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;142;142;142;142;142;398;398;398;6.2;7;10;10;0;0;0;0;0;0;0
-93;'332;Haiti;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06;1;3;20;;;;;;;
-93;'332;Haiti;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.2;1;5;5;;;;;;;
-93;'332;Haiti;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;346;346;346;346;346;772;772;772;0;0;0;0;;;;;;;
-93;'332;Haiti;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;137;137;393;393;393;0;1;0;0;;;;;;;
-93;'332;Haiti;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;0;0;0;0;0;0;0
-93;'332;Haiti;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0
-93;'332;Haiti;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-93;'332;Haiti;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-93;'332;Haiti;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;;;;;;;
-93;'332;Haiti;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;;;;;;;
-93;'332;Haiti;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;0;78;54;54;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;0;59;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-93;'332;Haiti;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;38;0;0;0;0;0;0;0;0;647;647;647;647;647;647;28;28;35;13;0;305;36;748;748;97;154;204;163;1
-93;'332;Haiti;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;11;0;0;0;0;0;0;0;0;72;72;72;72;72;72;11;11;23;27;0;145;54;142;142;70;231;86;77;22
-93;'332;Haiti;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;733;517;420;775;828;509;1206;1206;657;509;177;215;215
-93;'332;Haiti;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;196;125;36;61;104;165;322;322;89;75;30;85;85
-93;'332;Haiti;1876;Paper and paperboard;5610;Import quantity;t;1300;1300;1300;1500;1600;1300;1700;1700;2200;3100;3100;3100;3100;3100;3200;4600;5900;5900;5800;5500;5300;6300;6300;6300;12300;11827;17050;5710;9010;8134;8134;1863;6799;4891;7221;5400;5900;4101;3899;6300;6800;7700;7700;9360;9360;18035;17535;17535;17535;10838;14019;12808;10656;6466;7354;4695;15729;15309;15108;12507;13150;8559;11179
-93;'332;Haiti;1876;Paper and paperboard;5622;Import value;1000 USD;348;348;348;357;380;341;424;407;704;878;878;878;878;878;945;1845;3076;3077;3033;2906;3523;4085;4085;4085;8495;7997;10477;4423;7465;6330;6330;1250;3800;3817;6673;4998;6788;4097;3430;4892;6944;10158;10158;6856;6856;14206;13854;13854;13854;10638;13465;11466;11325;6789;8214;5858;13251;14633;15626;15198;14866;13539;15440
-93;'332;Haiti;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;39;39;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;26;4;2;273;0;74;74;0;6;9;4;2
-93;'332;Haiti;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;21;1.5;2.6;40;2;66;66;23;23;12;16;8
-93;'332;Haiti;2042;Graphic papers;5610;Import quantity;t;300;300;300;400;500;400;500;400;600;1000;1000;1000;1000;1000;1100;1000;1300;1300;1200;900;1300;1300;1300;1300;3443;2522;2918;1358;2330;2473;2473;115;3199;2591;1221;2400;3700;3701;3399;3500;2800;2400;2400;4965;4965;8961;8461;8461;8461;3569;6391;6280;5137;4152;4657;1744;11687;11168;10343;6383;9393;6173;8302
-93;'332;Haiti;2042;Graphic papers;5622;Import value;1000 USD;76;76;76;86;104;116;146;147;186;258;258;258;258;258;325;345;697;698;654;527;723;785;785;785;2798;1944;1734;1149;2120;2209;2209;135;2484;2140;2088;2538;3597;3597;2730;2684;3169;2811;2811;3610;3610;6316;5964;5964;5964;3675;6782;6126;5590;4078;5051;2362;8828;9618;10134;8831;10274;9048;10257
-93;'332;Haiti;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;0;0;0;74;74;0;6;9;1;2
-93;'332;Haiti;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;1.5;0;2;2;66;66;22;19;11;7;8
-93;'332;Haiti;1671;Newsprint;5610;Import quantity;t;200;200;200;300;400;300;300;300;400;700;700;700;700;700;800;700;700;700;600;300;800;600;600;600;913;641;423;334;20;468;468;;;21;354;600;300;300;300;100;1500;1300;1300;1099;1099;2800;2600;2600;2600;633;749;744;1674;1638;2316;1441;2062;936;1691;411;1059;1269;723
-93;'332;Haiti;1671;Newsprint;5622;Import value;1000 USD;52;52;52;62;80;57;71;80;89;123;123;123;123;123;190;210;312;312;267;139;373;285;285;285;515;350;256;186;22;335;335;;;13;323;380;238;238;187;71;1685;1324;1324;561;561;1411;1307;1307;1307;421;506;494;1312;1259;1909;1505;991;637;1462;433;983;1808;754
-93;'332;Haiti;1674;Printing and writing papers;5610;Import quantity;t;100;100;100;100;100;100;200;100;200;300;300;300;300;300;300;300;600;600;600;600;500;700;700;700;2530;1881;2495;1024;2310;2005;2005;115;3199;2570;867;1800;3400;3401;3099;3400;1300;1100;1100;3866;3866;6161;5861;5861;5861;2936;5642;5536;3463;2514;2341;303;9625;10232;8652;5972;8334;4904;7579
-93;'332;Haiti;1674;Printing and writing papers;5622;Import value;1000 USD;24;24;24;24;24;59;75;67;97;135;135;135;135;135;135;135;385;386;387;388;350;500;500;500;2283;1594;1478;963;2098;1874;1874;135;2484;2127;1765;2158;3359;3359;2543;2613;1484;1487;1487;3049;3049;4905;4657;4657;4657;3254;6276;5632;4278;2819;3142;857;7837;8981;8672;8398;9291;7240;9503
-93;'332;Haiti;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;4;0;0;0;74;74;0;6;9;1;2
-93;'332;Haiti;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;1.5;0;2;2;66;66;22;19;11;7;8
-93;'332;Haiti;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;238;100;100;0;0;800;800;800;800;800;800;1363;1947;1771;1517;1517;1217;23;55;55;46;1250;511;309;84
-93;'332;Haiti;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;149;108;87;0;0;631;631;631;631;631;631;1404;1851;1775;1470;1470;1098;56;60;60;312;1768;625;376;143
-93;'332;Haiti;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2354;2146;1500;900;700;700;605;605;2900;2600;2600;2600;484;1638;3224;1628;807;681;26;9051;9723;7813;4318;7067;4244;6781
-93;'332;Haiti;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2062;1561;1119;911;997;997;477;477;2333;2085;2085;2085;605;1853;3199;2217;1066;1139;87;7217;8277;7761;5852;7266;5983;8109
-93;'332;Haiti;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;0;0;0;1;1;0;0;9;0;1
-93;'332;Haiti;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1.5;0;1;0;1;1;2;1;10;0;1
-93;'332;Haiti;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785;715;1800;300;400;400;2461;2461;2461;2461;2461;2461;1089;2057;541;318;190;443;254;519;454;793;404;756;351;714
-93;'332;Haiti;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;833;1386;486;490;490;1941;1941;1941;1941;1941;1941;1245;2572;658;591;283;905;714;560;644;599;778;1400;881;1251
-93;'332;Haiti;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;0;0;0;0;73;73;0;6;0;1;1
-93;'332;Haiti;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;1;2;65;65;20;18;1;7;7
-93;'332;Haiti;1675;Other paper and paperboard;5610;Import quantity;t;1000;1000;1000;1100;1100;900;1200;1300;1600;2100;2100;2100;2100;2100;2100;3600;4600;4600;4600;4600;4000;5000;5000;5000;8857;9305;14132;4352;6680;5661;5661;1748;3600;2300;6000;3000;2200;400;500;2800;4000;5300;5300;4395;4395;9074;9074;9074;9074;7269;7628;6528;5519;2314;2697;2951;4042;4141;4765;6124;3757;2386;2877
-93;'332;Haiti;1675;Other paper and paperboard;5622;Import value;1000 USD;272;272;272;271;276;225;278;260;518;620;620;620;620;620;620;1500;2379;2379;2379;2379;2800;3300;3300;3300;5697;6053;8743;3274;5345;4121;4121;1115;1316;1677;4585;2460;3191;500;700;2208;3775;7347;7347;3246;3246;7890;7890;7890;7890;6963;6683;5340;5735;2711;3163;3496;4423;5015;5492;6367;4592;4491;5183
-93;'332;Haiti;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;39;39;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;273;0;0;0;0;0;0;3;0
-93;'332;Haiti;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.6;38;0;0;0;1;4;1;9;0
-93;'332;Haiti;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;321;321;5000;5000;5000;5000;110;115;191;103;207;319;163;347;300;252;618;869;901;791
-93;'332;Haiti;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;249;249;354;354;4998;4998;4998;4998;198;247;404;250;490;635;381;564;440;474;1023;1213;1665;1262
-93;'332;Haiti;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;3200;3000;3000;2969;2969;2969;2969;2969;2969;7088;7240;5902;5267;2024;2268;2637;3669;3817;4498;5492;2808;1421;2028
-93;'332;Haiti;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1522;2925;5105;5105;1842;1842;1842;1842;1842;1842;6479;5908;4290;5028;2007;2046;2326;3662;4299;4805;5156;2903;2320;3284
-93;'332;Haiti;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;0;0;0;0;0;0;3;0
-93;'332;Haiti;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;0;1;4;1;9;0
-93;'332;Haiti;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;100;100;100;933;933;933;933;933;933;3850;3480;4157;2620;1363;1694;1686;1319;982;653;767;126;89;33
-93;'332;Haiti;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;107;140;140;579;579;579;579;579;579;1960;1536;2220;1948;998;1197;1131;879;736;790;677;246;286;99
-93;'332;Haiti;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;200;100;100;177;177;177;177;177;177;1697;2471;889;105;26;59;156;864;979;1128;405;1080;656;405
-93;'332;Haiti;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;295;90;90;110;110;110;110;110;110;2634;2642;1040;199;78;111;244;1384;1570;685;413;1045;989;726
-93;'332;Haiti;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2900;2800;2800;1848;1848;1848;1848;1848;1848;1486;1159;842;2532;625;505;785;1378;1748;2293;4108;1478;572;1315
-93;'332;Haiti;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;2523;4875;4875;1146;1146;1146;1146;1146;1146;1859;1537;1017;2870;920;727;940;1339;1933;3043;3914;1459;846;1866
-93;'332;Haiti;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;0;0;0;0;0;0;3;0
-93;'332;Haiti;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;0;1;4;1;9;0
-93;'332;Haiti;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;55;130;14;10;10;10;10;108;108;424;212;124;104;275
-93;'332;Haiti;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;26;193;13;11;11;11;11;60;60;287;152;153;199;593
-93;'332;Haiti;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;500;400;500;2000;2000;1105;1105;1105;1105;1105;1105;71;273;435;149;83;110;151;26;24;15;14;80;64;58
-93;'332;Haiti;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;700;686;560;1993;1993;1050;1050;1050;1050;1050;1050;286;528;646;457;214;482;789;197;276;213;188;476;506;637
-93;'332;Haiti;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.6;0;0;0;0;0;0;0;0;0
-93;'332;Haiti;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;12968;7267;6408;12059;9802;7185
-93;'332;Haiti;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;241;188;85;171;141;132
-93;'332;Haiti;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;279;48;89;88;117;79
-93;'332;Haiti;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0
-93;'332;Haiti;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;40;7;39;20;57;42
-93;'332;Haiti;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0
-93;'332;Haiti;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;239;41;50;68;60;37
-93;'332;Haiti;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;737;466;603;1684;705;1311
-93;'332;Haiti;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;14;0;0;23;1;78
-93;'332;Haiti;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;67;258;42;146;123;266
-93;'332;Haiti;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;79;74;65;92;108;25
-93;'332;Haiti;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4159;4423;2023;2481;3413;1430;2592
-93;'332;Haiti;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;9;9;9;9;9
-93;'332;Haiti;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085;4752;3557;2279;5593;6363;1967
-93;'332;Haiti;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;135;100;2;41;12;13
-93;'332;Haiti;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;116;26;546;546;546;546
-93;'332;Haiti;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-93;'332;Haiti;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;2594;889;368;589;518;424
-93;'332;Haiti;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;9;6;11;7
-93;'332;Haiti;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58575;57035;63879;60308;64650;60860;54731
-93;'332;Haiti;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910;554;650;1528;717;566;288
-93;'332;Haiti;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;10;2;19;636;407;2
-93;'332;Haiti;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200
-93;'332;Haiti;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1077;3258;4530;2987;2760;2441;1471
-93;'332;Haiti;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;1;1;0;0;0
-93;'332;Haiti;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8201;10113;8534;9431;6552;5194;6948
-93;'332;Haiti;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;5;7;1;0;2;0
-93;'332;Haiti;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24483;20419;28072;26822;31135;31475;25035
-93;'332;Haiti;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;101;52;64;172;171;19
-93;'332;Haiti;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24800;23235;22741;21049;23567;21343;21275
-93;'332;Haiti;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;248;390;1262;345;193;69
-94;'336;Holy See;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;111;;;;;
-94;'336;Holy See;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;;;;;
-94;'336;Holy See;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;111;;;;;
-94;'336;Holy See;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;;;;;
-94;'336;Holy See;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;15;;;;;
-94;'336;Holy See;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-94;'336;Holy See;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;96;;;;;
-94;'336;Holy See;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;;;;;
-95;'340;Honduras;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348960;393806;355643;303524;409273.11;633861.81;576836
-95;'340;Honduras;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327973;233352;157942;140061;174857.46;205474;206140
-95;'340;Honduras;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1430;1584;2783;3666;6853;15019;12822;15271;13100;13883;17878;15190;15110;27587;12213;30455;32656;36723;27309;28030;31795;28832;21139;38187;68158;29954;37218;72107;59472;37567;68646;82274;54720;53642;96163;91517;71591;104358;61943;69441;60681;72462;101776;91890;109910;122396;128696;139742;98818;139466;155702;139095;152162.9;155657;178334;144411;175703;221205;166425;138261;197229.11;299386.81;226135
-95;'340;Honduras;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;7528;7088;8459;10819;10226;10645;12262;14461;15332;13280;19394;27279;39853;42240;45496;43997;43901;44833;44531;27017;30284;47209;36973;32778;34010;29953;37789;33380;39470;20475;14487;31974;40218;32766;20534;26678;37324;42102;40798;45219;49862;49119;48221;43271;44737;48445;50675;43936;26942;38617;29778;60363;104157;132777;154799.79;176485;171948;89702;64088;42958;75040.46;75768;92974
-95;'340;Honduras;1861;Roundwood;5516;Production;m3;8439403;8417275;8580248;8808324;8926502;8724783;8568168;8676655;8770247;8683943;8845876;9252701;9151012;8880839;8936450;9130030;9200823;9155820;9130159;9288739;9278701;9272686;8965209;9090694;9257570;9278634;9445008;9422292;9345676;9301868;9280765;9107556;9129968;9324869;9108670;9283549;9352559;9452936;9550370;9488405;9551959;9681323;9504428;9619212;9632614;9541133;9463200;9313800;9119185;9195298;9358905;9122285;9079767;9103329;9097616;9037300;9331419;9289272;9030225;8982595;8940160;8899606;8860873
-95;'340;Honduras;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22600;51600;0;0;0;0;0;300;10000;0;300;981;1691;4067;987;442;163;1294;783;2022;144;51;986;78;3894;1898;1033;30;1275
-95;'340;Honduras;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16343;17100;0;0;0;0;0;60;1025;0;89;282;694;1331;356;179;35;288;304;196;48;17;311;35;2348;851;329;25;363
-95;'340;Honduras;1861;Roundwood;5916;Export quantity;m3;52300;43500;36200;35800;30200;20200;15300;16700;16000;12000;9700;12000;14500;10600;15900;24100;24700;22200;19300;29600;20700;19000;3900;3800;2000;2000;16200;26200;80700;8633;4865;55223;71152;66800;67000;36100;35000;37000;40000;40000;20000;20074;20025;12526;14926;1335;4151;2027;2226;2707;1761;1602;2054;10386;5173;7599;10628;9085;5980;11189;10780;6037;101227
-95;'340;Honduras;1861;Roundwood;5922;Export value;1000 USD;2035;1700;1528;1714;1384;962;725;902;873;712;637;708;1207;1133;1470;2261;2678;2882;2353;4414;2774;2454;632;710;366;356;1687;3834;12834;2483;1483;14593;13173;12541;13239;19856;15251;9589;7490;7490;4000;4014;4004;680;1151;188;437;596;508;871;337;671;1999;3257;1756;3229;4238;3756;2894;3603;4132;2775;50940
-95;'340;Honduras;1862;Roundwood, coniferous;5516;Production;m3;3256760;3225955;3370182;3534444;3618739;3468068;3307432;3386829;3466261;3360727;3501261;3837193;3830698;3496278;3486592;3698866;3788530;3757251;3693836;3779314;3745177;3674840;3315052;3441191;3605140;3578273;3741108;3717872;3615596;3527730;3499623;3342297;3414669;3551929;3326152;3463324;3525008;3617049;3691068;3624615;3693509;3822330;3651056;3767665;3789138;3711413;3651500;3518500;3334550;3438789;3629530;3417054;3397338;3438178;3460202;3441628;3773808;3756715;3540324;3524612;3510614;3497236;3484459
-95;'340;Honduras;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;1;3838;733;85;19;425
-95;'340;Honduras;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;1;2321;587;31;19;54
-95;'340;Honduras;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4597;4898;3107;9392;7923;5844;5374
-95;'340;Honduras;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312;1319;1431;2881;3057;2683;2652
-95;'340;Honduras;1863;Roundwood, non-coniferous;5516;Production;m3;5182643;5191320;5210066;5273880;5307763;5256715;5260736;5289826;5303986;5323216;5344615;5415508;5320314;5384561;5449858;5431164;5412293;5398569;5436323;5509425;5533524;5597846;5650157;5649503;5652430;5700361;5703900;5704420;5730080;5774138;5781142;5765259;5715299;5772940;5782518;5820225;5827551;5835887;5859302;5863790;5858450;5858993;5853372;5851547;5843476;5829720;5811700;5795300;5784635;5756509;5729375;5705231;5682429;5665151;5637414;5595672;5557611;5532557;5489901;5457983;5429546;5402370;5376414
-95;'340;Honduras;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;77;56;1165;948;11;850
-95;'340;Honduras;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;34;27;264;298;6;309
-95;'340;Honduras;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6031;4187;2873;1797;2857;193;95853
-95;'340;Honduras;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2926;2437;1463;722;1075;92;48288
-95;'340;Honduras;1864;Wood fuel;5516;Production;m3;7629403;7657275;7685248;7713324;7741502;7769783;7798168;7826655;7855247;7883943;7915876;7918701;7899012;8003839;8068450;8045030;8025823;8009820;8066159;8176739;8212701;8308686;8394209;8400694;8403570;8467634;8455008;8454292;8474676;8550868;8571765;8549556;8520368;8609069;8621870;8637549;8633559;8657936;8694370;8732405;8719959;8710323;8703428;8699212;8697614;8668133;8641200;8616800;8594885;8575298;8535104;8497285;8461767;8428476;8397345;8341038;8287017;8235200;8185513;8137883;8095448;8054894;8016161
-95;'340;Honduras;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;67;67;67;67;7;0;419;95;186;80;0;;;;;;;
-95;'340;Honduras;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;19;19;19;19;2;0;27;6;14;4;0;;;;;;;
-95;'340;Honduras;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;730;106;933;933;414;86;460;717;86;2533;5617;313;313;201;5660;5660;3732;4406
-95;'340;Honduras;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;85;18;453;453;132;52;259;471;17;1183;2552;143;143;45;1898;1898;1880;2425
-95;'340;Honduras;1627;Wood fuel, coniferous;5516;Production;m3;2516760;2525955;2535182;2544444;2553739;2563068;2572432;2581829;2591261;2600727;2611261;2612193;2605698;2640278;2661592;2653866;2647530;2642251;2660836;2697314;2709177;2740840;2769052;2771191;2772140;2793273;2789108;2788872;2795596;2820730;2827623;2820297;2810669;2839929;2844152;2849324;2848008;2856049;2868068;2880615;2876509;2873330;2871056;2869665;2869138;2859413;2850500;2842500;2835250;2828789;2815530;2803054;2791338;2780356;2770086;2751512;2733692;2716599;2700208;2684496;2670498;2657120;2644343
-95;'340;Honduras;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;313;39;5539;5539;3732;4406
-95;'340;Honduras;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;17;1883;1883;1880;2425
-95;'340;Honduras;1628;Wood fuel, non-coniferous;5516;Production;m3;5112643;5131320;5150066;5168880;5187763;5206715;5225736;5244826;5263986;5283216;5304615;5306508;5293314;5363561;5406858;5391164;5378293;5367569;5405323;5479425;5503524;5567846;5625157;5629503;5631430;5674361;5665900;5665420;5679080;5730138;5744142;5729259;5709699;5769140;5777718;5788225;5785551;5801887;5826302;5851790;5843450;5836993;5832372;5829547;5828476;5808720;5790700;5774300;5759635;5746509;5719574;5694231;5670429;5648120;5627259;5589526;5553325;5518601;5485305;5453387;5424950;5397774;5371818
-95;'340;Honduras;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;121;121;0;0
-95;'340;Honduras;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;15;15;0;0
-95;'340;Honduras;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;67;67;67;67;7;0;419;95;186;80;0;;;;;;;
-95;'340;Honduras;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;0;0;0;0;0;0;19;19;19;19;2;0;27;6;14;4;0;;;;;;;
-95;'340;Honduras;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;730;106;933;933;414;86;460;717;86;2533;5617;;;;;;;
-95;'340;Honduras;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;85;18;453;453;132;52;259;471;17;1183;2552;;;;;;;
-95;'340;Honduras;1865;Industrial roundwood;5516;Production;m3;810000;760000;895000;1095000;1185000;955000;770000;850000;915000;800000;930000;1334000;1252000;877000;868000;1085000;1175000;1146000;1064000;1112000;1066000;964000;571000;690000;854000;811000;990000;968000;871000;751000;709000;558000;609600;715800;486800;646000;719000;795000;856000;756000;832000;971000;801000;920000;935000;873000;822000;697000;524300;620000;823801;625000;618000;674853;700271;696262;1044402;1054072;844712;844712;844712;844712;844712
-95;'340;Honduras;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22300;51600;0;0;0;0;0;300;10000;0;300;914;1624;4000;920;435;163;875;688;1836;64;51;986;78;3894;1898;1033;30;1275
-95;'340;Honduras;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16300;17100;0;0;0;0;0;60;1025;0;89;263;675;1312;337;177;35;261;298;182;44;17;311;35;2348;851;329;25;363
-95;'340;Honduras;1865;Industrial roundwood;5916;Export quantity;m3;52300;43500;36200;35800;30200;20200;15300;16700;16000;12000;9700;12000;14500;10600;15900;24100;24700;22200;19300;29600;20700;19000;3900;3800;2000;2000;16200;26200;80700;8633;4865;55223;71152;66800;67000;36100;35000;37000;40000;40000;20000;20074;20025;12526;14926;605;4045;1094;1293;2293;1675;1142;1337;10300;2640;1982;10315;8772;5779;5529;5120;2305;96821
-95;'340;Honduras;1865;Industrial roundwood;5922;Export value;1000 USD;2035;1700;1528;1714;1384;962;725;902;873;712;637;708;1207;1133;1470;2261;2678;2882;2353;4414;2774;2454;632;710;366;356;1687;3834;12834;2483;1483;14593;13173;12541;13239;19856;15251;9589;7490;7490;4000;4014;4004;680;1151;103;419;143;55;739;285;412;1528;3240;573;677;4095;3613;2849;1705;2234;895;48515
-95;'340;Honduras;1866;Industrial roundwood, coniferous;5516;Production;m3;740000;700000;835000;990000;1065000;905000;735000;805000;875000;760000;890000;1225000;1225000;856000;825000;1045000;1141000;1115000;1033000;1082000;1036000;934000;546000;670000;833000;785000;952000;929000;820000;707000;672000;522000;604000;712000;482000;614000;677000;761000;823000;744000;817000;949000;780000;898000;920000;852000;801000;676000;499300;610000;814000;614000;606000;657822;690116;690116;1040116;1040116;840116;840116;840116;840116;840116
-95;'340;Honduras;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;300;10000;0;300;900;1100;3000;788;168;119;369;413;890;5;0;746;1;3838;733;85;19;425
-95;'340;Honduras;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;60;1025;0;89;256;450;937;291;60;15;85;46;72;0;0;258;1;2321;587;31;19;54
-95;'340;Honduras;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7241;4457;55000;71000;66000;64300;35800;35000;37000;40000;40000;20000;20000;20000;12414;12414;605;4045;1094;1293;1832;1111;480;69;6751;1942;850;4284;4585;3068;3853;2384;2112;968
-95;'340;Honduras;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191;1337;14557;13091;12381;12387;19783;15251;9589;7490;7490;4000;4000;4000;658;658;103;419;143;55;495;163;34;9;676;294;62;1169;1176;1414;998;1174;803;227
-95;'340;Honduras;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;300;10000;0;300;900;1100;3000;788;168;119;369;413;890;5;0;746;1;3838;733;85;19;425
-95;'340;Honduras;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;60;1025;0;89;256;450;937;291;60;15;85;46;72;0;0;258;1;2321;587;31;19;54
-95;'340;Honduras;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7241;4457;55000;71000;66000;64300;35800;35000;37000;40000;40000;20000;20000;20000;12414;12414;605;4045;1094;1293;1832;1111;480;69;6751;1942;850;4284;4585;3068;3853;2384;2112;968
-95;'340;Honduras;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191;1337;14557;13091;12381;12387;19783;15251;9589;7490;7490;4000;4000;4000;658;658;103;419;143;55;495;163;34;9;676;294;62;1169;1176;1414;998;1174;803;227
-95;'340;Honduras;1867;Industrial roundwood, non-coniferous;5516;Production;m3;70000;60000;60000;105000;120000;50000;35000;45000;40000;40000;40000;109000;27000;21000;43000;40000;34000;31000;31000;30000;30000;30000;25000;20000;21000;26000;38000;39000;51000;44000;37000;36000;5600;3800;4800;32000;42000;34000;33000;12000;15000;22000;21000;22000;15000;21000;21000;21000;25000;10000;9801;11000;12000;17031;10155;6146;4286;13956;4596;4596;4596;4596;4596
-95;'340;Honduras;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22300;51600;0;0;0;0;0;0;0;0;0;14;524;1000;132;267;44;506;275;946;59;51;240;77;56;1165;948;11;850
-95;'340;Honduras;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16300;17100;0;0;0;0;0;0;0;0;0;7;225;375;46;117;20;176;252;110;44;17;53;34;27;264;298;6;309
-95;'340;Honduras;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1392;408;223;152;800;2700;300;0;0;0;0;0;74;25;112;2512;0;0;0;0;461;564;662;1268;3549;698;1132;6031;4187;2711;1676;2736;193;95853
-95;'340;Honduras;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;146;36;82;160;852;73;0;0;0;0;0;14;4;22;493;0;0;0;0;244;122;378;1519;2564;279;615;2926;2437;1435;707;1060;92;48288
-95;'340;Honduras;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;86;0;132;0;14;94;30;18;19;43;100;43;0;1056;889;0;2
-95;'340;Honduras;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;39;0;46;0;5;91;194;24;37;13;4;15;0;217;277;0;1
-95;'340;Honduras;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1392;408;223;152;;;;;;;;;;;112;2512;0;0;0;0;461;564;662;1268;3549;698;1132;6031;4187;2711;1676;2736;36;95853
-95;'340;Honduras;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;146;36;82;;;;;;;;;;;22;493;0;0;0;0;244;122;378;1519;2564;279;615;2926;2437;1435;707;1060;16;48288
-95;'340;Honduras;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22300;51600;0;0;0;0;0;0;0;0;0;0;438;1000;0;267;30;412;245;928;40;8;140;34;56;109;59;11;848
-95;'340;Honduras;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16300;17100;0;0;0;0;0;0;0;0;0;0;186;375;0;117;15;85;58;86;7;4;49;19;27;47;21;6;308
-95;'340;Honduras;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;2700;300;0;0;0;0;0;74;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;157;0
-95;'340;Honduras;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;852;73;0;0;0;0;0;14;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;76;0
-95;'340;Honduras;1868;Sawlogs and veneer logs;5516;Production;m3;810000;760000;890000;1090000;1180000;950000;765000;845000;910000;790000;920000;1324000;1242000;862000;853000;1070000;1160000;1131000;1049000;1097000;1051000;947000;551000;670000;836000;793000;958000;928000;850000;734000;690000;539000;590600;696800;480800;645000;711000;789000;853000;756000;832000;971000;801000;920000;935000;873000;822000;662000;483300;610000;809801;611000;612000;667031;660155;656146;1004286;1013956;804596;804596;804596;804596;804596
-95;'340;Honduras;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1868;Sawlogs and veneer logs;5916;Export quantity;m3;52300;43500;36200;35800;30200;20200;15300;16700;16000;12000;9700;12000;14500;10600;15900;20600;21100;14900;13700;25200;17600;17600;500;500;500;500;500;3200;10700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2035;1700;1528;1714;1384;962;725;902;873;712;637;708;1207;1133;1470;1821;2229;1969;1589;3662;2179;2179;64;64;64;64;64;719;2534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;740000;700000;830000;985000;1060000;900000;730000;800000;870000;750000;880000;1215000;1215000;841000;810000;1030000;1126000;1100000;1018000;1067000;1021000;917000;526000;650000;815000;767000;920000;889000;799000;690000;653000;503000;585000;693000;476000;613000;670000;757000;821000;744000;817000;949000;780000;898000;920000;852000;801000;646000;466300;600000;800000;600000;600000;650000;650000;650000;1000000;1000000;800000;800000;800000;800000;800000
-95;'340;Honduras;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;46600;41600;34500;31800;25500;17700;13300;13900;14700;9600;7500;8800;13500;8500;15200;19800;20300;14700;13500;24800;17600;17600;500;500;500;500;500;3200;10700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1693;1579;1435;1482;1107;709;551;651;709;488;387;482;1050;824;1363;1732;2120;1922;1542;3552;2179;2179;64;64;64;64;64;719;2534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;70000;60000;60000;105000;120000;50000;35000;45000;40000;40000;40000;109000;27000;21000;43000;40000;34000;31000;31000;30000;30000;30000;25000;20000;21000;26000;38000;39000;51000;44000;37000;36000;5600;3800;4800;32000;41000;32000;32000;12000;15000;22000;21000;22000;15000;21000;21000;16000;17000;10000;9801;11000;12000;17031;10155;6146;4286;13956;4596;4596;4596;4596;4596
-95;'340;Honduras;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;5700;1900;1700;4000;4700;2500;2000;2800;1300;2400;2200;3200;1000;2100;700;800;800;200;200;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;342;121;93;232;277;253;174;251;164;224;250;226;157;309;107;89;109;47;47;110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1871;Other industrial roundwood;5516;Production;m3;;;5000;5000;5000;5000;5000;5000;5000;10000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;17000;20000;20000;18000;18000;32000;40000;21000;17000;19000;19000;19000;19000;6000;1000;8000;6000;3000;0;0;0;0;0;0;0;0;35000;41000;10000;14000;14000;6000;7822;40116;40116;40116;40116;40116;40116;40116;40116;40116
-95;'340;Honduras;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;3500;3600;7300;5600;4400;3100;1400;3400;3300;1500;1500;15700;23000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;440;449;913;764;752;595;275;568;646;302;292;1623;3115;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;5000;5000;5000;5000;5000;5000;5000;10000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;17000;20000;20000;18000;18000;32000;40000;21000;17000;19000;19000;19000;19000;6000;1000;7000;4000;2000;0;0;0;0;0;0;0;0;30000;33000;10000;14000;14000;6000;7822;40116;40116;40116;40116;40116;40116;40116;40116;40116
-95;'340;Honduras;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;1000;0;0;0;0;0;0;0;0;5000;8000;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;3500;3600;7300;5600;4400;3100;1400;3400;3300;1500;1500;15700;23000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;440;449;913;764;752;595;275;568;646;302;292;1623;3115;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1630;Wood charcoal;5510;Production;t;5288;5464;5646;5834;6029;6229;6437;6651;6873;7101;7353;7567;7745;8166;8527;8680;8843;9030;9373;9854;10283;10872;11459;11887;12312;12896;13282;13722;14227;14930;15507;15946;16403;17195;17927;18545;17000;20000;20000;3000;13000;36000;3000;3000;3000;25188;25800;26400;27035;27680;18226;21000;21000;21000;21000;21000;21000;21000;21000;21000;0;0;0
-95;'340;Honduras;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;9;100;0;0;0;0;0;200;200;0;0;37;37;6;6;6;6;26;31;30;45;38;49;26;0;59;84;31;170;53;51
-95;'340;Honduras;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;32;0;0;0;0;0;158;158;0;0;6;6;23;23;23;23;57;37;42;54;55;67;68;0;38;104;66;174;26;39
-95;'340;Honduras;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;98;157;56;1;6;0;0;0;0;1;3;0;115;488
-95;'340;Honduras;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;37;54;20;5;7;0;0;0;0;0;8;0;36;66
-95;'340;Honduras;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;189000;208785;210085;210556;210152;210152;211108;208683;208000;208000;208000
-95;'340;Honduras;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2342;2342;2342;2342;204;2443;5374;2088;2468;3030;1216;6433;6814;18;26;15895;8930;5478
-95;'340;Honduras;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;71;15;49;99;48.9;68;24;85;323;347;6;7;325;83;89
-95;'340;Honduras;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1800;1800;0;0;0;86;86;3953;3953;3953;3953;4696;4714;1883;353;996;4536;3286;7371;4158;7241;5653;8002;5080;4583
-95;'340;Honduras;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;553;553;0;0;0;114;114;1287;1287;1287;1287;1511;1449;825;173;396;1057;1734;3119;2322;2903;2431;3692;4479;3944
-95;'340;Honduras;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785;2085;2556;2152;2152;3108;683;0;0;0
-95;'340;Honduras;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440;;;;;;;;;;;;;728;728;728;728;87;10;223;1;0;22;334;0;381;18;26;0;2;438
-95;'340;Honduras;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;;;;;;;;;;;;;30;30;30;30;6;1;7;0.9;0;2;27;0;24;6;7;1;0;54
-95;'340;Honduras;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;229;229;229;229;19;10;924;71;388;1528;1513;1513;1077;258;677;677;704;207
-95;'340;Honduras;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;;;;;;;;;;82;82;82;82;41;17;440;34;257;921;1072;1072;1221;267;548;548;767;232
-95;'340;Honduras;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;189000;208000;208000;208000;208000;208000;208000;208000;208000;208000;208000
-95;'340;Honduras;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;929;;;;;;;;;;;;;1614;1614;1614;1614;117;2433;5151;2087;2468;3008;882;6433;6433;0;0;15895;8928;5040
-95;'340;Honduras;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;36;;;;;;;;;;;;;41;41;41;41;9;48;92;48;68;22;58;323;323;0;0;324;83;35
-95;'340;Honduras;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;300;500;800;400;200;1800;1800;1800;0;0;0;86;86;3724;3724;3724;3724;4677;4704;959;282;608;3008;1773;5858;3081;6983;4976;7325;4376;4376
-95;'340;Honduras;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;64;156;128;96;69;553;553;553;0;0;0;114;114;1205;1205;1205;1205;1470;1432;385;139;139;136;662;2047;1101;2636;1883;3144;3712;3712
-95;'340;Honduras;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;775;0;10083;4849;26622;15319;17096;0;0;0
-95;'340;Honduras;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;45;1;1;11;1;1;103;2;1;98.3;103
-95;'340;Honduras;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;1;1;2;1;1;26;6;4;1.81;37
-95;'340;Honduras;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471;3261;744;0;0;0;0;696;470;596.24;27;2
-95;'340;Honduras;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1134;1726;444;0;0;0;0;370;235;275;20;2
-95;'340;Honduras;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;775;0;9393;4249;4249;4249;4249;0;0;0
-95;'340;Honduras;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;45;1;1;11;1;1;0;1;0;0.3;27
-95;'340;Honduras;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;1;1;2;1;1;0;5;1;0.81;33
-95;'340;Honduras;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471;3261;744;0;0;0;0;0;14;14;14;0
-95;'340;Honduras;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1134;1726;444;0;0;0;0;0;1;1;1;0
-95;'340;Honduras;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690;600;22373;11070;12847;0;0;0
-95;'340;Honduras;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;1;1;98;76
-95;'340;Honduras;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;1;3;1;4
-95;'340;Honduras;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696;456;582.24;13;2
-95;'340;Honduras;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;234;274;19;2
-95;'340;Honduras;1872;Sawnwood;5516;Production;m3;504000;478000;623000;623000;680000;545000;442000;518000;524000;457000;455000;658000;731000;579000;551000;598000;628000;632977;624360;560000;560000;489400;468000;426800;435800;404500;464000;447000;412000;328200;302500;411000;364000;361000;231000;322000;379000;369000;419000;442000;419000;480000;434000;467000;407000;412000;379000;349000;277000;228580;349810;257200;261863;296823;298985;259396;454638;454638;168610;189089;348916;285966;283740
-95;'340;Honduras;1872;Sawnwood;5616;Import quantity;m3;1400;2600;2200;1600;2500;3300;800;200;200;200;200;200;200;200;200;200;200;3200;;;;;;;;;;;;;;1002;361;400;5200;20800;25300;16100;4800;5500;6000;14000;12200;9044;23700;14300;23300;47439;29837;17124;11754;9823;12074;12809;14733;16894;17269;10885;10447;9350;16276;18012;24574
-95;'340;Honduras;1872;Sawnwood;5622;Import value;1000 USD;81;149;115;86;118;115;63;12;12;12;12;12;12;12;12;12;12;521;;;;;;;;;;;;;;268;75;46;581;2121;3273;2889;876;1105;1147;1649;1386;1959;3189;3129;6593;13181;7538;5008;3729;3100;3321;4702;5179;5457;4996;4977;4628;3943;7708;9951;10395
-95;'340;Honduras;1872;Sawnwood;5916;Export quantity;m3;176500;158400;187800;233500;250400;392900;442050;516400;368800;307000;385600;629700;575200;493100;470700;466700;504900;426900;378400;268700;318300;370700;283800;231200;201900;189000;232100;171400;141400;87300;61400;85000;146000;122200;26100;18600;200400;207100;130300;139000;184000;201102;193460;164781;174929;170184;141468;125430;69221;57190;54099;46328;63728;73624;96246;148473;175054;111413;104021;62954;124198;135972;87389
-95;'340;Honduras;1872;Sawnwood;5922;Export value;1000 USD;5476;5371;6893;8927;8742;9576;11430;13479;14315;12182;18546;26351;37815;39461;42952;40006;39126;39314;39522;20208;25106;43162;34748;30370;31946;27899;34404;27848;24938;16294;11306;15434;25021;18242;4540;5488;21488;28853;29162;31670;40731;41286;40574;36897;37824;43412;41614;32280;16985;15562;14859;12053;14782;22105;23482;32085;30122;25368;22635;15034;31214;33430;22552
-95;'340;Honduras;1632;Sawnwood, coniferous;5516;Production;m3;477000;452000;582500;582500;632500;530000;432500;508000;510000;448000;430000;634000;719000;568500;524500;572500;607500;613477;607860;545500;545500;479500;457500;416500;425500;394500;453500;436500;401500;327000;300000;403000;359000;356000;230000;321000;357000;352000;404000;437000;412000;470000;421000;454000;400000;403000;370000;342000;267000;224580;340009;242000;257863;291926;295207;253250;448492;448492;164010;186480;341710;270966;268740
-95;'340;Honduras;1632;Sawnwood, coniferous;5616;Import quantity;m3;1400;2600;2200;1600;2500;3300;800;200;200;200;200;200;200;200;200;200;200;3200;;;;;;;;;;;;;;289;289;400;5000;19400;25000;16000;4700;5200;5000;13000;11200;9000;19500;8600;18500;46423;28831;16019;10657;9196;7984;9012;10967;9965;12765;3395;3228;4206;5056;6662;17335
-95;'340;Honduras;1632;Sawnwood, coniferous;5622;Import value;1000 USD;81;149;115;86;118;115;63;12;12;12;12;12;12;12;12;12;12;521;;;;;;;;;;;;;;46;46;46;517;1777;3084;2810;826;934;829;1462;947;1919;2337;1595;5063;12764;7117;4226;2983;2589;1950;2223;2851;2072;2716;880;755;1455;1812;3098;5989
-95;'340;Honduras;1632;Sawnwood, coniferous;5916;Export quantity;m3;174000;155050;183950;229050;243950;385950;432550;506950;360300;298650;378700;621250;568300;483600;447350;449800;496250;422950;374450;265950;311150;364700;282750;230400;201500;188600;231700;171000;141000;86900;61000;77000;141000;120000;24900;17000;200000;207000;130200;139000;184000;189000;180400;152000;168800;153000;131200;120939;67380;53982;51072;45825;61237;66003;94617;147081;174630;110301;102607;60527;124136;125728;87076
-95;'340;Honduras;1632;Sawnwood, coniferous;5922;Export value;1000 USD;5384;5169;6662;8678;8328;9296;10983;13061;13867;11685;17958;25475;36950;38626;37867;37576;37767;38774;38982;19897;24015;42216;34550;30222;31802;27745;34250;27694;24784;16140;11152;12970;22696;17801;4311;5119;21350;28811;29120;31670;40731;38431;38060;33164;36573;37001;35493;28847;15472;12633;12488;11027;12382;16476;21851;30507;29512;24668;21260;13843;31083;30654;22274
-95;'340;Honduras;1633;Sawnwood, non-coniferous;5516;Production;m3;27000;26000;40500;40500;47500;15000;9500;10000;14000;9000;25000;24000;12000;10500;26500;25500;20500;19500;16500;14500;14500;9900;10500;10300;10300;10000;10500;10500;10500;1200;2500;8000;5000;5000;1000;1000;22000;17000;15000;5000;7000;10000;13000;13000;7000;9000;9000;7000;10000;4000;9801;15200;4000;4897;3778;6146;6146;6146;4600;2609;7206;15000;15000
-95;'340;Honduras;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;72;0;200;1400;300;100;100;300;1000;1000;1000;44;4200;5700;4800;1016;1006;1105;1097;627;4090;3797;3766;6929;4504;7490;7219;5144;11220;11350;7239
-95;'340;Honduras;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;29;0;64;344;189;79;50;171;318;187;439;40;852;1534;1530;417;421;782;746;511;1371;2479;2328;3385;2280;4097;3873;2488;5896;6853;4406
-95;'340;Honduras;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;2500;3350;3850;4450;6450;6950;9500;9450;8500;8350;6900;8450;6900;9500;23350;16900;8650;3950;3950;2750;7150;6000;1050;800;400;400;400;400;400;400;400;8000;5000;2200;1200;1600;400;100;100;0;0;12102;13060;12781;6129;17184;10268;4491;1841;3208;3027;503;2491;7621;1629;1392;424;1112;1414;2427;62;10244;313
-95;'340;Honduras;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;92;202;231;249;414;280;447;418;448;497;588;876;865;835;5085;2430;1359;540;540;311;1091;946;198;148;144;154;154;154;154;154;154;2464;2325;441;229;369;138;42;42;0;0;2855;2514;3733;1251;6411;6121;3433;1513;2929;2371;1026;2400;5629;1631;1578;610;700;1375;1191;131;2776;278
-95;'340;Honduras;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;0;0;0;1000;1000;1000;1000;20251;20251;44088;44088;44088;44088;44088
-95;'340;Honduras;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;100;100;200;300;100;50;400;600;0;483;164;249;87;248;848;859;940;647;592;377;470;1285;1636;1988;1648;3049;4695;2216
-95;'340;Honduras;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;0;0;186;112;138;211;88;48;237;174;0;571;278;425;83;1488;2521;3623;4684;2775;3401;2070;2413;4991;6193;4756;3950;7316;7721;6511
-95;'340;Honduras;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;150;300;0;0;0;0;0;0;0;0;0;89;89;50;0;9;7;8;0;0;4;35;778;338;0;17;15;6;2
-95;'340;Honduras;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;57;126;0;0;0;0;0;0;0;0;0;96;96;92;1;21;7;7;265;244;20;78;1835;860;24;21;1;32;1
-95;'340;Honduras;1873;Wood-based panels;5516;Production;m3;2000;2000;2000;2000;2000;3000;3000;4300;4600;6000;5600;12000;12000;11000;10000;10800;13100;13800;14000;11000;11000;4600;5500;7800;7000;8000;9000;9000;9000;9000;10000;14400;14500;13900;14000;14000;15000;19000;20000;7000;7000;11000;9000;9000;9000;14000;6000;10000;5000;10000;32000;25655;31734;42456;40828;48628;48628;48628;48628;48628;22641;22641;22641
-95;'340;Honduras;1873;Wood-based panels;5616;Import quantity;m3;;;100;300;700;900;1400;1600;2600;3500;200;900;600;800;1100;1400;1500;3500;2700;2700;700;700;700;700;700;700;5000;3200;4100;1400;2600;3224;3502;3642;7700;9100;8000;8900;9100;8400;6500;11000;18400;25156;25056;23998;22373;35169;19169;17479;36352;32412;21089;25200;32990;23019;33853;29400;29777;25151;45706.47;34113;77052
-95;'340;Honduras;1873;Wood-based panels;5622;Import value;1000 USD;;;17;86;160;200;299;337;514;599;48;203;123;207;209;407;507;1036;842;842;420;420;420;420;420;420;1858;1212;1487;279;625;905;959;1787;1983;2783;3703;3879;3214;2927;2237;4044;9569;5473;5451;7855;8435;12159;7336;6124;10130;10640;8473;12083;13044;10076;12777;12654;10528;10049;21480.4;18606;21864
-95;'340;Honduras;1873;Wood-based panels;5916;Export quantity;m3;200;200;200;700;400;500;500;1000;1400;1000;100;100;2800;5500;3700;6100;6300;6800;7000;4100;4300;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;5029;3300;1200;900;1900;900;6200;6400;5900;7000;5000;200;221;321;257;4555;4291;2354;5721;6128;8276;9646;13858;12839;12877;10911;11627;14676;8142;8277;7639;5958
-95;'340;Honduras;1873;Wood-based panels;5922;Export value;1000 USD;17;17;38;178;100;107;107;80;144;169;11;4;600;1105;922;1450;1755;2293;2243;1718;1580;769;769;769;769;769;769;769;769;769;769;1549;1150;535;449;529;331;2111;1956;1862;2190;1573;107;48;116;86;1901;2819;1099;2318;2535;4585;4781;6130;6123;6154;4582;5890;5177;3556;5384;5202;4454
-95;'340;Honduras;1640;Plywood and LVL;5516;Production;m3;2000;2000;2000;2000;2000;3000;3000;4300;4600;6000;5600;12000;12000;11000;10000;10800;13100;13800;14000;11000;11000;4600;5500;7800;7000;8000;9000;9000;9000;9000;10000;14400;14500;13900;14000;14000;15000;19000;20000;7000;7000;11000;9000;9000;9000;14000;6000;10000;5000;10000;32000;25655;31734;42456;40828;48628;48628;48628;48628;48628;22641;22641;22641
-95;'340;Honduras;1640;Plywood and LVL;5616;Import quantity;m3;;;100;300;700;900;1400;1600;2600;3500;200;900;600;800;1100;1400;1500;3500;2700;2700;700;700;700;700;700;700;5000;3200;4100;1400;2600;240;250;300;800;1200;1100;1800;900;700;1000;1500;1900;2000;1900;2700;3400;5869;3669;2878;7587;8250;8185;8478;9688;8701;10146;8044;4395;8824;16186;6434;11483
-95;'340;Honduras;1640;Plywood and LVL;5622;Import value;1000 USD;;;17;86;160;200;299;337;514;599;48;203;123;207;209;407;507;1036;842;842;420;420;420;420;420;420;1858;1212;1487;279;625;181;132;269;520;1092;1114;1325;584;503;721;821;1223;1232;1210;1687;1535;2232;1564;1598;3408;4524;4437;7218;7352;4409;4933;4783;2541;5036;8247;4825;6012
-95;'340;Honduras;1640;Plywood and LVL;5916;Export quantity;m3;200;200;200;700;400;500;500;1000;1400;1000;100;100;2800;5500;3700;6100;6300;6800;7000;4100;4300;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;5029;3300;1200;900;1500;900;6200;6400;5900;7000;5000;200;0;100;100;4398;3835;1898;5608;5984;8260;9540;13683;12833;12840;10893;11609;12335;7751;8194;7535;5876
-95;'340;Honduras;1640;Plywood and LVL;5922;Export value;1000 USD;17;17;38;178;100;107;107;80;144;169;11;4;600;1105;922;1450;1755;2293;2243;1718;1580;769;769;769;769;769;769;769;769;769;769;1549;1150;535;449;424;331;2111;1956;1862;2190;1573;107;0;68;51;1866;2734;1014;2138;2473;4565;4735;6071;6121;6141;4576;5884;5037;3514;5352;5166;4418
-95;'340;Honduras;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-95;'340;Honduras;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;400;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;159;456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1800;2400;2700;3200;600;1000;1000;1000;3708;3708;6131;6131;8470;70;820;1516;1028;4015;0;0;194;5030;5030;5566;3212;6472.85;8979;45994
-95;'340;Honduras;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;731;981;951;988;167;173;210;210;883;883;1673;1673;2847;17;252;475;377;2000;0;0;293;2295;2295;2461;1427;3225.7;5188;6228
-95;'340;Honduras;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;0;0;0;0;0;0;0;78;78;13;13;13;13;63;12;12;16;15;0;0;0;0;0;3;3;41;19
-95;'340;Honduras;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;0;0;0;0;0;0;0;19;19;5;5;5;5;46;17;17;10;2;0;0;0;0;0;4;4;1;1
-95;'340;Honduras;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;930;930;930;930;376;238;238;238;817;440;263;511;215;290;150;418;250;567
-95;'340;Honduras;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;253;253;253;253;134;77;77;77;307;145;114;192;149;70;46;252;100;162
-95;'340;Honduras;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1734;2852;2042;6000;6100;4500;4400;5000;7100;4500;8500;15500;19411;19411;14237;11912;19900;14500;13405;27011;22896;8651;15905;22862;13861;18166;16111;19526;12965;22629.62;18450;19008
-95;'340;Honduras;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;668;1062;1062;960;1608;1603;1642;2257;1343;3013;8136;3345;3345;4242;4974;6827;5502;4140;6170;5662;1959;4558;5547;5260;5357;5427;5456;3540;9755.7;8493;9462
-95;'340;Honduras;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;144;144;443;443;50;132;4;90;160;6;37;18;18;2341;388;80;63;63
-95;'340;Honduras;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;30;30;80;80;134;45;3;36;57;2;13;6;6;140;38;28;35;35
-95;'340;Honduras;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;900;1700;1200;2600;6400;4000;7000;7000;2787;2787;7977;6200;6400;2600;1142;3005;1654;1150;1521;1398;2635;2635;3174;3055;2195;4533;3494;3477
-95;'340;Honduras;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;495;706;546;930;2066;1218;2154;2297;645;645;2996;2630;2365;1096;596;1782;886;828;789;683;1005;1005;1293;1144;856;3105;2619;2701
-95;'340;Honduras;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;300;300;8;0;0;0;0;0;31;12;12;55;55;55;55;55
-95;'340;Honduras;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;51;51;122;0;0;0;0;0;11;4;4;19;19;19;19;19
-95;'340;Honduras;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;300;900;300;500;0;0;1000;8000;16617;16617;5648;5100;9000;9000;8131;14076;20187;4248;13656;21425;9842;14826;12232;16153;10403;17619.62;14939;15509
-95;'340;Honduras;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;60;294;90;189;0;0;720;5700;2534;2534;1137;2235;4088;4088;3112;3076;4610;649;3275;4782;3714;4155;3937;4215;2596;6510.7;5859;6756
-95;'340;Honduras;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;143;143;42;132;4;90;160;6;6;6;6;2188;333;1;6;6
-95;'340;Honduras;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;12;45;3;32;57;2;2;2;2;90;17;1;6;6
-95;'340;Honduras;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;142;4100;4900;1900;2900;1900;700;500;500;500;7;7;612;612;4500;2900;4132;9930;1055;3253;728;39;1384;705;705;318;367;477;17;22
-95;'340;Honduras;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;347;405;608;967;523;191;125;139;139;166;166;109;109;374;318;432;1312;166;482;494;82;541;197;197;97;88;140;15;5
-95;'340;Honduras;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;98;0;24;2;2
-95;'340;Honduras;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;0;0;0;0;0;31;2;8;10;10
-95;'340;Honduras;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1734;2710;1900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;636;1030;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;11000;11000;10000;7000;10000;6000;10000;48000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51800;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;51000;51000;57000;57953;60000;53745;60000;60000;60000;60000;60000;60000;60000
-95;'340;Honduras;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14967;9574;7744;7500;10700;6000;3200;3500;3100;20200;7200;4200;7179;7179;3986;5814;7214;3414;4191;7380;6425;2529;4536;2438;3371;1168;1195;1562;1382;1993.89;11792;12448
-95;'340;Honduras;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520;2556;1574;3239;2713;1684;1328;931;1279;2949;1742;1105;1617;1617;1361;1682;2926;954;1437;2915;1126;288;772;768;941;348;363;709;605;849;3419;2869
-95;'340;Honduras;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;5000;5000;5000;4000;5253;3014;4519;5532;5561;5807;6402;7600;8000;8000;7000;7000;7000;7000;7000;7000;7000;7000;2766;3779;3800;7500;4000;400;2100;3200;5700;10100;7500;18000;22586;22586;12933;32423;26623;23723;34518;40020;55150;59245;62415;61453;49952;57446;57446;37286;44505;37877.06;27621;38014
-95;'340;Honduras;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;217;200;216;231;541;152;280;342;344;413;677;824;824;824;929;929;929;929;929;929;929;929;361;371;321;1129;403;103;513;609;3438;2562;1407;2697;4638;4638;1835;3954;4470;3506;6316;8351;9478;9382;10781;10710.79;7901;11825;11825;6401;6977;8141.72;7345;8840
-95;'340;Honduras;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;980;1874;544;500;1300;1200;1800;1300;1000;1200;200;200;837;837;214;214;214;214;11;6;1;9;100;62;100;100;127;317;793;793;976;996
-95;'340;Honduras;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;815;374;573;842;633;1004;751;597;502;128;128;301;301;163;163;163;163;25;12;3;12;97;61;109;109;124;222;451;451;875;878
-95;'340;Honduras;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;0;0;100;200;200;400;300;100;0;0;23;23;23;23;23;23;4;5;5;3;26;0;0;0;0;0;0;0;0;429
-95;'340;Honduras;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;0;0;59;77;77;171;124;47;0;0;5;5;5;5;5;5;6;6;6;5;20;0.79;0;0;0;0;0;0;0;213
-95;'340;Honduras;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;1663;344;400;600;400;1800;1300;100;200;200;200;204;204;203;203;203;203;0;0;0;2;86;53;91;91;118;316;792;792;976;996
-95;'340;Honduras;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;755;237;469;289;199;1004;751;93;128;128;128;140;140;138;138;138;138;0;0;0;2;78;39;87;87;102;218;450;450;875;878
-95;'340;Honduras;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;100;200;200;200;200;0;0;0;46;46;46;46;46;46;0;0;0;0;15;0;0;0;0;0;0;0;0;429
-95;'340;Honduras;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;0;59;77;77;77;77;0;0;0;11;11;11;11;11;11;0;0;0;0;5;0;0;0;0;0;0;0;0;213
-95;'340;Honduras;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;5;5;62;82
-95;'340;Honduras;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;10;10;10;56;59
-95;'340;Honduras;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;;;;;;;;;;;;;;;;;;;;2;28;1;0;;;;;;;
-95;'340;Honduras;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;;;;;;;;;;;;;;;;;;;;2;31;1;0;;;;;;;
-95;'340;Honduras;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;59;77;77;77;77;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;722;344;400;600;400;800;400;100;200;200;200;204;204;203;203;203;203;0;0;0;0;58;52;91;91;113;311;787;787;914;914
-95;'340;Honduras;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;362;237;469;289;199;438;247;93;128;128;128;140;140;138;138;138;138;0;0;0;0;47;38;87;87;92;208;440;440;819;819
-95;'340;Honduras;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;0;0;0;0;0;0;0;0;429
-95;'340;Honduras;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;213
-95;'340;Honduras;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;52;49;49;49;49;49;49;49;49
-95;'340;Honduras;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;38;31;31;31;31;31;31;31;31
-95;'340;Honduras;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;473;300;300;200;200;400;200;100;200;200;200;200;200;200;200;200;200;0;0;0;0;37;0;42;42;64;262;738;738;865;865
-95;'340;Honduras;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;214;211;385;125;77;260;144;93;128;128;128;128;128;128;128;128;128;0;0;0;0;30;0;56;56;61;177;409;409;788;788
-95;'340;Honduras;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;0;0;0;0;0;0;0;0;429
-95;'340;Honduras;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;213
-95;'340;Honduras;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;249;44;100;400;200;400;200;0;0;0;0;4;4;3;3;3;3;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;148;26;84;164;122;178;103;0;0;0;0;12;12;10;10;10;10;0;0;0;0;0;0;0;;;;;;;
-95;'340;Honduras;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;566;504;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;211;200;100;700;800;1000;900;900;1000;0;0;633;633;11;11;11;11;11;6;1;7;14;9;9;9;9;1;1;1;0;0
-95;'340;Honduras;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;60;137;104;553;434;566;504;504;374;0;0;161;161;25;25;25;25;25;12;3;10;19;22;22;22;22;4;1;1;0;0
-95;'340;Honduras;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;0;200;100;100;0;0;0;0;0;0;0;0;4;5;5;3;11;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;0;0;0;94;47;47;0;0;0;0;0;0;0;0;6;6;6;5;15;0.79;0;0;0;0;0;0;0;0
-95;'340;Honduras;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;1;0;8;8;2;1;0;8;13;48
-95;'340;Honduras;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;16;1;14;14;2;8;2;38;25;93
-95;'340;Honduras;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;0;0;163;118;11;397;452;452;452;452;242;699;699;699
-95;'340;Honduras;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;14;21;15;65;64;64;64;64;147;311;311;311
-95;'340;Honduras;1669;Recovered paper;5510;Production;t;;;;;;;;;;11000;11000;10000;7000;10000;6000;10000;48000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;57000;57953;60000;53745;60000;60000;60000;60000;60000;60000;60000
-95;'340;Honduras;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13987;7700;7200;7000;9400;4800;1400;2200;2100;19000;7000;4000;6342;6342;3772;5600;7000;3200;4180;7374;6424;2520;4436;2376;3271;1068;1068;1245;589;1200.89;10816;11452
-95;'340;Honduras;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1899;1741;1200;2666;1871;1051;324;180;682;2447;1614;977;1316;1316;1198;1519;2763;791;1412;2903;1123;276;675;707;832;239;239;487;154;398;2544;1991
-95;'340;Honduras;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;5000;5000;5000;4000;5253;3014;4519;5532;5561;5807;6402;7600;8000;8000;7000;7000;7000;7000;7000;7000;7000;7000;2687;3700;3800;7500;3900;200;1900;2800;5400;10000;7500;18000;22563;22563;12910;32400;26600;23700;34514;40015;55145;59242;62389;61453;49952;57446;57446;37286;44505;37877.06;27621;37585
-95;'340;Honduras;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;217;200;216;231;541;152;280;342;344;413;677;824;824;824;929;929;929;929;929;929;929;929;312;322;321;1129;344;26;436;438;3314;2515;1407;2697;4633;4633;1830;3949;4465;3501;6310;8345;9472;9377;10761;10710;7901;11825;11825;6401;6977;8141.72;7345;8627
-95;'340;Honduras;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89500;102500;88000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;95000;75000;75000;75000;75000;75000;75000;75000;75000;50937;39991;42000;27000;27000
-95;'340;Honduras;1876;Paper and paperboard;5610;Import quantity;t;5200;5400;15200;19800;41100;96200;77500;118200;83800;84300;104900;93000;93000;94400;48400;82000;85500;98200;53900;55500;61900;58000;47600;48000;152800;44300;52800;125800;111100;59200;69900;99828;92912;86200;94100;102500;94300;162000;81200;74000;88800;88500;137300;151761;178389;156237;141608;140300;114950;167239;163138;150410;163124;160582;205607;173495;216793;228581;173045;163604;176682.22;241553;189678
-95;'340;Honduras;1876;Paper and paperboard;5622;Import value;1000 USD;1349;1435;2651;3494;6575;14704;12460;14922;12574;13272;17818;14975;14975;27368;11992;30036;32137;35166;26467;27188;31375;28412;20719;37767;67738;29534;35360;70895;57985;37288;68021;78562;51058;50203;74017;66614;62819;95558;56207;63884;54142;64730;88517;82835;98987;109397;110773;109968;81052;124125;135184;119104;136887;134363;157132;125338;151942;196595;143312;118782;159005.71;259529;183875
-95;'340;Honduras;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;700;600;500;300;100;600;2400;400;1100;2000;2000;1518;1518;2898;2691;4457;6659;19618;2099;45015;61099;64443;74575;84992;113875;57407;21560;9930;12182.45;18223;1376
-95;'340;Honduras;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;437;971;992;180;82;483;1028;206;379;839;839;885;885;1529;1374;2380;3544;11981;2186;31576;71023;89398;111586;125240;116163;39617;23620;10946;21889.74;22138;1864
-95;'340;Honduras;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15500;16500;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;13000;13000;13000;13000;13000;13000;13000;13000;3558;1189;2000;10000;10000
-95;'340;Honduras;2042;Graphic papers;5610;Import quantity;t;1900;1900;2100;2100;2700;3000;3500;2900;3400;5200;4500;4700;4700;6800;4600;7800;6500;9000;10300;11900;11600;7800;4700;5000;9500;8000;7100;7700;10000;7900;31000;54128;20612;16300;15800;16400;26300;24400;29500;28900;33300;56300;59300;37271;37271;45169;43100;42100;34300;42506;44149;46316;40252;42662;43313;33612;26397;38945;30558;19674;25294.11;26308;31626
-95;'340;Honduras;2042;Graphic papers;5622;Import value;1000 USD;415;430;445;479;628;662;840;757;876;1345;1144;1208;1208;3672;2345;3611;3322;5293;7500;8221;8493;6218;2943;3067;7100;6300;6300;6300;8374;6900;28045;28306;13184;11567;16577;14069;21336;17618;21351;21380;23166;47269;49419;26901;26901;37460;41398;38951;29563;38250;40731;41421;36790;38229;38750;25986;17923;37095;27842;17803;24699.25;38135;40690
-95;'340;Honduras;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;286;212;286;286;217;145;339;773;675;891;2714;367;333;3561;1189;166;97;84
-95;'340;Honduras;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;239;129;239;239;376;471;504;996;1184;1673;3047;474;624;5398;1559;261;329;319
-95;'340;Honduras;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;7500;11000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;0;0;0;0;0;0;0;0;0;46;0;10000;10000
-95;'340;Honduras;1671;Newsprint;5610;Import quantity;t;1300;1200;1400;1200;1600;1700;1700;1300;1600;2700;2700;2100;2100;3000;2100;3400;2400;4600;4700;6500;6000;4200;4200;4500;6400;4900;4000;4600;6900;4800;6200;3819;7819;8700;7500;7700;11300;11700;13200;16400;12000;12000;14000;14857;14857;19722;21800;21500;17200;17473;16062;16802;13962;13757;10153;8541;9567;9269;6294;1913;2088.42;1841;1593
-95;'340;Honduras;1671;Newsprint;5622;Import value;1000 USD;226;210;227;191;280;261;273;202;261;472;513;360;360;1051;801;1345;1001;1950;2900;2595;3400;3186;2376;2500;3600;2800;2800;2800;4874;3400;2872;2094;3757;5723;6064;6153;8200;7714;9059;10424;8300;6871;8056;8984;8984;13555;15229;15969;12057;11743;11476;12497;9801;9336;6576;4146;5233;4986;4139;1067;1224;1523;1408
-95;'340;Honduras;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;0;0;20;23;4;21;21;31;11;2;46;7;0;21
-95;'340;Honduras;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;0;0;36;19;3;24;17;22;10;2;28;5;0;24
-95;'340;Honduras;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;9000;14000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;3558;1143;2000;0;0
-95;'340;Honduras;1674;Printing and writing papers;5610;Import quantity;t;600;700;700;900;1100;1300;1800;1600;1800;2500;1800;2600;2600;3800;2500;4400;4100;4400;5600;5400;5600;3600;500;500;3100;3100;3100;3100;3100;3100;24800;50309;12793;7600;8300;8700;15000;12700;16300;12500;21300;44300;45300;22414;22414;25447;21300;20600;17100;25033;28087;29514;26290;28905;33160;25071;16830;29676;24264;17761;23205.69;24467;30033
-95;'340;Honduras;1674;Printing and writing papers;5622;Import value;1000 USD;189;220;218;288;348;401;567;555;615;873;631;848;848;2621;1544;2266;2321;3343;4600;5626;5093;3032;567;567;3500;3500;3500;3500;3500;3500;25173;26212;9427;5844;10513;7916;13136;9904;12292;10956;14866;40398;41363;17917;17917;23905;26169;22982;17506;26507;29255;28924;26989;28893;32174;21840;12690;32109;23703;16736;23475.25;36612;39282
-95;'340;Honduras;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;225;151;225;225;217;145;319;750;671;870;2693;336;322;3559;1143;159;97;63
-95;'340;Honduras;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;231;121;231;231;376;471;468;977;1181;1649;3030;452;614;5396;1531;256;329;295
-95;'340;Honduras;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1714;2200;2200;2200;300;300;526;526;2947;2700;2500;1300;3249;4883;7736;5414;6162;7194;535;3514;3514;2321;2002;2173.85;454;695
-95;'340;Honduras;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370;1700;1700;1879;254;254;446;446;2499;2497;2481;1275;3045;4154;5958;4765;5257;5595;493;3383;3383;2598;2131;2549.66;682;902
-95;'340;Honduras;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;11;29;2;1;0;233;233;1;0;1;0;1
-95;'340;Honduras;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;16;25;36;8;1;0;382;382;4;0;6;1;2
-95;'340;Honduras;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;2865;798;1000;0;0
-95;'340;Honduras;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9116;11700;10100;19000;43000;43000;9169;9169;19551;16900;17700;14500;18488;18811;18758;17058;18349;20310;20931;11365;22542;20202;13622;14632.84;14170;24396
-95;'340;Honduras;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6940;8614;8944;12800;39000;39000;6833;6833;18362;19763;19906;14714;19364;20030;19590;16542;17803;18782;16976;6786;21481;18166;11145;11723.59;18950;26987
-95;'340;Honduras;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;51;51;51;51;137;80;252;431;482;679;2471;92;65;2865;798;98;35;38
-95;'340;Honduras;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;59;59;59;59;204;95;299;771;638;869;2278;56;92;3290;593;164;61;90
-95;'340;Honduras;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;345;1000;0;0
-95;'340;Honduras;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1870;2400;200;100;1000;2000;12719;12719;2949;1700;400;1300;3296;4393;3020;3818;4394;5656;3605;1951;3620;1741;2137;6399;9843;4942
-95;'340;Honduras;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1594;1978;312;187;1144;2109;10638;10638;3044;3909;595;1517;4098;5071;3376;5682;5833;7797;4371;2521;7245;2939;3460;9202;16980;11393
-95;'340;Honduras;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;174;100;174;174;79;59;56;290;187;190;222;11;24;693;345;60;62;24
-95;'340;Honduras;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;172;62;172;172;170;360;144;170;535;779;752;14;140;2102;938;86;267;203
-95;'340;Honduras;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;86000;63000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;62000;62000;62000;62000;62000;62000;62000;62000;47379;38802;40000;17000;17000
-95;'340;Honduras;1675;Other paper and paperboard;5610;Import quantity;t;3300;3500;13100;17700;38400;93200;74000;115300;80400;79100;100400;88300;88300;87600;43800;74200;79000;89200;43600;43600;50300;50200;42900;43000;143300;36300;45700;118100;101100;51300;38900;45700;72300;69900;78300;86100;68000;137600;51700;45100;55500;32200;78000;114490;141118;111068;98508;98200;80650;124733;118989;104094;122872;117920;162294;139883;190396;189636;142487;143930;151388.11;215245;158052
-95;'340;Honduras;1675;Other paper and paperboard;5622;Import value;1000 USD;934;1005;2206;3015;5947;14042;11620;14165;11698;11927;16674;13767;13767;23696;9647;26425;28815;29873;18967;18967;22882;22194;17776;34700;60638;23234;29060;64595;49611;30388;39976;50256;37874;38636;57440;52545;41483;77940;34856;42504;30976;17461;39098;55934;72086;71937;69375;71017;51489;85875;94453;77683;100097;96134;118382;99352;134019;159500;115470;100979;134306.46;221394;143185
-95;'340;Honduras;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;700;600;500;300;100;600;2400;400;1100;2000;2000;1435;1435;2612;2479;4171;6373;19401;1954;44676;60326;63768;73684;82278;113508;57074;17999;8741;12016.45;18126;1292
-95;'340;Honduras;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;437;971;992;180;82;483;1028;206;379;839;839;825;825;1290;1245;2141;3305;11605;1715;31072;70027;88214;109913;122193;115689;38993;18222;9387;21628.74;21809;1545
-95;'340;Honduras;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;0;0;0;0;0;0;0;0;129;128;0;0;0
-95;'340;Honduras;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;4300;3900;5400;5800;6300;1900;500;500;500;176;176;77;100;100;50;70;67;138;34;39;1362;310;181;205;39;424;3241.73;263;2335
-95;'340;Honduras;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2682;3093;3431;4173;4606;4541;1418;404;408;408;115;115;81;80;99;52;82;118;123;55;84;1430;656;312;454;87;200;1440.65;757;3798
-95;'340;Honduras;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;0;0;12;12;12;12;38;3;1;10;4;18;23;49;20;129;128;1;11;10
-95;'340;Honduras;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;0;0;0;0;0;0;0;0;0;0;0;9;9;9;9;24;8;2;16;10;59;60;97;33;345;395;11;21;9
-95;'340;Honduras;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;47250;38674;40000;17000;17000
-95;'340;Honduras;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61800;43700;32100;54000;31200;77000;111378;138006;104792;93508;94500;79600;123714;116923;101515;119578;116637;156959;113723;166873;162474;113036;112035;111167;173928;135343
-95;'340;Honduras;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32213;27065;19886;28455;16639;38276;49854;66006;61208;58676;61115;48970;83509;90498;73650;96167;93731;113095;81712;118299;137617;95333;80204;102326.87;175977;124507
-95;'340;Honduras;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2400;400;1100;2000;2000;1407;1407;2467;2334;2559;4761;19348;1921;44668;60309;63740;73658;78415;97186;43539;15969;8592;11973.45;18104;1267
-95;'340;Honduras;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;1028;206;379;839;839;731;731;1175;1130;1404;2568;11550;1641;31042;69976;88147;109820;120348;107467;30983;17311;8950;21553.74;21667;1395
-95;'340;Honduras;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66000;72000;54000;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;55000;34100;34000;53000;39000;39000;50800;24900;34200;42200;54100;8300;8300;49100;49100;42500;42500;142800;35800;45200;117600;100600;50800;38400;45200;67500;65900;66000;72400;57000;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;5397;5254;5300;7710;5879;5879;13062;2626;10590;12121;13973;2581;2581;20547;20610;17225;34000;59938;22534;28360;63895;48911;29688;39276;49556;32978;32527;47286;41058;32180;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;300;100;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;51;180;82;;;;;;;;;;;;;;;;;;;;;;;;;;
-95;'340;Honduras;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;0;0;0;0;0
-95;'340;Honduras;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29132;20600;10000;14000;9200;17000;91786;91786;13833;6200;7900;14700;38604;37283;51734;68259;59651;50547;43628;57568;74041;57208;61240;50645.35;99573;80756
-95;'340;Honduras;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13696;11507;6267;5597;4932;9403;37480;37480;7321;3885;5224;7631;23125;23590;29579;44859;37944;29505;23685;34327;54085;36210;33294;37107.92;98395;54606
-95;'340;Honduras;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;1800;300;1000;2000;2000;1154;1154;733;600;300;1900;585;413;35753;43238;34218;38101;40482;35988;36566;158;481;1623.63;216;260
-95;'340;Honduras;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;860;196;369;839;839;574;574;430;385;324;1257;544;372;20604;26368;23513;25041;22626;18338;24487;145;314;1244.01;219;231
-95;'340;Honduras;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47250;38674;40000;17000;17000
-95;'340;Honduras;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23193;16400;16400;28000;14000;50000;5372;32000;58698;54700;58200;36500;60677;60588;37847;36653;42348;53868;61634;99900;82981;36851;29140;43359.27;64929;36223
-95;'340;Honduras;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10637;8937;8937;12148;6143;23000;4848;21000;31831;32173;32575;18023;42026;49214;34973;37285;42443;48563;50684;76530;77314;41946;32313;50288.5;65934;50146
-95;'340;Honduras;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;675;675;1200;1802;17109;739;8118;16006;28864;35000;37335;60492;6560;13693;6312;8659.23;16795;71
-95;'340;Honduras;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;359;359;694;925;9960;436;9169;42342;64004;84192;97131;88364;6036;15199;6890;18387.24;19862;82
-95;'340;Honduras;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8485;6000;5500;11000;7100;9000;13668;13668;19653;20000;10400;10400;24225;18924;10272;14084;14362;52052;7549;8564;5351;18878;21565;17152.38;9297;7854
-95;'340;Honduras;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7223;6069;4531;10171;4969;5000;7289;7289;15825;16387;11242;11242;18120;17493;7879;13552;13017;34539;6558;6753;6012;17034;14465;14874.45;11417;11724
-95;'340;Honduras;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;158;1020;1020;1020;1020;1653;750;770;1049;640;534;568;568;193;2059;1773;1667.59;1086;927
-95;'340;Honduras;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;364;364;364;364;1044;811;1240;1247;608;559;556;556;261;1922;1717;1896.5;1578;1068
-95;'340;Honduras;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990;700;200;1000;900;1000;552;552;12608;12608;18000;18000;208;128;1662;582;276;492;912;841;101;99;90;10;129;10510
-95;'340;Honduras;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;552;151;539;595;873;237;237;6231;6231;12074;12074;238;201;1219;471;327;488;785;689;206;143;132;56;231;8031
-95;'340;Honduras;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;600;100;100;0;0;0;0;39;39;39;39;1;19;27;16;18;23;30;138;220;59;26;23;7;9
-95;'340;Honduras;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;168;10;10;0;0;0;0;22;22;22;22;2;22;29;19;22;28;35;209;199;45;29;26;8;14
-95;'340;Honduras;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;10000;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0
-95;'340;Honduras;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;60300;46300;45100;47400;49300;49300;36800;18900;40000;36800;35100;35300;35300;1200;1100;400;500;500;500;500;500;500;500;500;500;4800;2900;8000;9800;5600;70000;1700;11100;1000;500;500;2936;2936;6199;4900;3600;1000;949;1999;2441;3260;1244;3973;25850;23342;26957;29412;31471;36979.39;41054;20374
-95;'340;Honduras;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;8768;6444;6627;8964;7888;7888;10634;7021;15835;16694;15900;16386;16386;2335;1584;551;700;700;700;700;700;700;700;700;700;4896;3427;7061;8056;5130;41121;3250;21200;2117;414;414;5965;5965;10648;10619;9803;2467;2284;3837;3910;3875;2319;3857;16984;15408;21429;20050;20575;30538.94;44660;14880
-95;'340;Honduras;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;700;300;300;0;0;300;0;0;0;0;0;28;28;133;133;1600;1600;15;30;7;7;24;8;3840;16273;13515;1901;21;42;11;15
-95;'340;Honduras;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;437;669;941;0;0;333;0;0;0;0;0;94;94;106;106;728;728;31;66;28;35;57;34;1785;8125;7977;566;42;64;121;141
-95;'340;Honduras;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32847;37748;39806;33167;52905;72178;69327
-95;'340;Honduras;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40112;41205;25064;34634;28068;51905;47656
-95;'340;Honduras;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;240;132;44;122;316;274
-95;'340;Honduras;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592;399;143;322;307;1226;1401
-95;'340;Honduras;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;19;0;21;262;182
-95;'340;Honduras;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;397;142;300;307;1161;1389
-95;'340;Honduras;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;226;113;44;101;54;92
-95;'340;Honduras;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;2;1;22;0;65;12
-95;'340;Honduras;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6303;7681;10287;12155;10085;21583;18072
-95;'340;Honduras;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11042;10610;1088;12353;1056;11055;8873
-95;'340;Honduras;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;821;801;433;758;2605;2208
-95;'340;Honduras;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;142;247;239;270;767;677
-95;'340;Honduras;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4015;4724;4084;3913;5978;1562;2253
-95;'340;Honduras;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1261;999;339;1047;747;2529;2321
-95;'340;Honduras;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-95;'340;Honduras;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20759;23012;21559;14042;33294;39048;39243
-95;'340;Honduras;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17819;20193;19030;13276;22179;27302;26741
-95;'340;Honduras;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;122;1609;1275;626;11;12
-95;'340;Honduras;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;120;34;34;23;31;8
-95;'340;Honduras;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1148;1334;1305;2042;7053;7265
-95;'340;Honduras;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9055;8742;4183;7363;3486;8995;7635
-95;'340;Honduras;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140410;134853;149412;132096;159139;262297;281374
-95;'340;Honduras;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115913;102445;68790;62469;71749;77801;65510
-95;'340;Honduras;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;21;56;18;27;19;181
-95;'340;Honduras;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17334;818;818;1;1;1;1
-95;'340;Honduras;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8054;8131;7489;5665;7765;16490;16490
-95;'340;Honduras;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;1136;120;537;56;195;160
-95;'340;Honduras;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68161;60540;76576;72299;83364;92267;113088
-95;'340;Honduras;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;61;193;343;313;545;1796
-95;'340;Honduras;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38565;40328;38571;37380;46624;83843;86277
-95;'340;Honduras;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69089;76012;51382;41563;54589;47194;34114
-95;'340;Honduras;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535;25833;26720;16734;21359;69678;65338
-95;'340;Honduras;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27485;24418;16277;20025;16790;29866;29439
-97;'348;Hungary;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2189773.58;2425860;2358400;2361403;2991120;2812277;2741311
-97;'348;Hungary;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084073.13;2191761;2059230;2045758;2510795;2508521;2366652
-97;'348;Hungary;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;70706;73343;77257;93144;98691;98782;99278;125771;124933;151777;187897;180431;230771;310428;457403;323248;370559;413889;370436;435609;338431;267875;280197;265317;252705;300097;292955;344055;373741;322180;372770;219545;280207;370013;402733;441002;491523;602225;612412;686475;697826;695189;967780;1138762;1086379;1162940;1513628;1519357;1228252;1215328;1382545;1199186;1274226;1342898;1192260;1233670;1313548.69;1433018;1316254;1236241;1645504;1422818;1356343
-97;'348;Hungary;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1505;2755;4033;4328;5519;13460;17862;15294;24981;27687;32664;37521;57543;70301;77782;88971;98402;86105;94911;101827;76213;85521;109611;92952;86984;111300;134238;136901;137653;146132;143152;219145;131151;123551;169653;204034;270136;332086;369184;351010;370893;457912;505842;641046;655614;785272;988634;950233;810385;930960;1084871;989137;1049639;1091312;980507;952624;1056221.34;1121716;996639;951891;1224544;1248290;1053994
-97;'348;Hungary;1861;Roundwood;5516;Production;m3;3740000;3886000;4004000;4018000;4026000;4161000;4418000;4596000;4583000;5034000;5376000;5370000;5330000;5469000;5384000;5581000;5555000;6112000;5917000;6158000;6377000;6403000;6324000;6234000;6758000;6951000;6666000;6515000;6520000;5973000;5490000;5006000;4496000;4527000;4331000;3653000;4241000;4167000;5230800;5902000;5811000;5836400;5785000;5660300;5940000;5913000;5640000;5276000;5244000;5740275;6232450;5946115;6027202;5798162;5743969;5586169;5689370;5856004;5575423;4972420;5984776;4972420;4972420
-97;'348;Hungary;1861;Roundwood;5616;Import quantity;m3;1594300;1628800;1661800;2123500;1977100;1824000;1705100;1860900;1767500;1682500;1849200;1588700;1926700;1965500;1702000;1636500;1851100;2031100;1489900;1562700;1567700;963100;1293200;1280000;1111300;1180600;1218400;1217400;1223400;212043;708695;32079;363106;141700;240000;218600;258600;320700;361200;353700;317000;332000;530000;589000;350000;357000;496000;290300;284109;509449;328224;276411;284365;314894;430837;480789;393688;500019;322111;286454;293119;286454;286454
-97;'348;Hungary;1861;Roundwood;5622;Import value;1000 USD;22650;25395;25187;32029;30290;27938;29710;33162;33716;30782;40670;36357;49609;69046;64530;53562;67444;78662;64591;68559;61818;28506;35584;35772;33486;37916;35691;37233;37814;21705;55439;2744;20393;9670;16282;13993;15177;18962;22200;19192;17625;18448;24286;25212;18929;15827;28102;26524;15969;23664;22524;18678;19417;23948;24929;26247;25661.16;28393;22499;16863;26095;16863;16863
-97;'348;Hungary;1861;Roundwood;5916;Export quantity;m3;13800;59300;114700;138300;131600;153300;299700;375600;464600;626300;382800;611400;792700;857000;788100;719500;895100;777400;839400;709300;754600;852400;829600;1076400;1174600;1323600;1427500;1458000;1451000;1110287;1044702;1400903;802400;609400;694800;803800;858900;1418900;1331900;1593400;1515000;1575000;1753000;1479000;1117000;1309000;1274000;827000;912050;1119116;1160421;1197822;1297610;1171620;947970;956413;822302;707734;712223;798401;930872;798401;798401
-97;'348;Hungary;1861;Roundwood;5922;Export value;1000 USD;175;875;1473;1533;1567;1797;2317;2931;4185;7148;6088;7675;12127;17377;27688;20444;28541;27673;35169;34736;34586;38792;31188;37968;40439;54794;62585;63985;63541;62584;64243;81107;50575;38167;37274;38462;42286;61927;63007;59545;56488;58474;73722;73213;71291;68467;86717;98583;63635;81816;94357;86112;92213;87723;63570;63630;62625.18;64666;75481;68503;90103;68501;68501
-97;'348;Hungary;1862;Roundwood, coniferous;5516;Production;m3;225000;233000;241000;241000;245000;183000;199000;203000;268000;240000;244000;254000;290000;310000;315000;323000;361000;357000;362000;371000;421000;430000;474000;557000;512000;501000;485000;501000;500000;465000;428000;393000;457000;504000;420000;423000;552000;545000;542900;696300;616000;620100;678000;861300;779000;802000;760000;580600;720500;720867;794541;844622;1015583;1061685;948743;1002830;951384;925002;917721;1000347;967679;1000347;1000347
-97;'348;Hungary;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75886;232384;140753;167022;148457;167022;167022
-97;'348;Hungary;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180.74;13349;7896;8079;12078;8079;8079
-97;'348;Hungary;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323570;238965;219660;207501;238613;207501;207501
-97;'348;Hungary;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16366.57;13285;13524;12907;15853;12906;12906
-97;'348;Hungary;1863;Roundwood, non-coniferous;5516;Production;m3;3515000;3653000;3763000;3777000;3781000;3978000;4219000;4393000;4315000;4794000;5132000;5116000;5040000;5159000;5069000;5258000;5194000;5755000;5555000;5787000;5956000;5973000;5850000;5677000;6246000;6450000;6181000;6014000;6020000;5508000;5062000;4613000;4039000;4023000;3911000;3230000;3689000;3622000;4687900;5205700;5195000;5216300;5107000;4799000;5161000;5111000;4880000;4695400;4523500;5019408;5437909;5101493;5011619;4736477;4795226;4583339;4737986;4931002;4657702;3972073;5017097;3972073;3972073
-97;'348;Hungary;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317802;267635;181358;119432;144662;119432;119432
-97;'348;Hungary;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21480.42;15044;14603;8784;14017;8784;8784
-97;'348;Hungary;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498732;468769;492563;590900;692259;590900;590900
-97;'348;Hungary;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46258.61;51381;61957;55596;74250;55595;55595
-97;'348;Hungary;1864;Wood fuel;5516;Production;m3;2033000;1977000;1991000;1987000;2033000;2215000;2303000;2328000;2250000;2538000;2698000;2633000;2406000;2439000;2248000;2453000;2375000;2396000;2426000;2479000;2673000;2825000;2764000;2498000;2975000;3011000;2934000;2865000;2860000;2455000;2291000;2175000;2230000;2066000;1948000;1853000;1909000;1871000;2575800;2596900;2319000;2398200;2781000;2672000;3136000;3246000;2879000;2561000;2879300;2993983;3214856;2958918;2858473;2679404;2679171;2636150;2826927;2817977;2683815;2515545;2860209;2515545;2515545
-97;'348;Hungary;1864;Wood fuel;5616;Import quantity;m3;502300;284000;490600;731800;661200;542300;183100;183100;6200;6800;500;;;;;;;;;;;;;;;;;;;;;106;6;500;400;100;400;2600;3300;9300;8000;12000;41000;40000;113000;168000;197000;83800;89499;248463;78717;67954;77720;90500;147334;165754;168706;147397;47217;26654;35038;26654;26654
-97;'348;Hungary;1864;Wood fuel;5622;Import value;1000 USD;3930;2225;3952;5946;5332;3952;1295;1295;51;43;3;;;;;;;;;;;;;;;;;;;;;10;1;15;13;12;28;33;40;142;122;179;839;1166;3150;4561;6821;4574;2572;6908;2640;1947;2416;3286;4701;4458;5363.39;5935;2016;1183;1858;1183;1183
-97;'348;Hungary;1864;Wood fuel;5916;Export quantity;m3;;;;;;;56800;56400;56600;700;700;19000;38100;75200;52600;21900;48300;69500;25200;25200;25200;2200;16000;43000;75100;87000;130700;148000;148000;148000;148000;338770;290000;158200;132400;250000;158000;214900;252900;311000;288000;365000;387000;342000;246000;214000;220000;166100;227759;246049;279331;340107;323017;300358;267845;272965;188688;160694;87896;70546;93322;70546;70546
-97;'348;Hungary;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;204;221;255;3;3;92;222;700;494;249;616;1050;538;538;538;55;254;903;1488;3329;4364;5689;5689;5689;5689;13619;7492;7127;7460;9944;8132;7506;8613;9830;9092;12583;17274;17750;12765;12553;11810;14659;13606;13342;16472;17725;18289;16789;14242;13661;11518.42;10094;6803;5341;7448;5341;5341
-97;'348;Hungary;1627;Wood fuel, coniferous;5516;Production;m3;40000;38000;39000;39000;48000;41000;37000;36000;85000;44000;35000;39000;55000;50000;50000;41000;38000;31000;30000;29000;33000;46000;47000;53000;51000;48000;53000;64000;60000;62000;50000;49000;88000;49000;40000;81000;81000;79000;50900;87500;44000;43300;63000;78100;96000;99000;129000;75600;141500;96855;117538;112766;129920;172162;140358;148757;111950;105566;99711;141953;97897;141953;141953
-97;'348;Hungary;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33501;41483;290;696;890;696;696
-97;'348;Hungary;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1332.72;1853;42;117;154;117;117
-97;'348;Hungary;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22973;17548;9440;17237;13347;17237;17237
-97;'348;Hungary;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1575.51;1190;878;1518;1336;1518;1518
-97;'348;Hungary;1628;Wood fuel, non-coniferous;5516;Production;m3;1993000;1939000;1952000;1948000;1985000;2174000;2266000;2292000;2165000;2494000;2663000;2594000;2351000;2389000;2198000;2412000;2337000;2365000;2396000;2450000;2640000;2779000;2717000;2445000;2924000;2963000;2881000;2801000;2800000;2393000;2241000;2126000;2142000;2017000;1908000;1772000;1828000;1792000;2524900;2509400;2275000;2354900;2718000;2593900;3040000;3147000;2750000;2485400;2737800;2897128;3097318;2846152;2728553;2507242;2538813;2487393;2714977;2712411;2584104;2373592;2762312;2373592;2373592
-97;'348;Hungary;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135205;105914;46927;25958;34148;25958;25958
-97;'348;Hungary;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4030.66;4082;1974;1066;1704;1066;1066
-97;'348;Hungary;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165715;143146;78456;53309;79975;53309;53309
-97;'348;Hungary;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9942.91;8904;5925;3823;6112;3823;3823
-97;'348;Hungary;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;502300;284000;490600;731800;661200;542300;183100;183100;6200;6800;500;;;;;;;;;;;;;;;;;;;;;106;6;500;400;100;400;2600;3300;9300;8000;12000;41000;40000;113000;168000;197000;83800;89499;248463;78717;67954;77720;90500;147334;165754;;;;;;;
-97;'348;Hungary;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;3930;2225;3952;5946;5332;3952;1295;1295;51;43;3;;;;;;;;;;;;;;;;;;;;;10;1;15;13;12;28;33;40;142;122;179;839;1166;3150;4561;6821;4574;2572;6908;2640;1947;2416;3286;4701;4458;;;;;;;
-97;'348;Hungary;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;56800;56400;56600;700;700;19000;38100;75200;52600;21900;48300;69500;25200;25200;25200;2200;16000;43000;75100;87000;130700;148000;148000;148000;148000;338770;290000;158200;132400;250000;158000;214900;252900;311000;288000;365000;387000;342000;246000;214000;220000;166100;227759;246049;279331;340107;323017;300358;267845;272965;;;;;;;
-97;'348;Hungary;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;204;221;255;3;3;92;222;700;494;249;616;1050;538;538;538;55;254;903;1488;3329;4364;5689;5689;5689;5689;13619;7492;7127;7460;9944;8132;7506;8613;9830;9092;12583;17274;17750;12765;12553;11810;14659;13606;13342;16472;17725;18289;16789;14242;13661;;;;;;;
-97;'348;Hungary;1865;Industrial roundwood;5516;Production;m3;1707000;1909000;2013000;2031000;1993000;1946000;2115000;2268000;2333000;2496000;2678000;2737000;2924000;3030000;3136000;3128000;3180000;3716000;3491000;3679000;3704000;3578000;3560000;3736000;3783000;3940000;3732000;3650000;3660000;3518000;3199000;2831000;2266000;2461000;2383000;1800000;2332000;2296000;2655000;3305100;3492000;3438200;3004000;2988300;2804000;2667000;2761000;2715000;2364700;2746292;3017594;2987197;3168729;3118758;3064798;2950019;2862443;3038027;2891608;2456875;3124567;2456875;2456875
-97;'348;Hungary;1865;Industrial roundwood;5616;Import quantity;m3;1092000;1344800;1171200;1391700;1315900;1281700;1522000;1677800;1761300;1675700;1848700;1588700;1926700;1965500;1702000;1636500;1851100;2031100;1489900;1562700;1567700;963100;1293200;1280000;1111300;1180600;1218400;1217400;1223400;212043;708695;31973;363100;141200;239600;218500;258200;318100;357900;344400;309000;320000;489000;549000;237000;189000;299000;206500;194610;260986;249507;208457;206645;224394;283503;315035;224982;352622;274894;259800;258081;259800;259800
-97;'348;Hungary;1865;Industrial roundwood;5622;Import value;1000 USD;18720;23170;21235;26083;24958;23986;28415;31867;33665;30739;40667;36357;49609;69046;64530;53562;67444;78662;64591;68559;61818;28506;35584;35772;33486;37916;35691;37233;37814;21705;55439;2734;20392;9655;16269;13981;15149;18929;22160;19050;17503;18269;23447;24046;15779;11266;21281;21950;13397;16756;19884;16731;17001;20662;20228;21789;20297.77;22458;20483;15680;24237;15680;15680
-97;'348;Hungary;1865;Industrial roundwood;5916;Export quantity;m3;13800;59300;114700;138300;131600;153300;242900;319200;408000;625600;382100;592400;754600;781800;735500;697600;846800;707900;814200;684100;729400;850200;813600;1033400;1099500;1236600;1296800;1310000;1303000;962287;896702;1062133;512400;451200;562400;553800;700900;1204000;1079000;1282400;1227000;1210000;1366000;1137000;871000;1095000;1054000;660900;684291;873067;881090;857715;974593;871262;680125;683448;633614;547040;624327;727855;837550;727855;727855
-97;'348;Hungary;1865;Industrial roundwood;5922;Export value;1000 USD;175;875;1473;1533;1567;1797;2113;2710;3930;7145;6085;7583;11905;16677;27194;20195;27925;26623;34631;34198;34048;38737;30934;37065;38951;51465;58221;58296;57852;56895;58554;67488;43083;31040;29814;28518;34154;54421;54394;49715;47396;45891;56448;55463;58526;55914;74907;83924;50029;68474;77885;68387;73924;70934;49328;49969;51106.76;54572;68678;63162;82655;63160;63160
-97;'348;Hungary;1866;Industrial roundwood, coniferous;5516;Production;m3;185000;195000;202000;202000;197000;142000;162000;167000;183000;196000;209000;215000;235000;260000;265000;282000;323000;326000;332000;342000;388000;384000;427000;504000;461000;453000;432000;437000;440000;403000;378000;344000;369000;455000;380000;342000;471000;466000;492000;608800;572000;576800;615000;783200;683000;703000;631000;505000;579000;624012;677003;731856;885663;889523;808385;854073;839434;819436;818010;858394;869782;858394;858394
-97;'348;Hungary;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202415;668007;26137;337100;122000;213100;210000;237000;290400;296400;288800;260000;277000;364000;475000;185000;169000;174000;124000;134023;154287;137143;106703;86990;99703;117310;131999;42385;190901;140463;166326;147567;166326;166326
-97;'348;Hungary;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20240;50429;2084;17699;7564;14682;12954;12495;15043;14913;13788;12537;13867;16226;17166;9685;8690;13522;13539;8283;9178;10536;7792;6397;7561;6117;6636;2848.01;11496;7854;7962;11924;7962;7962
-97;'348;Hungary;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209154;199314;188292;296400;182200;199300;203800;216900;273400;252100;339900;324000;313000;379000;486000;289000;345000;351000;213700;311888;292198;264409;292046;448459;358377;290702;346562;300597;221417;210220;190264;225266;190264;190264
-97;'348;Hungary;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13511;10617;8721;11574;6043;8910;8547;6726;8788;8397;9963;9630;9469;11396;11334;11972;10201;15169;17818;17950;17239;17782;18096;26432;23288;15056;16325;14791.07;12095;12646;11389;14517;11388;11388
-97;'348;Hungary;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202415;668007;26137;337100;122000;213100;210000;237000;290400;296400;288800;260000;277000;364000;475000;185000;169000;174000;124000;134023;154287;137143;106703;86990;99703;117310;131999;42385;190901;140463;166326;147567;166326;166326
-97;'348;Hungary;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20240;50429;2084;17699;7564;14682;12954;12495;15043;14913;13788;12537;13867;16226;17166;9685;8690;13522;13539;8283;9178;10536;7792;6397;7561;6117;6636;2848.01;11496;7854;7962;11924;7962;7962
-97;'348;Hungary;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209154;199314;188292;296400;182200;199300;203800;216900;273400;252100;339900;324000;313000;379000;486000;289000;345000;351000;213700;311888;292198;264409;292046;448459;358377;290702;346562;300597;221417;210220;190264;225266;190264;190264
-97;'348;Hungary;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13511;10617;8721;11574;6043;8910;8547;6726;8788;8397;9963;9630;9469;11396;11334;11972;10201;15169;17818;17950;17239;17782;18096;26432;23288;15056;16325;14791.07;12095;12646;11389;14517;11388;11388
-97;'348;Hungary;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1522000;1714000;1811000;1829000;1796000;1804000;1953000;2101000;2150000;2300000;2469000;2522000;2689000;2770000;2871000;2846000;2857000;3390000;3159000;3337000;3316000;3194000;3133000;3232000;3322000;3487000;3300000;3213000;3220000;3115000;2821000;2487000;1897000;2006000;2003000;1458000;1861000;1830000;2163000;2696300;2920000;2861400;2389000;2205100;2121000;1964000;2130000;2210000;1785700;2122280;2340591;2255341;2283066;2229235;2256413;2095946;2023009;2218591;2073598;1598481;2254785;1598481;1598481
-97;'348;Hungary;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9628;40688;5836;26000;19200;26500;8500;21200;27700;61500;55600;49000;43000;125000;74000;52000;20000;125000;82500;60587;106699;112364;101754;119655;124691;166193;183036;182597;161721;134431;93474;110514;93474;93474
-97;'348;Hungary;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465;5010;650;2693;2091;1587;1027;2654;3886;7247;5262;4966;4402;7221;6880;6094;2576;7759;8411;5114;7578;9348;8939;10604;13101;14111;15153;17449.76;10962;12629;7718;12313;7718;7718
-97;'348;Hungary;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753133;697388;873841;216000;269000;363100;350000;484000;930600;826900;942500;903000;897000;987000;651000;582000;750000;703000;447200;372403;580869;616681;565669;526134;512885;389423;336886;333017;325623;414107;537591;612284;537591;537591
-97;'348;Hungary;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43384;47937;58767;31509;24997;20904;19971;27428;45633;45997;39752;37766;36422;45052;44129;46554;45713;59738;66106;32079;51235;60103;50291;47492;47646;34272;33644;36315.7;42477;56032;51773;68138;51772;51772
-97;'348;Hungary;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;600;200;300;600;800;5000;3000;11000;7000;3000;0;1000;34000;27200;20368;64;12;11;0;0;1;7;7;1;225;22856;917;462;462
-97;'348;Hungary;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;90;48;54;4;8;115;52;1662;1325;583;0;390;2007;2394;1554;40;7;26;0;0;2;10;13.28;1;5;10;4;10;10
-97;'348;Hungary;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3300;2000;3000;3000;2000;0;0;0;0;0;0;3;11;1576;0;0;3;75;1;29;0;0;0;0
-97;'348;Hungary;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;104;59;109;129;133;0;0;0;0;0;0;3;5;130;0;0;1;34.03;0;4;0;0;0;0
-97;'348;Hungary;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9628;40688;5836;26000;18000;25900;8300;20900;27100;60700;50600;46000;32000;118000;71000;52000;19000;91000;55300;40219;106635;112352;101743;119655;124691;166192;183029;182590;161720;134206;70618;109597;93012;93012
-97;'348;Hungary;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465;5010;650;2693;1822;1497;979;2600;3882;7239;5147;4914;2740;5896;6297;6094;2186;5752;6017;3560;7538;9341;8913;10604;13101;14109;15143;17436.48;10961;12624;7708;12309;7708;7708
-97;'348;Hungary;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753133;697388;873841;216000;269000;363100;350000;484000;930600;826900;939200;901000;894000;984000;649000;582000;750000;703000;447200;372403;580869;616678;565658;524558;512885;389423;336883;332942;325622;414078;537591;612284;537591;537591
-97;'348;Hungary;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43384;47937;58767;31509;24997;20904;19971;27428;45629;45997;39648;37707;36313;44923;43996;46554;45713;59738;66106;32079;51235;60100;50286;47362;47646;34272;33643;36281.67;42477;56028;51773;68138;51772;51772
-97;'348;Hungary;1868;Sawlogs and veneer logs;5516;Production;m3;798000;848000;833000;959000;895000;968000;976000;1011000;1099000;1187000;1408000;1478000;1515000;1513000;1523000;1520000;1554000;2075000;1802000;1820000;1897000;1840000;1886000;1869000;1930000;1973000;2003000;2024000;2030000;2045000;1817000;1446000;1017000;1211000;1303000;1226000;1192000;1168000;1167000;1379600;1430000;1859700;1571000;1575000;1248000;1166000;1297000;1634500;978600;1078849;1231643;1195769;1162752;1104507;1161750;1129628;1196798;1342761;1274433;1154730;1326270;1154730;1154730
-97;'348;Hungary;1868;Sawlogs and veneer logs;5616;Import quantity;m3;304600;441200;343400;485000;455100;469800;629400;831100;951300;781800;795600;544600;944400;946800;546300;551200;586300;514400;483200;678600;580700;138700;211400;213900;274200;251300;213300;235400;241400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;6630;9480;7786;11329;10673;10366;13236;17241;19633;17988;21078;15695;27715;43170;27441;22221;28141;30461;32195;41643;37569;7317;10077;12084;14934;15281;11053;14837;15418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1500;15800;13000;13700;12700;11200;10800;11300;12900;15200;14800;27500;48500;52800;54600;57400;58500;61600;58300;20800;15400;43200;48200;79500;66500;78600;66600;94000;87000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;40;395;315;332;315;281;273;307;358;512;545;943;2074;2702;2416;3151;3644;4495;3602;1704;1078;2550;2789;4656;4253;6290;7395;7120;6676;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;52000;69000;94000;102000;72000;59000;59000;69000;71000;85000;86000;88000;126000;133000;132000;137000;161000;194000;174000;167000;157000;170000;196000;201000;183000;161000;169000;170000;170000;138000;130000;96000;99000;86000;90000;142000;147000;144000;139000;105300;103000;139900;177000;237300;121000;142000;160000;130500;115800;125212;164898;148391;195363;185107;162110;153980;169932;153518;156152;168604;226678;168604;168604
-97;'348;Hungary;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;281400;413100;312800;449900;429000;443300;495100;528000;656500;637300;617700;405300;783400;807600;386300;414500;493100;465400;440800;646700;570000;126500;197600;200800;262500;237600;198900;214000;220000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;5655;8300;6474;8978;8816;9276;10647;11355;14305;14254;16195;11866;23429;38558;19721;16521;22809;25619;26996;37453;34645;4198;7265;9339;12300;11474;6486;7419;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;13500;9200;9200;9200;9200;9200;9200;9000;8200;9100;14800;18500;18500;18500;18500;18500;18500;10200;2400;2400;9400;8900;30000;20000;20000;300;7000;7000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;340;230;230;230;230;230;230;264;273;351;583;1217;1217;1217;1217;1217;1217;460;110;110;478;409;1250;800;800;34;676;676;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;746000;779000;739000;857000;823000;909000;917000;942000;1028000;1102000;1322000;1390000;1389000;1380000;1391000;1383000;1393000;1881000;1628000;1653000;1740000;1670000;1690000;1668000;1747000;1812000;1834000;1854000;1860000;1907000;1687000;1350000;918000;1125000;1213000;1084000;1045000;1024000;1028000;1274300;1327000;1719800;1394000;1337700;1127000;1024000;1137000;1504000;862800;953637;1066745;1047378;967389;919400;999640;975648;1026866;1189243;1118281;986126;1099592;986126;986126
-97;'348;Hungary;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;23200;28100;30600;35100;26100;26500;134300;303100;294800;144500;177900;139300;161000;139200;160000;136700;93200;49000;42400;31900;10700;12200;13800;13100;11700;13700;14400;21400;21400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;975;1180;1312;2351;1857;1090;2589;5886;5328;3734;4883;3829;4286;4612;7720;5700;5332;4842;5199;4190;2924;3119;2812;2745;2634;3807;4567;7418;7418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1500;2300;3800;4500;3500;2000;1600;2100;3900;7000;5700;12700;30000;34300;36100;38900;40000;43100;48100;18400;13000;33800;39300;49500;46500;58600;66300;87000;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;40;55;85;102;85;51;43;77;94;239;194;360;857;1485;1199;1934;2427;3278;3142;1594;968;2072;2380;3406;3453;5490;7361;6444;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363000;414000;611600;594000;622900;583000;653300;453000;475000;411000;832300;853100;954483;958671;1073046;1133342;1143674;990687;948855;928860;931905;924204;902178;1111305;902178;902178
-97;'348;Hungary;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161000;187000;289200;259000;290700;284000;392900;270000;300000;216000;327000;382900;378031;358546;451202;517524;513318;422818;470688;491111;509798;521308;595861;540867;595861;595861
-97;'348;Hungary;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202000;227000;322400;335000;332200;299000;260400;183000;175000;195000;505300;470200;576452;600125;621844;615818;630356;567869;478167;437749;422107;402896;306317;570438;306317;306317
-97;'348;Hungary;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;136900;216600;122100;137200;123900;122200;237800;279600;225200;292300;450700;445200;383800;418100;542400;486200;500100;590400;322500;276800;255600;264800;343900;357300;265900;331000;324900;338000;338000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;1855;2930;1882;2164;1951;2164;4199;5026;4058;4424;7732;8370;7555;10950;17830;16871;17592;20164;11147;10351;6620;6718;8146;8098;6324;8865;8007;7200;7200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;12300;43500;101700;124600;118900;142100;231300;307100;393500;606700;366900;562800;687100;709800;668000;621400;769000;606600;655400;660900;708800;805500;759400;934500;1029500;1154000;1220000;1206000;1206000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;135;480;1158;1201;1252;1516;1831;2394;3555;6581;5531;6585;9058;13015;24061;15815;23041;18667;23186;32278;32569;36087;27880;31618;34550;44891;50117;50361;50361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1870;Pulpwood and particles (1961-1997);5516;Production;m3;72000;101000;272000;342000;361000;406000;486000;538000;539000;548000;493000;814000;946000;1029000;1065000;1047000;1133000;1071000;1153000;1268000;1228000;1201000;1146000;1338000;1399000;1505000;1351000;1256000;1260000;1154000;1100000;1148000;823000;856000;660000;375000;360000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;136900;216600;122100;137200;123900;122200;237800;279600;225200;292300;450700;445200;383800;418100;542400;486200;500100;590400;322500;276800;255600;264800;343900;357300;265900;331000;324900;338000;338000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;1855;2930;1882;2164;1951;2164;4199;5026;4058;4424;7732;8370;7555;10950;17830;16871;17592;20164;11147;10351;6620;6718;8146;8098;6324;8865;8007;7200;7200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;12300;43500;101700;124600;118900;142100;231300;307100;393500;606700;366900;562800;687100;709800;668000;621400;769000;606600;655400;660900;708800;805500;759400;934500;1029500;1154000;1220000;1206000;1206000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;135;480;1158;1201;1252;1516;1831;2394;3555;6581;5531;6585;9058;13015;24061;15815;23041;18667;23186;32278;32569;36087;27880;31618;34550;44891;50117;50361;50361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;1000;74000;70000;42000;47000;69000;39000;57000;48000;42000;61000;85000;96000;95000;133000;147000;105000;126000;150000;204000;186000;178000;237000;244000;261000;232000;230000;230000;229000;225000;228000;234000;340000;260000;165000;160000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;72000;100000;198000;272000;319000;359000;417000;499000;482000;500000;451000;753000;861000;933000;970000;914000;986000;966000;1027000;1118000;1024000;1015000;968000;1101000;1155000;1244000;1119000;1026000;1030000;925000;875000;920000;589000;516000;400000;210000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1871;Other industrial roundwood;5516;Production;m3;837000;960000;908000;730000;737000;572000;653000;719000;695000;761000;777000;445000;463000;488000;548000;561000;493000;570000;536000;591000;579000;537000;528000;529000;454000;462000;378000;370000;370000;319000;282000;237000;426000;394000;420000;199000;780000;765000;1074000;1313900;1468000;955600;850000;760000;1103000;1026000;1053000;248200;533000;712960;827280;718382;872635;870577;912361;871536;736785;763361;692971;399967;686992;399967;399967
-97;'348;Hungary;1871;Other industrial roundwood;5616;Import quantity;m3;650500;687000;705700;769500;736900;689700;654800;567100;584800;601600;602400;598900;598500;600600;613300;599100;764700;926300;684200;607300;731400;559600;737900;708800;571200;598300;680200;644000;644000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1871;Other industrial roundwood;5622;Import value;1000 USD;10235;10760;11567;12590;12334;11456;10980;9600;9974;8327;11857;12292;14339;14926;19259;14470;21711;28037;21249;16565;17629;14471;17361;15590;12228;13770;16631;15196;15196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;800;800;1600;3700;400;2100;19000;19200;12900;18800;19300;39700;100500;2400;5200;1500;6000;19400;3500;4000;10200;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;9;9;17;52;9;55;773;960;717;1229;1240;3461;7843;216;401;100;265;791;148;284;709;815;815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;133000;125000;34000;30000;83000;36000;34000;59000;55000;63000;81000;66000;24000;31000;38000;12000;15000;27000;32000;25000;27000;28000;53000;66000;34000;31000;31000;37000;40000;36000;23000;20000;36000;29000;30000;35000;164000;161000;166000;214300;210000;146200;154000;153000;292000;261000;255000;47500;80300;120769;153559;132263;172776;191098;223457;229405;178391;156120;140550;93929;102237;93929;93929
-97;'348;Hungary;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;704000;835000;874000;700000;654000;536000;619000;660000;640000;698000;696000;379000;439000;457000;510000;549000;478000;543000;504000;566000;552000;509000;475000;463000;420000;431000;347000;333000;330000;283000;259000;217000;390000;365000;390000;164000;616000;604000;908000;1099600;1258000;809400;696000;607000;811000;765000;798000;200700;452700;592191;673721;586119;699859;679479;688904;642131;558394;607241;552421;306038;584755;306038;306038
-97;'348;Hungary;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;650500;687000;705700;769500;736900;689700;654800;567100;584800;601600;602400;598900;598500;600600;613300;599100;764700;926300;684200;607300;731400;559600;737900;708800;571200;598300;680200;644000;644000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;10235;10760;11567;12590;12334;11456;10980;9600;9974;8327;11857;12292;14339;14926;19259;14470;21711;28037;21249;16565;17629;14471;17361;15590;12228;13770;16631;15196;15196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;800;800;1600;3700;400;2100;19000;19200;12900;18800;19300;39700;100500;2400;5200;1500;6000;19400;3500;4000;10200;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;9;9;17;52;9;55;773;960;717;1229;1240;3461;7843;216;401;100;265;791;148;284;709;815;815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1630;Wood charcoal;5510;Production;t;144;2654;1565;2975;0;1696;3807;4717;14928;12038;14314;13663;17005;20644;20257;19417;19096;19870;25622;22144;19155;19103;19694;19691;18401;21080;17319;19356;19360;19505;19893;23115;24482;21993;23609;23320;24272;18000;16000;19000;18000;22000;2000;2000;0;2000;1000;1000;1000;103;13;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1630;Wood charcoal;5610;Import quantity;t;15500;13000;14100;12700;16000;14000;15400;13800;5100;7700;5900;5500;5300;5200;5300;5200;5200;4500;4100;4100;4100;3400;4100;4100;2000;2000;2000;2000;2000;2000;2000;139;139;0;200;1300;700;400;200;1300;2000;1000;1000;1000;3000;2000;2000;0;0;1482;1751;1570;719;2135;649;1834;1873;2381;2752;3860;4406;3860;3860
-97;'348;Hungary;1630;Wood charcoal;5622;Import value;1000 USD;600;500;545;503;639;596;716;656;239;358;351;314;349;360;540;405;417;534;438;454;427;348;392;367;186;186;186;186;186;186;186;38;38;0;76;363;165;69;28;201;307;128;112;302;441;304;425;0;0;558;856;877;435;1035;292;1288;1547.3;1894;1821;2549;3330;2549;2549
-97;'348;Hungary;1630;Wood charcoal;5910;Export quantity;t;;;;;;;3500;2800;4300;4000;4400;3600;6900;10400;10000;9000;8800;8600;14100;10400;7500;6800;8100;8200;4800;5500;2000;4000;4000;4000;4000;7194;8376;6000;7900;8800;9400;14600;14200;18000;19000;1000;1000;1000;11000;2000;2000;70;0;157;51;31;32;86;240;41;226;328;417;406;678;406;406
-97;'348;Hungary;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;162;119;179;247;360;388;646;1150;2727;1929;1873;1643;2585;2695;1247;1607;1607;1633;1006;1851;711;1333;1333;1333;1333;3247;3567;2241;3072;3364;3074;4499;4199;5833;6269;276;290;381;2001;1088;262;39;0;82;23;40;47;66;167;62;435.96;553;622;624;1252;624;624
-97;'348;Hungary;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173000;284000;349000;336000;375000;325000;281200;230000;178000;238000;256100;146700;236579;279146;343675;505728;379199;261816;916380;764000;960000;1006000;825288;730392;805000;805000
-97;'348;Hungary;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32800;48800;46300;40000;47000;132000;272000;424000;470000;452000;230800;169196;696938;342690;259520;239833;257548;292506;482456;284218;319795;216150;134241;169155;134241;134241
-97;'348;Hungary;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;658;593;607;900;2712;7033;10828;11513;16488;14396;6185;14826;12853;6745;7285;8084;8074;16523;10477.74;15972;9764;6707;8566;6707;6707
-97;'348;Hungary;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;15200;18000;23000;31000;30000;11000;2000;4000;9300;25400;137439;362452;328800;263160;355117;353992;351253;242590;240127;174040;141196;74544;68802;74544;74544
-97;'348;Hungary;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;257;361;454;775;915;391;125;314;845;2075;6310;11607;15716;11170;16215;16331;12805;9018;9058.63;6993;5446;2882;2453;2882;2882
-97;'348;Hungary;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;90000;112000;98000;166000;131000;141900;101000;64000;108000;112600;57900;66578;137745;56000;375797;249268;69816;724380;744000;940000;986000;805288;710392;785000;785000
-97;'348;Hungary;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;33500;1700;1900;4200;7700;0;1000;1400;2000;8000;12000;52000;195000;146000;60000;64600;73568;466636;150430;98520;117110;149961;168891;267345;247463;294549;199012;122857;76824;122857;122857
-97;'348;Hungary;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;242;102;74;187;164;130;89;92;101;269;397;1888;5241;3668;2448;4115;2544;5803;6854;4002;5277;6431;5900;9219;9325.03;14877;8478;5541;4352;5541;5541
-97;'348;Hungary;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;41300;7900;11500;11500;11500;52500;72300;58000;58000;58000;58000;5698;15700;17100;31300;17000;13300;7800;8300;9300;12000;18000;19000;4000;1000;0;300;25400;76650;207210;136720;154160;216090;198009;224648;155956;205329;136561;120542;65086;32414;65086;65086
-97;'348;Hungary;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;535;71;85;85;85;832;1764;1173;1173;1173;1173;209;100;106;204;247;171;104;78;58;84;125;76;10;65;0;22;2075;3633;3655;6459;6493;10180;9495;8856;6120;7731.63;5511;4917;2577;1160;2577;2577
-97;'348;Hungary;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220000;235000;235000;461000;455000;111000;194000;237000;238000;209000;194000;139300;129000;114000;130000;143500;88800;170001;141401;287675;129931;129931;192000;192000;20000;20000;20000;20000;20000;20000;20000
-97;'348;Hungary;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14559;7050;6900;19400;19500;44000;32800;47800;44900;38000;39000;120000;220000;229000;324000;392000;166200;95628;230302;192260;161000;122723;107587;123615;215111;36755;25246;17138;11384;92331;11384;11384
-97;'348;Hungary;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;276;126;341;424;747;318;569;501;506;631;2315;5145;5587;7845;14040;10281;3641;9023;5999;2743;2008;1653;2174;7304;1152.71;1095;1286;1166;4214;1166;1166
-97;'348;Hungary;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;2400;11300;11800;1600;20500;20100;7500;3300;6800;8000;18000;32200;17000;25300;30300;29500;30000;24600;25300;30000;30000;30000;30000;32267;26154;27700;86000;68000;48000;10200;6900;8700;11000;13000;11000;7000;1000;4000;9000;0;60789;155242;192080;109000;139027;155983;126605;86634;34798;37479;20654;9458;36388;9458;9458
-97;'348;Hungary;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;26;187;231;28;540;440;507;146;127;160;360;722;370;630;760;782;810;242;239;298;298;298;298;959;881;103;594;504;364;295;179;303;370;650;839;381;60;314;823;0;2677;7952;9257;4677;6035;6836;3949;2898;1327;1482;529;305;1293;305;305
-97;'348;Hungary;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-97;'348;Hungary;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29456;6153;6873;5799;5191;22874;17423;24042;16235;19642;16235;16235
-97;'348;Hungary;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20790;16606;16655;15225;30710;89218;72795;88444;83745;42215;83745;83745
-97;'348;Hungary;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3217;2767;2629;2140;3868;8793.32;8805;8894;7622;6650;7622;7622
-97;'348;Hungary;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42730;39489;34370;29932;10043;15908;17562;25563;22505;19661;22505;22505
-97;'348;Hungary;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6433;5459;4210;3921;1492;2689.26;3110;2925;3193;3559;3193;3193
-97;'348;Hungary;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;4419;3139;2943;2390;21992;9752;10784;6616;16313;6616;6616
-97;'348;Hungary;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9790;8504;7936;8741;13457;17744;18356;17731;19667;16033;19667;19667
-97;'348;Hungary;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1595;1578;1418;1367;2060;2585.88;3103;2988;3140;3284;3140;3140
-97;'348;Hungary;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23730;15376;12651;16643;7814;10954;10562;11625;12354;11747;12354;12354
-97;'348;Hungary;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4639;3143;2394;2771;1355;1997.55;2132;1906;2332;2701;2332;2332
-97;'348;Hungary;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456;1734;3734;2856;2801;882;7671;13258;9619;3329;9619;9619
-97;'348;Hungary;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;8102;8719;6484;17253;71474;54439;70713;64078;26182;64078;64078
-97;'348;Hungary;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1622;1189;1211;773;1808;6207.45;5702;5906;4482;3366;4482;4482
-97;'348;Hungary;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;24113;21719;13289;2229;4954;7000;13938;10151;7914;10151;10151
-97;'348;Hungary;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1794;2316;1816;1150;137;691.72;978;1019;861;858;861;861
-97;'348;Hungary;1872;Sawnwood;5516;Production;m3;700600;807300;848100;860800;877300;934700;887100;846300;961300;943300;882100;909600;1053100;1056600;1078800;1013000;1230000;1292000;1253000;1323000;1327000;1127000;1204000;1322000;1284000;1277000;1225000;1236500;1253250;1098000;936000;667000;480000;417000;230000;285000;317000;346700;308000;291200;264000;293000;299000;204800;215000;186000;235000;207100;102300;158024;242597;333760;241072;270392;487496;517723;515048;512610;493462;400310;442957;400310;400310
-97;'348;Hungary;1872;Sawnwood;5616;Import quantity;m3;679000;740400;777700;818400;868000;872800;1008100;1079700;1043400;1092000;1258200;1040900;1053100;1161500;1248200;900700;1040200;1222800;942600;849300;763800;657400;731700;828200;976700;912900;819900;918000;912000;715000;426000;594600;634900;830800;808600;825000;728000;722300;852100;1139300;1049000;1227000;1121000;1138000;985000;852000;791000;374300;524340;461345;497244;396617;397424;524700;605986;718268;688272;796298;906166;844897;858440;844897;844897
-97;'348;Hungary;1872;Sawnwood;5622;Import value;1000 USD;27190;29640;31934;34276;35903;40275;37164;45232;43923;45950;65817;54829;67874;78633;148225;77307;99363;141048;109392;101492;69606;53015;51875;63459;66449;72590;65210;74647;73252;72252;67506;65397;63721;93973;129056;85810;88327;91464;101462;115631;112729;139891;169377;186911;158866;158715;187851;150383;103847;107512;122822;93837;100066;114336;117142;123888;129200.78;156316;154151;161499;268894;161497;161497
-97;'348;Hungary;1872;Sawnwood;5916;Export quantity;m3;7600;17700;37000;33000;10200;138100;272400;170300;206900;268300;233400;282000;337000;279000;217100;327500;262700;251600;106400;73700;44400;103100;130600;97100;72900;76700;136500;101000;101000;101000;101000;262896;157471;165800;149200;165900;184000;286800;303000;305100;264000;286000;277000;207000;187000;172000;160000;151050;159969;210140;251902;315943;248828;207000;184692;196801;187341;182352;206150;283157;205106;283157;283157
-97;'348;Hungary;1872;Sawnwood;5922;Export value;1000 USD;480;880;1660;1645;586;7104;10962;7308;9659;12744;13476;15724;26179;25500;21762;38533;37158;30286;22109;18430;4801;14726;17225;13736;12050;15890;25504;24942;24942;24942;24942;60614;33616;30954;47898;44146;44405;65773;70136;68337;63173;69360;74463;82811;67529;70910;84913;94328;63236;70787;96022;96088;94613;94211;84028;90480;97663.81;94592;89598;89233;111453;89232;89232
-97;'348;Hungary;1632;Sawnwood, coniferous;5516;Production;m3;261300;326650;369050;342400;407150;388850;365550;375650;465650;425150;345050;410300;568550;566300;542400;485500;573500;574500;481000;514500;513000;390500;447000;525500;520500;505000;433500;423250;433250;331000;201000;149000;122000;87000;83000;102000;110000;123800;98000;77200;79000;99000;92000;82300;82000;74000;89000;88800;8800;13024;121597;89760;33072;36392;168043;141416;148675;139690;142806;120478;140757;120478;120478
-97;'348;Hungary;1632;Sawnwood, coniferous;5616;Import quantity;m3;645500;708850;740500;767700;808750;807500;935500;1010350;974100;1034450;1194100;990350;992800;1079650;1172800;870200;1021200;1191600;923050;830750;747200;643900;721400;817000;965200;900400;808150;905000;899000;708000;410000;565600;585900;713200;731400;760000;672000;659100;733400;1047300;951000;1132000;1056000;1043000;922000;794000;714000;318800;481902;402110;372196;322617;348424;480700;553986;650115;630641;705656;801437;796389;816937;796389;796389
-97;'348;Hungary;1632;Sawnwood, coniferous;5622;Import value;1000 USD;25325;27775;29570;31235;32662;33055;32654;40964;39459;42092;60651;50875;62625;70234;136321;73626;96059;134045;105526;97931;67231;50968;50182;61527;64150;69863;61982;71395;70000;69000;65000;63448;59013;86563;119486;81836;80952;82561;84041;104061;100178;124479;152526;165306;137395;138802;163822;128561;89509;81348;80256;63961;70620;80686;85060;96781;100999.3;124553;125911;134865;240770;134863;134863
-97;'348;Hungary;1632;Sawnwood, coniferous;5916;Export quantity;m3;1800;9800;25800;25800;5100;115500;253900;144600;129200;166400;125600;173200;182100;133900;119400;206400;137650;105600;37100;1200;4100;40600;64700;18400;16200;17000;72000;40000;40000;40000;40000;36600;15771;13300;19200;15900;21000;37000;42300;31700;22000;49000;38000;43000;49000;45000;19000;21150;26155;31084;30705;22593;17065;24000;26692;19894;17037;30666;31985;7360;14511;7360;7360
-97;'348;Hungary;1632;Sawnwood, coniferous;5922;Export value;1000 USD;80;430;1100;1100;220;5537;10102;5877;5550;7510;6715;9009;13153;13390;11316;23398;18601;14890;5103;146;364;4332;6467;1923;1632;2266;8724;5649;5649;5649;5649;7968;3716;2857;3811;3616;4705;6314;5688;4475;3239;7601;9598;11734;11706;13147;7863;11220;5034;6699;7405;4835;3836;4551;5522;4260;4207.75;4758;4963;2295;4579;2295;2295
-97;'348;Hungary;1633;Sawnwood, non-coniferous;5516;Production;m3;439300;480650;479050;518400;470150;545850;521550;470650;495650;518150;537050;499300;484550;490300;536400;527500;656500;717500;772000;808500;814000;736500;757000;796500;763500;772000;791500;813250;820000;767000;735000;518000;358000;330000;147000;183000;207000;222900;210000;214000;185000;194000;207000;122500;133000;112000;146000;118300;93500;145000;121000;244000;208000;234000;319453;376307;366373;372920;350656;279832;302200;279832;279832
-97;'348;Hungary;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;33500;31550;37200;50700;59250;65300;72600;69350;69300;57550;64100;50550;60300;81850;75400;30500;19000;31200;19550;18550;16600;13500;10300;11200;11500;12500;11750;13000;13000;7000;16000;29000;49000;117600;77200;65000;56000;63200;118700;92000;98000;95000;65000;95000;63000;58000;77000;55500;42438;59235;125048;74000;49000;44000;52000;68153;57631;90642;104729;48508;41503;48508;48508
-97;'348;Hungary;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1865;1865;2364;3041;3241;7220;4510;4268;4464;3858;5166;3954;5249;8399;11904;3681;3304;7003;3866;3561;2375;2047;1693;1932;2299;2727;3228;3252;3252;3252;2506;1949;4708;7410;9570;3974;7375;8903;17421;11570;12551;15412;16851;21605;21471;19913;24029;21822;14338;26164;42566;29876;29446;33650;32082;27107;28201.48;31763;28240;26634;28124;26634;26634
-97;'348;Hungary;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;5800;7900;11200;7200;5100;22600;18500;25700;77700;101900;107800;108800;154900;145100;97700;121100;125050;146000;69300;72500;40300;62500;65900;78700;56700;59700;64500;61000;61000;61000;61000;226296;141700;152500;130000;150000;163000;249800;260700;273400;242000;237000;239000;164000;138000;127000;141000;129900;133814;179056;221197;293350;231763;183000;158000;176907;170304;151686;174165;275797;190595;275797;275797
-97;'348;Hungary;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;400;450;560;545;366;1567;860;1431;4109;5234;6761;6715;13026;12110;10446;15135;18557;15396;17006;18284;4437;10394;10758;11813;10418;13624;16780;19293;19293;19293;19293;52646;29900;28097;44087;40530;39700;59459;64448;63862;59934;61759;64865;71077;55823;57763;77050;83108;58202;64088;88617;91253;90777;89660;78506;86220;93456.06;89834;84635;86938;106874;86937;86937
-97;'348;Hungary;1634;Veneer sheets;5516;Production;m3;21000;25600;25600;19200;19200;14800;15600;13400;13000;12100;11700;11400;15100;11700;13700;14000;17000;17000;17000;16000;16000;15000;15000;16000;15000;15000;16000;14000;14000;14000;14000;14000;16000;12000;9000;15000;13000;5000;7000;13500;22000;49000;46000;41000;38000;42000;51000;34200;11700;28102;95364;46283;36820;63294;63294;32320;41067;45896;46647;35221;35457;35335;35335
-97;'348;Hungary;1634;Veneer sheets;5616;Import quantity;m3;3300;1300;1900;3500;1900;800;2100;2700;1100;1200;1800;2100;3400;4600;2500;2200;1900;2400;2500;2800;2300;2000;2100;2000;1800;2300;2500;2300;2300;2300;2300;3749;6095;7100;4200;4500;5000;19500;15700;7100;9000;11000;10000;12000;11000;9000;11000;7500;9010;26527;21120;21118;27215;55063;80321;53788;66882;68178;69076;29215;33393;63703;63703
-97;'348;Hungary;1634;Veneer sheets;5622;Import value;1000 USD;615;240;664;1073;588;596;1039;1193;665;1056;1545;1389;2603;3560;3582;2482;2989;3062;3488;4296;3710;2932;3072;2774;2646;3947;3949;3898;3898;3898;4087;5093;4875;5803;3022;6474;10471;10084;9838;9111;10604;17335;18876;22134;20930;20540;22143;22477;18738;19760;22864;23608;29482;30202;35775;31313;29958.64;30561;28282;27337;35498;27336;27336
-97;'348;Hungary;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;100;100;300;300;300;300;400;900;1000;1400;800;400;700;600;900;900;1100;1700;1400;1400;1400;1400;6302;7500;6100;7600;14100;31500;19400;19400;19100;24000;25000;28000;31000;32000;30000;29200;17740;19700;36191;36698;25590;14508;27594;30721;34720;30414;23243;35620;21140;37461;21140;21140
-97;'348;Hungary;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;26;28;361;265;265;265;213;575;571;896;522;282;498;251;657;555;919;1463;1213;1213;1213;1213;5297;5859;7430;10878;12536;16758;18734;19800;20223;19023;22741;27604;25826;29958;31540;33441;30080;20907;22297;26251;21803;19278;25748;22793;26501;26832.82;24136;25079;21236;31044;21235;21235
-97;'348;Hungary;1873;Wood-based panels;5516;Production;m3;85800;108200;113300;122300;123200;135200;159500;161100;175300;190100;199200;220400;252200;294100;299200;281000;308000;355000;375000;400000;347000;375000;389000;359000;381000;368000;365000;326000;435000;381000;350000;376000;380300;445400;468000;447000;498000;508000;519800;549500;550000;563000;562000;597300;636000;678000;729000;744600;227300;644219;449188;433133;335754;578217;755579;813515;1056613;1166711;1208119;1153156;1283620;1152765;1152765
-97;'348;Hungary;1873;Wood-based panels;5616;Import quantity;m3;17300;4000;22500;21500;23300;13800;25200;39000;49300;71100;102600;79900;67500;92700;120500;122400;94500;106800;74800;90300;155200;74200;91200;110400;114600;122000;134500;168000;113000;55000;56000;73900;60715;39000;77900;55100;89600;191100;163300;243700;294000;425390;381000;373000;463000;401000;502000;337700;393057;414753;412336;405158;539771;548376;529515;662796;579856;703887;627308;709745;615705;701980;731632
-97;'348;Hungary;1873;Wood-based panels;5622;Import value;1000 USD;1870;460;2343;2427;2189;1149;1824;3177;3887;5954;9351;7917;8106;10733;21260;15058;12604;11637;8690;11759;18283;7994;9961;10147;10532;12960;14484;18160;13591;9500;10100;4903;14935;12383;11532;12746;17343;53896;58679;73293;80981;109448;140100;123638;153063;185633;238103;238430;165346;140214;161931;140851;176459;190706;163131;191908;195107.77;223375;199578;208995;267014;234580;243431
-97;'348;Hungary;1873;Wood-based panels;5916;Export quantity;m3;;;;;900;6900;7000;12300;9700;6300;9600;10700;35500;33000;24800;17600;14800;12900;17600;30000;24500;13300;32500;41200;34900;27700;30700;40000;46000;55000;76000;89570;133553;145500;137000;173000;184000;249600;221900;287000;324000;313550;353000;319000;455420;345075;381000;378500;318808;532515;400575;356929;432503;510500;558963;610345;754476;749113;822332;966957;877167;972502;972502
-97;'348;Hungary;1873;Wood-based panels;5922;Export value;1000 USD;;;;;26;239;265;521;435;299;555;665;3206;3125;2889;2360;1981;1670;2128;7204;4363;2245;6266;6287;5192;6110;7510;9268;10464;19900;23000;14450;20012;22380;30680;38248;39733;49515;66176;49617;60746;70784;78531;89894;126427;139101;196461;234857;152594;170633;160169;138878;167190;200662;176616;185796;228619.63;253763;227468;237408;357521;238535;238535
-97;'348;Hungary;1640;Plywood and LVL;5516;Production;m3;40100;38400;36900;37500;35000;28600;28500;24800;20600;19500;19700;19400;17400;17600;13600;13000;13000;13000;14000;16000;15000;15000;15000;16000;15000;15000;18000;18000;20000;14000;13000;11000;9300;8400;7000;7000;7000;7000;6500;5300;5000;20000;18000;23700;23000;19000;19000;19100;2000;5400;38463;42767;26024;61385;46722;48800;45603;58424;67227;49155;57067;49155;49155
-97;'348;Hungary;1640;Plywood and LVL;5616;Import quantity;m3;4000;1900;1500;3500;3400;3900;2700;8300;9300;16900;21300;15500;16400;19700;25000;26400;22300;25800;22200;24500;26400;18200;24700;25800;25400;28000;28000;25000;25000;23000;13000;24000;11100;12000;28500;14200;23500;47100;28700;30200;34000;32000;35000;32000;48000;50000;63000;42000;39838;39216;50053;46716;54313;64593;77376;76090;78120;86372;83765;77125;69297;79763;119815
-97;'348;Hungary;1640;Plywood and LVL;5622;Import value;1000 USD;530;250;196;528;545;400;358;1167;1313;2266;3015;2728;3164;3836;9377;6860;5966;6190;5300;5967;6637;4173;5281;5307;5430;6481;6509;5191;5191;5000;3000;1019;4145;4794;7656;9466;13720;16473;19106;17219;19222;18643;25472;28129;28187;36505;61238;56635;23100;22120;34112;30805;32290;37506;33614;35814;44061.46;48588;46782;37715;54198;64153;80073
-97;'348;Hungary;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;100;100;100;100;100;700;9000;3300;2200;2900;1600;1000;1000;1900;1600;1700;7500;3100;4500;6400;4500;6000;6000;11000;16000;15000;7000;12700;6000;9000;4000;5300;4800;4500;14000;16000;12000;7000;43000;19000;21000;21300;24950;30954;38858;41701;58820;61680;60065;55445;54724;60918;59705;52666;58655;58212;58212
-97;'348;Hungary;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;9;9;9;9;9;92;1386;775;703;739;482;300;300;486;276;271;2192;1049;1344;2521;2177;2864;2864;4000;6000;4607;5106;5080;5866;5177;3486;3344;25002;2154;5417;7017;8631;11413;19556;12083;22873;29577;16768;19199;28586;24263;35366;39028;31468;30658;33960.75;37571;33293;31786;42036;32917;32917
-97;'348;Hungary;1646;Particle board and OSB (1961-1994);5516;Production;m3;31100;35100;40200;46700;47300;68000;86600;90100;107600;123300;131000;152400;185300;212000;215000;194000;229000;248000;267000;285000;235000;278000;285000;259000;286000;268000;263000;227000;330000;317000;295000;330000;336000;396000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;18500;14800;10200;1100;6300;9900;13600;19200;27300;21000;18600;29200;43500;59900;49800;55000;32400;51000;85200;45200;46000;52900;62000;64900;73500;108000;60000;11000;27000;31000;30600;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;1244;1005;716;68;333;545;793;1133;1776;1332;1577;2667;3854;4274;3639;3549;2127;4158;7556;2643;2340;2449;3157;4080;5323;10363;6000;1500;2600;3012;5793;5040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;900;6900;6900;12200;9600;6200;9500;10000;26500;29700;22100;10100;8700;8000;12700;8900;2400;1300;8600;19000;4900;100;1000;4000;5000;14000;35000;61000;116100;98900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;26;239;256;512;426;290;546;573;1820;2350;2021;867;737;670;1128;1607;296;118;1723;2626;401;44;83;1272;1600;4900;7000;6019;12197;13883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407000;383000;429000;440000;457200;483600;485000;485000;489000;520800;564000;648000;656000;605900;112800;487219;243325;226066;133130;349432;349432;390000;466853;363287;338982;332700;455352;332700;332700
-97;'348;Hungary;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37800;32900;53600;110200;105100;151400;189000;263000;139000;176000;213000;158000;153000;161900;217467;233725;248797;237377;320920;298533;267643;340698;271849;407262;321864;325966;304754;325966;325966
-97;'348;Hungary;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1357;1181;1569;24115;22149;28860;31570;43088;51449;27640;50672;59568;70507;79370;68078;50759;61092;57730;74753;73581;63117;73854;68138.74;81551;66657;72303;89280;72302;72302
-97;'348;Hungary;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99200;132000;143000;189500;170700;227600;259000;236000;264000;275000;351000;275000;296000;251400;182540;336363;167036;147744;146330;258097;303372;334875;304835;261028;304096;340414;319532;340414;340414
-97;'348;Hungary;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17534;24031;26027;35446;29966;34519;42244;46082;51154;60648;84627;101375;136685;136112;77180;81621;45015;37601;41845;68079;64824;68720;67330.4;65371;52184;50712;82663;50711;50711
-97;'348;Hungary;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20000;195000;335000;330000;360000;360000;360000;360000
-97;'348;Hungary;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18600;8800;33800;37000;85000;90000;92000;90000;55000;51000;49800;53133;63566;56467;56113;57286;67200;65552;79846;79740;46823;54695;77168;67359;77168;77168
-97;'348;Hungary;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2645;1108;5896;5208;13354;16614;18783;21767;23106;29422;28941;21753;18572;19001;16153;17911;18406;13636;15317;16457.17;13129;13335;19022;26600;19021;19021
-97;'348;Hungary;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;300;2200;2000;8000;3000;0;7000;4000;3000;3300;3383;4612;7514;7769;6135;7268;6352;35773;203320;238520;248364;316135;275513;316135;316135
-97;'348;Hungary;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;91;489;457;1786;843;0;2172;2333;1908;3651;2575;1220;2917;2477;1746;1870;1384;7102;45607.32;68511;60929;72482;114872;72481;72481
-97;'348;Hungary;1874;Fibreboard;5516;Production;m3;14600;34700;36200;38100;40900;38600;44400;46200;47100;47300;48500;48600;49500;64500;70600;74000;66000;94000;94000;99000;97000;82000;89000;84000;80000;85000;84000;81000;85000;50000;42000;35000;35000;41000;54000;57000;62000;61000;56100;60600;60000;58000;55000;52800;49000;11000;54000;119600;112500;151600;167400;164300;176600;167400;359425;354715;349157;410000;471910;411301;411201;410910;410910
-97;'348;Hungary;1874;Fibreboard;5616;Import quantity;m3;13300;2100;2500;3200;9700;8800;16200;20800;26400;35000;54000;43400;32500;43800;52000;36100;22400;26000;20200;14800;43600;10800;20500;31700;27200;29100;33000;35000;28000;21000;16000;18900;19015;12000;11600;8000;12500;15200;20700;28300;34000;45390;117000;73000;112000;138000;235000;84000;82619;78246;57019;64952;107252;118050;118944;166162;150147;163430;166984;229486;174295;219083;208683
-97;'348;Hungary;1874;Fibreboard;5622;Import value;1000 USD;1340;210;903;894;928;681;1133;1465;1781;2555;4560;3857;3365;4230;8029;3924;2999;1898;1263;1634;4090;1178;2340;2391;1945;2399;2652;2606;2400;3000;4500;872;4997;2549;2519;2099;2054;10663;16316;21318;24981;34363;46565;49086;52437;66454;76936;73484;52415;48763;47726;36163;51505;61213;52764;66923;66450.4;80107;72804;79955;96936;79104;72035
-97;'348;Hungary;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;500;4600;4500;3900;3900;19200;20500;10300;16400;19100;25500;21200;25200;30000;35000;30000;25000;13570;10453;33900;31800;32000;37000;52500;46100;52700;49000;53550;74000;37000;54420;47075;61000;102500;107935;160586;187167;159715;221218;183455;189174;184252;191597;188647;210167;257742;223467;257741;257741
-97;'348;Hungary;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;165;754;762;700;700;5111;3791;1856;2351;2612;3447;3545;5250;5132;6000;11000;10000;3824;2709;3417;7280;9040;10220;10555;11117;12455;12628;15899;17903;17833;20072;23310;34995;65517;56071;68593;83651;74537;88233;91685;78940;79316;81721.15;82310;81062;82428;117950;82426;82426
-97;'348;Hungary;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;57000;62000;61000;56100;60600;60000;58000;55000;52800;49000;11000;54000;119600;20000;0;0;0;0;0;3000;3000;0;2000;2201;2201;2201;2201;2201
-97;'348;Hungary;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;8000;8500;9100;11700;15800;20000;24000;56000;12000;50000;78000;179000;37000;39786;15314;14354;21110;25507;25122;26417;29960;33901;40073;34738;49357;45210;38954;28554
-97;'348;Hungary;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2519;2099;1284;4781;7386;9162;13728;18705;26244;31589;28057;40140;47056;35514;25236;22075;19564;14802;17251;19174;16872;19444;23672.09;29656;25708;31771;32702;30920;23851
-97;'348;Hungary;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31800;32000;37000;51600;45000;50700;47000;44000;66000;33000;48000;39000;54000;95000;25966;3302;3020;9700;10629;10523;11301;10691;12096;10155;11049;11048;9898;11047;11047
-97;'348;Hungary;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7280;9040;10220;9536;9984;10530;10579;13408;15419;15278;17459;19552;30960;59185;14570;9758;5540;7919;8142;8226;7090;7858;9030.25;6881;6874;6874;6159;6873;6873
-97;'348;Hungary;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;92500;151600;167400;164300;176600;167400;344000;336000;333000;391000;451000;390100;390000;390000;390000
-97;'348;Hungary;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;8600;11800;13000;17000;58000;59000;56000;53000;34000;38400;36935;62300;42190;38024;62192;75971;72895;111804;93336;106174;117484;150153;116701;150153;150153
-97;'348;Hungary;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5411;8607;11593;9913;13529;18867;16573;22981;24546;23849;30691;24469;25096;26296;20203;30703;37322;31059;41668;37510.71;46889;44577;44674;60698;44674;44674
-97;'348;Hungary;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1100;1900;2000;8290;8000;3000;6000;8000;7000;7500;81883;157000;184000;150000;210580;172719;176317;166921;174056;174193;193198;243541;213474;243541;243541
-97;'348;Hungary;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972;1090;1864;1888;2343;2261;2511;2453;3739;4035;6332;41475;58621;77961;66592;80056;83354;70976;67940;69663.86;72815;70972;73992;111784;73991;73991
-97;'348;Hungary;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12425;15715;16157;17000;18709;19000;19000;18709;18709
-97;'348;Hungary;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1615;0;0;0;4000;900;400;700;1000;4390;3000;2000;6000;7000;22000;8600;5898;632;475;5818;19553;16957;19632;24398;22910;17183;14762;29976;12384;29976;29976
-97;'348;Hungary;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;417;0;0;0;770;471;323;563;1340;2129;1454;924;1399;1768;6031;7279;2710;1592;1866;1158;3551;4717;4833;5811;5267.6;3562;2519;3510;3536;3510;3510
-97;'348;Hungary;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779;1453;0;0;0;0;100;0;100;0;1260;0;1000;420;75;0;0;86;284;147;15;9;213;1556;6640;5445;4299;5920;3153;95;3153;3153
-97;'348;Hungary;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;471;0;0;0;0;47;43;61;161;148;223;44;160;19;0;0;26;214;150;26;35;105;874;3518;3027.04;2614;3216;1562;7;1562;1562
-97;'348;Hungary;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;14600;34700;36200;38100;40900;38600;44400;46200;47100;47300;48500;48600;49500;64500;70600;74000;66000;94000;94000;99000;97000;82000;89000;84000;80000;85000;84000;81000;85000;50000;42000;35000;35000;41000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;13300;2100;2500;3200;9700;8800;16200;20800;26400;35000;54000;43400;32500;43800;52000;36100;22400;26000;20200;14800;43600;10800;20500;31700;27200;29100;33000;35000;28000;21000;16000;18000;17400;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1340;210;903;894;928;681;1133;1465;1781;2555;4560;3857;3365;4230;8029;3924;2999;1898;1263;1634;4090;1178;2340;2391;1945;2399;2652;2606;2400;3000;4500;696;4580;2549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;500;4600;4500;3900;3900;19200;20500;10300;16400;19100;25500;21200;25200;30000;35000;30000;25000;12791;9000;33900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;165;754;762;700;700;5111;3791;1856;2351;2612;3447;3545;5250;5132;6000;11000;10000;3613;2238;3417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1879;Total fibre furnish;5510;Production;t;62500;71800;75200;85700;79200;89300;88900;92800;106500;208400;200100;227700;266000;269000;258000;300000;377000;377000;367000;335000;325000;339000;351000;394000;384000;359000;377000;380000;294000;374000;367000;278000;284000;275000;305000;279000;270000;267000;267000;298000;369000;377000;386000;382000;384000;413000;427000;407000;407638;685000;518000;518000;519000;523000;521000;521000;520000;500000;500000;521000;524000;524000;524000
-97;'348;Hungary;1879;Total fibre furnish;5610;Import quantity;t;1500;1500;1500;100;100;800;1200;80600;67400;119800;95800;113800;129100;130800;171400;144100;143900;180600;172100;216700;189000;194100;223300;204500;212000;208700;205400;281100;498100;375100;199500;81279;65877;120600;101900;219400;209000;244400;240900;250800;224000;201000;226000;271000;282898;189947;140010;124000;184952;447198;499971;509673;549321;560123;540712;577433;611137;588352;600268;590083;576755;576576;551336
-97;'348;Hungary;1879;Total fibre furnish;5622;Import value;1000 USD;110;110;110;9;9;51;102;10051;8499;14582;15353;18332;23194;31086;77808;47004;47098;59526;64907;92205;67227;66301;61478;58186;53396;59874;62208;94629;130436;100575;62240;22262;15895;21956;28925;78858;79569;83720;84689;111104;78550;79173;104945;134958;140237;100935;67072;78563;64117;133203;175244;138090;151298;164996;155258;153324;172566.09;175309;155975;126531;194049;173072;134143
-97;'348;Hungary;1879;Total fibre furnish;5910;Export quantity;t;;;;;9700;10800;11300;12400;17600;7200;5800;6600;15100;59900;31300;105300;64272;34971;35198;59000;55900;46000;39000;12200;15500;1800;40600;7700;7700;7700;1900;10875;11331;13700;21600;19700;21100;38000;41800;45900;45000;49000;61000;57000;72229;49469;81200;140500;77970;153018;188803;172087;183269;193479;217861;232468;269581;298821;280326;258107;295704;303116;231726
-97;'348;Hungary;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;1100;1200;1235;1482;2123;894;827;933;2412;4929;2359;6769;3845;3803;5478;10094;5381;4458;3782;1792;2363;194;653;734;734;734;251;2569;2652;2548;5135;3769;3831;6950;6873;8601;9375;12373;17797;15956;7015;5108;26516;26076;27559;42517;63672;52814;55033;63089;55565;56015;65946.58;61725;44643;56723;91078;110066;78345
-97;'348;Hungary;1878;Pulp for paper;5510;Production;t;62500;71800;75200;85700;79200;89300;88900;92800;106500;104400;96100;97700;107000;95000;86000;96000;124000;126000;122000;111000;112000;106000;103000;108000;93000;62000;69000;81000;73000;50000;43000;38000;34000;25000;25000;21000;12000;17000;17000;24000;22000;22000;16000;4000;16000;19000;20000;20000;18000;15000;18000;18000;19000;23000;21000;21000;20000;0;0;21000;24000;24000;24000
-97;'348;Hungary;1878;Pulp for paper;5610;Import quantity;t;1500;1500;1500;100;100;800;1200;80600;67400;119800;95800;113800;129100;130800;171400;144100;143900;180600;172100;216700;189000;194100;223300;204500;202000;198700;195400;256100;258100;135100;128700;37807;30634;26600;28900;141400;148000;182400;178700;169100;169000;173000;206000;242000;265188;164947;101010;106800;91495;87447;109557;94637;106763;132068;142589;131206;142082;150091;140292;147259;122382;147276;147276
-97;'348;Hungary;1878;Pulp for paper;5622;Import value;1000 USD;110;110;110;9;9;51;102;10051;8499;14582;15353;18332;23194;31086;77808;47004;47098;59526;64907;92205;67227;66301;61478;58186;52256;58734;61068;91054;91076;61215;57111;17883;13024;14035;22725;72233;74369;80540;80541;102777;75255;76869;102835;131582;138121;98041;60889;75286;51214;62410;86535;67146;77024;95055;98218;81884;88590.46;107257;96355;77683;88917;78400;78400
-97;'348;Hungary;1878;Pulp for paper;5910;Export quantity;t;;;;;9700;10800;11300;12400;17600;7200;5800;6600;15100;30900;16300;57300;32900;7400;9000;17800;11100;11100;12000;9100;13500;700;700;700;700;700;700;6612;5597;2700;8600;5400;4000;6800;5900;7600;9000;12000;16000;6000;4;469;12200;0;15650;12700;20198;22897;23633;33614;28840;18928;19814;14456;6787;25121;25506;27322;27322
-97;'348;Hungary;1878;Pulp for paper;5922;Export value;1000 USD;;;;;1100;1200;1235;1482;2123;894;827;933;2412;3421;1564;4177;2109;2259;3402;6065;2346;2309;2222;1546;2233;120;118;118;118;118;118;2058;1933;1348;3835;2339;2531;4331;3891;3917;5295;7936;12467;10217;8;271;17323;0;21411;16015;24110;26981;28189;34792;26999;21091;22468.13;17138;7525;27278;33412;48167;48167
-97;'348;Hungary;1875;Wood pulp;5510;Production;t;57000;64900;60200;65200;58700;61000;58900;61900;79700;81100;77300;77300;85900;80000;67000;74000;103000;105000;102000;96000;90000;92000;87000;87000;74000;57000;58000;56000;53000;46000;38000;23000;14000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19363;22407;21000;21000;28000;51243;56879;51243;51243
-97;'348;Hungary;1875;Wood pulp;5610;Import quantity;t;7500;7400;7400;6600;6400;15300;11500;93100;82000;142800;114800;131700;145100;145900;187500;157500;158200;177900;170300;212200;205000;208600;236700;220100;217500;215700;212800;273100;275100;152100;133200;39335;30297;26300;28600;138100;146000;185100;182300;173100;171000;175000;208000;240000;265015;164000;100010;106500;90905;87801;109285;94133;106294;131487;141823;130359;141117;149115;139821;147071;122382;147071;147071
-97;'348;Hungary;1875;Wood pulp;5622;Import value;1000 USD;1097;1081;1081;1184;1159;2453;1763;12078;10843;18398;18831;21819;26749;33186;82823;50426;51227;57104;62994;88393;71478;70004;64950;62260;56473;64825;67019;95171;95193;65332;60032;18651;12337;13688;22378;70561;73078;81044;82403;105314;76714;77994;103865;130994;137927;97784;60578;74770;50669;66685;85840;65642;75749;93643;96706;80292;86499.94;105250;94786;77060;88201;77059;77059
-97;'348;Hungary;1875;Wood pulp;5910;Export quantity;t;;;;;;;;4400;6800;10300;10600;14400;8100;3600;5100;3400;1400;3200;6700;11900;9900;17000;14900;11600;16500;6400;3500;3600;3600;3600;3600;886;3451;2700;2600;2900;0;800;300;3400;0;0;1000;0;0;469;200;0;0;31;4351;5787;4558;14971;10035;66;456;300;1865;3734;737;3734;3734
-97;'348;Hungary;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;596;921;1738;1904;2377;1639;1150;1415;1019;491;1031;2541;4091;2363;4481;3011;2203;3020;2187;1374;1519;1519;1519;1519;248;1295;1348;1330;1252;0;88;140;1583;237;109;393;74;0;271;169;0;0;24;4242;4679;3655;10621;5972;29;307.42;247;1448;1990;634;1990;1990
-97;'348;Hungary;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-97;'348;Hungary;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12467;12229;12098;12867;11373;12867;12867
-97;'348;Hungary;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6975.91;8920;7978;7087;8593;7087;7087
-97;'348;Hungary;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;61;94;64;50;64;64
-97;'348;Hungary;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;44;65;46;33;46;46
-97;'348;Hungary;1654;Mechanical wood pulp (1961-2016);5510;Production;t;21700;19700;18000;21100;19400;20700;22000;26200;25600;26600;22600;20600;28900;26000;18000;22000;22000;23000;21000;20000;16000;19000;13000;13000;14000;14000;12000;11000;11000;6000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1500;1500;1500;100;100;800;1200;1200;1200;1200;5200;7000;1500;1500;1500;1500;1500;1500;1500;1500;100;100;7200;6600;6700;9900;14400;9000;11000;6000;3300;3994;1863;400;400;400;400;0;0;0;0;0;0;1000;0;1000;0;0;0;91;0;37;116;175;341;464;;;;;;;
-97;'348;Hungary;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;110;110;110;9;9;51;102;102;102;102;462;545;138;138;138;138;138;138;138;138;41;25;2185;2063;1963;3030;6049;3978;4000;3500;1600;1588;577;191;191;191;191;0;24;44;17;0;156;371;0;257;0;0;0;60;0;27;76;112;180;226;;;;;;;
-97;'348;Hungary;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;107;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;23;;;;;;;
-97;'348;Hungary;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;35;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;15;;;;;;;
-97;'348;Hungary;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;8400;10500;7200;7000;3800;3900;3900;3900;25400;24700;24900;25700;27700;34000;28000;28000;49000;62000;62000;61000;64000;60000;61000;62000;50000;38000;38000;40000;35000;34000;29000;14000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;800;100;100;100;100;100;2000;2000;200;200;100;100;100;100;100;100;100;100;100;100;100;100;525;1513;1600;1600;1600;1600;10700;2600;1100;0;0;0;0;0;0;0;0;0;25;0;2;159;6160;8655;12397;;;;;;;
-97;'348;Hungary;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;153;18;18;18;18;18;568;568;292;362;118;118;118;118;118;118;118;118;118;118;118;118;234;577;655;655;655;655;4603;909;402;38;8;18;89;0;0;0;0;0;34;1;154;498;3476;5576;7473;;;;;;;
-97;'348;Hungary;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;670;1346;2258;991;0;7;;;;;;;
-97;'348;Hungary;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;8;0;0;0;0;0;0;0;0;764;1403;2021;901;0;3;;;;;;;
-97;'348;Hungary;1656;Chemical wood pulp;5510;Production;t;26900;34700;35000;37100;35500;36400;33000;31800;28700;29800;29800;31000;29300;20000;21000;24000;32000;20000;19000;15000;10000;13000;13000;12000;10000;5000;8000;5000;7000;6000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;79400;66200;117800;90500;106700;127500;126700;169700;140500;140300;161800;154200;197400;188200;193400;215600;196800;194600;186700;178900;246000;246000;128000;124300;33107;26598;24300;26600;136100;144000;171200;175700;167700;168000;172000;205000;238000;265015;163000;100010;106500;90905;87048;109276;94094;106019;125152;132827;117495;128645;136883;127077;133674;110519;133674;133674
-97;'348;Hungary;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;9949;8397;14327;14873;17769;23038;29020;77356;46195;46113;52266;58086;84339;66798;65947;59006;55579;49931;54999;54424;86361;86361;57000;54234;15672;10973;12842;21532;69715;72232;74305;78808;101874;74334;75806;101822;129886;137927;97527;60578;74770;50669;61476;85822;65461;75175;90055;90950;72589;79517.15;96325;86176;69442;79114;69441;69441
-97;'348;Hungary;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;4400;6800;200;200;600;3100;400;400;1100;400;2200;5700;11900;9400;11000;11500;8800;13200;600;600;600;600;600;600;776;3258;2700;2600;2900;0;800;300;3400;0;0;1000;0;0;469;200;0;0;31;3573;4441;2300;13980;10031;36;421;239;1771;3670;687;3670;3670
-97;'348;Hungary;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;596;921;17;17;83;560;110;110;414;177;717;2227;4091;2055;2293;2156;1508;2195;107;107;107;107;107;107;194;1218;1348;1330;1252;0;81;139;1583;237;101;393;74;0;271;169;0;0;24;3400;3276;1634;9720;5970;11;284.42;203;1383;1944;598;1944;1944
-97;'348;Hungary;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;43100;41500;57200;25600;29700;50300;45800;49100;44800;46900;58800;51000;58600;53700;56600;54700;60400;44000;38700;46500;93000;93000;26000;26000;4975;1452;100;0;0;2000;6600;9700;5800;4000;3000;4000;0;0;0;0;0;0;0;48;48;0;0;0;0;0;0;3;0;0;0;0
-97;'348;Hungary;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;5161;5294;4378;3607;4365;8487;8960;16380;12493;12584;16836;15221;17686;13649;13938;10850;12660;7730;7691;9283;9905;9905;12000;12836;1934;398;56;0;0;824;2957;3617;2915;1766;1374;1735;0;0;0;0;0;0;0;37;31;0;0;0;0;0;0;4;0;0;0;0
-97;'348;Hungary;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;1164;100;0;0;0;0;0;2100;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;424;18;0;0;0;0;0;969;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;5800;4700;22000;28900;28200;22200;27400;48100;43500;34900;35400;31400;54500;62200;58200;84800;70100;90100;96200;80300;90000;90000;77000;71400;23297;15914;21700;23600;102400;91000;126400;128000;117800;139000;152000;179000;219000;237175;156000;97000;102200;89829;85696;107937;93163;105145;124411;131986;116589;127688;136447;126561;133089;110067;133089;133089
-97;'348;Hungary;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;785;571;4216;5337;5392;4138;6960;26359;16588;12070;11842;11624;24970;22098;19019;24112;21185;24294;29663;24182;39203;39203;33500;28966;11088;6718;11086;19032;53120;47422;53176;57541;71596;60893;66025;88495;116091;120434;90096;56538;69704;48328;58992;83319;63578;73491;88669;89564;71140;77941.4;95503;85156;68317;78212;68316;68316
-97;'348;Hungary;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;1654;1800;1800;1800;0;0;100;1200;0;0;0;0;0;469;200;0;0;0;3552;4441;2199;13868;9930;0;385;233;1760;3667;684;3667;3667
-97;'348;Hungary;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;641;928;928;744;0;0;68;519;7;58;76;25;0;271;169;0;0;0;3379;3274;1586;9680;5941;0;272.51;192;1370;1938;591;1938;1938
-97;'348;Hungary;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-97;'348;Hungary;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;957;436;513;585;452;585;585
-97;'348;Hungary;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1575.75;822;1016;1125;902;1125;1125
-97;'348;Hungary;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;6;11;3;3;3;3
-97;'348;Hungary;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11.91;11;13;6;7;6;6
-97;'348;Hungary;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;37100;35500;36400;33000;31800;28700;29800;29800;31000;29300;20000;21000;24000;32000;20000;19000;15000;10000;13000;13000;12000;10000;5000;8000;5000;7000;6000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;10900;600;9600;12200;23300;20500;22200;30000;19600;24600;19900;17200;24200;27900;28300;23400;21800;21700;16100;21100;17000;17000;3000;5800;477;667;0;0;0;15000;5500;0;0;0;0;0;0;0;0;10;0;0;0;1;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1286;17;1184;1896;3709;3503;4720;11196;3924;6881;5556;6074;10807;10227;9180;4179;3628;3712;3082;5065;6702;6702;2000;2796;193;186;0;0;0;6477;2336;0;0;0;0;13;0;0;0;5;0;0;0;2;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;200;200;600;3100;400;400;1100;400;2200;5700;11900;9400;11000;11500;8800;13200;600;600;600;600;600;600;600;89;0;0;0;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;17;17;83;560;110;110;414;177;717;2227;4091;2055;2293;2156;1508;2195;107;107;107;107;107;107;107;25;0;0;0;0;62;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-97;'348;Hungary;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;19600;19400;29000;23800;25500;34500;31300;42500;32600;33900;47700;54600;60100;44400;50300;52700;44500;38800;35700;31000;46000;46000;22000;21100;4358;8565;2500;3000;33700;36000;32700;38000;44100;25000;17000;22000;19000;27840;7000;3000;4300;1076;1352;1290;883;874;741;841;906;;;;;;;
-97;'348;Hungary;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2717;2515;4549;4033;4303;6910;8380;23421;13190;14578;18032;25167;30876;20824;23810;19865;18106;14195;14563;15894;30551;30551;9500;9636;2457;3671;1700;2500;16595;17509;15836;17650;27363;11675;8407;11579;13795;17493;7431;4035;5066;2341;2484;2464;1852;1684;1386;1386;1449;;;;;;;
-97;'348;Hungary;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;800;800;1100;0;700;200;100;0;0;1000;0;0;0;0;0;0;22;21;0;101;112;101;36;;;;;;;
-97;'348;Hungary;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;402;402;508;0;19;71;95;220;43;317;49;0;0;0;0;0;18;21;2;48;40;29;11;;;;;;;
-97;'348;Hungary;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19363;22407;21000;21000;28000;51243;56879;51243;51243
-97;'348;Hungary;1667;Dissolving wood pulp;5610;Import quantity;t;6000;5900;5900;6500;6300;14500;10300;12500;14600;23000;19000;17900;16000;17600;16200;13500;14400;14400;14400;13200;16600;15000;13800;16600;16100;19000;19400;18000;18000;18000;5500;1709;323;0;0;0;0;3200;4000;4300;3000;3000;3000;1000;0;0;0;0;0;637;9;0;0;0;0;3;5;3;646;530;490;530;530
-97;'348;Hungary;1667;Dissolving wood pulp;5622;Import value;1000 USD;987;971;971;1175;1150;2402;1661;2027;2344;3816;3478;3487;3555;4010;5311;3525;4408;4408;4408;3798;4521;3914;3641;4500;4461;6678;6428;4714;4714;4714;4080;1157;210;0;0;0;0;2136;2662;2994;2325;2180;1869;648;0;0;0;0;0;5115;17;0;0;0;0;4;6.87;5;632;531;494;531;531
-97;'348;Hungary;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;10100;10400;13800;5000;3200;4700;2300;1000;1000;1000;0;500;6000;3400;2800;3300;5800;2900;3000;3000;3000;3000;86;86;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;108;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;1721;1887;2294;1079;1040;1305;605;314;314;314;0;308;2188;855;695;825;2080;1267;1412;1412;1412;1412;42;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;78;0;0;0;0;0;0;0;0;0;3;0;0
-97;'348;Hungary;1668;Pulp from fibres other than wood;5510;Production;t;5500;6900;15000;20500;20500;28300;30000;30900;26800;23300;18800;20400;21100;15000;19000;22000;21000;21000;20000;15000;22000;14000;16000;21000;19000;5000;11000;25000;20000;4000;5000;15000;20000;20000;20000;16000;12000;17000;17000;24000;22000;22000;16000;4000;16000;19000;20000;20000;18000;15000;18000;18000;19000;23000;21000;21000;20000;0;0;21000;24000;24000;24000
-97;'348;Hungary;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;2500;100;100;100;17100;16200;17700;600;500;400;1000;600;2000;2000;1000;1000;1000;1000;181;660;300;300;3300;2000;500;400;300;1000;1000;1000;3000;173;947;1000;300;590;283;281;504;469;581;766;850;970;979;1117;718;490;735;735
-97;'348;Hungary;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;1910;296;103;279;6830;6321;7610;270;211;169;426;244;587;477;597;597;597;1159;389;897;347;347;1672;1291;1632;800;457;866;1055;839;1236;194;257;311;516;545;840;712;1504;1275;1412;1512;1596;2097.39;2012;2201;1154;1210;1872;1872
-97;'348;Hungary;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;9700;10800;11300;8000;10800;7000;5600;6000;12000;30500;15900;56200;32500;5200;3300;5900;1700;100;500;300;300;100;100;100;100;100;100;5812;2232;0;6000;2500;4000;6000;5600;4200;9000;12000;15000;6000;4;0;12000;0;15650;12669;15955;17110;19075;18643;18805;18862;19358;14156;4922;21387;24769;23588;23588
-97;'348;Hungary;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;1100;1200;1235;886;1202;877;810;850;1852;3311;1454;3763;1932;1542;1175;1974;291;16;66;38;38;13;11;11;11;11;11;1852;680;0;2505;1087;2531;4243;3751;2334;5058;7827;12074;10143;8;0;17154;0;21411;15991;19946;22302;24534;24171;21027;21062;22160.71;16891;6077;25288;32781;46177;46177
-97;'348;Hungary;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;100;0;0;0;1000;256;544;300;0;572;354;215;154;147;455;1267;175;763;1084;1784;1334;1739;1334;1334
-97;'348;Hungary;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;118;68;73;156;183;306;144;147;136;0;298;226;135;110;114;425;541;118;640.14;567;767;641;907;641;641
-97;'348;Hungary;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;351;46;20;110;1;23;0;23;23;41;2;1;2;2
-97;'348;Hungary;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;54;4;0;0;0;15;0;0;0;0;0;70;29;12;63;1;11;0;11.55;12;19;2;2;2;2
-97;'348;Hungary;1669;Recovered paper;5510;Production;t;;;;;;;;;;104000;104000;130000;159000;174000;172000;204000;253000;251000;245000;224000;213000;233000;248000;286000;291000;297000;308000;299000;221000;324000;324000;240000;250000;250000;280000;258000;258000;250000;250000;274000;347000;355000;370000;378000;368000;394000;407000;387000;389638;670000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000
-97;'348;Hungary;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;25000;240000;240000;70800;43472;35243;94000;73000;78000;61000;62000;62200;81700;55000;28000;20000;29000;17710;25000;39000;17200;93457;359751;390414;415036;442558;428055;398123;446227;469055;438261;459976;442824;454373;429300;404060
-97;'348;Hungary;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;1140;1140;1140;3575;39360;39360;5129;4379;2871;7921;6200;6625;5200;3180;4148;8327;3295;2304;2110;3376;2116;2894;6183;3277;12903;70793;88709;70944;74274;69941;57040;71440;83975.63;68052;59620;48848;105132;94672;55743
-97;'348;Hungary;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;29000;15000;48000;31372;27571;26198;41200;44800;34900;27000;3100;2000;1100;39900;7000;7000;7000;1200;4263;5734;11000;13000;14300;17100;31200;35900;38300;36000;37000;45000;51000;72225;49000;69000;140500;62320;140318;168605;149190;159636;159865;189021;213540;249767;284365;273539;232986;270198;275794;204404
-97;'348;Hungary;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;1508;795;2592;1736;1544;2076;4029;3035;2149;1560;246;130;74;535;616;616;616;133;511;719;1200;1300;1430;1300;2619;2982;4684;4080;4437;5330;5739;7007;4837;9193;26076;6148;26502;39562;25833;26844;28297;28566;34924;43478.45;44587;37118;29445;57666;61899;30178
-97;'348;Hungary;1876;Paper and paperboard;5510;Production;t;151000;160900;161600;173100;173700;192300;196300;215500;250600;258700;269100;289700;318700;333000;343000;371000;424000;444000;436000;440000;457000;461000;479000;506000;494000;517000;522000;535000;504000;443000;364000;348000;292000;328000;321000;363000;820000;482000;473000;506000;495000;517000;546000;579000;571000;553000;552000;424000;461000;640000;744000;641000;710632;765000;792801;822639;852467;843928;873411;771684;783251;863605;863605
-97;'348;Hungary;1876;Paper and paperboard;5610;Import quantity;t;68000;66300;78600;105600;142500;131200;133800;140800;181800;249100;235700;252100;265000;306700;305200;300700;312100;289200;278700;314000;296400;277200;339000;287500;273500;287200;274200;275000;265000;259600;230000;141478;208721;290000;266500;288000;363000;420000;435600;495300;541000;431830;618000;664000;689351;729000;808000;852600;697267;799938;766197;778324;778135;810407;818482;833221;866343;850889;862747;840938;916474;866355;862959
-97;'348;Hungary;1876;Paper and paperboard;5622;Import value;1000 USD;16684;16027;15503;21652;27923;25775;27062;30273;31660;49279;51332;57806;75481;113000;136147;123905;136236;115012;114522;153046;112839;104865;114194;90112;81549;105946;104799;110588;109850;109350;169132;117241;159622;226000;213425;242147;279560;341446;332078;354288;394025;327530;505320;637620;582941;669326;953308;988584;853752;770250;863299;773173;786903;806537;684978;685189;739588.87;791821;733891;676966;834007;791420;755023
-97;'348;Hungary;1876;Paper and paperboard;5910;Export quantity;t;2700;4600;4000;4600;11200;15600;18600;18800;54100;52200;74700;75700;76200;65600;46600;61600;97400;63800;85300;78000;79400;71800;142600;101300;84900;86400;93100;92500;92500;92500;59500;52983;30761;46000;78500;129000;181000;186600;232600;229700;250000;318920;221000;435000;420719;460053;494671;214129;452569;609853;580631;615424;653729;704620;748333;728745;762538;742776;787298;776870;730433;760672;737193
-97;'348;Hungary;1876;Paper and paperboard;5922;Export value;1000 USD;850;1000;900;1150;2240;3120;2921;2933;8374;4421;9212;9453;11089;16475;18280;17972;23988;19985;25872;27424;24340;20306;47592;29317;23659;28388;32542;32543;32543;32543;25287;50651;13847;19622;33918;62758;119514;124289;138682;138489;155365;223129;232520;352559;351268;468744;559479;464195;476144;531151;628554;575787;599528;599271;561031;519630;562337.91;612166;525358;472087;536076;714020;551445
-97;'348;Hungary;2042;Graphic papers;5510;Production;t;40900;39500;37300;39000;38400;45400;61300;72500;68700;74200;84600;92700;95300;88000;101000;108000;110000;109000;118000;115000;120000;120000;126000;140000;136000;163000;166000;155000;170000;127000;88000;107000;64000;80000;83000;142000;579000;184000;202000;208000;199000;208000;227000;248000;242000;187000;117000;18000;19000;0;0;0;0;0;0;0;5656;6000;2264;710;711;710;710
-97;'348;Hungary;2042;Graphic papers;5610;Import quantity;t;39800;38300;42900;53100;63700;47400;56300;49000;60000;89000;66300;74800;88400;105500;99000;95800;111400;121200;116000;107000;101800;107500;107900;106000;98600;99700;96600;94000;84000;78600;155200;76478;138864;193000;172000;157000;200000;220700;225500;267000;287000;166000;326000;374000;384679;385000;398000;429900;355318;384407;344946;341952;355230;343277;328429;329808;332767;325608;309843;279580;298285;279580;279580
-97;'348;Hungary;2042;Graphic papers;5622;Import value;1000 USD;6554;6232;7300;9173;10759;7930;9421;8969;11082;15997;13920;18757;26265;41950;43736;45635;54989;54652;55279;49553;40468;45097;39813;37847;33999;42423;40326;40973;40235;39735;113791;52241;97550;133000;120200;109289;145217;176579;167745;186374;207805;131022;264464;327178;326638;324586;390506;347151;362391;348189;358034;306624;313595;308369;249208;251634;257554.36;281919;258954;225708;265912;225706;225706
-97;'348;Hungary;2042;Graphic papers;5910;Export quantity;t;;;;;;;3500;1800;3900;1200;7600;9200;14600;17400;19200;25100;25300;22300;24000;26300;25500;20000;22200;26100;28700;37600;37600;36000;36000;36000;7500;8902;3293;6000;12800;64000;76000;68200;99400;68900;73000;136000;173000;213000;197560;169064;90140;22320;5549;11969;9160;10783;16236;11864;10218;8431;11852;13348;14249;8888;8263;8888;8888
-97;'348;Hungary;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;656;383;844;255;1859;2460;4095;7015;7568;8150;8583;9285;10231;10543;9350;6098;6051;6926;8977;14746;15732;13346;13346;13346;5969;7003;2815;3382;7300;36500;56939;48749;70270;51756;60032;119509;165577;197890;170770;161618;105594;29736;8339;11948;12740;14557;19688;16066;13732;12254;12627.17;17159;15801;10356;9049;10356;10356
-97;'348;Hungary;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1671;Newsprint;5610;Import quantity;t;28400;28000;27900;32800;37600;33200;31800;30700;38700;53600;39800;39600;44600;51000;56300;48800;61000;63600;65200;63000;66500;66800;66200;69000;67500;68000;68200;67000;57000;51600;94600;24325;25909;106000;91000;84000;85000;86900;90500;85300;95000;49000;57000;105000;116041;118000;117000;113700;99471;115045;93581;100373;95111;78035;87099;90267;68284;68647;61490;51808;51396;51808;51808
-97;'348;Hungary;1671;Newsprint;5622;Import value;1000 USD;3790;3735;3663;4463;5077;4557;4242;4216;5234;7198;5855;6049;7620;8920;14030;10826;13691;15529;16445;16632;14553;14722;13488;12871;12649;15779;14510;14738;14000;13500;49253;12531;11536;51000;44000;40615;41000;51106;50682;39938;52740;31611;41083;61192;71027;75457;87121;87236;71857;67171;67708;66040;62326;51712;46389;48555;35039.48;40831;36720;27078;28171;27078;27078
-97;'348;Hungary;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;3800;1400;100;3000;2000;2000;;;;;1300;200;;;;;;60;300;0;0;0;300;200;100;0;1000;0;1000;0;1000;0;1100;1005;4747;2424;113;5;0;146;21;2819;3256;4236;3427;1653;3427;3427
-97;'348;Hungary;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;794;289;22;1606;1015;1015;;;;;277;47;;;;;;13;149;0;0;0;150;162;35;112;537;76;425;0;176;0;818;743;2976;1804;65;4;0;164;5;604.63;656;740;581;329;581;581
-97;'348;Hungary;1674;Printing and writing papers;5510;Production;t;40900;39500;37300;39000;38400;45400;61300;72500;68700;74200;84600;92700;95300;88000;101000;108000;110000;109000;118000;115000;120000;120000;126000;140000;136000;163000;166000;155000;170000;127000;88000;107000;64000;80000;83000;142000;169000;184000;202000;208000;199000;208000;227000;248000;242000;187000;117000;18000;19000;0;0;0;0;0;0;0;5656;6000;2264;710;711;710;710
-97;'348;Hungary;1674;Printing and writing papers;5610;Import quantity;t;11400;10300;15000;20300;26100;14200;24500;18300;21300;35400;26500;35200;43800;54500;42700;47000;50400;57600;50800;44000;35300;40700;41700;37000;31100;31700;28400;27000;27000;27000;60600;52153;112955;87000;81000;73000;115000;133800;135000;181700;192000;117000;269000;269000;268638;267000;281000;316200;255847;269362;251365;241579;260119;265242;241330;239541;264483;256961;248353;227772;246889;227772;227772
-97;'348;Hungary;1674;Printing and writing papers;5622;Import value;1000 USD;2764;2497;3637;4710;5682;3373;5179;4753;5848;8799;8065;12708;18645;33030;29706;34809;41298;39123;38834;32921;25915;30375;26325;24976;21350;26644;25816;26235;26235;26235;64538;39710;86014;82000;76200;68674;104217;125473;117063;146436;155065;99411;223381;265986;255611;249129;303385;259915;290534;281018;290326;240584;251269;256657;202819;203079;222514.88;241088;222234;198630;237741;198628;198628
-97;'348;Hungary;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;3500;1800;3900;1200;7600;9200;14600;17400;19200;21300;23900;22200;21000;24300;23500;20000;22200;26100;28700;36300;37400;36000;36000;36000;7500;8902;3233;5700;12800;64000;76000;67900;99200;68800;73000;135000;173000;212000;197560;168064;90140;21220;4544;7222;6736;10670;16231;11864;10072;8410;9033;10092;10013;5461;6610;5461;5461
-97;'348;Hungary;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;656;383;844;255;1859;2460;4095;7015;7568;7356;8294;9263;8625;9528;8335;6098;6051;6926;8977;14469;15685;13346;13346;13346;5969;7003;2802;3233;7300;36500;56939;48599;70108;51721;59920;118972;165501;197465;170770;161442;105594;28918;7596;8972;10936;14492;19684;16066;13568;12249;12022.53;16503;15061;9775;8720;9775;9775
-97;'348;Hungary;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11000;10000;3000;2000;1000;6000;4000;3000;0;0;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;15500;35300;47000;0;0;56000;60221;54000;54000;68200;54243;51990;46809;48957;53520;48669;30681;36661;55571;58839;63913;57948;57118;57948;57948
-97;'348;Hungary;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10526;10746;21552;29958;0;0;45676;48294;43195;46728;66556;51068;41795;42363;40748;42786;39817;20313;24436;37121.55;42864;40051;37537;40996;37537;37537
-97;'348;Hungary;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;0;0;0;1000;1000;1412;21000;100;20;1830;935;315;4493;6405;1553;63;79;89;79;587;162;1615;162;162
-97;'348;Hungary;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;207;2;28;0;830;1424;1185;20364;76;25;3416;923;350;3535;4979;1522;86;121;108.08;105;524;214;1253;214;214
-97;'348;Hungary;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174000;191000;198000;196000;206000;224000;242000;238000;184000;117000;18000;18000;0;0;0;0;0;0;0;828;1000;788;707;707;707;707
-97;'348;Hungary;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17900;22800;31200;39000;58000;145000;68000;56433;72000;74000;111000;105758;115829;104043;94892;101630;111602;101014;101262;105900;99286;92291;87473;98271;87473;87473
-97;'348;Hungary;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16590;19971;26132;32660;50437;101546;68888;55287;70083;84978;13971;116563;119346;118595;96507;99900;108119;90634;92231;96551.64;105140;96756;87070;100634;87069;87069
-97;'348;Hungary;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66700;98100;67600;72000;134000;171000;210000;195584;147000;90000;21000;2587;5288;3938;4613;7705;9145;7992;7199;7709;7660;6055;2895;2513;2895;2895
-97;'348;Hungary;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47299;68923;50308;59124;118618;163685;195062;168862;141016;105442;28184;3898;6783;7769;8913;11826;12208;10377;10535;10048.84;12946;10512;5721;4563;5721;5721
-97;'348;Hungary;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;4828;5000;1476;3;4;3;3
-97;'348;Hungary;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101600;96700;115200;106000;59000;124000;145000;151984;141000;153000;137000;95846;101543;100513;97730;104969;104971;109635;101618;103012;98836;92149;82351;91500;82351;82351
-97;'348;Hungary;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98357;86346;98752;92447;48974;121835;151422;152030;135851;171679;179388;122903;119877;129368;103329;108583;108721;91872;86412;88841.7;93084;85427;74023;96111;74022;74022
-97;'348;Hungary;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;800;1200;1000;1000;1000;1000;564;64;40;200;127;999;2483;1564;2121;1166;2017;1132;1235;2353;3371;2404;2482;2404;2404
-97;'348;Hungary;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;978;1411;768;354;986;979;723;62;76;709;282;1266;2817;2044;2879;2336;3105;1593;1865.62;3452;4025;3840;2904;3840;3840
-97;'348;Hungary;1675;Other paper and paperboard;5510;Production;t;110100;121400;124300;134100;135300;146900;135000;143000;181900;184500;184500;197000;223400;245000;242000;263000;314000;335000;318000;325000;337000;341000;353000;366000;358000;354000;356000;380000;334000;316000;276000;241000;228000;248000;238000;221000;241000;298000;271000;298000;296000;309000;319000;331000;329000;366000;435000;406000;442000;640000;744000;641000;710632;765000;792801;822639;846811;837928;871147;770974;782540;862895;862895
-97;'348;Hungary;1675;Other paper and paperboard;5610;Import quantity;t;28200;28000;35700;52500;78800;83800;77500;91800;121800;160100;169400;177300;176600;201200;206200;204900;200700;168000;162700;207000;194600;169700;231100;181500;174900;187500;177600;181000;181000;181000;74800;65000;69857;97000;94500;131000;163000;199300;210100;228300;254000;265830;292000;290000;304672;344000;410000;422700;341949;415531;421251;436372;422905;467130;490053;503413;533576;525281;552904;561358;618189;586775;583379
-97;'348;Hungary;1675;Other paper and paperboard;5622;Import value;1000 USD;10130;9795;8203;12479;17164;17845;17641;21304;20578;33282;37412;39049;49216;71050;92411;78270;81247;60360;59243;103493;72371;59768;74381;52265;47550;63523;64473;69615;69615;69615;55341;65000;62072;93000;93225;132858;134343;164867;164333;167914;186220;196508;240856;310442;256303;344740;562802;641433;491361;422061;505265;466549;473308;498168;435770;433555;482034.51;509902;474937;451258;568095;565714;529317
-97;'348;Hungary;1675;Other paper and paperboard;5910;Export quantity;t;2700;4600;4000;4600;11200;15600;15100;17000;50200;51000;67100;66500;61600;48200;27400;36500;72100;41500;61300;51700;53900;51800;120400;75200;56200;48800;55500;56500;56500;56500;52000;44081;27468;40000;65700;65000;105000;118400;133200;160800;177000;182920;48000;222000;223159;290989;404531;191809;447020;597884;571471;604641;637493;692756;738115;720314;750686;729428;773049;767982;722170;751784;728305
-97;'348;Hungary;1675;Other paper and paperboard;5922;Export value;1000 USD;850;1000;900;1150;2240;3120;2265;2550;7530;4166;7353;6993;6994;9460;10712;9822;15405;10700;15641;16881;14990;14208;41541;22391;14682;13642;16810;19197;19197;19197;19318;43648;11032;16240;26618;26258;62575;75540;68412;86733;95333;103620;66943;154669;180498;307126;453885;434459;467805;519203;615814;561230;579840;583205;547299;507376;549710.74;595007;509557;461731;527027;703664;541089
-97;'348;Hungary;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;6600;7500;10300;18700;18800;13000;29000;16000;16000;19000;18000;21000;22000;22000;24000;24000;26000;27000;27000;28000;22000;21000;18000;25000;34000;25000;35000;37000;34000;34000;35000;35000;36000;37000;39000;34000;34000;30000;39000;28000;6000;0;0;0;0;0;0;0;21323;21165;41762;39497;21441;39497;39497
-97;'348;Hungary;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;65400;4600;1900;2900;4200;9600;6800;10200;8400;8000;10000;6100;6200;7000;6200;6900;7400;8600;8000;8000;8000;5000;5000;5000;6000;13000;11000;15000;16100;14700;14500;15000;17830;16000;25000;26680;29000;74000;79000;60477;74416;80535;93032;82296;94062;85556;69666;74554;46135;54544;43781;53350;43781;43781
-97;'348;Hungary;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;13296;3385;1082;2032;3290;11659;6446;10804;8895;8400;12122;5986;5635;5271;4648;5230;6422;7572;7936;7936;7936;4900;4900;4000;5000;10833;9166;12745;14972;13312;13579;11194;10371;11623;40244;40034;49124;196766;233506;85739;107728;131460;124956;122381;123103;93999;73529;85789.54;58430;64506;49651;59571;49651;49651
-97;'348;Hungary;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;2000;3000;3000;2100;1600;2000;2920;3000;3000;2635;2989;9531;4209;1808;4555;4798;1771;5816;13522;13136;11978;14483;15024;11643;6823;6804;6823;6823
-97;'348;Hungary;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;775;775;1771;1827;1246;906;1295;2198;2431;2200;2045;2729;5914;3547;3257;6199;6947;2356;7349;16911;11931;12184;15039.63;18447;13366;7330;7908;7330;7330
-97;'348;Hungary;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262000;234000;261000;258000;271000;279000;297000;295000;336000;393000;376000;436000;555000;743000;641000;710632;765000;792801;822639;825488;816763;829385;731477;761099;823398;823398
-97;'348;Hungary;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155900;169100;180800;211000;233000;247000;215000;267737;285000;295000;303300;279073;337726;336601;339641;336600;369650;400457;430531;455401;475701;494425;513426;560979;538843;535447
-97;'348;Hungary;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113937;118335;122388;142035;151529;189898;152421;196074;218891;256445;293905;390852;297791;344657;314544;315757;343400;310572;333514;368361.22;418479;383679;372419;475335;486875;450478
-97;'348;Hungary;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111700;128700;156300;173000;179000;44000;194000;219234;273000;376000;171500;444516;592549;565629;601623;630485;678417;724286;707591;735371;713576;760521;760378;714564;744180;720701
-97;'348;Hungary;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68331;62873;80917;89577;97530;60962;77255;175080;252384;396003;379118;456044;504643;596866;545326;559076;557223;529346;488993;528215.61;569996;490136;448346;512636;690279;527704
-97;'348;Hungary;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;118200;124600;146700;146600;160100;151600;175500;212000;200000;232000;283000;283000;267000;277000;283000;240000;249000;254000;252000;245000;247000;266000;236000;223000;195000;198000;175000;207000;173000;182000;202000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;93000;162900;115200;111200;137600;151800;149000;142500;119000;115000;137700;122800;145000;207100;111400;154700;166000;154700;155000;155000;155000;55000;49500;54357;75000;48500;59000;103000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;18495;32741;23474;27259;39080;57405;43196;47420;39500;39000;47217;25527;43206;59815;17214;34652;46703;45782;42465;42465;42465;37441;51100;50072;70000;45267;55067;55280;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;22900;34900;32100;18700;19400;23800;31900;64400;38600;54600;45500;46000;43900;112500;67300;48300;44400;53000;54000;54000;54000;49500;41581;24968;40000;62700;58000;95000;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;3135;5300;5569;4952;6560;9835;8773;13066;8800;13000;15254;12572;11790;39123;19973;12264;12751;15932;18319;18319;18319;18440;42770;10154;16240;25456;23548;38466;;;;;;;;;;;;;;;;;;;;;;;;;;
-97;'348;Hungary;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;168000;206000;215000;227000;239000;263000;265000;300000;305000;280000;349000;523000;613000;611000;675000;675000;700927;727307;714513;683205;687867;691298;707163;691298;691298
-97;'348;Hungary;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60300;64200;65800;72000;121000;134000;86000;130299;143000;154000;164600;139473;147252;135652;139784;142360;165469;173425;185494;199012;214378;231019;247802;264691;261578;269066
-97;'348;Hungary;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26339;26082;29658;31473;51745;65422;47579;64064;76987;97835;111823;71528;91923;99166;89079;93680;108031;94392;96853;111926.46;137507;121687;121241;160565;195707;160971
-97;'348;Hungary;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72700;85800;109200;104000;123000;1000;128000;163825;186000;208000;200;257529;442150;392936;440813;474821;529780;545890;534313;562949;546355;575612;571343;575235;561382;550749
-97;'348;Hungary;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20125;24222;36233;30935;36873;580;45034;54576;72463;94198;407;83442;206831;221258;193240;229093;257895;226479;212694;247306.12;279219;214252;179527;268934;371762;241869
-97;'348;Hungary;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5867;6872;4000;5000;5000;5000;5000
-97;'348;Hungary;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;51800;59300;70000;70000;53000;36000;55510;77000;84000;76800;75438;103916;108453;108671;103793;102722;120643;135486;145827;145864;149217;149198;164262;149198;149198
-97;'348;Hungary;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54640;56306;56878;70984;67659;69182;36038;68312;93474;100349;109768;79858;129076;151214;142681;137975;144553;135187;151323;166547.3;177040;163196;159142;192307;159140;159140
-97;'348;Hungary;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900;8500;14000;21000;24000;0;0;33639;50000;76000;55000;57435;53260;55369;59930;54966;42747;59910;54188;58499;59174;81983;87509;46634;87509;87509
-97;'348;Hungary;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25433;19135;26647;37131;42427;147;336;107895;159005;190409;212608;221810;202898;208115;212841;189851;155557;173961;149591;153701.23;156395;157571;153454;128861;153452;153452
-97;'348;Hungary;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;33000;22000;17000;19000;16000;16000;12000;24000;74000;87000;85000;32000;48000;30000;35632;90000;91874;95332;105108;126686;137518;35179;48936;127100;127100
-97;'348;Hungary;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;38600;47700;46000;42000;37000;51000;50828;42000;53000;55900;44838;64922;70683;70125;67635;75956;80006;85535;85187;92434;92858;92288;107596;103929;93045
-97;'348;Hungary;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28419;28959;32662;31763;32125;36012;49240;42890;36400;54651;64859;122903;66561;81805;71509;71994;77926;69825;75543;78170.98;91933;88643;82189;108547;122181;120520
-97;'348;Hungary;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;34400;32900;29000;32000;43000;25000;21013;36000;92000;116300;129552;96859;116988;100520;100443;105482;118169;118671;113498;107431;102088;100225;92291;93988;81142
-97;'348;Hungary;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22575;19474;17919;15930;18230;60235;17502;12280;20816;111396;166103;150792;94732;167284;139013;139951;143374;128647;126348;126799.01;133644;117621;114536;114397;164236;131554
-97;'348;Hungary;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;33000;33000;26000;25000;24000;18000;18000;12000;14000;9000;2000;0;82000;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;14500;8000;23000;0;23000;42000;31100;23000;4000;6000;19324;21636;21813;21061;22812;25503;26383;24016;25375;23025;21331;24138;24430;24138;24138
-97;'348;Hungary;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4539;6988;3190;7815;0;19282;19564;20808;12030;3610;7455;116563;10231;12472;11275;12108;12890;11168;9795;11716.48;11999;10153;9847;13916;9847;9847
-97;'348;Hungary;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;200;19000;0;0;41000;757;1000;0;0;0;280;336;360;255;408;317;419;425;616;838;1301;404;1301;1301
-97;'348;Hungary;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;42;118;5581;0;0;14383;329;100;0;0;0;182;209;232;181;397;259;360;409.25;738;692;829;444;829;829
-97;'348;Hungary;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;16800;18400;28600;30400;14100;26700;29100;20000;13000;15000;15000;33000;33000;27000;32000;79000;80000;88000;80000;82000;82000;86000;76000;72000;63000;18000;19000;16000;30000;2000;5000;2000;2000;2000;2000;1000;1000;0;0;0;3000;2000;0;85000;1000;0;0;0;0;0;0;0;0;0;0;0;0
-97;'348;Hungary;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;1700;1900;60200;62500;59400;44800;49100;48000;40600;39700;59300;65700;18500;17000;63900;13300;14100;14300;18000;18000;18000;14800;10500;10500;16000;33000;61000;45000;27300;26300;33000;28000;15000;29000;50000;10255;30000;41000;40400;2399;3389;4115;3699;4009;3418;4040;3216;3621;3445;3935;4151;3860;4151;4151
-97;'348;Hungary;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;1491;1286;14493;19925;28680;23347;28628;23023;11965;11843;44154;40858;10927;9295;30403;7668;10398;11119;19214;19214;19214;13000;9000;8000;18000;37125;68625;66318;35958;32686;31947;32991;34608;39335;117777;20195;76725;109591;114022;14770;16542;29148;27049;35170;31665;31199;26512;27883.75;32993;26752;29188;33189;29188;29188
-97;'348;Hungary;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;28100;32200;34400;42900;28800;3600;4600;7700;2900;6700;6200;7900;7900;7900;7900;7900;4400;2500;2500;2500;2500;2500;2500;2500;0;1000;5000;7000;3700;2400;2900;2000;1000;1000;25000;1290;15000;19000;16100;696;780;1044;1247;1192;817;693;745;832;828;885;781;802;781;781
-97;'348;Hungary;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;1031;2053;1424;2042;2900;877;1049;2339;1900;2641;1627;2418;2418;2418;2418;2418;891;878;878;878;878;878;878;878;0;387;1935;22338;5382;4293;4910;4461;3892;3550;75214;3373;52013;51968;51794;8504;8361;12001;13548;13415;9071;6022;6199;6455.49;6564;6055;6055;6483;6055;6055
-97;'348;Hungary;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366896.35;431724;450438;455811;565234;595252;586721
-97;'348;Hungary;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644133.48;656050;618398;597755;727475;685311;709252
-97;'348;Hungary;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17621.97;21841;24883;30403;39872;30403;30403
-97;'348;Hungary;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8614.14;9466;12725;9696;7669;9696;9696
-97;'348;Hungary;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13408.79;18473;19494;25522;34175;25522;25522
-97;'348;Hungary;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763.66;939;1158;1376;2090;1376;1376
-97;'348;Hungary;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4213.18;3368;5389;4881;5697;4881;4881
-97;'348;Hungary;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7850.48;8527;11567;8320;5579;8320;8320
-97;'348;Hungary;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48326;58438;54687;47324;66959;92633;104930
-97;'348;Hungary;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59710;63594;61019;51222;65680;82048;95281
-97;'348;Hungary;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8386.64;10105;13449;19253;18194;19253;19253
-97;'348;Hungary;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063.85;2702;2508;3596;5236;3596;3596
-97;'348;Hungary;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75725.79;80318;83088;84477;109116;84476;84476
-97;'348;Hungary;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177157.92;169617;166029;164426;220572;164424;164424
-97;'348;Hungary;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192383;229964;240915;232420;278156;326554;305726
-97;'348;Hungary;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355265;366356;337245;328226;376517;384959;395667
-97;'348;Hungary;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376.28;1708;2757;2947;2742;2947;2947
-97;'348;Hungary;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13020;15244;10364;11133;13437;11133;11133
-97;'348;Hungary;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23076.66;29350;30659;38987;50195;38986;38986
-97;'348;Hungary;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28302.57;29071;28508;29456;38364;29455;29455
-97;'348;Hungary;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509328.54;561118;591708;669351;780382;794207;798247
-97;'348;Hungary;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383718.31;413995;444193;496112;558776;574920;603406
-97;'348;Hungary;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7341.48;5974;4690;4556;6335;4556;4556
-97;'348;Hungary;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113.4;165;573;221;205;221;221
-97;'348;Hungary;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41491.39;46597;46913;50324;60095;50324;50324
-97;'348;Hungary;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13835.29;19679;19339;24247;28473;24247;24247
-97;'348;Hungary;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104855.46;118614;123305;121339;132435;121338;121338
-97;'348;Hungary;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37897.67;22638;48318;58005;71622;58005;58005
-97;'348;Hungary;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243108.89;272405;296816;337642;393038;462501;466541
-97;'348;Hungary;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241651.63;275944;276867;300485;341884;379295;407781
-97;'348;Hungary;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112531.31;117528;119984;155490;188479;155488;155488
-97;'348;Hungary;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90220.32;95569;99096;113154;116592;113152;113152
-99;'352;Iceland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239725.28;340727;314133;325243;298324;318794;318794
-99;'352;Iceland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2462.81;5043;3676;722;2868;2237;2237
-99;'352;Iceland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4639;5716;6987;7179;8509;8703;8652;9267;7554;9754;10672;12077;18195;29156;22152;18124;27520;31290;39302;51653;45845;43093;39761;35475;35782;36820;64933;64933;59293;59140;59123;49813;54205;56128;58582;61650;65172;66341;54641;68144;49878;52731;63571;76147;88759;91482;112616;89198;55573;63716;69107;67166;69799;74242;74242;69852;80084.33;138971;123855;134965;108046;128516;128516
-99;'352;Iceland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;12334;1158;1872;1907;1725;1895;1578;3387;310;132;173;354;259;762;723;1287;1880;1227;2059;3378;2054;2045;2188;2195;2652;2462.81;5043;3676;722;2868;2237;2237
-99;'352;Iceland;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3466;3624;3640;3640;3640;3640;4000;3000;2000;2000;2600;4300;4300
-99;'352;Iceland;1861;Roundwood;5616;Import quantity;m3;4600;7200;6900;9500;5700;5100;4400;3000;2500;3500;3900;4300;4800;6900;9300;7900;13300;5500;10600;18600;30300;13500;6800;2400;1600;1900;1800;1800;1200;533;1246;2813;3924;3176;2550;2500;3200;3667;3817;3817;100;752;978;825;604;1484;1417;1366;2083;194;150;583;675;585;585;219;1100;6000;1000;1000;1000;1044;1044
-99;'352;Iceland;1861;Roundwood;5622;Import value;1000 USD;186;312;325;424;291;236;262;204;166;219;252;324;478;912;1842;1163;1551;736;1755;2768;3442;2071;1471;420;315;370;562;562;328;175;158;267;493;327;291;346;509;14063;1095;1095;160;166;228;219;187;379;427;520;365;36;45;69;100;65;65;51;285.24;1178;305;515;529;550;550
-99;'352;Iceland;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3239;3239;3646;3646;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;12;10;0;41;12;101;101;137;1000;0;0;0;0;0;0
-99;'352;Iceland;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;678;678;0;21;15;15;0;0;0;0;0;0;0;0;0;0;0;1;1;1;3;1;9;9;9;95.05;0;0;0;0;0;0
-99;'352;Iceland;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3147;3340;3350;3350;3350;3350;3000;2000;1800;1800;1700;3900;3900
-99;'352;Iceland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;6000;1000;1000;1000;1040;1040
-99;'352;Iceland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285.24;1178;305;515;529;548;548
-99;'352;Iceland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;0;0;0
-99;'352;Iceland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95.05;0;0;0;0;0;0
-99;'352;Iceland;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;319;284;290;290;290;290;1000;1000;200;200;900;400;400
-99;'352;Iceland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;4
-99;'352;Iceland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2
-99;'352;Iceland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;988;893;900;900;900;900;1000;2000;1000;1000;1000;1000;1000
-99;'352;Iceland;1864;Wood fuel;5616;Import quantity;m3;;;100;100;200;100;100;100;100;100;100;200;200;100;200;200;200;;;;;;;;;;;;;;;105;151;94;50;100;100;100;100;100;100;442;105;139;30;64;42;95;95;34;64;67;101;122;122;162;100;500;83;80;80;124;124
-99;'352;Iceland;1864;Wood fuel;5622;Import value;1000 USD;;;3;4;8;6;8;8;5;7;9;9;9;13;19;16;19;;;;;;;;;;;;;;;5;7;6;3;8;8;6;8;8;67;94;42;58;6;13;42;70;81;17;33;31;57;27;27;34;95.05;35;9;15;16;37;37
-99;'352;Iceland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;11;0;0;43;1000;0;0;0;0;0;0
-99;'352;Iceland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;0;0;1;95.05;0;0;0;0;0;0
-99;'352;Iceland;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;690;625;630;630;630;630;0;1000;800;800;300;800;800
-99;'352;Iceland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;500;83;80;80;120;120
-99;'352;Iceland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95.05;35;9;15;16;35;35
-99;'352;Iceland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;0;0;0
-99;'352;Iceland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95.05;0;0;0;0;0;0
-99;'352;Iceland;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;298;268;270;270;270;270;1000;1000;200;200;700;200;200
-99;'352;Iceland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;4
-99;'352;Iceland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2
-99;'352;Iceland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;100;100;200;100;100;100;100;100;100;200;200;100;200;200;200;;;;;;;;;;;;;;;105;151;94;50;100;100;100;100;100;100;442;105;139;30;64;42;95;95;34;64;67;101;122;122;162;;;;;;;
-99;'352;Iceland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;3;4;8;6;8;8;5;7;9;9;9;13;19;16;19;;;;;;;;;;;;;;;5;7;6;3;8;8;6;8;8;67;94;42;58;6;13;42;70;81;17;33;31;57;27;27;34;;;;;;;
-99;'352;Iceland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;11;0;0;43;;;;;;;
-99;'352;Iceland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;0;0;1;;;;;;;
-99;'352;Iceland;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2478;2731;2740;2740;2740;2740;3000;1000;1000;1000;1600;3300;3300
-99;'352;Iceland;1865;Industrial roundwood;5616;Import quantity;m3;4600;7200;6800;9400;5500;5000;4300;2900;2400;3400;3800;4100;4600;6800;9100;7700;13100;5500;10600;18600;30300;13500;6800;2400;1600;1900;1800;1800;1200;533;1246;2708;3773;3082;2500;2400;3100;3567;3717;3717;0;310;873;686;574;1420;1375;1271;1988;160;86;516;574;463;463;57;1000;5500;917;920;920;920;920
-99;'352;Iceland;1865;Industrial roundwood;5622;Import value;1000 USD;186;312;322;420;283;230;254;196;161;212;243;315;469;899;1823;1147;1532;736;1755;2768;3442;2071;1471;420;315;370;562;562;328;175;158;262;486;321;288;338;501;14057;1087;1087;93;72;186;161;181;366;385;450;284;19;12;38;43;38;38;17;190.19;1143;296;500;513;513;513
-99;'352;Iceland;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3239;3239;3646;3646;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;12;10;0;33;1;101;101;94;0;0;0;0;0;0;0
-99;'352;Iceland;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;678;678;0;21;15;15;0;0;0;0;0;0;0;0;0;0;0;1;1;0;2;0;9;9;8;0;0;0;0;0;0;0
-99;'352;Iceland;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2457;2715;2720;2720;2720;2720;3000;1000;1000;1000;1400;3100;3100
-99;'352;Iceland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;422;1720;2246;1405;1300;900;1600;1567;1717;1717;0;290;701;686;568;1054;1330;1264;1981;158;76;513;572;439;439;44;1000;5500;917;920;920;920;920
-99;'352;Iceland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;62;150;192;110;102;90;253;13900;167;167;68;62;135;161;181;270;364;418;252;18;8;38;43;36;36;13;190.19;1143;296;500;513;513;513
-99;'352;Iceland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;12;10;0;33;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;1;0;2;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;422;1720;2246;1405;1300;900;1600;1567;1717;1717;0;290;701;686;568;1054;1330;1264;1981;158;76;513;572;439;439;44;1000;5500;917;920;920;920;920
-99;'352;Iceland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;62;150;192;110;102;90;253;13900;167;167;68;62;135;161;181;270;364;418;252;18;8;38;43;36;36;13;190.19;1143;296;500;513;513;513
-99;'352;Iceland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;12;10;0;33;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;1;0;2;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;21;16;20;20;20;20;0;0;0;0;200;200;200
-99;'352;Iceland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;824;988;1527;1677;1200;1500;1500;2000;2000;2000;0;20;172;0;6;366;45;7;7;2;10;3;2;24;24;13;0;0;0;0;0;0;0
-99;'352;Iceland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;96;112;294;211;186;248;248;157;920;920;25;10;51;0;0;96;21;32;32;1;4;0;0;2;2;4;0;0;0;0;0;0;0
-99;'352;Iceland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3239;3239;3646;3646;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;101;101;94;0;0;0;0;0;0;0
-99;'352;Iceland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;678;678;0;21;15;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;8;0;0;0;0;0;0;0
-99;'352;Iceland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;155;110;200;0;0;0;0;0;0;13;168;0;6;366;45;7;7;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;71;54;83;0;0;0;0;0;0;4;47;0;0;96;21;32;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;794;958;1372;1567;1000;1500;1500;2000;2000;2000;0;7;4;0;0;0;0;0;0;2;9;3;2;24;24;13;0;0;0;0;0;0;0
-99;'352;Iceland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;92;108;223;157;103;248;248;157;920;920;25;6;4;0;0;0;0;0;0;1;4;0;0;2;2;4;0;0;0;0;0;0;0
-99;'352;Iceland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3239;3239;3646;3646;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;101;101;94;0;0;0;0;0;0;0
-99;'352;Iceland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;192;678;678;0;21;15;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;8;0;0;0;0;0;0;0
-99;'352;Iceland;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;425;272;280;280;280;280;500;167;170;170;0;0;0
-99;'352;Iceland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;100;100;300;100;100;100;300;200;100;100;100;300;400;400;400;100;100;100;800;800;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;5;12;29;9;12;6;28;24;6;6;6;41;68;57;57;14;14;14;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;417;266;270;270;270;270;500;167;170;170;0;0;0
-99;'352;Iceland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;8;6;10;10;10;10;0;0;0;0;0;0;0
-99;'352;Iceland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;100;100;300;100;100;100;300;200;100;100;100;300;400;400;400;100;100;100;800;800;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;5;12;29;9;12;6;28;24;6;6;6;41;68;57;57;14;14;14;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2053;2459;2460;2460;2460;2460;2500;833;830;830;1600;3300;3300
-99;'352;Iceland;1871;Other industrial roundwood;5616;Import quantity;m3;4600;7200;6700;9300;5200;4900;4200;2800;2100;3200;3700;4000;4500;6500;8700;7300;12700;5400;10500;18500;29500;12700;6000;1600;1600;1900;1800;1800;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1871;Other industrial roundwood;5622;Import value;1000 USD;186;312;317;408;254;221;242;190;133;188;237;309;463;858;1755;1090;1475;722;1741;2754;3342;1971;1371;320;315;370;562;562;328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2040;2449;2450;2450;2450;2450;2500;833;830;830;1400;3100;3100
-99;'352;Iceland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;13;10;10;10;10;10;0;0;0;0;200;200;200
-99;'352;Iceland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;4600;7200;6700;9300;5200;4900;4200;2800;2100;3200;3700;4000;4500;6500;8700;7300;12700;5400;10500;18500;29500;12700;6000;1600;1600;1900;1800;1800;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;186;312;317;408;254;221;242;190;133;188;237;309;463;858;1755;1090;1475;722;1741;2754;3342;1971;1371;320;315;370;562;562;328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;338;524;500;400;400;300;250;1000;1000;320;396;371;478;217;277;284;430;281;279;302;383;270;270;2051;13030;36000;17000;17000;38000;57200;57200
-99;'352;Iceland;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;190;263;260;212;256;202;202;22;286;257;324;285;369;242;214;233;348;284;305;286;401;292;292;1334;4597.02;5635;3013;4006;7989;18379;18379
-99;'352;Iceland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;4250;1000;1000;2788;2129;823;3599;3486;7463;4804;5208;4127;3256;23039;27306;20872;20872;51195;19824;18000;12000;43000;39000;39000;39000
-99;'352;Iceland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;152;20;334;537;571;433;800;954;1916;1631;1504;1130;954;3614;3959;3433;3433;4211;4308.86;2361;1675;5473;6558;6851;6851
-99;'352;Iceland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;6;0;1;0;0;0;0;9;0;0;0;0;0;0;0
-99;'352;Iceland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11117;0;151;0;200;200;400;500;1000;1000;1013;830;1;1158;1364;4009;2213;2178;1410;1081;22950;26860;20468;20468;50606;19325;18000;12000;43000;39000;39000;39000
-99;'352;Iceland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;0;11;0;24;24;11;29;20;142;162;231;223;325;426;1085;1015;842;550;424;3583;3869;3327;3327;4087;4201.77;2361;1675;5473;6558;6851;6851
-99;'352;Iceland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0
-99;'352;Iceland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14004;3865;4068;2800;3500;3500;4000;3750;0;0;1775;1299;822;2441;2122;3454;2591;3030;2717;2175;89;446;404;404;589;499;0;0;0;0;0;0
-99;'352;Iceland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;131;146;133;152;152;146;123;0;192;375;340;210;475;528;831;616;662;580;530;31;90;106;106;124;107.09;0;0;0;0;0;0
-99;'352;Iceland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;6;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;9000;9000;9000;0;0;0
-99;'352;Iceland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905;529;872;872;997;984;1000;1000;1000;1000;1000;1000
-99;'352;Iceland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;298;364;364;336;409.19;416;519;531;593;593;593
-99;'352;Iceland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1000;0;0;0;0;0;0
-99;'352;Iceland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;201.34;0;0;0;0;0;0
-99;'352;Iceland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876;380;603;603;605;984;1000;1000;1000;1000;1000;1000
-99;'352;Iceland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;232;258;258;212;409.19;416;519;531;593;593;593
-99;'352;Iceland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1000;0;0;0;0;0;0
-99;'352;Iceland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;201.34;0;0;0;0;0;0
-99;'352;Iceland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;149;269;269;392;0;0;0;0;0;0;0
-99;'352;Iceland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;66;106;106;124;0;0;0;0;0;0;0
-99;'352;Iceland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1872;Sawnwood;5616;Import quantity;m3;32800;42000;63200;52600;56100;59700;58300;40900;34400;46600;58600;67300;77100;80100;45200;45200;62090;68300;63500;76800;62300;73600;64000;66700;67000;55200;82700;82700;63100;63100;63100;85446;90946;70881;88800;92500;85000;71000;70550;94000;71000;70440;82279;97055;113338;94957;106298;70060;48903;76627;69567;74662;79281;95599;94200;56592;73216;61000;55000;45000;43000;39700;39700
-99;'352;Iceland;1872;Sawnwood;5622;Import value;1000 USD;1974;2423;3397;2982;3661;3807;3630;3368;2402;3382;4442;5025;8423;14486;8145;6806;11706;13077;14015;22089;16137;15560;14360;13135;11916;9700;18572;18572;14763;14763;14763;19914;17139;16442;19738;20342;19948;16400;16646;22391;15401;16513;22533;29135;34913;35036;51652;34422;16183;21688;21858;20317;21267;23146;23146;19750;26709.22;30965;26758;30343;49183;43376;43376
-99;'352;Iceland;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;943;1417;1459;100;300;1800;1720;0;0;15;703;423;70;40;513;1027;141;333;244;200;91;18;20;51;0;0;0;0;0;0;0
-99;'352;Iceland;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;190;307;413;47;217;472;472;0;0;1;122;8;119;41;51;13;95;187;90;52;26;5;5;21;0;0;0;0;0;0;0
-99;'352;Iceland;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1632;Sawnwood, coniferous;5616;Import quantity;m3;29900;38800;58400;49900;52600;55200;55700;39100;31800;43300;55000;63900;74300;75900;43100;43100;60190;66300;61700;74500;60000;71200;61900;64100;64100;53200;80200;80200;61300;61300;61300;81637;87295;67039;83900;81600;75600;67000;67000;94000;69000;67919;77171;87312;108962;90656;101253;66599;46702;73882;64596;67914;73224;91029;92000;51848;67808;56000;50000;40000;38000;34800;34800
-99;'352;Iceland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1620;2000;2899;2574;3139;3283;3180;2938;1991;2848;3798;4349;7595;13256;7229;6041;10699;11781;12741;20382;14610;14030;12716;11683;10592;8800;16189;16189;13374;13374;13374;17166;14605;13747;16546;16394;16416;13700;12850;22391;13232;13837;19708;24255;29423;29429;44807;29790;14169;19490;18081;16786;18098;20573;20573;16956;23524.33;27121;23379;25873;42709;35917;35917
-99;'352;Iceland;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;868;1358;1400;0;0;1000;800;0;0;14;703;0;70;40;20;10;0;26;145;175;53;10;10;51;0;0;0;0;0;0;0
-99;'352;Iceland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;145;280;386;0;0;0;0;0;0;1;122;0;119;41;7;7;0;6;36;43;13;2;2;21;0;0;0;0;0;0;0
-99;'352;Iceland;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2900;3200;4800;2700;3500;4500;2600;1800;2600;3300;3600;3400;2800;4200;2100;2100;1900;2000;1800;2300;2300;2400;2100;2600;2900;2000;2500;2500;1800;1800;1800;3809;3651;3842;4900;10900;9400;4000;3550;0;2000;2521;5108;9743;4376;4301;5045;3461;2201;2745;4971;6748;6057;4570;2200;4744;5408;5000;5000;5000;5000;4900;4900
-99;'352;Iceland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;354;423;498;408;522;524;450;430;411;534;644;676;828;1230;916;765;1007;1296;1274;1707;1527;1530;1644;1452;1324;900;2383;2383;1389;1389;1389;2748;2534;2695;3192;3948;3532;2700;3796;0;2169;2676;2825;4880;5490;5607;6845;4632;2014;2198;3777;3531;3169;2573;2573;2794;3184.89;3844;3379;4470;6474;7459;7459
-99;'352;Iceland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;75;59;59;100;300;800;920;0;0;1;0;423;0;0;493;1017;141;307;99;25;38;8;10;0;0;0;0;0;0;0;0
-99;'352;Iceland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;45;27;27;47;217;472;472;0;0;0;0;8;0;0;44;6;95;181;54;9;13;3;3;0;0;0;0;0;0;0;0
-99;'352;Iceland;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1634;Veneer sheets;5616;Import quantity;m3;300;400;500;400;400;400;500;400;400;500;500;400;400;600;500;500;600;600;600;500;500;600;400;500;400;400;400;400;600;600;600;206;189;248;300;800;300;200;200;0;0;256;212;280;465;304;259;191;158;327;167;158;191;169;169;101;100;150;120;0;0;0;0
-99;'352;Iceland;1634;Veneer sheets;5622;Import value;1000 USD;134;178;220;227;312;351;443;447;439;447;613;533;709;1080;717;599;1124;1148;1197;1239;954;1039;954;839;722;720;1191;1191;982;982;982;926;648;942;1197;1317;1168;942;1318;0;1208;1349;1470;1676;2067;2108;2354;1669;1044;1509;1114;998;1060;1018;1018;768;777.6;599;449;0;0;0;0
-99;'352;Iceland;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;0;5;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;26;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1873;Wood-based panels;5616;Import quantity;m3;3400;6800;7500;7400;10200;10311;11817;10006;8590;11722;12511;15243;18054;21986;18175;17700;23500;24080;27900;26800;26100;29500;24500;28600;28700;26500;25100;25100;30800;30800;30800;26721;25502;24025;21000;23000;26500;22900;24450;32000;28000;18264;19586;19539;21907;23675;22225;19367;17484;21046;19988;21661;23402;28092;28092;27941;29351;37000;33000;22313;22000;21200;21200
-99;'352;Iceland;1873;Wood-based panels;5622;Import value;1000 USD;478;756;853;994;1431;1597;1678;1819;1119;1506;1704;2153;3178;4747;3546;2963;5882;6223;8344;9248;8572;9386;7282;7613;6853;6530;12571;12571;13867;13867;13867;12034;9470;9608;9173;10499;11434;9565;9177;13798;9372;7706;9857;11854;14858;15851;18903;15255;10907;10602;11069;12118;13333;16301;16301;21139;22530.23;26597;22686;24355;29776;39797;39797
-99;'352;Iceland;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1188;78;2881;1000;100;100;3167;3217;0;0;2;0;15;33;103;22;26;340;71;61;78;4;6;6;5;0;0;0;0;0;0;0
-99;'352;Iceland;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;59;980;366;60;60;930;2867;0;0;1;2;8;146;165;15;75;265;68;56;194;3;4;4;8;0;0;0;0;0;0;0
-99;'352;Iceland;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1640;Plywood and LVL;5616;Import quantity;m3;2200;4500;4200;2600;3200;3300;3600;2900;2100;2700;2900;3200;4000;5500;3000;3000;4600;3900;5400;4800;4300;5900;5000;5700;5300;5300;7400;7400;4800;4800;4800;4504;4209;4175;4700;3800;4800;4000;4050;5000;6000;5629;6242;7472;9022;10642;7769;8021;6781;7512;7843;8638;9211;12245;12245;8611;9383;10000;8000;5000;5000;5600;5600
-99;'352;Iceland;1640;Plywood and LVL;5622;Import value;1000 USD;308;482;467;386;533;693;745;751;397;489;593;692;1222;2180;1215;1015;2293;2079;3260;3144;2611;3333;2887;3064;2551;2550;5356;5356;5833;5833;5833;4371;3499;3479;3900;3550;3896;3480;2867;4451;4012;3800;4539;6111;8511;9477;8701;7442;4249;3507;3974;4227;4530;5654;5654;8111;7787.91;9806;7049;7093;10031;19898;19898
-99;'352;Iceland;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;72;2771;800;0;0;3000;3000;0;0;2;0;13;33;103;0;17;15;69;39;50;4;6;6;0;0;0;0;0;0;0;0
-99;'352;Iceland;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;57;886;223;0;0;836;2867;0;0;1;0;7;146;165;0;51;32;52;26;39;3;4;4;0;0;0;0;0;0;0;0
-99;'352;Iceland;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12
-99;'352;Iceland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16
-99;'352;Iceland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;1100;1800;3900;4800;5900;5000;4700;6600;7400;9200;11000;12800;11700;11700;17800;19200;21600;20900;20500;22200;18300;21600;22100;19700;15800;15800;23800;23800;23800;18274;17406;15118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;104;194;438;535;587;652;474;670;758;979;1369;2033;1771;1480;3160;3746;4650;5415;5161;5333;3862;4048;3795;3400;6215;6215;6774;6774;6774;5812;4390;4085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1080;6;110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;2;94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16100;16000;18500;15000;15000;19000;16000;6391;6905;6429;7504;7978;4763;1574;6357;9599;8594;9173;10163;10784;10784;7676;7914;15000;11497;7229;6427;8510;8510
-99;'352;Iceland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5239;4891;5480;4090;3629;4893;3581;1347;1854;1850;2345;2285;3086;1622;3204;3747;3728;4137;4702;5303;5303;4733;5218.34;6073;4952;5821;6154;8083;8083
-99;'352;Iceland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;0;0;22;9;9;1;1;21;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;0;0;94;0;0;0;0;0;0;0;0;15;24;24;15;5;140;0;0;0;2;0;0;0;0;0;0;0
-99;'352;Iceland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;182;103;101;30;5614;5850;1067;640;253;216;312;434;434;651;549;0;1503;1771;1573;490;490
-99;'352;Iceland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;78;50;56;15;2756;2028;446;253;111;111;122;241;241;309;310.98;0;539;635;625;530;530
-99;'352;Iceland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1874;Fibreboard;5616;Import quantity;m3;1200;2300;2200;3000;3100;2211;2317;2106;1790;2422;2211;2843;3054;3686;3475;3000;1100;980;900;1100;1300;1400;1200;1300;1300;1500;1900;1900;2200;2200;2200;3943;3887;4732;200;3200;3200;3900;5400;8000;6000;5860;6257;5535;5280;5025;4079;3922;3279;3295;3298;3634;3716;4629;4629;11003;11505;12000;12000;8313;9000;6600;6600
-99;'352;Iceland;1874;Fibreboard;5622;Import value;1000 USD;170;274;282;414;460;369;346;416;248;347;353;482;587;534;560;468;429;398;434;689;800;720;533;501;507;580;1000;1000;1260;1260;1260;1851;1581;2044;34;2058;2058;1995;2681;4454;1779;2452;3386;3843;3946;4074;4360;4163;3008;3095;3256;3643;3979;5103;5103;7986;9213;10718;10146;10806;12966;11286;11286
-99;'352;Iceland;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;167;217;0;0;0;0;2;0;0;0;0;316;1;21;7;0;0;0;5;0;0;0;0;0;0;0
-99;'352;Iceland;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;0;0;0;0;0;2;1;0;0;0;0;209;1;25;15;0;0;0;6;0;0;0;0;0;0;0
-99;'352;Iceland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1400;1200;1900;3000;2000;1610;2215;3714;3055;3160;865;733;851;876;890;906;904;1048;1048;1281;1192;8369;8369;4883;5285;1400;1400
-99;'352;Iceland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;818;721;1640;2835;959;1336;2118;2883;2637;2872;1331;1179;1062;1120;1321;1294;1239;1491;1491;1701;1622.12;1887;1786;1903;2283;2395;2395
-99;'352;Iceland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0
-99;'352;Iceland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0
-99;'352;Iceland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1800;2600;4000;3000;3250;3042;1821;2225;1865;2966;2906;2246;2201;1947;2457;2733;3417;3417;9456;10086;3631;3631;2118;2296;2200;2200
-99;'352;Iceland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1167;1167;1132;840;1307;569;893;1045;960;1309;1202;2783;2812;1824;1857;1832;2209;2619;3390;3390;6053;7360.77;8563;8106;8633;10359;3496;3496
-99;'352;Iceland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;167;217;0;0;0;0;2;0;0;0;0;316;1;21;7;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;0;0;0;0;0;2;1;0;0;0;0;209;1;25;15;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854;1721;1370;200;200;200;900;900;1000;1000;1000;1000;0;0;0;248;283;182;218;461;271;79;164;164;266;227;0;0;1312;1419;3000;3000
-99;'352;Iceland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;596;447;34;73;73;142;201;312;251;223;223;0;0;0;246;172;122;118;103;140;121;222;222;232;230.11;268;254;270;324;5395;5395
-99;'352;Iceland;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1200;2300;2200;3000;3100;2211;2317;2106;1790;2422;2211;2843;3054;3686;3475;3000;1100;980;900;1100;1300;1400;1200;1300;1300;1500;1900;1900;2200;2200;2200;3089;2166;3362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;170;274;282;414;460;369;346;416;248;347;353;482;587;534;560;468;429;398;434;689;800;720;533;501;507;580;1000;1000;1260;1260;1260;1598;985;1597;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-99;'352;Iceland;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;8000;8000;9000;12766;12281;12000;19151;20310;20310;20310;20310;25000;25000;25000;30000;30000;31000;25000;33000;24001;24001;28000;25000;25000
-99;'352;Iceland;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1456;117;77;30;100;300;413;548;0;2;9;7;20;22;64;4321;5;10;12;15;13;18;15;15;142;0;0;0;2;0;0;0
-99;'352;Iceland;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;35;38;6;21;21;48;48;0;6;17;8;19;16;43;17;12;25;30;43;31;56;39;39;175;0;0;0;15;0;0;0
-99;'352;Iceland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3781;3162;3697;6000;8000;8000;5632;2555;2;810;940;1010;1200;1200;1900;20310;21240;17485;19318;21816;21218;25359;27186;29439;30672;25000;32922;24001;25280;28000;25300;25300
-99;'352;Iceland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;157;224;746;748;748;176;48;78;131;164;179;240;316;431;1194;1784;856;1772;3145;1798;2006;2083;2090;2602;2166.43;5043;3676;722;2868;2237;2237
-99;'352;Iceland;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1321;55;55;0;0;0;0;0;0;0;5;7;19;22;44;4320;5;10;12;15;11;11;13;13;135;0;0;0;0;0;0;0
-99;'352;Iceland;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;33;35;0;0;0;0;0;0;0;4;8;17;16;40;11;12;25;29;43;25;26;30;30;143;0;0;0;0;0;0;0
-99;'352;Iceland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760;55;55;0;0;0;100;100;100;100;5;7;19;34;53;240;5;7;8;10;9;9;9;9;134;0;0;0;0;0;0;0
-99;'352;Iceland;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;33;35;0;0;0;0;0;0;0;4;8;17;35;59;52;12;22;18;28;20;18;19;19;141;0;0;0;0;0;0;0
-99;'352;Iceland;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;1;1;;;;;;;
-99;'352;Iceland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;91;;;;;;;
-99;'352;Iceland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;;;;;;;
-99;'352;Iceland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1321;55;55;0;0;0;0;0;0;0;5;7;19;21;40;0;0;7;8;10;9;8;9;9;43;0;0;0;0;0;0;0
-99;'352;Iceland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;33;35;0;0;0;0;0;0;0;4;8;17;14;31;0;0;16;18;28;20;16;17;17;70;0;0;0;0;0;0;0
-99;'352;Iceland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1314;12;10;0;0;0;0;0;0;0;5;7;18;21;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;7;8;0;0;0;0;0;0;0;4;8;13;14;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;4;0;0;0;0;0;0;0;0;0;1;0;0;0;0;7;8;10;9;8;9;9;43;;;;;;;
-99;'352;Iceland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;2;0;0;0;0;0;0;0;0;0;4;0;0;0;0;16;18;28;20;16;17;17;70;;;;;;;
-99;'352;Iceland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-99;'352;Iceland;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;0;0;0;0;0;100;100;100;100;0;0;0;13;12;240;5;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;0;0;0;0;0;0;0;0;0;0;0;0;21;28;52;12;5;0;0;0;2;1;1;0;0;0;0;0;0;0;0
-99;'352;Iceland;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;3;4320;5;3;4;5;2;3;4;4;1;0;0;0;0;0;0;0
-99;'352;Iceland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;9;11;12;8;11;15;5;10;12;12;2;0;0;0;0;0;0;0
-99;'352;Iceland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0;0;0;0;40;0;0;22;0;0;0;0;20;0;0;0;0;0;0;0
-99;'352;Iceland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;0;0;0;0;46;0;0;30;0;0;0;0;16;0;0;0;0;0;0;0
-99;'352;Iceland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;8000;8000;9000;12766;12281;12000;19151;20310;20310;20310;20310;25000;25000;25000;30000;30000;31000;25000;33000;24001;24001;28000;25000;25000
-99;'352;Iceland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;62;22;30;100;300;413;548;0;2;4;0;1;0;20;1;0;0;0;0;2;7;2;2;7;0;0;0;2;0;0;0
-99;'352;Iceland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;2;3;6;21;21;48;48;0;6;13;0;2;0;3;6;0;0;1;0;6;30;9;9;32;0;0;0;15;0;0;0
-99;'352;Iceland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3630;3162;3697;6000;8000;8000;5632;2555;2;810;940;1010;1200;1200;1900;20310;21240;17485;19318;21816;21218;25359;27186;29439;30672;25000;32922;24001;25280;28000;25300;25300
-99;'352;Iceland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;157;224;746;748;748;176;48;78;131;164;179;240;316;431;1194;1784;856;1772;3145;1798;2006;2083;2090;2602;2166.43;5043;3676;722;2868;2237;2237
-99;'352;Iceland;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1876;Paper and paperboard;5610;Import quantity;t;8700;9400;9900;10300;11300;11700;10100;9500;14800;16900;13100;14300;16100;18300;12100;12100;12824;15900;19300;19000;19800;17400;20700;18700;22100;25700;29700;29700;25700;25700;25700;14878;27068;31315;28400;25700;30800;27250;28190;34849;29360;31564;33870;35948;38639;39936;37769;32933;25456;27860;30505;27286;26372;28207;28207;24321;20715;37962;34963;33667;11596;15054;15054
-99;'352;Iceland;1876;Paper and paperboard;5622;Import value;1000 USD;1867;2047;2192;2552;2814;2712;2639;3429;3428;4200;3661;4042;5407;7931;7902;6593;7257;10106;13991;16309;16740;15037;15694;13468;15976;19500;32037;32037;29353;29353;29353;14354;26099;28351;27784;28737;31660;24964;26003;30818;23111;26183;28574;32526;35528;36841;37081;35398;25192;28437;33689;29294;29323;29583;29583;22072;20466.97;71220;68450;69727;13418;18970;18970
-99;'352;Iceland;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9702;24;418;418;800;800;0;0;2000;0;9;23;2;335;82;23;65;2;40;15;0;0;28;28;2;0;0;0;0;0;0;0
-99;'352;Iceland;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10837;38;361;361;855;855;0;0;232;1;7;50;3;155;86;27;8;9;31;85;7;9;87;87;11;0;0;0;0;0;0;0
-99;'352;Iceland;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;2042;Graphic papers;5610;Import quantity;t;2900;3100;3400;3500;3600;3900;4200;3700;3800;4900;4100;4500;4800;5300;4800;4800;6300;6400;7000;7200;7800;6500;7700;6600;8600;10800;12000;12000;9000;9000;9000;1778;14018;14188;11000;11400;15800;14900;15200;18709;17510;16784;19210;21508;27456;29744;26967;21801;14045;15493;16991;15910;15147;15697;15697;14145;11824;11695;9296;8000;4001;6579;6579
-99;'352;Iceland;2042;Graphic papers;5622;Import value;1000 USD;630;703;795;838;907;955;1063;1310;961;1327;1311;1539;1692;2813;3292;2750;4128;4768;5620;6406;6740;5190;5406;4348;5527;8000;13655;13655;9278;9278;9278;2282;13394;13270;12412;13385;15517;13230;15800;15918;13829;13924;16634;19560;25494;27561;25944;21353;13597;14626;17344;15631;15244;15160;15160;10995;9996.7;10511;8463;9793;2366;5602;5602
-99;'352;Iceland;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;149;149;100;100;0;0;2000;0;0;0;0;0;1;21;65;2;40;0;0;0;26;26;0;0;0;0;0;0;0;0
-99;'352;Iceland;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;156;156;94;94;;;232;0;0;0;1;0;1;24;3;7;29;1;4;8;34;34;1;0;0;0;0;0;0;0
-99;'352;Iceland;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1671;Newsprint;5610;Import quantity;t;1800;1900;2200;2000;2400;2600;2800;2300;2500;3100;2300;2800;2800;3300;3000;3000;4000;3500;4000;4000;4600;3900;5000;4100;5800;5400;5500;5500;4800;4800;4800;583;5289;5682;5800;6000;6400;6000;6300;7974;7260;7890;10708;12708;15477;18097;14006;8109;7422;6845;9125;8891;8246;9213;9213;8214;6000;8324;6617;5695;2848;4684;4684
-99;'352;Iceland;1671;Newsprint;5622;Import value;1000 USD;279;297;357;323;398;430;480;563;421;515;408;591;402;1075;1334;1114;1744;1745;2020;2200;2540;2034;2540;1853;2636;2400;3476;3476;3179;3179;3179;286;3133;3130;4210;4985;4203;3130;4944;4389;4236;5454;7361;8444;11125;13434;10456;5728;5425;4463;6996;6995;6149;6860;6860;4578;3532.2;5214;4198;4858;1173;2779;2779
-99;'352;Iceland;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2000;0;0;0;0;0;0;0;65;0;0;0;0;0;26;26;0;0;0;0;0;0;0;0
-99;'352;Iceland;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;0;0;0;0;0;0;0;3;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0
-99;'352;Iceland;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1674;Printing and writing papers;5610;Import quantity;t;1100;1200;1200;1500;1200;1300;1400;1400;1300;1800;1800;1700;2000;2000;1800;1800;2300;2900;3000;3200;3200;2600;2700;2500;2800;5400;6500;6500;4200;4200;4200;1195;8729;8506;5200;5400;9400;8900;8900;10735;10250;8894;8502;8800;11979;11647;12961;13692;6623;8648;7866;7019;6901;6484;6484;5931;5824;3371;2679;2305;1153;1895;1895
-99;'352;Iceland;1674;Printing and writing papers;5622;Import value;1000 USD;351;406;438;515;509;525;583;747;540;812;903;948;1290;1738;1958;1636;2384;3023;3600;4206;4200;3156;2866;2495;2891;5600;10179;10179;6099;6099;6099;1996;10261;10140;8202;8400;11314;10100;10856;11529;9593;8470;9273;11116;14369;14127;15488;15625;8172;10163;10348;8636;9095;8300;8300;6417;6464.51;5297;4265;4935;1193;2823;2823
-99;'352;Iceland;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;149;149;100;100;;;;;0;0;0;0;1;21;0;2;40;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;156;156;94;94;;;;;0;0;1;0;1;24;0;7;29;1;4;8;33;33;1;0;0;0;0;0;0;0
-99;'352;Iceland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;740;729;20;41;126;703;947;343;214;636;308;131;86;108;108;122;204;116;92;77;39;63;63
-99;'352;Iceland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491;567;619;60;140;168;773;1236;506;380;645;432;257;232;254;254;208;318.86;261;210;243;59;139;139
-99;'352;Iceland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;5;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2320;2210;2179;2285;2516;3147;2803;2573;2056;2097;2186;2076;2095;1972;1866;1866;2653;2539;1471;1169;1006;503;827;827
-99;'352;Iceland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2755;2526;2503;2875;3893;4327;3821;3663;3169;2829;2968;3093;2963;2899;2669;2669;2863;2763.88;2265;1824;2110;510;1207;1207
-99;'352;Iceland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;40;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;28;1;4;1;33;33;0;0;0;0;0;0;0;0
-99;'352;Iceland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;8900;7796;7300;5986;6197;6243;8706;8141;9441;11293;4312;5826;5482;4793;4843;4510;4510;3156;3081;1784;1418;1222;611;1005;1005
-99;'352;Iceland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10100;10856;8283;6500;5348;6338;7083;9874;9533;10589;11950;4963;6550;6823;5416;5964;5377;5377;3346;3381.76;2771;2231;2582;624;1477;1477
-99;'352;Iceland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;20;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;19;0;4;1;0;0;7;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1675;Other paper and paperboard;5610;Import quantity;t;5800;6300;6500;6800;7700;7800;5900;5800;11000;12000;9000;9800;11300;13000;7300;7300;6524;9500;12300;11800;12000;10900;13000;12100;13500;14900;17700;17700;16700;16700;16700;13100;13050;17127;17400;14300;15000;12350;12990;16140;11850;14780;14660;14440;11183;10192;10802;11132;11411;12367;13514;11376;11225;12510;12510;10176;8891;26267;25667;25667;7595;8475;8475
-99;'352;Iceland;1675;Other paper and paperboard;5622;Import value;1000 USD;1237;1344;1397;1714;1907;1757;1576;2119;2467;2873;2350;2503;3715;5118;4610;3843;3129;5338;8371;9903;10000;9847;10288;9120;10449;11500;18382;18382;20075;20075;20075;12072;12705;15081;15372;15352;16143;11734;10203;14900;9282;12259;11940;12966;10034;9280;11137;14045;11595;13811;16345;13663;14079;14423;14423;11077;10470.26;60709;59987;59934;11052;13368;13368
-99;'352;Iceland;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9698;15;269;269;700;700;0;0;0;0;9;23;2;335;81;2;0;0;0;15;0;0;2;2;2;0;0;0;0;0;0;0
-99;'352;Iceland;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10835;30;205;205;761;761;0;0;0;1;7;50;2;155;85;3;5;2;2;84;3;1;53;53;10;0;0;0;0;0;0;0
-99;'352;Iceland;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;1049;1217;1180;1184;1300;1387;1184;1136;1191;1421;1571;1482;1348;1418;1521;1643;1643;1745;1000;1000;1000;1000;1000;1880;1880
-99;'352;Iceland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1418;1037;1299;1280;1345;1728;2050;1578;1428;1644;2352;2173;2166;2136;2156;2163;2305;2305;2118;1675.43;1331;902;849;978;3294;3294
-99;'352;Iceland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;2;1;5;1;0;1;1;0;0;0;0;0;0;0;0
-99;'352;Iceland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10848;11404;13753;10120;11771;11302;10976;9215;8607;9599;9696;9835;10858;12157;9911;9676;10832;10832;8394;7684;25217;24607;24607;6579;6579;6579
-99;'352;Iceland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9911;8734;11803;7462;9296;8146;8633;7478;7161;9327;11390;9278;11327;13997;11060;11567;11711;11711;8544;8340.77;58870;58578;58578;9988;9988;9988
-99;'352;Iceland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;22;0;335;81;1;0;0;0;14;0;0;0;0;2;0;0;0;0;0;0;0
-99;'352;Iceland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;49;0;155;85;2;1;0;0;79;2;1;1;1;10;0;0;0;0;0;0;0
-99;'352;Iceland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304;7682;8659;7820;8225;9449;7291;6694;6315;6789;7098;7428;8039;9623;7693;6948;8744;8744;6180;5524;18148;17710;17710;4734;4734;4734
-99;'352;Iceland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3938;3252;4667;3683;4125;5615;4440;4210;4267;5205;5740;4581;5557;8102;5646;5555;6860;6860;4227;3996.82;28210;28070;28070;4786;4786;4786
-99;'352;Iceland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;8;0;0;0;0;0;0;0
-99;'352;Iceland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3039;3163;3792;2070;2814;1042;3169;2010;1885;1836;1954;1992;2458;2243;1985;2483;1776;1776;1875;1854;6082;5935;5935;1588;1588;1588
-99;'352;Iceland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5007;4706;5244;3232;4122;1160;2948;2041;1862;2183;4161;3732;4923;4969;4602;5142;3750;3750;3363;3323.41;23457;23341;23341;3980;3980;3980
-99;'352;Iceland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;158;80;0;0;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;151;84;0;1;0;0;78;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;550;1302;190;648;623;437;448;334;898;591;371;295;237;176;210;289;289;304;284;921;898;898;241;241;241
-99;'352;Iceland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;964;765;1892;434;983;1130;1120;1112;893;1735;1374;891;748;842;722;811;1045;1045;893;979.33;6912;6878;6878;1173;1173;1173
-99;'352;Iceland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;22;0;177;1;1;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;49;0;4;1;2;0;0;0;0;2;1;1;1;1;0;0;0;0;0;0;0
-99;'352;Iceland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9;0;40;84;188;79;63;73;76;53;44;66;54;57;35;23;23;35;22;66;64;64;16;16;16
-99;'352;Iceland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;0;113;66;241;125;115;139;204;115;74;99;84;90;59;56;56;61;41.2;291;289;289;49;49;49
-99;'352;Iceland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-99;'352;Iceland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-99;'352;Iceland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;537;1170;550;1825;2058;2077;784;449;12;15;5;27;9;47;28;35;35;37;207;50;60;60;16;16;16
-99;'352;Iceland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;432;1798;540;1618;2066;2283;978;691;166;303;144;318;212;447;349;407;407;415;454.06;508;507;507;86;86;86
-99;'352;Iceland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;2;0;0;0;0;0;0;0;0;0;2;2;0;0;0;0;0;0;0;0
-99;'352;Iceland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;2;0;0;0;3;0;1;0;0;0;51;51;0;0;0;0;0;0;0;0
-99;'352;Iceland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107512.52;137319;125841;125841;125841;125841;125841
-99;'352;Iceland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2232.97;3817;2979;2979;2979;2979;2979
-99;'352;Iceland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301.24;2224;1736;1736;1736;1736;1736
-99;'352;Iceland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931.73;1593;1243;1243;1243;1243;1243
-99;'352;Iceland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1368.09;1661;1872;1872;1872;1872;1872
-99;'352;Iceland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577.2;3421;2981;2981;2981;2981;2981
-99;'352;Iceland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26985.67;39113;41776;41776;41776;41776;41776
-99;'352;Iceland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-99;'352;Iceland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62668.19;64953;62485;62485;62485;62485;62485
-99;'352;Iceland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10022.9;21039;9086;9086;9086;9086;9086
-99;'352;Iceland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1657.5;3315;4662;4662;4662;4662;4662
-99;'352;Iceland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52128.43;64437;64437;64437;64437;64437;64437
-99;'352;Iceland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253.88;221;221;221;221;221;221
-99;'352;Iceland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3459.68;3801;3801;3801;3801;3801;3801
-99;'352;Iceland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12920.09;15631;15631;15631;15631;15631;15631
-99;'352;Iceland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25970.22;33268;33268;33268;33268;33268;33268
-99;'352;Iceland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-99;'352;Iceland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9524.57;11516;11516;11516;11516;11516;11516
-99;'352;Iceland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-100;'356;India;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7465927;8106282;7889002;5273945;7673187.44;9576403;8862915
-100;'356;India;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151724;2850764;3189886;2820677;4644627.87;4696837;4049534
-100;'356;India;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;35599;32476;27096;31206;33816;37876;27465;38071;48470;47590;57917;53113;49885;83781;84763;75252;117118;146325;188476;206111;235018;304225;204117;235403;233287;373910;341736;404564;367845;587318;597171;575841;293612;301699;478735;753888;697799;831170;825358;1011234;986472;1123604;1434885;2022433;2363168;2530642;3041511;3906195;3264574;4152716;5612315;5461106;5832499;6393225;5774970;5737003;6393288;6915337;6754422;4480125;6641906.44;8285692;7718417
-100;'356;India;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;8513;8458;7020;6786;4696;7278;8530;14614;15050;14819;12585;12801;34091;24760;22686;31622;27180;27180;26258;26258;14106;16822;16822;16822;15200;17145;17367;22864;29316;39338;39349;39937;16876;35396;37466;25001;36062;37607;68717;53695;75796;82935;128716;247136;280977;327385;321226;423536;367831;581669;577577;537942;683472;693780;607923;708708;837775;1242964;1237594;1143966;2139754.87;2061256;1459008
-100;'356;India;1861;Roundwood;5516;Production;m3;161367960;165228229;169054045;172825160;176856518;182775798;186926430;191173562;195528507;200115319;205723698;212936208;218088752;224541346;226255672;232144954;234571878;237867567;248389284;251560213;256167472;262716085;267070701;273952378;279749200;285168295;290660500;292360717;296256630;308348233;314405997;317104843;320435600;322364499;323449116;311740016;311888016;312270016;312782016;313183016;313881476;337654867;340405827;344169564;345846733;346844248;348282000;349716300;357174224;356955678;355625349;353490881;353383300;353897633;354489908;354429309;353221052;352380168;352110688;351016640;349927215;348838266;347750823
-100;'356;India;1861;Roundwood;5616;Import quantity;m3;16900;12100;7600;14800;31100;44800;34500;17900;11200;4700;5300;5300;13200;11500;5900;11200;7900;7900;41800;41800;22500;27200;27200;27200;27200;406400;867400;1037400;902400;1342008;772606;726419;272463;284651;355580;893600;1052400;1761300;2108600;2241500;2505200;2144000;3482250;3787136;3796868;3326769;4247855;4184275;4916259;5308463;6346146;6534450;6537064;6987070;5780440;5238074;4378563;4072663;4378146;2634075;4815421;4948106;4219084
-100;'356;India;1861;Roundwood;5622;Import value;1000 USD;2566;2271;1441;2240;1980;1046;712;549;378;194;211;211;997;1157;752;586;982;982;2355;2355;1899;3105;3105;3105;3105;30100;67200;101100;88100;237391;165642;208687;30570;38099;48754;108069;130231;186360;198831;392268;417245;400154;682968;830675;870594;803130;1093248;1243740;1125283;1328269;1804458;1948107;2003632;2015956;1523120;1233190;1111219;1022118;996628;580892;1039418;1060623;918695
-100;'356;India;1861;Roundwood;5916;Export quantity;m3;28700;26100;21666;25500;21000;20500;21700;24467;31900;26500;29400;29400;43200;28700;36500;39600;36200;36200;30400;30400;8200;9800;9800;9800;1300;2017;8890;46338;21710;42672;36736;3104;2314;5757;6367;18200;16700;400;400;3100;2800;5700;11753;8743;11371;17818;9403;12165;10021;5435;13015;15727;5914;11251;11097;16904;19265;6127;6405;6435;9923;25459;22709
-100;'356;India;1861;Roundwood;5922;Export value;1000 USD;6953;6802;5618;4641;3498;5181;5261;5872;9013;7839;9331;9331;22051;10733;14827;16793;13405;13405;14412;14412;3887;2459;2459;2459;324;336;1188;5109;2718;5663;4883;458;663;973;1005;1935;1810;131;131;539;331;1111;3271;1633;3235;5358;2141;3093;1877;1953;2602;2757;2235;4723;4766;20207;70119;54202;56252;5624;33287;8837;37940
-100;'356;India;1862;Roundwood, coniferous;5516;Production;m3;5428328;5594509;5767781;5918288;6080998;6235238;6392918;6554018;6716459;6986271;7200354;7480272;7715864;7990930;8120584;8380866;8490070;8647415;9032084;9198189;9411376;9684893;9897317;10189594;10452104;10614215;10778524;10827797;10944102;9337313;9508557;9580787;9670992;9718099;9740756;9518000;9233000;8838000;8542000;8542000;8444460;9603651;10121819;10109548;10165461;9754892;9784900;9813900;9842848;9847747;9827799;9836786;9846709;9814570;9789369;9765301;9729273;9695287;9664343;9631441;9599649;9566901;9534199
-100;'356;India;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1536220;1489380;1727870;1086664;2605286;2638112;2361018
-100;'356;India;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167011;163898;237327;131954;368142;374635;335266
-100;'356;India;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176;189;466;4906;6307;19784;693
-100;'356;India;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;108;364;615;515;2356;113
-100;'356;India;1863;Roundwood, non-coniferous;5516;Production;m3;155939632;159633720;163286264;166906872;170775520;176540560;180533512;184619544;188812048;193129048;198523344;205455936;210372888;216550416;218135088;223764088;226081808;229220152;239357200;242362024;246756096;253031192;257173384;263762784;269297096;274554080;279881976;281532920;285312528;299010920;304897440;307524056;310764608;312646400;313708360;302222016;302655016;303432016;304240016;304641016;305437016;328051216;330284008;334060016;335681272;337089356;338497100;339902400;347331376;347107931;345797550;343654095;343536591;344083063;344700539;344664008;343491779;342684881;342446345;341385199;340327566;339271365;338216624
-100;'356;India;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2842343;2583283;2650276;1547411;2210135;2309994;1858066
-100;'356;India;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944208;858220;759301;448938;671276;685988;583429
-100;'356;India;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18089;5938;5939;1529;3616;5675;22016
-100;'356;India;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69931;54094;55888;5009;32772;6481;37827
-100;'356;India;1864;Wood fuel;5516;Production;m3;154734960;158066229;161467045;164942160;168490518;172089798;175803430;179597562;183469507;187420319;192510698;198992208;203334752;208923346;209942672;215072954;216941878;219613567;229445284;231876213;235706472;241443085;244948701;250943378;255815200;261139295;266536500;268141717;271942630;276239233;281733997;283869843;286636600;288003499;288524116;277380016;277380016;277380016;277380016;277380016;277380016;300564047;302199007;303839344;305485093;306252248;307018000;307782300;308545224;309306678;308776349;308243881;307709300;307172633;306633908;305534309;304436052;303339168;302243688;301149640;300059215;298970266;297882823
-100;'356;India;1864;Wood fuel;5616;Import quantity;m3;1400;700;1600;1700;3700;30900;21700;11600;6200;3500;3900;3900;6600;4700;2000;7700;2500;2500;26400;26400;12700;7400;7400;7400;7400;7400;7400;7400;7400;7400;7400;;;0;0;0;0;0;9600;9600;0;0;0;52000;60000;79458;79458;13264;13264;8774;4796;7105;8218;113;250;2794;32;380;1376;207;172;113;84
-100;'356;India;1864;Wood fuel;5622;Import value;1000 USD;16;8;18;20;58;168;205;133;88;56;50;50;96;53;25;78;54;54;250;250;145;100;100;100;100;100;100;100;100;100;100;;;0;0;0;0;0;191;191;0;0;0;3587;3500;3400;3400;3228;3228;1540;1402;979;1223;30;118;313;15;108;890;39;50;39;21
-100;'356;India;1864;Wood fuel;5916;Export quantity;m3;300;500;166;100;400;400;300;67;900;100;500;500;100;500;600;200;4100;4100;;;;;;;;;;;;;;;;0;500;500;0;0;0;0;0;0;0;0;0;0;0;1163;1163;1803;143;2474;130;198;157;53;28;36;309;14;2694;249;609
-100;'356;India;1864;Wood fuel;5922;Export value;1000 USD;3;6;2;1;10;5;9;2;21;6;4;4;8;35;26;18;374;374;;;;;;;;;;;;;;;;0;28;28;0;0;0;0;0;0;0;0;0;0;0;115;115;337;64;841;134;28;114;41;25;3;234;10;14;19;72
-100;'356;India;1627;Wood fuel, coniferous;5516;Production;m3;4653328;4753509;4855781;4960288;5066998;5175238;5286918;5401018;5517459;5636271;5789354;5984272;6114864;6282930;6313584;6467866;6524070;6604415;6900084;6973189;7088376;7260893;7366317;7546594;7693104;7853215;8015524;8063797;8178102;8307313;8472557;8536787;8619992;8661099;8676756;8342000;8342000;8342000;8342000;8342000;8342000;9038831;9087999;9137328;9186821;9209892;9232900;9255900;9278848;9301747;9285799;9269786;9253709;9237570;9221369;9188301;9155273;9122287;9089343;9056441;9023649;8990901;8958199
-100;'356;India;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;380;100;64;100;112;18
-100;'356;India;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;108;61;21;28;39;4
-100;'356;India;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;25;30;9;2677;191;598
-100;'356;India;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;3;9;12;19;72
-100;'356;India;1628;Wood fuel, non-coniferous;5516;Production;m3;150081632;153312720;156611264;159981872;163423520;166914560;170516512;174196544;177952048;181784048;186721344;193007936;197219888;202640416;203629088;208605088;210417808;213009152;222545200;224903024;228618096;234182192;237582384;243396784;248122096;253286080;258520976;260077920;263764528;267931920;273261440;275333056;278016608;279342400;279847360;269038016;269038016;269038016;269038016;269038016;269038016;291525216;293111008;294702016;296298272;297042356;297785100;298526400;299266376;300004931;299490550;298974095;298455591;297935063;297412539;296346008;295280779;294216881;293154345;292093199;291035566;289979365;288924624
-100;'356;India;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1276;143;72;1;66
-100;'356;India;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829;18;22;0;17
-100;'356;India;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;279;5;17;58;11
-100;'356;India;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;231;1;2;0;0
-100;'356;India;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1400;700;1600;1700;3700;30900;21700;11600;6200;3500;3900;3900;6600;4700;2000;7700;2500;2500;26400;26400;12700;7400;7400;7400;7400;7400;7400;7400;7400;7400;7400;;;0;0;0;0;0;9600;9600;0;0;0;52000;60000;79458;79458;13264;13264;8774;4796;7105;8218;113;250;2794;;;;;;;
-100;'356;India;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;16;8;18;20;58;168;205;133;88;56;50;50;96;53;25;78;54;54;250;250;145;100;100;100;100;100;100;100;100;100;100;;;0;0;0;0;0;191;191;0;0;0;3587;3500;3400;3400;3228;3228;1540;1402;979;1223;30;118;313;;;;;;;
-100;'356;India;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;300;500;166;100;400;400;300;67;900;100;500;500;100;500;600;200;4100;4100;;;;;;;;;;;;;;;;0;500;500;0;0;0;0;0;0;0;0;0;0;0;1163;1163;1803;143;2474;130;198;157;53;;;;;;;
-100;'356;India;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;3;6;2;1;10;5;9;2;21;6;4;4;8;35;26;18;374;374;;;;;;;;;;;;;;;;0;28;28;0;0;0;0;0;0;0;0;0;0;0;115;115;337;64;841;134;28;114;41;;;;;;;
-100;'356;India;1865;Industrial roundwood;5516;Production;m3;6633000;7162000;7587000;7883000;8366000;10686000;11123000;11576000;12059000;12695000;13213000;13944000;14754000;15618000;16313000;17072000;17630000;18254000;18944000;19684000;20461000;21273000;22122000;23009000;23934000;24029000;24124000;24219000;24314000;32109000;32672000;33235000;33799000;34361000;34925000;34360000;34508000;34890000;35402000;35803000;36501460;37090820;38206820;40330220;40361640;40592000;41264000;41934000;48629000;47649000;46849000;45247000;45674000;46725000;47856000;48895000;48785000;49041000;49867000;49867000;49868000;49868000;49868000
-100;'356;India;1865;Industrial roundwood;5616;Import quantity;m3;15500;11400;6000;13100;27400;13900;12800;6300;5000;1200;1400;1400;6600;6800;3900;3500;5400;5400;15400;15400;9800;19800;19800;19800;19800;399000;860000;1030000;895000;1334608;765206;726419;272463;284651;355580;893600;1052400;1761300;2099000;2231900;2505200;2144000;3482250;3735136;3736868;3247311;4168397;4171011;4902995;5299689;6341350;6527345;6528846;6986957;5780190;5235280;4378531;4072283;4376770;2633868;4815249;4947993;4219000
-100;'356;India;1865;Industrial roundwood;5622;Import value;1000 USD;2550;2263;1423;2220;1922;878;507;416;290;138;161;161;901;1104;727;508;928;928;2105;2105;1754;3005;3005;3005;3005;30000;67100;101000;88000;237291;165542;208687;30570;38099;48754;108069;130231;186360;198640;392077;417245;400154;682968;827088;867094;799730;1089848;1240512;1122055;1326729;1803056;1947128;2002409;2015926;1523002;1232877;1111204;1022010;995738;580853;1039368;1060584;918674
-100;'356;India;1865;Industrial roundwood;5916;Export quantity;m3;28400;25600;21500;25400;20600;20100;21400;24400;31000;26400;28900;28900;43100;28200;35900;39400;32100;32100;30400;30400;8200;9800;9800;9800;1300;2017;8890;46338;21710;42672;36736;3104;2314;5757;5867;17700;16700;400;400;3100;2800;5700;11753;8743;11371;17818;9403;11002;8858;3632;12872;13253;5784;11053;10940;16851;19237;6091;6096;6421;7229;25210;22100
-100;'356;India;1865;Industrial roundwood;5922;Export value;1000 USD;6950;6796;5616;4640;3488;5176;5252;5870;8992;7833;9327;9327;22043;10698;14801;16775;13031;13031;14412;14412;3887;2459;2459;2459;324;336;1188;5109;2718;5663;4883;458;663;973;977;1907;1810;131;131;539;331;1111;3271;1633;3235;5358;2141;2978;1762;1616;2538;1916;2101;4695;4652;20166;70094;54199;56018;5614;33273;8818;37868
-100;'356;India;1866;Industrial roundwood, coniferous;5516;Production;m3;775000;841000;912000;958000;1014000;1060000;1106000;1153000;1199000;1350000;1411000;1496000;1601000;1708000;1807000;1913000;1966000;2043000;2132000;2225000;2323000;2424000;2531000;2643000;2759000;2761000;2763000;2764000;2766000;1030000;1036000;1044000;1051000;1057000;1064000;1176000;891000;496000;200000;200000;102460;564820;1033820;972220;978640;545000;552000;558000;564000;546000;542000;567000;593000;577000;568000;577000;574000;573000;575000;575000;576000;576000;576000
-100;'356;India;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75214;22644;23416;2032;971;6400;800;42400;351300;389000;280000;263200;473000;493000;401252;440776;493425;796337;741911;1027695;1372329;1813620;1675185;1760016;2302957;1826780;1884262;1536188;1489000;1727770;1086600;2605186;2638000;2361000
-100;'356;India;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7609;3708;2901;196;63;718;114;5686;12815;13095;10000;14819;23650;24150;24477;26887;35025;64876;61965;70609;122836;179276;165609;204703;250058;166982;185805;166996;163790;237266;131933;368114;374596;335262
-100;'356;India;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;90;200;1000;0;400;400;100;100;3000;2997;5337;4852;2046;103;282;1508;335;460;1830;1685;518;405;252;1148;164;436;4897;3630;19593;95
-100;'356;India;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;21;97;0;131;131;26;20;800;700;710;1200;500;39;69;105;29;57;270;683;159;116;63;163;106;361;606;503;2337;41
-100;'356;India;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75214;22644;23416;2032;971;6400;800;42400;351300;389000;280000;263200;473000;493000;401252;440776;493425;796337;741911;1027695;1372329;1813620;1675185;1760016;2302957;1826780;1884262;1536188;1489000;1727770;1086600;2605186;2638000;2361000
-100;'356;India;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7609;3708;2901;196;63;718;114;5686;12815;13095;10000;14819;23650;24150;24477;26887;35025;64876;61965;70609;122836;179276;165609;204703;250058;166982;185805;166996;163790;237266;131933;368114;374596;335262
-100;'356;India;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;90;200;1000;0;400;400;100;100;3000;2997;5337;4852;2046;103;282;1508;335;460;1830;1685;518;405;252;1148;164;436;4897;3630;19593;95
-100;'356;India;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;21;97;0;131;131;26;20;800;700;710;1200;500;39;69;105;29;57;270;683;159;116;63;163;106;361;606;503;2337;41
-100;'356;India;1867;Industrial roundwood, non-coniferous;5516;Production;m3;5858000;6321000;6675000;6925000;7352000;9626000;10017000;10423000;10860000;11345000;11802000;12448000;13153000;13910000;14506000;15159000;15664000;16211000;16812000;17459000;18138000;18849000;19591000;20366000;21175000;21268000;21361000;21455000;21548000;31079000;31636000;32191000;32748000;33304000;33861000;33184000;33617000;34394000;35202000;35603000;36399000;36526000;37173000;39358000;39383000;40047000;40712000;41376000;48065000;47103000;46307000;44680000;45081000;46148000;47288000;48318000;48211000;48468000;49292000;49292000;49292000;49292000;49292000
-100;'356;India;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1259394;742562;703003;270431;283680;349180;892800;1010000;1410000;1710000;1951900;2242000;1671000;2989250;3333884;3296092;2753886;3372060;3429100;3875300;3927360;4527730;4852160;4768830;4684000;3953410;3351018;2842343;2583283;2649000;1547268;2210063;2309993;1858000
-100;'356;India;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229682;161834;205786;30374;38036;48036;107955;124545;173545;185545;382077;402426;376504;658818;802611;840207;764705;1024972;1178547;1051446;1203893;1623780;1781519;1797706;1765868;1356020;1047072;944208;858220;758472;448920;671254;685988;583412
-100;'356;India;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42672;36736;3104;2310;5667;5667;16700;16700;0;0;3000;2700;2700;8756;3406;6519;15772;9300;10720;7350;3297;12412;11423;4099;10535;10535;16599;18089;5927;5660;1524;3599;5617;22005
-100;'356;India;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5663;4883;458;662;956;956;1810;1810;0;0;513;311;311;2571;923;2035;4858;2102;2909;1657;1587;2481;1646;1418;4536;4536;20103;69931;54093;55657;5008;32770;6481;37827
-100;'356;India;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172687;729693;693774;222006;255000;320500;868000;1000000;1400000;1700000;1942000;2041000;1561000;2776249;3119042;3117673;2659400;3208903;3246250;3692023;3760180;4226880;4490880;4355870;4152820;3609150;2990000;2640000;2520000;2340000;1380000;2014651;1405993;1745000
-100;'356;India;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221136;158557;203148;26704;35972;45972;105000;121000;170000;182000;380074;382000;360504;639220;776660;814144;749419;997232;1137908;1022495;1173778;1559000;1719423;1732460;1681892;1304152;997016;910638;799625;733359;421159;642782;431497;554910
-100;'356;India;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42672;36736;3104;2310;5667;5667;16700;16700;0;0;3000;2700;2700;8756;3406;6519;15772;9300;10590;7350;3281;12312;11223;4099;10535;10535;16599;18089;5927;5660;1524;3599;449;22005
-100;'356;India;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5663;4883;458;662;956;956;1810;1810;0;0;513;311;311;2571;923;2035;4858;2102;2855;1657;1580;2438;1613;1418;4536;4536;20103;69931;54093;55657;5008;32770;144;37827
-100;'356;India;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86707;12869;9229;48425;28680;28680;24800;10000;10000;10000;9900;201000;110000;213001;214842;178419;94486;163157;182850;183277;167180;300850;361280;412960;531180;344260;361018;202343;63283;309000;167268;195412;904000;113000
-100;'356;India;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8546;3277;2638;3670;2064;2064;2955;3545;3545;3545;2003;20426;16000;19598;25951;26063;15286;27740;40639;28951;30115;64780;62096;65246;83976;51868;50056;33570;58595;25113;27761;28472;254491;28502
-100;'356;India;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;0;16;100;200;0;0;0;0;0;0;0;0;0;5168;0
-100;'356;India;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;7;43;33;0;0;0;0;0;0;0;0;0;6337;0
-100;'356;India;1868;Sawlogs and veneer logs;5516;Production;m3;4010000;4475000;4830000;5065000;5245000;7490000;7860000;8245000;8648000;9163000;9598000;10054000;10531000;11032000;11556000;12104000;12679000;13281000;13892000;14551000;15242000;15966000;16724000;17518000;18350000;18350000;18350000;18350000;18350000;23410000;23718000;24021000;24325000;24625000;24924000;32272000;32984000;33691000;33590000;34901000;34440460;36013820;37104820;38788220;38805640;39011000;39656000;40300000;46968000;45962000;45136000;43534000;43961000;45012000;46143000;47182000;47072000;47328000;48154000;48154000;48155000;48155000;48155000
-100;'356;India;1868;Sawlogs and veneer logs;5616;Import quantity;m3;15500;11400;6000;13100;27400;13900;12800;6300;5000;1200;1400;1400;6600;6800;3900;3500;5400;5400;15400;15400;9800;19800;19800;19800;19800;399000;860000;1030000;895000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;2550;2263;1423;2220;1922;878;507;416;290;138;161;161;901;1104;727;508;928;928;2105;2105;1754;3005;3005;3005;3005;30000;67100;101000;88000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1868;Sawlogs and veneer logs;5916;Export quantity;m3;28400;25600;21500;25400;20600;20100;21400;24400;31000;26400;28900;28900;43100;28200;35900;39400;32100;32100;30400;30400;8200;9800;9800;9800;1300;2017;8890;46338;21710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;6950;6796;5616;4640;3488;5176;5252;5870;8992;7833;9327;9327;22043;10698;14801;16775;13031;13031;14412;14412;3887;2459;2459;2459;324;336;1188;5109;2718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;720000;785000;855000;900000;945000;990000;1035000;1080000;1125000;1265000;1325000;1388000;1454000;1523000;1595000;1670000;1750000;1832000;1920000;2012000;2108000;2208000;2313000;2423000;2538000;2538000;2538000;2538000;2538000;700000;700000;700000;700000;700000;700000;700000;400000;300000;200000;200000;85460;155820;615820;618220;620640;182000;182000;182000;182000;158000;148000;173000;199000;183000;174000;183000;180000;179000;181000;181000;182000;182000;182000
-100;'356;India;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;8400;6100;5200;9100;4800;4800;4800;4800;4800;4800;4800;4800;100;3100;2700;2000;3700;3700;2500;2500;2500;2500;2500;2500;300;40;0;11;156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;150;108;118;145;111;111;111;111;111;111;111;111;10;414;361;271;502;502;338;338;338;338;338;338;34;6;0;4;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3290000;3690000;3975000;4165000;4300000;6500000;6825000;7165000;7523000;7898000;8273000;8666000;9077000;9509000;9961000;10434000;10929000;11449000;11972000;12539000;13134000;13758000;14411000;15095000;15812000;15812000;15812000;15812000;15812000;22710000;23018000;23321000;23625000;23925000;24224000;31572000;32584000;33391000;33390000;34701000;34355000;35858000;36489000;38170000;38185000;38829000;39474000;40118000;46786000;45804000;44988000;43361000;43762000;44829000;45969000;46999000;46892000;47149000;47973000;47973000;47973000;47973000;47973000
-100;'356;India;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;15500;11400;6000;13100;27400;13900;12800;6300;5000;1200;1400;1400;6600;6800;3900;3500;5400;5400;15400;15400;9800;19800;19800;19800;19800;399000;860000;1030000;895000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;2550;2263;1423;2220;1922;878;507;416;290;138;161;161;901;1104;727;508;928;928;2105;2105;1754;3005;3005;3005;3005;30000;67100;101000;88000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;20000;19500;16300;16300;15800;15300;16600;19600;26200;21600;24100;24100;43000;25100;33200;37400;28400;28400;27900;27900;5700;7300;7300;7300;1000;1977;8890;46327;21554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;6800;6688;5498;4495;3377;5065;5141;5759;8881;7722;9216;9216;22033;10284;14440;16504;12529;12529;14074;14074;3549;2121;2121;2121;290;330;1188;5105;2696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950000;1725000;871000;1342000;694000;706000;1203000;1210000;1229000;1250000;1271000;1291000;1312000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000;1332000
-100;'356;India;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;322000;325000;271000;270000;274000;279000;284000;288000;293000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000;297000
-100;'356;India;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950000;1725000;871000;1325000;372000;381000;932000;940000;955000;971000;987000;1003000;1019000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000;1035000
-100;'356;India;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1870;Pulpwood and particles (1961-1997);5516;Production;m3;45000;50000;60000;60000;300000;310000;310000;310000;320000;370000;380000;580000;838000;1125000;1220000;1355000;1263000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1208000;1735000;1758000;1782000;1805000;1827000;1850000;1684000;1270000;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;10000;10000;10000;10000;20000;20000;20000;20000;20000;30000;30000;50000;88000;125000;150000;180000;152000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;208000;211000;214000;217000;219000;222000;290000;299000;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;35000;40000;50000;50000;280000;290000;290000;290000;300000;340000;350000;530000;750000;1000000;1070000;1175000;1111000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1063000;1527000;1547000;1568000;1588000;1608000;1628000;1394000;971000;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1871;Other industrial roundwood;5516;Production;m3;2578000;2637000;2697000;2758000;2821000;2886000;2953000;3021000;3091000;3162000;3235000;3310000;3385000;3461000;3537000;3613000;3688000;3765000;3844000;3925000;4011000;4099000;4190000;4283000;4376000;4471000;4566000;4661000;4756000;6964000;7196000;7432000;7669000;7909000;8151000;404000;254000;249000;87000;31000;719000;383000;396000;339000;346000;352000;358000;363000;370000;375000;381000;381000;381000;381000;381000;381000;381000;381000;381000;381000;381000;381000;381000
-100;'356;India;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;45000;46000;47000;48000;49000;50000;51000;53000;54000;55000;56000;58000;59000;60000;62000;63000;64000;66000;67000;68000;70000;71000;73000;75000;76000;78000;80000;81000;83000;122000;125000;130000;134000;138000;142000;186000;192000;196000;0;0;0;87000;93000;83000;88000;89000;91000;92000;94000;95000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000
-100;'356;India;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2533000;2591000;2650000;2710000;2772000;2836000;2902000;2968000;3037000;3107000;3179000;3252000;3326000;3401000;3475000;3550000;3624000;3699000;3777000;3857000;3941000;4028000;4117000;4208000;4300000;4393000;4486000;4580000;4673000;6842000;7071000;7302000;7535000;7771000;8009000;218000;62000;53000;87000;31000;719000;296000;303000;256000;258000;263000;267000;271000;276000;280000;284000;284000;284000;284000;284000;284000;284000;284000;284000;284000;284000;284000;284000
-100;'356;India;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1630;Wood charcoal;5510;Production;t;850747;871071;891472;912559;934146;956243;979663;1002118;1025821;1050184;1081019;1121153;1147350;1182057;1186819;1226718;1235721;1252352;1312296;1327534;1347193;1370675;1382914;1411324;1432278;1455208;1478462;1477345;1490404;1506677;1544508;1564040;1587514;1607276;1617047;1617870;1627989;1638663;1650548;1661119;1674258;2780000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000;2880000
-100;'356;India;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;0;0;0;0;0;0;300;200;200;200;600;1580;253;500;2013;3406;1664;2439;2383;11679;16023;18510;5657;1918;23684;11919;16308;16616;6585;6260
-100;'356;India;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;0;0;0;0;0;0;87;48;48;45;280;780;59;175;749;645;796;804;609;3199;6909;8888;735;628;12613;4787;4776;5926;8369;4071
-100;'356;India;1630;Wood charcoal;5910;Export quantity;t;;;;;;;800;100;100;200;100;100;100;100;100;7520;5400;5400;1000;1000;6000;2400;2400;2400;2400;2400;2400;2400;2400;2400;100;446;223;4981;4981;1100;1400;1400;1400;7000;5000;3000;7000;4178;5018;3300;6841;24206;20302;19587;30777;30078;30282;53558;28270;30219;32858;97358;107859;107194;224955;278159;182265
-100;'356;India;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;83;5;1;4;5;5;5;8;2;865;756;756;114;114;760;548;548;548;548;548;548;548;548;548;25;164;104;821;821;385;421;421;421;2223;1630;1672;2113;1753;2106;1325;2870;6584;6584;6951;16559;12327;12073;23314;9317;10139;13834;20469;28410;32263;45104;55597;38872
-100;'356;India;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2600;0;0;0;0;7587;11910;10678;8478;5969;5291;5064;4434;15001;324902;595336;681929;546255;259547;167377;55544;3749;5018;4084;64616
-100;'356;India;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;81;0;0;0;0;823;1169;1266;1027;1421;968;895;1661;4329;40848;65541;70460;56356;25818;17292;9185;442;543;791;11516
-100;'356;India;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;4700;0;0;0;0;329;100;100;100;1269;1161;1796;967;1014;206;476;402;104;802;398;727;483;249;640;984
-100;'356;India;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;367;0;0;0;0;19;8;8;8;405;267;1224;1920;1957;145;178;309;337;26;134;56;7;41;97;156
-100;'356;India;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;348;36;0;0;0;2300;0;0;0;0;387;1910;678;678;641;1000;1705;785;363;322722;591796;680000;531000;255907;161446;50840;138;91;68;57675
-100;'356;India;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;3;0;0;0;65;0;0;0;0;38;230;327;327;189;102;180;30;32;40435;64791;69877;54507;24888;16142;8609;137;90;98;10148
-100;'356;India;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;287;1300;274;0;0;0;0;0;0;0;0;0;0;0;281;418;349;159;28;166;197;123;0;802;31;6;5;58;554;7
-100;'356;India;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;20;65;13;0;0;0;0;0;0;0;0;0;0;0;130;24;272;10;105;139;130;261;0;26;23;1;2;9;40;0
-100;'356;India;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;77;68;0;300;300;300;300;0;0;0;0;7200;10000;10000;7800;5328;4291;3359;3649;14638;2180;3540;1929;15255;3640;5931;4704;3611;4927;4016;6941
-100;'356;India;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;2;0;10;17;17;16;0;0;0;0;785;939;939;700;1232;866;715;1631;4297;413;750;583;1849;930;1150;576;305;453;693;1368
-100;'356;India;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4427;8057;5304;5000;4800;3900;3900;4700;0;0;0;0;329;100;100;100;988;743;1447;808;986;40;279;279;104;0;367;721;478;191;86;977
-100;'356;India;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;265;172;235;217;279;279;367;0;0;0;0;19;8;8;8;275;243;952;1910;1852;6;48;48;337;0;111;55;5;32;57;156
-100;'356;India;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2665;804;328;306;306;306;4387;2985;11059.57;2630;2451
-100;'356;India;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;640;220;89;115;115;115;890;798;817;956;719
-100;'356;India;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;10;57;0;0;0;51;268;83;302;72
-100;'356;India;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;16;0;0;0;4;9;48;36;13
-100;'356;India;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2665;804;328;306;306;306;1193;625;1059.57;330;151
-100;'356;India;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;640;220;89;115;115;115;255;180;314;119;28
-100;'356;India;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;10;57;0;0;0;0;5;19;71;32
-100;'356;India;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;16;0;0;0;0;0;15;1;8
-100;'356;India;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3194;2360;10000;2300;2300
-100;'356;India;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;618;503;837;691
-100;'356;India;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;263;64;231;40
-100;'356;India;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;33;35;5
-100;'356;India;1872;Sawnwood;5516;Production;m3;1804000;2014000;2170000;2277000;2360000;3177000;3412000;3662000;3959000;4361000;4778000;5126000;5630000;6212000;6804000;7507000;8199000;8999000;10009000;10976000;12040000;13209000;14495000;15907000;17460000;17460000;17460000;17460000;17460000;15260000;15210000;15210000;15210000;15210000;15210000;15210000;15770000;15770000;15770000;15770000;18123660;20183460;20079930;20200000;20200000;26426000;26426000;26426000;26438000;25229000;25763000;25322000;24856000;25313000;25782000;25920000;25573000;23635000;23975000;23975000;23975000;23975000;23975000
-100;'356;India;1872;Sawnwood;5616;Import quantity;m3;12300;22800;14400;73600;21900;16300;17700;8000;1500;1500;1400;1400;1800;800;1500;1550;4000;4000;16900;16900;14500;4900;4900;4900;2100;71240;36768;57810;17518;18655;21220;17699;7586;6451;7400;17200;10000;15900;9000;9400;30000;76499;59954;94256;96031;71712;100916;106195;163357;233898;591954;539578;568492;565421;693490;749086;930168;1167390;1562147;1587805;1591000;2110429;1915000
-100;'356;India;1872;Sawnwood;5622;Import value;1000 USD;690;2260;611;1061;1106;796;896;451;185;216;331;331;324;207;338;340;534;534;2440;2440;2784;881;881;881;340;17671;11582;18192;3558;11650;9490;8556;2440;2496;2353;4506;3556;4758;3837;4269;5756;14145;11991;17433;22025;21859;25961;43139;37876;66839;159960;159013;183165;203123;226742;237425;331802;422360;469716;356118;391497;500538;451202
-100;'356;India;1872;Sawnwood;5916;Export quantity;m3;900;500;700;1800;400;400;1000;900;700;100;500;500;2900;3100;7600;17600;6200;6200;1800;1800;3400;1350;1350;1350;3350;10630;4093;4920;45026;36351;36351;5947;6126;7843;17000;27200;18000;13500;10000;10200;10000;7621;6751;14581;14745;17570;22958;59190;29510;22142;16643;76810;77787;32395;28494;24200;35130;31510;50373;4216;15336;9865;1505
-100;'356;India;1872;Sawnwood;5922;Export value;1000 USD;100;48;73;177;23;23;58;77;53;23;51;51;216;530;850;2055;1918;1918;640;640;696;198;198;198;1012;4177;2922;1564;15039;13329;13329;3130;2530;4231;5407;6359;7524;7194;4216;4858;4980;4357;6539;3979;4137;7106;9960;28729;13700;17600;15545;18708;31003;32011;30609;17928;21388;18356;34998;3349;5995;8724;7396
-100;'356;India;1632;Sawnwood, coniferous;5516;Production;m3;502000;567000;610000;638500;655000;663500;693500;668500;667000;673000;732000;741500;813000;905000;983000;1094500;1176000;1287000;1473000;1606000;1753000;1914000;2091000;2286000;2500000;2500000;2500000;2500000;2500000;300000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;123660;183460;79930;200000;200000;150000;150000;150000;162000;157000;134000;137000;156000;147000;145000;154000;286000;258000;190000;190000;190000;190000;190000
-100;'356;India;1632;Sawnwood, coniferous;5616;Import quantity;m3;1300;3500;3500;3500;1900;1300;700;2000;700;700;200;200;300;300;200;250;100;100;6500;6500;6500;800;800;800;1600;17282;2591;6774;2169;220;220;1367;6832;4444;5800;13200;7400;6600;5000;1700;18200;17000;15137;53201;28303;17829;55995;49704;72069;117242;301524;296220;301142;294020;375813;377322;409470;643759;874398;923000;592000;764678;611000
-100;'356;India;1632;Sawnwood, coniferous;5622;Import value;1000 USD;143;414;414;414;120;42;41;137;48;48;20;20;44;44;39;54;14;14;634;634;634;104;104;104;240;3018;472;892;449;43;43;348;1312;1002;1577;2149;1365;1200;842;302;1803;1446;1200;4320;4436;2234;6852;19000;11865;21738;69201;60725;71301;72623;85477;77749;97120;148677;176968;142142;136752;194707;155194
-100;'356;India;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;200;450;2650;5450;100;100;100;100;1150;1150;1150;1150;1150;1150;1150;1150;1150;1150;1150;852;719;649;300;600;1800;3500;0;200;200;321;262;1470;2745;706;5105;21829;1851;2467;2501;3206;707;7073;3690;434;370;1210;299;97;2922;1562;358
-100;'356;India;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;12;30;205;395;8;8;8;8;112;112;112;112;112;112;112;112;112;112;112;159;175;129;71;88;446;895;0;66;84;47;40;170;937;218;1120;8800;380;577;377;1412;394;1921;1207;137;80;237;116;243;761;675;330
-100;'356;India;1633;Sawnwood, non-coniferous;5516;Production;m3;1302000;1447000;1560000;1638500;1705000;2513500;2718500;2993500;3292000;3688000;4046000;4384500;4817000;5307000;5821000;6412500;7023000;7712000;8536000;9370000;10287000;11295000;12404000;13621000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;14960000;15520000;15520000;15520000;15520000;18000000;20000000;20000000;20000000;20000000;26276000;26276000;26276000;26276000;25072000;25629000;25185000;24700000;25166000;25637000;25766000;25287000;23377000;23785000;23785000;23785000;23785000;23785000
-100;'356;India;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11000;19300;10900;70100;20000;15000;17000;6000;800;800;1200;1200;1500;500;1300;1300;3900;3900;10400;10400;8000;4100;4100;4100;500;53958;34177;51036;15349;18435;21000;16332;754;2007;1600;4000;2600;9300;4000;7700;11800;59499;44817;41055;67728;53883;44921;56491;91288;116656;290430;243358;267350;271401;317677;371764;520698;523631;687749;664805;999000;1345751;1304000
-100;'356;India;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;547;1846;197;647;986;754;855;314;137;168;311;311;280;163;299;286;520;520;1806;1806;2150;777;777;777;100;14653;11110;17300;3109;11607;9447;8208;1128;1494;776;2357;2191;3558;2995;3967;3953;12699;10791;13113;17589;19625;19109;24139;26011;45101;90759;98288;111864;130500;141265;159676;234682;273683;292748;213976;254745;305831;296008
-100;'356;India;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;900;500;700;1800;400;400;1000;900;700;100;500;500;2700;2650;4950;12150;6100;6100;1700;1700;2250;200;200;200;2200;9480;2943;3770;43876;35201;35201;5095;5407;7194;16700;26600;16200;10000;10000;10000;9800;7300;6489;13111;12000;16864;17853;37361;27659;19675;14142;73604;77080;25322;24804;23766;34760;30300;50074;4119;12414;8303;1147
-100;'356;India;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;100;48;73;177;23;23;58;77;53;23;51;51;204;500;645;1660;1910;1910;632;632;584;86;86;86;900;4065;2810;1452;14927;13217;13217;2971;2355;4102;5336;6271;7078;6299;4216;4792;4896;4310;6499;3809;3200;6888;8840;19929;13320;17023;15168;17296;30609;30090;29402;17791;21308;18119;34882;3106;5234;8049;7066
-100;'356;India;1634;Veneer sheets;5516;Production;m3;;100;300;200;200;200;200;700;1700;2700;2700;1900;1500;7700;9300;10700;18600;4000;3700;3700;3700;3700;3700;3700;3700;3700;40000;41000;32000;27000;24000;18000;7000;7000;7000;15000;15000;15000;2000;15000;55000;234000;246000;258000;280000;280000;285000;295000;295000;295000;295000;295000;295000;295000;295000;295000;295000;295000;295000;291038;291038;291038;291038
-100;'356;India;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;114;230;1000;2000;3100;7400;4000;6500;6200;4181;4785;4190;7268;15841;17014;24876;26088;28644;77328;118455;164719;221179;378494;432148;414710;398538;425514;279545;452463;381449;555422
-100;'356;India;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651;193;779;443;1267;2174;4273;3067;4081;3020;3516;3452;3820;4991;13237;15696;22977;19955;26994;46067;56040;65983;91408;174016;199947;219131;233659;283015;169370;294843;270806;338906
-100;'356;India;1634;Veneer sheets;5916;Export quantity;m3;;100;300;200;200;200;200;500;700;800;100;100;1000;1900;800;800;4000;4000;3100;3100;3600;3100;3100;3100;3100;3359;2280;3260;3128;2478;2100;2950;928;1174;3700;1500;1500;3000;2400;2000;1000;2000;3535;5482;13155;19548;27047;17144;27244;7213;12514;9842;7469;6944;8826;8473;7664;15222;12502;33878;60350;52336;45877
-100;'356;India;1634;Veneer sheets;5922;Export value;1000 USD;;29;52;40;24;47;44;86;84;95;33;33;542;572;465;457;2231;2231;3128;3128;3632;4551;4551;4551;4551;5581;4981;4776;3409;4018;3036;2975;1894;2717;3064;3358;4163;4845;4491;4388;2190;4316;4401;7779;11735;16138;23120;19109;19184;16919;14122;18121;18236;16050;17193;18847;15405;19734;21030;19924;32058;37729;46062
-100;'356;India;1873;Wood-based panels;5516;Production;m3;83200;90800;110500;121400;131800;130700;132200;152300;159600;170300;185900;178400;169200;178600;162400;176000;187600;223500;233000;248000;353000;373000;380000;438000;438000;895000;438000;400500;365100;360300;354100;339000;340700;340700;388700;372700;156700;216000;283000;334000;590000;1734800;1900000;2082600;2283200;2539200;2825200;3146200;3855700;4388200;5236200;5840200;6405200;7424200;8134200;8928200;10346200;11676200;12286200;12516200;13186200;14286200;15386200
-100;'356;India;1873;Wood-based panels;5616;Import quantity;m3;300;286;200;221;221;126;167;205;147;159;405;405;200;200;300;300;400;400;200;200;200;200;200;200;200;9442;2848;4658;14781;9705;9300;6216;5930;11631;11500;17600;43600;75000;93900;79600;105700;79971;89479;146270;220241;274716;272017;142212;266725;346274;637417;568881;562295;484549;495888;526807;555823;612094;939357;649360;782020.57;591978;952101
-100;'356;India;1873;Wood-based panels;5622;Import value;1000 USD;70;103;96;178;106;61;43;46;26;30;238;238;119;70;49;69;146;146;87;87;87;87;87;87;87;2518;1132;1848;5091;5179;4162;3790;2819;6946;5163;7246;15395;19705;22642;13479;21482;25519;27015;45856;64963;83154;103887;88742;128752;181069;274959;232197;216322;198156;199582;200890;230243;270388;256596;162054;185639;232966;318449
-100;'356;India;1873;Wood-based panels;5916;Export quantity;m3;100;300;700;3200;573;1127;1027;5075;8575;15792;10091;10091;31413;36050;18148;36848;16800;16800;9700;9700;14900;12800;12800;12800;12800;9596;8977;14371;10642;12770;11625;17731;18079;42360;38100;18300;12300;8500;11600;9400;14800;31858;58618;50924;55851;54511;132242;79906;60552;78911;81132;95782;70328;96789;103319;113925;89004;92530;125297;141849;338951.19;382854;299723
-100;'356;India;1873;Wood-based panels;5922;Export value;1000 USD;20;56;123;392;33;185;148;555;1140;2164;1665;1665;6466;10328;5064;9943;6765;6765;4036;4036;3559;7449;7449;7449;7449;3988;5984;7475;4698;7087;7197;9182;8111;14826;14610;6504;5339;2793;4165;3682;4655;9980;14247;24103;26770;27243;31017;28792;29206;37480;31130;37451;37202;44695;48459;74306;62670;60914;69146;70596;120427.95;140557;103133
-100;'356;India;1640;Plywood and LVL;5516;Production;m3;73100;78500;93200;97000;100800;98800;101000;114000;112000;128000;144000;130000;126000;143000;127000;141000;149000;176000;180000;200000;280000;300000;300000;360000;360000;360000;360000;290000;255000;258000;250000;231000;245000;245000;293000;277000;61000;51000;55000;59000;315000;1600000;1760000;1936000;2130000;2386000;2672000;2993000;3352000;3754000;4205000;4709000;5274000;5907000;6617000;7411000;8300000;9500000;10000000;10000000;10600000;11200000;11900000
-100;'356;India;1640;Plywood and LVL;5616;Import quantity;m3;;86;100;121;21;21;100;100;100;100;200;200;100;100;100;100;300;300;100;100;100;100;100;100;100;9117;1590;2991;13081;8157;8300;5037;5214;10128;10300;16500;23400;26200;25000;12000;24000;24000;24203;20256;11990;38154;49617;60448;82693;169864;200091;128348;115673;121315;113756;118083;141475;169463;274144;278378;398782;276000;369000
-100;'356;India;1640;Plywood and LVL;5622;Import value;1000 USD;;37;43;52;9;9;10;10;10;10;79;79;35;16;16;16;116;116;57;57;57;57;57;57;57;2435;653;1285;4528;4479;3720;3374;2675;6496;5025;6857;10139;9226;8272;4698;8900;8900;9412;8720;7502;15559;30262;51549;53507;76977;106734;80918;76486;76756;77975;77572;96652;120391;108114;78743;101562;125163;166338
-100;'356;India;1640;Plywood and LVL;5916;Export quantity;m3;100;300;400;400;73;600;500;1500;5000;9900;6200;6200;22500;28700;15100;33300;14600;14600;7400;7400;6400;6000;6000;6000;6000;2172;7418;10445;9353;9389;8800;13227;15811;37941;33000;14800;10100;5600;9600;7600;8000;19000;44000;28910;32718;41093;118224;70222;45876;57559;49183;55971;32581;65110;63909;75940;62740;60282;69684;85152;157240;151474;37890
-100;'356;India;1640;Plywood and LVL;5922;Export value;1000 USD;20;56;92;137;25;126;103;317;875;1700;1320;1320;5091;7860;4495;9039;5930;5930;3084;3084;2862;3213;3213;3213;3213;1650;5259;6507;4433;4887;5477;7162;7205;13594;13666;5827;5178;2347;3870;3412;3420;8000;12000;18259;20784;25114;28788;20454;16420;27455;18680;25537;22548;30924;34513;52322;39265;36324;33411;34175;64547;73478;33447
-100;'356;India;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;3878
-100;'356;India;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;2314
-100;'356;India;1646;Particle board and OSB (1961-1994);5516;Production;m3;1300;1200;6000;10500;12500;10900;12000;12500;15200;11900;13700;15000;13200;8600;10800;13000;13600;15500;21000;28000;31000;28000;30000;32000;32000;32000;32000;55700;54700;53200;58700;60000;60000;60000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;100;100;100;100;200;200;100;100;100;100;100;100;100;100;100;325;1258;1667;1700;1548;1000;510;581;1241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;84;84;84;54;33;53;30;30;30;30;30;30;30;30;30;83;479;563;563;700;442;282;101;338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;100;100;100;100;100;700;400;100;600;800;800;800;800;8000;6300;6300;6300;6300;7284;884;2939;1204;2856;2300;2837;410;494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;12;27;41;25;25;301;402;103;438;519;519;519;519;519;3889;3889;3889;3889;2248;505;667;242;2036;1556;1298;104;119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;60000;60000;53000;98000;143000;143000;26000;25000;24200;23500;23500;23500;23500;374000;348000;348000;348000;348000;724000;724000;724000;1070000;1140000;1200000;1280000;1100000;1300000;1400000
-100;'356;India;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;600;8700;12400;30000;28700;29000;18693;18302;40343;81509;81509;87200;32322;81862;73816;174002;176213;175973;139449;155512;193532;143366;143366;287373;183661;230826.18;113352;133639
-100;'356;India;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;134;1808;1736;4528;4104;4320;7616;7477;16621;26729;26729;39652;16021;31939;40311;81048;57083;43457;33523;33942;34121;26813;26813;43821;28560;24559.37;28663;27164
-100;'356;India;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2700;200;2300;1000;1300;2000;2300;3179;3999;4818;4818;4818;1555;2092;2536;1022;1056;531;1049;4952;3045;1589;1589;6450;5118;13583.54;21246;14026
-100;'356;India;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;630;44;334;118;221;417;280;347;630;500;500;500;2101;2424;1515;1042;742;1037;1712;2154;3696;3436;3436;4468;3996;7305.24;10105;6542
-100;'356;India;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6632;7698;4381;13052;1923;407;811;1488;4414;2407;2772;1953;1298;901.46;1715;2514
-100;'356;India;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365;2027;1922;2718;2081;205;234;361;659;660;2145;494;403;285;592;626
-100;'356;India;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;29;47;31;3;5;32;0;0;31;320;16;25;35;204;110
-100;'356;India;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;31;43;54;11;7;80;0;0;40;213;8;9;35;88;59
-100;'356;India;1874;Fibreboard;5516;Production;m3;8800;11100;11300;13900;18500;21000;19200;25800;32400;30400;28200;33400;30000;27000;24600;22000;25000;32000;32000;20000;42000;45000;50000;46000;46000;503000;46000;54800;55400;49100;45400;48000;35700;35700;35700;35700;35700;112000;130000;132000;132000;108800;115000;122400;129700;129700;129700;129700;129700;286200;683200;783200;783200;793200;793200;793200;976200;1036200;1086200;1236200;1486200;1786200;2086200
-100;'356;India;1874;Fibreboard;5616;Import quantity;m3;300;200;100;100;200;105;67;105;47;59;105;105;;;;;;;;;;;;;;;;;;;;669;135;262;800;500;11500;36400;38900;38900;52700;37278;46974;85671;126742;155053;135200;42810;94472;98213;250272;262397;270242;222974;225132;210778;268575;296493;375887;186023;151510.93;200911;446948
-100;'356;India;1874;Fibreboard;5622;Import value;1000 USD;70;66;53;126;97;52;33;36;16;20;75;75;;;;;;;;;;;;;;;;;;;;134;43;112;87;255;3448;8743;9842;4677;8262;9003;10126;20515;30732;40866;33973;18807;41279;61859;84459;92115;96174;87643;87304;88538;106118;121039;104167;54348;59232.63;78548;124321
-100;'356;India;1874;Fibreboard;5916;Export quantity;m3;;;300;2800;500;527;527;3475;3475;5792;3791;3791;8213;6950;2948;2948;1400;1400;1500;1500;500;500;500;500;500;140;675;987;85;525;525;1667;1858;3925;2700;800;2000;600;1000;500;4800;10558;11439;18015;18315;8600;9200;8026;12555;18769;30896;38752;37211;30598;34458;34940;24644;30339;49147;51554;168092.65;209930;247697
-100;'356;India;1874;Fibreboard;5922;Export value;1000 USD;;;31;255;8;59;45;226;238;423;320;320;1074;2066;466;466;316;316;433;433;178;347;347;347;347;90;220;301;23;164;164;722;802;1113;274;47;117;112;177;49;818;1700;1900;5214;5486;1629;1729;6091;10331;8467;11354;11161;13610;11979;11792;18288;19929;20941;31259;32416;48540.71;56886;63085
-100;'356;India;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32700;32700;32700;48000;86000;83000;83000;65000;70000;76400;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200;83200
-100;'356;India;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;7500;7500;11000;3400;11100;15616;19687;26164;32947;43500;55000;14496;20647;18645;38047;38837;34636;37985;39602;37236;37654;48939;47696;27720;34393.64;37205;64395
-100;'356;India;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;2380;2380;3561;1089;3196;5052;6040;9276;17901;25400;23073;5905;13212;14102;20391;24131;23848;26076;25676;22283;22711;29637;26246;14344;21078.46;23265;30568
-100;'356;India;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993;1637;1391;42;55;549;778;1066;845;1315;3186;3046;2668;6792;5463;5692
-100;'356;India;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223;1892;1000;138;139;1823;2431;2316;2351;2295;3190;4679;3526;4946;4682;6011
-100;'356;India;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;41000;46000;46000;40800;42000;43000;43500;43500;43500;43500;43500;200000;597000;697000;697000;707000;707000;707000;890000;950000;1000000;1150000;1400000;1700000;2000000
-100;'356;India;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2400;23400;24000;28500;32000;11662;7287;28407;44795;70253;42700;11692;68775;70450;182438;193776;224564;171466;178000;164454;221175;236606;288202;136557;85978.89;134953;350126
-100;'356;India;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;822;5707;5925;3122;4617;2874;1800;3865;6357;10094;6000;5924;24849;42527;57841;60341;68191;56087;56773;61453;77103;83334;71165;35367;30718.56;48014;86819
-100;'356;India;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1300;1900;4315;4315;1600;1600;3163;736;1378;1077;702;132;201;232;4431;2901;4081;21211;19363;107540;137937;177435
-100;'356;India;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;700;900;2000;2000;429;429;2054;723;810;2531;1257;306;350;356;6517;7221;6412;17160;17926;28777;35270;40761
-100;'356;India;1650;Other fibreboard;5516;Production;m3;800;1600;2000;1500;2000;4000;7200;7600;8400;7200;7200;6400;6000;4400;7600;4000;5600;2000;2000;1000;3000;3000;3000;3000;3000;460000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-100;'356;India;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;3;171;800;200;1600;5500;3900;7000;9600;10000;20000;31100;49000;41300;37500;16622;5050;9118;29787;29784;11042;13523;7530;9088;9746;10948;39989;21746;31138.4;28753;32427
-100;'356;India;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;72;87;36;246;656;356;466;449;1077;2286;7374;6474;5372;4900;6978;3218;5230;6227;7643;4135;5480;4855;4802;6304;8068;6756;4637;7435.62;7269;6934
-100;'356;India;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;1147;338;2700;800;2000;600;1000;500;4800;9258;9539;13700;14000;7000;7600;3870;10182;16000;29777;37995;36530;29619;33160;29664;20428;23072;24890;29523;53760.65;66530;64570
-100;'356;India;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;538;233;274;47;117;112;177;49;818;1000;1000;3214;3486;1200;1300;2814;7716;6657;8685;9765;11481;9198;9120;9420;10413;11339;9420;10964;14817.7;16934;16313
-100;'356;India;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;8000;9500;9300;12400;16500;17000;12000;18200;24000;23200;21000;27000;24000;22600;17000;18000;19400;30000;30000;19000;39000;42000;47000;43000;43000;43000;43000;51800;52400;46100;42400;45000;32700;32700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;200;100;100;200;105;67;105;47;59;105;105;;;;;;;;;;;;;;;;;;;;642;132;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;70;66;53;126;97;52;33;36;16;20;75;75;;;;;;;;;;;;;;;;;;;;125;41;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;300;2800;500;527;527;3475;3475;5792;3791;3791;8213;6950;2948;2948;1400;1400;1500;1500;500;500;500;500;500;140;675;987;85;525;525;465;711;3587;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;31;255;8;59;45;226;238;423;320;320;1074;2066;466;466;316;316;433;433;178;347;347;347;347;90;220;301;23;164;164;207;264;880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1879;Total fibre furnish;5510;Production;t;308000;319500;333500;373200;518800;575000;625000;645000;677000;768000;790000;830000;835000;910000;959000;1039700;1050700;1250000;1315000;1040000;1127000;1226000;1435000;1335000;1485000;1746000;1839000;1908000;1961000;1977000;2112000;2422000;2519000;2231000;2270000;2340000;2673000;2903000;3293000;3451000;3615000;4018900;4402700;5067400;5547900;5727900;5927900;6147900;6407900;6771300;6771600;6771600;7581300;9586300;9976300;9826800;9826800;9826800;9826800;9826800;9826800;9826800;9826800
-100;'356;India;1879;Total fibre furnish;5610;Import quantity;t;6200;2200;4100;5300;3000;1200;1500;49000;50300;44800;38000;38000;22800;19100;15800;6000;16200;14673;36404;39200;34000;63800;96800;221800;271800;490431;297842;288219;293937;461685;589540;403877;372682;393639;372100;499200;620300;843700;1006900;1064300;1402400;1440916;1582935;1784397;2120479;2228750;2150403;2172060;2656335;2632061;2808256;3107964;3370529;3922126;3927645;4112350;4264853;7388111;7595289;6956369;8232797.55;8175760;9482951
-100;'356;India;1879;Total fibre furnish;5622;Import value;1000 USD;1173;421;689;739;484;174;308;9501;10230;10244;9380;9380;6110;7037;7084;2509;6946;6483;15434;16269;14603;29269;30631;48331;49156;155943;88205;87704;69765;118558;169057;136895;78408;99245;145813;129893;142613;137816;164615;176113;202506;254223;286867;401269;490961;506467;652233;761842;641363;864849;1120049;1053417;1149467;1332137;1220472;1170199;1418219;2086829;1924670;1497314;2617338.99;3234789;2583458
-100;'356;India;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609;1376;1232;5090;3000;3300;1400;1900;16800;25500;25500;25500;16280;15828;4995;4995;23920;6290;6258;1132;9501;1700;5611;14500;13976;2993;10445;5165;2495;9776.82;3355;4566
-100;'356;India;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;929;915;4039;1854;2178;1598;1478;12125;14791;14791;14791;8746;8544;2958;2958;13428;3518;2723;1830;4519;1134;4682;11121;10500;2139;7042;2851;1245;3657.34;1515;2930
-100;'356;India;1878;Pulp for paper;5510;Production;t;308000;319500;333500;373200;518800;575000;625000;645000;677000;728000;750000;790000;785000;860000;904000;958700;969700;1100000;1115000;840000;827000;876000;1085000;1137000;1258000;1446000;1539000;1608000;1658000;1750000;1835000;1926000;1988000;1841000;1870000;1870000;2123000;2263000;2543000;2601000;2665000;2948900;3212700;3727400;4047900;4047900;4047900;4047900;4047900;4131300;4131600;4131600;4681300;5986300;6276300;6126800;6126800;6126800;6126800;6126800;6126800;6126800;6126800
-100;'356;India;1878;Pulp for paper;5610;Import quantity;t;6200;2200;4100;5300;3000;1200;1500;49000;50300;44800;38000;38000;22800;19100;15800;6000;14500;14500;36200;36200;17000;46800;46800;46800;46800;194925;88551;50840;68487;76485;204340;152039;172682;171987;174200;264600;261300;258700;192900;145300;206400;240916;258935;369858;362280;507250;368226;432441;494650;669078;729155;799157;839362;853177;838459;927231;980166;972606;1042946;961929;1206029.55;1476431;1639285
-100;'356;India;1878;Pulp for paper;5622;Import value;1000 USD;1173;421;689;739;484;174;308;9501;10230;10244;9380;9380;6110;7037;7084;2509;6462;6462;15366;15366;9515;24181;24181;24181;24181;81076;38054;28035;33645;37647;103196;84318;49408;67430;108984;96700;101094;85622;82873;79421;86449;104664;111741;176713;187534;242267;244934;319943;258552;354301;509356;505289;544582;583810;537654;512815;617848;755429;685248;533463;827411.99;1281303;1162709
-100;'356;India;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;1045;1045;4490;2400;2700;1300;1900;16800;25500;25500;25500;13594;13574;4698;4698;20989;3779;1764;953;2649;1675;5488;14033;13543;2811;10263;4349;2386;6272.39;3038;4351
-100;'356;India;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;862;895;3927;1803;2127;1583;1478;12125;14791;14791;14791;7564;7503;2863;2863;12471;2197;1650;1669;2909;1079;4642;10993;10200;2052;6955;2666;1183;2181;1461;2856
-100;'356;India;1875;Wood pulp;5510;Production;t;18000;19500;23500;23200;68800;75000;75000;75000;77000;88000;138900;214600;269600;350000;360000;408700;401700;479000;483000;483000;513000;553000;768000;799000;777000;885000;927000;956000;975000;989000;986000;987000;1147000;1196000;1205000;1205000;1448000;1498000;1558000;1476000;1487000;1604900;1746700;2129200;2307600;2307600;2307600;2307600;2307600;2400000;2400300;2400300;2675300;3330300;3470300;3361800;3361800;3361800;3361800;3361800;3361800;3361800;3361800
-100;'356;India;1875;Wood pulp;5610;Import quantity;t;6200;2200;4100;5300;14200;16200;12400;68100;79200;66500;51300;51300;41800;31700;39100;13800;45400;45400;108000;108000;28600;66800;66800;66800;66800;142696;147037;80104;81054;154937;283840;176498;216486;194934;304400;313300;296500;305500;250200;193200;255000;324305;350079;509432;467743;620555;458426;530496;661231;799690;869149;975736;1011709;1159301;1282102;1431314;1550219;1480946;1607680;1386805;1876648.91;2272071;2451070
-100;'356;India;1875;Wood pulp;5622;Import value;1000 USD;1173;421;689;739;3153;3918;2711;13555;16575;15589;12721;12721;11209;11792;20190;7188;25563;25563;51001;51001;17565;39397;39397;39397;39397;58463;69774;55247;48553;85388;142653;100767;74565;80421;219484;133233;121858;114866;111254;108420;115854;157964;171972;276096;268433;312136;325290;418890;388004;476050;686489;722222;744842;893609;925369;963403;1146760;1235075;1194297;839638;1418477.46;2041073;1930926
-100;'356;India;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;396;384;3290;1500;1500;100;1200;16000;25000;25000;25000;13552;13552;4592;4592;21088;3478;2710;830;2387;1651;4997;12700;11031;1690;6221;2066;670;118;435;28
-100;'356;India;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;166;186;2517;596;596;52;612;11135;14226;14226;14226;7456;7456;2740;2740;12444;1648;2441;831;1772;1024;4397;10203;7828;1254;4872;1624;398;52;121;30
-100;'356;India;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672000;672000;672000;672000;672000;672000;672000
-100;'356;India;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227618;285104;300114;293591;512192.5;529526;481668
-100;'356;India;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127107;188214;164453;141957;298127.71;396781;329913
-100;'356;India;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;6;0;431;0
-100;'356;India;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;30;0;112;0
-100;'356;India;1654;Mechanical wood pulp (1961-2016);5510;Production;t;18000;19500;23500;23200;18800;25000;25000;25000;27000;28000;30000;30000;35000;30000;20000;22700;24700;25000;25000;25000;40000;60000;125000;127000;132000;180000;193000;198000;210000;204000;198000;163000;210000;222000;223000;223000;223000;223000;223000;275000;275000;298700;350000;409400;479400;479400;479400;479400;479400;504000;504000;504000;504000;504000;504000;504000;;;;;;;
-100;'356;India;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;6200;2200;4100;5300;3000;1200;1500;2000;3100;6000;5800;5800;600;1000;1100;1300;9100;9100;16600;16600;7000;24200;24200;24200;24200;108780;58421;22147;24565;44840;44840;22483;16848;25890;9800;9800;2100;23300;5200;4500;11100;29000;35638;35638;19550;4000;4000;5422;15346;24624;7950;1194;5291;2105;1544;1099;;;;;;;
-100;'356;India;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1173;421;689;739;484;174;308;504;766;1326;1532;1532;171;374;577;632;3835;3835;7542;7542;3833;11032;11032;11032;11032;39296;21819;10859;7800;18365;18365;9341;3627;7186;4709;4709;620;5991;1986;1755;4000;12289;15462;15462;10696;2000;2000;3757;7103;13064;4772;958;3276;1630;1106;741;;;;;;;
-100;'356;India;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;9;32;25;18;6;14;1;;;;;;;
-100;'356;India;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;48;72;14;6;14;5;;;;;;;
-100;'356;India;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;6000;10000;10000;25000;25000;25000;40000;60000;75000;77000;;;;;;;;;;0;0;0;0;0;0;71000;72000;101300;120000;141000;166400;166400;166400;166400;166400;168000;168000;168000;168000;168000;168000;168000;;;;;;;
-100;'356;India;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9987;36392;42464;66400;52000;37600;46000;38000;20400;44800;36000;58493;58493;39199;119000;45000;40895;19880;52418;67305;123872;75854;137662;119867;143595;;;;;;;
-100;'356;India;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4464;7981;13778;36592;13602;10276;11315;14656;10988;18962;14972;23000;23000;18254;61300;23832;26838;9048;25548;37837;71143;43365;81855;61066;62185;;;;;;;
-100;'356;India;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;0;0;0;0;0;0;;;;;;;
-100;'356;India;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;0;0;0;0;0;0;;;;;;;
-100;'356;India;1656;Chemical wood pulp;5510;Production;t;;;;;50000;50000;50000;50000;50000;60000;60000;100000;150000;210000;228000;250000;240000;290000;290000;290000;290000;290000;393000;420000;485000;545000;574000;598000;605000;625000;628000;664000;682000;719000;727000;727000;970000;1020000;1080000;875000;885000;949900;1021700;1323800;1406800;1406800;1406800;1406800;1406800;1464000;1464300;1464300;1739300;2394300;2534300;2434800;2434800;2434800;2434800;2434800;2434800;2434800;2434800
-100;'356;India;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;47000;47200;37900;32000;32000;22000;17100;14600;4600;5300;5300;18500;18500;8900;21500;21500;21500;21500;21500;21500;21500;21500;21500;150400;109454;117676;102253;96400;202300;221200;189000;141000;118300;149100;174516;163404;274284;300646;370755;308926;380778;458410;589576;645531;648940;724001;692381;713458;778620;748725;683618;737078;664483;688475.72;943659;1152489
-100;'356;India;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;8997;9464;8688;7811;7811;5902;6213;6458;1828;2578;2578;7341;7341;5199;12666;12666;12666;12666;12666;12666;12666;12666;12666;80043;65356;37190;45772;66683;78096;89953;68071;61351;65677;62892;76808;72684;136802;156251;167536;210302;282634;238762;310936;460852;417323;476886;485053;471545;446297;485742;562733;513706;386872;522487.34;878772;823536
-100;'356;India;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;396;384;3290;1500;1500;100;1200;16000;25000;25000;25000;13552;13552;4592;4592;20316;3219;1469;795;2359;1629;4991;12686;11029;1689;6220;2046;664;118;4;28
-100;'356;India;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;166;186;2517;596;596;52;612;11135;14226;14226;14226;7456;7456;2740;2740;11670;1429;1189;768;1685;1004;4391;10189;7822;1253;4864;1594;367;52;9;30
-100;'356;India;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;50000;50000;50000;50000;50000;60000;60000;100000;100000;105000;114000;125000;120000;145000;145000;145000;145000;145000;193000;200000;112000;123000;130000;137000;140000;144000;151000;152000;155000;163000;165000;165000;210000;220000;230000;195000;195000;190000;204300;204300;204300;204300;204300;204300;204300;204000;204300;204300;204300;204300;204300;204300;204300;204300;204300;204300;204300;204300;204300
-100;'356;India;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;700;3100;2300;300;300;300;300;300;200;200;200;3600;3600;1300;1100;1100;1100;1100;1100;1100;1100;1100;1100;18500;14437;14063;21563;9800;21300;26700;16000;12000;11100;4100;15179;9680;19218;25955;55500;26500;33625;29184;42461;35928;39109;43708;44277;38402;40437;37482;39310;46620;32754;45393.16;69180;61601
-100;'356;India;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;117;507;524;58;58;58;121;121;103;103;103;1270;1270;619;613;613;613;613;613;613;613;613;613;14533;8548;4521;8162;5909;8965;10811;5632;4447;5208;1821;6552;4549;9427;12931;21633;20649;26303;21323;22785;34418;33507;38388;44807;37897;38999;34912;43937;48527;34586;49612.77;75804;60570
-100;'356;India;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;8;8;8;8;78;3990;3659;4419;730;730;0;11;13;2;0
-100;'356;India;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;11;11;11;71;3036;2367;2877;528;528;1;30;11;4;0
-100;'356;India;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;50000;105000;114000;125000;120000;145000;145000;145000;145000;145000;200000;220000;373000;422000;444000;461000;465000;481000;477000;512000;527000;556000;562000;562000;760000;800000;850000;660000;670000;740900;796900;1099000;1182000;1182000;1182000;1182000;1182000;1240000;1240000;1240000;1515000;2170000;2310000;2210000;2210000;2210000;2210000;2210000;2210000;2210000;2210000
-100;'356;India;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;18800;20000;15900;18000;18000;14500;9200;8500;1100;1100;1100;5600;5600;4100;7800;7800;7800;7800;7800;7800;7800;7800;7800;115200;78558;97994;78193;83700;179300;190100;169900;128000;104000;144000;156799;146028;238497;255919;314429;281600;344815;427374;537279;607140;608289;646030;623052;673413;737024;709283;641147;688819;630548;641341.56;873803;1089485
-100;'356;India;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;4041;4501;3770;4477;4477;3879;3158;3850;546;495;495;2357;2357;2589;4864;4864;4864;4864;4864;4864;4864;4864;4864;59086;47541;29768;36774;59431;68040;77466;61069;56444;58534;60701;69176;64535;118345;133361;144989;188739;254131;216097;282482;424586;382464;416209;417857;432521;406575;449292;515603;463112;350446;470539.79;801782;760604
-100;'356;India;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;396;194;3100;1500;1500;100;1200;15400;25000;25000;25000;13530;13530;4498;4498;20253;3160;1319;668;2268;1540;990;9016;5246;957;5490;2044;653;3;0;27
-100;'356;India;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;166;120;2451;596;596;52;612;10874;14226;14226;14226;7431;7431;2671;2671;11550;1388;912;478;1491;931;1353;7820;4057;723;4336;1591;337;6;0;29
-100;'356;India;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20500;20500;20500;20500;20500;20500;20500
-100;'356;India;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;3161;1639;1181;1741;676;1403
-100;'356;India;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538;3193;2067;1840;2334.78;1186;2362
-100;'356;India;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;102;2;1
-100;'356;India;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;35;5;1
-100;'356;India;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;15800;15500;6200;2700;2700;1900;1900;1900;1900;2900;2900;5800;5800;1000;3400;3400;3400;3400;3400;3400;3400;3400;3400;4900;3653;3653;560;0;0;0;0;300;1600;300;300;5634;858;1925;131;131;561;175;175;115;802;652;638;1538;941;;;;;;;
-100;'356;India;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2568;2811;1414;646;646;535;535;535;535;1484;1484;2291;2291;512;1886;1886;1886;1886;1886;1886;1886;1886;1886;2088;2231;2231;145;0;0;0;0;81;732;80;80;2600;530;1057;68;68;453;110;110;87;662;442;369;973;530;;;;;;;
-100;'356;India;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;100;0;0;0;0;0;0;0;11;11;11;11;11;11;11;11;1364;;;;;;;
-100;'356;India;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;63;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;888;;;;;;;
-100;'356;India;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;19000;20500;20500;20500;20500;20500;20500;20500;20000;20000;20000;20000;20000;20000;20500;;;;;;;
-100;'356;India;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;11700;8600;13500;11000;11000;5300;5700;3900;1400;1100;1100;3500;3500;2500;9200;9200;9200;9200;9200;9200;9200;9200;9200;11800;12806;1966;1937;2900;1700;4400;3100;700;1600;700;2238;2062;15711;16847;695;695;1777;1677;9661;2348;740;33611;24414;105;218;;;;;;;
-100;'356;India;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2271;1645;2980;2630;2630;1430;2399;1952;644;496;496;1423;1423;1479;5303;5303;5303;5303;5303;5303;5303;5303;5303;4336;7036;670;691;1343;1091;1676;1370;379;1203;290;1000;1000;8500;8902;846;846;1747;1232;5559;1761;690;21847;22020;154;193;;;;;;;
-100;'356;India;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;0;0;0;0;500;0;0;0;22;22;94;94;40;40;131;108;72;0;0;0;0;;;;;;;
-100;'356;India;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;0;0;0;0;198;0;0;0;25;25;69;69;117;28;264;277;181;0;0;0;0;;;;;;;
-100;'356;India;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;48900;84600;84600;110000;106000;126000;127000;139000;143000;143000;143000;143000;175000;175000;160000;160000;160000;160000;160000;160000;160000;160000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;264000;264000;264000;264000;264000;264000;255000;255000;255000;255000;255000;255000;255000;255000
-100;'356;India;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;11200;15000;10900;19100;28900;22600;13500;13500;19200;13600;23400;7900;31000;31000;72900;72900;12700;21100;21100;21100;21100;12416;67116;36457;34989;88597;88600;34574;45570;24327;131800;49200;35600;47200;66000;50000;50000;84789;92544;141017;108348;126800;100500;103401;167595;133072;148363;201730;206563;327153;447233;508000;573876;512224;570488;428731;675980.69;798886;816913
-100;'356;India;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;2669;3744;2403;4054;6345;5575;3378;3378;5136;5205;13155;4728;19150;19150;36118;36118;8533;15699;15699;15699;15699;6501;35289;31722;28087;54357;44245;21606;25767;13685;111500;36826;21009;29489;33261;30000;30000;53895;60826;100832;83232;81300;89156;105661;133091;126502;183028;232798;221315;325071;391652;454180;533911;484128;516138;310809;597862.4;765520;777477
-100;'356;India;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726;215;1197;3;3;4;0;0;1;1;1;17;0;0;0;0
-100;'356;India;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708;153;1186;15;15;6;0;0;1;1;8;16;1;0;0;0
-100;'356;India;1668;Pulp from fibres other than wood;5510;Production;t;290000;300000;310000;350000;450000;500000;550000;570000;600000;640000;660000;660000;600000;620000;650000;676000;695000;760000;775000;500000;457000;466000;492000;513000;641000;721000;772000;812000;843000;921000;1009000;1099000;1096000;900000;920000;920000;930000;1020000;1240000;1380000;1433000;1599000;1721000;1853200;1995300;1995300;1995300;1995300;1995300;1995300;1995300;1995300;2270000;2920000;3070000;3020000;3020000;3020000;3020000;3020000;3020000;3020000;3020000
-100;'356;India;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;900;200;200;200;1000;100;100;100;100;1100;1100;1100;1100;1100;1100;1100;64645;8630;7193;22422;10145;9100;10115;1766;1380;1600;500;400;400;8700;2100;1400;1400;1400;1443;2885;13495;10300;5346;1014;2460;8369;25151;34216;21029;3590;3917;3823;3884;5754;3855;5361.34;3246;5128
-100;'356;India;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;230;37;37;37;450;49;49;49;49;483;483;483;483;483;483;483;29114;3569;4510;13179;6616;4788;5157;610;694;1000;293;245;245;4880;1001;595;595;595;1449;2333;11431;8800;6714;3639;4753;5895;15865;21055;15272;3937;3592;4999;4482;7089;4634;6796.93;5750;9260
-100;'356;India;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;649;661;1200;900;1200;1200;700;800;500;500;500;42;22;106;106;627;516;251;126;265;28;491;1333;2513;1122;4043;2300;1716;6154.39;2603;4323
-100;'356;India;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;696;709;1410;1207;1531;1531;866;990;565;565;565;108;47;123;123;735;702;395;853;1152;61;245;790;2373;799;2091;1058;786;2129;1340;2826
-100;'356;India;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375;620;2967;3616;1535;317;573;1281;505;902;1151;946;650;5895;6273;1655
-100;'356;India;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;668;314;1314;2716;1144;267;428;478;340;570;707;1012;650;4273;4586;1446
-100;'356;India;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;30;90;76;88;30;68;85;79;220;704;18699;27247;2729.27;1354;18784
-100;'356;India;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;2;35;111;136;20;27;31;33;94;278;5406;8399;951.93;646;5986
-100;'356;India;1669;Recovered paper;5510;Production;t;;;;;;;;;;40000;40000;40000;50000;50000;55000;81000;81000;150000;200000;200000;300000;350000;350000;198000;227000;300000;300000;300000;303000;227000;277000;496000;531000;390000;400000;470000;550000;640000;750000;850000;950000;1070000;1190000;1340000;1500000;1680000;1880000;2100000;2360000;2640000;2640000;2640000;2900000;3600000;3700000;3700000;3700000;3700000;3700000;3700000;3700000;3700000;3700000
-100;'356;India;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;1700;173;204;3000;17000;17000;50000;175000;225000;295506;209291;237379;225450;385200;385200;251838;200000;221652;197900;234600;359000;585000;814000;919000;1196000;1200000;1324000;1414539;1758199;1721500;1782177;1739619;2161685;1962983;2079101;2308807;2531167;3068949;3089186;3185119;3284687;6415505;6552343;5994440;7026768;6699329;7843666
-100;'356;India;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;484;21;68;903;5088;5088;6450;24150;24975;74867;50151;59669;36120;80911;65861;52577;29000;31815;36829;33193;41519;52194;81742;96692;116057;149559;175126;224556;303427;264200;407299;441899;382811;510548;610693;548128;604885;748327;682818;657384;800371;1331400;1239422;963851;1789927;1953486;1420749
-100;'356;India;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;331;187;600;600;600;100;0;0;0;0;0;2686;2254;297;297;2931;2511;4494;179;6852;25;123;467;433;182;182;816;109;3504.43;317;215
-100;'356;India;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;20;112;51;51;15;0;0;0;0;0;1182;1041;95;95;957;1321;1073;161;1610;55;40;128;300;87;87;185;62;1476.34;54;74
-100;'356;India;1876;Paper and paperboard;5510;Production;t;449500;479000;558200;588400;630000;669900;694400;732600;801800;860600;820000;845000;840000;893000;911000;934000;990000;998000;1044000;962000;1266000;1288000;1481000;1557000;1559000;1806000;1871000;1977000;2050000;2185000;2362000;2528000;2626000;2859000;3025000;3025000;2922000;3320027;3845000;3794000;4284000;4285800;4255600;4614600;4655007;6799169;8300610;7941178;7788520;10111244;10172000;10247000;11800000;14490000;15435000;15540000;16227000;17235000;16843000;16438000;16862800;16797660;16797660
-100;'356;India;1876;Paper and paperboard;5610;Import quantity;t;150400;122300;120200;126500;111200;127100;98900;129600;167100;158000;219900;175400;134000;157200;117100;139300;185500;253800;270000;295000;359600;417900;228100;253700;251000;206800;200900;236500;250200;124100;286400;291146;290441;257568;216800;639900;657000;800000;769000;605200;570500;636500;723105;1037132;1193005;1449525;1387437;1773514;1506858;1730013;2165926;2014935;2287782;2401263;2560227;2991177;3429141;2860972;3099321;2102069;1882591.15;2108078;2640857
-100;'356;India;1876;Paper and paperboard;5622;Import value;1000 USD;31100;27421;24259;26988;27471;32055;23103;23470;31306;31331;44379;39575;37199;70105;63385;67020;89360;119030;132042;148842;207112;255184;153714;167300;164900;161177;138328;163998;173244;160183;204575;195651;153395;140430;164706;466071;382804;448752;399024;390937;306415;372104;361721;621445;824453;1020170;1060128;1637256;1176327;1555189;2018613;1773452;1947661;2154276;1959471;2183626;2521632;2365128;2291785;1396902;1503749.05;2205748;2312478
-100;'356;India;1876;Paper and paperboard;5910;Export quantity;t;2000;2000;1400;2300;1800;4700;9000;22400;20200;18300;4900;5300;13400;5600;1700;2400;3200;3200;3600;3600;1300;1600;1600;1600;1300;2770;1604;3000;3000;8700;11100;28975;2478;18749;10700;5800;16300;25400;85700;28610;54500;55600;109958;274853;309300;350269;303140;379869;335706;482730;559432;511174;605845;631967;563164;733804;849189;1500390;1526799;1977521;3005276.89;2062842;1627908
-100;'356;India;1876;Paper and paperboard;5922;Export value;1000 USD;1440;1523;1154;1536;1118;1842;2936;8019;4759;4694;1500;1716;4811;2589;1478;1509;2105;2105;3928;3928;1572;1617;1617;1617;1316;2515;1744;3392;2904;8693;10879;23510;2370;10721;8220;4376;14348;20346;53448;25880;47219;46708;83354;199124;224442;267249;249152;322615;293340;495598;493743;441951;581417;568097;486102;556410;652099;1061827;1019425;1002549;1898184.66;1807518;1216520
-100;'356;India;2042;Graphic papers;5510;Production;t;255400;259300;331800;348400;364000;410500;408700;424500;450700;482000;504000;486000;484000;537000;556000;578000;606000;590000;636000;554000;760000;782000;985000;998000;880000;1046000;1062000;1111000;1152000;1210000;1290000;1380000;1405000;1462000;1550000;1550000;1412000;1689987;2010000;1930000;2306000;2306000;2236000;2544000;2518907;3507169;4155610;3954178;3801520;4948244;5009000;5076000;5413000;5779000;6180000;5768000;5892000;6271000;5879000;5474000;5795670;5794670;5794670
-100;'356;India;2042;Graphic papers;5610;Import quantity;t;130700;105700;104000;106900;93900;115800;86900;119600;158100;147000;208900;165800;122900;147200;103500;127800;170200;238500;257200;282200;349300;400800;211000;237000;233000;190100;184200;219800;233500;107400;245700;261846;271932;225004;192200;586900;617000;726000;675000;468600;483900;544500;631105;929558;1043769;1297287;1234671;1565699;1230908;1522265;1815041;1672653;1956547;2014286;2120832;2485286;2887114;2317598;2450951;1510477;1213723.38;1378432;1753040
-100;'356;India;2042;Graphic papers;5622;Import value;1000 USD;22100;19911;17416;18024;19358;25150;16446;18468;25794;25731;37195;31939;27180;59003;48385;54346;76365;106035;112156;128956;188063;225970;124500;138300;135600;131877;109028;134698;143944;130883;148305;157534;129836;103409;137865;399682;350404;387670;316759;280943;255407;314361;304034;511118;663244;829551;877647;1349489;898441;1255185;1618027;1394076;1587791;1753428;1540485;1721931;1997237;1771692;1656655;867852;819715.68;1312834;1378605
-100;'356;India;2042;Graphic papers;5910;Export quantity;t;400;400;300;300;500;3600;7200;20400;16100;14200;3300;3300;6700;2700;100;800;2000;2000;1500;1500;800;500;500;500;200;1670;504;1900;1900;7600;6900;19775;1581;13081;6200;3200;13500;15400;67700;17610;29200;28700;83058;194955;211646;231269;162640;201742;194568;337533;412698;381373;387898;411271;358584;496945;473573;688863;715606;561974;792374.15;751218;552892
-100;'356;India;2042;Graphic papers;5922;Export value;1000 USD;19;19;14;14;130;870;1606;6959;3386;3220;1016;1016;2413;976;156;647;1581;1581;1334;1334;950;506;506;506;205;1404;633;2281;1793;7582;6270;14539;1240;8613;4587;2271;11855;11280;41161;15214;21604;20919;57565;133512;153302;173809;137590;178830;148639;307546;353176;321061;351326;335666;268804;332001;351288;546825;535005;351354;549027.16;692333;456313
-100;'356;India;1671;Newsprint;5510;Production;t;25700;24900;30400;28800;30500;29300;31000;30800;35300;37300;40000;42000;44000;55000;52000;55000;54000;40000;45000;40000;50000;102000;170000;193000;200000;270000;285000;292000;320000;310000;300000;320000;320000;350000;400000;400000;302000;410000;500000;400000;700000;700000;630000;938000;912907;1032169;1038610;1104178;951520;1259244;1320000;1380000;1380000;1380000;1380000;1090000;1100000;1151000;759000;354000;666000;665000;665000
-100;'356;India;1671;Newsprint;5610;Import quantity;t;123800;99300;95500;102500;85300;107400;81600;114600;155100;144200;206900;153800;117000;141100;100800;125100;167700;236000;245000;270000;269800;359100;171000;195000;188000;167000;175000;201000;180000;85000;239700;246701;175673;159124;170300;494100;547000;500000;498000;350000;398900;447000;537605;803400;710861;970655;812000;1109807;742613;1228233;1406745;1239442;1371153;1309547;1433035;1581970;1583040;1325227;1345962;880157;582848.42;578736;675955
-100;'356;India;1671;Newsprint;5622;Import value;1000 USD;18600;16019;14562;15536;12980;18934;12585;16837;24700;24352;35861;26675;24029;53993;45985;51922;73030;102700;104400;121200;133402;192132;91500;104300;100600;89300;94000;108000;97000;85000;128137;139075;72266;65089;113369;308665;288804;188789;160999;176106;192896;252654;244907;426273;396234;551800;505515;890702;441770;771531;1014368;831246;888556;841654;791792;843870;841507;917871;774669;397525;307977.44;475868;472117
-100;'356;India;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;740;87;2200;2700;2700;1300;2700;400;5000;5000;5958;5930;8515;3165;3807;6720;12081;11446;9508;9413;4108;9689;5428;5792;4933;20862;16707;3939;5497.86;8716;6951
-100;'356;India;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;361;35;1794;1835;1835;655;1161;236;2964;3000;3653;4119;6321;2306;3378;4934;6994;6962;6745;6702;2739;8080;3478;2937;2809;14010;9259;1873;3830.4;7661;4811
-100;'356;India;1674;Printing and writing papers;5510;Production;t;229700;234400;301400;319600;333500;381200;377700;393700;415400;444700;464000;444000;440000;482000;504000;523000;552000;550000;591000;514000;710000;680000;815000;805000;680000;776000;777000;819000;832000;900000;990000;1060000;1085000;1112000;1150000;1150000;1110000;1279987;1510000;1530000;1606000;1606000;1606000;1606000;1606000;2475000;3117000;2850000;2850000;3689000;3689000;3696000;4033000;4399000;4800000;4678000;4792000;5120000;5120000;5120000;5129670;5129670;5129670
-100;'356;India;1674;Printing and writing papers;5610;Import quantity;t;6900;6400;8500;4400;8600;8400;5300;5000;3000;2800;2000;12000;5900;6100;2700;2700;2500;2500;12200;12200;79500;41700;40000;42000;45000;23100;9200;18800;53500;22400;6000;15145;96259;65880;21900;92800;70000;226000;177000;118600;85000;97500;93500;126158;332908;326632;422671;455892;488295;294032;408296;433211;585394;704739;687797;903316;1304074;992371;1104989;630320;630874.96;799696;1077085
-100;'356;India;1674;Printing and writing papers;5622;Import value;1000 USD;3500;3892;2854;2488;6378;6216;3861;1631;1094;1379;1334;5264;3151;5010;2400;2424;3335;3335;7756;7756;54661;33838;33000;34000;35000;42577;15028;26698;46944;45883;20168;18459;57570;38320;24496;91017;61600;198881;155760;104837;62511;61707;59127;84845;267010;277751;372132;458787;456671;483654;603659;562830;699235;911774;748693;878061;1155730;853821;881986;470327;511738.24;836966;906488
-100;'356;India;1674;Printing and writing papers;5910;Export quantity;t;400;400;300;300;500;3600;7200;20400;16100;14200;3300;3300;6700;2700;100;800;2000;2000;1500;1500;800;500;500;500;200;1670;504;1900;1900;7600;6900;19095;841;12994;4000;500;10800;14100;65000;17210;24200;23700;77100;189025;203131;228104;158833;195022;182487;326087;403190;371960;383790;401582;353156;491153;468640;668001;698899;558035;786876.29;742502;545941
-100;'356;India;1674;Printing and writing papers;5922;Export value;1000 USD;19;19;14;14;130;870;1606;6959;3386;3220;1016;1016;2413;976;156;647;1581;1581;1334;1334;950;506;506;506;205;1404;633;2281;1793;7582;6270;14208;879;8578;2793;436;10020;10625;40000;14978;18640;17919;53912;129393;146981;171503;134212;173896;141645;300584;346431;314359;348587;327586;265326;329064;348479;532815;525746;349481;545196.76;684672;451502
-100;'356;India;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030000;1030000;1333000;1333000;1336000;1458000;1590000;1735000;1455000;1220000;1025000;1025000;1025000;1025000;1025000;1025000
-100;'356;India;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58310;45668;30600;24700;32900;32900;12681;76408;34200;4191;3192;7396;2848;10947;14804;11058;6054;7920;13353;31143;28716;29704;24163;24277.62;31480;20390
-100;'356;India;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39180;30685;20653;15503;15904;15904;8088;47450;25500;3995;2900;8855;3188;10038;11995;8861;5084;5493;9196;22228;21962;21177;15741;14462.31;28979;17949
-100;'356;India;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;3401;910;2100;1600;10000;80569;64954;64954;45455;56755;51172;74890;65207;106659;118783;114854;112278;127570;97267;128378;103115;65379;50126.99;23802;22893
-100;'356;India;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;1939;726;1728;1007;6000;52757;45066;45066;39516;52313;40597;69097;61448;90394;100668;94616;86882;91603;75879;111952;86011;47310;37066.58;28432;28627
-100;'356;India;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1101987;1300000;1315000;1380000;1380000;1380000;1380000;1380000;2127000;2678000;1330000;1330000;1722000;1722000;1725000;1882000;2053000;2240000;2688000;3225000;3870000;3870000;3870000;3870000;3870000;3870000
-100;'356;India;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43828;34325;23000;9700;14000;10000;14685;117000;138000;205200;238715;257544;68887;74154;70115;79700;115918;115876;174745;355782;209508;346090;162986;110584.2;179267;462279
-100;'356;India;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61641;48276;32493;10085;8880;6300;8000;113000;134000;199520;256996;279396;286547;303371;275413;333260;484142;342928;394446;481338;225976;308250;134319;102618.95;196452;351228
-100;'356;India;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4345;20029;5300;5000;5000;50000;78404;105666;131344;82955;101555;93734;176358;245306;215156;188821;204526;159292;282276;274390;353273;365940;259725;500815.6;485369;325707
-100;'356;India;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3511;13217;4949;4000;4000;35000;54338;77498;102051;70424;90618;72320;162309;222094;184754;192285;177890;129799;192024;218232;309097;305002;175210;345197.15;456341;301554
-100;'356;India;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178000;210000;215000;226000;226000;226000;226000;226000;348000;439000;490000;490000;634000;634000;635000;693000;756000;825000;535000;347000;225000;225000;225000;234670;234670;234670
-100;'356;India;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123862;97007;65000;50600;50600;50600;98792;139500;154432;213280;213985;223355;222297;323195;348292;494636;582767;564001;715218;917149;754147;729195;443171;496013.14;588949;594416
-100;'356;India;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98060;76799;51691;36923;36923;36923;68757;106560;118251;168617;198891;168420;193919;290250;275422;357114;422548;400272;474419;652164;605883;552559;320267;394656.97;611535;537311
-100;'356;India;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9017;41570;11000;17100;17100;17100;30052;32511;31806;30423;36712;37581;74839;92677;50145;76186;82202;81586;81307;96983;186350;229844;232931;235933.69;233331;197341
-100;'356;India;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6599;24844;9303;12912;12912;12912;22298;24417;24386;24272;30965;28728;69178;62889;39211;55634;55080;48645;45437;54368;111766;134733;126961;162933.04;199899;121321
-100;'356;India;1675;Other paper and paperboard;5510;Production;t;194100;219700;226400;240000;266000;259400;285700;308100;351100;378600;316000;359000;356000;356000;355000;356000;384000;408000;408000;408000;506000;506000;496000;559000;679000;760000;809000;866000;898000;975000;1072000;1148000;1221000;1397000;1475000;1475000;1510000;1630040;1835000;1864000;1978000;1979800;2019600;2070600;2136100;3292000;4145000;3987000;3987000;5163000;5163000;5171000;6387000;8711000;9255000;9772000;10335000;10964000;10964000;10964000;11067130;11002990;11002990
-100;'356;India;1675;Other paper and paperboard;5610;Import quantity;t;19700;16600;16200;19600;17300;11300;12000;10000;9000;11000;11000;9600;11100;10000;13600;11500;15300;15300;12800;12800;10300;17100;17100;16700;18000;16700;16700;16700;16700;16700;40700;29300;18509;32564;24600;53000;40000;74000;94000;136600;86600;92000;92000;107574;149236;152238;152766;207815;275950;207748;350885;342282;331235;386977;439395;505891;542027;543374;648370;591592;668867.78;729646;887817
-100;'356;India;1675;Other paper and paperboard;5622;Import value;1000 USD;9000;7510;6843;8964;8113;6905;6657;5002;5512;5600;7184;7636;10019;11102;15000;12674;12995;12995;19886;19886;19049;29214;29214;29000;29300;29300;29300;29300;29300;29300;56270;38117;23559;37021;26841;66389;32400;61082;82265;109994;51008;57743;57687;110327;161209;190619;182481;287767;277886;300004;400586;379376;359870;400848;418986;461695;524395;593436;635130;529050;684033.38;892914;933873
-100;'356;India;1675;Other paper and paperboard;5910;Export quantity;t;1600;1600;1100;2000;1300;1100;1800;2000;4100;4100;1600;2000;6700;2900;1600;1600;1200;1200;2100;2100;500;1100;1100;1100;1100;1100;1100;1100;1100;1100;4200;9200;897;5668;4500;2600;2800;10000;18000;11000;25300;26900;26900;79898;97654;119000;140500;178127;141138;145197;146734;129801;217947;220696;204580;236859;375616;811527;811193;1415547;2212902.74;1311624;1075016
-100;'356;India;1675;Other paper and paperboard;5922;Export value;1000 USD;1421;1504;1140;1522;988;972;1330;1060;1373;1474;484;700;2398;1613;1322;862;524;524;2594;2594;622;1111;1111;1111;1111;1111;1111;1111;1111;1111;4609;8971;1130;2108;3633;2105;2493;9066;12287;10666;25615;25789;25789;65612;71140;93440;111562;143785;144701;188052;140567;120890;230091;232431;217298;224409;300811;515002;484420;651195;1349157.49;1115185;760207
-100;'356;India;1676;Household and sanitary papers;5510;Production;t;9000;7200;7300;6200;5500;8700;8800;11600;20500;23600;20000;28000;30000;36000;46000;45000;47000;50000;50000;50000;20000;20000;10000;10000;14000;15000;16000;17000;17000;19000;21000;23000;23000;25000;29000;29000;30000;35000;35000;40000;43000;43000;43000;43000;43000;66000;83000;43000;43000;56000;56000;56000;85000;130000;200000;200000;200000;219000;219000;219000;219000;219000;219000
-100;'356;India;1676;Household and sanitary papers;5610;Import quantity;t;1800;1500;1500;1800;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;200;200;200;200;900;800;800;800;800;800;800;800;800;800;500;500;500;1000;800;1100;900;1700;1000;1500;1900;4000;4000;1549;1419;1198;1198;2489;1572;1426;2024;2293;3336;4814;5831;8006;7845;9646;13294;10745;8512.92;10572;18813
-100;'356;India;1676;Household and sanitary papers;5622;Import value;1000 USD;810;676;616;807;730;600;600;600;700;700;1000;1200;1300;1400;1500;1500;243;243;243;243;2954;2244;2244;2244;2244;2244;2244;2244;2244;2244;1691;2133;2133;3000;2147;2930;1362;2519;1565;2477;2477;9056;9000;1700;1743;1689;1689;4299;2224;2201;3267;4189;5073;7636;8898;9553;10899;12253;16223;12822;10617.2;15715;25847
-100;'356;India;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336;2271;4107;6733;8619;17871;14227;19379;20432;29297;32255;25911;20808;29613.7;27679;18905
-100;'356;India;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1805;2726;5478;7802;10378;21905;16639;22351;22638;30874;38672;30637;19846;31515.85;39095;26576
-100;'356;India;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1480040;1675000;1694000;1796000;1796000;1796000;1796000;1796000;2768000;3485000;3494000;3494000;4524000;4524000;4531000;5582000;7603000;8143000;8721000;9342000;10005000;10005000;10005000;10108130;10043990;10043990
-100;'356;India;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18800;36000;67000;50000;53300;53300;56025;91495;109895;110423;145868;201978;173542;334885;323640;316255;369480;416343;478801;516593;511061;615245;561755;640873.24;701795;846795
-100;'356;India;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14663;34000;48107;31190;31346;31346;61299;90707;114730;106592;167113;171952;192712;360542;335429;317662;354296;371135;410701;475893;533662;573913;474771;629227.81;830298;856484
-100;'356;India;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200;23200;24800;24800;61898;89598;103400;123700;154207;110863;118826;137103;119719;198477;204689;183417;214785;345229;764916;783965;1381420;2139971.88;1275870;1048023
-100;'356;India;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7753;21076;21250;21250;40612;55640;73440;89117;107915;87343;116319;127043;105451;200695;208331;188167;195032;265942;465156;444856;614605;1269956.41;1030537;699645
-100;'356;India;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;59900;75900;75700;85100;96500;99900;120700;130000;146000;161700;135000;137000;100000;200000;200000;199000;234000;240000;240000;240000;281000;281000;281000;317000;638000;715000;761000;815000;846000;918000;1010000;1081000;1152000;1282000;1354000;1354000;1390000;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;11400;9600;9400;11400;10000;6500;7000;6000;5000;6000;6000;3000;5000;3000;6000;5000;4500;4500;2300;2300;2400;4700;4700;4700;4700;4700;4700;4700;4700;4700;3500;3700;3700;6000;4400;7000;5500;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;4680;3905;3558;4661;4219;3575;2600;2300;2000;2500;3184;1936;3719;2702;6000;5000;6327;6327;2035;2035;2577;4158;4158;4056;4056;4056;4056;4056;4056;4056;6142;6923;6923;9000;6442;8791;5167;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1200;1200;800;1500;1000;800;1000;1000;2000;2000;1000;1000;5700;2000;1000;1000;1000;1000;400;400;200;500;500;500;500;500;500;500;500;500;1000;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;725;767;581;776;504;500;600;600;900;900;300;400;2098;1000;600;500;300;300;289;289;175;427;427;427;427;427;427;427;427;427;3089;2708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-100;'356;India;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702488;795000;806000;854000;854000;854000;854000;854000;1316000;1657000;2440000;2440000;3159000;3159000;3164000;3898000;5308000;5685000;6089000;6522000;6985000;6985000;6985000;6985000;6985000;6985000
-100;'356;India;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4041;7737;14400;16400;11700;11700;9000;24764;17000;9500;18719;51224;41636;71993;81368;74316;95905;107698;135623;168602;167674;192282;171982;160967.04;177273;231223
-100;'356;India;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3505;8127;11499;7464;4412;4412;16317;26778;24000;5881;26578;39798;39224;79525;83036;63740;76543;80258;94916;137010;160551;159329;126234;174659.52;226178;225309
-100;'356;India;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;3600;3600;3600;6737;6041;11800;11800;14844;18497;12428;15141;7984;12927;18426;15491;21906;64284;310876;320485;600631;962482.68;443415;443283
-100;'356;India;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;1418;1418;1418;3992;4365;7800;7800;10750;11659;9044;11015;5434;8213;11285;9480;10834;32630;143519;114026;196726;467412.79;250253;159580
-100;'356;India;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724537;820000;828000;878000;878000;878000;878000;878000;1353000;1704000;990000;990000;1282000;1282000;1284000;1582000;2155000;2308000;2472000;2647000;2835000;2835000;2835000;2835000;2835000;2835000
-100;'356;India;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10943;20955;39000;20000;20000;20000;17025;19952;37900;41200;51516;71568;63554;120488;110185;114161;124024;123670;131547;130309;152292;212165;196581;243364.83;263696;310790
-100;'356;India;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7807;18103;25614;12732;12732;12732;16311;21983;39000;44705;57848;61538;71424;113593;113552;134358;142437;135979;150701;151685;181148;213681;181112;233404.22;304359;318952
-100;'356;India;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;12400;12400;12400;7474;12889;13900;13900;19800;24885;18102;28051;42055;86732;90897;90897;101385;143278;212273;261492;379723;735516.37;593697;420205
-100;'356;India;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1731;14043;14043;14043;7494;8542;16800;16800;22407;26664;32971;33875;40043;109444;120126;120126;124064;143881;177253;199299;228126;510447.42;536703;366806
-100;'356;India;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53015;60000;60000;64000;64000;64000;64000;64000;99000;124000;64000;64000;83000;83000;83000;102000;140000;150000;160000;173000;185000;185000;185000;288130;223990;223990
-100;'356;India;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3143;6018;11200;11200;19000;19000;29586;46100;52272;57000;72952;76332;61060;137935;126485;120090;138824;172945;195942;201600;175501;199347;185271;224329.35;249045;288201
-100;'356;India;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2857;6625;9374;9374;13133;13133;27957;41149;49724;54000;80781;67907;72930;162440;133897;113232;126454;146035;155038;175740;179084;191057;160533;210734.24;285560;297687
-100;'356;India;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;6600;7900;7900;46323;70430;76700;97000;118519;66474;87426;92068;68332;97091;93851;76497;91165;130991;229229;192109;350158;288287.71;205000;160964
-100;'356;India;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4903;4903;4694;4694;28411;42624;48000;63677;73062;47746;73326;79351;57866;80403;74678;57419;59493;84109;136857;124366;170004;221405.62;223080;159343
-100;'356;India;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673;1290;2400;2400;2600;2600;414;679;2723;2723;2681;2854;7292;4469;5602;7688;10727;12030;15689;16082;15594;11451;7921;12212.03;11781;16581
-100;'356;India;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;1145;1620;1620;1069;1069;714;797;2006;2006;1906;2709;9134;4984;4944;6332;8862;8863;10046;11458;12879;9846;6892;10429.83;14201;14536
-100;'356;India;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;900;900;1364;238;1000;1000;1044;1007;870;1843;1348;1727;1515;532;329;6676;12538;9879;50908;153685.12;33758;23571
-100;'356;India;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;712;712;1095;1095;715;109;840;840;1696;1274;978;2802;2108;2635;2242;1142;641;5322;7527;7165;19749;70690.58;20501;13916
-100;'356;India;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;125200;136600;143400;148700;164000;150800;156200;166500;184600;193300;161000;194000;226000;120000;109000;112000;103000;118000;118000;118000;205000;205000;205000;232000;27000;30000;32000;34000;35000;38000;41000;44000;46000;90000;92000;92000;90000;115000;125000;130000;139000;140800;180600;231600;297100;458000;577000;450000;450000;583000;583000;584000;720000;978000;912000;851000;793000;740000;740000;740000;740000;740000;740000
-100;'356;India;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6500;5500;5300;6400;5700;3800;4000;3000;3000;4000;4000;5600;5100;6000;6600;5500;10600;10600;10300;10300;7000;11600;11600;11200;12500;11200;11200;11200;11200;11200;36700;25100;14309;25564;19400;44900;33600;53500;57000;68100;34700;34700;34700;50000;56322;41145;41145;59458;72400;32780;13976;16349;11644;12683;17221;19084;17589;22667;19831;19092;19481.62;17279;22209
-100;'356;India;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;3510;2929;2669;3496;3164;2730;3457;2102;2812;2400;3000;4500;5000;7000;7500;6174;6425;6425;17608;17608;13518;22812;22812;22700;23000;23000;23000;23000;23000;23000;48437;29061;14503;25021;18252;54668;25871;43900;46700;59410;17341;17341;17341;47328;68759;74200;74200;116355;103710;105091;36777;39758;37135;38916;38953;41441;37603;47521;44994;41457;44188.36;46901;51542
-100;'356;India;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;400;400;300;500;300;300;800;1000;2100;2100;600;1000;1000;900;600;600;200;200;1700;1700;300;600;600;600;600;600;600;600;600;600;3200;7800;897;5668;4500;2600;2800;10000;18000;1800;2100;2100;2100;18000;8056;15600;16800;22584;28004;22264;2898;1463;1599;1780;1784;1642;1090;14356;1317;13319;43317.16;8075;8088
-100;'356;India;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;696;737;559;746;484;472;730;460;473;574;184;300;300;613;722;362;224;224;2305;2305;447;684;684;684;684;684;684;684;684;684;1520;6263;1130;2108;3633;2105;2493;9066;12287;2913;4539;4539;4539;25000;15500;20000;22445;34065;54632;66255;5722;5061;7491;7461;6780;6739;3995;11174;8927;16744;47685.24;45553;33986
-100;'356;India;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521976;571639;539792;337669;382404;400439;344618
-100;'356;India;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689860;851734;910396;928708;1442864;1300823;1159201
-100;'356;India;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30242;33786;37983;34681;41826;43539;43265
-100;'356;India;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2749;3512;2677;1871;4993;9529;10827
-100;'356;India;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13564;11325;13818;11836;15332;12680;5243
-100;'356;India;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1296;1052;875;692;570;1642;2917
-100;'356;India;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16678;22461;24165;22845;26494;30859;38022
-100;'356;India;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453;2460;1802;1179;4423;7887;7910
-100;'356;India;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13976;14233;17066;13112;14868;18960;24459
-100;'356;India;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13474;14686;12090;9980;14611;13575;13614
-100;'356;India;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2998;5916;9718;6506;9713;19815;17652
-100;'356;India;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53008;66755;71348;68597;133922;107397;85847
-100;'356;India;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43652;54772;46634;32516;41758;57329;51796
-100;'356;India;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8956;16010;20470;16409;17608;17484;16030
-100;'356;India;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;237
-100;'356;India;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;107
-100;'356;India;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;3
-100;'356;India;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;6
-100;'356;India;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17
-100;'356;India;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17
-100;'356;India;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;393
-100;'356;India;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;669
-100;'356;India;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-100;'356;India;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18
-100;'356;India;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-100;'356;India;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-100;'356;India;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399934;432753;395141;230517;249086;224188;174538
-100;'356;India;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550589;634054;667538;683517;1045182;906876;814115
-100;'356;India;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750;3317;3012;1519;419;366;809
-100;'356;India;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211;8514;9834;7194;6058;11360;5843
-100;'356;India;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29424;26862;30238;18818;24734;36242;32099
-100;'356;India;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54873;108203;126439;141140;220490;234602;212925
-100;'356;India;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550663;619306;594788;456151;648877;890272;799880
-100;'356;India;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624089;756066;1041896;748003;1062009;1334758;1431325
-100;'356;India;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4767;4461;4001;2379;3462;5496;6588
-100;'356;India;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;1320;1139;710;2245;3001;1674
-100;'356;India;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249473;296630;273203;207384;289497;350156;346552
-100;'356;India;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59283;68893;82288;64236;102027;113146;114362
-100;'356;India;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14364;17770;19161;14177;11265;16989;15501
-100;'356;India;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5750;8297;8861;8075;10432;10354;12390
-100;'356;India;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87406;96572;87582;63484;96927;100513;103220
-100;'356;India;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97353;114937;137973;137609;217574;279544;272469
-100;'356;India;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194653;203873;210841;168727;247726;417118;328019
-100;'356;India;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461163;562619;811635;537373;729731;928713;1030430
-101;'360;Indonesia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3474739;3866141;3825263;3021194;4208386.38;4543724;3844231
-101;'360;Indonesia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11876735;13325206;12655996;12082303;14437006.89;15718056;13791550
-101;'360;Indonesia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;25054;14997;15001;15001;9300;9300;13835;19308;20292;29580;28205;25941;47828;59685;56324;105077;116930;151528;145105;156794;180918;224945;278807;263807;221586;251047;322538;383098;433358;455955;467607;648460;684355;859709;826832;866984;975949;842344;934489;1375595;1032051;971874;962162;1315617;1339980;1409706;1663577;2285151;1579403;2407189;2823877;2581572;2865669;2835981;2236594;2364677;2752830;3018339;2938182;2252154;3246958.38;3568515;2956062
-101;'360;Indonesia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2137;1550;1981;2366;3184;4541;8557;16206;31121;89042;167925;234322;580108;729249;443970;863723;955165;1017445;1822312;1840290;970883;812063;1135736;1217991;1559411;1749438;2336899;2895149;3777357;3140082;3930703;4013252;5162020;4829086;5008182;5216178;5115133;4395063;4916019;5517412;4993482;4627954;4506929;4685511;5251890;6066765;6407298;7098138;5701690;7201943;7700028;7453053;7760953;7991246;7778067;7091169;8346919;9733131;9234393;8581121;10204121.89;11682742;10395865
-101;'360;Indonesia;1861;Roundwood;5516;Production;m3;241947024;237683704;233423080;229317232;225267112;221432568;217990176;214805056;212502328;212479168;213058360;214162696;219986728;213718568;204768736;209014080;203505504;203664944;198458632;196683908;187505108;185758884;183545588;180882908;175023772;174889956;174899004;174293452;172591940;164408996;162766084;158773420;154781596;148239964;143557372;143136188;141546484;145010516;143765444;137829628;130160672;134904252;131356236;128412276;123791356;118169686;115275886;119337700;110146921;113848742;117993552;117522499;126667821;124455397;122317741;120250104;118251621;123059669;123756739;125275877;106441365;103710877;108009349
-101;'360;Indonesia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61226;31212;67948;59416;89086;145100;127900;119000;165000;322000;186700;116000;106491;103753;75606;179836;72477;142527;139808;68592;145340;82821;62395;126887;234740;565048;927801;1184467;764706;635555;438274;20835;37659;8868
-101;'360;Indonesia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15031;11219;27177;21975;27896;26093;48613;42458;42965;76002;36137;30947;26493;19992;20994;27350;17613;28828;22460;16687;31355;21303;16168;18130;23870;37256;53231;58737;43636;38818;29175;7662;13753;5825
-101;'360;Indonesia;1861;Roundwood;5916;Export quantity;m3;111600;90300;127100;147600;182700;339200;595100;1422900;3728500;7884500;10882400;13445700;18565300;16939508;12916500;18225104;19258000;19817200;18612300;15650300;6956900;3523700;3490200;2020500;197700;225400;208900;168600;67900;45682;135953;121835;42521;44871;30000;20200;45100;125100;264700;1608700;1469600;1827722;229520;140550;98504;63694;82013;70881;41564;55393;61096;69900;76317;68663;61681;72155;46088;58687;43819;10515;41143;2325;10509
-101;'360;Indonesia;1861;Roundwood;5922;Export value;1000 USD;1616;1122;1553;1938;2710;4167;8033;15615;29372;87386;165005;231655;563439;705084;410681;812185;901321;911922;1553478;1520211;623553;336521;315439;172025;8933;8844;10738;15753;11824;7255;13459;16969;8537;8980;6000;3884;5023;39550;68432;376722;387154;79968;26196;20333;19632;15608;13713;9624;7533;8007;18130;17231;12402;26164;15342;24294;31846;28070;19347;4636;19561;2588;6384
-101;'360;Indonesia;1862;Roundwood, coniferous;5516;Production;m3;74000;75000;76000;80000;80000;119000;122000;107000;101000;102000;132000;142000;143000;123000;428000;716000;893000;1045000;1096000;1023500;803500;634500;768500;589500;535500;556500;591500;575500;515500;565500;538500;538500;538500;538500;538500;538500;538500;520500;505500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;244000;244000;244000;244000;244000;7000;7000;7000;189223;205003;205003
-101;'360;Indonesia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2690;2275;391;2718;5936;547;799
-101;'360;Indonesia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727;788;130;1260;1025;126;184
-101;'360;Indonesia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;597;1462;325;328;308;250
-101;'360;Indonesia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;583;345;199;530;351;134
-101;'360;Indonesia;1863;Roundwood, non-coniferous;5516;Production;m3;241873024;237608704;233347080;229237232;225187112;221313568;217868176;214698056;212401328;212377168;212926360;214020696;219843728;213595568;204340736;208298080;202612504;202619944;197362632;195660408;186701608;185124384;182777088;180293408;174488272;174333456;174307504;173717952;172076440;163843496;162227584;158234920;154243096;147701464;143018872;142597688;141007984;144490016;143259944;137624128;129955172;134698752;131150736;128206776;123585856;117964186;115070386;119132200;109941421;113643242;117788052;117316999;126423821;124211397;122073741;120006104;118007621;123052669;123749739;125268877;106252142;103505874;107804346
-101;'360;Indonesia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181777;762431;635164;435556;14899;37112;8069
-101;'360;Indonesia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58010;42848;38688;27915;6637;13627;5641
-101;'360;Indonesia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45137;58090;42357;10190;40815;2017;10259
-101;'360;Indonesia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31152;27487;19002;4437;19031;2237;6250
-101;'360;Indonesia;1864;Wood fuel;5516;Production;m3;236407024;232030704;227736080;223515232;219378112;215317568;211332176;207421056;203581328;199813168;197311360;195242688;191640720;188421568;186438736;182948080;178085504;173756944;170211632;165762400;160978608;160236384;154815088;150417408;147854272;143749456;139985504;135747952;130814440;126043496;120775584;115665920;110699096;105623464;100354872;95894688;93555984;91892016;90416944;88981128;85712072;82555752;79507736;76563776;73719856;70719186;67825386;65034200;62341421;59743242;57288052;54916999;52626821;50414397;48276741;46209104;44210621;42278669;40410739;38604428;36877759;35207085;33590346
-101;'360;Indonesia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;261;0;0;0;0;0;0;0;0;0;0;0;0;0;15500;11500;53862;27192;8179;14500;139;68;790;344;106;80;63;60;141;165
-101;'360;Indonesia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;1285;2304;9096;5723;2366;3554;79;29;77;8;178;166;46;138;112;133
-101;'360;Indonesia;1864;Wood fuel;5916;Export quantity;m3;6400;5700;5700;5700;5700;5700;5700;500;500;500;500;31400;8200;8200;8200;8200;8200;200;200;100;100;;;;;;;;;;;283;381;468;0;200;100;100;5200;2100;1200;1200;1200;1200;719;719;719;719;2100;735;604;342;36826;1603;3041;893;1039;845;2073;847;886;670;303
-101;'360;Indonesia;1864;Wood fuel;5922;Export value;1000 USD;317;282;282;282;282;282;282;25;25;25;25;1553;406;406;406;406;406;10;10;5;5;;;;;;;;;;;14;14;25;0;84;23;28;3576;1527;530;530;530;530;354;354;354;354;938;520;217;83;1931;519;1944;570;509;493;358;179;224;178;146
-101;'360;Indonesia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-101;'360;Indonesia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;0;2;2;0;98;98
-101;'360;Indonesia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;10;10;0;10;10
-101;'360;Indonesia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719;431;1171;182;71;72;9
-101;'360;Indonesia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;433;178;55;127;44;35
-101;'360;Indonesia;1628;Wood fuel, non-coniferous;5516;Production;m3;236407024;232030704;227736080;223515232;219378112;215317568;211332176;207421056;203581328;199813168;197311360;195242688;191640720;188421568;186438736;182948080;178085504;173756944;170211632;165762400;160978608;160236384;154815088;150417408;147854272;143749456;139985504;135747952;130814440;126043496;120775584;115665920;110699096;105623464;100354872;95894688;93555984;91892016;90416944;88981128;85712072;82555752;79507736;76563776;73719856;70719186;67825386;65034200;62341421;59743242;57288052;54916999;52626821;50414397;48276741;46209104;44210621;42278669;40410739;38604428;36877759;35207085;33590346
-101;'360;Indonesia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;106;78;61;60;43;67
-101;'360;Indonesia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;178;156;36;138;102;123
-101;'360;Indonesia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;414;902;665;815;598;294
-101;'360;Indonesia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;60;180;124;97;134;111
-101;'360;Indonesia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;261;0;0;0;0;0;0;0;0;0;0;0;0;0;15500;11500;53862;27192;8179;14500;139;68;790;;;;;;;
-101;'360;Indonesia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;1285;2304;9096;5723;2366;3554;79;29;77;;;;;;;
-101;'360;Indonesia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;6400;5700;5700;5700;5700;5700;5700;500;500;500;500;31400;8200;8200;8200;8200;8200;200;200;100;100;;;;;;;;;;;283;381;468;0;200;100;100;5200;2100;1200;1200;1200;1200;719;719;719;719;2100;735;604;342;36826;1603;3041;893;;;;;;;
-101;'360;Indonesia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;317;282;282;282;282;282;282;25;25;25;25;1553;406;406;406;406;406;10;10;5;5;;;;;;;;;;;14;14;25;0;84;23;28;3576;1527;530;530;530;530;354;354;354;354;938;520;217;83;1931;519;1944;570;;;;;;;
-101;'360;Indonesia;1865;Industrial roundwood;5516;Production;m3;5540000;5653000;5687000;5802000;5889000;6115000;6658000;7384000;8921000;12666000;15747000;18920008;28346008;25297000;18330000;26066000;25420000;29908000;28247000;30921508;26526500;25522500;28730500;30465500;27169500;31140500;34913500;38545500;41777500;38365500;41990500;43107500;44082500;42616500;43202500;47241500;47990500;53118500;53348500;48848500;44448600;52348500;51848500;51848500;50071500;47450500;47450500;54303500;47805500;54105500;60705500;62605500;74041000;74041000;74041000;74041000;74041000;80781000;83346000;86671449;69563606;68503792;74419003
-101;'360;Indonesia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61226;31212;67948;59155;88825;145100;127900;119000;165000;322000;186700;116000;106491;103753;75606;179836;72477;142527;124308;57092;91478;55629;54216;112387;234601;564980;927011;1184123;764600;635475;438211;20775;37518;8703
-101;'360;Indonesia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15031;11219;27177;21966;27887;26093;48613;42458;42965;76002;36137;30947;26493;19992;20994;27350;17613;28828;21175;14383;22259;15580;13802;14576;23791;37227;53154;58729;43458;38652;29129;7524;13641;5692
-101;'360;Indonesia;1865;Industrial roundwood;5916;Export quantity;m3;105200;84600;121400;141900;177000;333500;589400;1422400;3728000;7884000;10881900;13414300;18557100;16931308;12908300;18216904;19249800;19817000;18612100;15650200;6956800;3523700;3490200;2020500;197700;225400;208900;168600;67900;45682;135953;121552;42140;44403;30000;20000;45000;125000;259500;1606600;1468400;1826522;228320;139350;97785;62975;81294;70162;39464;54658;60492;69558;39491;67060;58640;71262;45049;57842;41746;9668;40257;1655;10206
-101;'360;Indonesia;1865;Industrial roundwood;5922;Export value;1000 USD;1299;840;1271;1656;2428;3885;7751;15590;29347;87361;164980;230102;563033;704678;410275;811779;900915;911912;1553468;1520206;623548;336521;315439;172025;8933;8844;10738;15753;11824;7255;13459;16955;8523;8955;6000;3800;5000;39522;64856;375195;386624;79438;25666;19803;19278;15254;13359;9270;6595;7487;17913;17148;10471;25645;13398;23724;31337;27577;18989;4457;19337;2410;6238
-101;'360;Indonesia;1866;Industrial roundwood, coniferous;5516;Production;m3;74000;75000;76000;80000;80000;119000;122000;107000;101000;102000;132000;142000;143000;123000;428000;716000;893000;1045000;1096000;1023500;803500;634500;768500;589500;535500;556500;591500;575500;515500;565500;538500;538500;538500;538500;538500;538500;538500;520500;505500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;205500;244000;244000;244000;244000;244000;7000;7000;7000;189223;205003;205003
-101;'360;Indonesia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10839;3276;2339;128;20000;89100;32000;16000;16000;125000;39700;20000;24450;52558;5885;31480;13959;24362;16819;6578;18138;12506;15497;14444;20447;2955;5011;2346;2275;389;2716;5936;449;701
-101;'360;Indonesia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6323;943;171;17;1361;5301;4969;2052;2052;10721;1462;937;1741;2623;111;1146;1708;7146;4683;1765;2063;1316;1622;1512;2039;1523;2444;719;788;120;1250;1025;116;174
-101;'360;Indonesia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;1770;7555;535;1076;0;0;0;0;500;600;16500;1900;313;335;1993;994;56;2162;184;482;58;43;1218;970;145;662;232;166;291;143;257;236;241
-101;'360;Indonesia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;325;964;106;153;0;0;0;0;168;195;1624;581;83;64;361;375;16;430;33;55;42;63;407;266;22;708;219;150;167;144;403;307;99
-101;'360;Indonesia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10839;3276;2339;128;20000;89100;32000;16000;16000;125000;39700;20000;24450;52558;5885;31480;13959;24362;16819;6578;18138;12506;15497;14444;20447;2955;5011;2346;2275;389;2716;5936;449;701
-101;'360;Indonesia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6323;943;171;17;1361;5301;4969;2052;2052;10721;1462;937;1741;2623;111;1146;1708;7146;4683;1765;2063;1316;1622;1512;2039;1523;2444;719;788;120;1250;1025;116;174
-101;'360;Indonesia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;1770;7555;535;1076;0;0;0;0;500;600;16500;1900;313;335;1993;994;56;2162;184;482;58;43;1218;970;145;662;232;166;291;143;257;236;241
-101;'360;Indonesia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;325;964;106;153;0;0;0;0;168;195;1624;581;83;64;361;375;16;430;33;55;42;63;407;266;22;708;219;150;167;144;403;307;99
-101;'360;Indonesia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;5466000;5578000;5611000;5722000;5809000;5996000;6536000;7277000;8820000;12564000;15615000;18778008;28203008;25174000;17902000;25350000;24527000;28863000;27151000;29898008;25723000;24888000;27962000;29876000;26634000;30584000;34322000;37970000;41262000;37800000;41452000;42569000;43544000;42078000;42664000;46703000;47452000;52598000;52843000;48643000;44243100;52143000;51643000;51643000;49866000;47245000;47245000;54098000;47600000;53900000;60500000;62400000;73797000;73797000;73797000;73797000;73797000;80774000;83339000;86664449;69374383;68298789;74214000
-101;'360;Indonesia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50387;27936;65609;59027;68825;56000;95900;103000;149000;197000;147000;96000;82041;51195;69721;148356;58518;118165;107489;50514;73340;43123;38719;97943;214154;562025;922000;1181777;762325;635086;435495;14839;37069;8002
-101;'360;Indonesia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708;10276;27006;21949;26526;20792;43644;40406;40913;65281;34675;30010;24752;17369;20883;26204;15905;21682;16492;12618;20196;14264;12180;13064;21752;35704;50710;58010;42670;38532;27879;6499;13525;5518
-101;'360;Indonesia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45519;134183;113997;41605;43327;30000;20000;45000;125000;259000;1606000;1451900;1824622;228007;139015;95792;61981;81238;68000;39280;54176;60434;69515;38273;66090;58495;70600;44817;57676;41455;9525;40000;1419;9965
-101;'360;Indonesia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7191;13134;15991;8417;8802;6000;3800;5000;39522;64688;375000;385000;78857;25583;19739;18917;14879;13343;8840;6562;7432;17871;17085;10064;25379;13376;23016;31118;27427;18822;4313;18934;2103;6139
-101;'360;Indonesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38155;3191;2477;6686;10139;4000;20000;10000;66000;67000;20000;10000;10000;1169;9839;11000;8200;12730;8630;8193;9543;10968;12246;72229;171526;541757;900102;1160000;744465;590569;416056;204;108;3034
-101;'360;Indonesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3812;413;847;2010;1656;700;3195;1261;9480;9798;2109;2300;1700;708;2091;3586;2544;6398;3758;1572;2357;2290;2657;4443;11681;28052;43096;50162;36381;31257;23429;87;67;2246
-101;'360;Indonesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45519;134183;113997;41605;43327;30000;20000;45000;125000;259000;1606000;1451900;1824622;228007;139015;95792;61981;81238;68000;39280;54148;60434;69515;38114;66090;58495;70600;44817;57676;41455;9525;40000;315;9965
-101;'360;Indonesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7191;13134;15991;8417;8802;6000;3800;5000;39522;64688;375000;385000;78857;25583;19739;18917;14879;13343;8840;6562;7390;17871;17085;10054;25379;13376;23016;31118;27427;18822;4313;18934;1089;6139
-101;'360;Indonesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12232;24745;63132;52341;58686;52000;75900;93000;83000;130000;127000;86000;72041;50026;59882;137356;50318;105435;98859;42321;63797;32155;26473;25714;42628;20268;21898;21777;17860;44517;19439;14635;36961;4968
-101;'360;Indonesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4896;9863;26159;19939;24870;20092;40449;39145;31433;55483;32566;27710;23052;16661;18792;22618;13361;15284;12734;11046;17839;11974;9523;8621;10071;7652;7614;7848;6289;7275;4450;6412;13458;3272
-101;'360;Indonesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;28;0;0;159;0;0;0;0;0;0;0;0;1104;0
-101;'360;Indonesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42;0;0;10;0;0;0;0;0;0;0;0;1014;0
-101;'360;Indonesia;1868;Sawlogs and veneer logs;5516;Production;m3;4018000;4098000;4099000;4180000;4230000;4380000;4880000;5580000;7080000;10780000;13805000;16921008;26297008;23210000;16200000;23800000;22900000;27300000;25500000;28109008;23664000;22773000;25833000;27342000;23830000;27751000;31586000;35170000;37010000;32360000;35733000;35608000;35587000;32119000;31399000;32583000;30833000;34315000;33300000;27000000;20000100;26500000;26000000;26000000;24223000;21602000;21602000;26855000;22800000;25200000;28000000;28000000;33114000;33114000;33114000;33114000;33114000;33114000;33114000;33114000;14537326;13537392;14700003
-101;'360;Indonesia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;105200;84600;121400;141900;177000;320200;582000;1407400;3719000;7868000;10856000;13388000;18534000;16907008;12884000;18104604;18931800;19457000;18160700;15182000;6488600;3219900;3090500;1820500;53400;53400;62700;139600;67900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1299;840;1271;1656;2428;3576;7609;15440;29257;87201;164580;229302;562343;703955;409552;811115;899004;909312;1550326;1514829;618171;332611;310779;169756;6761;6761;9040;15257;11824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;74000;75000;76000;80000;80000;80000;80000;80000;80000;80000;100000;100000;100000;90000;400000;600000;570000;680000;640000;550000;330000;325000;363000;384000;330000;351000;386000;370000;310000;360000;333000;333000;333000;333000;333000;333000;333000;315000;300000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;189223;205003;205003
-101;'360;Indonesia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;6900;6900;6900;27000;25200;51000;74400;34000;34000;34000;34000;34000;34000;352000;409900;371800;257000;360700;298300;288000;116400;98000;96200;26900;26900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;168;168;168;810;736;1530;5100;1020;1020;1020;1020;1020;1020;14983;25661;27296;18902;52289;40399;38880;20468;14262;14758;4252;4252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3944000;4023000;4023000;4100000;4150000;4300000;4800000;5500000;7000000;10700000;13705000;16821008;26197008;23120000;15800000;23200000;22330000;26620000;24860000;27559008;23334000;22448000;25470000;26958000;23500000;27400000;31200000;34800000;36700000;32000000;35400000;35275000;35254000;31786000;31066000;32250000;30500000;34000000;33000000;27000000;20000100;26500000;26000000;26000000;24223000;21602000;21602000;26855000;22800000;25200000;28000000;28000000;33114000;33114000;33114000;33114000;33114000;33114000;33114000;33114000;14348103;13332389;14495000
-101;'360;Indonesia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;105200;77700;114500;135000;150000;295000;531000;1333000;3685000;7834000;10822000;13354000;18500000;16873008;12532000;17694704;18560000;19200000;17800000;14883700;6200600;3103500;2992500;1724300;26500;26500;62700;139600;67900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1299;672;1103;1488;1618;2840;6079;10340;28237;86181;163560;228282;561323;702935;394569;785454;871708;890410;1498037;1474430;579291;312143;296517;154998;2509;2509;9040;15257;11824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15600000;16800000;18600000;21200000;22600000;22600000;22600000;22600000;22600000;22600000;24200000;21200000;24700000;28000000;29900000;35362000;35362000;35362000;35362000;35362000;42102000;44667000;47992449;49468280;49408400;53719000
-101;'360;Indonesia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;237000;237000;237000;237000;237000;0;0;0;0;0;0
-101;'360;Indonesia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400000;16600000;18400000;21000000;22400000;22400000;22400000;22400000;22400000;22400000;24000000;21000000;24500000;27800000;29700000;35125000;35125000;35125000;35125000;35125000;42102000;44667000;47992449;49468280;49408400;53719000
-101;'360;Indonesia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;13300;7400;15000;9000;16000;25900;26300;23100;24300;24300;112300;318000;360000;451400;468200;468200;303800;399700;200000;144300;172000;146200;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;309;142;150;90;160;400;800;690;723;723;664;1911;2600;3142;5377;5377;3910;4660;2269;2172;2083;1698;496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;39000;42000;25000;19000;20000;30000;40000;40000;30000;24000;112000;318000;360000;451000;468000;468000;304000;400000;575000;741000;741000;631000;631000;1976000;3167000;3373000;4569000;5520000;7477000;8738000;11547000;14000000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;13300;7400;15000;9000;16000;25900;26300;23100;24300;24300;112300;318000;360000;451400;468200;468200;303800;399700;200000;144300;172000;146200;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;309;142;150;90;160;400;800;690;723;723;664;1911;2600;3142;5377;5377;3910;4660;2269;2172;2083;1698;496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;39000;42000;25000;19000;20000;30000;40000;40000;30000;24000;112000;318000;360000;451000;468000;468000;304000;400000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;375000;541000;541000;431000;431000;1776000;2967000;3173000;4369000;5320000;7277000;8538000;11347000;13800000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1871;Other industrial roundwood;5516;Production;m3;1522000;1555000;1588000;1622000;1659000;1696000;1736000;1779000;1822000;1866000;1912000;1959000;2009000;2057000;2106000;2154000;2202000;2248000;2296000;2344500;2394500;2445500;2497500;2548500;2598500;2648500;2696500;2744500;2791500;2838500;2884500;2930500;2975500;3020500;3065500;3111500;3157500;3203500;3248500;3248500;3248500;3248500;3248500;3248500;3248500;3248500;3248500;3248500;3805500;4205500;4705500;4705500;5565000;5565000;5565000;5565000;5565000;5565000;5565000;5565000;5558000;5558000;6000000
-101;'360;Indonesia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;2000;2000;2000;2000;2000;3000;3000;4000;4000;5000;5000;5000;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;7000;7000;7000;7000;7000;7000;7000;7000;0;0;0
-101;'360;Indonesia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1522000;1555000;1588000;1622000;1659000;1696000;1736000;1777000;1820000;1864000;1910000;1957000;2006000;2054000;2102000;2150000;2197000;2243000;2291000;2339000;2389000;2440000;2492000;2543000;2593000;2643000;2691000;2739000;2786000;2833000;2879000;2925000;2970000;3015000;3060000;3106000;3152000;3198000;3243000;3243000;3243000;3243000;3243000;3243000;3243000;3243000;3243000;3243000;3800000;4200000;4700000;4700000;5558000;5558000;5558000;5558000;5558000;5558000;5558000;5558000;5558000;5558000;6000000
-101;'360;Indonesia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1630;Wood charcoal;5510;Production;t;31537;38200;38882;39583;40305;26547;27311;36496;39605;54236;48618;58136;66782;85141;81306;84789;83730;80080;81213;82387;79163;76986;75850;76243;80055;84667;85400;83054;84434;125544;180245;192590;211228;222674;211044;234549;216332;199000;732000;735000;728000;722000;713000;699000;681000;681000;681000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000;664000
-101;'360;Indonesia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;155;74;74;0;0;0;0;0;0;0;0;0;0;0;0;194;110;68;38;47;62;29;185;619;801;523;297;769;1433.52;1194;544
-101;'360;Indonesia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;55;26;26;0;0;0;0;0;0;0;0;0;0;0;0;306;151;161;121;124;136;96;256;673;607;301;178;308;554;602;311
-101;'360;Indonesia;1630;Wood charcoal;5910;Export quantity;t;8500;14500;14500;14500;14500;14500;14500;8400;10700;24500;18000;26600;34300;51700;46900;49400;47353;42700;42800;42900;38500;35100;32700;31800;34300;37600;37000;33300;33300;73000;126300;137249;154547;164400;151200;173100;153300;134400;130000;148700;135400;160400;154474;124276;170648;154780;210343;201250;199058;207937;212457;227820;226510;319780;436510;359761;425861;511022;486424;446628;435872.23;496378;589007
-101;'360;Indonesia;1630;Wood charcoal;5922;Export value;1000 USD;129;149;149;149;149;149;149;61;74;156;183;464;486;2164;1769;1660;1479;1433;1433;3618;3873;2467;1899;1616;2565;2800;3093;3099;4000;17037;15506;20390;27264;28327;24350;39013;31816;29462;23483;29867;20491;15708;17568;19582;24500;27728;46104;54793;64854;64920;82027;101546;113818;154810;181865;187131;235836;288394;268994;260848;284327.6;349768;376518
-101;'360;Indonesia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836000;836000;836000;836000;836000;836000;836000;836000;945000;1488000;1488000;1401000;1659000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000;2176000
-101;'360;Indonesia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;0;1800;0;0;0;712;794;107;107;15715;9998;9739;20089;8649;1534;20715;1182;9665;318;246628;1482160;238;31329.09;692308;1498188
-101;'360;Indonesia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;256;0;0;0;219;347;28;28;1615;1065;1478;2503;977;707;4436;633;3011;142;22188;133003;190;3243.51;84384;158720
-101;'360;Indonesia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236100;270700;222200;185000;254575;208384;320767;491734;396464;730100;144000;611938;1331722;2160696;2215071;2591193;3960293;2566530;2456708;1981510;921758;690997;735743;1514873.58;1357654;1851812
-101;'360;Indonesia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12750;8867;9112;17334;23351;24845;52338;69216;58909;33167;6945;35381;67660;116350;118561;160208;221315;139794;126811;88276;46136;57982;50868;99036.89;96004;152337
-101;'360;Indonesia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;448000;448000;448000;448000;448000;448000;448000;557000;1100000;1100000;1013000;1271000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000;1788000
-101;'360;Indonesia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51400;0;100;400;400;0;1800;0;0;0;0;0;0;0;13085;7978;6152;17213;7952;91;202;200;95;226;246595;1481866;135;30349.15;692134;1498025
-101;'360;Indonesia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;0;8;21;21;0;256;0;0;0;0;0;0;0;1021;535;445;1224;638;41;84;44;95;129;22180;132886;119;2349.51;84276;158645
-101;'360;Indonesia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;3300;38000;281500;306200;663000;900000;800000;747600;627700;436856;574000;536000;555000;648000;400000;208000;240500;205900;140300;182319;140970;250967;410000;325000;719200;140600;607933;1327045;2155210;2196849;2587260;3946746;2491000;2281000;1981000;920858;688195;730069;1501841.73;1334626;1830475
-101;'360;Indonesia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;235;1246;7936;7973;22208;29174;28000;18647;14885;11040;13518;10461;10721;19394;16000;11099;6839;6633;8070;9217;11112;38955;51701;42000;30554;6193;34694;67091;115746;117196;159550;219961;129001;104859;88141;46072;57327;50164;97802.34;94050;150329
-101;'360;Indonesia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000;388000
-101;'360;Indonesia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;30;100;0;0;0;0;0;0;0;0;0;712;794;107;107;2630;2020;3587;2876;697;1443;20513;982;9570;92;33;294;103;979.94;174;163
-101;'360;Indonesia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;5;0;0;0;0;0;0;0;0;0;219;347;28;28;594;530;1033;1279;339;666;4352;589;2916;13;8;117;71;894;108;75
-101;'360;Indonesia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;3000;8100;2300;2500;15000;28100;28100;30200;16300;44700;72256;67414;69800;81734;71464;10900;3400;4005;4677;5486;18222;3933;13547;75530;175708;510;900;2802;5674;13031.85;23028;21337
-101;'360;Indonesia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056;726;2055;932;992;1640;1651;1651;2028;2479;9264;14134;13733;13383;17515;16909;2613;752;687;569;604;1365;658;1354;10793;21952;135;64;655;704;1234.56;1954;2008
-101;'360;Indonesia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-101;'360;Indonesia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;40000;80000;80000;90000;150000;300000;260000;340000;410000;530000;640000
-101;'360;Indonesia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;18;35;25;439;987;396;285;153;265;436;210
-101;'360;Indonesia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;43;17;26;490;333;200;190;165;607;424;152
-101;'360;Indonesia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12148;37095;75912;64458;85151;145457;277952;243787;331244;372984.4;513933;620796
-101;'360;Indonesia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365;4350;9753;5225;7109;15383;41116;27416;33391;38086.87;64261;76235
-101;'360;Indonesia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;40000;80000;80000;90000;140000;290000;250000;330000;400000;520000;630000
-101;'360;Indonesia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;18;35;25;439;107;216;92;16;0;234;7
-101;'360;Indonesia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;43;17;26;490;34;40;31;5;1;48;5
-101;'360;Indonesia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12148;37095;75912;64458;85151;135402;276414;242591;328909;368107;508650;615491
-101;'360;Indonesia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365;4350;9753;5225;7109;12478;40459;26763;32457;36413.75;62914;74676
-101;'360;Indonesia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000
-101;'360;Indonesia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;180;193;137;265;202;203
-101;'360;Indonesia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;160;159;160;606;376;147
-101;'360;Indonesia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10055;1538;1196;2335;4877.39;5283;5305
-101;'360;Indonesia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2905;657;653;934;1673.12;1347;1559
-101;'360;Indonesia;1872;Sawnwood;5516;Production;m3;1748000;1776000;1804000;1801000;1799000;1796000;1800000;1681000;1701000;1701000;1706000;1706000;1411000;1829000;2415000;3022000;3510000;3501300;3407500;4814500;5268500;6824500;6314500;6619500;7117500;7548500;9886500;10289500;10357000;9145000;8637500;8437500;8337500;6837500;6637500;7337500;7237500;7125000;6625000;6500000;6750000;6230000;7620000;4330000;4330000;4330000;4330000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;2694699;2697951;2717145;2621512;2299114;2299114
-101;'360;Indonesia;1872;Sawnwood;5616;Import quantity;m3;3300;2600;2600;2600;2600;2600;1900;1900;1900;200;900;900;900;500;1000;800;800;100;100;100;100;;;;;;;;;;;7873;13908;12800;33300;32500;74000;35400;64900;122000;97500;144145;151016;198634;196584;302329;275240;299440;240879;247123;311967;234305;230677;245991;238669;245265;264415;287918;360902;291725;282453;293082;257856
-101;'360;Indonesia;1872;Sawnwood;5622;Import value;1000 USD;128;101;101;101;101;101;78;78;78;6;21;21;21;27;151;168;168;25;25;41;41;;;;;;;;;;;4354;5918;8302;20772;22176;31996;24668;29285;48231;37369;46104;47872;65425;71118;89752;106937;121885;78570;95341;111415;103989;102404;109422;113866;109070;127542;146227;141972;116292;155093;162667;136309
-101;'360;Indonesia;1872;Sawnwood;5916;Export quantity;m3;10800;8300;8300;8300;6500;4500;7500;10600;33500;44100;80800;107000;330000;278000;395400;656100;594100;756700;1284000;1213800;1182100;1241700;1798100;2209700;2213800;2741400;2336600;3082900;2817200;636400;766000;763084;672448;652600;396900;429000;390400;580500;1328900;1463300;2465000;2735684;2570034;2988551;1961516;1790258;976685;879358;643122;787794;1074838;1011290;740846;568290;483508;505091;519783;491178;364326;354179;399877;351733;286959
-101;'360;Indonesia;1872;Sawnwood;5922;Export value;1000 USD;392;279;279;279;325;225;375;530;1675;1500;2737;2203;16183;22001;31456;49011;50228;85760;235331;260325;190862;188005;285944;338764;344866;574744;400483;579831;819091;143661;350278;348733;363056;367941;225086;275350;249485;258809;547845;624704;801843;677745;676377;670610;664372;535253;428199;363935;250139;313401;455556;417365;329905;403303;356202;365810;418231;397190;237393;211905;193299;249698;187024
-101;'360;Indonesia;1632;Sawnwood, coniferous;5516;Production;m3;26000;26000;27500;26000;25000;23500;25500;9500;29500;29500;32000;32000;25500;5000;10000;16000;5000;1150;4250;14250;15250;23250;15250;16250;49250;103250;133250;113250;119000;137500;137500;137500;137500;137500;137500;137500;137500;125000;125000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-101;'360;Indonesia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1396;2873;1000;4300;9900;43000;20700;46400;86800;65300;106970;116801;124589;107031;211611;168843;199057;135520;151987;181353;157720;162594;172539;156980;150702;141924;169453;245195;187933;155058;168864;150856
-101;'360;Indonesia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;608;190;836;5442;11994;12248;16444;25408;20381;27899;31173;32647;29435;49095;45095;61227;30840;40094;47294;43800;47716;47720;41778;38774;47600;61674;60424;46530;51348;53530;50709
-101;'360;Indonesia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;1400;6700;100;800;700;10800;10800;19800;5200;11300;47600;99400;129100;99800;107800;22400;9900;25327;33401;60800;25000;50000;22400;5500;28900;20300;41000;16363;15868;28387;21439;13918;24715;31573;19440;30824;11838;11040;8846;17290;30508;8809;3783;10283;5326;21179;30877;16733;25959
-101;'360;Indonesia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;76;247;3;119;199;2221;2221;3755;1064;2464;10227;21994;28492;26010;43068;11394;4100;12150;13713;26144;10800;9750;7694;3726;9509;7382;10333;6260;13127;9555;9923;7875;10665;12436;8270;7214;5907;5656;4897;5481;10110;4446;2851;5700;4043;14103;21714;24578;21550
-101;'360;Indonesia;1633;Sawnwood, non-coniferous;5516;Production;m3;1722000;1750000;1776500;1775000;1774000;1772500;1774500;1671500;1671500;1671500;1674000;1674000;1385500;1824000;2405000;3006000;3505000;3500150;3403250;4800250;5253250;6801250;6299250;6603250;7068250;7445250;9753250;10176250;10238000;9007500;8500000;8300000;8200000;6700000;6500000;7200000;7100000;7000000;6500000;6500000;6750000;6230000;7620000;4330000;4330000;4330000;4330000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;4169000;2694699;2697951;2717145;2621512;2299114;2299114
-101;'360;Indonesia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;3300;2600;2600;2600;2600;2600;1900;1900;1900;200;900;900;900;500;1000;800;800;100;100;100;100;;;;;;;;;;;6477;11035;11800;29000;22600;31000;14700;18500;35200;32200;37175;34215;74045;89553;90718;106397;100383;105359;95136;130614;76585;68083;73452;81689;94563;122491;118465;115707;103792;127395;124218;107000
-101;'360;Indonesia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;128;101;101;101;101;101;78;78;78;6;21;21;21;27;151;168;168;25;25;41;41;;;;;;;;;;;3833;5310;8112;19936;16734;20002;12420;12841;22823;16988;18205;16699;32778;41683;40657;61842;60658;47730;55247;64121;60189;54688;61702;72088;70296;79942;84553;81548;69762;103745;109137;85600
-101;'360;Indonesia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;10800;8300;8300;8300;6500;4500;7500;10600;33500;44100;80800;107000;330000;278000;394000;649400;594000;755900;1283300;1203000;1171300;1221900;1792900;2198400;2166200;2642000;2207500;2983100;2709400;614000;756100;737757;639047;591800;371900;379000;368000;575000;1300000;1443000;2424000;2719321;2554166;2960164;1940077;1776340;951970;847785;623682;756970;1063000;1000250;732000;551000;453000;496282;516000;480895;359000;333000;369000;335000;261000
-101;'360;Indonesia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;392;279;279;279;325;225;375;530;1675;1500;2737;2203;16183;22001;31380;48764;50225;85641;235132;258104;188641;184250;284880;336300;334639;552750;371991;553821;776023;132267;346178;336583;349343;341797;214286;265600;241791;255083;538336;617322;791510;671485;663250;661055;654449;527378;417534;351499;241869;306187;449649;411709;325008;397822;346092;361364;415380;391490;233350;197802;171585;225120;165474
-101;'360;Indonesia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;74000;89600;91100;101500;53900;50000;30000;56000;50000;55000;55000;50000;50000;50000;50000;50000;50000;69000;94000;116000;289000;155000;155000;256000;299000;427000;685000;736981;815981;815981;762000;761000;761051;774000;774000;1309188;1398881;1416138;1643500;1548991;1548991
-101;'360;Indonesia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2236;2522;2278;2200;4600;6100;4600;7300;5500;7500;7500;9681;12939;13600;22689;27000;28177;19862;18540;24358;35087;33620;19845;15887;13577;12914;17137;20633;28448;39764;38323;32557
-101;'360;Indonesia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8325;7403;7622;7300;10048;15392;9570;13112;12599;14466;13726;14230;19334;19589;25522;27761;31992;19565;24424;33549;35583;36775;32164;33255;29391;31304;40250;44473;53158;82249;76721;78239
-101;'360;Indonesia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;74000;89600;91100;101500;53900;50000;29000;55600;18000;19084;17705;24900;21500;3000;8000;6000;5400;3700;7100;42175;68144;71963;48923;48439;30812;18745;10371;16027;17689;18093;20129;17418;31806;48275;85472;129460;112925;114000;157159;206817;213104
-101;'360;Indonesia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;15800;18313;16213;18940;12193;11000;7000;29371;22633;23809;23854;29767;26000;3603;15575;15990;3092;1896;2048;33337;41114;40943;32954;41419;44147;39567;21405;34653;44706;38633;41871;38588;41316;57469;76524;113353;93990;78034;117444;122316;129906
-101;'360;Indonesia;1873;Wood-based panels;5516;Production;m3;2700;2700;2700;3000;3600;3632;3527;4737;7442;7842;7842;4342;9742;24527;107527;214527;279527;424527;624527;1011527;1552527;2487527;3203527;3786527;4827527;5975527;6661527;8052527;9084527;8560527;9920527;10503000;10493000;10229000;9869000;10078000;10113000;8159000;8140000;8827000;8024000;8274000;6835000;6041000;5086000;5086000;5086000;4702000;4722000;4372000;4372000;4372000;4396000;4493000;4593000;4643000;4443000;5521533;5356575;5048654;5528611;5283040;5283040
-101;'360;Indonesia;1873;Wood-based panels;5616;Import quantity;m3;8700;4300;4200;4200;2300;2300;400;300;1300;2100;3100;4500;13900;13800;7100;5277;4237;4300;1300;2200;2200;1000;2200;1000;200;200;200;200;200;200;200;17707;23760;32708;24600;42300;36100;23500;27000;54200;55700;102996;73358;156934;217477;264192;406531;616311;508209;612447;773935;778214;809956;637460;529957;512514;511344;356263;447482;350186;479594.99;355401;241753
-101;'360;Indonesia;1873;Wood-based panels;5622;Import value;1000 USD;1756;816;820;820;119;119;84;71;308;468;337;492;2205;3117;1307;1953;1360;2071;542;750;750;319;750;208;47;47;47;47;47;47;47;6805;9675;11121;8620;15317;12881;10018;5764;12139;13100;18446;15039;29544;51794;53177;82991;133821;101892;137658;213574;219689;203571;166035;163255;142416;140682;119074;130192;106854;155569.17;139955;104308
-101;'360;Indonesia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;600;13000;16500;69800;117100;245000;759500;1232300;2106100;3206400;4005700;4709900;5786500;6462300;8157900;8346300;8734600;9938439;9925232;8571529;8677000;8863200;8887200;8077500;6809700;5672300;6780100;5937773;2502505;4457195;3885321;3805308;4077101;3484488;2886135;2821873;2714289;2857314;2999568;3125744;3214732;3349293;3189142;3872367;3711404;3758246;3918959.61;3987823;3727265
-101;'360;Indonesia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;64;867;2137;18330;31720;55736;147895;282270;509719;667427;1151200;1100028;1801820;2131154;2720645;2738484;3243180;3276809;4287661;3778700;3839999;3651240;3467889;2176449;2327498;2058379;1899689;1816568;1723619;1639348;1441271;1694607;1858207;1869455;1558785;1673826;1864330;1866111;1980990;2147132;2169157;1764102;1728572;2208756;1854347;1753720;2381589.66;2849018;1757193
-101;'360;Indonesia;1640;Plywood and LVL;5516;Production;m3;2700;2700;2700;3000;3000;3000;3000;4000;6600;7000;7000;3500;8900;24000;107000;214000;279000;424000;624000;1011000;1552000;2487000;3138000;3600000;4615000;5750000;6400000;7733000;8784000;8250000;9600000;10100000;10050000;9836000;9500000;9575000;9600000;7800000;7500000;8200000;7300000;7550000;6111000;5317000;4534000;4534000;4534000;4150000;4150000;3800000;3800000;3800000;3800000;3800000;3800000;3800000;3600000;4678533;4513575;4205654;4837567;4502852;4502852
-101;'360;Indonesia;1640;Plywood and LVL;5616;Import quantity;m3;8700;4300;4200;4200;2300;2300;400;300;1300;2100;3100;4500;13900;13800;7100;5277;4237;4300;1300;2200;2200;1000;2200;1000;200;200;200;200;200;200;200;8375;11967;3000;1800;3200;0;4600;9100;6000;3500;4733;1744;10105;31846;90289;73226;83011;40114;81481;137848;135638;105005;77562;111939;113881;100286;83060;97346;85751;95986;79133;53654
-101;'360;Indonesia;1640;Plywood and LVL;5622;Import value;1000 USD;1756;816;820;820;119;119;84;71;308;468;337;492;2205;3117;1307;1953;1360;2071;542;750;750;319;750;208;47;47;47;47;47;47;47;4015;5826;1690;1000;2763;0;1632;1719;2672;1464;1535;934;3721;20766;23533;23973;26294;19309;36136;66918;70522;57117;45640;68807;57348;46962;47042;52351;43166;58535;55151;44319
-101;'360;Indonesia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;600;13000;16500;69800;117100;245000;759500;1232300;2106100;3021000;3963900;4606900;5648400;6371900;8038800;8243700;8635300;9761000;9627000;8223000;8376000;8564000;8500000;7424000;6290800;5154000;6336000;5519725;2091930;4008686;3410747;3319173;3487065;2929252;2743268;2636685;2524357;2654221;2742169;2750578;2780017;2890000;2791189;3311451;3073627;3129352;3458179;3486624;3028039
-101;'360;Indonesia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;64;867;2137;18330;31720;55736;147895;282270;509719;663120;1150013;1097121;1794336;2122827;2704493;2724931;3230214;3239282;4227191;3723408;3786000;3603610;3416225;2083863;2256324;1988928;1837915;1748309;1662910;1576900;1374670;1625140;1745179;1772370;1520151;1635372;1817652;1814543;1920613;2059900;2070155;1670979;1642724;2091828;1739299;1641508;2272434;2714619;1609432
-101;'360;Indonesia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000
-101;'360;Indonesia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;978
-101;'360;Indonesia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605;775
-101;'360;Indonesia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23999;29891
-101;'360;Indonesia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20241;24607
-101;'360;Indonesia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;65000;186000;212000;225000;261000;319000;300000;310000;320000;350000;380000;330000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3733;2556;6900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1167;667;2345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;185400;41800;103000;138100;90400;119100;102600;99300;125977;247710;320400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;4307;1187;2907;7484;8327;16152;13553;12966;18270;39092;48050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296000;430000;440000;274000;213000;200000;297000;297000;297000;297000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000
-101;'360;Indonesia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200;10300;6000;6000;5600;19800;14800;20576;17447;38018;60000;130000;233405;355300;271876;328701;390366;428453;535871;430340;290824;278507;273070;142274;225813;148371;218441.41;152103;102966
-101;'360;Indonesia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2944;2900;2900;1134;4597;4831;3964;3909;8282;10459;20623;35407;63973;41439;53463;74656;76113;86454;72690;48986;43494;46740;25231;36512;27910;42110.73;33292;25724
-101;'360;Indonesia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265000;283000;245000;540000;251100;241000;159100;170769;193846;86678;46153;48199;8600;6500;17382;14398;10927;7862;5145;4268;5811;4808;30039;106531;147610;148578;50075.05;70576;105960
-101;'360;Indonesia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39500;42002;31535;74376;34642;30063;19532;24118;25837;11630;5376;10915;2426;1140;2214;1842;2290;2240;1469;1288;2598;1220;4709;13651;16814;16088;9055.66;10930;13511
-101;'360;Indonesia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-101;'360;Indonesia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;2;129;38;176;303;403;435;591;240;320;470;526
-101;'360;Indonesia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;1;42;33;50;95;132;214;171;66;90;162;166
-101;'360;Indonesia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;82;0;0;79;32;4;4;4;4
-101;'360;Indonesia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;57;0;0;29;9;4;4;4;4
-101;'360;Indonesia;1874;Fibreboard;5516;Production;m3;;;;;600;632;527;737;842;842;842;842;842;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;53000;63000;63000;73000;73000;73000;85000;427000;427000;427000;427000;427000;427000;427000;427000;427000;427000;447000;447000;447000;447000;471000;568000;668000;718000;718000;718000;718000;718000;566044;655188;655188
-101;'360;Indonesia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5599;9237;22808;18600;28800;30100;12900;12300;28400;37400;77687;54167;108811;125631;43903;99900;178000;196219;202265;245584;214121;168951;129520;127018;119823;137585;130494;123732;115824;164847.58;123695;84607
-101;'360;Indonesia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623;3182;7086;6220;9610;9981;5486;2911;4870;6805;12947;10196;17541;20569;9021;23611;43554;41144;48059;71964;73053;59958;47672;45412;41479;46848;46587;41158;35712;54833.44;51350;34099
-101;'360;Indonesia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51462;50522;28129;36000;16200;142200;113500;267800;277300;285000;247279;216729;361831;428421;437936;581436;548736;125485;170790;179005;195231;252226;370870;428822;454485;367914;454306;490135;480312;410701.56;430619;593262
-101;'360;Indonesia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19257;21378;7242;14499;5628;20129;18210;36532;39388;42242;44141;34872;50818;61225;58552;110602;95945;36420;36612;44388;49328;58877;85913;96347;91903;81139;103248;98225;96120;100096;123465;134246
-101;'360;Indonesia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000
-101;'360;Indonesia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;3500;7000;7000;4900;7200;6200;9062;5429;11635;11831;17875;53500;82500;6000;5000;5000;4000;4539;2658;2758;2328;2784;4009;2927;2304;4386.58;2967;2378
-101;'360;Indonesia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350;1560;3267;3267;1567;2381;2085;2867;2046;4502;4150;6638;18633;32173;3308;2785;3659;3794;3410;1721;1921;1577;1832;2478;1560;1164;2198.11;1722;1433
-101;'360;Indonesia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20400;4900;9000;9000;90100;105200;132000;107777;84765;64631;88421;40000;170500;127800;0;0;108;231;261;209;120;100;81;6057;62;27;27;28;19
-101;'360;Indonesia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11558;2029;3128;3128;18082;22543;27140;23113;16817;14451;21064;12200;60441;44193;0;0;366;673;864;506;272;234;185;4395;115;48;64;78;46
-101;'360;Indonesia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;65000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;253000;350000;450000;500000;500000;500000;500000;500000;500000;500000;500000
-101;'360;Indonesia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;19500;13400;4500;4900;6200;18500;46229;32762;81200;100000;13028;0;0;98000;110000;150000;151000;140000;113000;114000;111000;130528;119501;114372;105847;153878.58;116037;79440
-101;'360;Indonesia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4593;7573;5606;1929;1020;1262;3339;7996;6757;11646;15000;1183;0;0;28373;35479;51789;56450;52319;43253;41617;38683;43328;41386;38203;32723;50896.27;48272;31875
-101;'360;Indonesia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;9400;42200;70500;160400;158000;148000;136678;127624;277200;300000;340936;340936;340936;85485;127790;115600;145000;176000;297000;385000;411000;336000;402000;420339;463193;383504.04;379363;537192
-101;'360;Indonesia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1681;3304;10835;12304;17158;16272;14488;20440;17355;32367;33861;39800;39800;39800;30266;29602;31165;39640;42436;70427;84252;80372;72062;85869;87705;92258;94174.3;112700;124459
-101;'360;Indonesia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;50000;50000;50000;50000;50000;0;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;178000;26044;115188;115188
-101;'360;Indonesia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;712;1315;1700;5800;9700;1400;2500;15000;12700;22396;15976;15976;13800;13000;46400;95500;92219;87265;90584;59121;24412;13862;10260;6495;4273;6984;6433;7673;6582.41;4691;2789
-101;'360;Indonesia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;301;457;277;477;1108;290;324;1227;1381;2084;1393;1393;1419;1200;4978;11381;9463;9795;16516;12809;4229;2698;1874;1219;1688;2723;1395;1825;1739.06;1356;791
-101;'360;Indonesia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35157;38945;18875;10800;1900;91000;34000;17300;14100;5000;2824;4340;20000;40000;57000;70000;80000;40000;43000;63297;50000;75965;73661;43702;43385;31833;46249;69734;17092;27170.51;51228;56051
-101;'360;Indonesia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13317;16798;4308;1260;295;6166;2778;1292;573;614;588;700;4000;6300;6552;10361;11952;6154;7010;12857;9015;15577;14980;11823;11297;8892;12984;10405;3814;5857.7;10687;9741
-101;'360;Indonesia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;600;632;527;737;842;842;842;842;842;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;527;13000;13000;13000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5049;8525;21493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;2881;6629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16305;11577;9254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5940;4580;2934;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1879;Total fibre furnish;5510;Production;t;6000;8000;10000;10000;10000;10000;10000;10700;14700;17000;19000;24000;38500;45500;49000;63000;51000;66000;178000;187000;195000;282000;310000;439000;571000;621000;592000;317000;651000;973000;1140000;1460000;1719000;2136000;2722000;3541000;4203000;3119000;2949000;6167000;6301000;6301000;6301000;6301000;6301000;5552000;7152000;9464000;9003000;9754000;10494000;10644000;10716000;10711000;11061000;11203000;11015309;11467309;11422309;12207749;11935892;12209400;12209400
-101;'360;Indonesia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;9000;9000;11000;15400;18800;21900;31400;57000;101100;70300;98700;151100;193600;349200;320600;290700;427100;469900;526600;466700;679900;792900;1351052;1579144;1702898;1628324;1573500;2178600;2645100;2793200;3184400;3047800;2799147;2573881;2830650;2612145;2798143;2950823;2893300;3160752;3282615;3190246;3223321;3341611;3373760;2526037;2952341;3206206;4246687;4205751;4015759;4367182.85;4009651;4049118
-101;'360;Indonesia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;571;482;541;1349;3534;4025;7183;14759;26200;21984;41297;65158;75298;133567;119547;82297;128000;189543;220476;214615;205892;221081;367556;400770;506196;511582;413840;514948;473633;534012;904827;561207;514222;540265;641522;624220;708888;898861;1109380;789548;1193085;1269120;1128812;1243083;1272587;884273;923792;1142411;1359673;1177252;1040827;1607973.32;1651350;1190714
-101;'360;Indonesia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;130000;128600;133316;131692;482969;925240;1480000;1485300;1734400;1187600;1375000;1715200;2264566;2393287;1692168;2484805;2776339;2346419;2642819;2209517;2566729;2952695;3202646;3745799;3515790;3418912;3542028;4555821;4142092;4660460;4934336;5092423.22;4473143;5490509
-101;'360;Indonesia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100;70343;60230;54043;44852;143630;290790;503899;572895;695257;474689;725539;565697;709183;793813;591749;891401;1093537;978787;1428426;845937;1452113;1557949;1546468;1852366;1722107;1729968;1564281;2334013;2530905;2441023;2149943;2595321.29;2748971;2775165
-101;'360;Indonesia;1878;Pulp for paper;5510;Production;t;6000;8000;10000;10000;10000;10000;10000;10700;14700;15000;17000;22000;36500;42500;46000;50000;35000;46000;78000;77000;115000;144000;158000;189000;221000;221000;192000;192000;501000;786000;835000;1150000;1379000;1796000;2022000;2561000;2979000;1895000;1725000;4189000;4431000;4431000;4431000;4431000;4431000;3682000;5282000;5753000;5069000;5820000;6560000;6710000;6782000;6777000;7127000;7269000;7782000;8234000;8189000;8974440;8702583;8976091;8976091
-101;'360;Indonesia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;3400;6900;8500;19200;41400;81500;57800;87000;139800;180500;331200;256900;182100;281200;243900;204200;241700;216600;241700;468550;706732;693384;684924;636700;796600;614300;757200;756700;564200;590547;559815;628750;654145;716625;726023;812900;876096;870153;866486;930833;1125187;1093376;833686;931508;1014007;1053361;1023698;1015706;923546.88;949181;803118
-101;'360;Indonesia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;798;2790;3074;6128;13197;24188;20699;40064;63989;73894;131530;109818;66180;106000;136990;144050;161315;115095;121919;218443;272376;330073;328745;308930;355967;275647;339205;505103;260326;257997;262938;328360;335720;399088;481884;593470;466408;646624;658281;628518;769906;797321;562899;558507;663378;851065;724448;602934;684697.09;834541;682713
-101;'360;Indonesia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;130000;128600;116473;114775;126621;568892;1128600;1285300;1634400;1176100;1352800;1697900;2245066;2375587;1676813;2468880;2761539;2327919;2622019;2194681;2546711;2934514;3196640;3719189;3498132;3402171;3534620;4452167;4088674;4638702;4917253;5075919.07;4455051;5470302
-101;'360;Indonesia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100;70343;60230;51619;40805;70341;217501;432838;532895;675257;473616;722089;562993;706778;791390;589461;889937;1091037;976318;1425799;844510;1449617;1555085;1545308;1848348;1719327;1727590;1562901;2285996;2518343;2438137;2147260;2592828.29;2745891;2771682
-101;'360;Indonesia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;500;2500;1000;5000;10000;20000;46000;46000;50000;55000;69000;100000;137000;137000;108000;108000;417000;702000;751000;1034000;1259000;1696000;1933000;2482000;2900000;1816000;1646000;4089000;4326000;4326000;4326000;4326000;4326000;3577000;5177000;5648000;4964000;5715000;6455000;6605000;6677000;6672000;7022000;7331953;7848270;8268335;8784000;9769440;9797583;10071091;10071091
-101;'360;Indonesia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;3400;6700;8200;19400;40400;102600;92700;117800;152300;166500;281500;222900;187700;297300;256000;242200;320600;296100;335400;595938;839600;848564;839024;827900;963600;837400;957100;970400;786600;813747;728794;887877;902517;913772;858089;1156300;1068078;1233612;1304476;1334831;1630089;1601422;1299086;1405978;1505960;1497991;1433754;1315471;1381593.7;1336457;1146544
-101;'360;Indonesia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;798;2712;2978;6224;12840;30318;32568;47159;65347;67013;111060;95981;67825;112000;145759;163456;230766;174057;183407;301083;345701;438129;436623;461597;461486;411055;448862;643409;403201;365320;354032;505030;505934;535668;594836;944050;606114;1023015;1163360;1021446;1241416;1250404;942093;961429;1097237;1247264;1071404;795606;1073300.67;1211146;986540
-101;'360;Indonesia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;130000;128600;114833;109180;123594;565594;1127202;1284702;1655600;1196900;1356300;1699200;2245166;2375087;1677363;2493340;2861373;2439019;2733119;2244488;2572858;2960682;3196836;3718046;3497630;3400394;3533991;4592306;4225827;5333325;5792091;6194858.07;5788094;6671117
-101;'360;Indonesia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100;70343;60230;50001;37515;68940;215310;431574;532515;689375;487981;724225;563253;706714;790730;589711;905256;1156080;1066259;1515740;867571;1466277;1571783;1545738;1847651;1719108;1726754;1562530;2376116;2619751;2807998;2541571;3323682.29;3689517;3485527
-101;'360;Indonesia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277000;277000;277000;277000;0;0;0
-101;'360;Indonesia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173188;190532;168374;183511;207294.79;201593;193674
-101;'360;Indonesia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97541;122253;93547;91281;114393.13;131510;126001
-101;'360;Indonesia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43958;33031;33031;43411;0
-101;'360;Indonesia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29081;15173;15173;24996;0
-101;'360;Indonesia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;33000;36000;49000;60000;60000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-101;'360;Indonesia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;400;200;3300;13500;17800;30300;15800;39200;23900;35000;38300;36300;46400;33900;18000;13400;13100;43300;45600;45371;60856;42267;42267;71300;56200;166000;93000;114000;71000;86640;73371;98255;112861;153500;165400;164600;138928;159233;231043;212205;225666;173219;115223;111436;;;;;;;
-101;'360;Indonesia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;56;58;920;4090;5648;9357;4468;15841;8900;13055;14182;15802;15610;12000;7929;7100;6887;17823;19732;17024;21985;17623;17623;29925;20345;63866;34279;63891;31164;33805;32737;45654;48454;76700;92224;113152;63639;97506;131541;123042;133180;104671;56830;47667;;;;;;;
-101;'360;Indonesia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;18600;2872;3592;3592;3592;100;400;200;200;100;200;1888;500;500;500;1200;1200;1200;0;0;0;0;0;0;0;0;;;;;;;
-101;'360;Indonesia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657;8005;1330;1144;1144;1144;48;107;174;174;120;270;1047;280;250;250;519;519;519;0;0;0;0;0;0;0;0;;;;;;;
-101;'360;Indonesia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;48000;48000;48000;35000;35000;48000;76000;81000;112000;136000;136000;80000;216000;216000;0;0;463000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;277000;;;;;;;
-101;'360;Indonesia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;100;300;500;500;100;200;300;300;2300;1800;5200;1000;1000;1600;17700;25700;41100;37700;3600;23682;57896;40057;40057;114300;76000;38500;47000;55200;70900;56572;43515;50488;60322;55400;53500;66700;58888;68593;61915;50513;63833;52393;48290;55555;;;;;;;
-101;'360;Indonesia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;19;90;146;237;41;59;120;120;1200;711;2288;566;566;1000;7938;12001;19282;16188;1238;8769;20471;18000;18000;43088;26307;14625;18210;28204;31483;20888;17810;22010;25044;25993;28042;44509;27657;43108;35106;28164;34996;30741;23802;23829;;;;;;;
-101;'360;Indonesia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;0;0;0;0;0;0;0;0;0;332;0;239;0;0;0;0;0;;;;;;;
-101;'360;Indonesia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;475;386;0;0;0;0;0;0;0;0;0;248;0;430;0;0;0;0;0;;;;;;;
-101;'360;Indonesia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;500;2500;1000;5000;10000;20000;46000;46000;50000;55000;69000;52000;89000;89000;73000;73000;359000;593000;634000;873000;1063000;1500000;1853000;2266000;2684000;1816000;1646000;3626000;4049000;4049000;4049000;4049000;4049000;3300000;4900000;5371000;4687000;5438000;6178000;6328000;6400000;6395000;6745000;6887000;7400000;7852000;7807000;8592440;8597583;8871091;8871091
-101;'360;Indonesia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;2900;6200;4400;4600;20500;42400;28300;30000;96100;110500;229200;163500;95900;219900;196600;160100;185500;134500;191100;398067;585570;609461;600000;448900;661400;408200;615200;580900;418900;443135;439429;477227;477234;503325;501223;573200;666065;625164;559969;639884;823221;852377;660342;751035;832076;855940;846475;824014;704378.11;738553;601710
-101;'360;Indonesia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;723;2564;1912;1554;6406;12068;11443;14661;44447;45397;90310;69418;33686;82000;112791;109679;132481;78807;97461;189374;224250;291282;290000;230992;305349;193832;282966;403086;191907;197285;208346;255696;255698;289995;351217;421168;354334;479607;466077;448056;583037;638363;464978;466669;549248;715163;613699;496421;548446.13;682736;538529
-101;'360;Indonesia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;115700;110000;111961;105588;120000;562000;1127100;1284300;1633000;1174300;1352000;1697100;2242978;2374487;1676163;2468246;2755739;2322119;2616219;2194257;2546611;2934196;3196039;3718046;3497630;3400118;3533989;4451896;4087901;4594037;4883328;5041796.07;4410918;5469760
-101;'360;Indonesia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100;63686;52225;48671;36371;67795;214165;431525;532407;674464;472659;721387;562248;705532;790410;588961;889506;1088018;973299;1422780;844144;1449440;1554516;1544997;1847651;1719108;1726542;1562528;2285803;2515867;2407314;2130002;2576145.29;2717940;2768553
-101;'360;Indonesia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;140000;140000;95000;86000;115000;165000;165000;165000;165000;165000;100000;100000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-101;'360;Indonesia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;200;500;5400;12200;8900;7900;12800;13200;23800;18100;25300;30100;43600;22000;14300;8900;5700;41416;22594;83269;83000;50100;87600;17300;27200;40100;26700;35881;25354;29120;29807;31952;42989;26000;28526;34548;31914;36136;64823;67462;57785;63766;59460;52425;78669;55091;62846;59537;55205
-101;'360;Indonesia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;68;124;1488;3265;3463;4018;6500;5346;8401;7039;7570;9000;21841;13422;8440;3985;2419;16701;7879;39365;39000;22021;34003;6590;10470;23523;12169;15313;10971;14073;15426;17269;27603;16785;15253;24361;23174;23021;41079;47519;37216;37243;36684;44148;53841;29835;48186;51740;40258
-101;'360;Indonesia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16001;12859;4900;4800;2000;2400;0;0;0;2300;54;3074;4119;8206;3000;0;400;87;675;0;0;0;0;0;0;0;0;0;39680;8900.03;41000;41000
-101;'360;Indonesia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5939;4141;1901;1845;640;898;0;0;0;761;39;1217;1701;2906;1417;0;279;68;378;0;0;0;0;0;0;0;0;0;17934;3824.65;21383;21383
-101;'360;Indonesia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;500;2500;1000;5000;10000;20000;46000;46000;50000;55000;69000;52000;89000;89000;73000;73000;359000;593000;634000;873000;1063000;1500000;1723000;2126000;2544000;1721000;1560000;3511000;3884000;3884000;3884000;3884000;3884000;3200000;4800000;5371000;4687000;5438000;6178000;6328000;6400000;6395000;6745000;6887000;7400000;7852000;7807000;8592440;8597583;8871091;8871091
-101;'360;Indonesia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;2400;2700;100;1500;11200;26600;15600;19200;60000;62500;144500;87700;43200;136100;106500;105400;148200;105400;152200;312763;526408;483255;475000;391800;533000;329400;521500;513400;334800;375677;374607;413581;414890;448266;428899;525800;606093;573854;519078;574076;729525;766195;574115;650122;734270;756114;725543;731401;591864.1;628655;510859
-101;'360;Indonesia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;561;1197;26;438;3554;7547;6584;9319;25100;26187;58410;37772;17246;55000;63949;73979;108105;63061;76591;151062;200491;231665;231400;202796;251791;161027;242514;362469;155446;167189;181088;225427;224249;258849;304109;389449;321950;442764;434866;403668;521233;576911;407133;404147;487235;634330;526627;440722;459389.67;578703;458100
-101;'360;Indonesia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;115700;110000;92598;91257;113000;556000;1124000;1225400;1633000;1174300;1344200;1692200;2242896;2371296;1671424;2459420;2752220;2321600;2615300;2193651;2545417;2933677;3195492;3717459;3497111;3399381;3531959;4451896;4087901;4590676;4838375;5032896.04;4369918;5428760
-101;'360;Indonesia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100;63686;52225;41267;31721;65007;212000;430590;506858;674464;472659;716804;561102;705388;789079;586660;886000;1086266;972964;1422166;843741;1448727;1554181;1544658;1847307;1718773;1725447;1560591;2285803;2515867;2404984;2108385;2572320.64;2696555;2747168
-101;'360;Indonesia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38346;47401;42263;37522;49668.02;50361;35646
-101;'360;Indonesia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25329;36685;33231;25864;40870.46;52293;40171
-101;'360;Indonesia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3361;5273;0;0;0
-101;'360;Indonesia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2330;3683;0;2;2
-101;'360;Indonesia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;500;800;700;300;900;300;1700;1100;500;1100;500;6500;700;3300;2100;2000;6600;15600;18700;33857;23925;25262;25000;6000;32100;54300;50800;16400;43600;19783;31572;28416;24710;12386;21617;8700;14557;5612;654;3891;987;4034;3190;1831;;;;;;;
-101;'360;Indonesia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;162;171;247;106;306;96;586;324;147;413;201;1598;211;1000;1224;998;3580;7461;8887;14695;8424;9634;9600;5078;13649;21430;21217;8684;15770;7656;11951;12197;10795;6482;13987;4893;6294;3741;475;2205;560;2774;1154;977;;;;;;;
-101;'360;Indonesia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;200;200;200;300;1600;0;0;0;100;0;110;100;100;0;0;0;0;0;0;28;68;0;87;59;;;;;;;
-101;'360;Indonesia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;64;64;70;81;714;0;0;0;21;0;90;100;100;0;0;0;0;0;0;4;9;0;110;47;;;;;;;
-101;'360;Indonesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;2700;3400;2300;3000;3300;2100;1800;22800;33700;60400;51200;26700;50400;44400;30700;16400;4600;14500;10031;12643;17675;17000;1000;8700;7200;15700;11000;13800;11794;7896;6110;7827;10721;7718;12700;16889;11150;8323;25781;27886;14686;25252;35316;;;;;;;
-101;'360;Indonesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;1196;1571;886;1058;1160;810;1000;12700;13451;23298;23009;8659;17000;25777;21280;12356;4300;9564;6916;7456;10618;10000;1097;5906;4785;8765;8410;8522;7127;4336;3999;5228;7395;5518;10041;10837;8741;7562;19162;20165;11159;19475;24302;;;;;;;
-101;'360;Indonesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1272;1900;1000;800;54900;0;0;7800;2500;28;7;520;520;519;519;519;519;519;519;519;519;519;650;1971;;;;;;;
-101;'360;Indonesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1302;445;823;250;214;23937;0;0;4583;364;105;24;500;500;335;335;335;335;335;335;335;335;335;985;1890;;;;;;;
-101;'360;Indonesia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167953;171270;139335;700000;900000;1200000;1200000;1200000
-101;'360;Indonesia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;800;2000;29700;48300;48300;30000;19200;8800;22100;44400;41900;23700;43000;80900;80600;95100;128818;135278;156779;156700;193400;170000;224700;201900;220300;225800;227400;172479;261907;252100;201547;137966;351800;204197;380622;451549;432229;517369;523433;475231;487952;500696;451519;418905;307946;469920.8;396311;351160
-101;'360;Indonesia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;343;745;8834;16537;16537;10800;7850;4280;10195;17963;17000;17101;34676;72116;61239;64976;85916;78995;111224;111000;157592;109485;138732;113407;148228;148647;113342;95139;181670;176738;142980;123353;365221;160484;402794;530636;422184;490203;476629;396483;423264;450448;409848;364158;207904;410461.42;396900;322010
-101;'360;Indonesia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;21400;21400;4200;1900;300;100;700;24594;104434;115700;115700;49899;26247;26247;797;0;0;276;2;140410;137926;695330;875732;1120031;1333765;1201357
-101;'360;Indonesia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;14262;14762;2718;735;135;40;500;15500;67543;92441;92441;23179;16837;16837;741;0;0;212;2;90313;103884;371603;396396;732364;946581;716974
-101;'360;Indonesia;1668;Pulp from fibres other than wood;5510;Production;t;6000;8000;10000;10000;10000;10000;10000;10700;14700;15000;17000;22000;36000;40000;45000;45000;25000;26000;32000;31000;65000;89000;89000;89000;84000;84000;84000;84000;84000;84000;84000;116000;120000;100000;89000;79000;79000;79000;79000;100000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000;105000
-101;'360;Indonesia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;200;300;600;3000;8600;13400;17500;17500;33200;58500;56100;38800;25800;11600;5000;2000;1100;1400;1430;2410;1599;2600;2200;3000;1600;2000;6600;3400;4200;3500;2780;3728;4400;5900;8400;12215;17163;13559;28231;12467;15387;9831;13482;8743;6889;8849;8181;11873.97;9035;7734
-101;'360;Indonesia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;78;96;247;1102;2704;4668;9442;9442;14731;24750;24032;16318;11000;8332;15270;2665;2277;3488;3276;5670;3168;3122;4925;3966;3324;3750;9922;5772;6019;4045;5000;6524;6400;10401;14641;20778;26403;25557;29256;18693;23546;17289;20342;16589;13649;17202;15232;21857.84;20295;18183
-101;'360;Indonesia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640;5595;3029;3300;1400;600;200;600;700;600;200;600;150;134;4600;4600;4600;92;100;79;601;1143;502;2053;631;271;773;707;894;1092;722;542
-101;'360;Indonesia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618;3290;1402;2192;1265;381;144;397;582;475;199;700;250;181;2500;2500;2500;118;177;139;311;697;219;1048;373;193;2476;1742;2085;1510;2955;3129
-101;'360;Indonesia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10200;1600;2000;8400;8400;5736;5736;5736;1050;420;136;242;67;154;2922;218;174;1099;1496;1058;1043.78;2195;583
-101;'360;Indonesia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3827;609;900;1440;1440;1828;1828;1828;739;426;249;292;165;256;985;376;309;940;1260;956;978.11;1503;539
-101;'360;Indonesia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;656;7232;145;3211;1086;5552;65200;65226;154333;86876
-101;'360;Indonesia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;132;4537;155;1710;916;1526;8494;8501;30976;19752
-101;'360;Indonesia;1669;Recovered paper;5510;Production;t;;;;;;;;;;2000;2000;2000;2000;3000;3000;13000;16000;20000;100000;110000;80000;138000;152000;250000;350000;400000;400000;125000;150000;187000;305000;310000;340000;340000;700000;980000;1224000;1224000;1224000;1978000;1870000;1870000;1870000;1870000;1870000;1870000;1870000;3711000;3934000;3934000;3934000;3934000;3934000;3934000;3934000;3934000;3233309;3233309;3233309;3233309;3233309;3233309;3233309
-101;'360;Indonesia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;9000;9000;11000;12000;11900;13400;12200;15600;19600;12500;11700;11300;13100;18000;63700;108600;145900;226000;322400;225000;463300;551200;882502;872412;1009514;943400;936800;1382000;2030800;2036000;2427700;2483600;2208600;2014066;2201900;1958000;2081518;2224800;2080400;2284656;2412462;2323760;2292488;2216424;2280384;1692351;2020833;2192199;3193326;3182053;3000053;3443635.97;3060470;3246000
-101;'360;Indonesia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;571;482;541;551;744;951;1055;1562;2012;1285;1233;1169;1404;2037;9729;16117;22000;52553;76426;53300;90797;99162;149113;128394;176123;182837;104910;158981;197986;194807;399724;300881;256225;277327;313162;288500;309800;416977;515910;323140;546461;610839;500294;473177;475266;321374;365285;479033;508608;452804;437893;923276.23;816809;508001
-101;'360;Indonesia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16843;16917;356348;356348;351400;200000;100000;11500;22200;17300;19500;17700;15355;15925;14800;18500;20800;14836;20018;18181;6006;26610;17658;16741;7408;103654;53418;21758;17083;16504.15;18092;20207
-101;'360;Indonesia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2424;4047;73289;73289;71061;40000;20000;1073;3450;2704;2405;2423;2288;1464;2500;2469;2627;1427;2496;2864;1160;4018;2780;2378;1380;48017;12562;2886;2683;2493;3080;3483
-101;'360;Indonesia;1876;Paper and paperboard;5510;Production;t;10000;10000;10000;15000;16000;18000;19000;19000;19000;19000;19000;19000;43200;43000;46000;58000;78000;154000;212000;231000;258000;329000;374000;403000;500000;611000;813000;974000;1158000;1438000;1755000;2263000;2600000;3054000;3425000;4121000;4822000;5487000;6978000;6977000;6995000;6995000;7040000;7223000;7223000;7223000;7727000;9731000;9908000;9908000;10034000;10247000;10247000;10376256;10554716;11015709;11693369;11803369;11953369;11953369;11953369;11953369;11953369
-101;'360;Indonesia;1876;Paper and paperboard;5610;Import quantity;t;99800;49100;49100;49100;35000;35000;56600;69600;79700;116600;108700;126000;200500;174379;219759;227700;213200;222900;197900;212600;226600;266800;256100;244300;216800;181100;119600;107900;120000;113400;111400;162088;177042;212730;140300;198800;273000;117800;139000;230700;234200;259299;227834;345865;348000;326643;345170;400500;344629;382990;454479;482896;579951;541315;472098;616505;721319;704405;798340;610000;641715.7;794500;725646
-101;'360;Indonesia;1876;Paper and paperboard;5622;Import value;1000 USD;23170;14080;14080;14080;9080;9080;13673;19159;19906;28535;27365;24887;44253;53007;50841;95430;99898;114398;106017;98169;104169;141478;140210;133857;121279;106000;115847;127899;146580;173746;170284;148294;159563;184817;141439;199390;248768;142737;162907;213178;222488;238932;228725;355469;367384;369918;392990;496643;410702;520467;641407;653705;770452;750469;606306;678963;800315;876002;906686;696325;822567.86;1040256;958935
-101;'360;Indonesia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;6500;7000;8100;5600;10800;25200;36100;67300;169400;198700;202400;166200;363300;481534;668855;696363;926900;1212600;1150000;2264900;2923800;2716800;2315900;2365126;2062237;2479875;2967159;3504751;3665303;3574100;3788360;3910373;3727131;3751587;3939926;4013734;4005598;3830635;4349672;4804402;5160412;5868894;5150128.15;4952614;5457214
-101;'360;Indonesia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;350;400;4700;2800;6700;18600;27698;36109;86364;125138;140697;115284;209476;260733;391223;460347;584243;718154;754798;1152534;1447351;1688475;1298491;1271959;1203357;1650108;2093044;2532161;2912533;3232952;2894477;3570526;3544143;3345032;3265015;3267942;3134449;2994005;3326215;3974411;3860772;3632886;3734590.56;4222561;4198377
-101;'360;Indonesia;2042;Graphic papers;5510;Production;t;3000;3000;3000;5000;6000;8000;9000;9000;9000;9000;9000;9000;40200;38600;45000;45000;61000;94000;119000;121000;135000;161000;173000;205000;264000;296000;406000;488000;565000;661000;750000;904000;1039000;1231000;1304000;1503000;1900000;2333000;3265000;3295000;3208000;3208000;3253000;3254000;3254000;3254000;3254000;5109000;5343000;5343000;5411000;5526000;5526000;4402971;4374842;4524195;4863491;4973491;5123491;5123491;5123491;5123491;5123491
-101;'360;Indonesia;2042;Graphic papers;5610;Import quantity;t;57200;25900;25900;25900;26500;26500;40600;52600;57700;84600;71700;73000;96400;82300;54700;89500;75100;120700;95700;100700;114700;120600;130000;125200;105900;55800;15100;11100;19000;32900;42100;68291;58656;72216;30400;74500;152000;51800;33700;56600;49200;83000;62212;110301;99452;111543;74900;91900;96740;107673;152872;148125;154974;143277;93813;114336;160673;200956;214192;168502;169404.48;194183;180622
-101;'360;Indonesia;2042;Graphic papers;5622;Import value;1000 USD;11651;5321;5321;5321;4900;4900;10016;13053;12720;19201;17560;12830;19638;26231;19185;37117;32636;58000;49619;51645;57645;56421;67428;60734;52341;29000;19625;14021;30580;48142;75120;55095;50144;65920;29139;67220;126674;71869;55522;50059;57780;80257;62388;112407;110238;107813;97615;129937;129854;171935;190953;199433;197458;183852;84647;102678;162614;212994;203422;151724;169114.27;221502;209490
-101;'360;Indonesia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;6500;7000;7000;1300;6900;23200;30100;36000;90200;110700;122700;81600;172700;282115;520880;462496;500000;636200;789000;1885200;2233900;2037100;1812400;1820400;1654495;2121877;2572605;3097810;3294885;3132600;3295862;3385166;3188930;3118183;3117179;3161707;3013598;3056441;3186105;3257665;3349943;3178535;3250099.25;3247217;3154232
-101;'360;Indonesia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;350;400;4200;800;4800;17600;24398;26078;58154;89905;107884;69510;122578;181643;319406;339329;406743;513939;592250;1015232;1210226;1403176;1106491;1068158;1027458;1468275;1836321;2280832;2633812;2872355;2538019;3089017;3004623;2703002;2607191;2594572;2363745;2297981;2424850;2758332;2577612;2097516;2368668.17;2759163;2637635
-101;'360;Indonesia;1671;Newsprint;5510;Production;t;;;;;1000;2000;3000;3000;3000;3000;3000;3000;;;;;;;;;;;;;63000;46000;122000;147000;147000;157000;151000;169000;195000;239000;243000;267000;390000;478000;532000;477000;511000;511000;556000;557000;557000;557000;557000;613000;642000;642000;650000;664000;664000;328971;312842;322195;314491;314491;314491;314491;314491;314491;314491
-101;'360;Indonesia;1671;Newsprint;5610;Import quantity;t;19600;7900;7900;7900;16200;16200;16100;26100;24000;40600;31700;47000;69700;59400;46700;67500;56100;86000;61000;66000;80000;95000;110800;106800;95400;45800;1400;3500;5000;13800;22600;21965;8347;4200;4000;37500;65000;3600;1100;3800;4200;900;2500;18660;10821;23620;4500;1400;3729;6725;8410;15023;6938;3781;16265;12597;6685;2447;9372;11294;8234;5306;8599
-101;'360;Indonesia;1671;Newsprint;5622;Import value;1000 USD;3079;1187;1187;1187;2300;2300;3210;4875;3944;6903;7903;6799;12424;18580;14282;22237;19345;31355;22974;25000;31000;37000;46034;47178;40863;14000;450;1806;2580;10442;13506;10305;3548;1758;3139;27393;35585;1835;450;1525;2053;536;1107;10760;7152;13650;2514;1133;2108;4548;5974;9347;4140;2734;8574;6951;3830;1762;5385;5398;4541;3901;5889
-101;'360;Indonesia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;1200;8200;17300;16700;3000;600;6300;79300;102626;67100;58000;58200;189000;373000;296100;323100;332600;317200;227270;250177;257300;285428;218039;181700;211865;176987;153612;174862;176477;168775;140967;141816;18179;110518;59254;23004;19028.6;59887;29392
-101;'360;Indonesia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;398;2978;8272;10154;1900;466;3090;34422;44126;35626;39743;33901;85292;128510;125902;164754;183589;126235;95823;120169;134600;159600;118962;127286;108117;102713;102684;109315;108107;99191;71902;69981;9257;64420;31113;10552;10883.46;43565;22269
-101;'360;Indonesia;1674;Printing and writing papers;5510;Production;t;3000;3000;3000;5000;5000;6000;6000;6000;6000;6000;6000;6000;40200;38600;45000;45000;61000;94000;119000;121000;135000;161000;173000;205000;201000;250000;284000;341000;418000;504000;599000;735000;844000;992000;1061000;1236000;1510000;1855000;2733000;2818000;2697000;2697000;2697000;2697000;2697000;2697000;2697000;4496000;4701000;4701000;4761000;4862000;4862000;4074000;4062000;4202000;4549000;4659000;4809000;4809000;4809000;4809000;4809000
-101;'360;Indonesia;1674;Printing and writing papers;5610;Import quantity;t;37600;18000;18000;18000;10300;10300;24500;26500;33700;44000;40000;26000;26700;22900;8000;22000;19000;34700;34700;34700;34700;25600;19200;18400;10500;10000;13700;7600;14000;19100;19500;46326;50309;68016;26400;37000;87000;48200;32600;52800;45000;82100;59712;91641;88631;87923;70400;90500;93011;100948;144462;133102;148036;139496;77548;101739;153988;198509;204820;157208;161170.48;188877;172023
-101;'360;Indonesia;1674;Printing and writing papers;5622;Import value;1000 USD;8572;4134;4134;4134;2600;2600;6806;8178;8776;12298;9657;6031;7214;7651;4903;14880;13291;26645;26645;26645;26645;19421;21394;13556;11478;15000;19175;12215;28000;37700;61614;44790;46596;64162;26000;39827;91089;70034;55072;48534;55727;79721;61281;101647;103086;94163;95101;128804;127746;167387;184979;190086;193318;181118;76073;95727;158784;211232;198037;146326;164573.27;217601;203601
-101;'360;Indonesia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;6500;7000;7000;1300;6900;23200;28900;27800;72900;94000;119700;81000;166400;202815;418254;395396;442000;578000;600000;1512200;1937800;1714000;1479800;1503200;1427225;1871700;2315305;2812382;3076846;2950900;3083997;3208179;3035318;2943321;2940702;2992932;2872631;2914625;3167926;3147147;3290689;3155531;3231070.66;3187330;3124840
-101;'360;Indonesia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;350;400;4200;800;4800;17600;24000;23100;49882;79751;105984;69044;119488;147221;275280;303703;367000;480038;506958;886722;1084324;1238422;922902;941923;931635;1348106;1701721;2121232;2514850;2745069;2429902;2986304;2901939;2593687;2499084;2495381;2291843;2228000;2415593;2693912;2546499;2086964;2357784.71;2715598;2615366
-101;'360;Indonesia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;1100;6500;3700;3200;2274;5676;3813;3813;6300;8300;12128;7511;10684;11644;13958;10494;6043;15205;12825;12825;13536;9459;13823.63;13073;21513
-101;'360;Indonesia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3404;1918;5681;3499;2839;1952;3789;2803;2117;5322;9337;11583;8227;11400;12560;16231;12662;9446;10412;10235;10235;10971;7123;10555.37;20159;37233
-101;'360;Indonesia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;300;1200;100;15000;20000;30000;57205;55510;55500;54100;57446;43294;38401;38934;22725;924;2368;1564;305;1115;627;274;77;112;71
-101;'360;Indonesia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;154;1110;131;12300;18200;25000;42121;46418;46419;52869;42898;40949;34884;33482;19500;1941;4140;2642;525;1464;913;384;146;328;163
-101;'360;Indonesia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1113132;1639994;1691000;1619000;1619000;1619000;1619000;1619000;1619000;1619000;2699000;2822000;2822000;2858000;2919000;2919000;2446000;2439000;2523000;2740000;2850000;3000000;3000000;3000000;3000000;3000000
-101;'360;Indonesia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19600;20600;26300;15000;35200;17438;15965;16818;22724;26100;35500;36266;42154;66309;39104;29499;40287;29647;20739;40527;37092;49457;37583;29242.34;31377;36200
-101;'360;Indonesia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14007;16244;21771;13650;24081;14329;13858;12283;17646;20488;31805;29447;38544;65443;45929;42985;45259;28906;20507;44435;43240;41388;36408;34331.74;38387;36436
-101;'360;Indonesia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735300;1000000;817400;782000;806800;740891;1033200;1427900;1864965;2196300;2121200;2247098;2292834;2259996;2324646;2246647;2395909;2350003;2444866;2777834;2841019;2989276;2880918;2917612.83;2919526;2862968
-101;'360;Indonesia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444800;563250;599011;492605;493720;473104;736906;1049100;1384914;1754411;1924900;1708577;2070466;2071252;2038470;1821463;1910017;1788844;1791540;2031399;2355965;2241119;1822413;2007636.39;2378044;2322439
-101;'360;Indonesia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741868;1093006;1127000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1797000;1879000;1879000;1903000;1943000;1943000;1628000;1623000;1679000;1809000;1809000;1809000;1809000;1809000;1809000;1809000
-101;'360;Indonesia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300;10900;20000;26300;43700;40000;70000;68000;61386;38000;46700;44617;51283;67469;82354;104579;88715;41858;65795;100636;148592;141827;110166;118104.52;144427;114310
-101;'360;Indonesia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52623;36910;21082;38578;52801;45000;84000;88000;74400;69291;87662;86716;120616;108136;131597;134102;123197;37721;64808;104114;157757;145678;102795;119686.17;159055;129932
-101;'360;Indonesia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;776100;937500;895400;697700;681400;666334;808500;830200;891907;825046;775600;779453;872051;736921;579741;671330;596099;520260;468195;389787;305013;300786;274339;313380.83;267692;261801
-101;'360;Indonesia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441403;520920;638301;430166;435903;440331;586200;610500;689900;714020;767300;678427;874889;795803;521735;658121;583423;498859;433818;383669;336483;304467;264167;350002.33;337226;292764
-101;'360;Indonesia;1675;Other paper and paperboard;5510;Production;t;7000;7000;7000;10000;10000;10000;10000;10000;10000;10000;10000;10000;3000;4400;1000;13000;17000;60000;93000;110000;123000;168000;201000;198000;236000;315000;407000;486000;593000;777000;1005000;1359000;1561000;1823000;2121000;2618000;2922000;3154000;3713000;3682000;3787000;3787000;3787000;3969000;3969000;3969000;4473000;4622000;4565000;4565000;4623000;4721000;4721000;5973285;6179874;6491514;6829878;6829878;6829878;6829878;6829878;6829878;6829878
-101;'360;Indonesia;1675;Other paper and paperboard;5610;Import quantity;t;42600;23200;23200;23200;8500;8500;16000;17000;22000;32000;37000;53000;104100;92079;165059;138200;138100;102200;102200;111900;111900;146200;126100;119100;110900;125300;104500;96800;101000;80500;69300;93797;118386;140514;109900;124300;121000;66000;105300;174100;185000;176299;165622;235564;248548;215100;270270;308600;247889;275317;301607;334771;424977;398038;378285;502169;560646;503449;584148;441498;472311.21;600317;545024
-101;'360;Indonesia;1675;Other paper and paperboard;5622;Import value;1000 USD;11519;8759;8759;8759;4180;4180;3657;6106;7186;9334;9805;12057;24615;26776;31656;58313;67262;56398;56398;46524;46524;85057;72782;73123;68938;77000;96222;113878;116000;125604;95164;93199;109419;118897;112300;132170;122094;70868;107385;163119;164708;158675;166337;243062;257146;262105;295375;366706;280848;348532;450454;454272;572994;566617;521659;576285;637701;663008;703264;544601;653453.59;818754;749445
-101;'360;Indonesia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;1100;4300;3900;2000;6000;31300;79200;88000;79700;84600;190600;199419;147975;233867;426900;576400;361000;379700;689900;679700;503500;544726;407742;357998;394554;406941;370418;441500;492498;525207;538201;633404;822747;852027;992000;774194;1163567;1546737;1810469;2690359;1900028.9;1705397;2302982
-101;'360;Indonesia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;500;2000;1900;1000;3300;10031;28210;35233;32813;45774;86898;79090;71817;121018;177500;204215;162548;137302;237125;285299;192000;203801;175899;181833;256723;251329;278721;360597;356458;481509;539520;642030;657824;673370;770704;696024;901365;1216079;1283160;1535370;1365922.39;1463398;1560742
-101;'360;Indonesia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;29000;35000;47000;60000;82000;93000;109000;127000;92000;89000;111000;162000;161000;175000;175000;175000;181000;181000;181000;63000;348000;417000;417000;422000;431000;431000;573456;659809;872934;970712;970712;970712;970712;970712;970712;970712
-101;'360;Indonesia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;100;79;59;200;100;200;200;200;200;1700;2200;2600;4000;3500;1800;2400;2000;1600;1300;1000;2000;1500;1100;1100;1000;600;600;2100;1300;2100;1500;6358;4880;1900;2300;2300;1982;2401;2542;1473;3989;6103;1826;3698;4917;5883;6111;7352;10479.33;11808;10771
-101;'360;Indonesia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;44;20;15;51;159;273;273;273;273;1537;2165;2302;3600;3100;1669;2261;2000;1699;1561;1161;2200;1146;1300;1397;1300;1141;1141;2208;1801;2140;1800;6394;5832;3800;4044;5489;4543;7030;7676;5672;10393;12514;4961;11079;9199;11782;11724;13254;16819.99;20517;20514
-101;'360;Indonesia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3500;5000;4700;300;2800;9200;9200;13300;12000;9400;6000;45000;71800;78700;77400;81500;74273;61780;50000;88400;117900;159800;217769;272616;304400;304100;334935;302283;406201;496492;546087;569081;773371;843754;593574.94;684443;767053
-101;'360;Indonesia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;1090;1515;2400;2000;484;2746;9161;9200;13044;12500;10579;6700;34823;53542;63900;56978;59160;56228;51151;46100;88100;123351;182842;206101;303119;344398;333841;375167;353188;438938;503520;528745;628990;785960;762649;573136.4;793166;838443
-101;'360;Indonesia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2831000;3417000;3411000;3497000;3497000;3497000;3673000;3673000;3673000;4295000;4185000;4062000;4062000;4114000;4201000;4201000;5258534;5371956;5465304;5704180;5704180;5704180;5704180;5704180;5704180;5704180
-101;'360;Indonesia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54500;77200;138200;150700;139800;128900;186388;203668;166200;213760;252900;201025;211854;231755;239433;385072;361175;341248;455642;508911;453153;531847;394212;406756.71;526991;486112
-101;'360;Indonesia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36607;58501;102057;105587;97108;92550;135268;144714;141305;150665;220638;155520;184447;249376;238387;442034;449118;400134;458134;521580;531003;571000;426363;511530.8;658889;588221
-101;'360;Indonesia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326400;562300;545900;375400;412700;295956;269604;314254;286941;205418;235100;224288;205197;176881;210073;438027;493501;534292;228541;566112;918377;979880;1789681;1248930.19;970481;1477150
-101;'360;Indonesia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98653;160171;194248;111008;121129;94217;103135;184923;136864;89652;103252;76624;100618;109118;135315;231540;264085;276792;134151;312407;514584;416210;702151;704252.96;555887;617458
-101;'360;Indonesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;297000;355000;433000;567000;734000;992000;1140000;1331000;1549000;2407000;2590000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;12000;10000;17000;25000;29000;45000;88000;74000;152000;123000;120000;77300;77300;69700;69700;105400;84700;83200;73900;85900;69900;58100;64000;50000;61300;80397;101386;124014;47000;72200;44000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;1550;2218;3897;5066;5342;7629;15782;16575;23498;46118;47223;33720;33720;24976;24976;51978;41766;44401;36914;43000;46007;46295;51000;37731;88103;81345;94219;101751;34000;53934;30000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;22900;61500;62300;55000;69300;142100;124719;88775;160567;389000;542400;298000;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;5787;19324;20805;20000;28078;51779;27220;32617;71974;150000;179411;123848;;;;;;;;;;;;;;;;;;;;;;;;;;
-101;'360;Indonesia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1471424;1776000;1992000;1974000;1974000;1974000;2011000;2011000;2011000;2633000;2407000;2336000;2336000;2366000;2416000;2416000;3089000;3156000;3211000;3351000;3351000;3351000;3351000;3351000;3351000;3351000
-101;'360;Indonesia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19700;13600;28400;21900;22600;20000;37190;41469;32000;64060;81500;72740;61519;63443;49420;107700;64634;70529;90667;142572;107318;168822;100372;88101;136523;112350
-101;'360;Indonesia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9558;6180;13537;9346;8925;7700;21159;25134;23758;26735;43385;33297;34732;41655;28001;59685;40439;41054;73892;142372;87166;117199;65437;77831;118153;63537
-101;'360;Indonesia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231300;278400;234200;116500;121600;100000;102920;80000;93541;63218;106900;122105;172039;140002;95125;292321;310419;332333;75198;416521;730583;820657;1572420;992588.46;743041;1239332
-101;'360;Indonesia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63286;72399;76416;30093;31566;27000;36950;30100;42864;22409;44372;34094;72434;69827;41104;133168;137432;144382;30803;203103;361744;297451;562874;486892.8;336411;435456
-101;'360;Indonesia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232815;1488000;1218000;1349000;1349000;1349000;1495000;1495000;1495000;1495000;1688000;1638000;1638000;1659000;1694000;1694000;2166000;2213000;2251000;2350000;2350000;2350000;2350000;2350000;2350000;2350000
-101;'360;Indonesia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;12500;21400;19500;20000;13000;34500;34457;34000;17600;19900;13082;16714;15175;22722;126382;139242;140427;219272;195889;195088;193959;169849;172635;242457;246258
-101;'360;Indonesia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;19582;28001;23915;23119;17500;34300;35027;41000;12192;17335;12497;19276;18523;24985;215845;236628;238620;253152;235878;272820;268938;242741;282650;366789;358615
-101;'360;Indonesia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60200;115800;133200;137600;130100;74650;76750;100000;101400;3700;1800;1508;7020;13693;88680;128748;149898;160157;108931;92557;125965;111108;149127;174006.59;133229;115019
-101;'360;Indonesia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19844;40270;58410;49786;47939;32357;33235;84000;52000;1943;1289;612;6393;12585;65616;84229;93146;91803;61725;59008;92730;71846;89662;140982.18;123382;79573
-101;'360;Indonesia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90307;109000;157000;130000;130000;130000;91000;91000;91000;91000;90000;88000;88000;89000;91000;91000;3534;2956;3304;3180;3180;3180;3180;3180;3180;3180
-101;'360;Indonesia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29600;49500;86300;107400;96000;93500;108100;121581;96700;128600;148000;111703;133621;153137;159041;145990;153102;125159;137170;165158;145393;162912;118647;139426.05;139195;118411
-101;'360;Indonesia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23529;31868;58886;70945;64414;66000;76280;81267;74000;109191;157371;107179;130439;189198;178459;161677;167386;116952;125522;139256;166589;179776;114029;145345.98;166149;159430
-101;'360;Indonesia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16700;31400;21500;9600;18000;32158;36663;71654;52000;98500;86400;60675;26138;23186;17200;5956;26051;34535;36025;41170;44614;37622;47199;55331.44;69683;62927
-101;'360;Indonesia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9699;20040;16685;9070;11467;14135;17926;53723;31000;54300;46591;30918;21791;26706;23349;8129;29701;37121;37727;42570;50212;41232;41037;61588.29;84022;79610
-101;'360;Indonesia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36454;44000;44000;44000;44000;44000;76000;76000;76000;76000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-101;'360;Indonesia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;1600;2100;1900;1200;2400;6598;6161;3500;3500;3500;3500;0;0;8250;5000;4197;5133;8533;5292;5354;6154;5344;6594.66;8816;9093
-101;'360;Indonesia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2959;871;1633;1381;650;1350;3529;3286;2547;2547;2547;2547;0;0;6942;4827;4665;3508;5568;4074;4428;5087;4156;5703.82;7798;6639
-101;'360;Indonesia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18200;136700;157000;111700;143000;89148;53271;62600;40000;40000;40000;40000;0;0;9068;11002;7133;7267;8387;15864;17215;10493;20935;27003.69;24528;59872
-101;'360;Indonesia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5824;27462;42737;22059;30157;20725;15024;17100;11000;11000;11000;11000;0;0;5246;6014;3806;3486;3896;7726;9898;5681;8578;14789.69;12072;22819
-101;'360;Indonesia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;7000;7000;7000;10000;10000;10000;10000;10000;10000;10000;10000;10000;3000;4400;1000;13000;17000;60000;93000;110000;123000;168000;201000;198000;236000;315000;85000;102000;125000;163000;211000;285000;328000;383000;445000;119000;243000;212000;134000;110000;115000;115000;115000;115000;115000;115000;115000;89000;86000;86000;87000;89000;89000;141295;148109;153276;154986;154986;154986;154986;154986;154986;154986
-101;'360;Indonesia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;4000;7000;5000;7000;8000;8000;16000;18000;13000;15000;18000;24700;24700;42000;42000;39100;39200;33300;33000;35900;32800;36300;35000;28900;6700;12400;15000;15000;61800;51000;76000;10900;27500;33800;33000;34399;35222;42818;40000;47000;54210;53400;44882;61062;67310;93865;35916;30760;35211;42829;46818;44413;46190;39934;55075.17;61518;48141
-101;'360;Indonesia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;2107;3888;3289;4268;4463;4428;8789;10181;8143;12144;19880;22405;22405;21275;21275;31542;28851;26420;28424;30900;48546;65322;63000;86174;5500;10693;13000;16000;77000;76839;90794;33120;47743;58854;57320;59427;71987;101400;106600;117000;140666;140579;120785;157055;193402;210213;120567;104985;116564;107072;106922;120223;120540;104984;125102.8;139348;140710
-101;'360;Indonesia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;6700;14200;20700;20000;15000;45700;65500;50000;60000;25900;24600;57000;8300;55800;55100;50700;50526;37513;26614;30300;31600;47100;46600;50441;47394;56920;119231;49785;56243;51507;49161;51368;59279;57218;56924;57523.77;50473;58779
-101;'360;Indonesia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3154;7371;12028;10813;17212;32373;42709;30000;36000;15000;14225;32000;3826;23412;27151;24014;23512;25454;27547;25700;26365;65718;74503;73733;77772;86004;172874;51117;56097;54974;58353;60213;72505;80990;70570;88533.03;114345;104841
-101;'360;Indonesia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154956;198938;209340;200193;255010;220845;209707
-101;'360;Indonesia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057165;3061674;2912502;2941464;3713674;3450454;2799740
-101;'360;Indonesia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165;738;644;689;612;887;521
-101;'360;Indonesia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;682592;705768;610937;623411;714410;577170;530787
-101;'360;Indonesia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;439;445;579;509;622;221
-101;'360;Indonesia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8777;11157;10704;9685;16226;10645;20319
-101;'360;Indonesia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667;299;199;110;103;265;300
-101;'360;Indonesia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673815;694611;600233;613726;698184;566525;510468
-101;'360;Indonesia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2061;1526;1607;1772;3438;2747;2848
-101;'360;Indonesia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7257;8828;7373;7825;7886;8755;8933
-101;'360;Indonesia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2204;2416;2718;1625;2563;2738;2085
-101;'360;Indonesia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134096;139308;134066;117662;140888;145949;129577
-101;'360;Indonesia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7434;7131;6702;7364;10077;9245;9504
-101;'360;Indonesia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394453;441352;417837;409678;540489;553157;470948
-101;'360;Indonesia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;60000
-101;'360;Indonesia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;0
-101;'360;Indonesia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636;0
-101;'360;Indonesia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46763;57381
-101;'360;Indonesia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56712;66187
-101;'360;Indonesia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;84
-101;'360;Indonesia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;38
-101;'360;Indonesia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45
-101;'360;Indonesia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84
-101;'360;Indonesia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-101;'360;Indonesia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13
-101;'360;Indonesia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118720;160112;171363;168252;213592;176163;169359
-101;'360;Indonesia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304947;1360407;1388662;1514149;1999007;1958080;1481166
-101;'360;Indonesia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;58;456;78;271;2274;354
-101;'360;Indonesia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2959;4491;5424;2022;2082;2608;2759
-101;'360;Indonesia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23103;26957;25850;20413;24457;26791;25036
-101;'360;Indonesia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530861;401520;348203;266717;308912;204735;175570
-101;'360;Indonesia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566953;648864;677741;568847;706418;754364;678462
-101;'360;Indonesia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472651;530401;509101;559718;519211;584860;595945
-101;'360;Indonesia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6512;7398;8717;6969;5550;7127;4316
-101;'360;Indonesia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;2500;5631;72;0;0;0
-101;'360;Indonesia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90141;105941;105563;91272;119222;136057;126441
-101;'360;Indonesia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32582;35070;39770;40179;38205;50921;37333
-101;'360;Indonesia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6755;9573;12807;9257;9528;12897;9708
-101;'360;Indonesia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94988;110659;97642;165332;106630;125942;179522
-101;'360;Indonesia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279697;321332;335863;289816;353582;369418;341575
-101;'360;Indonesia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114550;132391;158839;159000;174864;166752;151962
-101;'360;Indonesia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183848;204620;214791;171533;218536;228865;196422
-101;'360;Indonesia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230448;249781;207219;195135;199512;241245;227128
-102;'364;Iran (Islamic Republic of);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1716664;1490650;1763713;1371216;1369938;1402994;1358052
-102;'364;Iran (Islamic Republic of);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127125;220318;202340;177717;252671;202487;154792
-102;'364;Iran (Islamic Republic of);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;15788;17408;16880;19504;23964;22930;30910;38902;63516;64228;129551;175478;171228;146259;367038;350717;464957;438132;430902;374485;335972;289975;374912;349612;175521;268502;310592;235155;232053;580989;434507;386404;129440;234453;328077;520804;277966;199133;368685;479652;417077;459991;615460;656746;592802;643661;865052;850563;966622;1468167;1606546;1619344;1112425;1324823;1316572;1360393;1391535;1259919;1458885;1113858;1138982;1171262;1123667
-102;'364;Iran (Islamic Republic of);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;764;558;558;860;1673;1769;1252;2261;2097;1572;357;343;255;205;229;65;38;38;38;38;38;38;38;38;38;38;38;38;38;38;42;32537;302;502;994;950;1517;487;0;0;0;1903;17569;9466;4093;4093;4093;8282;8114;24400;16824;20333;11420;21780;23569;38503;60725;97655;81544;67396;134915;149979;110833
-102;'364;Iran (Islamic Republic of);1861;Roundwood;5516;Production;m3;6350000;6487000;6510000;6622000;6660000;6720000;6731000;5789430;5987383;5959349;5917658;5516590;4797693;4664697;4685060;4648832;4670627;4699412;4721719;4762681;4771551;4662021;4630963;4626994;4621427;4645202;4649014;1095000;1264000;1217000;1495000;1400000;1552000;1583000;1457000;1427000;1499000;1286000;1149000;1114000;1114000;710000;906000;820000;774000;794000;867000;886000;853000;750000;706000;782000;782000;782000;499000;446000;446000;446000;446000;446000;446000;446000;565070
-102;'364;Iran (Islamic Republic of);1861;Roundwood;5616;Import quantity;m3;17000;4300;4300;9900;12900;5400;7400;15400;16600;30300;24200;27000;31400;20300;62600;62400;40400;40400;40400;40400;40400;40400;40400;40400;;;;;;6846;54438;21213;4443;7573;7299;8400;9457;9000;8400;8400;15180;36500;22683;14684;98013;98013;122751;107751;100751;7056;100067;83129;7758;13081;7642;19402;22226;19386;20963;2507;82;747;5822
-102;'364;Iran (Islamic Republic of);1861;Roundwood;5622;Import value;1000 USD;1155;297;297;815;1102;403;576;1639;1236;2368;2048;2266;1231;1729;15276;13449;11144;11144;11144;11144;11144;11144;11144;11144;;;;;;762;5072;5752;403;764;680;1843;729;591;1064;1064;1062;2532;1454;966;5639;5639;8080;6764;6435;993;6695;4870;765;1198;789;2179;3837;2034;2260;360;66;334;1269
-102;'364;Iran (Islamic Republic of);1861;Roundwood;5916;Export quantity;m3;5900;4500;4500;6300;11200;11200;7600;7900;9800;7200;1400;2000;700;0;100;100;;;;;;;;;;;;;;;30;30;76;308;308;85;85;0;0;0;0;0;46;46;46;46;46;46;46;107;107;7107;121;18;47;124;155;1;5;2;1;0;6812
-102;'364;Iran (Islamic Republic of);1861;Roundwood;5922;Export value;1000 USD;764;558;558;860;1673;1673;1136;2003;1932;1367;152;138;50;0;24;27;;;;;;;;;;;;;;;4;4;11;27;27;10;10;0;0;0;0;0;23;23;23;23;23;23;23;155;155;3636;211;65;51;59;15;1;5;7;1;0;3603
-102;'364;Iran (Islamic Republic of);1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4624;2797;2400;2394;70;95;70
-102;'364;Iran (Islamic Republic of);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;275;148;351;28;31;28
-102;'364;Iran (Islamic Republic of);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1863;Roundwood, non-coniferous;5516;Production;m3;6350000;6487000;6510000;6622000;6660000;6720000;6731000;5789430;5987383;5959349;5917658;5516590;4797693;4664697;4685060;4648832;4670627;4699412;4721719;4762681;4771551;4662021;4630963;4626994;4621427;4645202;4649014;1095000;1264000;1217000;1495000;1400000;1552000;1583000;1457000;1427000;1499000;1286000;1149000;1114000;1114000;710000;906000;820000;774000;794000;867000;886000;853000;750000;706000;782000;782000;782000;499000;446000;446000;446000;446000;446000;446000;446000;565070
-102;'364;Iran (Islamic Republic of);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17602;16589;18563;113;12;652;5752
-102;'364;Iran (Islamic Republic of);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3506;1759;2112;9;38;303;1241
-102;'364;Iran (Islamic Republic of);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;1;1;2;1;0;6812
-102;'364;Iran (Islamic Republic of);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1;1;7;1;0;3603
-102;'364;Iran (Islamic Republic of);1864;Wood fuel;5516;Production;m3;1175000;1200000;1300000;1414000;1450000;1500000;1500000;485430;476383;468349;429658;384590;361693;339697;328060;291832;294627;323412;345719;386681;395551;355021;323963;319994;314427;338202;342014;289000;367000;326000;363000;338000;357000;355000;307000;287000;286000;227000;189000;54000;54000;103000;93000;77000;72000;65000;67000;67000;60000;53000;46000;52000;52000;52000;34000;30000;30000;30000;30000;30000;30000;30000;149070
-102;'364;Iran (Islamic Republic of);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;;0;0;0;0;0;0;0;180;1500;1079;1079;1079;1079;1079;1079;1079;1079;1600;1600;1600;1600;1600;1600;33;82;82;78;82;82;82
-102;'364;Iran (Islamic Republic of);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;;0;0;0;0;0;0;0;12;100;136;136;136;136;136;136;136;136;178;178;178;178;178;178;8;66;66;29;66;66;66
-102;'364;Iran (Islamic Republic of);1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;0;0;0;0;0;46;46;46;46;46;46;46;107;107;107;107;4;41;41;4;1;1;1;1;0;0
-102;'364;Iran (Islamic Republic of);1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;23;23;23;23;23;23;23;155;155;155;155;9;49;49;8;1;1;1;1;0;0
-102;'364;Iran (Islamic Republic of);1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;70;70;70;70;70;70
-102;'364;Iran (Islamic Republic of);1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;28;28;28;28;28;28
-102;'364;Iran (Islamic Republic of);1628;Wood fuel, non-coniferous;5516;Production;m3;1175000;1200000;1300000;1414000;1450000;1500000;1500000;485430;476383;468349;429658;384590;361693;339697;328060;291832;294627;323412;345719;386681;395551;355021;323963;319994;314427;338202;342014;289000;367000;326000;363000;338000;357000;355000;307000;287000;286000;227000;189000;54000;54000;103000;93000;77000;72000;65000;67000;67000;60000;53000;46000;52000;52000;52000;34000;30000;30000;30000;30000;30000;30000;30000;149070
-102;'364;Iran (Islamic Republic of);1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;8;12;12;12
-102;'364;Iran (Islamic Republic of);1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;1;38;38;38
-102;'364;Iran (Islamic Republic of);1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;1;1;0;0
-102;'364;Iran (Islamic Republic of);1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;1;1;1;0;0
-102;'364;Iran (Islamic Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;;0;0;0;0;0;0;0;180;1500;1079;1079;1079;1079;1079;1079;1079;1079;1600;1600;1600;1600;1600;1600;;;;;;;
-102;'364;Iran (Islamic Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;;0;0;0;0;0;0;0;12;100;136;136;136;136;136;136;136;136;178;178;178;178;178;178;;;;;;;
-102;'364;Iran (Islamic Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;0;0;0;0;0;46;46;46;46;46;46;46;107;107;107;107;4;41;41;;;;;;;
-102;'364;Iran (Islamic Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;23;23;23;23;23;23;23;155;155;155;155;9;49;49;;;;;;;
-102;'364;Iran (Islamic Republic of);1865;Industrial roundwood;5516;Production;m3;5175000;5287000;5210000;5208000;5210000;5220000;5231000;5304000;5511000;5491000;5488000;5132000;4436000;4325000;4357000;4357000;4376000;4376000;4376000;4376000;4376000;4307000;4307000;4307000;4307000;4307000;4307000;806000;897000;891000;1132000;1062000;1195000;1228000;1150000;1140000;1213000;1059000;960000;1060000;1060000;607000;813000;743000;702000;729000;800000;819000;793000;697000;660000;730000;730000;730000;465000;416000;416000;416000;416000;416000;416000;416000;416000
-102;'364;Iran (Islamic Republic of);1865;Industrial roundwood;5616;Import quantity;m3;17000;4300;4300;9900;12900;5400;7400;15400;16600;30300;24200;27000;31400;20300;62600;62400;40400;40400;40400;40400;40400;40400;40400;40400;;;;;;6846;54438;21022;4443;7573;7299;8400;9457;9000;8400;8400;15000;35000;21604;13605;96934;96934;121672;106672;99672;5977;98467;81529;6158;11481;6042;17802;22193;19304;20881;2429;0;665;5740
-102;'364;Iran (Islamic Republic of);1865;Industrial roundwood;5622;Import value;1000 USD;1155;297;297;815;1102;403;576;1639;1236;2368;2048;2266;1231;1729;15276;13449;11144;11144;11144;11144;11144;11144;11144;11144;;;;;;762;5072;5743;403;764;680;1843;729;591;1064;1064;1050;2432;1318;830;5503;5503;7944;6628;6299;857;6517;4692;587;1020;611;2001;3829;1968;2194;331;0;268;1203
-102;'364;Iran (Islamic Republic of);1865;Industrial roundwood;5916;Export quantity;m3;5900;4500;4500;6300;11200;11200;7600;7900;9800;7200;1400;2000;700;0;100;100;;;;;;;;;;;;;;;30;30;47;279;279;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7000;14;14;6;83;151;0;4;1;0;0;6812
-102;'364;Iran (Islamic Republic of);1865;Industrial roundwood;5922;Export value;1000 USD;764;558;558;860;1673;1673;1136;2003;1932;1367;152;138;50;0;24;27;;;;;;;;;;;;;;;4;4;10;26;26;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3481;56;56;2;10;7;0;4;6;0;0;3603
-102;'364;Iran (Islamic Republic of);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6386;26165;1000;102;600;500;7500;8557;9000;8400;8400;15000;35000;21604;13605;19262;19262;44000;29000;22000;5032;20795;3857;5472;8359;0;9240;4591;2727;2330;2324;0;25;0
-102;'364;Iran (Islamic Republic of);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721;2432;532;8;91;61;1671;557;591;1064;1064;1050;2432;1318;830;1175;1175;3616;2300;1971;723;2189;364;547;813;0;674;323;247;120;323;0;3;0
-102;'364;Iran (Islamic Republic of);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6386;26165;1000;102;600;500;7500;8557;9000;8400;8400;15000;35000;21604;13605;19262;19262;44000;29000;22000;5032;20795;3857;5472;8359;0;9240;4591;2727;2330;2324;0;25;0
-102;'364;Iran (Islamic Republic of);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721;2432;532;8;91;61;1671;557;591;1064;1064;1050;2432;1318;830;1175;1175;3616;2300;1971;723;2189;364;547;813;0;674;323;247;120;323;0;3;0
-102;'364;Iran (Islamic Republic of);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;0;0;0;0
-102;'364;Iran (Islamic Republic of);1867;Industrial roundwood, non-coniferous;5516;Production;m3;5175000;5287000;5210000;5208000;5210000;5220000;5231000;5304000;5511000;5491000;5488000;5132000;4436000;4325000;4357000;4357000;4376000;4376000;4376000;4376000;4376000;4307000;4307000;4307000;4307000;4307000;4307000;806000;897000;891000;1132000;1062000;1195000;1228000;1150000;1140000;1213000;1059000;960000;1060000;1060000;607000;813000;743000;702000;729000;800000;819000;793000;697000;660000;730000;730000;730000;465000;416000;416000;416000;416000;416000;416000;416000;416000
-102;'364;Iran (Islamic Republic of);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;28273;20022;4341;6973;6799;900;900;0;0;0;0;0;0;0;77672;77672;77672;77672;77672;945;77672;77672;686;3122;6042;8562;17602;16577;18551;105;0;640;5740
-102;'364;Iran (Islamic Republic of);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;2640;5211;395;673;619;172;172;0;0;0;0;0;0;0;4328;4328;4328;4328;4328;134;4328;4328;40;207;611;1327;3506;1721;2074;8;0;265;1203
-102;'364;Iran (Islamic Republic of);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;47;279;279;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7000;14;14;6;83;151;0;0;1;0;0;6812
-102;'364;Iran (Islamic Republic of);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;10;26;26;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3481;56;56;2;10;7;0;0;6;0;0;3603
-102;'364;Iran (Islamic Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28217;4322;4322;6699;6699;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;44;7;32;0;6;0;0;412;0
-102;'364;Iran (Islamic Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623;386;386;584;584;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;124;1;21;1;10;0;0;219;0
-102;'364;Iran (Islamic Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;56;15700;19;274;100;900;900;0;0;0;0;0;0;0;77672;77672;77672;77672;77672;945;77672;77672;686;3121;5998;8555;17570;16577;18545;105;0;228;5740
-102;'364;Iran (Islamic Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;17;4825;9;89;35;172;172;0;0;0;0;0;0;0;4328;4328;4328;4328;4328;134;4328;4328;40;207;487;1326;3485;1720;2064;8;0;46;1203
-102;'364;Iran (Islamic Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;47;279;279;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7000;14;14;6;83;151;0;0;1;0;0;6812
-102;'364;Iran (Islamic Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;10;26;26;9;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3481;56;56;2;10;7;0;0;6;0;0;3603
-102;'364;Iran (Islamic Republic of);1868;Sawlogs and veneer logs;5516;Production;m3;175000;287000;210000;208000;210000;220000;231000;300000;507000;478000;478000;584000;413000;318000;350000;350000;369000;369000;369000;369000;369000;300000;300000;300000;300000;300000;300000;266000;267000;267000;320000;324000;412000;396000;386000;371000;409000;341000;310000;319000;319000;66000;292000;274000;250000;285000;321000;321000;275000;263000;254000;286000;286000;286000;201000;162000;162000;162000;162000;162000;162000;162000;162000
-102;'364;Iran (Islamic Republic of);1868;Sawlogs and veneer logs;5616;Import quantity;m3;12200;2200;2200;7700;7700;200;100;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1000;186;186;719;719;20;15;377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1868;Sawlogs and veneer logs;5916;Export quantity;m3;5900;4500;4500;6300;11200;11200;7600;7900;9800;7200;1400;2000;700;0;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1868;Sawlogs and veneer logs;5922;Export value;1000 USD;764;558;558;860;1673;1673;1136;2003;1932;1367;152;138;50;0;24;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;175000;287000;210000;208000;210000;220000;231000;300000;507000;478000;478000;584000;413000;318000;350000;350000;369000;369000;369000;369000;369000;300000;300000;300000;300000;300000;300000;266000;267000;267000;320000;324000;412000;396000;386000;371000;409000;341000;310000;319000;319000;66000;292000;274000;250000;285000;321000;321000;275000;263000;254000;286000;286000;286000;201000;162000;162000;162000;162000;162000;162000;162000;162000
-102;'364;Iran (Islamic Republic of);1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;12200;2200;2200;7700;7700;200;100;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1000;186;186;719;719;20;15;377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;5900;4500;4500;6300;11200;11200;7600;7900;9800;7200;1400;2000;700;0;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;764;558;558;860;1673;1673;1136;2003;1932;1367;152;138;50;0;24;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;394000;488000;488000;306000;286000;240000;246000;235000;248000;248000;222000;199000;176000;196000;196000;196000;99000;116000;116000;116000;116000;116000;116000;116000;116000
-102;'364;Iran (Islamic Republic of);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;394000;488000;488000;306000;286000;240000;246000;235000;248000;248000;222000;199000;176000;196000;196000;196000;99000;116000;116000;116000;116000;116000;116000;116000;116000
-102;'364;Iran (Islamic Republic of);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;415000;400000;575000;508000;523000;580000;509000;525000;536000;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;415000;400000;575000;508000;523000;580000;509000;525000;536000;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1871;Other industrial roundwood;5516;Production;m3;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5004000;5004000;5013000;5010000;4548000;4023000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;210000;215000;224000;237000;230000;260000;252000;255000;244000;268000;270000;256000;253000;253000;235000;235000;229000;206000;209000;231000;250000;296000;235000;230000;248000;248000;248000;165000;138000;138000;138000;138000;138000;138000;138000;138000
-102;'364;Iran (Islamic Republic of);1871;Other industrial roundwood;5616;Import quantity;m3;4800;2100;2100;2200;5200;5200;7300;13300;16600;30300;24200;27000;31400;20300;62600;62400;40400;40400;40400;40400;40400;40400;40400;40400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1871;Other industrial roundwood;5622;Import value;1000 USD;155;111;111;96;383;383;561;1262;1236;2368;2048;2266;1231;1729;15276;13449;11144;11144;11144;11144;11144;11144;11144;11144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5004000;5004000;5013000;5010000;4548000;4023000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;4007000;210000;215000;224000;237000;230000;260000;252000;255000;244000;268000;270000;256000;253000;253000;235000;235000;229000;206000;209000;231000;250000;296000;235000;230000;248000;248000;248000;165000;138000;138000;138000;138000;138000;138000;138000;138000
-102;'364;Iran (Islamic Republic of);1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;4800;2100;2100;2200;5200;5200;7300;13300;16600;30300;24200;27000;31400;20300;62600;62400;40400;40400;40400;40400;40400;40400;40400;40400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;155;111;111;96;383;383;561;1262;1236;2368;2048;2266;1231;1729;15276;13449;11144;11144;11144;11144;11144;11144;11144;11144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1630;Wood charcoal;5510;Production;t;133352;127135;121996;113323;113103;108226;100980;96155;88241;89830;72791;54591;47817;40802;37784;26786;28472;36066;42635;56312;59556;45556;36221;35112;35590;42353;43502;48000;44000;38000;37000;35000;38000;35000;30000;26000;25000;19000;15000;9000;9000;5000;4000;3000;2000;1000;1000;1000;1000;1000;358;494;494;494;339;292;292;292;292;292;292;292;292
-102;'364;Iran (Islamic Republic of);1630;Wood charcoal;5610;Import quantity;t;5700;5700;4900;7900;2700;2700;5000;4900;8200;2300;2200;2900;1900;2000;1600;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;103;63;63;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2800;13000;4326;5090;5531;2319;1829;693;99;56;147;454;1039
-102;'364;Iran (Islamic Republic of);1630;Wood charcoal;5622;Import value;1000 USD;326;326;288;520;145;145;268;265;379;127;130;149;164;171;195;455;350;350;350;350;350;350;350;350;350;350;350;350;350;350;350;19;15;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1706;6636;4133;5213;6132;3222;2211;850;140;74;195;970;1031
-102;'364;Iran (Islamic Republic of);1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;45;45;45;45;45;45;45;45;454;454;165;294;261;357;401;736;1519;2295;3714;2035;2736
-102;'364;Iran (Islamic Republic of);1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;19;19;19;19;19;19;19;19;742;742;102;125;417;620;648;1066;2111;2805;2205;481;671
-102;'364;Iran (Islamic Republic of);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;23;23;23;23;23;23;1600;1600;1600;178;45;10;78;70;60;22;80;28;47;105
-102;'364;Iran (Islamic Republic of);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;8;8;8;8;8;8;178;178;178;125;104;13;86;18;25;7;11;11;22;29
-102;'364;Iran (Islamic Republic of);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;87;87;87;87;87;87;87;17;1589;1589;1592;1580;1675;1675;1675;2744;69;19;19;739;741
-102;'364;Iran (Islamic Republic of);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;43;43;43;43;43;43;43;6;883;883;880;879;882;882;882;279;9;17;17;89;89
-102;'364;Iran (Islamic Republic of);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;47;11;11;21;75;23;23;81
-102;'364;Iran (Islamic Republic of);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;24;9;9;7;9;9;9;16
-102;'364;Iran (Islamic Republic of);1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4667;15700;15700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1572;1572;1572;1572;1572;1572;1572;2727;19;19;19;739;739
-102;'364;Iran (Islamic Republic of);1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;930;930;0;0;0;0;0;0;0;0;0;0;0;0;0;0;877;877;877;877;877;877;877;276;6;17;17;89;89
-102;'364;Iran (Islamic Republic of);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;100;0;0;0;0;0;23;23;23;23;23;23;23;1600;1600;1600;172;39;4;31;59;49;1;5;5;24;24
-102;'364;Iran (Islamic Republic of);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;5;0;0;0;0;0;8;8;8;8;8;8;8;178;178;178;113;92;1;62;9;16;0;2;2;13;13
-102;'364;Iran (Islamic Republic of);1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;87;87;87;87;87;87;87;17;17;17;20;8;103;103;103;17;50;0;0;0;2
-102;'364;Iran (Islamic Republic of);1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;43;43;43;43;43;43;43;6;6;6;3;2;5;5;5;3;3;0;0;0;0
-102;'364;Iran (Islamic Republic of);1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;27000;27000;27000;27000;27000;27000
-102;'364;Iran (Islamic Republic of);1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43
-102;'364;Iran (Islamic Republic of);1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57
-102;'364;Iran (Islamic Republic of);1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;0;0;0;0;0;0;0;2
-102;'364;Iran (Islamic Republic of);1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;0;0;0;0;0;0;0;1
-102;'364;Iran (Islamic Republic of);1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43
-102;'364;Iran (Islamic Republic of);1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57
-102;'364;Iran (Islamic Republic of);1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-102;'364;Iran (Islamic Republic of);1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-102;'364;Iran (Islamic Republic of);1872;Sawnwood;5516;Production;m3;119000;120000;120000;120000;130000;130000;145000;148300;176800;184000;182000;157000;157000;105000;170000;144000;163000;163000;163000;163000;163000;163000;163000;172000;186000;202000;219000;239000;262000;169000;173000;187000;170000;178000;159000;144000;141000;129000;96000;106000;106000;170000;79000;68000;62000;50000;52000;50000;40000;32000;31000;33000;33000;33000;25000;21000;21000;21000;21000;21000;21000;21000;21000
-102;'364;Iran (Islamic Republic of);1872;Sawnwood;5616;Import quantity;m3;59400;65700;57000;60000;101600;94700;66500;99400;111700;115700;127000;115000;101900;74900;216800;227400;438100;335000;329000;342100;300500;180900;368100;305100;94218;61767;146201;108974;100755;153234;133234;31147;15180;5112;3100;60600;98511;97500;123500;127400;186400;357400;507687;650687;760246;658246;909246;826246;916246;946101;1112250;953567;769965;683828;823527;782426;906374;530747;784721;878334;845329;815655;843708
-102;'364;Iran (Islamic Republic of);1872;Sawnwood;5622;Import value;1000 USD;3625;3605;3127;3566;6158;5823;2578;6653;8082;8168;8800;8900;8197;6466;35318;38992;88546;68026;69846;73846;62438;37738;74946;62246;13586;11347;30019;21668;17571;56719;67585;12656;3147;1135;891;10964;11661;8668;23043;23814;14378;34547;48008;59624;71518;76570;162487;161869;156393;172673;237498;213513;171242;134054;130757;110827;145228;136826;115733;136088;134902;132967;144600
-102;'364;Iran (Islamic Republic of);1872;Sawnwood;5916;Export quantity;m3;;;;;;400;400;400;500;600;600;600;600;600;600;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;69;69;212;0;0;96;0;0;0;0;0;318;318;318;318;318;14000;14000;397;2885;430;1801;2825;1960;1380;1088;1207;258;123;379;318;318
-102;'364;Iran (Islamic Republic of);1872;Sawnwood;5922;Export value;1000 USD;;;;;;96;116;258;165;205;205;205;205;205;205;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;28;28;107;0;0;10;0;0;0;0;0;197;197;197;197;197;4386;4386;180;1851;454;1098;1152;835;713;469;506;380;72;150;354;354
-102;'364;Iran (Islamic Republic of);1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1632;Sawnwood, coniferous;5616;Import quantity;m3;50700;57000;48300;51300;92900;93050;66200;98100;96900;105850;111500;114050;101450;74450;187950;192300;398550;323450;323450;339550;295500;175900;363550;300550;92668;55042;129746;107024;100550;151800;131800;28700;14647;4934;3000;57300;96800;97000;120000;123000;182000;353000;505000;648000;756000;654000;905000;822000;912000;939539;1097051;937314;753100;659000;781895;717748;806477;445178;667004;726318;695641;695641;695641
-102;'364;Iran (Islamic Republic of);1632;Sawnwood, coniferous;5622;Import value;1000 USD;3147;3127;2649;3088;5680;5690;2564;6561;6766;7270;7400;8773;8145;6414;29159;31190;79223;65003;68223;72923;60569;35869;73423;60723;12887;10000;24986;20419;17423;56252;67118;11001;2850;1041;796;9581;10461;8496;22732;22371;12935;33104;47263;58879;70302;75354;161271;160653;155177;170091;232548;206956;163755;125702;115788;90578;114577;109682;92707;115167;109757;109757;109757
-102;'364;Iran (Islamic Republic of);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;0;0;0;0;0;0;0;0;0;0;0;0;176;180;180;5;1320;0;0;210;254;0;0;230;0;0
-102;'364;Iran (Islamic Republic of);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0;41;68;46;3;269;0;0;39;65;0;0;38;0;0
-102;'364;Iran (Islamic Republic of);1633;Sawnwood, non-coniferous;5516;Production;m3;119000;120000;120000;120000;130000;130000;145000;148300;176800;184000;182000;157000;157000;105000;170000;144000;163000;163000;163000;163000;163000;163000;163000;172000;186000;202000;219000;239000;262000;169000;173000;187000;170000;178000;159000;144000;141000;129000;96000;106000;106000;170000;79000;68000;62000;50000;52000;50000;40000;32000;31000;33000;33000;33000;25000;21000;21000;21000;21000;21000;21000;21000;21000
-102;'364;Iran (Islamic Republic of);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;8700;8700;8700;8700;8700;1650;300;1300;14800;9850;15500;950;450;450;28850;35100;39550;11550;5550;2550;5000;5000;4550;4550;1550;6725;16455;1950;205;1434;1434;2447;533;178;100;3300;1711;500;3500;4400;4400;4400;2687;2687;4246;4246;4246;4246;4246;6562;15199;16253;16865;24828;41632;64678;99897;85569;117717;152016;149688;120014;148067
-102;'364;Iran (Islamic Republic of);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;478;478;478;478;478;133;14;92;1316;898;1400;127;52;52;6159;7802;9323;3023;1623;923;1869;1869;1523;1523;699;1347;5033;1249;148;467;467;1655;297;94;95;1383;1200;172;311;1443;1443;1443;745;745;1216;1216;1216;1216;1216;2582;4950;6557;7487;8352;14969;20249;30651;27144;23026;20921;25145;23210;34843
-102;'364;Iran (Islamic Republic of);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;400;400;400;500;600;600;600;600;600;600;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;69;69;212;0;0;41;0;0;0;0;0;318;318;318;318;318;14000;14000;221;2705;250;1796;1505;1960;1380;878;953;258;123;149;318;318
-102;'364;Iran (Islamic Republic of);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;96;116;258;165;205;205;205;205;205;205;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;28;28;107;0;0;7;0;0;0;0;0;197;197;197;197;197;4386;4386;139;1783;408;1095;883;835;713;430;441;380;72;112;354;354
-102;'364;Iran (Islamic Republic of);1634;Veneer sheets;5516;Production;m3;;;;;1300;1300;1300;1300;1300;2000;3300;4300;4300;7000;7000;8300;3700;2700;2200;2200;2200;2200;2200;2200;5000;6000;5000;6000;8400;3500;4000;6500;6600;7500;10500;6000;3000;2400;3000;3000;3000;3000;5000;3000;3000;4000;4000;4000;3000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-102;'364;Iran (Islamic Republic of);1634;Veneer sheets;5616;Import quantity;m3;100;100;100;300;300;500;700;1200;1400;1500;2500;1700;2000;2000;1900;2000;2600;2600;2600;2600;2600;2600;2600;2600;1600;1500;1400;1300;1200;1200;1200;1000;130;130;0;1000;194;300;5100;4400;4400;4000;8000;8000;5000;8000;14000;11000;11000;3329;2624;2780;4185;4124;4047;4339;6818;5483;6287;4422;5202;6085;5987
-102;'364;Iran (Islamic Republic of);1634;Veneer sheets;5622;Import value;1000 USD;46;46;34;44;161;161;240;392;543;596;960;985;1059;1059;1676;1923;2675;2675;2675;2675;2675;2675;2675;2675;1700;1550;1500;1450;1400;1400;1400;2732;166;166;0;2731;310;334;3660;2853;2853;2257;3580;3580;2922;4524;5785;3845;4082;3863;3252;4295;7742;7681;7435;7912;13615;9247;6713;5863;5131;7325;9119
-102;'364;Iran (Islamic Republic of);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;150;2;2;2;19;91;48;444;11;1;0;80;1747
-102;'364;Iran (Islamic Republic of);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;44;85;0;2;210;70;125;52;591;6;0;2;75;4913
-102;'364;Iran (Islamic Republic of);1873;Wood-based panels;5516;Production;m3;;;1000;2000;17600;19200;23000;36200;44118;47648;57854;61913;68231;55166;64272;99958;189500;141600;118700;86000;64000;81000;101000;130000;150000;222000;198000;178000;213700;283000;313000;304000;276500;347300;372100;371400;416500;538000;414000;411000;547900;536300;575300;688000;754000;673000;827000;871000;772000;935000;1119000;1313300;1458400;1570600;1439100;1806800;2133700;2544400;2563900;2805000;3175000;2750000;3016000
-102;'364;Iran (Islamic Republic of);1873;Wood-based panels;5616;Import quantity;m3;1200;800;800;900;5800;5800;7900;7000;6800;3900;4000;5600;3900;4000;76300;67500;85300;85300;85300;85300;85300;85300;85300;85300;46600;39700;34200;34000;33800;50700;77600;12721;3833;4801;2700;4100;5133;6700;29400;46000;112900;166818;351122;499197;344572;428553;643553;562553;899000;1048185;1063892;1341547;1029127;1168432;1359866;1392379;1222637;812385;790183;737520;731774;929523;904730
-102;'364;Iran (Islamic Republic of);1873;Wood-based panels;5622;Import value;1000 USD;229;171;171;251;1924;1924;2368;2363;2107;1493;1500;1924;1180;2200;15169;18615;31868;31957;32007;32057;32157;32457;32457;32457;16030;12947;9129;11460;13080;30830;39404;7043;1824;1176;580;861;1139;1941;6782;10341;23968;43580;60104;100115;80519;139981;257155;226030;350463;366809;377579;449121;292095;380808;425702;429838;309207;240565;186007;175936;195364;272242;281508
-102;'364;Iran (Islamic Republic of);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;355;14;1;1;1149;1148;0;0;0;11000;7955;7955;6815;6815;6815;6815;6238;5218;3647;12075;21346;31452;32170;53855;95643;136105;167777;163267;463394;378090;293568
-102;'364;Iran (Islamic Republic of);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;142;6;1;1;488;487;0;0;0;1723;2643;2643;2094;2094;2094;2094;1926;1464;1456;2766;3981;6649;5667;23596;23581;40119;38677;30604;74144;88889;65663
-102;'364;Iran (Islamic Republic of);1640;Plywood and LVL;5516;Production;m3;;;1000;2000;2000;2300;2300;3200;3900;4600;6600;7500;7500;6000;8000;26000;21500;16100;16300;10000;8000;5000;5000;10000;15000;15000;14000;13000;16700;53000;57000;23000;18500;18500;19700;16000;15500;17000;19000;9000;9000;7000;7000;5000;5000;4000;4000;4000;3000;6000;1000;300;300;5000;5000;5000;5000;5000;5000;5000;5000;6000;6000
-102;'364;Iran (Islamic Republic of);1640;Plywood and LVL;5616;Import quantity;m3;1200;800;800;900;5800;5800;7900;7000;6800;3900;4000;5600;3900;4000;18900;33200;50200;50200;50200;50200;50200;50200;50200;50200;43200;36500;31200;31200;31200;48300;75200;5522;1315;1600;600;500;300;300;5100;10700;10700;35000;58000;58000;41000;23000;28000;26000;16000;46185;45005;32547;13325;18344;18131;16206;19632;7890;15505;6306;15516;6415;11450
-102;'364;Iran (Islamic Republic of);1640;Plywood and LVL;5622;Import value;1000 USD;229;171;171;251;1924;1924;2368;2363;2107;1493;1500;1924;1180;2200;8571;14528;26557;26557;26557;26557;26557;26557;26557;26557;15430;7247;8589;10900;12500;30285;38859;2653;742;547;207;267;133;120;2808;3752;3752;7618;11506;11506;10943;9781;12645;12352;9884;17925;19597;15628;6696;12589;11890;8896;12436;6705;6520;2146;6363;3653;15735
-102;'364;Iran (Islamic Republic of);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;332;13;0;0;1148;1148;0;0;0;2000;1000;1000;0;0;0;0;0;0;5;16;81;213;80;18;622;1332;956;52;404;1600;1505
-102;'364;Iran (Islamic Republic of);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;135;5;0;0;487;487;0;0;0;599;215;215;0;0;0;0;0;79;27;44;59;94;112;31;701;2276;468;97;141;547;547
-102;'364;Iran (Islamic Republic of);1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;12000;13100;13100;12800;20000;26200;32300;32300;32300;26000;31000;43000;135000;101000;80000;50000;30000;50000;70000;100000;120000;190000;172000;160000;192000;220000;234000;265000;240000;310000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;57400;34300;35100;35100;35100;35100;35100;35100;35100;35100;3400;3200;3000;2800;2600;2400;2400;5200;1973;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;6598;4087;5311;5400;5450;5500;5600;5900;5900;5900;600;5700;540;560;580;545;545;3342;779;582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;333900;377000;498000;373000;380000;487800;480000;519000;614000;700000;619000;718000;732000;609000;728000;802000;886000;1016000;1010000;804000;898000;882000;879000;860000;890000;910000;744000;710000
-102;'364;Iran (Islamic Republic of);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1617;1100;1000;2900;34000;42000;42000;47455;26174;7174;12174;52174;33174;31174;27832;31492;55000;23000;14000;17000;3000;4000;20000;11000;1000;9000;2096
-102;'364;Iran (Islamic Republic of);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;295;399;286;326;543;3729;7000;7039;10121;6065;2469;4933;13133;8646;8335;8463;7643;9492;8043;4134;3591;588;505;2632;1955;140;2484;567
-102;'364;Iran (Islamic Republic of);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;6179;6179;6179;6179;6179;6179;6179;5159;3583;12000;19000;28000;28000;40567;74000;97000;96000;111000;337000;165000;170586
-102;'364;Iran (Islamic Republic of);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124;1452;1452;1452;1452;1452;1452;1452;911;955;2248;3201;5586;4319;5744;8896;16615;13535;13987;38224;23990;24825
-102;'364;Iran (Islamic Republic of);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1826;1826;1826;1826;1826;1826;1055;508;802;718;497;1356;1713;736;1205;226;1119;1315;82
-102;'364;Iran (Islamic Republic of);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465;465;465;465;465;465;333;168;231;196;209;288;805;334;232;177;202;388;25
-102;'364;Iran (Islamic Republic of);1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18342;1424;3150;40;56
-102;'364;Iran (Islamic Republic of);1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2392;159;397;16;17
-102;'364;Iran (Islamic Republic of);1874;Fibreboard;5516;Production;m3;;;;;3600;3800;7600;20200;20218;16848;18954;22113;28431;23166;25272;30958;33000;24500;22400;26000;26000;26000;26000;20000;15000;17000;12000;5000;5000;10000;22000;16000;18000;18800;22400;21500;24000;23000;22000;22000;51100;49300;49300;69000;49000;50000;105000;135000;160000;201000;316000;427000;442100;555600;630100;903800;1246700;1660400;1698900;1910000;2260000;2000000;2300000
-102;'364;Iran (Islamic Republic of);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1999;545;101;1100;2600;3216;5300;23300;32400;68200;89818;251122;393742;275572;396553;601553;482553;848000;969000;990000;1277000;960000;1126370;1327238;1357817;1198292;799759;753473;719988;714139;912793;891102
-102;'364;Iran (Islamic Republic of);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;303;47;185;299;607;1535;3648;6046;16487;28962;41559;78488;63046;127266;239112;200080;331468;340084;349186;425682;275676;359980;409469;417063;295378;233021;176623;171658;188659;265717;265181
-102;'364;Iran (Islamic Republic of);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;1;1;1;0;0;0;0;0;776;776;636;636;636;636;59;59;59;59;2265;3239;4090;13270;21021;37773;52479;50791;122840;211450;121421
-102;'364;Iran (Islamic Republic of);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;1;1;1;0;0;0;0;0;976;976;642;642;642;642;474;474;474;474;721;969;1236;17821;13984;21228;22282;16361;35382;64336;40274
-102;'364;Iran (Islamic Republic of);1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22400;21500;24000;23000;22000;22000;24800;23000;23000;43000;23000;23000;25000;25000;22000;16000;14000;15000;6500;5000;4000;3000;3000;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660;600;600;2500;5000;14818;15746;29877;24640;33000;92000;77000;32000;45000;55000;57000;49000;80000;62000;25363;27705;8473;11532;9870;10316;1423;1138
-102;'364;Iran (Islamic Republic of);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;264;264;1007;2300;6831;7107;13220;12465;15016;35251;38939;19455;25240;32233;25754;27035;46261;37997;16303;15704;5164;5371;3267;3531;582;506
-102;'364;Iran (Islamic Republic of);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;59;59;59;265;239;89;266;1014;769;445;102;235;1205;51
-102;'364;Iran (Islamic Republic of);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;474;474;474;474;474;474;474;474;474;205;131;40;244;928;680;222;57;258;587;41
-102;'364;Iran (Islamic Republic of);1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26300;26300;26300;26000;26000;27000;80000;110000;138000;185000;302000;412000;435600;550600;626100;900800;1243700;1660400;1698900;1910000;2260000;2000000;2300000
-102;'364;Iran (Islamic Republic of);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556;3200;14000;22600;48200;60000;188976;352902;238379;351000;497000;393000;765000;800000;795000;1200000;873000;1044000;1262000;1331000;1168000;789000;741222;700189;701344;911332;889738
-102;'364;Iran (Islamic Republic of);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;1127;2758;4381;12898;20842;32104;63653;48173;109842;201453;158733;287838;281000;281000;393365;239945;311132;368650;399735;277955;226693;171071;166320;184574;265118;264585
-102;'364;Iran (Islamic Republic of);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;434;434;0;0;0;0;2000;3000;4000;13000;20000;37000;51000;50000;121000;210000;121338
-102;'364;Iran (Islamic Republic of);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;118;118;118;118;0;0;0;0;516;838;1195;17568;13052;20545;21812;16124;34814;63678;40210
-102;'364;Iran (Islamic Republic of);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;117;18;1100;2600;2000;1500;8700;7300;15000;15000;46400;10963;12553;12553;12553;12553;51000;124000;140000;20000;38000;2370;3238;1454;2587;2286;719;9929;2479;38;226
-102;'364;Iran (Islamic Republic of);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;808;80;12;185;299;230;144;626;658;1289;1289;2348;1615;2408;2408;2408;2408;24175;33844;35953;6563;8696;2587;2822;1025;1719;1164;181;2071;554;17;90
-102;'364;Iran (Islamic Republic of);1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;1;1;1;0;0;0;0;0;283;283;143;143;143;143;0;0;0;0;0;0;1;4;7;4;1034;689;1605;245;32
-102;'364;Iran (Islamic Republic of);1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;1;1;1;0;0;0;0;0;384;384;50;50;50;50;0;0;0;0;0;0;1;9;4;3;248;180;310;71;23
-102;'364;Iran (Islamic Republic of);1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;3600;3800;7600;20200;20218;16848;18954;22113;28431;23166;25272;30958;33000;24500;22400;26000;26000;26000;26000;20000;15000;17000;12000;5000;5000;10000;22000;16000;18000;18800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499;428;83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;223;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1879;Total fibre furnish;5510;Production;t;2400;2300;2400;2600;2600;2600;2600;2600;2600;45000;59000;66000;68000;67000;68000;75000;83000;83000;105000;105000;105000;110000;100000;90000;100000;86000;90000;100000;140000;128000;157000;202000;222000;325000;325000;325000;125000;125000;125000;125000;125000;391000;403000;425000;445000;587000;627000;574000;333000;337000;439000;378000;378000;378000;372000;340000;340000;340000;340000;340000;340000;340000;340000
-102;'364;Iran (Islamic Republic of);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;1100;11400;11100;10500;12200;8700;26100;25000;38400;38400;38400;38400;27300;27900;74000;41000;36000;14000;28900;28000;14000;75600;75000;44134;23696;11562;24700;29200;34048;30700;39500;34200;47700;43805;72675;75236;75001;75001;75001;75001;75001;112717;123813;123813;129479;97649;115618;185471;201746;163231;328221;325231;338426;288376;326297
-102;'364;Iran (Islamic Republic of);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;213;2465;2290;2180;3320;2247;13334;11252;16334;16334;16334;16334;13590;13890;36890;20390;13635;5394;13021;16527;6299;46535;46535;25854;9758;7708;15664;18352;17068;12389;24926;29944;33918;23577;41323;41802;37044;37044;37044;37044;37044;122024;161041;161041;91318;66117;78044;101975;122935;120505;244917;201953;226590;188856;198980
-102;'364;Iran (Islamic Republic of);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2264;0;0;0;0;1503;18378;9018;1432;1432;1432;1432;1432;43909;21249;21249;21282;3481;1559;3381;3345;20062;4028;1261;144;225;375
-102;'364;Iran (Islamic Republic of);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;864;0;0;0;0;180;7681;1236;136;136;136;136;136;15969;5113;5113;2699;838;703;3415;2507;14000;2939;926;103;224;305
-102;'364;Iran (Islamic Republic of);1878;Pulp for paper;5510;Production;t;2400;2300;2400;2600;2600;2600;2600;2600;2600;10000;24000;26000;28000;27000;28000;28000;28000;28000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;90000;115000;142000;142000;142000;245000;245000;245000;45000;45000;45000;45000;45000;311000;323000;345000;365000;507000;547000;494000;253000;257000;359000;298000;298000;298000;292000;260000;260000;260000;260000;260000;260000;260000;260000
-102;'364;Iran (Islamic Republic of);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;1100;11400;11100;10500;12200;8700;26100;25000;38400;38400;38400;38400;27300;27900;74000;41000;36000;14000;28900;28000;14000;75600;75000;44134;23696;11300;24700;28700;33548;30700;39500;34200;47700;43805;72382;71939;74575;74575;74575;74575;74575;106748;121891;121891;123486;97192;114605;182166;199403;152335;225081;246574;188688;120108;157702
-102;'364;Iran (Islamic Republic of);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;213;2465;2290;2180;3320;2247;13334;11252;16334;16334;16334;16334;13590;13890;36890;20390;13635;5394;13021;16527;6299;46535;46535;25854;9758;7688;15664;18267;16983;12389;24926;29944;33918;23577;41254;41192;36962;36962;36962;36962;36962;120918;160569;160569;89834;66006;77714;100926;122464;118166;217175;186946;189938;152204;157241
-102;'364;Iran (Islamic Republic of);1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264;0;0;0;0;0;60;60;11;11;11;11;11;182;182;182;182;183;457;1866;990;19017;4017;1261;125;225;335
-102;'364;Iran (Islamic Republic of);1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;0;0;0;0;0;37;37;14;14;14;14;14;480;480;480;480;482;561;1502;645;13116;2930;926;88;224;289
-102;'364;Iran (Islamic Republic of);1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;74000;80000;80000;80000;200000;200000;200000;0;0;0;0;0;255000;273000;295000;315000;450000;445000;434000;213000;212000;292000;249500;249500;249500;243500;211500;211500;211500;211500;211500;211500;211500;211500
-102;'364;Iran (Islamic Republic of);1875;Wood pulp;5610;Import quantity;t;;;;;;;;;1100;11400;11100;10500;12200;8700;26100;25000;38400;38400;38400;38400;27300;27900;74000;41000;36000;14000;28900;28000;14000;75600;75000;44381;23734;10500;24300;41000;37015;33000;44300;39000;52500;48605;72647;72204;74825;74825;74825;74825;74825;106789;121932;121932;123393;97083;114567;182332;198483;153373;226164;247717;189765;121230;158222
-102;'364;Iran (Islamic Republic of);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;213;2465;2290;2180;3320;2247;13334;11252;16334;16334;16334;16334;13590;13890;36890;20390;13635;5394;13021;16527;6299;46535;46535;26035;9779;7141;15187;29776;18433;13952;27474;32492;36466;26125;41404;41342;37139;37139;37139;37139;37139;120941;160592;160592;89494;65746;77661;101019;122018;119087;218132;187956;190904;153164;156953
-102;'364;Iran (Islamic Republic of);1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;50;50;1;1;1;1;1;60;60;60;60;61;240;180;76;3691;4004;1248;112;225;335
-102;'364;Iran (Islamic Republic of);1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;25;25;2;2;2;2;2;330;330;330;330;332;420;407;51;2703;2927;923;85;224;289
-102;'364;Iran (Islamic Republic of);1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134000;134000;134000;134000;134000;134000;134000
-102;'364;Iran (Islamic Republic of);1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;6;2311;2;2943;4907;4907
-102;'364;Iran (Islamic Republic of);1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;12;2362;3;2566;4744;4744
-102;'364;Iran (Islamic Republic of);1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3626;3939;1183;47;0;0
-102;'364;Iran (Islamic Republic of);1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2647;2871;867;29;0;0
-102;'364;Iran (Islamic Republic of);1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;55000;55000;55000;188000;178000;178000;1000;1000;1000;0;0;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;300;1900;3700;3500;3500;1700;1900;600;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;1283;1500;1500;1500;1500;1500;0;0;0;0;0;367;367;367;367;367;367;367;47;47;47;184;54;60;250;;;;;;;
-102;'364;Iran (Islamic Republic of);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;56;349;731;750;750;338;946;238;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;1890;744;138;719;719;1678;1678;0;0;0;0;0;34;34;34;34;34;34;34;26;26;26;156;57;61;126;;;;;;;
-102;'364;Iran (Islamic Republic of);1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188000;178000;151000;152000;190000;172000;172000;172000;166000;134000;;;;;;;
-102;'364;Iran (Islamic Republic of);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2526;300;300;0;0;1874;700;700;700;600;600;917;474;474;474;474;474;474;433;433;433;433;23;26;26;;;;;;;
-102;'364;Iran (Islamic Republic of);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;100;100;0;0;851;215;215;215;558;558;235;173;173;173;173;173;173;444;444;444;444;19;20;20;;;;;;;
-102;'364;Iran (Islamic Republic of);1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;60;60;60;60;60;60;60;;;;;;;
-102;'364;Iran (Islamic Republic of);1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;330;330;330;330;330;330;330;;;;;;;
-102;'364;Iran (Islamic Republic of);1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;74000;80000;80000;80000;200000;200000;200000;0;0;0;0;0;255000;218000;240000;260000;262000;79000;78000;61000;59000;101000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000
-102;'364;Iran (Islamic Republic of);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;800;9500;7400;7000;8700;7000;24200;24400;34400;34400;34400;34400;23300;23900;70000;37000;32000;10000;24900;24000;10000;71600;71000;40300;21847;8400;22100;26600;29574;30000;38800;33500;47100;43205;71093;71093;73729;73729;73729;73729;73729;106217;121360;121360;122684;96999;114474;181860;198277;152196;222682;246544;185651;115152;152144
-102;'364;Iran (Islamic Republic of);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;157;2116;1559;1430;2570;1909;12388;11014;14444;14444;14444;14444;11700;12000;35000;18500;11745;3504;11131;14637;4409;44645;44645;24097;9488;6135;14211;15747;13612;12174;24711;29729;33360;23019;40975;40975;36745;36745;36745;36745;36745;120402;160053;160053;88825;65661;77571;100759;121887;118018;214713;186896;187281;147363;151152
-102;'364;Iran (Islamic Republic of);1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;0;0;0;0;0;0;0;0;0;1;180;120;76;65;65;65;65;225;335
-102;'364;Iran (Islamic Republic of);1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;0;0;0;0;0;0;2;90;77;51;56;56;56;56;224;289
-102;'364;Iran (Islamic Republic of);1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;74000;80000;80000;80000;130000;130000;130000;0;0;0;0;0;115000;82000;90000;90000;92000;79000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71600;71000;26800;1997;500;400;3400;2473;3300;6300;4400;3200;3200;1255;1255;3471;3471;3471;3471;3471;6215;6215;6215;600;4480;5315;12368;12010;12010;12888;8161;6707;500;500
-102;'364;Iran (Islamic Republic of);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44645;44645;12116;711;246;310;2732;863;1159;4310;4248;1526;1526;336;336;1183;1183;1183;1183;1183;4269;4269;4269;371;3399;3054;6222;6045;6045;10520;6630;6167;495;495
-102;'364;Iran (Islamic Republic of);1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;24;24;184;184
-102;'364;Iran (Islamic Republic of);1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;0;0;0;0;0;0;0;13;13;13;13;13;13;13;181;181
-102;'364;Iran (Islamic Republic of);1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;70000;0;0;0;0;0;140000;136000;150000;170000;170000;0;0;0;0;0;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000
-102;'364;Iran (Islamic Republic of);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;5573;3100;14100;17700;21534;25500;31100;27700;33400;34716;62505;62505;65039;65039;65039;65039;65039;97314;112457;112457;121561;92217;109054;169217;186171;140141;209567;238127;178847;114242;151268
-102;'364;Iran (Islamic Republic of);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7219;2834;1939;11160;7953;10132;10243;19320;24363;23548;18528;35713;35713;32411;32411;32411;32411;32411;113991;153642;153642;87481;61701;74313;94035;115671;111889;204055;180046;181053;146213;149837
-102;'364;Iran (Islamic Republic of);1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;156;96;52;41;41;41;41;41;151
-102;'364;Iran (Islamic Republic of);1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;77;64;38;43;43;43;43;43;108
-102;'364;Iran (Islamic Republic of);1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;45;227;256;97;410;376
-102;'364;Iran (Islamic Republic of);1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;84;138;220;61;655;820
-102;'364;Iran (Islamic Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;61000;59000;101000;0;0;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;156;3600;5400;2100;0;0;200;200;200;200;712;712;0;0;0;0;0;63;63;63;63;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4762;27;3040;1207;1762;0;0;309;346;132;132;423;423;0;0;0;0;0;103;103;103;103;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14121;1200;2200;3400;5567;1200;1200;1200;10300;5089;6621;6621;5219;5219;5219;5219;5219;2625;2625;2625;460;302;105;275;;;;;;;
-102;'364;Iran (Islamic Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5916;910;1534;3300;2617;772;772;772;8154;2833;4503;4503;3151;3151;3151;3151;3151;2039;2039;2039;870;561;204;502;;;;;;;
-102;'364;Iran (Islamic Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-102;'364;Iran (Islamic Republic of);1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500
-102;'364;Iran (Islamic Republic of);1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;87;300;700;12900;4067;2300;4800;4800;4800;4800;270;270;255;255;255;255;255;92;92;92;92;7;7;196;196;1171;1171;1171;1171;1171;1171
-102;'364;Iran (Islamic Republic of);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;53;187;257;12351;2292;1563;2548;2548;2548;2548;160;160;187;187;187;187;187;69;69;69;69;9;9;114;114;1057;1057;1057;1057;1057;1057
-102;'364;Iran (Islamic Republic of);1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1668;Pulp from fibres other than wood;5510;Production;t;2400;2300;2400;2600;2600;2600;2600;2600;2600;10000;24000;26000;28000;27000;28000;28000;28000;28000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;45000;41000;62000;62000;62000;45000;45000;45000;45000;45000;45000;45000;45000;56000;50000;50000;50000;57000;102000;60000;40000;45000;67000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000
-102;'364;Iran (Islamic Republic of);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;49;1100;1100;600;600;0;0;0;0;0;5;5;5;5;5;5;5;51;51;51;185;116;45;30;1116;133;88;28;94;49;651
-102;'364;Iran (Islamic Republic of);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;32;734;734;842;842;0;0;0;0;0;10;10;10;10;10;10;10;46;46;46;409;269;62;21;560;136;100;47;91;97;1345
-102;'364;Iran (Islamic Republic of);1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264;0;0;0;0;0;10;10;10;10;10;10;10;122;122;122;122;122;217;1686;914;15326;13;13;13;0;0
-102;'364;Iran (Islamic Republic of);1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;0;0;0;0;0;12;12;12;12;12;12;12;150;150;150;150;150;141;1095;594;10413;3;3;3;0;0
-102;'364;Iran (Islamic Republic of);1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;615;615;85;88;327;975;179;179;179;65;7;7;50
-102;'364;Iran (Islamic Republic of);1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;20;18;209;397;141;141;141;35;3;3;21
-102;'364;Iran (Islamic Republic of);1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2406;2406;1;5;0;0;2;2;24;25;0;0;0;0
-102;'364;Iran (Islamic Republic of);1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1017;1017;1;4;0;0;2;2;16;18;0;0;0;0
-102;'364;Iran (Islamic Republic of);1669;Recovered paper;5510;Production;t;;;;;;;;;;35000;35000;40000;40000;40000;40000;47000;55000;55000;55000;55000;55000;60000;50000;40000;50000;36000;40000;50000;50000;13000;15000;60000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-102;'364;Iran (Islamic Republic of);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;0;500;500;0;0;0;0;0;293;3297;426;426;426;426;426;5969;1922;1922;5993;457;1013;3305;2343;10896;103140;78657;149738;168268;168595
-102;'364;Iran (Islamic Republic of);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;85;85;0;0;0;0;0;69;610;82;82;82;82;82;1106;472;472;1484;111;330;1049;471;2339;27742;15007;36652;36652;41739
-102;'364;Iran (Islamic Republic of);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1503;18318;8958;1421;1421;1421;1421;1421;43727;21067;21067;21100;3298;1102;1515;2355;1045;11;0;19;0;40
-102;'364;Iran (Islamic Republic of);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;180;7644;1199;122;122;122;122;122;15489;4633;4633;2219;356;142;1913;1862;884;9;0;15;0;16
-102;'364;Iran (Islamic Republic of);1876;Paper and paperboard;5510;Production;t;5000;5000;5000;6000;7000;7000;7000;7000;14000;26000;50000;63000;76000;66000;70000;69000;77000;77000;78000;78000;78000;78000;78000;78000;78000;80000;90000;100000;142000;211000;235000;190000;260000;205000;205000;205000;205000;225000;230000;251000;251000;415000;411000;411000;464000;392500;389800;421000;429000;419000;381000;766000;766000;766000;766000;766000;766000;766000;766000;766000;766000;766000;766000
-102;'364;Iran (Islamic Republic of);1876;Paper and paperboard;5610;Import quantity;t;41900;58100;58100;63900;61600;61600;106900;110400;141000;126900;153500;200300;191100;139100;267300;260600;304400;289100;269100;213000;198800;173000;193000;200000;133400;232000;239000;167000;192000;345100;247000;296900;132120;310600;338000;398100;305184;272440;462000;575800;500200;534002;644061;696276;584955;573193;586193;600193;605193;948666;949437;922448;642270;742837;803195;872827;921707;727169;861159;581345;516254;384793;316230
-102;'364;Iran (Islamic Republic of);1876;Paper and paperboard;5622;Import value;1000 USD;10407;12963;12963;14308;14474;14474;24880;27590;50956;49011;113823;159074;156077;132387;286070;266031;314040;307646;298546;238079;213618;191721;216450;220350;130220;236914;256573;183700;193353;444393;274161;332154;114074;223302;310000;473697;244762;173647;306662;409088;338350;350950;460823;450491;394965;379708;394306;414816;412010;801384;818354;779447;544916;729621;667482;703843;794229;748669;901910;592481;575663;567486;485996
-102;'364;Iran (Islamic Republic of);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41281;204;67;67;22;240;0;0;0;0;0;11515;6935;4360;4360;4360;4360;4360;9616;9596;9708;3356;10785;14979;15165;67268;75264;66811;55567;107273;122086;82376
-102;'364;Iran (Islamic Republic of);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32456;121;36;36;9;144;0;0;0;0;0;6963;5305;1581;1581;1581;1581;1581;5546;5522;6738;2443;11862;14934;9091;32569;41077;37399;32965;58293;59867;35234
-102;'364;Iran (Islamic Republic of);2042;Graphic papers;5510;Production;t;;;;;;;;;;12000;27000;30000;36000;35000;36000;30000;38000;38000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;64000;72000;75000;60000;65000;85000;85000;85000;85000;105000;110000;131000;131000;120000;116000;116000;116000;73500;78800;110000;110000;110000;110000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000
-102;'364;Iran (Islamic Republic of);2042;Graphic papers;5610;Import quantity;t;19400;28700;28700;29000;29300;29300;87000;90400;122800;110700;81400;95900;94100;44600;66600;76600;94800;79500;59500;46000;54000;40000;43000;50000;73400;110000;110000;67000;110000;255000;174000;154700;78767;159200;178000;271100;167184;193200;281100;377900;274300;300100;329312;371181;404774;404774;404774;404774;404774;430350;436052;436052;294116;358798;398243;498412;629461;471882;554302;316596;316473;97972;88571
-102;'364;Iran (Islamic Republic of);2042;Graphic papers;5622;Import value;1000 USD;4521;6065;6065;6103;6101;6101;20302;20760;28443;28972;24635;29931;36088;15490;37804;38423;54765;48371;39271;31500;34500;27200;30900;34800;56000;86000;97000;60000;91919;332939;183860;156262;48077;117489;200000;329705;172586;124514;177765;262179;187381;193326;237594;231479;246286;246286;246286;246286;246286;377799;395316;395316;236631;287031;336099;384779;502627;438841;534903;284574;300057;141945;129638
-102;'364;Iran (Islamic Republic of);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;45;45;0;4;;;;;;2232;1353;61;61;61;61;61;568;548;548;251;14;130;680;161;6055;635;76;103;475;189
-102;'364;Iran (Islamic Republic of);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;48;27;27;0;3;;;;;;1360;1121;53;53;53;53;53;1425;1401;1401;524;17;173;531;132;4099;246;54;61;264;150
-102;'364;Iran (Islamic Republic of);1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;25000;46000;46000;50000;46000;46000;46000;3500;8800;30000;30000;30000;30000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000
-102;'364;Iran (Islamic Republic of);1671;Newsprint;5610;Import quantity;t;19400;7700;7700;9100;9400;9400;9400;9400;18200;10900;23900;30400;14900;23600;32800;56400;55300;40000;20000;14000;27000;16000;16000;23000;18000;10000;10000;10000;10000;36000;40000;38700;11880;47900;53000;93300;50520;57000;39300;27500;40200;66000;51356;82499;76138;76138;76138;76138;76138;82464;88868;88868;112396;112396;51136;46984;61113;42295;42584;19338;9991;258;290
-102;'364;Iran (Islamic Republic of);1671;Newsprint;5622;Import value;1000 USD;4521;1365;1365;1525;1523;1523;1157;1160;3157;1927;5598;5444;3528;6036;16209;26142;24394;18000;8900;6700;13000;8200;8900;12800;10800;6000;7000;8000;10000;35698;37018;29152;5238;22280;50000;90729;49988;42469;18893;13331;22346;28291;21591;33434;37304;37304;37304;37304;37304;50061;66419;66419;70098;70098;32669;28000;35048;33903;34857;14057;6720;248;188
-102;'364;Iran (Islamic Republic of);1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1792;913;0;0;0;0;0;20;0;0;0;0;0;0;0;0;67;67;67;24;24
-102;'364;Iran (Islamic Republic of);1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;399;0;0;0;0;0;24;0;0;0;0;0;0;0;0;48;48;48;21;21
-102;'364;Iran (Islamic Republic of);1674;Printing and writing papers;5510;Production;t;;;;;;;;;;12000;27000;30000;36000;35000;36000;30000;38000;38000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;64000;72000;75000;60000;65000;85000;85000;85000;85000;85000;85000;85000;85000;70000;70000;70000;70000;70000;70000;80000;80000;80000;80000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000
-102;'364;Iran (Islamic Republic of);1674;Printing and writing papers;5610;Import quantity;t;;21000;21000;19900;19900;19900;77600;81000;104600;99800;57500;65500;79200;21000;33800;20200;39500;39500;39500;32000;27000;24000;27000;27000;55400;100000;100000;57000;100000;219000;134000;116000;66887;111300;125000;177800;116664;136200;241800;350400;234100;234100;277956;288682;328636;328636;328636;328636;328636;347886;347184;347184;181720;246402;347107;451428;568348;429587;511718;297258;306482;97714;88281
-102;'364;Iran (Islamic Republic of);1674;Printing and writing papers;5622;Import value;1000 USD;;4700;4700;4578;4578;4578;19145;19600;25286;27045;19037;24487;32560;9454;21595;12281;30371;30371;30371;24800;21500;19000;22000;22000;45200;80000;90000;52000;81919;297241;146842;127110;42839;95209;150000;238976;122598;82045;158872;248848;165035;165035;216003;198045;208982;208982;208982;208982;208982;327738;328897;328897;166533;216933;303430;356779;467579;404938;500046;270517;293337;141697;129450
-102;'364;Iran (Islamic Republic of);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;45;45;0;4;;;;;;440;440;61;61;61;61;61;548;548;548;251;14;130;680;161;6055;568;9;36;451;165
-102;'364;Iran (Islamic Republic of);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;48;27;27;0;3;;;;;;722;722;53;53;53;53;53;1401;1401;1401;524;17;173;531;132;4099;198;6;13;243;129
-102;'364;Iran (Islamic Republic of);1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12279;21800;22600;33700;33700;14658;14658;14658;14658;14658;14658;14658;9099;9099;9099;9998;21502;4878;2697;4018;6340;10081;3919;6528;2902;5402
-102;'364;Iran (Islamic Republic of);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6021;11659;8983;16893;16893;10229;10229;10229;10229;10229;10229;10229;8756;8756;8756;8691;18462;3582;3231;3850;5218;10241;3629;6099;4642;7207
-102;'364;Iran (Islamic Republic of);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;45;45;71;71;71;4;9;106;378;100;4636;560;2;23;27;14
-102;'364;Iran (Islamic Republic of);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32;65;65;65;5;9;127;169;85;3150;173;1;6;21;9
-102;'364;Iran (Islamic Republic of);1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;85000;85000;85000;70000;70000;70000;70000;70000;70000;80000;80000;80000;80000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000
-102;'364;Iran (Islamic Republic of);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95757;170000;260000;175100;175100;239754;174024;178346;178346;178346;178346;178346;322156;322156;322156;155793;208971;296420;307959;344373;310377;363814;205038;216532;81041;77016
-102;'364;Iran (Islamic Republic of);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59460;115139;197496;127159;127159;188514;117816;122919;122919;122919;122919;122919;302295;302295;302295;139996;180625;258974;251327;290639;296795;362561;186241;204971;115128;112542
-102;'364;Iran (Islamic Republic of);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;319;16;16;16;16;16;233;233;233;233;3;22;133;6;930;1;7;12;168;117
-102;'364;Iran (Islamic Republic of);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;337;21;21;21;21;21;499;499;499;499;4;42;146;11;732;1;5;6;158;89
-102;'364;Iran (Islamic Republic of);1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000
-102;'364;Iran (Islamic Republic of);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28164;50000;67800;25300;25300;23544;100000;135632;135632;135632;135632;135632;16631;15929;15929;15929;15929;45809;140772;219957;112870;137823;88301;83422;13771;5863
-102;'364;Iran (Islamic Republic of);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16564;32074;42369;20983;20983;17260;70000;75834;75834;75834;75834;75834;16687;17846;17846;17846;17846;40874;102221;173090;102925;127244;80647;82267;21927;9701
-102;'364;Iran (Islamic Republic of);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;0;0;0;0;0;244;244;244;14;2;2;169;55;489;7;0;1;256;34
-102;'364;Iran (Islamic Republic of);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;353;0;0;0;0;0;837;837;837;20;4;4;216;36;217;24;0;1;64;31
-102;'364;Iran (Islamic Republic of);1675;Other paper and paperboard;5510;Production;t;5000;5000;5000;6000;7000;7000;7000;7000;14000;14000;23000;33000;40000;31000;34000;39000;39000;39000;33000;33000;33000;33000;33000;33000;33000;35000;45000;55000;78000;139000;160000;130000;195000;120000;120000;120000;120000;120000;120000;120000;120000;295000;295000;295000;348000;319000;311000;311000;319000;309000;271000;631000;631000;631000;631000;631000;631000;631000;631000;631000;631000;631000;631000
-102;'364;Iran (Islamic Republic of);1675;Other paper and paperboard;5610;Import quantity;t;22500;29400;29400;34900;32300;32300;19900;20000;18200;16200;72100;104400;97000;94500;200700;184000;209600;209600;209600;167000;144800;133000;150000;150000;60000;122000;129000;100000;82000;90100;73000;142200;53353;151400;160000;127000;138000;79240;180900;197900;225900;233902;314749;325095;180181;168419;181419;195419;200419;518316;513385;486396;348154;384039;404952;374415;292246;255287;306857;264749;199781;286821;227659
-102;'364;Iran (Islamic Republic of);1675;Other paper and paperboard;5622;Import value;1000 USD;5886;6898;6898;8205;8373;8373;4578;6830;22513;20039;89188;129143;119989;116897;248266;227608;259275;259275;259275;206579;179118;164521;185550;185550;74220;150914;159573;123700;101434;111454;90301;175892;65997;105813;110000;143992;72176;49133;128897;146909;150969;157624;223229;219012;148679;133422;148020;168530;165724;423585;423038;384131;308285;442590;331383;319064;291602;309828;367007;307907;275606;425541;356358
-102;'364;Iran (Islamic Republic of);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41271;162;22;22;22;236;0;0;0;0;0;9283;5582;4299;4299;4299;4299;4299;9048;9048;9160;3105;10771;14849;14485;67107;69209;66176;55491;107170;121611;82187
-102;'364;Iran (Islamic Republic of);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32449;73;9;9;9;141;0;0;0;0;0;5603;4184;1528;1528;1528;1528;1528;4121;4121;5337;1919;11845;14761;8560;32437;36978;37153;32911;58232;59603;35084
-102;'364;Iran (Islamic Republic of);1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;68000;39000;66000;66000;66000;66000;66000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-102;'364;Iran (Islamic Republic of);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;4800;0;0;240;5500;8000;6500;14502;11710;13986;15762;4000;17000;31000;36000;60920;55989;29000;51199;39053;15218;9333;5549;5917;3656;2139;496;3941;2222
-102;'364;Iran (Islamic Republic of);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10720;11000;0;0;265;6193;8689;6278;12933;11190;14210;19597;4340;18938;39448;36642;75426;74879;35972;68167;80012;17937;9905;5809;8174;5009;2573;670;8185;4008
-102;'364;Iran (Islamic Republic of);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;223;480;480;480;480;480;127;127;239;92;8160;9029;505;840;2188;11431;14620;12346;367;318
-102;'364;Iran (Islamic Republic of);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;150;308;308;308;308;308;136;136;1352;259;10253;11690;430;855;2752;12868;15336;15578;321;303
-102;'364;Iran (Islamic Republic of);2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365000;365000;365000;365000;365000;365000;365000;365000;365000;365000;365000;365000
-102;'364;Iran (Islamic Republic of);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;158500;159800;195600;195600;287834;297303;154295;154295;154295;154295;154295;453710;453710;453710;284634;332665;386910;360087;281494;243222;295757;253459;193032;274631;214113
-102;'364;Iran (Islamic Republic of);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48868;104009;98997;121766;121766;170651;169053;96356;96356;96356;96356;96356;338109;338109;338109;210220;332680;305215;294637;269525;280784;337836;275062;249628;388344;303250
-102;'364;Iran (Islamic Republic of);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8597;4792;3690;3690;3690;3690;3690;8918;8918;8918;2882;2576;5767;13719;66265;66824;54742;40868;94824;120911;81803
-102;'364;Iran (Islamic Republic of);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;3361;1148;1148;1148;1148;1148;3983;3983;3983;1601;1550;3058;8011;31562;34182;24275;17573;42654;58929;34619
-102;'364;Iran (Islamic Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200;30400;127000;138000;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14162;14300;143992;72176;;;;;;;;;;;;;;;;;;;;;;;;;;
-102;'364;Iran (Islamic Republic of);1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;165000;165000;165000;165000;165000;165000;165000;165000;165000;165000;165000
-102;'364;Iran (Islamic Republic of);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88499;51602;58833;58833;58833;58833;58833;196353;196353;196353;85679;93072;172424;104797;57313;27890;19099;23116;30462;38791;35521
-102;'364;Iran (Islamic Republic of);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36124;19270;23765;23765;23765;23765;23765;119178;119178;119178;60883;66444;104684;58642;32151;18902;12824;30589;47325;72141;67150
-102;'364;Iran (Islamic Republic of);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5605;2891;849;849;849;849;849;8115;8115;8115;1207;777;5406;13284;64948;65373;52732;40093;84579;106836;79788
-102;'364;Iran (Islamic Republic of);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2009;1180;368;368;368;368;368;3147;3147;3147;668;453;2699;7728;30818;33108;22510;16475;36556;46106;33540
-102;'364;Iran (Islamic Republic of);1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000
-102;'364;Iran (Islamic Republic of);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15800;31700;40900;25000;25000;11196;45195;56728;56728;56728;56728;56728;116108;116108;116108;123100;174076;140966;177490;132812;115231;183530;142288;109094;178345;170804
-102;'364;Iran (Islamic Republic of);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14075;29957;27574;27613;27613;26738;38913;47254;47254;47254;47254;47254;107523;107523;107523;87386;194323;143120;180294;167631;177463;233235;159785;133900;235162;222619
-102;'364;Iran (Islamic Republic of);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;416;416;416;416;416;243;243;243;1420;1469;351;287;23;145;1151;339;8420;12075;1207
-102;'364;Iran (Islamic Republic of);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;219;278;278;278;278;278;205;205;205;716;840;344;163;27;387;1105;694;4855;12157;733
-102;'364;Iran (Islamic Republic of);1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-102;'364;Iran (Islamic Republic of);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62652;125700;115000;147900;147900;181790;181790;37722;37722;37722;37722;37722;140816;140816;140816;74538;64644;73289;76135;89467;99735;92117;87674;53278;55136;6740
-102;'364;Iran (Islamic Republic of);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34536;73504;68653;88972;88972;105237;105237;24539;24539;24539;24539;24539;111041;111041;111041;58486;68530;57136;54726;68649;84127;90849;84351;68123;77911;12192
-102;'364;Iran (Islamic Republic of);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;1421;2214;2214;2214;2214;2214;318;318;318;13;88;6;144;1284;1027;838;435;1753;1375;161
-102;'364;Iran (Islamic Republic of);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1896;1896;476;476;476;476;476;427;427;427;13;53;3;108;708;630;653;403;1213;404;133
-102;'364;Iran (Islamic Republic of);1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-102;'364;Iran (Islamic Republic of);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;1100;3900;22700;22700;6349;18716;1012;1012;1012;1012;1012;433;433;433;1317;873;231;1665;1902;366;1011;381;198;2359;1048
-102;'364;Iran (Islamic Republic of);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;548;2770;5181;5181;2552;5633;798;798;798;798;798;367;367;367;3465;3383;275;975;1094;292;928;337;280;3130;1289
-102;'364;Iran (Islamic Republic of);1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1510;419;211;211;211;211;211;242;242;242;242;242;4;4;10;279;21;1;72;625;647
-102;'364;Iran (Islamic Republic of);1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;66;26;26;26;26;26;204;204;204;204;204;12;12;9;57;7;1;30;262;213
-102;'364;Iran (Islamic Republic of);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;139000;160000;130000;195000;120000;120000;120000;120000;120000;120000;120000;120000;280000;280000;280000;280000;280000;245000;245000;253000;243000;205000;251000;251000;251000;251000;251000;251000;251000;251000;251000;251000;251000;251000
-102;'364;Iran (Islamic Republic of);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;18200;16200;72100;104400;97000;94500;200700;184000;209600;209600;209600;167000;144800;133000;150000;150000;60000;122000;129000;100000;82000;90100;73000;142200;53353;118100;124800;0;0;0;16900;30100;23800;23800;15205;13806;10124;10124;10124;10124;10124;3686;3686;3686;12321;12321;2824;4995;5203;6148;7444;9151;6253;8249;11324
-102;'364;Iran (Islamic Republic of);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;22513;20039;89188;129143;119989;116897;248266;227608;259275;259275;259275;206579;179118;164521;185550;185550;74220;150914;159573;123700;101434;111454;90301;175892;65997;80931;84700;0;0;0;18695;39223;22925;22925;41388;35749;32726;32726;32726;32726;32726;10050;10050;10050;29898;29898;8231;14522;16268;20870;24162;30272;25308;29012;49100
-102;'364;Iran (Islamic Republic of);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;567;567;129;129;129;129;129;3;3;3;131;35;53;261;2;197;3;3;0;333;66
-102;'364;Iran (Islamic Republic of);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;673;673;72;72;72;72;72;2;2;2;59;42;13;119;20;44;10;2;0;353;162
-102;'364;Iran (Islamic Republic of);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44848;18051;14067;11056;7920;21029;17869
-102;'364;Iran (Islamic Republic of);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23180;54509;70909;61694;63081;45955;38499
-102;'364;Iran (Islamic Republic of);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3338;1662;912;884;936;1697;861
-102;'364;Iran (Islamic Republic of);2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;52;384;78;83;29;31
-102;'364;Iran (Islamic Republic of);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126;543;228;134;201;808;411
-102;'364;Iran (Islamic Republic of);1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;5;5;21;24
-102;'364;Iran (Islamic Republic of);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212;1119;684;750;735;889;450
-102;'364;Iran (Islamic Republic of);1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;52;379;73;78;8;7
-102;'364;Iran (Islamic Republic of);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1428;419;395;82;82;810;404
-102;'364;Iran (Islamic Republic of);1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2353;3303;2526;2113;401;63;89
-102;'364;Iran (Islamic Republic of);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;620;12;12;12;1065;837
-102;'364;Iran (Islamic Republic of);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;877;3275;4241;1607;1582;453;287
-102;'364;Iran (Islamic Republic of);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1624;1016;802;244;799;4772;4239
-102;'364;Iran (Islamic Republic of);1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1375;2564;2739;1873;1442;293;176
-102;'364;Iran (Islamic Republic of);1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;179
-102;'364;Iran (Islamic Republic of);1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;164
-102;'364;Iran (Islamic Republic of);1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47
-102;'364;Iran (Islamic Republic of);1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-102;'364;Iran (Islamic Republic of);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17156;4559;1381;1029;1132;3689;3979
-102;'364;Iran (Islamic Republic of);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7206;34537;50367;45949;45443;44822;37687
-102;'364;Iran (Islamic Republic of);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10646;4958;5309;5273;2579;137;1
-102;'364;Iran (Islamic Republic of);1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5494;1202;915;708;787;34;13
-102;'364;Iran (Islamic Republic of);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9441;4817;5256;3532;2380;8859;7548
-102;'364;Iran (Islamic Republic of);1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5854;9576;9737;9366;13343;261;216
-102;'364;Iran (Islamic Republic of);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280281;212680;290761;246302;223036;210703;216516
-102;'364;Iran (Islamic Republic of);5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43220;68154;49887;48627;54675;6553;5460
-102;'364;Iran (Islamic Republic of);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1245;1135;1709;819;1869;740;1170
-102;'364;Iran (Islamic Republic of);1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;14;56;34;1;6;9
-102;'364;Iran (Islamic Republic of);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130912;123106;137309;125172;107620;92261;105460
-102;'364;Iran (Islamic Republic of);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908;2151;561;299;1033;3651;1871
-102;'364;Iran (Islamic Republic of);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135;1005;337;615;526;4468;6763
-102;'364;Iran (Islamic Republic of);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1876;2530;1664;594;248;138;341
-102;'364;Iran (Islamic Republic of);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52371;39905;65507;50054;46277;51400;48343
-102;'364;Iran (Islamic Republic of);1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35078;54678;45404;45579;50061;1007;1109
-102;'364;Iran (Islamic Republic of);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94618;47529;85899;69642;66744;61834;54780
-102;'364;Iran (Islamic Republic of);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5351;8781;2202;2121;3332;1751;2130
-103;'368;Iraq;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236408;1467076;1758750;1571042;1912767;1954469;2059516
-103;'368;Iraq;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30581;22856;28622;20585;62301;82262;48028
-103;'368;Iraq;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;18885;16578;12254;16482;21482;23809;13018;14147;17983;27015;27748;25417;18458;111462;125092;134579;133834;138928;139222;157121;114056;147856;84656;134816;150756;117556;117556;117556;117556;121487;121309;49971;4558;1455;439;148;246;3008;4406;4396;21830;21258;24065;44851;48627;53986;43412;67680;66698;82879;120988;203929;236178;300185;253434;291253;332815;387051;619072;602217;761844;709404;836516
-103;'368;Iraq;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;0;0;19;47;0;23;34;17;17;17;36;36;36;36;360;319;318;628;3113;4122;4443;9394;19893;30038;21998;28110;20044;61388;81646;47632
-103;'368;Iraq;1861;Roundwood;5516;Production;m3;48000;48000;48000;48000;48000;50000;50000;60000;55000;50000;50000;52700;62576;72913;73010;73081;73440;73634;72894;74377;77545;79050;78021;78843;80581;82856;84056;85858;86400;89887;96366;96799;96837;97475;98216;99336;161000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000
-103;'368;Iraq;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310;43310;43310;1825;537;537;537;181;0;26;35;300;300;300;1342;1342;1342;1342;1832;1353;382;976;920;2203;194;648;624;20043;50070;19886;17016;20662;18080;7436
-103;'368;Iraq;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;3931;3931;175;39;39;39;8;0;3;5;153;153;153;91;91;91;91;479;153;169;338;342;459;176;111;123;1797;5285;4850;4942;3639;3371;1188
-103;'368;Iraq;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;15;15;15;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;12;12;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696;6143;1319;1088;1486;1228;747
-103;'368;Iraq;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;1325;563;1000;195;290;108
-103;'368;Iraq;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-103;'368;Iraq;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-103;'368;Iraq;1863;Roundwood, non-coniferous;5516;Production;m3;48000;48000;48000;48000;48000;50000;50000;60000;55000;50000;50000;52700;62576;72913;73010;73081;73440;73634;72894;74377;77545;79050;78021;78843;80581;82856;84056;85858;86400;89887;96366;96799;96837;97475;98216;99336;161000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000
-103;'368;Iraq;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19347;43927;18567;15928;19176;16852;6689
-103;'368;Iraq;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668;3960;4287;3942;3444;3081;1080
-103;'368;Iraq;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-103;'368;Iraq;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-103;'368;Iraq;1864;Wood fuel;5516;Production;m3;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;22700;22576;22913;23010;23081;23440;23634;22894;24377;27545;29050;28021;28843;30581;32856;34056;35858;36400;39887;46366;46799;46837;47475;48216;49336;111000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000
-103;'368;Iraq;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;1;2;2;2;;;;;;110;747
-103;'368;Iraq;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;0;2;2;2;;;;;;60;108
-103;'368;Iraq;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;747
-103;'368;Iraq;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;108
-103;'368;Iraq;1628;Wood fuel, non-coniferous;5516;Production;m3;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;22700;22576;22913;23010;23081;23440;23634;22894;24377;27545;29050;28021;28843;30581;32856;34056;35858;36400;39887;46366;46799;46837;47475;48216;49336;111000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000
-103;'368;Iraq;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;1;2;2;2;;;;;;;
-103;'368;Iraq;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;0;2;2;2;;;;;;;
-103;'368;Iraq;1865;Industrial roundwood;5516;Production;m3;23000;23000;23000;23000;23000;25000;25000;35000;30000;25000;25000;30000;40000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000
-103;'368;Iraq;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310;43310;43310;1695;407;407;407;51;0;26;35;300;300;300;1342;1342;1342;1342;1832;1353;382;976;871;2202;192;646;622;20043;50070;19886;17016;20662;17970;6689
-103;'368;Iraq;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;3931;3931;171;35;35;35;4;0;3;5;153;153;153;91;91;91;91;479;153;169;338;318;459;174;109;121;1797;5285;4850;4942;3639;3311;1080
-103;'368;Iraq;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;15;15;15;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;12;12;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;0;26;26;0;0;0;57;57;57;57;1485;1269;298;746;710;1803;36;504;183;696;6143;1319;1088;1486;1118;0
-103;'368;Iraq;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;3;3;0;0;0;3;3;3;3;91;77;93;211;160;286;32;73;25;129;1325;563;1000;195;230;0
-103;'368;Iraq;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;0;26;26;0;0;0;57;57;57;57;1485;1269;298;746;710;1803;36;504;183;696;6143;1319;1088;1486;1118;0
-103;'368;Iraq;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;3;3;0;0;0;3;3;3;3;91;77;93;211;160;286;32;73;25;129;1325;563;1000;195;230;0
-103;'368;Iraq;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1867;Industrial roundwood, non-coniferous;5516;Production;m3;23000;23000;23000;23000;23000;25000;25000;35000;30000;25000;25000;30000;40000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000
-103;'368;Iraq;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310;43310;43310;1644;356;356;356;0;0;0;9;300;300;300;1285;1285;1285;1285;347;84;84;230;161;399;156;142;439;19347;43927;18567;15928;19176;16852;6689
-103;'368;Iraq;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;3931;3931;167;31;31;31;0;0;0;2;153;153;153;88;88;88;88;388;76;76;127;158;173;142;36;96;1668;3960;4287;3942;3444;3081;1080
-103;'368;Iraq;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;156;35;35;35;35;35;35;9;25;48;8;0;65;1;0;0
-103;'368;Iraq;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;111;36;36;36;36;36;36;6;39;8;5;0;4;2;0;0
-103;'368;Iraq;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310;43310;43310;1644;356;356;356;0;0;0;9;300;300;300;1255;1255;1255;1255;191;49;49;195;126;364;121;133;414;19299;43919;18567;15863;19175;16852;6689
-103;'368;Iraq;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;3931;3931;167;31;31;31;0;0;0;2;153;153;153;83;83;83;83;277;40;40;91;122;137;106;30;57;1660;3955;4287;3938;3442;3081;1080
-103;'368;Iraq;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1868;Sawlogs and veneer logs;5516;Production;m3;8000;8000;8000;8000;8000;10000;10000;10000;10000;10000;10000;10000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-103;'368;Iraq;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;8000;8000;8000;8000;8000;10000;10000;10000;10000;10000;10000;10000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-103;'368;Iraq;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1871;Other industrial roundwood;5516;Production;m3;15000;15000;15000;15000;15000;15000;15000;25000;20000;15000;15000;20000;25000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000
-103;'368;Iraq;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;15000;15000;15000;15000;15000;15000;15000;25000;20000;15000;15000;20000;25000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000
-103;'368;Iraq;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;0;0;0;0;950;2504;0;1498;2504;3305;0;0;5468;8444;11562;12750;11947;12601;14021;15928;16938;18545;19056;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567;22567
-103;'368;Iraq;1630;Wood charcoal;5610;Import quantity;t;12500;15200;20600;10400;23900;17800;16900;12000;10700;12600;6100;5100;11100;6500;5700;5000;11200;11200;2900;1000;200;200;200;200;200;200;200;200;200;200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;728;266;266;759;2083;11995;13524;2947;14640;35971;26936;56954;74186;45210;59125;54285
-103;'368;Iraq;1630;Wood charcoal;5622;Import value;1000 USD;749;509;1153;677;1463;1044;1050;818;709;612;394;363;1132;1044;1030;936;1889;1899;602;188;61;61;61;61;61;61;61;61;61;61;61;61;61;0;0;0;0;0;0;0;0;0;0;0;0;0;0;353;112;112;503;1971;7642;8422;2070;12223;23057;22728;53476;72658;39949;58601;54668
-103;'368;Iraq;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;12;12;12;29;5;2351;250;90;128;47
-103;'368;Iraq;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;5;25;51;962;66;65;113;66
-103;'368;Iraq;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;25;14;14;46;694;76;279;346;792;48;746;1085;823;916;1378;33031
-103;'368;Iraq;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;6;6;6;20;91;30;198;166;572;22;432;236;174;106;541;11020
-103;'368;Iraq;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;43;151;249;154
-103;'368;Iraq;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;1;6;16;13
-103;'368;Iraq;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;20;17;17;3;3;3;527;255;216;197;573
-103;'368;Iraq;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;10;2;2;13;13;13;185;114;16;86;167
-103;'368;Iraq;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;25;14;14;46;107;56;262;329;789;45;743;558;568;700;1181;32458
-103;'368;Iraq;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;6;6;6;20;68;20;196;164;559;9;419;51;60;90;455;10853
-103;'368;Iraq;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;43;151;249;154
-103;'368;Iraq;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;1;6;16;13
-103;'368;Iraq;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;1378;653;25;233
-103;'368;Iraq;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;860;531;10;75
-103;'368;Iraq;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;298;0;2;57
-103;'368;Iraq;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;399;0;1;25
-103;'368;Iraq;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471;1080;653;23;176
-103;'368;Iraq;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;461;531;9;50
-103;'368;Iraq;1872;Sawnwood;5516;Production;m3;3600;3600;3600;3600;3600;4000;4000;4000;4000;4000;4000;4000;6000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-103;'368;Iraq;1872;Sawnwood;5616;Import quantity;m3;114700;121700;69100;99100;138100;124600;27500;12700;69900;104400;74500;74300;52100;300900;272500;303600;291800;291800;291800;404200;284000;478500;157200;393000;413500;210500;210500;210500;210500;210500;210300;16206;10617;317;317;119;119;200;35;6;29400;24000;30800;104378;124678;116478;52478;82838;88530;141400;163162;216824;337038;350285;293619;275795;287388;283786;338352;387644;493065;228803;232406
-103;'368;Iraq;1872;Sawnwood;5622;Import value;1000 USD;7108;7305;4245;6732;9399;7469;1707;987;4657;8058;6392;8196;4991;54752;55012;71562;68649;68649;68649;95254;56978;95578;31578;78738;79278;41278;41278;41278;41278;41278;41100;3057;2249;149;149;35;35;33;2;4;4523;3951;6758;13745;17521;22880;12306;25512;23225;37478;41106;100198;86844;84966;61356;57544;62404;72957;70728;75197;115881;64169;40505
-103;'368;Iraq;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;0;0;0;0;0;0;0;0;1;1;1;1;2;2;1;0;0;39;36;26;0;0;0;0
-103;'368;Iraq;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;0;0;0;1;1;0;0;3;0;1;0;0;4;9;5;0;5;0;0
-103;'368;Iraq;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1632;Sawnwood, coniferous;5616;Import quantity;m3;80250;87700;50700;54100;81100;92050;11000;11000;62400;70800;31950;7800;39900;183900;186100;221850;221850;221850;221850;334250;226900;421400;100100;335900;403100;200100;200100;200100;200100;200100;200000;5906;317;317;317;100;100;200;35;0;13400;8000;14800;91400;111700;103500;39500;61000;72200;114700;139050;149384;281614;317000;261321;250896;252440;263625;286407;336585;450990;199351;207996
-103;'368;Iraq;1632;Sawnwood, coniferous;5622;Import value;1000 USD;4549;4835;2765;3406;5152;5103;711;711;3811;5396;2534;716;3568;30302;31428;38622;38622;38622;38622;65227;45489;84089;20089;67249;77089;39089;39089;39089;39089;39089;39000;957;149;149;149;22;22;33;2;0;1730;1158;3965;9786;13562;18921;8347;12628;14444;21783;28022;27628;55110;66887;46011;44766;46257;62783;50019;58135;98297;48228;27985
-103;'368;Iraq;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;39;0;0;0;0;0;0
-103;'368;Iraq;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;0;5;0;0
-103;'368;Iraq;1633;Sawnwood, non-coniferous;5516;Production;m3;3600;3600;3600;3600;3600;4000;4000;4000;4000;4000;4000;4000;6000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-103;'368;Iraq;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;34450;34000;18400;45000;57000;32550;16500;1700;7500;33600;42550;66500;12200;117000;86400;81750;69950;69950;69950;69950;57100;57100;57100;57100;10400;10400;10400;10400;10400;10400;10300;10300;10300;0;0;19;19;0;0;6;16000;16000;16000;12978;12978;12978;12978;21838;16330;26700;24112;67440;55424;33285;32298;24899;34948;20161;51945;51059;42075;29452;24410
-103;'368;Iraq;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2559;2470;1480;3326;4247;2366;996;276;846;2662;3858;7480;1423;24450;23584;32940;30027;30027;30027;30027;11489;11489;11489;11489;2189;2189;2189;2189;2189;2189;2100;2100;2100;0;0;13;13;0;0;4;2793;2793;2793;3959;3959;3959;3959;12884;8781;15695;13084;72570;31734;18079;15345;12778;16147;10174;20709;17062;17584;15941;12520
-103;'368;Iraq;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;0;0;0;0;0;0;0;0;1;1;1;1;2;2;1;0;0;0;36;26;0;0;0;0
-103;'368;Iraq;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;0;0;0;1;1;0;0;3;0;1;0;0;0;9;5;0;0;0;0
-103;'368;Iraq;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1634;Veneer sheets;5616;Import quantity;m3;3700;1800;1500;1900;1900;1300;200;200;1600;2200;1200;400;400;400;200;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;160;160;160;160;942;62;62;89;208;238;313;59;638;211;46;151;66;11;22;37
-103;'368;Iraq;1634;Veneer sheets;5622;Import value;1000 USD;728;334;307;427;413;310;69;69;378;450;331;119;131;131;166;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;124;124;124;124;283;74;196;103;227;218;167;70;520;177;113;96;77;164;151;75
-103;'368;Iraq;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1873;Wood-based panels;5516;Production;m3;;;;1400;1400;1400;1400;1400;1400;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-103;'368;Iraq;1873;Wood-based panels;5616;Import quantity;m3;8600;8000;7200;13900;15200;14291;12175;14492;16570;26919;19148;15843;17200;68400;64900;47900;51300;73300;86400;46200;36400;36400;36400;36400;36400;36400;36400;36400;36400;36400;36400;33600;1936;2279;679;15;15;0;5756;11188;20998;20998;20998;99226;99226;99226;99226;35000;48494;54064;87655;104735;194427;260495;228306;316404;358617;355778;531918;671958;756021;697483;714917
-103;'368;Iraq;1873;Wood-based panels;5622;Import value;1000 USD;1619;1541;1255;2495;2407;2639;2643;3338;2932;5475;3534;3822;4203;21484;25913;27513;24766;29370;41361;25869;20108;20108;20108;20108;20108;20108;20108;20108;20108;20108;20108;19016;1175;1165;149;30;30;0;1520;2004;2634;2634;2634;21077;21077;21077;21077;24674;28646;30436;59802;78446;107339;156862;134265;138920;156168;172604;206117;217675;276015;285149;274450
-103;'368;Iraq;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;34;0;0;0;0;0;0;0;0;0;0;84;51;51;51;51;51;187;187;97;97;52;55;907;59;59;38
-103;'368;Iraq;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21;0;0;0;0;0;0;0;0;0;0;70;29;29;29;29;29;122;122;70;70;30;32;226;32;32;0
-103;'368;Iraq;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1640;Plywood and LVL;5616;Import quantity;m3;5400;4300;2600;8600;7600;7800;8000;8000;10500;18000;15600;12500;14500;54900;51200;30600;44600;61700;74800;39000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;336;679;679;15;15;0;1503;4970;4970;4970;4970;20839;20839;20839;20839;5296;2599;8169;14818;24102;101185;145704;125534;200128;208809;188260;194687;227956;274441;236081;251947
-103;'368;Iraq;1640;Plywood and LVL;5622;Import value;1000 USD;954;712;489;1516;1279;1502;1469;1469;1731;3425;2880;2936;3420;16753;22079;15767;19778;22224;34191;22031;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;159;149;149;30;30;0;1312;1253;1253;1253;1253;7398;7398;7398;7398;5819;2552;4342;7851;18605;42693;91660;80443;87547;93633;99768;100498;103372;113012;107224;107836
-103;'368;Iraq;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0
-103;'368;Iraq;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0
-103;'368;Iraq;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;1400;1400;1400;1400;1400;1400;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;1400;1200;2200;2700;700;700;700;600;600;500;100;600;600;4400;4400;4400;4400;4400;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;107;98;143;197;54;54;54;50;50;46;17;111;78;2746;2746;2746;2746;2746;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;1016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-103;'368;Iraq;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;838;2124;9940;9940;9940;71088;71088;71088;71088;15302;14833;14833;6627;399;374;444;1095;1264;5662;5662;29207;54803;62941;7689;20391
-103;'368;Iraq;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;93;176;657;657;657;11659;11659;11659;11659;7450;6031;6031;3270;649;313;389;339;317;2206;2206;6232;11035;19300;3042;5465
-103;'368;Iraq;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;51;51;51;51;51;51;51;51;51;51;51;51;51;51;0
-103;'368;Iraq;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;29;29;29;29;29;29;29;29;29;29;29;29;29;29;0
-103;'368;Iraq;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;60;60;60;60;74;74;74;74;60;444;444;2463;1207;667;3211;1280;845;1307;703;19965;5127;7126;2049;2253
-103;'368;Iraq;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;4;4;4;4;12;12;12;12;38;308;308;1405;564;379;1099;640;503;545;317;3647;843;2340;708;709
-103;'368;Iraq;1874;Fibreboard;5616;Import quantity;m3;3200;3700;3200;4100;5400;3791;3475;5792;5370;8319;2948;2843;2600;12900;13100;12900;2300;7200;7200;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;;;;;;;;3118;4034;6028;6028;6028;7225;7225;7225;7225;14342;30618;30618;63747;79027;92201;111136;100397;114167;142839;161153;288059;384072;411513;451664;440326
-103;'368;Iraq;1874;Fibreboard;5622;Import value;1000 USD;665;829;659;881;985;940;1120;1815;1147;2000;604;840;766;4620;3756;9000;2242;4400;4424;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;;;;;;;;95;571;720;720;720;2008;2008;2008;2008;11367;19755;19755;47276;58628;63954;63714;52843;50553;59784;70313;95740;102425;141363;174175;160440
-103;'368;Iraq;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;136;46;46;1;1;856;8;8;38
-103;'368;Iraq;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;41;41;1;1;197;3;3;0
-103;'368;Iraq;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590;250;400;400;400;2879;2879;2879;2879;237;109;109;3066;3038;3290;2412;2754;3457;3076;4944;13208;41874;14640;14110;13711
-103;'368;Iraq;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;48;96;96;96;1336;1336;1336;1336;277;84;84;2216;2500;2945;2239;2197;2584;2341;3185;6944;8373;9539;11170;8993
-103;'368;Iraq;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;3428;3428;3428;3428;2727;2727;2727;2727;13173;27197;27197;50337;73514;84832;99827;84946;107730;132140;132749;254341;318791;364772;417823;404056
-103;'368;Iraq;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;500;500;500;500;466;466;466;466;10282;17625;17625;39099;54269;59436;58448;46737;46457;54434;56466;82250;86461;119243;154228;142962
-103;'368;Iraq;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;136;46;46;1;1;856;8;8;38
-103;'368;Iraq;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;41;41;1;1;197;3;3;0
-103;'368;Iraq;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;356;2200;2200;2200;1619;1619;1619;1619;932;3312;3312;10344;2475;4079;8897;12697;2980;7623;23460;20510;23407;32101;19731;22559
-103;'368;Iraq;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;23;124;124;124;206;206;206;206;808;2046;2046;5961;1859;1573;3027;3909;1512;3009;10662;6546;7591;12581;8777;8485
-103;'368;Iraq;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;3200;3700;3200;4100;5400;3791;3475;5792;5370;8319;2948;2843;2600;12900;13100;12900;2300;7200;7200;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;665;829;659;881;985;940;1120;1815;1147;2000;604;840;766;4620;3756;9000;2242;4400;4424;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;1092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;4600;10000;1000;1000;10000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;11000;11000;13000;13000;13000;13000;13000;13000;8000;8000;8000;8000;8000;8000;19000;31000;28000;67000;142000;207000;207000;207000;207000;352000;462000;352000
-103;'368;Iraq;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;16500;2600;1400;14800;21700;15100;15100;15100;15100;15100;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1985;285;285;285;285;0;866;1090;2200;2200;2200;7;7;7;7;1309;1309;1309;929;897;1171;241;236;1328;94;1124;5056;7846;25034;20007;26131
-103;'368;Iraq;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;2981;483;507;9600;12224;8560;8560;8560;8560;8560;775;775;775;775;775;775;775;775;775;775;775;775;800;25;25;25;25;0;502;697;1313;1313;1313;1;1;1;1;1742;1742;1742;1744;1689;2070;177;191;800;34;868;3558;6370;25583;26061;16668
-103;'368;Iraq;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;122;122;0;23;23;23;23;23;179;179;179;179;356;356;356;2161;17504;28565;26309;65005;138132;204073;191205;180229;133154;329763;452213;314779
-103;'368;Iraq;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;19;19;0;10;10;10;10;10;25;25;25;25;183;183;183;452;2930;3938;4161;9032;19694;29815;21866;26831;17065;60508;80738;47459
-103;'368;Iraq;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;4600;10000;1000;1000;10000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;11000;11000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-103;'368;Iraq;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;16500;2600;1400;14800;21700;15100;15100;15100;15100;15100;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;849;849;849;870;838;1170;182;209;117;23;1053;3840;7307;24875;20007;26117
-103;'368;Iraq;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;2981;483;507;9600;12224;8560;8560;8560;8560;8560;775;775;775;775;775;775;775;775;775;775;775;775;775;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1658;1658;1658;1714;1659;2070;153;137;105;18;852;3174;4175;25539;26061;16664
-103;'368;Iraq;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;29;29;29;29;29;29;29;29;29;206;206;206
-103;'368;Iraq;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;37;37;37;37;37;37;37;37;37;292;292;292
-103;'368;Iraq;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;16500;2600;1400;14800;21700;15100;15100;15100;15100;15100;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;75;75;75;96;64;396;182;209;95;23;1053;3837;7307;24875;19996;26108
-103;'368;Iraq;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;2981;483;507;9600;12224;8560;8560;8560;8560;8560;775;775;775;775;775;775;775;775;775;775;775;775;775;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;56;56;112;57;468;153;137;91;18;852;3167;4173;25535;26043;16646
-103;'368;Iraq;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;29;29;29;29;29;29;29;29;29;206;206;206
-103;'368;Iraq;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;37;37;37;37;37;37;37;37;37;292;292;292
-103;'368;Iraq;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1;62;75;3
-103;'368;Iraq;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;4;176;86;4
-103;'368;Iraq;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;10;73;30;66;18;55;10;;;;;;;
-103;'368;Iraq;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;9;93;40;185;30;33;5;;;;;;;
-103;'368;Iraq;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;16500;2600;1400;14800;21700;15100;15100;15100;15100;15100;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-103;'368;Iraq;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;2981;483;507;9600;12224;8560;8560;8560;8560;8560;775;775;775;775;775;775;775;775;775;775;775;775;775;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-103;'368;Iraq;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;65;65;23;34;330;164;154;85;23;1053;3743;7306;24813;19921;26105
-103;'368;Iraq;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;47;47;19;17;283;123;104;86;18;852;3084;4169;25359;25957;16642
-103;'368;Iraq;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;29;29;29;29;29;29;29;29;29;206;206;206
-103;'368;Iraq;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;37;37;37;37;37;37;37;37;37;292;292;292
-103;'368;Iraq;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;0;0;1074;1074
-103;'368;Iraq;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;0;0;1111;1111
-103;'368;Iraq;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6
-103;'368;Iraq;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27
-103;'368;Iraq;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;65;65;13;24;317;154;154;85;23;1053;3360;7306;24813;18847;25031
-103;'368;Iraq;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;47;47;15;13;274;104;104;86;18;852;2870;4168;25358;24845;15530
-103;'368;Iraq;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;200;200;200
-103;'368;Iraq;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;265;265;265
-103;'368;Iraq;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;0;0;0;0
-103;'368;Iraq;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;1;1;1;1
-103;'368;Iraq;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;0;0;0;;;;;;;
-103;'368;Iraq;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;;;;;;;
-103;'368;Iraq;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;10;0;0;;;;;;;
-103;'368;Iraq;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;19;0;0;;;;;;;
-103;'368;Iraq;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-103;'368;Iraq;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;4600;10000;1000;1000;10000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;11000;11000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-103;'368;Iraq;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;774;774;774;774;774;774;0;0;22;0;0;3;0;0;11;9
-103;'368;Iraq;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1602;1602;1602;1602;1602;1602;0;0;14;0;0;7;2;4;18;18
-103;'368;Iraq;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;6;21;21;7;7;37;5;37;2;2;4
-103;'368;Iraq;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;8;21;21;3;3;144;92;144;3;3;2
-103;'368;Iraq;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;6000;6000;6000;6000;6000;6000;17000;29000;26000;65000;140000;205000;205000;205000;205000;350000;460000;350000
-103;'368;Iraq;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;285;285;285;285;0;866;1090;2200;2200;2200;7;7;7;7;460;460;460;59;59;1;59;27;1211;71;71;1216;539;159;0;14
-103;'368;Iraq;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;0;502;697;1313;1313;1313;1;1;1;1;84;84;84;30;30;0;24;54;695;16;16;384;2195;44;0;4
-103;'368;Iraq;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;0;0;0;0;0;0;156;156;156;156;333;333;333;2138;17475;28536;26280;64976;138103;204044;191176;180200;133125;329557;452007;314573
-103;'368;Iraq;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;0;0;0;0;15;15;15;15;173;173;173;442;2893;3901;4124;8995;19657;29778;21829;26794;17028;60216;80446;47167
-103;'368;Iraq;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;14000;24000;25000;22000;25000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;55000;13000;13000;13000;18000;18000;18000;18000;12000;12000;10000;13000;13000;7000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000
-103;'368;Iraq;1876;Paper and paperboard;5610;Import quantity;t;27700;18000;22400;26500;30600;42800;30500;37600;32500;43900;49400;44100;20400;39300;43900;37100;45500;46900;31000;43000;53800;40800;42800;51800;69800;83800;83800;83800;83800;83800;83800;28618;121;89;89;19;129;3000;3137;3894;20280;20280;20280;12839;12839;12839;12839;12467;10107;10107;13507;19955;33481;48223;57699;84578;87387;101647;267234;236610;291583;196967;371919
-103;'368;Iraq;1876;Paper and paperboard;5622;Import value;1000 USD;8681;6889;5294;6151;7800;12347;7549;8935;9307;12420;14116;12434;7494;24451;30747;26008;29970;30450;20050;27250;36134;31334;32134;35134;50534;55334;55334;55334;55334;55334;55334;23131;98;77;77;19;148;2975;2379;1686;13207;13207;13207;9812;9812;9812;9812;14631;12740;12740;17372;20931;31568;49196;55184;80548;89153;111920;279692;224120;299973;271348;437865
-103;'368;Iraq;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;0;0;0;12;19;2;2;2;6;6;6;6;108;108;108;133;133;133;133;237;125;125;27;168;2793;340;429;79
-103;'368;Iraq;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;0;0;0;0;0;13;24;7;7;7;11;11;11;11;106;106;106;145;138;138;138;231;120;120;38;276;2686;772;747;94
-103;'368;Iraq;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;5000;9000;12000;8000;12000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;16000;5000;5000;5000;7000;7000;7000;7000;;;1000;4000;4000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-103;'368;Iraq;2042;Graphic papers;5610;Import quantity;t;9200;7500;6900;7900;5700;11600;8900;10000;8000;14200;15600;13500;6100;6300;10500;5300;8100;9500;10500;15500;31000;18000;20000;29000;47000;61000;61000;61000;61000;61000;61000;27000;79;79;79;9;95;2900;3060;1617;19100;19100;19100;8037;8037;8037;8037;7255;6237;6237;9795;12013;12490;20059;28299;34545;39803;55392;123260;59361;79902;41911;104005
-103;'368;Iraq;2042;Graphic papers;5622;Import value;1000 USD;2298;1514;1567;1858;1346;3380;1949;2400;2932;3956;4618;3950;2080;4675;7484;3858;3865;4345;4650;6250;14600;9800;10600;13600;29000;33800;33800;33800;33800;33800;33800;22300;65;65;65;7;102;2891;2297;716;12622;12622;12622;6276;6276;6276;6276;7078;5983;5983;9973;12405;12856;18789;24905;28128;33896;55778;129623;51936;77960;50390;115704
-103;'368;Iraq;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;12;19;2;2;2;2;2;2;2;104;104;104;104;104;104;104;104;104;104;6;50;27;46;183;57
-103;'368;Iraq;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;13;24;7;7;7;7;7;7;7;102;102;102;102;95;95;95;95;95;95;13;44;14;45;91;56
-103;'368;Iraq;1671;Newsprint;5610;Import quantity;t;1100;1000;1400;1500;800;1700;1400;900;1800;3100;1800;3000;3000;700;4900;3800;6600;8000;9000;14000;23000;10000;12000;21000;20000;34000;34000;34000;34000;34000;34000;;;0;0;0;0;0;0;0;0;0;0;237;237;237;237;1455;233;233;218;445;1173;2123;959;493;496;1335;4427;659;497;306;328
-103;'368;Iraq;1671;Newsprint;5622;Import value;1000 USD;182;186;248;258;137;307;225;158;372;585;383;648;777;216;2480;2014;2020;2500;2800;4400;8000;3200;4000;7000;6700;11500;11500;11500;11500;11500;11500;;;0;0;0;0;0;0;0;0;0;0;121;121;121;121;988;123;123;167;363;880;1470;503;279;298;916;2775;346;307;306;321
-103;'368;Iraq;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;3
-103;'368;Iraq;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;7;7;7;7;7;7;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;2
-103;'368;Iraq;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;5000;9000;12000;8000;12000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;16000;5000;5000;5000;7000;7000;7000;7000;;;1000;4000;4000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-103;'368;Iraq;1674;Printing and writing papers;5610;Import quantity;t;8100;6500;5500;6400;4900;9900;7500;9100;6200;11100;13800;10500;3100;5600;5600;1500;1500;1500;1500;1500;8000;8000;8000;8000;27000;27000;27000;27000;27000;27000;27000;27000;79;79;79;9;95;2900;3060;1617;19100;19100;19100;7800;7800;7800;7800;5800;6004;6004;9577;11568;11317;17936;27340;34052;39307;54057;118833;58702;79405;41605;103677
-103;'368;Iraq;1674;Printing and writing papers;5622;Import value;1000 USD;2116;1328;1319;1600;1209;3073;1724;2242;2560;3371;4235;3302;1303;4459;5004;1844;1845;1845;1850;1850;6600;6600;6600;6600;22300;22300;22300;22300;22300;22300;22300;22300;65;65;65;7;102;2891;2297;716;12622;12622;12622;6155;6155;6155;6155;6090;5860;5860;9806;12042;11976;17319;24402;27849;33598;54862;126848;51590;77653;50084;115383
-103;'368;Iraq;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;17;0;0;0;0;0;0;0;102;102;102;102;102;102;102;102;102;102;4;48;25;44;181;54
-103;'368;Iraq;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;17;0;0;0;0;0;0;0;95;95;95;95;95;95;95;95;95;95;13;44;14;45;91;54
-103;'368;Iraq;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;809;334;334;333;150;644;274;1261;1332;516;516;1894;660;754;1223;15060
-103;'368;Iraq;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;915;436;436;356;325;818;598;1410;2355;1094;1094;2493;1169;1287;1947;16297
-103;'368;Iraq;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-103;'368;Iraq;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-103;'368;Iraq;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;4000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-103;'368;Iraq;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2870;3030;1549;18900;18900;18900;4842;4842;4842;4842;3536;5298;5298;8509;10176;9530;15537;17195;25846;29876;43626;92758;44279;61394;30857;71191
-103;'368;Iraq;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2827;2233;661;12344;12344;12344;3821;3821;3821;3821;3538;5095;5095;8470;10506;9815;14869;15884;20467;24974;40572;99018;36750;55851;34453;79554
-103;'368;Iraq;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;44;25;1;137;2
-103;'368;Iraq;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;14;0;43;2
-103;'368;Iraq;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;68;200;200;200;2947;2947;2947;2947;1455;372;372;735;1242;1143;2125;8884;6874;8915;9915;24181;13763;17257;9525;17426
-103;'368;Iraq;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;55;278;278;278;2325;2325;2325;2325;1637;329;329;980;1211;1343;1852;7108;5027;7530;13196;25337;13671;20515;13684;19532
-103;'368;Iraq;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;0;0;0;0;0;0;102;102;102;102;102;102;102;102;102;102;4;4;0;43;43;51
-103;'368;Iraq;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;0;0;0;0;95;95;95;95;95;95;95;95;95;95;13;13;0;45;45;49
-103;'368;Iraq;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;9000;15000;13000;14000;13000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;39000;8000;8000;8000;11000;11000;11000;11000;12000;12000;9000;9000;9000;5000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000
-103;'368;Iraq;1675;Other paper and paperboard;5610;Import quantity;t;18500;10500;15500;18600;24900;31200;21600;27600;24500;29700;33800;30600;14300;33000;33400;31800;37400;37400;20500;27500;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;1618;42;10;10;10;34;100;77;2277;1180;1180;1180;4802;4802;4802;4802;5212;3870;3870;3712;7942;20991;28164;29400;50033;47584;46255;143974;177249;211681;155056;267914
-103;'368;Iraq;1675;Other paper and paperboard;5622;Import value;1000 USD;6383;5375;3727;4293;6454;8967;5600;6535;6375;8464;9498;8484;5414;19776;23263;22150;26105;26105;15400;21000;21534;21534;21534;21534;21534;21534;21534;21534;21534;21534;21534;831;33;12;12;12;46;84;82;970;585;585;585;3536;3536;3536;3536;7553;6757;6757;7399;8526;18712;30407;30279;52420;55257;56142;150069;172184;222013;220958;322161
-103;'368;Iraq;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;29;29;29;29;133;21;21;21;118;2766;294;246;22
-103;'368;Iraq;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;43;43;43;43;136;25;25;25;232;2672;727;656;38
-103;'368;Iraq;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;770;770;770;770;171;194;194;350;575;1161;1608;5505;12941;16803;15871;35979;41962;46138;38514;49637
-103;'368;Iraq;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;848;848;848;848;353;473;473;680;1185;1755;2775;8222;19264;22500;19331;51384;53413;58767;68686;70436
-103;'368;Iraq;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;24;30;10
-103;'368;Iraq;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;28;51;14
-103;'368;Iraq;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;8000;8000;8000;4000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-103;'368;Iraq;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;2197;1100;1100;1100;3459;3459;3459;3459;2088;1274;1274;2196;6711;18563;23702;22516;33703;30613;28388;106033;133977;163667;114148;214966
-103;'368;Iraq;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;904;519;519;519;2144;2144;2144;2144;2683;2405;2405;3989;4863;15678;23437;20834;29169;32086;30952;89385;112071;154553;139754;232028
-103;'368;Iraq;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;129;13;13;13;114;2758;216;216;1
-103;'368;Iraq;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;132;15;15;15;225;2662;604;604;4
-103;'368;Iraq;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;9000;15000;13000;14000;13000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;39000;8000;8000;8000;11000;11000;11000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;29500;19800;25900;22500;28000;32200;29600;13800;31500;31200;28600;33600;33600;18500;25000;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;12200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;8167;4900;5735;5425;7664;8598;7854;5214;18276;19820;17170;20200;20200;12000;16000;10560;10560;10560;10560;10560;10560;10560;10560;10560;10560;10560;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-103;'368;Iraq;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;6000;3000;3000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-103;'368;Iraq;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;600;600;600;1951;1951;1951;1951;51;7;7;7;15;474;349;2013;505;4222;5651;50133;67878;83657;75667;117081
-103;'368;Iraq;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;249;249;249;1210;1210;1210;1210;63;7;7;8;14;275;233;2815;243;2044;3258;24088;30558;42824;51290;60750
-103;'368;Iraq;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;4000;4000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-103;'368;Iraq;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;200;200;200;877;877;877;877;642;611;611;1274;604;1290;2224;4771;9576;10396;5810;9515;14626;26444;25653;46187
-103;'368;Iraq;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;106;106;106;544;544;544;544;720;1791;1791;2753;583;1741;4997;6442;12350;17272;11741;18309;36561;58296;69763;103509
-103;'368;Iraq;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;9;9;9;67;2758;216;216;0
-103;'368;Iraq;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;10;10;10;195;2662;604;604;0
-103;'368;Iraq;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-103;'368;Iraq;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2137;100;100;100;476;476;476;476;1244;602;602;791;6084;16762;21098;15667;23592;14632;14462;41786;45737;49785;10448;46966
-103;'368;Iraq;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;872;79;79;79;294;294;294;294;1592;556;556;1140;4252;13577;18045;11332;16506;11784;14093;43710;40573;50462;14858;63556
-103;'368;Iraq;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;4;4;4;47;0;0;0;1
-103;'368;Iraq;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;5;5;5;30;0;0;0;4
-103;'368;Iraq;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;45;200;200;200;155;155;155;155;151;54;54;124;8;37;31;65;30;1363;2465;4599;5736;3781;2380;4732
-103;'368;Iraq;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;26;85;85;85;96;96;96;96;308;51;51;88;14;85;162;245;70;986;1860;3278;4379;2971;3843;4213
-103;'368;Iraq;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-103;'368;Iraq;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;1700;1800;1700;2000;1700;1600;1000;500;1500;2200;3200;3800;3800;2000;2500;10600;10600;10600;10600;10600;10600;10600;10600;10600;10600;10600;1618;42;10;10;10;34;100;35;79;79;79;79;573;573;573;573;2953;2402;2402;1166;656;1267;2854;1379;3389;168;1996;1962;1310;1876;2394;3311
-103;'368;Iraq;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;800;700;800;950;800;900;630;200;1500;3443;4980;5905;5905;3400;5000;10974;10974;10974;10974;10974;10974;10974;10974;10974;10974;10974;831;33;12;12;12;46;84;56;65;65;65;65;544;544;544;544;4517;3879;3879;2730;2478;1279;4195;1223;3987;671;5859;9300;6700;8693;12518;19697
-103;'368;Iraq;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;0;4;54;0;11
-103;'368;Iraq;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;1;4;95;1;20
-103;'368;Iraq;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551124;653028;677872;551006;747069;839651;749240
-103;'368;Iraq;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;181;145;180;168;232;299
-103;'368;Iraq;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060;1647;3328;2716;4808;5197;3964
-103;'368;Iraq;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-103;'368;Iraq;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932;627;810;956;1802;1800;2102
-103;'368;Iraq;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-103;'368;Iraq;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128;1020;2518;1760;3006;3397;1862
-103;'368;Iraq;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2844;7964;4628;5086;4423;3890;4233
-103;'368;Iraq;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;2;1;22;11;1
-103;'368;Iraq;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3312;4937;7069;3504;5276;4078;4141
-103;'368;Iraq;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;4;5;12;15;17
-103;'368;Iraq;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33859;37103;45624;38306;45167;56083;51143
-103;'368;Iraq;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;19;5;5;25;7;45
-103;'368;Iraq;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;3
-103;'368;Iraq;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;11
-103;'368;Iraq;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;52
-103;'368;Iraq;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;758;74
-103;'368;Iraq;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492928;569357;591396;463250;622307;721920;663431
-103;'368;Iraq;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;157;119;167;106;196;232
-103;'368;Iraq;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321;7482;387;1107;98;490;1226
-103;'368;Iraq;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15800;24538;25440;37037;64990;47993;21102
-103;'368;Iraq;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;13;0;1;1;2
-103;'368;Iraq;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352469;426997;461806;417819;403854;405414;473760
-103;'368;Iraq;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432;677;367;361;745;384;97
-103;'368;Iraq;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;559;1155;363;2020;256;266
-103;'368;Iraq;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12064;12361;13073;26330;16913;13827;11817
-103;'368;Iraq;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;248;1;1;0;1
-103;'368;Iraq;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46745;70722;85571;62740;34883;50363;94401
-103;'368;Iraq;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;164;14;194;1;15;6
-103;'368;Iraq;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139216;155962;166118;167863;204236;152422;183396
-103;'368;Iraq;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;392;50;116;632;318;46
-103;'368;Iraq;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154157;187393;195889;160523;145802;188546;183880
-103;'368;Iraq;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;121;55;50;111;51;44
-104;'372;Ireland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977839.06;2172174;2085046;2046905;2430204;2753992;2712931
-104;'372;Ireland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;871580.8;984415;928788;861661;1220757;1235615;1214146
-104;'372;Ireland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;29300;29110;34780;41985;43792;51164;51002;59989;67171;71008;80323;95173;126699;216271;152604;181154;204748;252598;358720;375046;364166;303892;271004;277297;269409;287715;317269;491041;520500;539573;538419;587423;437604;609218;642223;982644;683714;759999;732399;730482;697157;660401;868619;902874;973970;1130804;1336492;1252314;709122;700198;768433;714091;747543;807768;752059;751024;769483.79;849586;850599;749537;922554;1010039;1012046
-104;'372;Ireland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;5041;4994;5813;6924;7886;6179;7307;8838;8471;10932;13831;17197;21377;30368;29410;30618;35997;40828;39843;41278;45524;37412;35561;36205;35715;47880;62558;141831;132523;137149;144413;183881;146238;180497;230683;272138;265271;278040;285706;244676;261286;310678;441888;475980;507538;555471;689701;578774;425116;511274;565340;489933;574374;615992;497264;548391;555477.19;602674;602674;541745;860018;828362;812942
-104;'372;Ireland;1861;Roundwood;5516;Production;m3;413000;350000;367000;352000;328000;301000;349000;326000;299000;387000;365000;447000;431000;250000;304000;479000;399000;479000;379000;379000;379000;1116000;1042000;1272000;1293000;1261000;1293000;1377000;1500000;1625000;1670000;1960000;1821000;2018000;2204000;2291000;2180000;2266000;2584000;2673100;2455000;2646100;2683300;2562035;2648000;2671000;2710000;2232000;2428772;2617996;2635326;2580419;2759623;2827986;2907990;3050423;3679000;3764000;3963000;3912000;3912000;3912000;3912000
-104;'372;Ireland;1861;Roundwood;5616;Import quantity;m3;19500;17700;27700;32500;48400;25400;31300;29000;30900;23500;20000;30800;56200;46800;37100;32900;28700;32100;57000;25700;47000;28000;10400;15000;10200;12514;10292;16712;11034;30168;12504;18454;48245;63000;50000;3000;82000;112000;322000;107000;100020;142974;163585;194653;232911;208850;272000;330880;193809;121298;113445;220424;252915;257661;292811;312551;366809;324907;324907;287500;320689;196596;196596
-104;'372;Ireland;1861;Roundwood;5622;Import value;1000 USD;714;814;1543;1825;2668;1635;1986;2426;2014;1488;995;1893;6546;8560;4991;4827;4372;5652;10932;6282;8071;4277;1987;2784;1543;2246;1930;2652;1693;2519;1531;3877;10911;14657;12827;557;28766;29706;22675;26003;24667;23176;45386;56079;65409;74585;106955;75082;46804;42555;40568;39191;39839;48439;54514;42568;49635.47;46591;46591;38071;58322;42822;42822
-104;'372;Ireland;1861;Roundwood;5916;Export quantity;m3;500;2700;1900;10700;4800;4800;4800;4800;4800;4800;4800;4800;1400;400;500;50400;79400;96600;94300;140200;281000;402000;194500;155300;176300;148668;153069;271846;262964;37840;277452;328608;188855;124200;304000;250000;260000;92000;176000;42000;51500;129005;341645;255260;337917;308890;308006;262150;285314;349980;311132;201880;357653;332771;306314;378371;33890;50848;50848;406600;444002;484771;484771
-104;'372;Ireland;1861;Roundwood;5922;Export value;1000 USD;8;22;17;62;30;30;30;30;30;30;30;30;62;37;61;919;1384;2124;2619;3593;5724;6678;4029;3080;2905;3181;3610;10583;10078;5639;11868;27181;12052;14539;15524;9604;8994;8774;8252;8348;8377;7641;11303;14067;13181;13689;25271;22172;20577;49217;53135;29875;51517;38775;29106;39813;9056.38;12615;12615;23280;32376;32212;32212
-104;'372;Ireland;1862;Roundwood, coniferous;5516;Production;m3;322000;290000;293000;302000;267000;256000;282000;286000;254000;353000;325000;417000;411000;238000;292000;455000;383000;453000;349000;349000;349000;1087000;1018000;1244000;1264000;1232000;1264000;1287000;1410000;1535000;1560000;1850000;1776000;1976000;2163000;2250000;2129000;2208000;2526000;2631200;2421000;2600300;2643250;2548944;2630000;2654000;2683000;2203000;2345825;2514344;2513144;2474752;2665722;2725843;2807258;2983995;3663000;3748000;3950000;3887000;3887000;3887000;3887000
-104;'372;Ireland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338465;290451;290451;257500;301049;180833;180833
-104;'372;Ireland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29040.18;32151;32151;30596;47574;31078;31078
-104;'372;Ireland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15347;32315;32315;394000;443891;458316;458316
-104;'372;Ireland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905.26;4467;4467;21888;31921;30293;30293
-104;'372;Ireland;1863;Roundwood, non-coniferous;5516;Production;m3;91000;60000;74000;50000;61000;45000;67000;40000;45000;34000;40000;30000;20000;12000;12000;24000;16000;26000;30000;30000;30000;29000;24000;28000;29000;29000;29000;90000;90000;90000;110000;110000;45000;42000;41000;41000;51000;58000;58000;41900;34000;45800;40050;13091;18000;17000;27000;29000;82947;103652;122182;105667;93901;102143;100732;66428;16000;16000;13000;25000;25000;25000;25000
-104;'372;Ireland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28344;34456;34456;30000;19640;15763;15763
-104;'372;Ireland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20595.3;14440;14440;7475;10748;11744;11744
-104;'372;Ireland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18543;18533;18533;12600;111;26455;26455
-104;'372;Ireland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8151.12;8148;8148;1392;455;1919;1919
-104;'372;Ireland;1864;Wood fuel;5516;Production;m3;73000;55000;57000;45000;47000;54000;57000;35000;34000;68000;26000;21000;5000;10000;7000;7000;6000;21000;39000;39000;39000;62000;62000;62000;62000;62000;62000;50000;50000;50000;50000;50000;57000;60000;64000;66000;63000;73000;73000;73000;32000;34000;30100;19546;19000;16000;32000;52000;167273;181021;194543;204765;209370;206257;202795;316364;166000;186000;286000;285000;285000;285000;285000
-104;'372;Ireland;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;245;0;0;0;0;0;2000;1000;1010;579;601;738;374;1080;8000;5300;1932;4310;11250;19872;6872;8744;8152;5944;3709;16727;16727;11700;20145;16239;16239
-104;'372;Ireland;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;21;0;0;0;0;90;1057;474;449;350;400;765;406;1074;3396;3598;4868;4529;5046;8264;5461;6090;6063;3412;3287;6237;6237;6240;6562;6793;6793
-104;'372;Ireland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17132;5855;2200;0;0;0;0;0;0;700;2836;1595;763;76;930;6;4540;4710;44;67;146;272;145;870;1127;1268;1258;1258;2300;12029;33228;33228
-104;'372;Ireland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;316;100;0;0;0;1;52;250;162;354;108;334;39;394;1;1028;591;11;36;40;93;76;248;237;206;1298;1298;818;2296;2898;2898
-104;'372;Ireland;1627;Wood fuel, coniferous;5516;Production;m3;19000;20000;18000;18000;15000;21000;29000;14000;11000;45000;7000;8000;2000;4000;2000;2000;2000;9000;23000;23000;23000;46000;46000;46000;46000;46000;46000;10000;10000;10000;10000;10000;50000;53000;55000;58000;45000;50000;50000;50000;9000;10000;8050;9091;5000;5000;12000;24000;87273;77733;73773;100158;118292;109870;105126;255435;151000;173000;276000;271000;271000;271000;271000
-104;'372;Ireland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2634;9638;9638;4800;6814;5339;5339
-104;'372;Ireland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508;3799;3799;3434;2424;2761;2761
-104;'372;Ireland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257;1257;1257;2300;11993;6837;6837
-104;'372;Ireland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;1297;1297;811;2268;1414;1414
-104;'372;Ireland;1628;Wood fuel, non-coniferous;5516;Production;m3;54000;35000;39000;27000;32000;33000;28000;21000;23000;23000;19000;13000;3000;6000;5000;5000;4000;12000;16000;16000;16000;16000;16000;16000;16000;16000;16000;40000;40000;40000;40000;40000;7000;7000;9000;8000;18000;23000;23000;23000;23000;24000;22050;10455;14000;11000;20000;28000;80000;103288;120770;104607;91078;96387;97669;60929;15000;13000;10000;14000;14000;14000;14000
-104;'372;Ireland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075;7089;7089;6900;13331;10900;10900
-104;'372;Ireland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779;2438;2438;2806;4138;4032;4032
-104;'372;Ireland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;1;0;36;26391;26391
-104;'372;Ireland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;7;28;1484;1484
-104;'372;Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;245;0;0;0;0;0;2000;1000;1010;579;601;738;374;1080;8000;5300;1932;4310;11250;19872;6872;8744;8152;5944;;;;;;;
-104;'372;Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;21;0;0;0;0;90;1057;474;449;350;400;765;406;1074;3396;3598;4868;4529;5046;8264;5461;6090;6063;3412;;;;;;;
-104;'372;Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17132;5855;2200;0;0;0;0;0;0;700;2836;1595;763;76;930;6;4540;4710;44;67;146;272;145;870;1127;;;;;;;
-104;'372;Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;316;100;0;0;0;1;52;250;162;354;108;334;39;394;1;1028;591;11;36;40;93;76;248;237;;;;;;;
-104;'372;Ireland;1865;Industrial roundwood;5516;Production;m3;340000;295000;310000;307000;281000;247000;292000;291000;265000;319000;339000;426000;426000;240000;297000;472000;393000;458000;340000;340000;340000;1054000;980000;1210000;1231000;1199000;1231000;1327000;1450000;1575000;1620000;1910000;1764000;1958000;2140000;2225000;2117000;2193000;2511000;2600100;2423000;2612100;2653200;2542489;2629000;2655000;2678000;2180000;2261499;2436975;2440783;2375654;2550253;2621729;2705195;2734059;3513000;3578000;3677000;3627000;3627000;3627000;3627000
-104;'372;Ireland;1865;Industrial roundwood;5616;Import quantity;m3;19500;17700;27700;32500;48400;25400;31300;29000;30900;23500;20000;30800;56200;46800;37100;32900;28700;32100;57000;25700;47000;28000;10400;15000;10200;12514;10292;16712;11034;30168;12504;18341;48000;63000;50000;3000;82000;112000;320000;106000;99010;142395;162984;193915;232537;207770;264000;325580;191877;116988;102195;200552;246043;248917;284659;306607;363100;308180;308180;275800;300544;180357;180357
-104;'372;Ireland;1865;Industrial roundwood;5622;Import value;1000 USD;714;814;1543;1825;2668;1635;1986;2426;2014;1488;995;1893;6546;8560;4991;4827;4372;5652;10932;6282;8071;4277;1987;2784;1543;2246;1930;2652;1693;2519;1531;3859;10890;14657;12827;557;28766;29616;21618;25529;24218;22826;44986;55314;65003;73511;103559;71484;41936;38026;35522;30927;34378;42349;48451;39156;46348.47;40354;40354;31831;51760;36029;36029
-104;'372;Ireland;1865;Industrial roundwood;5916;Export quantity;m3;500;2700;1900;10700;4800;4800;4800;4800;4800;4800;4800;4800;1400;400;500;50400;79400;96600;94300;140200;281000;402000;194500;155300;176300;148668;153069;271846;262964;37840;277452;311476;183000;122000;304000;250000;260000;92000;176000;42000;50800;126169;340050;254497;337841;307960;308000;257610;280604;349936;311065;201734;357381;332626;305444;377244;32622;49590;49590;404300;431973;451543;451543
-104;'372;Ireland;1865;Industrial roundwood;5922;Export value;1000 USD;8;22;17;62;30;30;30;30;30;30;30;30;62;37;61;919;1384;2124;2619;3593;5724;6678;4029;3080;2905;3181;3610;10583;10078;5639;11868;26678;11736;14439;15524;9604;8994;8773;8200;8098;8215;7287;11195;13733;13142;13295;25270;21144;19986;49206;53099;29835;51424;38699;28858;39576;8850.38;11317;11317;22462;30080;29314;29314
-104;'372;Ireland;1866;Industrial roundwood, coniferous;5516;Production;m3;303000;270000;275000;284000;252000;235000;253000;272000;243000;308000;318000;409000;409000;234000;290000;453000;381000;444000;326000;326000;326000;1041000;972000;1198000;1218000;1186000;1218000;1277000;1400000;1525000;1550000;1840000;1726000;1923000;2108000;2192000;2084000;2158000;2476000;2581200;2412000;2590300;2635200;2539853;2625000;2649000;2671000;2179000;2258552;2436611;2439371;2374594;2547430;2615973;2702132;2728560;3512000;3575000;3674000;3616000;3616000;3616000;3616000
-104;'372;Ireland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4507;10468;8847;40000;50000;37000;3000;56000;65000;289000;74000;61910;75014;135398;170086;211272;187070;214000;287760;166840;98524;88543;190900;238933;241721;277838;296028;335831;280813;280813;252700;294235;175494;175494
-104;'372;Ireland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989;1125;1509;7294;7777;4650;557;13902;18022;9009;11865;9315;8505;23348;32073;41466;49699;67819;47547;25162;24472;24247;22984;26710;31623;33350;29456;26532.18;28352;28352;27162;45150;28317;28317
-104;'372;Ireland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26834;259472;279572;178000;116000;304000;250000;260000;90000;175000;41000;50150;125966;339535;253690;337708;307930;295000;247030;270817;338741;298184;190900;346738;321134;290592;358712;14090;31058;31058;391700;431898;451479;451479
-104;'372;Ireland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3362;7649;19029;10182;11666;15524;9604;8994;8361;7711;7839;7917;7214;10885;13333;12982;13269;17886;14424;13663;41471;43844;22984;45161;31372;21161;31429;703.26;3170;3170;21077;29653;28879;28879
-104;'372;Ireland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4507;10468;8847;40000;50000;37000;3000;56000;65000;289000;74000;61910;75014;135398;170086;211272;187070;214000;287760;166840;98524;88543;190900;238933;241721;277838;296028;335831;280813;280813;252700;294235;175494;175494
-104;'372;Ireland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989;1125;1509;7294;7777;4650;557;13902;18022;9009;11865;9315;8505;23348;32073;41466;49699;67819;47547;25162;24472;24247;22984;26710;31623;33350;29456;26532.18;28352;28352;27162;45150;28317;28317
-104;'372;Ireland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26834;259472;279572;178000;116000;304000;250000;260000;90000;175000;41000;50150;125966;339535;253690;337708;307930;295000;247030;270817;338741;298184;190900;346738;321134;290592;358712;14090;31058;31058;391700;431898;451479;451479
-104;'372;Ireland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3362;7649;19029;10182;11666;15524;9604;8994;8361;7711;7839;7917;7214;10885;13333;12982;13269;17886;14424;13663;41471;43844;22984;45161;31372;21161;31429;703.26;3170;3170;21077;29653;28879;28879
-104;'372;Ireland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;37000;25000;35000;23000;29000;12000;39000;19000;22000;11000;21000;17000;17000;6000;7000;19000;12000;14000;14000;14000;14000;13000;8000;12000;13000;13000;13000;50000;50000;50000;70000;70000;38000;35000;32000;33000;33000;35000;35000;18900;11000;21800;18000;2636;4000;6000;7000;1000;2947;364;1412;1060;2823;5756;3063;5499;1000;3000;3000;11000;11000;11000;11000
-104;'372;Ireland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25661;2036;9494;8000;13000;13000;0;26000;47000;31000;32000;37100;67381;27586;23829;21265;20700;50000;37820;25037;18464;13652;9652;7110;7196;6821;10579;27269;27367;27367;23100;6309;4863;4863
-104;'372;Ireland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1530;406;2350;3596;6880;8177;0;14864;11594;12609;13664;14903;14321;21638;23241;23537;23812;35740;23937;16774;13554;11275;7943;7668;10726;15101;9700;19816.3;12002;12002;4669;6610;7712;7712
-104;'372;Ireland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11006;17980;31904;5000;6000;0;0;0;2000;1000;1000;650;203;515;807;133;30;13000;10580;9787;11195;12881;10834;10643;11492;14852;18532;18532;18532;18532;12600;75;64;64
-104;'372;Ireland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277;4219;7649;1554;2773;0;0;0;412;489;259;298;73;310;400;160;26;7384;6720;6323;7735;9255;6851;6263;7327;7697;8147;8147.12;8147;8147;1385;427;435;435
-104;'372;Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;600;2000;4000;5000;0;13000;31000;18000;19000;23780;6058;7815;5075;12562;2640;2000;406;455;362;841;432;312;445;302;408;49;250;250;8100;1573;1888;1888
-104;'372;Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;199;758;1645;2726;0;7349;3940;7251;7537;9219;2164;5820;5160;14652;2872;2553;582;435;452;1232;482;300;717;374;366;33.81;300;300;3386;5070;6225;6225
-104;'372;Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;360;166;252;106;6;20;0;24;0;0;0;931;599;770;0;0;0;0;0;0;0;1;1
-104;'372;Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;394;159;162;47;119;91;5;18;0;44;0;0;0;899;639;976;0;0;0;0;0;0;0;3;3
-104;'372;Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25661;1965;8894;6000;9000;8000;0;13000;16000;13000;13000;13320;61323;19771;18754;8703;18060;48000;37414;24582;18102;12811;9220;6798;6751;6519;10171;27220;27117;27117;15000;4736;2975;2975
-104;'372;Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1530;392;2151;2838;5235;5451;0;7515;7654;5358;6127;5684;12157;15818;18081;8885;20940;33187;23355;16339;13102;10043;7461;7368;10009;14727;9334;19782.49;11702;11702;1283;1540;1487;1487
-104;'372;Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11006;17980;31904;5000;6000;0;0;0;1000;0;1000;290;37;263;701;127;10;13000;10556;9787;11195;12881;9903;10044;10722;14852;18532;18532;18532;18532;12600;75;63;63
-104;'372;Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277;4219;7649;1554;2773;0;0;0;12;95;100;136;26;191;309;155;8;7384;6676;6323;7735;9255;5952;5624;6351;7697;8147;8147.12;8147;8147;1385;427;432;432
-104;'372;Ireland;1868;Sawlogs and veneer logs;5516;Production;m3;255000;215000;230000;232000;206000;172000;217000;216000;190000;244000;254000;341000;341000;112000;179000;235000;171000;331000;242000;242000;242000;547000;473000;638000;659000;659000;659000;800000;900000;1025000;1070000;1230000;1224000;1337000;1370000;1380000;1284000;1350000;1456000;1587600;1653000;1743300;1892500;1722636;1763000;1788000;1725000;1359000;1496635;1425034;1391397;1418251;1472141;1537310;1559328;1738068;2332000;2328000;2339000;2471000;2471000;2471000;2471000
-104;'372;Ireland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;5900;8900;11700;16100;20400;17100;14100;22800;21000;15000;8000;8800;40200;36300;15000;24200;13700;13200;13400;14300;14000;8000;7900;8000;4800;7114;4892;12112;6434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;274;498;994;1102;1360;1239;1541;2236;1588;1102;515;683;4820;7021;2295;3668;2391;2735;3563;4362;3103;1686;1679;1803;945;1648;1332;1964;1005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;500;2700;1900;10700;4800;4800;4800;4800;4800;4800;4800;4800;1400;400;500;2500;2500;5000;3900;4500;6000;8000;11200;10600;1700;8472;5511;202446;193564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;8;22;17;62;30;30;30;30;30;30;30;30;62;37;61;310;362;708;896;611;454;594;910;830;153;566;647;7835;7330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;218000;190000;195000;209000;177000;160000;178000;197000;168000;233000;233000;324000;324000;106000;172000;216000;159000;317000;228000;228000;228000;534000;465000;626000;646000;646000;646000;750000;850000;975000;1000000;1160000;1194000;1312000;1350000;1360000;1264000;1330000;1436000;1582200;1642000;1721500;1874500;1720000;1759000;1782000;1718000;1358000;1493688;1424670;1389985;1417191;1469318;1531554;1556265;1732569;2331000;2325000;2336000;2464000;2464000;2464000;2464000
-104;'372;Ireland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;1600;3800;6300;10400;13400;6600;3500;6200;7200;6300;1800;1700;16000;25000;10300;19400;10400;8700;8200;7700;8000;5000;6700;6000;4300;6307;4080;11326;3458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;81;162;288;533;682;358;197;416;435;330;59;49;2311;5979;1382;2511;1533;1486;1622;1922;1429;794;1305;1179;822;1430;973;1754;357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;500;2700;1900;10700;4800;4800;4800;4800;4800;4800;4800;4800;1400;400;500;1600;1100;2000;2100;3700;4000;6000;8500;8600;300;3768;1204;187524;178439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;8;22;17;62;30;30;30;30;30;30;30;30;62;37;61;165;208;406;362;302;126;172;312;330;22;128;16;4554;3879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;37000;25000;35000;23000;29000;12000;39000;19000;22000;11000;21000;17000;17000;6000;7000;19000;12000;14000;14000;14000;14000;13000;8000;12000;13000;13000;13000;50000;50000;50000;70000;70000;30000;25000;20000;20000;20000;20000;20000;5400;11000;21800;18000;2636;4000;6000;7000;1000;2947;364;1412;1060;2823;5756;3063;5499;1000;3000;3000;7000;7000;7000;7000
-104;'372;Ireland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;4300;5100;5400;5700;7000;10500;10600;16600;13800;8700;6200;7100;24200;11300;4700;4800;3300;4500;5200;6600;6000;3000;1200;2000;500;807;812;786;2976;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;193;336;706;569;678;881;1344;1820;1153;772;456;634;2509;1042;913;1157;858;1249;1941;2440;1674;892;374;624;123;218;359;210;648;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;900;1400;3000;1800;800;2000;2000;2700;2000;1400;4704;4307;14922;15125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;145;154;302;534;309;328;422;598;500;131;438;631;3281;3451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843000;1055000;1012500;770000;741800;623000;722009;759000;760000;828000;734000;677756;893278;936313;831197;969954;951315;982117;829765;1039000;1117000;1194000;1013000;1013000;1013000;1013000
-104;'372;Ireland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828000;1040000;999000;770000;741800;623000;722009;759000;760000;828000;734000;677756;893278;936313;831197;969954;951315;982117;829765;1039000;1117000;1194000;1009000;1009000;1009000;1009000
-104;'372;Ireland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;13500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;4000;4000;4000
-104;'372;Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;3000;25600;27200;26100;51100;225000;348000;114200;70800;99000;64596;71958;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;21;161;184;203;831;3823;5037;2023;1165;1784;1647;1995;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;80000;80000;80000;123000;115000;229000;218000;117000;87000;87000;87000;480000;480000;545000;545000;513000;545000;500000;550000;550000;550000;680000;540000;621000;770000;845000;833000;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;3000;25600;27200;26100;51100;225000;348000;114200;70800;99000;64596;71958;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;21;161;184;203;831;3823;5037;2023;1165;1784;1647;1995;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;80000;80000;80000;123000;115000;229000;218000;117000;87000;87000;87000;480000;480000;545000;545000;513000;545000;500000;550000;550000;550000;680000;532000;611000;758000;832000;820000;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;12000;13000;13000;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1871;Other industrial roundwood;5516;Production;m3;15000;10000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;3000;8000;4000;10000;11000;11000;11000;27000;27000;27000;27000;27000;27000;27000;;;;;;0;0;0;0;0;0;0;0;127000;137700;97844;107000;107000;125000;87000;87108;118663;113073;126206;108158;133104;163750;166226;142000;133000;144000;143000;143000;143000;143000
-104;'372;Ireland;1871;Other industrial roundwood;5616;Import quantity;m3;13600;8800;16000;16400;28000;8300;17200;6200;9900;8500;12000;22000;16000;10500;22100;8700;15000;18900;43600;11400;33000;20000;2500;7000;5400;5400;5400;4600;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1871;Other industrial roundwood;5622;Import value;1000 USD;440;316;549;723;1308;396;445;190;426;386;480;1210;1726;1539;2696;1159;1981;2917;7369;1920;4968;2591;308;981;598;598;598;688;688;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;44900;51300;64400;64300;84600;50000;46000;69100;73900;75600;75600;75600;69400;69400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;588;861;1232;1520;2151;1447;1047;1096;1085;968;968;968;2748;2748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;15000;10000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;3000;8000;4000;10000;11000;11000;11000;27000;27000;27000;27000;27000;27000;27000;;;;;;0;0;0;0;0;0;0;0;127000;137700;97844;107000;107000;125000;87000;87108;118663;113073;126206;108158;133104;163750;166226;142000;133000;144000;143000;143000;143000;143000
-104;'372;Ireland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;13600;8800;16000;16400;28000;8300;17200;6200;9900;8500;12000;22000;16000;10500;22100;8700;15000;18900;43600;11400;33000;20000;2500;7000;5400;5400;5400;4600;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;440;316;549;723;1308;396;445;190;426;386;480;1210;1726;1539;2696;1159;1981;2917;7369;1920;4968;2591;308;981;598;598;598;688;688;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;44900;51300;64400;64300;84600;50000;46000;69100;73900;75600;75600;75600;69400;69400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;588;861;1232;1520;2151;1447;1047;1096;1085;968;968;968;2748;2748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1630;Wood charcoal;5610;Import quantity;t;;;100;100;200;100;100;100;133;100;100;100;100;100;100;100;200;100;100;;;;;;;;;;;;;523;504;100;600;500;1000;1000;0;1000;2870;1000;426;532;871;1085;1000;1007;716;1157;3579;726;1052;838;612;907;975;1621;1621;4500;4537;2082;2082
-104;'372;Ireland;1630;Wood charcoal;5622;Import value;1000 USD;;;11;11;39;9;8;9;12;8;11;18;29;29;34;54;81;54;104;;;;;;;;;;;;;364;157;94;674;640;889;558;292;866;391;860;801;697;1111;1291;844;1431;823;1022;1233;717;1195;874;529;882;1141.67;1402;1402;4364;4449;2356;2356
-104;'372;Ireland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;13;0;0;0;1000;0;1833;0;0;54;8;8;90;1;229;26;36;18;19;35;171;178;147;30;17;73;73;3900;67;312;312
-104;'372;Ireland;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;11;0;0;0;287;8;0;57;56;11;5;4;42;1;254;34;39;16;39;170;417;493;328;66;18.03;50;50;3188;67;245;245
-104;'372;Ireland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;675000;632000;696170;722350;652870;803459;736434;798000;860000;860000;692000;683000;685000;674931;693410;731345;794230;793039;840000;939000;885000;885000;885000;885000;885000;885000
-104;'372;Ireland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;129000;110290;144059;147958;123036;207346;68750;194000;51240;33807;42159;34006;16109;108577;48708;46970;143144;79840;98642;98642;148600;110161;32302;32302
-104;'372;Ireland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083;1355;3562;3668;3477;3801;4717;6967;5702;12081;6284;2539;3268;5093;965;9915;6512;7776;18902;11912.54;13224;13224;24069;20619;24855;24855
-104;'372;Ireland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115000;89000;106000;98330;93282;83440;41233;50539;50530;60000;63160;55729;58326;142501;121002;38180;23210;35346;44242;119004;139449;139449;78100;77767;124122;124122
-104;'372;Ireland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4108;3726;3165;2757;2302;1492;2343;1565;1343;2140;2076;1417;1448;8721;3611;984;2015;3707;8092;11113.49;12984;12984;2856;2986;18385;18385
-104;'372;Ireland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607000;445000;490480;508930;465605;572176;518851;562000;606000;606000;523000;516000;517000;509788;523746;552399;588569;587669;622000;709000;655000;655000;655000;655000;655000;655000
-104;'372;Ireland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;339;4000;34000;2000;2000;30000;27000;120000;91450;126154;128933;111995;180999;61510;146000;41710;21560;15499;5432;3809;23253;5102;2030;31630;41474;33463;33463;147900;109176;32178;32178
-104;'372;Ireland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;223;1123;160;349;928;892;2061;1525;2090;2809;3920;5768;4305;6489;3381;960;866;704;448;1052;1719;659;2645;5158.35;4162;4162;23843;20224;24143;24143
-104;'372;Ireland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;28100;38500;67000;70000;90000;73000;83000;120000;125000;56500;77000;153952;215000;200000;71000;140000;99000;64000;13000;36000;53220;51131;17311;1012;11241;5190;6000;9150;11117;33151;79677;86002;13112;6658;2695;7332;10886;15970;15970;33000;45776;58721;58721
-104;'372;Ireland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;632;819;1149;1340;1716;1875;2480;3737;3497;3059;4200;5184;5661;6282;5774;4306;3795;3268;521;598;844;692;261;278;331;69;354;268;279;577;1025;2979;321;217;116;190;897.1;1316;1316;1607;1784;17142;17142
-104;'372;Ireland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587000;628000;630000;687000;42000;68000;187000;205690;213420;187265;231283;217583;236000;254000;254000;169000;167000;168000;165143;169664;178946;205661;205370;218000;230000;230000;230000;230000;230000;230000;230000
-104;'372;Ireland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212;400;100;0;2000;0;0;3000;9000;18840;17905;19025;11041;26347;7240;48000;9530;12247;26660;28574;12300;85324;43606;44940;111514;38366;65179;65179;700;985;124;124
-104;'372;Ireland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;47;11;0;288;0;155;463;1501;2143;1387;992;797;1199;1397;5592;2903;1579;2402;4389;517;8863;4793;7117;16257;6754.2;9062;9062;226;395;712;712
-104;'372;Ireland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;35500;35800;48200;35600;84400;81700;82600;57600;57600;57600;23700;23700;23700;90000;163212;76000;63000;70000;125000;47000;51000;76000;70000;45110;42151;66129;40221;39298;45340;54000;54010;44612;25175;62824;35000;25068;16552;32651;36910;108118;123479;123479;45100;31991;65401;65401
-104;'372;Ireland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;267;344;493;252;818;811;764;524;524;524;749;749;749;3000;5606;1579;1645;1603;2081;732;840;3205;2567;1913;1610;1231;2065;1234;1274;1786;1808;1138;871;7696;632;663;1798;3591;7902;10216.39;11668;11668;1249;1202;1243;1243
-104;'372;Ireland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;300000;300000;300000;300000;300000
-104;'372;Ireland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;829;800;800
-104;'372;Ireland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;401;401;401
-104;'372;Ireland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11300;5023;2300;2300
-104;'372;Ireland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;125;72;72
-104;'372;Ireland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;32000;32000;40000;48100;45000;37538;37538;37538;37538;37538;37538
-104;'372;Ireland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26206;55228;31271;30464;70532;28195;48095;48095;77000;58290;74676;77606
-104;'372;Ireland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4425;8447;4347;5627;16240;7799.95;10529;10529;15750;17085;23052;23201
-104;'372;Ireland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;743;3016;6349;7660;23791;30246;30246;22800;29811;44241;44241
-104;'372;Ireland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;9;1648;3193;6051;8367.35;8617;8617;9440;11350;14909;14909
-104;'372;Ireland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;32000;32000;40000;48100;45000;37538;37538;37538;37538;37538;37538
-104;'372;Ireland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24306;53941;30000;27000;60400;18063;37963;37963;66500;45816;63888;63888
-104;'372;Ireland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4010;8161;3925;3782;12956;4515.95;7245;7245;10572;9582;15597;15597
-104;'372;Ireland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;720;3000;6300;7600;23731;30186;30186;17800;23751;30691;30691
-104;'372;Ireland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;0;1634;3141;5992;8308.35;8558;8558;5332;5759;9600;9600
-104;'372;Ireland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1287;1271;3464;10132;10132;10132;10132;10500;12474;10788;13718
-104;'372;Ireland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;286;422;1845;3284;3284;3284;3284;5178;7503;7455;7604
-104;'372;Ireland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;23;16;49;60;60;60;60;5000;6060;13550;13550
-104;'372;Ireland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;9;14;52;59;59;59;59;4108;5591;5309;5309
-104;'372;Ireland;1872;Sawnwood;5516;Production;m3;48000;50000;47000;45400;52000;52300;51100;50700;51800;51200;60100;50500;48700;45000;48000;50000;118000;120000;115000;143000;215000;238000;258000;290000;300000;300000;300000;300000;356000;386000;386000;575000;637000;709000;678000;687000;642000;675000;811000;888030;924860;817580;1005296;938959;1015000;1094000;1094000;697000;774000;772413;761092;781931;824708;906675;905331;986888;1057769;1014000;1014000;1014000;1014000;1014000;1014000
-104;'372;Ireland;1872;Sawnwood;5616;Import quantity;m3;235100;239900;300900;327600;328000;269500;327300;438700;432000;385500;497400;538900;403200;510700;295700;417700;411700;488700;575400;465700;473400;397400;373500;353000;320900;271060;255335;330300;385600;397200;325000;395965;321000;434000;405000;286000;462000;590000;570000;646000;663380;885362;849275;704211;955279;995270;724000;411893;232410;242031;200801;144757;134268;204622;227042;250401;266038;339116;339116;421300;414338;312808;312808
-104;'372;Ireland;1872;Sawnwood;5622;Import value;1000 USD;11977;11964;14688;17227;18368;15556;18290;22734;24620;24368;31905;34404;42867;80089;43379;57162;63648;79968;114618;114315;103750;76877;70057;64822;56206;67772;78081;90932;105729;113000;98000;117037;86317;138200;133754;101158;174468;169384;168682;186326;161819;160079;239146;257667;306420;299567;344270;207249;92746;97862;88675;69889;68193;98386;92611;101718;111047;149008;149008;128383;195913;158881;158881
-104;'372;Ireland;1872;Sawnwood;5916;Export quantity;m3;7900;6700;4700;4700;4400;3500;2300;2600;1800;1400;2200;1300;1100;3300;7100;14600;15300;14400;17300;21400;43700;73900;83200;93000;101100;71141;88035;126000;116100;122600;152000;241614;250000;248000;255000;269000;282000;128000;234000;174000;191480;331335;510781;411224;447078;392590;381000;389201;563644;620617;619495;534116;601667;718135;700791;805704;875018;832305;832305;662900;662711;642904;642904
-104;'372;Ireland;1872;Sawnwood;5922;Export value;1000 USD;351;304;221;221;191;180;151;148;166;117;315;119;247;585;1144;2480;3150;2858;4801;5654;7255;9118;10086;12300;15969;13632;19996;25153;23721;38332;44698;32487;39315;43523;51480;51155;49082;32419;30639;33261;36668;57770;69858;72204;68032;65407;97274;79650;70674;84819;116220;93862;108205;162655;134548;134510;145152.71;172303;172303;165580;272086;224891;224891
-104;'372;Ireland;1632;Sawnwood, coniferous;5516;Production;m3;27000;32000;28000;27400;30600;29400;31600;33600;35200;34000;39900;34200;33000;27300;30000;30000;104000;114000;108000;134000;202000;224000;245000;285000;294000;294000;294000;294000;350000;380000;380000;560000;622000;699000;664000;670000;632000;665000;804000;886030;919360;806680;996296;937279;1014000;1091000;1091000;696000;772000;772220;760344;781369;823718;903720;903720;985000;1049000;1012000;1012000;1012000;1012000;1012000;1012000
-104;'372;Ireland;1632;Sawnwood, coniferous;5616;Import quantity;m3;211200;215050;258100;291700;296350;227550;282650;395050;377000;332100;452400;467600;325800;455050;242500;351650;358600;416800;500600;392750;387500;321500;301350;297000;236550;199000;180400;240200;291200;278500;260000;298264;252000;340000;328000;261000;352000;434000;429000;525000;564470;797938;768940;613030;819264;868660;600000;346416;191304;204927;168778;116498;108378;174985;193696;214504;232482;309890;309890;394600;388328;282372;282372
-104;'372;Ireland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;10179;10028;11887;14513;15928;12273;14322;18695;19457;19299;27724;28240;32994;67639;35078;43014;50738;60446;90506;86193;75019;51516;47927;47566;34188;41672;44015;50665;64062;71000;60000;69276;50879;82561;72490;71707;101827;98626;104112;118404;103268;117865;179222;178144;214028;220858;242232;133463;54559;62886;57551;40887;43039;66703;59967;67830;79708.1;112328;112328;93901;157834;122355;122355
-104;'372;Ireland;1632;Sawnwood, coniferous;5916;Export quantity;m3;5850;5150;3100;3000;2900;2250;1100;1550;700;500;200;600;100;1700;3950;8650;8950;10500;8400;11250;33250;62450;69450;73000;73300;53400;56000;87400;74600;85500;110000;180000;238000;244000;248000;268000;275000;121000;227000;167000;186230;324770;506053;409246;443880;390260;378000;387391;562911;619987;618709;533916;600847;717604;699942;803025;872918;829622;829622;662400;662364;642357;642357
-104;'372;Ireland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;167;148;95;104;103;95;37;51;22;13;25;12;16;265;534;1255;1520;1721;1521;2081;3962;6221;6708;7300;7212;8763;10925;13418;11250;18634;25000;16638;30293;40532;44905;50579;42924;27406;25893;28653;32515;52094;66324;70209;65604;63644;94969;77666;69670;83914;115109;93605;107116;161770;133428;131539;142625.94;169157;169157;164761;271752;224283;224283
-104;'372;Ireland;1633;Sawnwood, non-coniferous;5516;Production;m3;21000;18000;19000;18000;21400;22900;19500;17100;16600;17200;20200;16300;15700;17700;18000;20000;14000;6000;7000;9000;13000;14000;13000;5000;6000;6000;6000;6000;6000;6000;6000;15000;15000;10000;14000;17000;10000;10000;7000;2000;5500;10900;9000;1680;1000;3000;3000;1000;2000;193;748;562;990;2955;1611;1888;8769;2000;2000;2000;2000;2000;2000
-104;'372;Ireland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;23900;24850;42800;35900;31650;41950;44650;43650;55000;53400;45000;71300;77400;55650;53200;66050;53100;71900;74800;72950;85900;75900;72150;56000;84350;72060;74935;90100;94400;118700;65000;97701;69000;94000;77000;25000;110000;156000;141000;121000;98910;87424;80335;91181;136015;126610;124000;65477;41106;37104;32023;28259;25890;29637;33346;35897;33556;29226;29226;26700;26010;30436;30436
-104;'372;Ireland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1798;1936;2801;2714;2440;3283;3968;4039;5163;5069;4181;6164;9873;12450;8301;14148;12910;19522;24112;28122;28731;25361;22130;17256;22018;26100;34066;40267;41667;42000;38000;47761;35438;55639;61264;29451;72641;70758;64570;67922;58551;42214;59924;79523;92392;78709;102038;73786;38187;34976;31124;29002;25154;31683;32644;33888;31338.89;36680;36680;34482;38079;36526;36526
-104;'372;Ireland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;2050;1550;1600;1700;1500;1250;1200;1050;1100;900;2000;700;1000;1600;3150;5950;6350;3900;8900;10150;10450;11450;13750;20000;27800;17741;32035;38600;41500;37100;42000;61614;12000;4000;7000;1000;7000;7000;7000;7000;5250;6565;4728;1978;3198;2330;3000;1810;733;630;786;200;820;531;849;2679;2100;2683;2683;500;347;547;547
-104;'372;Ireland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;184;156;126;117;88;85;114;97;144;104;290;107;231;320;610;1225;1630;1137;3280;3573;3293;2897;3378;5000;8757;4869;9071;11735;12471;19698;19698;15849;9022;2991;6575;576;6158;5013;4746;4608;4153;5676;3534;1995;2428;1763;2305;1984;1004;905;1111;257;1089;885;1120;2971;2526.77;3146;3146;819;334;608;608
-104;'372;Ireland;1634;Veneer sheets;5516;Production;m3;;;2500;4000;7300;6100;4400;4700;5800;4300;2900;2300;2300;2300;2300;2000;2000;2000;2000;2000;2000;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1634;Veneer sheets;5616;Import quantity;m3;1300;1400;2500;2200;2000;2400;2200;3100;2600;3800;4100;3900;4000;3000;1700;1900;1900;1800;1700;1800;2700;1300;2000;1600;1600;1645;2107;2386;2873;2900;2700;2705;3200;4500;6000;4000;9000;9000;5000;4000;3560;11530;4913;6964;9249;11010;17000;8515;8597;6916;4381;3335;2783;3462;6275;5257;4858;4758;4758;3900;5295;10729;10729
-104;'372;Ireland;1634;Veneer sheets;5622;Import value;1000 USD;272;280;442;490;434;645;627;952;709;1053;1076;1279;1750;2422;1981;2020;2247;2734;2974;3247;3935;2268;2606;1669;2194;2889;4613;5176;6328;6294;6300;6651;6061;7179;8821;6563;10262;10165;7867;7206;6350;8396;8963;17711;18090;17264;19657;13174;9864;10250;6794;5414;4664;5685;6037;7235;7679.48;6950;6950;5471;6560;8929;8929
-104;'372;Ireland;1634;Veneer sheets;5916;Export quantity;m3;;;2500;4000;7300;6100;4400;4700;5800;4300;2900;2300;900;1100;900;1400;400;400;200;300;200;100;500;300;500;441;423;1321;1098;1697;1300;865;400;0;0;0;1000;0;0;0;880;1052;183;159;58;860;280;218;310;118;80;371;21;87;516;694;629;560;560;443;205;169;169
-104;'372;Ireland;1634;Veneer sheets;5922;Export value;1000 USD;;;826;1028;1761;1323;1124;1212;1155;981;444;516;932;712;1189;959;707;923;448;704;477;152;162;162;136;211;124;484;618;800;700;572;363;0;0;0;1103;1629;627;768;1349;1253;1242;723;893;1812;1191;1465;1170;831;856;994;195;458;1345;1211;1310.72;2472;2472;2330;1508;1005;1005
-104;'372;Ireland;1873;Wood-based panels;5516;Production;m3;21700;31400;37900;48800;63400;65200;63600;69200;68800;116700;151000;153400;153000;165700;121000;119000;119000;118000;71000;87000;52000;60000;48000;120000;174000;211000;236000;236000;240000;240000;240000;246000;247000;265000;336000;434000;540000;660000;759000;745000;734000;700000;833000;841093;875000;978000;965000;829000;713000;801000;737626;716034;739456;773421;769000;774000;835999;808000;808000;808000;808000;808000;808000
-104;'372;Ireland;1873;Wood-based panels;5616;Import quantity;m3;10500;11900;15900;17200;18200;25500;31900;34500;38800;39342;37858;42264;57048;50685;51501;64712;74800;83300;127300;107600;150900;121300;114500;147800;145800;89261;93144;109137;128048;115260;138496;137527;118100;132100;160000;71000;172000;229000;264400;280000;263720;252136;223464;256601;319123;371440;341000;254828;172469;158965;190454;200169;191070;233944;236180;231448;288743;285933;290529;322000;337639;294139;300494
-104;'372;Ireland;1873;Wood-based panels;5622;Import value;1000 USD;1677;1901;2574;2974;3278;3489;3660;4301;5758;5036;5940;7136;13417;14540;11343;15036;19063;22788;39048;37203;45214;34448;29961;37945;31320;26023;30842;40060;44746;39429;41928;54347;43151;54614;71367;37748;81042;83666;82339;89445;90126;85980;106614;134231;176314;160085;180033;146145;84349;76572;88024;90911;99402;124662;119184;116912;141730.55;152032;153045;155905;199802;205546;207404
-104;'372;Ireland;1873;Wood-based panels;5916;Export quantity;m3;14800;19900;25700;28500;34200;34878;31341;36763;31089;53931;71089;62874;55510;46641;37072;53389;60000;47800;9900;5600;4300;12700;13900;15200;19600;33126;38654;172063;160818;122284;166000;170910;149800;150700;183000;312000;367000;541000;516000;580000;505160;600910;655421;615575;769365;826470;757000;613661;579728;659602;615711;630076;665001;662014;609157;640005;729222;710325;710325;686910;799321;710007;712083
-104;'372;Ireland;1873;Wood-based panels;5922;Export value;1000 USD;1451;1876;2240;2382;2881;2902;2937;3288;2636;4153;5620;6834;6790;6955;6798;8122;9692;8497;2132;1490;1240;2458;2547;2759;2766;6791;11376;57265;49907;47373;47373;61045;57460;65059;92536;126910;154484;175778;163388;113189;137058;164510;219197;254343;291847;299668;358442;285048;203721;236492;240610;228522;264688;262671;209636;229522;250916.07;286762;286762;260721;404113;405636;390216
-104;'372;Ireland;1640;Plywood and LVL;5516;Production;m3;;;;5000;5000;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1640;Plywood and LVL;5616;Import quantity;m3;8900;9400;13500;14700;12400;14200;16400;19000;24100;25100;21900;24000;38700;32700;19300;27900;24600;30800;45800;33400;41600;35400;29900;35000;31300;31436;35836;46185;46355;50000;61000;59065;49100;56200;70000;40000;70000;104000;142200;138000;160750;138601;105181;131129;150496;149810;166000;105681;64149;46871;52045;40867;42171;62045;64034;58715;66650;56790;56790;82900;56806;53313;53313
-104;'372;Ireland;1640;Plywood and LVL;5622;Import value;1000 USD;1411;1554;2232;2625;2583;2871;2958;3564;5038;4414;4781;5659;10910;11813;6355;8602;9634;11953;21798;18300;21077;15772;13039;15400;11446;11880;15239;21054;20166;17501;20000;26864;22399;28866;37528;17767;34624;39096;46607;47193;44692;41223;48576;70961;77962;71402;87726;60170;29340;23723;27332;23802;28345;36786;38730;33929;40036.06;40655;40655;38808;39674;43075;43075
-104;'372;Ireland;1640;Plywood and LVL;5916;Export quantity;m3;;;;;300;300;400;600;400;400;400;500;700;500;1700;1100;800;600;600;1100;1500;1500;1400;2000;1700;1369;4693;5307;6662;13600;42000;9948;3000;3000;3000;2000;3000;20000;2000;18000;7330;682;543;2231;1492;1100;1000;193;640;2595;423;534;118;93;292;85;1848;258;258;210;355;792;792
-104;'372;Ireland;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;200;205;252;315;246;221;262;338;203;237;747;365;284;345;266;436;661;623;600;669;506;458;1950;2041;2071;4286;4286;2879;1445;1795;1603;960;1832;2146;772;1073;714;219;227;856;289;718;381;150;402;840;372;418;216;146;232;93;961.34;289;289;289;483;1548;1548
-104;'372;Ireland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;102
-104;'372;Ireland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;142
-104;'372;Ireland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;1
-104;'372;Ireland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1
-104;'372;Ireland;1646;Particle board and OSB (1961-1994);5516;Production;m3;8000;15000;22000;26000;40000;45000;45000;48000;50000;95000;128000;130000;130000;145000;100000;100000;100000;100000;53000;69000;34000;42000;30000;30000;59000;66000;66000;66000;80000;80000;80000;84000;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;2300;2000;2200;2200;2200;2200;6000;9400;12200;12700;26200;32700;44800;48000;73800;66100;93800;76000;71500;103000;104500;50029;44289;52568;60702;50854;63000;54779;31000;36900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;150;130;140;140;140;140;557;794;1554;1900;4100;5352;8379;9850;14883;16102;20125;16300;14210;20600;17871;12057;12715;15169;18556;16113;16113;19136;10985;13162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;6000;9000;15500;17400;21400;23100;20200;23000;17000;41000;57000;47000;40700;35400;24000;38600;46100;35800;8500;4400;2700;11000;12300;13000;17700;29374;28685;30131;16791;20618;20000;11632;31000;33200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;390;585;1000;1130;1440;1550;1340;1550;1140;2760;3800;4700;4600;4500;3540;5168;6230;5289;1667;1029;558;1825;1937;2080;2250;5541;7258;7959;4870;6493;6493;3323;6721;7478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;60000;100000;210000;90000;90000;125000;125000;130000;130000;128000;128000;128000;107000;55000;67000;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;2000;54000;54000;23000;57000;37890;26306;35882;58786;75174;85177;84905;77883;57640;64930;78718;87542;82064;92929;85769;89051;114322;116488;116488;102300;123454;126096;126096
-104;'372;Ireland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14915;484;22196;22143;4896;11829;14069;9640;14513;21507;56619;41801;50590;45088;27710;28580;32609;34263;34397;43109;35077;36863;46881.55;53384;53384;45469;60194;72079;72079
-104;'372;Ireland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;30000;30000;24500;24500;154000;142190;133845;145601;117483;77137;77412;73060;51894;13320;13280;3623;11728;8159;15985;10730;11064;13250;15928;15928;13900;18543;21326;21326
-104;'372;Ireland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8340;8003;8003;5866;5866;27200;19914;18191;24138;31189;15026;18393;23973;21998;6628;6390;1848;2679;6064;7279;6433;6604;7060.86;8260;8260;7855;12265;14301;14301
-104;'372;Ireland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100000;100000;110000;300000;250000;208000;208000;298000;289100;307000;308000;308000;270000;274000;291000;278000;261300;266204;278388;284000;284000;306749;296475;296475;296475;296475;296475;296475
-104;'372;Ireland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37200;15000;7660;25555;21588;13139;20996;32293;15095;5763;2100;2000;2500;5100;5099;5389;3373;0;15346;10961;15557;23000;13424;10517;16872
-104;'372;Ireland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7961;5423;3956;8756;10399;7606;9176;13838;5189;1708;825;703;937;1547;1598;1906;1809;0;4290;3791;4804;7730;7433;4448;6306
-104;'372;Ireland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;150000;185500;185500;22000;2200;95489;152867;82683;179925;216878;207940;161136;173000;241000;210000;230000;257850;230790;170935;178356;250203;249260;249260;262600;250359;281563;283639
-104;'372;Ireland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40797;61196;75679;75679;4896;1788;14017;29458;41410;57423;60699;74423;53125;45289;73281;76458;74070;92679;77032;44459;46800;63970.16;82024;82024;74866;111826;107931;92511
-104;'372;Ireland;1874;Fibreboard;5516;Production;m3;13700;16400;15900;17800;18400;20200;18600;21200;18800;21700;23000;23400;23000;20700;21000;19000;19000;18000;18000;18000;18000;18000;18000;90000;115000;145000;170000;170000;160000;160000;160000;162000;162000;180000;246000;274000;340000;340000;369000;405000;401000;367000;405000;421993;440000;542000;529000;452000;384000;443000;459626;454734;473252;495033;485000;490000;529250;511525;511525;511525;511525;511525;511525
-104;'372;Ireland;1874;Fibreboard;5616;Import quantity;m3;1600;2500;2400;2500;3500;9300;13300;13300;12500;12042;9958;8864;6148;5285;6001;4112;5400;4500;7700;8100;15500;9900;13100;9800;10000;7796;13019;10384;20991;14406;14496;23683;38000;39000;52000;29000;48000;71000;62000;70000;57420;61674;60813;53547;72457;104160;75000;65501;48580;45164;57191;66660;61736;73581;83004;83682;92425;101694;101694;113800;143955;104213;104213
-104;'372;Ireland;1874;Fibreboard;5622;Import value;1000 USD;266;347;342;349;545;488;562;597;580;482;602;683;953;827;888;1082;1050;985;2367;2801;4012;2376;2712;1945;2003;2086;2888;3837;6024;5815;5815;8347;9767;12586;18924;19497;24222;22427;22875;25000;27409;26361;33126;34157;32557;33044;36528;39179;26474;23566;27146;31299;35062;42861;43568;46120;50522.93;54202;54202;63898;92501;85944;85944
-104;'372;Ireland;1874;Fibreboard;5916;Export quantity;m3;8800;10900;10200;11100;12500;11478;10741;13163;13689;12531;13689;15374;14110;10741;11372;13689;13100;11400;800;100;100;200;200;200;200;2383;5276;136625;137365;88066;104000;149330;115800;114500;148000;180000;184000;311000;304000;386000;353440;370894;356410;413178;510811;531080;475000;400438;392768;402727;401665;387814;398874;415146;427200;450500;463921;444879;444879;410200;530064;406326;406326
-104;'372;Ireland;1874;Fibreboard;5922;Export value;1000 USD;1061;1291;1240;1252;1241;1147;1345;1423;1250;1172;1558;1796;1987;2218;2511;2589;3178;2863;199;25;21;10;10;10;10;792;2168;47265;42966;36594;36594;54843;49294;55786;82593;77150;83453;92087;81071;80020;114642;132083;165374;180888;219109;219858;259665;209775;151402;155981;161932;151355;165729;178214;158512;176025;178923.7;196189;196189;177711;279539;281856;281856
-104;'372;Ireland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;39000;75000;75000;75000;51000;50538;51000;88000;116000;51000;2000;3000;2000;12000;34198;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;7000;10000;9000;11000;13000;16330;15924;19202;13648;18609;25140;15000;13135;6849;5575;8149;11955;10645;12262;15935;18582;18362;21622;21622;28700;31782;24287;24287
-104;'372;Ireland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5453;7523;8192;6067;8322;12140;14872;14923;19083;17181;12308;12998;10539;10894;5288;4826;6194;9736;10017;11679;12559;13574;12032.01;14436;14436;17574;22328;21625;21625
-104;'372;Ireland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;12000;15000;15000;15000;47980;98936;69934;53634;61297;93150;131000;63818;8914;8293;9968;24331;39062;0;0;0;0;0;0;41000;49454;551;551
-104;'372;Ireland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4009;4162;4973;9013;11041;19643;57763;77452;91469;71074;26293;74379;99959;69464;9879;11280;11622;18454;32757;0;0;0;0;0;0;35284;51471;628;628
-104;'372;Ireland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236000;264000;330000;330000;330000;330000;326000;292000;354000;371455;389000;413000;413000;340000;342000;360000;373000;356400;369136;421000;415000;420000;453643;438450;438450;438450;438450;438450;438450
-104;'372;Ireland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;21000;26000;36000;43000;51000;35520;34650;33599;33533;50426;75860;60000;52366;41731;39589;49042;54705;51091;58911;64351;62900;74063;80072;80072;84800;110881;53791;53791
-104;'372;Ireland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9462;11845;14246;12492;13073;11032;10932;9125;12145;14522;17436;17007;25989;28285;21186;18740;20952;21563;25045;30511;30299;31973;38490.93;39766;39766;46076;69081;42376;42376
-104;'372;Ireland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140000;170000;172000;295000;287000;364000;293430;264901;261443;298453;449514;394090;344000;336620;383854;394434;391697;363483;359812;415146;427200;450500;463921;444879;444879;368900;480600;379860;379860
-104;'372;Ireland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78584;72988;78480;82930;69728;58287;55062;53465;67176;91388;192816;121999;159706;140311;141523;144701;150310;132901;132972;178214;158512;176025;178923.7;196189;196189;142308;228048;256979;256979
-104;'372;Ireland;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;41000;0;61000;40000;80000;84626;86334;69918;74033;70000;70000;75607;73075;73075;73075;73075;73075;73075
-104;'372;Ireland;1650;Other fibreboard;5616;Import quantity;m3;;1400;1400;1600;2600;8400;12400;12400;11600;11200;8800;7600;3200;3600;4000;953;3200;2300;4700;2400;5500;4500;6300;4400;3200;2524;7023;1757;5461;1910;2000;10921;22000;20000;31000;1000;12000;26000;8000;6000;5570;11100;8012;6366;3422;3160;0;0;0;0;0;0;0;2408;2718;2200;0;0;0;300;1292;26135;26135
-104;'372;Ireland;1650;Other fibreboard;5622;Import value;1000 USD;;207;196;209;405;348;422;457;440;260;322;329;165;279;288;246;280;239;451;329;828;482;489;345;240;245;810;561;1378;1097;1097;3741;2148;1963;4009;129;1784;3868;1480;1828;1605;2313;1898;2454;2813;3039;0;0;0;0;0;0;0;671;710;573;0;0;0;248;1092;21943;21943
-104;'372;Ireland;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4330;1800;500;0;0;0;1000;2000;7000;12030;7057;25033;61091;0;43840;0;0;0;0;0;0;0;0;0;0;0;0;0;300;10;25915;25915
-104;'372;Ireland;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1607;245;62;0;0;0;144;302;2090;1817;1166;6729;18426;0;23480;0;0;0;0;0;0;0;0;0;0;0;0;0;119;20;24249;24249
-104;'372;Ireland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;13700;16400;15900;17800;18400;20200;18600;21200;18800;21700;23000;23400;23000;20700;21000;19000;19000;18000;18000;18000;18000;18000;18000;90000;115000;145000;170000;170000;160000;160000;160000;162000;162000;180000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1600;1100;1000;900;900;900;900;900;900;842;1158;1264;2948;1685;2001;3159;2200;2200;3000;5700;10000;5400;6800;5400;6800;5272;5996;8627;15530;12496;12496;12762;16000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;266;140;146;140;140;140;140;140;140;222;280;354;788;548;600;836;770;746;1916;2472;3184;1894;2223;1600;1763;1841;2078;3276;4646;4718;4718;4606;7619;10623;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;8800;10900;10200;11100;12500;11478;10741;13163;13689;12531;13689;15374;14110;10741;11372;13689;13100;11400;800;100;100;200;200;200;200;2383;5276;136625;137365;88066;104000;145000;114000;114000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;1061;1291;1240;1252;1241;1147;1345;1423;1250;1172;1558;1796;1987;2218;2511;2589;3178;2863;199;25;21;10;10;10;10;792;2168;47265;42966;36594;36594;53236;49049;55724;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1879;Total fibre furnish;5510;Production;t;20900;29400;29900;31600;25000;25000;28000;30000;33000;45000;45000;49000;53000;48000;23400;42000;43000;46000;74000;59000;32000;36000;41000;43000;49000;40000;56000;61000;37000;71000;71000;71000;166000;170000;174000;180000;180000;46000;46000;75000;93150;189000;189000;349000;443000;444000;454000;448000;471000;360000;338265;347390;388920;401837;436455;434054;434054;369000;369000;369000;408000;414600;414600
-104;'372;Ireland;1879;Total fibre furnish;5610;Import quantity;t;;;;;;26100;35100;45500;37700;63300;49400;60700;78200;61900;36700;37100;31100;31500;33300;32300;34600;10100;6600;8500;7500;9213;10316;15806;11699;12019;12019;21427;18897;20590;29000;18000;22000;29000;29000;19000;18060;13132;14831;13734;10988;7580;8118;8930;10537;15851;11093;7402;11740;10966;13572;11098;14783;11316;11316;12000;8483;8475;8475
-104;'372;Ireland;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;3544;4534;5691;4695;8097;6271;7778;10145;12442;11045;10255;10098;9460;13453;15491;18099;5415;3587;2877;3253;3743;2948;8649;8489;8689;8789;10727;6833;6925;9670;6575;7359;11511;13437;12686;11469;8285;11962;11347;7970;5696;6715;9819;12493;14036;12083;12279;12145;16768;15520;13116;15293.59;14252;14252;12316;9408;9517;9517
-104;'372;Ireland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;5000;5000;6000;7000;6200;5500;14200;12000;12600;24300;19700;15700;18000;20800;19500;25100;25100;25100;28000;28000;28000;28000;42172;25240;35564;54000;41000;49000;49000;53000;76000;100000;122396;181921;313564;435479;444070;460010;448023;470665;359737;338331;349376;389065;401838;436457;438506;407375;369439;369439;378700;410488;417737;417737
-104;'372;Ireland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;203;220;299;385;606;668;984;813;962;2433;1986;1357;1785;1605;1847;2505;2505;2505;4735;4735;4735;4735;5591;3928;4502;9302;5282;4334;4497;6878;9682;8880;12962;19805;42310;55852;63647;79005;86070;64225;79509;73889;67339;69630;80761;66206;72822;84193.62;71380;71380;46252;98704;91135;91135
-104;'372;Ireland;1878;Pulp for paper;5510;Production;t;20900;29400;29900;31600;25000;25000;28000;30000;33000;35000;36000;36000;39000;36000;11400;14000;19000;20000;26000;19000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1878;Pulp for paper;5610;Import quantity;t;;;;;;26100;35100;45500;37700;48300;33400;40700;54200;39000;22200;23700;22500;27000;31800;31000;32900;9100;5400;4500;5200;4503;3956;10820;10357;11000;11000;11507;9610;9490;9000;8000;11000;17000;20000;18000;15210;11385;12176;8724;5827;3990;4118;1653;1957;692;669;1489;5895;3874;5844;5034;4636;5045;5045;6900;5979;5170;5170
-104;'372;Ireland;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;3544;4534;5691;4695;7718;5835;6960;9123;11034;9599;9041;8854;8827;13179;15228;17957;5317;3521;2685;3120;2467;2279;8215;7918;8326;8426;9659;6393;6200;7745;6083;6931;10988;12488;12354;9888;6950;8897;6765;4997;3298;3446;1725;2569;924;1253;3912;4283;7188;7960;6029;7033.7;5889;5889;8375;6111;6261;6261
-104;'372;Ireland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;627;264;0;0;0;0;1000;0;4000;415;524;1140;1172;560;2010;60;37;578;66;6;149;1;2;4002;1410;36;36;0;152;136;136
-104;'372;Ireland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;243;104;0;0;0;34;782;532;1075;216;73;917;146;65;275;12;22;245;84;8;27;1;1;1538;716.78;1078;1078;0;86;82;82
-104;'372;Ireland;1875;Wood pulp;5510;Production;t;20900;29400;29900;31600;25000;25000;28000;30000;33000;35000;36000;36000;39000;36000;11400;14000;19000;20000;26000;19000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1875;Wood pulp;5610;Import quantity;t;;;;;;26100;35100;45500;37700;48300;33400;40900;54300;39800;22300;23800;22600;27800;32700;31900;33800;10000;6700;9300;10900;11142;7055;18701;10595;26058;26058;19497;16600;19690;19000;18000;24000;31000;34000;33000;30720;25441;24542;23883;20435;21720;31084;28701;32367;40610;53963;47152;50400;46477;50562;45593;45121;40835;40835;49200;33497;36862;36862
-104;'372;Ireland;1875;Wood pulp;5622;Import value;1000 USD;;;;;;3544;4534;5691;4695;7718;5835;6995;9164;11238;9617;9059;8872;9215;13769;15818;18547;5907;4246;5710;6791;6466;4394;13705;8114;21592;21692;15031;13044;15393;12236;17127;17940;23002;24636;25226;23590;19904;19742;20350;18342;19265;29976;29220;31005;40879;62867;57850;55363;55762;58279;49699;51194.64;44100;44100;58625;37255;45873;45873
-104;'372;Ireland;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;640;264;0;0;0;5000;1000;1000;5000;1514;2671;4440;1636;610;2003;199;20;578;33;3;168;1;34;3068;22;36;36;0;537;124;124
-104;'372;Ireland;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;258;104;0;0;0;847;1226;1693;1815;1781;2818;4044;331;71;277;190;12;245;42;4;30;1;3;772;361.77;1078;1078;0;629;73;73
-104;'372;Ireland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-104;'372;Ireland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523;777;777;0;169;627;627
-104;'372;Ireland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2752.17;1512;1512;58;145;239;239
-104;'372;Ireland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;36;36;0;149;123;123
-104;'372;Ireland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357.26;1078;1078;0;80;68;68
-104;'372;Ireland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;20900;29400;29900;31600;25000;25000;28000;30000;33000;35000;36000;36000;39000;36000;11400;14000;19000;20000;26000;19000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;100;1000;100;100;500;200;600;400;800;1900;1900;900;1400;1400;703;156;820;357;1000;1000;600;400;890;0;0;0;0;0;1000;200;321;55;57;236;380;2000;120;39;34;0;1000;23;54;44;334;;;;;;;
-104;'372;Ireland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;29;163;24;24;139;81;177;260;313;700;700;624;940;940;287;99;589;292;700;800;1346;128;334;0;0;0;94;101;382;110;282;42;63;152;291;1599;200;31;24;0;1;27;50;40;404;;;;;;;
-104;'372;Ireland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;264;0;0;0;0;1000;0;4000;250;505;713;686;560;2000;10;1;578;0;0;139;0;0;0;;;;;;;
-104;'372;Ireland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32;104;0;0;0;6;697;103;266;73;62;250;100;65;274;2;1;245;0;0;13;0;0;0;;;;;;;
-104;'372;Ireland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;0;0;0;0;0;0;0;0;30;33;0;0;0;20;73;180;384;310;154;117;4736;226;475;555;;;;;;;
-104;'372;Ireland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;0;0;0;0;0;27;129;0;46;49;0;0;0;26;73;193;351;394;429;1221;1345;1763;1615;1171;;;;;;;
-104;'372;Ireland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;0;0;0;0;0;0;0;0;19;0;0;0;0;30;19;0;33;3;5;1;2;3063;;;;;;;
-104;'372;Ireland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;0;0;0;0;32;0;11;0;0;0;0;7;11;0;42;4;7;1;1;769;;;;;;;
-104;'372;Ireland;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;45500;37700;48300;33400;40600;53200;38900;22100;23200;22300;26400;31400;30200;31000;7200;4500;3100;3800;3800;3800;10000;10000;10000;10000;10558;9200;8600;9000;8000;11000;17000;20000;17000;14880;10970;12103;8637;5525;3570;2011;1221;1170;98;368;258;1056;3368;4850;3590;2466;3635;3635;6700;5674;4347;4347
-104;'372;Ireland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5691;4695;7718;5835;6931;8960;11010;9575;8902;8773;8650;12919;14915;17257;4617;2897;1745;2180;2180;2180;7626;7626;7626;7626;8160;6245;5866;7745;6083;6931;10773;12114;11842;9539;6496;8804;6631;4784;2957;1740;1188;1858;193;404;1472;1871;3612;4690;3283;2407.3;3286;3286;7373;5330;5046;5046
-104;'372;Ireland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;527;0;0;0;0;0;0;0;0;7;0;425;0;0;0;0;0;0;0;0;5;0;0;2;10;0;0;0;1;1;1
-104;'372;Ireland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;211;0;0;0;0;1;6;357;707;6;0;666;0;0;0;0;0;0;0;0;7;0;0;1;4.51;0;0;0;4;5;5
-104;'372;Ireland;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;5;0;0;0;12;28;0;84;300;892;0;0;0;2;2;2300;2292;1201;1201
-104;'372;Ireland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;14;1;0;0;12;2;0;0;0;244;95;0;72;275;1069;0;0;0;0;0;2684;2355;1386;1386
-104;'372;Ireland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-104;'372;Ireland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-104;'372;Ireland;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;45500;37700;48300;33400;40600;53200;38900;22100;18800;19100;24000;28000;25700;24000;200;;200;200;200;200;4000;4000;4000;4000;7647;8026;7100;5000;6000;10000;16000;20000;17000;14600;9985;9130;5298;227;1220;1000;830;143;57;342;57;81;2377;4751;3525;2342;3566;3566;4300;3336;3054;3054
-104;'372;Ireland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;5691;4695;7718;5835;6931;8960;11010;9575;7519;7431;7761;11291;12406;12897;123;;96;105;105;105;3298;3298;3298;3298;5986;5670;4794;4377;4162;6281;9808;11817;11394;9300;5669;5714;3379;174;767;772;713;96;70;320;179;251;2255;4414;3105;2028.63;3103;3103;4441;2841;2916;2916
-104;'372;Ireland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;319;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0
-104;'372;Ireland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;131;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-104;'372;Ireland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-104;'372;Ireland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;67;67;100;46;92;92
-104;'372;Ireland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378.68;183;183;248;134;744;744
-104;'372;Ireland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;1;0;0
-104;'372;Ireland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.51;0;0;0;4;4;4
-104;'372;Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0;0;0;0;10;11;0;0;0;0;3;595;0;0;0;;;;;;;
-104;'372;Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;16;0;0;0;0;8;11;0;0;0;0;3;305;0;0;0;;;;;;;
-104;'372;Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;425;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;666;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-104;'372;Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;4400;3200;2400;3400;4500;7000;7000;4500;2900;3600;3600;3600;6000;6000;6000;6000;2911;1174;1500;4000;2000;1000;1000;0;0;270;985;2973;3338;5293;2340;1000;391;1015;13;26;114;80;99;99;65;;;;;;;
-104;'372;Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;1383;1342;889;1628;2509;4360;4494;2897;1649;2075;2075;2075;4328;4328;4328;4328;2174;575;1072;3368;1921;650;964;283;434;222;827;3090;3240;4608;2182;957;475;1518;28;84;1218;1040;288;276;178;;;;;;;
-104;'372;Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;208;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;5;0;0;0;;;;;;;
-104;'372;Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;80;0;0;0;0;1;3;354;707;6;0;0;0;0;0;0;0;0;0;0;7;0;0;0;;;;;;;
-104;'372;Ireland;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;200;100;800;100;100;100;800;900;900;900;900;1300;4800;5700;6639;3099;7881;238;15058;15058;8000;7000;10200;10000;10000;13000;14000;14000;15000;15610;14117;12384;15189;14674;17750;27000;27180;30774;40168;53441;45777;44585;42829;45193;41114;41132;36423;36423;42500;27654;31888;31888
-104;'372;Ireland;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;35;41;204;18;18;18;388;590;590;590;590;725;3025;3671;3999;2115;5490;196;13266;13266;5392;6671;9193;4491;11044;11009;12108;12292;13002;13895;13077;10896;13656;13406;15991;26564;27639;28765;40268;62034;55156;52120;50337;51934;44841;46035.16;39302;39302;51194;31780;40588;40588
-104;'372;Ireland;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;13;0;0;0;0;5000;0;1000;1000;1257;2147;3302;950;50;3;159;0;0;0;0;19;0;32;3;0;0;0;0;387;0;0
-104;'372;Ireland;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;15;0;0;0;0;840;523;1233;810;1702;2745;3128;231;6;3;181;0;0;0;0;3;0;2;2;0;0;0;0;545;0;0
-104;'372;Ireland;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;0;100;61;18;30;66;20;34;132;364;250;147;114;80;226;475;555;647;633;633;200;136;196;196
-104;'372;Ireland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;0;0;0;94;144;130;193;123;51;71;61;24;34;144;329;313;420;1218;1040;1763;1615;1171;1874.22;1091;1091;944;636;976;976
-104;'372;Ireland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;158;0;2;486;0;10;20;17;0;33;3;0;0;0;937;1388;0;0;0;2;12;12
-104;'372;Ireland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;27;79;72;70;137;0;1;46;0;1;3;10;0;42;4;0;0;0;768;355.01;0;0;0;2;9;9
-104;'372;Ireland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;0;127;120;139;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;900;1005;1540;1540
-104;'372;Ireland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;354;354;0;25;31;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;726;665;1062;1062
-104;'372;Ireland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;15000;22000;23000;37317;60203;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;1166;1913;1750;3085;4237;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1669;Recovered paper;5510;Production;t;;;;;;;;;;10000;9000;13000;14000;12000;12000;28000;24000;26000;48000;40000;32000;36000;41000;43000;49000;40000;56000;61000;37000;71000;71000;71000;166000;170000;174000;180000;180000;46000;46000;75000;93150;189000;189000;349000;443000;444000;454000;448000;471000;359000;338265;347390;388920;401837;436455;434054;434054;369000;369000;369000;408000;414600;414600
-104;'372;Ireland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;15000;16000;20000;24000;22900;14500;13400;8600;4500;1500;1300;1700;1000;1200;4000;2300;4710;6360;4986;1342;1019;1019;9920;9287;11100;20000;10000;11000;12000;9000;1000;2850;1747;2655;5010;5161;3590;4000;7277;8580;15159;10424;5913;5845;7092;7728;6064;10147;6271;6271;5100;2504;3305;3305
-104;'372;Ireland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;379;436;818;1022;1408;1446;1214;1244;633;274;263;142;98;66;192;133;1276;669;434;571;363;363;1068;440;725;1925;492;428;523;949;332;1581;1335;3065;4582;2973;2398;3269;8094;9924;13112;10830;8367;7862;9580;7560;7087;8259.89;8363;8363;3941;3297;3256;3256
-104;'372;Ireland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;5000;5000;6000;7000;6200;5500;14200;12000;12600;24300;19700;15700;18000;20800;19500;25100;25100;25100;28000;28000;28000;28000;41794;24613;35300;54000;41000;49000;49000;52000;76000;96000;121981;181397;312424;434307;443510;458000;447963;470628;359159;338265;349370;388916;401837;436455;434504;405965;369403;369403;378700;410336;417601;417601
-104;'372;Ireland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;203;220;299;385;606;668;984;813;962;2433;1986;1357;1785;1605;1847;2505;2505;2505;4735;4735;4735;4735;5396;3685;4398;9302;5282;4334;4463;6096;9150;7805;12746;19732;41393;55706;63582;78730;86058;64203;79264;73805;67331;69603;80760;66205;71284;83476.84;70302;70302;46252;98618;91053;91053
-104;'372;Ireland;1876;Paper and paperboard;5510;Production;t;84900;80500;83400;91800;85000;58000;85000;104000;106000;95000;100000;115000;152000;139000;112000;107000;131000;88000;97000;55000;52000;20000;20000;20000;22000;37000;29000;33000;34000;35000;36000;0;0;0;0;0;0;42000;42000;43000;43000;44000;45000;45000;45000;45000;49000;48000;45000;45000;47000;53000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-104;'372;Ireland;1876;Paper and paperboard;5610;Import quantity;t;69800;62800;72600;94800;86800;93200;105900;120400;140300;136400;145300;157300;179600;215300;142600;179900;186300;210100;239100;221500;230800;237000;248300;256700;250000;256424;264646;335876;346948;346000;386000;401926;362389;429900;386000;675000;406000;466000;453000;431000;414590;402031;427973;351613;380972;510240;545000;529487;378988;370229;383532;414699;427698;404229;428559;417658;407025;388236;388236;345400;341995;489344;489344
-104;'372;Ireland;1876;Paper and paperboard;5622;Import value;1000 USD;14660;14151;15522;19458;19005;26286;21897;23876;29363;30958;34125;42630;51904;97985;79813;91782;105221;131554;177001;197918;184507;180017;162081;164175;171222;181043;196740;338082;353319;356376;368605;388680;277430;378122;399496;817911;369570;440773;423106;391032;384772;357046;441019;406737;378283;550623;639373;765491;430739;414365;463929;435144;451623;451758;398327;388610;377208.39;416296;416296;313109;377550;492030;492030
-104;'372;Ireland;1876;Paper and paperboard;5910;Export quantity;t;18000;14300;12800;16300;14100;8400;14500;21700;22500;25100;32700;35100;43500;78800;27000;23000;26900;29800;22300;22200;23800;12100;13800;14300;9400;22129;20669;33037;32940;34811;26000;43545;31600;47600;50800;67000;59000;62580;67000;60700;54550;53203;53985;37871;42860;71460;87178;43217;26198;22248;27677;30891;38207;39495;38980;56002;36292;26406;26406;28000;22268;18224;18224
-104;'372;Ireland;1876;Paper and paperboard;5922;Export value;1000 USD;3231;2792;2509;3231;3023;1744;3065;4160;4484;5448;7202;9399;12961;21473;19550;17154;20251;25197;27066;27358;28587;15584;15172;13953;9194;19161;21943;39125;39218;36462;27839;46131;25854;44947;54464;72800;42460;49619;70507;73060;63581;59442;112004;86858;75895;109898;126121;102078;63293;58942;71870;65348;78726;66516;49193;56302;45348.81;35491;35491;27504;36158;39872;39872
-104;'372;Ireland;2042;Graphic papers;5510;Production;t;16000;17100;18300;18200;19000;16000;16000;16000;19000;16000;18000;23000;37000;36000;29000;24000;26000;21000;25000;23000;17000;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;2042;Graphic papers;5610;Import quantity;t;38500;34200;38800;44100;38300;51500;43200;45000;55700;53500;54000;59400;63200;75000;55900;63900;61500;68600;76000;82900;84800;90000;95800;101200;93400;99824;108046;162876;161948;157000;197000;185926;199389;202400;218000;210000;199000;204000;220000;177000;190070;202679;221298;175687;211238;243380;276000;264947;193012;188688;175454;205666;218587;198646;201869;190986;161636;146284;146284;97000;92680;104746;104746
-104;'372;Ireland;2042;Graphic papers;5622;Import value;1000 USD;7016;6824;7212;7927;6935;8982;7309;7203;9638;9375;10230;12678;15072;30644;25427;28674;33714;44087;59291;74806;62524;65698;60229;61944;60796;70617;86314;167397;169319;169376;181605;188140;155367;165111;234630;301394;194476;188595;188900;153516;173579;183293;220826;176859;185119;239587;286199;266780;198011;194255;218503;210249;210103;200239;169168;156637;139315.9;141602;141602;89216;90414;124818;124818
-104;'372;Ireland;2042;Graphic papers;5910;Export quantity;t;200;700;400;400;200;300;400;300;200;1000;1400;6200;7500;6300;2400;2500;5000;9300;7300;6900;6600;2100;2200;1600;1500;14229;12769;7037;6940;6811;2000;16372;16700;8600;9000;12000;8000;3280;6000;6700;5550;7254;9060;2715;7896;19670;22000;7459;6070;9075;8166;11309;18549;19842;20270;33920;18638;11881;11881;9800;8769;10661;10661
-104;'372;Ireland;2042;Graphic papers;5922;Export value;1000 USD;78;227;115;141;67;99;123;85;55;336;469;2079;2727;4388;1659;1481;3169;6314;6426;7334;6072;2344;2381;1607;1719;11686;14468;8048;8141;6462;1839;14532;16943;14196;18283;27520;15467;7656;10890;11464;9872;14737;26408;6635;19435;43807;51610;30322;25886;24574;26143;31033;33842;31203;25543;28524;23020.4;17070;17070;14308;14238;18773;18773
-104;'372;Ireland;1671;Newsprint;5510;Production;t;6300;6900;8400;7600;8000;6000;6000;6000;6000;6000;7000;8000;10000;10000;10000;;;1000;2000;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1671;Newsprint;5610;Import quantity;t;35000;30600;35500;40200;34300;46600;39500;40300;48700;48200;44900;48900;52900;40100;47000;49500;45300;50300;54100;60800;58000;54000;52600;48700;51400;53400;53400;63000;63000;63000;63000;68112;77389;70400;62000;70000;73000;73000;82000;63000;78750;77378;89237;93051;136164;122180;147000;143545;83244;75487;67554;62560;62055;57861;53115;50439;45944;46036;46036;30600;24983;31067;31067
-104;'372;Ireland;1671;Newsprint;5622;Import value;1000 USD;5356;4707;5300;5889;4955;6852;5775;5610;7299;7523;7370;8853;10308;12546;17220;17324;19331;25054;34111;43125;34250;30005;25226;21994;24952;26000;26000;46605;46605;46605;46605;51648;38451;36055;39773;58902;47048;46657;49692;37996;50697;54779;67248;63930;83153;76654;102209;102559;57492;50318;57142;53598;44685;42750;31041;27587;23811.56;27839;27839;15354;14181;24664;24664
-104;'372;Ireland;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;100;100;300;600;400;700;300;200;400;100;200;300;400;300;300;1000;1000;1000;1000;1820;7600;1300;0;0;1000;0;1000;0;0;201;17;253;1348;3530;1000;1909;344;402;258;404;271;782;2;13191;4;0;0;0;25;2;2
-104;'372;Ireland;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;22;15;108;200;147;250;143;82;291;54;81;139;270;280;280;859;859;859;859;1251;4185;774;0;0;334;35;820;35;692;571;54;864;2642;2366;1403;1347;258;273;188;301;146;502;1;1806;4.51;0;0;3;22;19;19
-104;'372;Ireland;1674;Printing and writing papers;5510;Production;t;9700;10200;9900;10600;11000;10000;10000;10000;13000;10000;11000;15000;27000;26000;19000;24000;26000;20000;23000;23000;17000;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1674;Printing and writing papers;5610;Import quantity;t;3500;3600;3300;3900;4000;4900;3700;4700;7000;5300;9100;10500;10300;34900;8900;14400;16200;18300;21900;22100;26800;36000;43200;52500;42000;46424;54646;99876;98948;94000;134000;117814;122000;132000;156000;140000;126000;131000;138000;114000;111320;125301;132061;82636;75074;121200;129000;121402;109768;113201;107900;143106;156532;140785;148754;140547;115692;100248;100248;66400;67697;73679;73679
-104;'372;Ireland;1674;Printing and writing papers;5622;Import value;1000 USD;1660;2117;1912;2038;1980;2130;1534;1593;2339;1852;2860;3825;4764;18098;8207;11350;14383;19033;25180;31681;28274;35693;35003;39950;35844;44617;60314;120792;122714;122771;135000;136492;116916;129056;194857;242492;147428;141938;139208;115520;122882;128514;153578;112929;101966;162933;183990;164221;140519;143937;161361;156651;165418;157489;138127;129050;115504.34;113763;113763;73862;76233;100154;100154
-104;'372;Ireland;1674;Printing and writing papers;5910;Export quantity;t;200;700;400;400;200;300;400;300;200;1000;1400;6200;7400;6200;2100;1900;4600;8600;7000;6700;6200;2000;2000;1300;1100;13929;12469;6037;5940;5811;1000;14552;9100;7300;9000;12000;7000;3280;5000;6700;5550;7053;9043;2462;6548;16140;21000;5550;5726;8673;7908;10905;18278;19060;20268;20729;18634;11881;11881;9800;8744;10659;10659
-104;'372;Ireland;1674;Printing and writing papers;5922;Export value;1000 USD;78;227;115;141;67;99;123;85;55;336;469;2079;2705;4373;1551;1281;3022;6064;6283;7252;5781;2290;2300;1468;1449;11406;14188;7189;7282;5603;980;13281;12758;13422;18283;27520;15133;7621;10070;11429;9180;14166;26354;5771;16793;41441;50207;28975;25628;24301;25955;30732;33696;30701;25542;26718;23015.89;17070;17070;14305;14216;18754;18754
-104;'372;Ireland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;6000;4000;2650;11045;4631;0;4482;3580;3000;4264;8644;5997;4431;4074;4919;4513;4674;3179;3798;1340;1340;2100;704;930;930
-104;'372;Ireland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4617;5990;3701;2847;12783;5374;0;5744;6380;4924;7529;10493;5716;4683;4041;5260;5199;4976;3722;3640.26;1793;1793;2516;1296;1818;1818
-104;'372;Ireland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;1000;700;550;1524;293;0;985;1000;1000;910;502;961;863;887;523;63;139;649;821;796;796;400;232;614;614
-104;'372;Ireland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1317;4803;3372;2632;3850;1471;0;1428;1389;1370;1666;1219;1468;1453;1302;1434;1557;1675;1704;1551.9;1409;1409;1054;917;820;820
-104;'372;Ireland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;60000;52000;55550;59592;66535;48984;65326;57280;63000;59425;55341;61823;56487;96441;98484;88625;94517;92502;75109;67965;67965;45600;47976;51973;51973
-104;'372;Ireland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57894;59228;51652;55157;58648;76136;69759;83362;71540;85405;78903;65572;74174;76400;80867;86031;88626;79359;74178;68043.5;72190;72190;49255;51789;69663;69663
-104;'372;Ireland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1668;2283;1471;2867;3990;3000;3380;2166;1768;3184;5772;7745;8779;9263;7609;7699;6791;6791;6600;5612;5844;5844
-104;'372;Ireland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2951;2017;2863;2153;2749;5851;4459;6686;7625;6247;7686;6059;5543;9030;18296;17190;15557;11825;11491;10308.8;10297;10297;10176;9328;11951;11951
-104;'372;Ireland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72000;72000;58000;53120;54664;60895;33652;5266;60340;63000;57713;45783;45381;46982;42591;53129;47647;49563;44866;36785;30943;30943;18700;19017;20776;20776
-104;'372;Ireland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79427;73990;60167;64878;57083;72068;43170;12860;85013;93661;77789;64454;64047;80278;71743;74127;63664;53792;51150;43820.58;39780;39780;22091;23148;28673;28673
-104;'372;Ireland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;5000;4000;3861;6467;991;2696;11150;17000;1260;3058;5944;3861;4246;10010;10218;10866;12471;10114;4294;4294;2800;2900;4201;4201
-104;'372;Ireland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3353;3250;5194;4395;7567;19032;1312;8679;32427;42590;19623;18350;17290;15472;11134;15072;13587;12042;13523;11155.19;5364;5364;3075;3971;5983;5983
-104;'372;Ireland;1675;Other paper and paperboard;5510;Production;t;68900;63400;65100;73600;66000;42000;69000;88000;87000;79000;82000;92000;115000;103000;83000;83000;105000;67000;72000;32000;35000;20000;20000;20000;22000;37000;29000;33000;34000;35000;36000;0;0;0;0;0;0;42000;42000;43000;43000;44000;45000;45000;45000;45000;49000;48000;45000;45000;47000;53000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-104;'372;Ireland;1675;Other paper and paperboard;5610;Import quantity;t;31300;28600;33800;50700;48500;41700;62700;75400;84600;82900;91300;97900;116400;140300;86700;116000;124800;141500;163100;138600;146000;147000;152500;155500;156600;156600;156600;173000;185000;189000;189000;216000;163000;227500;168000;465000;207000;262000;233000;254000;224520;199352;206675;175926;169734;266860;269000;264540;185976;181541;208078;209033;209111;205583;226690;226672;245389;241952;241952;248400;249315;384598;384598
-104;'372;Ireland;1675;Other paper and paperboard;5622;Import value;1000 USD;7644;7327;8310;11531;12070;17304;14588;16673;19725;21583;23895;29952;36832;67341;54386;63108;71507;87467;117710;123112;121983;114319;101852;102231;110426;110426;110426;170685;184000;187000;187000;200540;122063;213011;164866;516517;175094;252178;234206;237516;211193;173753;220193;229878;193164;311036;353174;498711;232728;220110;245426;224895;241520;251519;229159;231973;237892.48;274694;274694;223893;287136;367212;367212
-104;'372;Ireland;1675;Other paper and paperboard;5910;Export quantity;t;17800;13600;12400;15900;13900;8100;14100;21400;22300;24100;31300;28900;36000;72500;24600;20500;21900;20500;15000;15300;17200;10000;11600;12700;7900;7900;7900;26000;26000;28000;24000;27173;14900;39000;41800;55000;51000;59300;61000;54000;49000;45949;44925;35156;34964;51790;65178;35758;20128;13173;19511;19582;19658;19653;18710;22082;17654;14525;14525;18200;13499;7563;7563
-104;'372;Ireland;1675;Other paper and paperboard;5922;Export value;1000 USD;3153;2565;2394;3090;2956;1645;2942;4075;4429;5112;6733;7320;10234;17085;17891;15673;17082;18883;20640;20024;22515;13240;12791;12346;7475;7475;7475;31077;31077;30000;26000;31599;8911;30751;36181;45280;26993;41963;59617;61596;53709;44705;85596;80223;56460;66091;74511;71756;37407;34368;45727;34315;44884;35313;23650;27778;22328.41;18421;18421;13196;21920;21099;21099
-104;'372;Ireland;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;3000;55000;4000;5000;7000;7000;6720;8233;7436;7336;7560;14450;28000;27300;24822;14892;8842;6933;8475;8475;7960;4980;11325;12509;12509;17900;16736;22483;22483
-104;'372;Ireland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9881;6094;132851;10247;9568;12808;18152;15264;17297;20469;25173;25551;36024;64892;71744;53399;34996;23347;21406;26518;26528;21432;15864;25592.25;30027;30027;35482;29063;50428;50428
-104;'372;Ireland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;1000;1000;9000;10000;9000;7110;6628;4266;7563;170;178;165;181;337;289;275;148;148;117;229;191;248;248;300;343;287;287
-104;'372;Ireland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960;707;1193;25701;29360;25147;18797;19952;12888;314;672;903;897;735;1167;871;1597;556;557;1025;1295;769.75;833;833;1202;910;1038;1038
-104;'372;Ireland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;42000;43000;43000;44000;45000;45000;45000;45000;49000;48000;45000;45000;47000;53000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-104;'372;Ireland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229000;198000;222000;196930;181253;188600;161065;156629;221250;205000;214331;138111;145186;169029;170090;167476;163948;173459;178582;194210;188827;188827;221600;231037;360509;360509
-104;'372;Ireland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174664;162335;166744;153562;139814;179455;167041;144656;186672;194079;350872;121994;132713;163785;148141;160095;169943;152479;145175;158433.45;186937;186937;177386;250604;307534;307534
-104;'372;Ireland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54300;48000;40000;37000;37239;37080;30813;27358;48960;62000;33183;17841;10840;17458;17955;18611;18606;16550;19086;15896;13198;13198;17900;13020;7125;7125
-104;'372;Ireland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29306;24546;23047;19301;22681;63365;66350;55699;50278;58857;59154;28943;25846;37547;27497;39120;29545;17090;18987;15796.24;13280;13280;11127;16141;14336;14336
-104;'372;Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;42000;69000;88000;87000;79000;82000;92000;115000;103000;83000;83000;105000;67000;72000;32000;35000;20000;20000;20000;22000;37000;29000;33000;34000;35000;36000;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209800;164000;390000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182759;157329;369261;162007;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31700;27000;29000;49000;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26103;17110;19040;25186;;;;;;;;;;;;;;;;;;;;;;;;;;
-104;'372;Ireland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;42000;43000;43000;44000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;60000;60000;60000;60000;60000;60000;60000
-104;'372;Ireland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109000;97000;122000;102260;103014;99551;99074;99239;120060;105000;103641;63375;60140;73601;75860;76123;73546;66333;74031;70999;59610;59610;118300;138650;251143;251143
-104;'372;Ireland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58410;51950;63797;53229;60008;64182;66054;61661;68801;70511;77963;44744;40736;52858;48838;53710;53903;41187;43388;45009.58;42388;42388;63629;102259;125158;125158
-104;'372;Ireland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;43000;37000;34000;35492;28254;24878;20431;18190;20000;25003;14137;7431;8058;8296;9075;10105;8220;7016;7398;8201;8201;11100;7241;687;687
-104;'372;Ireland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24779;19340;19262;15713;19554;16181;18437;12471;10851;13284;17694;11960;6359;6597;5981;7389;8270;5452;4296;5163.98;6767;6767;6860;5765;596;596
-104;'372;Ireland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;48000;47000;50210;35367;53008;36472;23940;35520;44000;52936;22892;25177;30334;28544;32161;31701;35312;29869;41692;46470;46470;42000;52689;66921;66921
-104;'372;Ireland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65841;62276;56924;60630;39535;75398;65089;48665;61197;64727;66004;37990;40549;44666;44035;52782;62653;56893;46583;50664.94;70521;70521;64848;85984;107078;107078
-104;'372;Ireland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;1172;8329;5506;4211;2400;3000;1480;1374;1469;2405;1452;3463;3334;1815;1144;1260;1434;1434;1500;3216;3630;3630
-104;'372;Ireland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2379;1659;1490;1799;2410;46146;47437;40933;35274;38437;33650;14262;17221;22744;11874;24890;14635;3798;1650;1989.18;2170;2170;2349;6033;7617;7617
-104;'372;Ireland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4000;3000;0;0;2000;8000;15000;15000;15000;15000;0;0;0;0;0;0;0
-104;'372;Ireland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;48000;45000;35150;41038;36035;25519;33450;39340;34000;38021;35083;34336;36384;38199;34033;28136;31415;33079;35397;34234;34234;35200;29508;36385;36385
-104;'372;Ireland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43198;43053;40008;33068;39687;39868;35898;34330;44625;43649;192822;31001;36397;45878;38598;38252;33441;31443;33277;36804.91;41511;41511;41696;52311;62638;62638
-104;'372;Ireland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;1000;1000;560;497;429;2716;28340;38000;6700;2330;1940;6990;8200;5910;4855;6293;10863;7166;3522;3522;5300;2558;2791;2791
-104;'372;Ireland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1480;1403;2295;1787;695;1038;476;2295;4086;6615;7810;2721;2266;8139;9560;6643;5770;7471;12904;8514.59;4184;4184;1909;4336;6098;6098
-104;'372;Ireland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;5000;8000;9310;1834;6;0;0;26330;22000;19733;16761;25533;28710;27487;25159;30565;40399;41603;46122;48513;48513;26100;10190;6060;6060
-104;'372;Ireland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7215;5056;6015;6635;584;7;0;0;12049;15192;14083;8259;15031;20383;16670;15351;19946;22956;21927;25954.02;32517;32517;7213;10050;12660;12660
-104;'372;Ireland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;1000;0;0;15;0;0;0;30;1000;0;0;0;5;7;163;312;222;63;72;41;41;0;5;17;17
-104;'372;Ireland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;668;2144;0;2;22;0;0;0;67;521;0;0;0;67;82;198;870;369;137;128.48;159;159;9;7;25;25
-104;'372;Ireland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-104;'372;Ireland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;41700;62700;75400;84600;82900;91300;97900;116400;140300;86700;116000;124800;141500;163100;138600;146000;147000;152500;155500;156600;156600;156600;173000;185000;189000;189000;216000;163000;10200;1000;20000;3000;28000;28000;25000;20870;9866;10639;7525;5545;31160;36000;22909;23043;21463;30207;32010;33160;33160;45271;43110;39854;40616;40616;8900;1542;1606;1606
-104;'372;Ireland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;17304;14588;16673;19725;21583;23895;29952;36832;67341;54386;63108;71507;87467;117710;123112;121983;114319;101852;102231;110426;110426;110426;170685;184000;187000;187000;200540;122063;20371;1443;14405;2840;67946;59063;52620;42367;16642;20269;37664;22957;88340;94203;76095;57335;52401;58294;55348;54907;55048;55248;70934;53866.79;57730;57730;11025;7469;9250;9250
-104;'372;Ireland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;24100;31300;28900;36000;72500;24600;20500;21900;20500;15000;15300;17200;10000;11600;12700;7900;7900;7900;26000;26000;28000;24000;27173;14900;7300;14800;21000;1000;4000;4000;4000;3000;1600;1217;77;43;2660;3000;2410;2106;1996;1764;1352;899;899;2043;2767;1567;1079;1079;0;136;151;151
-104;'372;Ireland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;5112;6733;7320;10234;17085;17891;15673;17082;18883;20640;20024;22515;13240;12791;12346;7475;7475;7475;31077;31077;30000;26000;31599;8911;4648;19071;21280;1100;11464;9370;9189;9261;3227;2279;985;447;15141;14751;11705;7729;7355;7309;5221;5208;5211;5535;7496;5762.43;4308;4308;867;4869;5725;5725
-104;'372;Ireland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607077.19;671663;566446;539941;739702;835273;789928
-104;'372;Ireland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191574.99;236509;180961;112342;131722;164150;164599
-104;'372;Ireland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142797;141557;10813;10327;16162;17310;16256
-104;'372;Ireland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43320;43428;1304;1699;3141;2790;3032
-104;'372;Ireland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136426;136426;5808;5312;7692;7043;7043
-104;'372;Ireland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42207;42207;87;174;1800;1668;1668
-104;'372;Ireland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6371;5131;5005;5015;8470;10267;9213
-104;'372;Ireland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1113;1221;1217;1525;1341;1122;1364
-104;'372;Ireland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45483;48589;56417;50648;44407;64525;86723
-104;'372;Ireland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7767.38;4487;4803;6691;12247;18527;17226
-104;'372;Ireland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28663.36;29164;29164;17039;31000;31440;31440
-104;'372;Ireland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17188.1;24145;24145;859;2460;9432;9432
-104;'372;Ireland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92003.83;97799;97799;101293;142309;134953;134953
-104;'372;Ireland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29374.51;47175;47175;18334;31178;35235;35235
-104;'372;Ireland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273061;327907;342854;317759;438933;514188;443286
-104;'372;Ireland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56900;67404;62762;66839;54895;86660;94384
-104;'372;Ireland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1098;3436;3436;12018;20092;25364;25364
-104;'372;Ireland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6708;10758;10758;3920;1578;1372;1372
-104;'372;Ireland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23971;23211;25963;30857;46799;47493;51906
-104;'372;Ireland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30317;39112;30014;14000;26223;10134;3918
-104;'372;Ireland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601278.08;650925;668001;757427;767948;908680;910957
-104;'372;Ireland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124528.62;145232;145153;207574;229017;243103;236605
-104;'372;Ireland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2494.08;2343;2343;1335;3339;6525;6525
-104;'372;Ireland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129.61;118;118;125;189;67;67
-104;'372;Ireland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41304;42706;42444;38739;55439;65903;60170
-104;'372;Ireland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650;4232;5375;6086;6921;9710;11572
-104;'372;Ireland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120733.69;135212;135212;215703;168843;216443;216443
-104;'372;Ireland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7229.8;8313;8313;31584;24005;13275;13275
-104;'372;Ireland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269842.22;305665;323003;339141;340241;396996;405006
-104;'372;Ireland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74901.39;91184;89962;95633;126535;149042;140682
-104;'372;Ireland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166904.09;164999;164999;162509;200086;222813;222813
-104;'372;Ireland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36617.83;41385;41385;74146;71367;71009;71009
-105;'376;Israel;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600747;1842171;1702729;1717706;1855708;1849798;1775751
-105;'376;Israel;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170100;170167;176945;177286;176395;179472;180354
-105;'376;Israel;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;29383;32332;32783;43018;45759;39578;40527;54132;59850;62120;66785;73758;98231;135435;151170;142599;137326;159806;211824;191207;212574;241944;220932;213062;181035;246333;304970;280244;350735;412594;464540;540223;521705;443938;523650;678829;718944;519053;669410;733931;656679;619731;647721;743539;831413;881616;1087839;1172648;871029;1127683;1174419;1044775;973058;1065953;959574;956131;956364;1193217;1048986;1048986;1048986;1048986;1048986
-105;'376;Israel;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;4644;5994;6842;7693;8796;7357;9004;7996;7960;8623;7954;7345;10653;8989;6437;5889;8031;10347;17932;25829;16667;12472;12215;14141;11964;16069;16315;19870;21816;25816;30602;27037;21290;25774;19393;21162;24058;33045;29749;47878;61160;59907;73854;68744;45289;47581;49142;96985;75023;68367;92112;82545;80965;77806;88141;91907;98787;96352;102882;102882;102882;102882;102882
-105;'376;Israel;1861;Roundwood;5516;Production;m3;34000;41000;47000;43000;45000;45000;47000;36000;70000;86000;86000;89000;75000;68000;108000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;118000;116000;96600;113000;113000;113000;113000;113000;113000;105000;124000;113000;113000;81000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000
-105;'376;Israel;1861;Roundwood;5616;Import quantity;m3;105900;116800;122900;142100;125300;101000;111200;129600;149200;143600;168600;161300;150200;199000;140800;155100;139200;178000;219700;195000;157300;163600;152000;157200;142800;302170;284054;275240;244699;310696;297493;295371;200659;138682;89080;190466;131500;195500;216329;42697;21784;10737;7742;6603;12606;11407;11119;7691;6595;5375;8624;8261;8260;9001;7801;7801;16771;29459;35543;35543;35543;35543;35543
-105;'376;Israel;1861;Roundwood;5622;Import value;1000 USD;5860;7376;7301;8333;7882;6350;6682;8026;9294;9239;11335;13143;19059;24671;15996;15989;16209;24684;35356;34773;27232;27127;22919;22089;21071;31406;29798;34977;29833;41869;40946;40281;41436;30198;20432;31296;24571;40798;18654;12144;5267;1995;930;692;1460;1296;1161;1337;1327;867;1117;689;689;971;968;968;2287;3023;3519;3519;3519;3519;3519
-105;'376;Israel;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;485;56;353;405;760;114;5;0;0;1026;2303;592;594;810;810;94;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;48;81;152;14;1;0;0;103;204;51;53;71;71;12;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1862;Roundwood, coniferous;5516;Production;m3;8000;10000;10000;7000;9000;12000;12000;11000;18000;25000;30000;33000;24000;29000;60000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;62600;81000;81000;81000;81000;81000;81000;85000;90000;81000;81000;65000;24999;24999;24999;24999;24999;24999;24999;24999;24999;24999;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500
-105;'376;Israel;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8242;16892;17838;17838;17838;17838;17838
-105;'376;Israel;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;929;1531;1543;1543;1543;1543;1543
-105;'376;Israel;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1863;Roundwood, non-coniferous;5516;Production;m3;26000;31000;37000;36000;36000;33000;35000;25000;52000;61000;56000;56000;51000;39000;48000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;53000;34000;32000;32000;32000;32000;32000;32000;20000;34000;32000;32000;16000;2001;2001;2001;2001;2001;2001;2001;2001;2001;2001;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500
-105;'376;Israel;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8529;12567;17705;17705;17705;17705;17705
-105;'376;Israel;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1358;1492;1976;1976;1976;1976;1976
-105;'376;Israel;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1864;Wood fuel;5516;Production;m3;9000;10000;10000;11000;9000;11000;12000;8000;12000;16000;15000;15000;13000;11000;12000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;6600;13000;13000;13000;13000;13000;13000;10000;14000;13000;13000;8012;2043;2043;2043;2043;2043;2043;2043;2043;2043;2043;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-105;'376;Israel;1864;Wood fuel;5616;Import quantity;m3;;1000;200;100;200;1000;1600;200;300;900;500;500;100;;;;;;;;;;;;;;;;;;;5696;3136;366;366;366;500;500;3622;0;1457;0;0;99;66;58;107;30;0;87;23;451;450;664;1161;1161;10131;14926;13931;13931;13931;13931;13931
-105;'376;Israel;1864;Wood fuel;5622;Import value;1000 USD;;17;1;3;5;19;27;9;15;48;24;32;3;;;;;;;;;;;;;;;;;;;231;108;18;18;18;19;18;163;0;177;0;0;12;8;7;13;4;0;25;8;89;89;81;240;240;1559;1304;1317;1317;1317;1317;1317
-105;'376;Israel;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;0;0;0;0;0;0
-105;'376;Israel;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;0;0;0;0;0;0
-105;'376;Israel;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;1000;1000;1000;2000;3000;3000;2000;1000;3000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;2600;5000;5000;5000;5000;5000;5000;5000;6000;5000;5000;4012;1543;1543;1543;1543;1543;1543;1543;1543;1543;1543;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500
-105;'376;Israel;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1757;3820;1292;1292;1292;1292;1292
-105;'376;Israel;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;351;135;135;135;135;135
-105;'376;Israel;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-105;'376;Israel;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-105;'376;Israel;1628;Wood fuel, non-coniferous;5516;Production;m3;9000;10000;10000;11000;9000;10000;11000;7000;10000;13000;12000;13000;12000;8000;11000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;4000;8000;8000;8000;8000;8000;8000;5000;8000;8000;8000;4000;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500
-105;'376;Israel;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8374;11106;12639;12639;12639;12639;12639
-105;'376;Israel;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301;953;1182;1182;1182;1182;1182
-105;'376;Israel;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-105;'376;Israel;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-105;'376;Israel;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;1000;200;100;200;1000;1600;200;300;900;500;500;100;;;;;;;;;;;;;;;;;;;5696;3136;366;366;366;500;500;3622;0;1457;0;0;99;66;58;107;30;0;87;23;451;450;664;1161;1161;;;;;;;
-105;'376;Israel;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;17;1;3;5;19;27;9;15;48;24;32;3;;;;;;;;;;;;;;;;;;;231;108;18;18;18;19;18;163;0;177;0;0;12;8;7;13;4;0;25;8;89;89;81;240;240;;;;;;;
-105;'376;Israel;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1865;Industrial roundwood;5516;Production;m3;25000;31000;37000;32000;36000;34000;35000;28000;58000;70000;71000;74000;62000;57000;96000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;105000;90000;100000;100000;100000;100000;100000;100000;95000;110000;100000;100000;72988;24957;24957;24957;24957;24957;24957;24957;24957;24957;24957;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000
-105;'376;Israel;1865;Industrial roundwood;5616;Import quantity;m3;105900;115800;122700;142000;125100;100000;109600;129400;148900;142700;168100;160800;150100;199000;140800;155100;139200;178000;219700;195000;157300;163600;152000;157200;142800;302170;284054;275240;244699;310696;297493;289675;197523;138316;88714;190100;131000;195000;212707;42697;20327;10737;7742;6504;12540;11349;11012;7661;6595;5288;8601;7810;7810;8337;6640;6640;6640;14533;21612;21612;21612;21612;21612
-105;'376;Israel;1865;Industrial roundwood;5622;Import value;1000 USD;5860;7359;7300;8330;7877;6331;6655;8017;9279;9191;11311;13111;19056;24671;15996;15989;16209;24684;35356;34773;27232;27127;22919;22089;21071;31406;29798;34977;29833;41869;40946;40050;41328;30180;20414;31278;24552;40780;18491;12144;5090;1995;930;680;1452;1289;1148;1333;1327;842;1109;600;600;890;728;728;728;1719;2202;2202;2202;2202;2202
-105;'376;Israel;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;485;56;353;405;760;114;5;0;0;1026;2303;592;594;810;810;94;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;48;81;152;14;1;0;0;103;204;51;53;71;71;12;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1866;Industrial roundwood, coniferous;5516;Production;m3;8000;10000;10000;7000;9000;11000;11000;10000;16000;22000;27000;31000;23000;26000;59000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;60000;76000;76000;76000;76000;76000;76000;80000;84000;76000;76000;60988;23456;23456;23456;23456;23456;23456;23456;23456;23456;23456;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000
-105;'376;Israel;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;8738;5469;7676;6402;6800;40000;20000;6000;29839;13098;8869;5851;6993;6427;11623;10656;10920;5155;4419;3833;7514;7026;7030;7932;6485;6485;6485;13072;16546;16546;16546;16546;16546
-105;'376;Israel;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;1905;1026;1201;863;1097;5630;3047;863;1850;1341;908;599;716;658;1190;1091;1118;642;563;436;791;525;525;791;671;671;671;1180;1408;1408;1408;1408;1408
-105;'376;Israel;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;56;203;0;0;79;0;0;0;971;2303;592;592;592;590;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;18;0;0;7;0;0;0;86;204;51;51;51;51;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;8738;5469;7676;6402;6800;40000;20000;6000;29839;13098;8869;5851;6993;6427;11623;10656;10920;5155;4419;3833;7514;7026;7030;7932;6485;6485;6485;13072;16546;16546;16546;16546;16546
-105;'376;Israel;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;1905;1026;1201;863;1097;5630;3047;863;1850;1341;908;599;716;658;1190;1091;1118;642;563;436;791;525;525;791;671;671;671;1180;1408;1408;1408;1408;1408
-105;'376;Israel;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;56;203;0;0;79;0;0;0;971;2303;592;592;592;590;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;18;0;0;7;0;0;0;86;204;51;51;51;51;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1867;Industrial roundwood, non-coniferous;5516;Production;m3;17000;21000;27000;25000;27000;23000;24000;18000;42000;48000;44000;43000;39000;31000;37000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;43000;30000;24000;24000;24000;24000;24000;24000;15000;26000;24000;24000;12000;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-105;'376;Israel;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309120;288755;284206;189847;131914;81914;150100;111000;189000;182868;29599;11458;4886;749;77;917;693;92;2506;2176;1455;1087;784;780;405;155;155;155;1461;5066;5066;5066;5066;5066
-105;'376;Israel;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41491;39041;39024;40127;29317;19317;25648;21505;39917;16641;10803;4182;1396;214;22;262;198;30;691;764;406;318;75;75;99;57;57;57;539;794;794;794;794;794
-105;'376;Israel;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;485;0;150;405;760;35;5;0;0;55;0;0;2;218;220;94;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;81;152;7;1;0;0;17;0;0;2;20;20;12;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237277;228355;267980;186512;130000;80000;30100;33000;187000;49937;4075;758;2;2;0;446;0;6;0;0;16;16;16;20;20;20;20;20;20;20;20;20;20;20
-105;'376;Israel;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31855;30851;36876;39594;29000;19000;5731;7616;39600;11935;6044;1125;1;1;0;223;0;3;0;0;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-105;'376;Israel;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71843;60400;16226;3335;1914;1914;120000;78000;2000;132931;25524;10700;4884;747;77;471;693;86;2506;2176;1439;1071;768;760;385;135;135;135;1441;5046;5046;5046;5046;5046
-105;'376;Israel;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9636;8190;2148;533;317;317;19917;13889;317;4706;4759;3057;1395;213;22;39;198;27;691;764;396;308;65;65;89;47;47;47;529;784;784;784;784;784
-105;'376;Israel;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;485;0;150;405;760;35;5;0;0;55;0;0;2;218;220;94;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;81;152;7;1;0;0;17;0;0;2;20;20;12;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1868;Sawlogs and veneer logs;5516;Production;m3;;;7000;7000;7000;6000;6000;7000;10000;14000;14000;14000;11000;9000;20000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;24000;25000;36000;36000;36000;36000;36000;36000;37000;40000;36000;36000;28284;10619;10619;10619;10619;10619;10619;10619;10619;10619;10619;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400
-105;'376;Israel;1868;Sawlogs and veneer logs;5616;Import quantity;m3;101200;111600;112800;113800;117100;93900;104200;122200;141400;135500;160600;87700;130100;179000;120800;135100;119200;167000;208700;184000;146300;152600;149000;155600;131800;293670;275554;266740;244399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;5532;6876;6762;7073;7294;5915;6206;7459;8801;8704;10834;6332;16892;22507;13832;13825;14045;23076;33748;33165;25624;25519;22208;21692;18321;29295;27687;32866;29757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;3000;3000;3000;2000;2000;3000;4000;6000;7000;9000;7000;6000;16000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;22000;34000;34000;34000;34000;34000;34000;36000;38000;34000;34000;27284;10494;10494;10494;10494;10494;10494;10494;10494;10494;10494;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-105;'376;Israel;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;1400;200;200;100;400;200;1000;2100;1500;500;1600;1600;6700;11000;26700;49500;34600;32400;21000;19000;15300;13300;7000;8600;29700;288857;271195;2404;17339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;43;9;9;4;20;25;54;134;105;42;65;65;328;556;1604;3468;2490;3601;2409;2226;1763;1504;666;812;2795;28557;26851;238;1686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;4000;4000;4000;4000;4000;4000;6000;8000;7000;5000;4000;3000;4000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;5000;3000;2000;2000;2000;2000;2000;2000;1000;2000;2000;2000;1000;125;125;125;125;125;125;125;125;125;125;400;400;400;400;400;400;400;400;400;400;400;400;400
-105;'376;Israel;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;99800;111400;112600;113700;116700;93700;103200;120100;139900;135000;159000;86100;123400;168000;94100;85600;84600;134600;187700;165000;131000;139300;142000;147000;102100;4813;4359;264336;227060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5489;6867;6753;7069;7274;5890;6152;7325;8696;8662;10769;6267;16564;21951;12228;10357;11555;19475;31339;30939;23861;24015;21542;20880;15526;738;836;32628;28071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;22352;7169;7169;7169;7169;7169;7169;7169;7169;7169;7169;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300
-105;'376;Israel;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;21000;16852;6481;6481;6481;6481;6481;6481;6481;6481;6481;6481;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500
-105;'376;Israel;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;5500;688;688;688;688;688;688;688;688;688;688;800;800;800;800;800;800;800;800;800;800;800;800;800
-105;'376;Israel;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1870;Pulpwood and particles (1961-1997);5516;Production;m3;5000;12000;14000;13000;16000;17000;17000;11000;32000;32000;33000;35000;33000;31000;41000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;49000;33000;32000;32000;32000;32000;32000;32000;29000;35000;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;2000;3000;2000;2000;3000;4000;4000;3000;6000;6000;8000;9000;6000;9000;15000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;17000;21000;21000;21000;21000;21000;21000;22000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;3000;9000;12000;11000;13000;13000;13000;8000;26000;26000;25000;26000;27000;22000;26000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;16000;11000;11000;11000;11000;11000;11000;7000;12000;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1871;Other industrial roundwood;5516;Production;m3;20000;19000;16000;12000;13000;11000;12000;10000;16000;24000;24000;25000;18000;17000;35000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;29000;35000;32000;32000;22352;7169;7169;7169;7169;7169;7169;7169;7169;7169;7169;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300
-105;'376;Israel;1871;Other industrial roundwood;5616;Import quantity;m3;4700;4200;9900;28200;8000;6100;5400;7200;7500;7200;7500;73100;20000;20000;20000;20000;20000;11000;11000;11000;11000;11000;3000;1600;11000;8500;8500;8500;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1871;Other industrial roundwood;5622;Import value;1000 USD;328;483;538;1257;583;416;449;558;478;487;477;6779;2164;2164;2164;2164;2164;1608;1608;1608;1608;1608;711;397;2750;2111;2111;2111;76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;6000;7000;5000;2000;3000;5000;5000;4000;6000;10000;12000;13000;10000;11000;28000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;22000;23000;21000;21000;16852;6481;6481;6481;6481;6481;6481;6481;6481;6481;6481;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500
-105;'376;Israel;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;14000;12000;11000;10000;10000;6000;7000;6000;10000;14000;12000;12000;8000;6000;7000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;7000;12000;11000;11000;5500;688;688;688;688;688;688;688;688;688;688;800;800;800;800;800;800;800;800;800;800;800;800;800
-105;'376;Israel;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;4700;4200;9900;28200;8000;6100;5400;7200;7500;7200;7500;73100;20000;20000;20000;20000;20000;11000;11000;11000;11000;11000;3000;1600;11000;8500;8500;8500;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;328;483;538;1257;583;416;449;558;478;487;477;6779;2164;2164;2164;2164;2164;1608;1608;1608;1608;1608;711;397;2750;2111;2111;2111;76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1630;Wood charcoal;5610;Import quantity;t;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609;1676;193;4300;4000;5200;5000;4554;3973;5612;3576;6351;8755;10268;10948;16607;20380;14350;15602;16719;18067;18070;23266;22057;22057;22057;31120;32139;32139;32139;32139;32139
-105;'376;Israel;1630;Wood charcoal;5622;Import value;1000 USD;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;534;52;838;1546;1845;1724;1380;2010;2839;1809;3213;4429;5194;5538;6529;8057;7470;7257;7567;8722;8722;10706;9626;9626;9626;16662;17267;17267;17267;17267;17267
-105;'376;Israel;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;0;0;0;0;12;49;31;67;51;50;103;24;24;24;7;37;37;37;37;37
-105;'376;Israel;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;0;0;0;0;33;25;11;26;26;26;51;13;13;13;4;20;20;20;20;20
-105;'376;Israel;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-105;'376;Israel;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;4988;899;1284;1145;1083;799;1165;1542;2430;5827;2458;3964;5000;4000;4000;4548;3027;3027;3027;14070;22052;22052;22052;22052;22052
-105;'376;Israel;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119;163;306;387;342;335;319;379;495;826;940;976;1102;536;500;500;944;1090;1090;1090;774;1097;1097;1097;1097;1097
-105;'376;Israel;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;9400;3665;1063;100;0;0;0;0;0;120;8;8;8;8;10;527;0;0;0;1692;0;0;0;0;0
-105;'376;Israel;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;282;479;139;5;0;0;0;0;0;6;1;1;1;1;1;52;0;0;0;101;0;0;0;0;0
-105;'376;Israel;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937;861;2189;2189;1400;2000;1600;3394;570;1020;921;825;492;483;377;424;572;1162;1549;2500;2000;2000;1792;376;376;376;9040;12277;12277;12277;12277;12277
-105;'376;Israel;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;119;119;90;136;119;112;143;256;231;207;167;164;128;194;206;424;519;268;250;250;689;779;779;779;600;770;770;770;770;770
-105;'376;Israel;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;100;0;0;0;0;0;120;0;0;0;0;0;0;0;0;0;1672;0;0;0;0;0
-105;'376;Israel;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;100;0;0;0;0;0
-105;'376;Israel;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-105;'376;Israel;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193;2189;1469;1469;2600;1300;1000;1594;329;264;224;258;307;682;1165;2006;5255;1296;2415;2500;2000;2000;2756;2651;2651;2651;5030;9775;9775;9775;9775;9775
-105;'376;Israel;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;72;52;52;108;96;16000;51;163;131;111;128;152;215;367;632;734;552;583;268;250;250;255;311;311;311;174;327;327;327;327;327
-105;'376;Israel;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;821;2424;800;800;0;2000;9400;3665;1063;0;0;0;0;0;0;0;8;8;8;8;10;527;0;0;0;20;0;0;0;0;0
-105;'376;Israel;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;80;36;36;0;80;282;479;139;0;0;0;0;0;0;0;1;1;1;1;1;52;0;0;0;1;0;0;0;0;0
-105;'376;Israel;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;1895;3158;4658;2458;4858;8532;8532;8532;8532;8532
-105;'376;Israel;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;99;275;639;936;504;868;1497;1497;1497;1497;1497
-105;'376;Israel;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352;0;0;0;39;50;50;50;50;50
-105;'376;Israel;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;0;7;9;9;9;9;9
-105;'376;Israel;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;58;58;58;58;3026;6168;6168;6168;6168;6168
-105;'376;Israel;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;99;20;15;15;15;553;1128;1128;1128;1128;1128
-105;'376;Israel;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;22;6;6;6;6;6
-105;'376;Israel;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;1;1;1;1;1
-105;'376;Israel;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1837;3100;4600;2400;1832;2364;2364;2364;2364;2364
-105;'376;Israel;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;624;921;489;315;369;369;369;369;369
-105;'376;Israel;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352;0;0;0;17;44;44;44;44;44
-105;'376;Israel;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;0;3;8;8;8;8;8
-105;'376;Israel;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1872;Sawnwood;5616;Import quantity;m3;295600;352200;286100;259200;299700;206800;202700;275400;328100;341300;262100;302100;294000;386000;418700;437800;414000;435100;279800;204600;283900;282800;298600;257400;250800;204457;272254;254257;289376;417781;417781;515820;548690;392816;440300;527300;536200;392000;485370;386463;338847;346667;395757;409166;407123;420617;511448;448455;352319;495914;384394;452051;458050;512775;450275;450275;450275;592260;502263;502263;502263;502263;502263
-105;'376;Israel;1872;Sawnwood;5622;Import value;1000 USD;17812;19249;15665;18321;19205;14845;13090;19089;21550;21469;18672;21188;31793;40760;32074;33252;31265;41344;47291;41283;56305;54849;56030;49672;42662;45988;61169;60838;68419;98170;98170;96069;101625;74727;81305;128811;137030;74800;128334;126406;107466;108967;123616;129736;137726;153218;224313;208344;170890;222590;229074;213559;140000;172517;160052;160052;160052;248578;203120;203120;203120;203120;203120
-105;'376;Israel;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;471;509;509;1200;2200;3200;61;101;52;769;323;182;332;70;105;341;758;233;309;339;340;338;180;180;180;23;54;54;54;54;54
-105;'376;Israel;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;220;358;358;817;1105;1197;23;54;29;283;150;101;184;39;58;183;449;109;204;107;107;110;174;174;174;11;45;45;45;45;45
-105;'376;Israel;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1632;Sawnwood, coniferous;5616;Import quantity;m3;286000;324750;263950;232900;274600;187150;186700;249550;285400;302250;232700;245550;250150;338500;387350;412750;394800;406700;259200;188900;257800;269150;285000;248800;238400;187847;251396;205540;241475;352207;352207;477527;531572;369380;426100;457600;448000;369000;382915;249849;245426;258758;301521;296608;300315;256789;335406;284498;211743;281980;284394;348051;348050;397775;337275;337275;337275;438637;377777;377777;377777;377777;377777
-105;'376;Israel;1632;Sawnwood, coniferous;5622;Import value;1000 USD;16675;17885;14168;16532;17571;13313;11892;17232;18887;19141;16260;17323;25000;33766;26765;28559;27386;35329;42932;38050;51006;50223;51541;46804;38821;40465;54180;44313;52037;75911;75911;82976;95423;63752;73676;94294;95449;63800;80795;70445;69198;72957;85014;83629;84674;72402;94568;87506;64243;74386;79604;86000;86000;118517;109052;109052;109052;138196;116660;116660;116660;116660;116660
-105;'376;Israel;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336;111;81;81;300;1000;900;0;7;0;572;115;0;0;0;0;23;0;85;4;105;110;248;24;24;24;0;0;0;0;0;0
-105;'376;Israel;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;61;38;38;122;208;199;0;2;0;174;35;0;0;0;0;7;0;20;1;26;26;62;6;6;6;0;0;0;0;0;0
-105;'376;Israel;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;9600;27450;22150;26300;25100;19650;16000;25850;42700;39050;29400;56550;43850;47500;31350;25050;19200;28400;20600;15700;26100;13650;13600;8600;12400;16610;20858;48717;47901;65574;65574;38293;17118;23436;14200;69700;88200;23000;102455;136614;93421;87909;94236;112558;106808;163828;176042;163957;140576;213934;100000;104000;110000;115000;113000;113000;113000;153623;124486;124486;124486;124486;124486
-105;'376;Israel;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1137;1364;1497;1789;1634;1532;1198;1857;2663;2328;2412;3865;6793;6994;5309;4693;3879;6015;4359;3233;5299;4626;4489;2868;3841;5523;6989;16525;16382;22259;22259;13093;6202;10975;7629;34517;41581;11000;47539;55961;38268;36010;38602;46107;53052;80816;129745;120838;106647;148204;149470;127559;54000;54000;51000;51000;51000;110382;86460;86460;86460;86460;86460
-105;'376;Israel;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;360;428;428;900;1200;2300;61;94;52;197;208;182;332;70;105;318;758;148;305;234;230;90;156;156;156;23;54;54;54;54;54
-105;'376;Israel;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;159;320;320;695;897;998;23;52;29;109;115;101;184;39;58;176;449;89;203;81;81;48;168;168;168;11;45;45;45;45;45
-105;'376;Israel;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1634;Veneer sheets;5616;Import quantity;m3;100;200;200;7200;35700;26800;18000;25000;26000;13000;12000;50000;80000;110000;172000;119800;84400;95700;92000;45600;49800;55200;37000;15200;15400;6976;8747;11463;13126;8443;8443;12289;13773;6360;15600;22500;24000;6000;24835;11021;7683;6407;6894;3879;6754;6303;6677;5575;3128;4724;10963;7653;7650;2756;2892;2892;2892;4683;4195;4195;4195;4195;4195
-105;'376;Israel;1634;Veneer sheets;5622;Import value;1000 USD;29;63;63;510;2507;1588;1051;2109;2255;1283;958;4196;7440;12044;25806;20369;16040;19132;20324;10117;13953;18203;12200;5303;5368;5452;6873;9061;10275;6649;6649;9675;11673;9857;8979;22640;26442;9860;34793;26755;19173;16633;18383;10393;14484;13572;15815;14107;10226;11614;10800;9102;9102;8757;9191;9191;9191;9277;8313;8313;8313;8313;8313
-105;'376;Israel;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;130;75;400;200;100;0;99;338;813;1438;2725;0;0;0;0;216;128;11;33;1;0;4;73;73;73;2;2;2;2;2;2
-105;'376;Israel;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;216;44;418;214;78;44;135;686;2039;3604;6832;0;0;0;0;542;363;32;114;2;2;13;242;242;242;6;6;6;6;6;6
-105;'376;Israel;1873;Wood-based panels;5516;Production;m3;60700;72000;79400;93000;113300;118000;131900;124300;132100;146200;154000;165000;187100;177400;127000;138000;138000;138000;138000;138000;138000;162000;157000;145000;142000;148000;148000;148000;170000;177000;177000;177000;177000;177000;177000;202000;244000;244000;248000;220000;181000;181000;181000;181000;181000;181000;181000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000
-105;'376;Israel;1873;Wood-based panels;5616;Import quantity;m3;;;;400;400;100;100;100;200;200;300;2300;4900;34000;5400;2200;3100;3800;3000;1500;900;7700;11100;7200;4800;12759;24004;15433;14558;21669;21669;143873;137896;173741;190700;233000;254300;149600;215219;270578;241358;268206;294027;342707;409463;433178;420951;478107;327890;494601;470817;536155;536160;483786;446871;446871;446871;481409;471263;471263;471263;471263;471263
-105;'376;Israel;1873;Wood-based panels;5622;Import value;1000 USD;;;;66;67;18;18;29;70;129;63;331;1260;8542;1362;560;792;993;1138;728;599;2452;3592;2163;1646;2861;5420;3706;3791;5634;5634;47391;44206;55027;63238;83165;83897;47421;69793;89614;79945;91785;99219;114790;131128;136363;188384;205649;164765;202163;220539;212519;212519;244652;227645;227645;227645;268185;242035;242035;242035;242035;242035
-105;'376;Israel;1873;Wood-based panels;5916;Export quantity;m3;20700;26300;38900;45500;50400;46100;55300;48600;47600;52500;59800;59600;58000;35800;20800;18500;25400;23400;23400;40700;24700;20400;21700;23900;23700;33501;31234;35007;40400;59065;59065;41949;41763;51072;58200;19100;16500;11400;3052;8369;5620;137;744;1119;610;1077;630;2497;4541;5083;1602;2707;2720;6629;2490;2490;2490;2736;1459;1459;1459;1459;1459
-105;'376;Israel;1873;Wood-based panels;5922;Export value;1000 USD;4497;5604;6020;7111;8056;7240;8319;7464;7577;7646;7395;6846;10177;7139;4389;4189;5972;8670;11072;20321;12556;9993;10292;10471;10250;12196;11374;12724;14616;21374;21374;16493;15923;11254;12917;8583;7938;11324;848;7419;5027;95;662;866;309;780;192;628;1223;1408;464;1186;1186;2087;961;961;961;1516;916;916;916;916;916
-105;'376;Israel;1640;Plywood and LVL;5516;Production;m3;46600;54400;59800;70400;88300;72000;75900;81200;94300;95600;96500;107500;112500;101800;64000;71000;71000;71000;71000;71000;71000;81000;83000;78000;74000;80000;80000;80000;105000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000
-105;'376;Israel;1640;Plywood and LVL;5616;Import quantity;m3;;;;400;400;100;100;100;200;200;300;2300;4900;34000;5400;2200;3100;3800;3000;1500;900;2100;2800;1300;1200;1698;3350;3129;4174;6390;6390;12888;8077;18164;28100;69000;54000;18000;51642;92312;88561;108669;111072;116036;118686;117296;150760;171854;120945;195433;139208;230621;230620;187475;168053;168053;168053;213797;196573;196573;196573;196573;196573
-105;'376;Israel;1640;Plywood and LVL;5622;Import value;1000 USD;;;;66;67;18;18;29;70;129;63;331;1260;8542;1362;560;792;993;1138;728;599;1328;1780;868;785;693;1398;1262;1710;2602;2602;6000;3937;12914;16209;30170;36720;12900;26699;38883;36984;46090;47302;50170;61428;60250;85851;95244;80244;98471;106402;109126;109126;129467;116721;116721;116721;152336;134663;134663;134663;134663;134663
-105;'376;Israel;1640;Plywood and LVL;5916;Export quantity;m3;20700;25500;38300;43700;48100;44400;53000;42800;40400;43900;51300;54000;52900;33000;19300;17700;22400;19800;21000;37600;21800;18100;19400;21600;21400;33466;31085;34712;39888;58374;58374;38569;40000;50000;57000;15700;14700;10000;288;7796;5326;107;640;763;186;53;26;58;402;168;133;316;320;236;289;289;289;224;260;260;260;260;260
-105;'376;Israel;1640;Plywood and LVL;5922;Export value;1000 USD;4497;5554;5980;7008;7927;7132;8079;6851;6969;6815;6664;6365;9591;6699;4147;4061;5500;7989;10509;19573;11649;9163;9462;9641;9420;12182;11315;12628;14504;21226;21226;15417;15231;10819;12640;7828;7527;10800;168;7247;4936;83;592;684;144;72;24;54;215;171;100;256;256;202;272;272;272;224;279;279;279;279;279
-105;'376;Israel;1646;Particle board and OSB (1961-1994);5516;Production;m3;7000;10000;12000;15000;17000;20000;31000;25100;22600;35000;38700;38700;55000;60000;50000;57000;57000;57000;57000;57000;57000;71000;64000;57000;58000;58000;58000;58000;55000;58000;58000;58000;58000;58000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;5600;8300;5900;3600;11061;20654;12304;10384;15279;15279;32322;39174;67188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1124;1812;1295;861;2168;4022;2444;2081;3032;3032;7793;8818;14937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;800;600;1800;2300;1700;2300;5800;7200;8600;8500;5600;5100;2800;1500;800;3000;3600;2400;3100;2900;2300;2300;2300;2300;35;149;295;512;691;691;2801;498;721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;50;40;103;129;108;240;613;608;831;731;481;586;440;242;128;472;681;563;748;907;830;830;830;830;14;59;96;112;148;148;677;149;273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93500;73000;115500;67000;80085;100504;82881;63527;77552;107750;96285;121515;84249;94677;67143;81641;96837;95250;95250;80826;68864;68864;68864;83014;100599;100599;100599;100599;100599
-105;'376;Israel;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22340;19835;21948;14900;19781;23643;19555;14611;18206;25140;22292;28510;36241;35455;27300;27242;31639;27177;27177;31515;27867;27867;27867;27032;30061;30061;30061;30061;30061
-105;'376;Israel;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;2900;1300;900;2671;99;9;0;11;134;103;50;114;148;227;412;476;1564;1570;524;242;242;242;31;465;465;465;465;465
-105;'376;Israel;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;668;313;273;649;63;6;1;7;120;66;32;78;103;118;124;146;512;512;245;128;128;128;25;313;313;313;313;313
-105;'376;Israel;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089;1396;376;5357;1583;4282;6148;3673;7563;5774;5465;9114;8034;8183;8180;9685;8420;8420;8420;23692;17630;17630;17630;17630;17630
-105;'376;Israel;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;434;117;1665;492;1331;1911;1147;2726;2081;1933;2599;2490;2379;2379;3272;2592;2592;2592;6966;4690;4690;4690;4690;4690
-105;'376;Israel;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;103;103;0;0;0;103;0;63;103;100;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;31;0;0;0;0;0;0;19;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1874;Fibreboard;5516;Production;m3;7100;7600;7600;7600;8000;26000;25000;18000;15200;15600;18800;18800;19600;15600;13000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;35000;77000;77000;81000;53000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-105;'376;Israel;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98663;90645;88389;69100;91000;84800;64600;81403;76366;69540;90653;103820;114639;188344;190694;178379;205802;134337;208413;226738;202101;202110;205800;201534;201534;201534;160906;156461;156461;156461;156461;156461
-105;'376;Israel;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33598;31451;27176;24689;33160;25229;19621;22797;26654;23289;29419;33219;38149;45497;46456;63566;72869;55288;73851;80008;73837;73837;80398;80465;80465;80465;81851;72621;72621;72621;72621;72621
-105;'376;Israel;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;1265;351;0;500;500;500;93;474;285;27;93;119;218;974;490;2291;3809;4503;930;724;730;5869;1959;1959;1959;2481;734;734;734;734;734
-105;'376;Israel;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;543;162;0;87;98;251;31;109;85;10;63;31;99;676;90;471;890;1113;199;418;418;1640;561;561;561;1267;324;324;324;324;324
-105;'376;Israel;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18700;19700;16000;28000;16118;11205;8099;10229;10488;14296;17683;19322;15083;21623;20667;34622;32878;23397;23400;19111;14964;14964;14964;19500;15920;15920;15920;15920;15920
-105;'376;Israel;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6812;8802;6548;11238;7785;8474;6125;7736;7932;10812;11365;12058;11426;16380;16409;24866;23197;15882;15882;15808;12591;12591;12591;13339;10386;10386;10386;10386;10386
-105;'376;Israel;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;0;28;1;71;0;61;744;0;92;0;0;0;0;0;0;0;0;0;331;15;15;15;15;15
-105;'376;Israel;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;18;0;23;1;58;0;50;606;0;59;0;0;0;0;0;0;0;0;0;230;9;9;9;9;9
-105;'376;Israel;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;67000;67000;71000;53000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000
-105;'376;Israel;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39200;58400;41600;13200;50636;62426;58806;78993;91353;97828;164854;163012;148354;156907;104679;155324;170786;168799;168800;179708;179931;179931;179931;129098;127160;127160;127160;127160;127160
-105;'376;Israel;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14954;21373;15185;4864;12507;16399;15448;20751;23998;25699;33077;33034;49330;52174;37221;46389;52352;54993;54993;62784;66076;66076;66076;65797;59514;59514;59514;59514;59514
-105;'376;Israel;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;34;26;0;34;108;145;0;381;1942;3805;232;26;30;5862;1773;1773;1773;2150;713;713;713;713;713
-105;'376;Israel;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;12;9;0;12;38;51;0;104;526;977;63;408;408;1638;517;517;517;1037;314;314;314;314;314
-105;'376;Israel;1650;Other fibreboard;5516;Production;m3;7100;7600;7600;7600;8000;26000;25000;18000;15200;15600;18800;18800;19600;15600;13000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10067;9459;12427;11200;12900;27200;23400;14649;2735;2635;1431;1979;2515;5807;8360;14942;27272;8991;18467;23074;9905;9910;6981;6639;6639;6639;12308;13381;13381;13381;13381;13381
-105;'376;Israel;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3162;2958;3359;2923;2985;3496;3519;2505;1781;1716;932;1289;1638;1055;1364;2810;4315;1658;2596;4459;2962;2962;1806;1798;1798;1798;2715;2721;2721;2721;2721;2721
-105;'376;Israel;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;29;0;500;500;500;57;451;223;0;22;85;49;85;490;1818;1867;698;698;698;700;7;186;186;186;0;6;6;6;6;6
-105;'376;Israel;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;9;0;87;98;98;13;101;50;0;5;19;11;19;90;308;364;136;136;10;10;2;44;44;44;0;1;1;1;1;1
-105;'376;Israel;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88596;81186;75962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30436;28493;23817;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;1237;322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;528;153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;30000;30000;34000;37000;40000;42000;50000;54000;53000;58000;45000;55000;60000;67000;78000;77000;93000;101000;99000;100000;107000;113000;113000;113000;113000;113000;113000;113000;113000;128000;203000;207000;207000;257000;257000;257000;257000;257000;257000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000;320000
-105;'376;Israel;1879;Total fibre furnish;5610;Import quantity;t;;3700;1800;39200;35900;38700;48200;54700;54400;53100;57100;55200;49500;71140;72900;63500;66900;47774;53979;41201;34879;66700;66000;80900;67700;83967;118891;83388;116900;124200;124200;150607;144106;101859;167738;150100;152800;162700;190066;146847;111497;113653;130383;157862;183605;201605;193689;190077;177812;188147;228627;174576;189169;154328;167318;157650;152970;179430;153887;153887;153887;153887;153887
-105;'376;Israel;1879;Total fibre furnish;5622;Import value;1000 USD;;367;150;5087;5004;5171;5987;6757;7229;8567;10157;10316;11577;17050;17401;24846;28431;21323;23039;22482;17711;31438;26749;40084;28650;43529;64996;33439;78988;71094;71094;60895;53026;39779;74382;57781;62801;40107;64066;79458;63081;67855;76522;76532;85850;97722;122565;128542;92207;141090;142682;109521;111398;94001;103236;99496;98842;137810;112361;112361;112361;112361;112361
-105;'376;Israel;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;31958;925;3400;7100;10600;21166;21016;15097;15110;16820;10796;24347;37763;42743;60877;55189;62394;64713;63397;53871;60953;70948;88248;122514;96054;69484;69484;69484;69484;69484
-105;'376;Israel;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;5077;1028;427;674;1182;11026;14088;13335;9103;10623;13200;15799;18867;25309;33039;21350;15162;22519;12931;11351;11691;13531;17297;24177;16225;10159;10159;10159;10159;10159
-105;'376;Israel;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-105;'376;Israel;1878;Pulp for paper;5610;Import quantity;t;;3700;1800;39200;35900;38700;48200;54700;54400;53100;57100;55200;49500;70900;70900;61500;61900;43600;53100;41200;28500;61700;63000;78900;64700;82967;117891;70388;88900;80200;80200;112860;129096;76297;101338;98800;112800;147700;117989;111632;89383;100381;111170;144093;157803;183718;168750;152067;148698;163010;142640;146014;146020;126904;152526;152526;152526;170166;153532;153532;153532;153532;153532
-105;'376;Israel;1878;Pulp for paper;5622;Import value;1000 USD;;367;150;5087;5004;5171;5987;6757;7229;8567;10157;10316;11577;16899;16899;24697;27404;20251;22378;22479;16704;30942;26706;39604;28170;43519;64629;29799;74172;63113;63113;55870;51459;35111;62415;52061;58188;34851;58444;68545;56228;63742;70568;73273;80090;94010;114798;114952;84786;132560;117644;101910;101910;86711;98508;98508;98508;136281;112298;112298;112298;112298;112298
-105;'376;Israel;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;1030;925;0;0;0;13637;12976;12892;8121;9592;6028;9485;10524;12370;8646;9595;1171;6701;1178;1180;509;31;31;31;31;0;0;0;0;0
-105;'376;Israel;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;1028;1028;0;0;0;10514;13078;13058;8225;9715;12601;13932;15458;18939;21301;14743;2813;8420;1480;1480;346;14;14;14;17;0;0;0;0;0
-105;'376;Israel;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1875;Wood pulp;5610;Import quantity;t;;3700;1800;2500;600;300;1600;2400;26100;46200;56800;55000;49300;70800;70800;61400;61800;43500;53000;41100;28400;27300;26400;27200;25100;54211;66918;67599;86300;76600;76600;112909;129454;74920;99886;98400;112500;147400;117897;111703;89635;100220;111191;147676;158798;186294;168587;153272;148833;163461;137371;146031;146030;127061;152526;152526;152526;170117;153535;153535;153535;153535;153535
-105;'376;Israel;1875;Wood pulp;5622;Import value;1000 USD;;367;150;219;66;32;179;313;3550;7593;10086;10217;11478;16853;16853;24651;27358;20205;22332;22433;16658;14246;11143;14067;11428;22530;27423;27763;72321;60487;60487;55847;51701;34462;61754;51832;57812;34475;58355;68506;56311;63381;70076;75388;80519;95730;114247;114954;83497;131933;109946;101526;101526;86903;98530;98530;98530;136161;112311;112311;112311;112311;112311
-105;'376;Israel;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;270;66;66;0;0;0;0;126;0;0;0;0;0;0;0;0;89;0;2;0;0;497;31;31;31;0;0;0;0;0;0
-105;'376;Israel;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;154;45;45;0;0;34;0;63;0;0;0;0;0;0;0;0;45;0;2;0;0;326;14;14;14;0;0;0;0;0;0
-105;'376;Israel;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;512;759;759;759;759;759
-105;'376;Israel;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;229;342;342;342;342;342
-105;'376;Israel;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;0;0;0;0
-105;'376;Israel;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;0;0
-105;'376;Israel;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;3700;1800;2500;600;300;1600;1700;25300;45500;56100;54300;48500;68000;68000;45200;27700;4700;2900;900;100;400;1500;2500;3200;12311;25018;25699;53000;41400;41400;25556;39222;1587;6900;6600;4100;39000;7240;13918;5115;2305;2210;0;0;590;56;0;70;339;1394;399;400;20;163;163;;;;;;;
-105;'376;Israel;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;367;150;219;66;32;179;227;3430;7470;9960;10033;11277;16172;16172;17842;11014;1872;1143;277;51;208;629;1574;2049;4613;9506;9846;44119;32130;32130;9870;13540;554;2774;4719;2979;554;3323;6280;2308;1040;997;0;0;266;42;0;34;162;1345;341;341;16;62;62;;;;;;;
-105;'376;Israel;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;126;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31;31;;;;;;;
-105;'376;Israel;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;63;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;14;;;;;;;
-105;'376;Israel;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;81;227;227;1200;1100;1100;220;1025;0;19;35;4887;2531;1715;1957;875;1398;1197;902;1342;1340;577;9;9;;;;;;;
-105;'376;Israel;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;27;78;78;563;310;78;96;638;0;12;22;2728;1195;810;1183;583;700;856;637;763;763;360;9;9;;;;;;;
-105;'376;Israel;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;84;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;42;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;700;800;700;700;700;800;2800;2800;16200;34100;38800;50100;40200;28300;26900;24900;24700;21900;41900;41900;41900;33300;35200;35200;86717;89728;72972;92700;90400;107000;107000;110397;96616;84193;97851;108508;138919;154601;180955;165445;149845;146064;159861;135069;143778;143780;126300;152345;152345;152345;169512;152731;152731;152731;152731;152731
-105;'376;Israel;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;86;120;123;126;184;201;681;681;6809;16344;18333;21189;22156;16607;14038;10514;12493;9379;17917;17917;17917;28202;28357;28357;45648;37840;33749;58833;46451;54380;33700;54907;61489;53778;62298;68756;69999;78071;92372;111985;112282;81923;128953;107941;99776;99776;86320;98421;98421;98421;135825;111919;111919;111919;111919;111919
-105;'376;Israel;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;2;0;0;497;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;2;0;0;326;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;200;200;400;400;200;200;1500;1500;4700;10000;7100;3500;9100;7900;3700;2600;500;1700;2300;2300;2300;800;600;600;94;692;10;0;5700;10000;10000;0;0;0;0;362;388;1096;1202;3411;11322;42218;8624;2454;2263;2260;2260;2260;2260;2260;0;0;0;0;0;0
-105;'376;Israel;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;26;26;80;81;68;50;348;348;2132;4584;3470;1274;4413;4233;1736;948;237;630;880;880;880;703;371;371;46;280;4;0;2417;4275;2740;0;0;0;0;169;181;541;577;2247;8072;20391;6056;1833;1496;1496;1496;1496;1496;1496;0;0;0;0;0;0
-105;'376;Israel;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;3000;11600;11500;21900;17000;13600;8500;8200;12900;8300;29000;29000;29000;18500;24600;24600;78883;80880;51275;69600;79600;65700;65700;106330;93522;78169;94230;101667;122676;143692;166825;153394;131456;100414;146584;129831;138014;138010;117080;148384;148384;148384;169127;152325;152325;152325;152325;152325
-105;'376;Israel;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;1871;7320;7326;7725;9502;7618;4547;3435;6507;3421;12198;12198;12198;16209;19421;19421;41336;33647;24283;41927;41481;37863;20932;52846;59343;49601;59792;64511;61475;71634;83817;102740;98013;58745;118858;102952;94875;94875;79672;95146;95146;95146;135216;111188;111188;111188;111188;111188
-105;'376;Israel;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;497;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;326;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1701;385;406;406;406;406;406
-105;'376;Israel;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779;609;731;731;731;731;731
-105;'376;Israel;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;700;2600;4300;2900;400;400;700;1200;1000;300;700;700;700;200;1700;1700;59;212;1272;0;300;2500;2500;95;32;72;68;2185;321;130;114;20;314;152;0;150;446;450;450;450;450;;;;;;;
-105;'376;Israel;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;322;1262;2127;1436;207;203;359;574;519;169;400;400;400;100;1227;1227;28;83;580;0;98;872;625;39;16;36;34;1089;160;65;57;87;248;121;0;107;327;327;327;327;327;;;;;;;
-105;'376;Israel;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;
-105;'376;Israel;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;500;600;300;300;500;600;1300;1300;7800;9900;15900;21800;13700;6400;14000;12900;10300;11600;9900;9900;9900;13800;8300;8300;7681;7944;20415;23100;4800;28800;28800;3972;3062;5952;3553;4294;15534;9683;12814;8620;6753;3280;4653;2634;3055;3060;6510;1251;1251;;;;;;;
-105;'376;Israel;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;60;94;43;45;116;151;333;333;2484;3178;5410;10754;8034;4553;7396;5557;5230;5159;4439;4439;4439;11190;7338;7338;4238;3830;8882;16906;2455;11370;9403;2022;2130;4141;2472;2987;8183;5831;7921;6911;5949;2666;4039;3049;3078;3078;4825;1452;1452;;;;;;;
-105;'376;Israel;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;;;;;;;
-105;'376;Israel;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;;;;;;;
-105;'376;Israel;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;423;134;59;200;300;300;40;144;327;45;438;3870;1666;3034;1129;2552;1301;2064;6;512;510;164;9;9;9;93;45;45;45;45;45
-105;'376;Israel;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;294;81;69;99;143;143;29;99;225;31;301;2661;1253;2282;1037;2089;840;1962;23;646;646;207;38;38;38;107;50;50;50;50;50
-105;'376;Israel;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;0;0;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000
-105;'376;Israel;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;36700;35300;38400;46600;52300;28300;6900;300;200;200;100;100;100;100;100;100;100;100;34400;36600;51700;39600;28756;50973;2789;2600;3600;3600;295;65;1511;1511;600;600;600;132;73;75;206;417;287;671;458;1292;1347;1166;1613;5275;495;500;7;9;9;9;142;42;42;42;42;42
-105;'376;Israel;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;4868;4938;5139;5808;6444;3679;974;71;99;99;46;46;46;46;46;46;46;46;16696;15563;25537;16742;20989;37206;2036;1851;2626;2626;230;52;730;730;328;519;519;118;138;142;392;793;546;824;562;1588;2087;2129;2589;7721;1030;1030;15;16;16;16;227;37;37;37;37;37
-105;'376;Israel;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1005;900;0;0;0;13637;12850;12892;8121;9592;6028;9485;10524;12370;8646;9506;1171;6699;1178;1180;12;0;0;0;31;0;0;0;0;0
-105;'376;Israel;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1017;1017;0;0;0;10514;13015;13058;8225;9715;12601;13932;15458;18939;21301;14698;2813;8418;1480;1480;20;0;0;0;17;0;0;0;0;0
-105;'376;Israel;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;240;0;0;2;18;138;634;1207;641;983;1398;903;731;730;19959;841;841;841;1349;911;911;911;911;911
-105;'376;Israel;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;132;0;0;1;10;76;349;971;423;731;923;647;616;616;4404;589;589;589;839;582;582;582;582;582
-105;'376;Israel;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;2;1;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;1;2;2;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1669;Recovered paper;5510;Production;t;;;;;;;;;;30000;30000;34000;37000;40000;42000;50000;54000;53000;58000;45000;55000;60000;67000;78000;77000;93000;101000;99000;100000;107000;113000;113000;113000;113000;113000;113000;113000;113000;113000;188000;192000;192000;242000;242000;242000;242000;242000;242000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000;305000
-105;'376;Israel;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;240;2000;2000;5000;4174;879;1;6379;5000;3000;2000;3000;1000;1000;13000;28000;44000;44000;37747;15010;25562;66400;51300;40000;15000;72077;35215;22114;13272;19213;13769;25802;17887;24939;38010;29114;25137;85987;28562;43149;27424;14792;5124;444;9264;355;355;355;355;355
-105;'376;Israel;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;151;502;149;1027;1072;661;3;1007;496;43;480;480;10;367;3640;4816;7981;7981;5025;1567;4668;11967;5720;4613;5256;5622;10913;6853;4113;5954;3259;5760;3712;7767;13590;7421;8530;25038;7611;9488;7290;4728;988;334;1529;63;63;63;63;63
-105;'376;Israel;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30928;0;3400;7100;10600;7529;8040;2205;6989;7228;4768;14862;27239;30373;52231;45594;61223;58012;62219;52691;60444;70917;88217;122483;96023;69484;69484;69484;69484;69484
-105;'376;Israel;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4049;0;427;674;1182;512;1010;277;878;908;599;1867;3409;6370;11738;6607;12349;14099;11451;9871;11345;13517;17283;24163;16208;10159;10159;10159;10159;10159
-105;'376;Israel;1876;Paper and paperboard;5510;Production;t;38500;39600;41000;47400;49400;53700;63200;67100;68200;73100;94400;104800;105600;108800;97000;106000;117000;114000;107500;109000;107000;107000;157000;148000;131000;151000;160000;170000;179000;194000;200000;215000;213000;229000;275000;275000;275000;250000;283000;302000;305000;305000;305000;305000;305000;305000;305000;396000;396000;403000;403000;403000;403000;403000;403000;403000;403000;403000;403000;403000;403000;403000;403000
-105;'376;Israel;1876;Paper and paperboard;5610;Import quantity;t;32100;35100;43500;48000;49200;48300;57500;91000;91100;100400;113500;103700;113000;116200;102500;84900;82900;113100;180200;110900;133700;166500;178000;173000;152100;188764;214314;215842;207000;223000;288600;372461;378627;398241;374400;327800;370400;453027;472981;596353;567510;498315;485064;649174;624957;664602;677189;688454;573719;673036;616729;580199;580190;634141;547769;547769;547769;549115;548153;548153;548153;548153;548153
-105;'376;Israel;1876;Paper and paperboard;5622;Import value;1000 USD;5651;5277;9604;10701;11094;11606;13699;18122;19452;21433;25600;24584;27102;32368;58531;47583;44589;52330;84676;81824;96774;107875;99442;93751;81638;117097;136714;138223;159429;189178;242047;285383;268765;234046;274236;353293;381983;288081;352198;397007;378296;330314;325201;403977;453863;470781;526238;603160;421597;538115;561434;488767;488767;528519;446500;446500;446500;507094;459145;459145;459145;459145;459145
-105;'376;Israel;1876;Paper and paperboard;5910;Export quantity;t;700;1500;3500;2700;3300;500;2800;2200;1200;3100;1300;900;700;2100;2400;3000;3200;2200;9900;6900;4500;2600;2500;5500;2600;5827;6386;8548;10000;6000;9900;11767;3233;5479;3400;12200;15300;21327;15744;34571;28661;35139;41685;42159;21926;21303;17465;52840;73529;92711;125548;122476;122490;101428;104108;104108;104108;94919;133726;133726;133726;133726;133726
-105;'376;Israel;1876;Paper and paperboard;5922;Export value;1000 USD;147;390;822;582;740;117;685;532;383;977;559;499;476;1850;2048;1700;2059;1677;6860;5508;4111;2479;1923;3670;1714;3873;4941;7146;7200;4442;9228;9796;4750;8927;4602;11085;14263;19184;17435;25145;40543;46734;55435;54563;28996;27895;23583;62451;51408;51591;68730;68219;68219;63738;73220;73220;73220;78482;91727;91727;91727;91727;91727
-105;'376;Israel;2042;Graphic papers;5510;Production;t;23800;23200;23500;26100;27300;32400;38700;39900;41400;41200;45200;48500;50300;52500;54000;52000;53000;50000;43500;45000;43000;43000;69000;70000;54000;63000;67000;64000;61000;62000;69000;69000;61000;62000;95000;95000;95000;62000;95000;92000;90000;90000;90000;90000;90000;90000;90000;145000;145000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000
-105;'376;Israel;2042;Graphic papers;5610;Import quantity;t;500;2400;6900;8400;11300;7600;7500;13800;26600;29700;27900;28500;37800;41000;33100;28200;27200;35000;59300;44100;47300;77900;75800;60700;59600;70464;96014;97542;97000;110000;134600;180938;184847;200205;183000;182500;197000;200000;260869;333076;317230;232583;215782;318269;322139;323944;324562;326527;241663;319773;297750;257676;257670;269097;228078;228078;228078;221116;199141;199141;199141;199141;199141
-105;'376;Israel;2042;Graphic papers;5622;Import value;1000 USD;240;634;1403;1632;1911;1366;1364;2400;4533;5537;6835;7832;10350;15616;16391;13705;13401;15935;29861;31220;34494;44089;46262;31018;30864;49397;69014;70523;73934;89690;113704;132502;125571;113617;140000;202039;189819;113600;177214;236000;236178;177168;168889;211675;242213;244777;257149;298339;197227;263499;263453;215622;215622;214928;184062;184062;184062;190283;171186;171186;171186;171186;171186
-105;'376;Israel;2042;Graphic papers;5910;Export quantity;t;;;1300;300;300;100;2500;900;700;1500;700;200;100;1400;1400;2400;2400;800;1300;2300;1200;100;100;100;300;3527;4086;6248;4000;2000;4500;4822;1386;939;1700;1600;1900;1000;1732;1608;650;412;5302;31525;14618;13869;5254;28654;48923;57079;10565;10227;10230;6150;45453;45453;45453;55077;61279;61279;61279;61279;61279
-105;'376;Israel;2042;Graphic papers;5922;Export value;1000 USD;;;338;93;93;33;615;228;199;476;254;66;30;898;898;1110;1110;552;1135;2102;962;112;112;112;246;2405;3473;5678;3300;1642;4378;4483;1718;1455;2182;2445;2933;1460;1451;1921;406;240;6562;41226;18960;17850;10701;38628;34335;31786;10562;9944;9944;5810;41356;41356;41356;51952;57394;57394;57394;57394;57394
-105;'376;Israel;1671;Newsprint;5510;Production;t;10100;7500;8100;7200;8500;12000;14800;13300;11300;9400;9100;10200;8900;7100;7000;13000;12000;9000;2500;4000;2000;2000;2000;2000;1000;1000;2000;2000;1000;1000;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1671;Newsprint;5610;Import quantity;t;;1300;5500;7100;10300;6500;4900;11900;21700;24600;20500;22200;29900;38000;30700;24700;23400;28200;47700;34100;35000;57000;47700;45000;48700;53000;68000;68000;69000;78000;78000;107738;105421;114045;108000;128400;133000;114000;174208;174874;166791;103100;75788;132941;145402;139896;130720;135402;90958;134001;118643;103417;103420;115242;69619;69619;69619;63651;50409;50409;50409;50409;50409
-105;'376;Israel;1671;Newsprint;5622;Import value;1000 USD;;196;826;1079;1502;942;721;1812;3126;3768;4346;5048;6250;12954;13709;10938;10234;11234;19728;19908;20440;24079;21244;17432;20544;31933;41000;41000;47173;54904;54904;62527;55965;42480;42000;103118;88229;42500;100692;98181;105265;65056;47822;68625;81547;78459;80073;104322;57079;75773;84351;66552;66552;67471;34758;34758;34758;38663;31080;31080;31080;31080;31080
-105;'376;Israel;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;113;584;516;311;265;114;0;2;0;610;1281;412;1318;463;460;263;117;117;117;354;334;334;334;334;334
-105;'376;Israel;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;205;181;109;93;40;0;1;0;380;909;706;761;266;266;162;68;68;68;203;187;187;187;187;187
-105;'376;Israel;1674;Printing and writing papers;5510;Production;t;13700;15700;15400;18900;18800;20400;23900;26600;30100;31800;36100;38300;41400;45400;47000;39000;41000;41000;41000;41000;41000;41000;67000;68000;53000;62000;65000;62000;60000;61000;69000;69000;61000;62000;95000;95000;95000;62000;95000;92000;90000;90000;90000;90000;90000;90000;90000;145000;145000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000
-105;'376;Israel;1674;Printing and writing papers;5610;Import quantity;t;500;1100;1400;1300;1000;1100;2600;1900;4900;5100;7400;6300;7900;3000;2400;3500;3800;6800;11600;10000;12300;20900;28100;15700;10900;17464;28014;29542;28000;32000;56600;73200;79426;86160;75000;54100;64000;86000;86661;158202;150439;129483;139994;185328;176737;184048;193842;191125;150705;185772;179107;154259;154250;153855;158459;158459;158459;157465;148732;148732;148732;148732;148732
-105;'376;Israel;1674;Printing and writing papers;5622;Import value;1000 USD;240;438;577;553;409;424;643;588;1407;1769;2489;2784;4100;2662;2682;2767;3167;4701;10133;11312;14054;20010;25018;13586;10320;17464;28014;29523;26761;34786;58800;69975;69606;71137;98000;98921;101590;71100;76522;137819;130913;112112;121067;143050;160666;166318;177076;194017;140148;187726;179102;149070;149070;147457;149304;149304;149304;151620;140106;140106;140106;140106;140106
-105;'376;Israel;1674;Printing and writing papers;5910;Export quantity;t;;;1300;300;300;100;2500;900;700;1500;700;200;100;1400;1400;2400;2400;800;1300;2300;1200;100;100;100;300;3527;4086;6248;4000;2000;4500;4822;1386;939;1700;1600;1900;1000;1619;1024;134;101;5037;31411;14618;13867;5254;28044;47642;56667;9247;9764;9770;5887;45336;45336;45336;54723;60945;60945;60945;60945;60945
-105;'376;Israel;1674;Printing and writing papers;5922;Export value;1000 USD;;;338;93;93;33;615;228;199;476;254;66;30;898;898;1110;1110;552;1135;2102;962;112;112;112;246;2405;3473;5678;3300;1642;4378;4483;1718;1455;2182;2445;2933;1460;1393;1716;225;131;6469;41186;18960;17849;10701;38248;33426;31080;9801;9678;9678;5648;41288;41288;41288;51749;57207;57207;57207;57207;57207
-105;'376;Israel;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15087;17530;18244;18484;20943;31768;24675;30641;24575;23749;17990;25741;20224;10403;10400;10005;14609;14609;14609;11871;11704;11704;11704;11704;11704
-105;'376;Israel;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13322;12731;13250;13424;15210;19679;19159;23585;20202;21783;16699;23325;18090;10206;10206;8593;10440;10440;10440;8881;8939;8939;8939;8939;8939
-105;'376;Israel;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;115;15;4;259;309;0;0;0;2808;6386;6052;2863;756;760;269;173;173;173;174;231;231;231;231;231
-105;'376;Israel;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;127;17;4;287;342;0;0;0;3112;7539;7288;3662;565;565;376;237;237;237;201;320;320;320;320;320
-105;'376;Israel;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;95000;92000;90000;90000;90000;90000;90000;90000;90000;145000;145000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000;141000
-105;'376;Israel;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;959;43568;34300;34532;36491;43155;47800;44576;46272;35120;30183;36213;45138;39132;39130;39130;39130;39130;39130;69501;69396;69396;69396;69396;69396
-105;'376;Israel;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847;38175;30047;30250;31966;37219;44955;41970;49227;41969;29558;41873;48710;43103;43103;43103;43103;43103;43103;71780;70843;70843;70843;70843;70843
-105;'376;Israel;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;1;94;4751;29625;13048;13735;5108;25077;41050;50414;6212;7816;7820;5347;43650;43650;43650;54516;60694;60694;60694;60694;60694
-105;'376;Israel;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;1;122;6135;38258;16850;17737;10573;34966;25505;23576;5975;7979;7979;5026;39529;39529;39529;51517;56865;56865;56865;56865;56865
-105;'376;Israel;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86000;70615;97104;97895;76467;82560;110405;104262;108831;122995;132256;102532;123818;113745;104724;104720;104720;104720;104720;104720;76093;67632;67632;67632;67632;67632
-105;'376;Israel;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71100;62353;86913;87616;68438;73891;86152;96552;100763;107647;130265;93891;122528;112302;95761;95761;95761;95761;95761;95761;70959;60324;60324;60324;60324;60324
-105;'376;Israel;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1466;903;118;3;27;1477;1570;132;146;159;206;201;172;1192;1190;271;1513;1513;1513;33;20;20;20;20;20
-105;'376;Israel;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1460;1261;1581;207;5;47;2586;2110;112;128;170;382;216;164;1134;1134;246;1522;1522;1522;31;22;22;22;22;22
-105;'376;Israel;1675;Other paper and paperboard;5510;Production;t;14700;16400;17500;21300;22100;21300;24500;27200;26800;31900;49200;56300;55300;56300;43000;54000;64000;64000;64000;64000;64000;64000;88000;78000;77000;88000;93000;106000;118000;132000;131000;146000;152000;167000;180000;180000;180000;188000;188000;210000;215000;215000;215000;215000;215000;215000;215000;251000;251000;262000;262000;262000;262000;262000;262000;262000;262000;262000;262000;262000;262000;262000;262000
-105;'376;Israel;1675;Other paper and paperboard;5610;Import quantity;t;31600;32700;36600;39600;37900;40700;50000;77200;64500;70700;85600;75200;75200;75200;69400;56700;55700;78100;120900;66800;86400;88600;102200;112300;92500;118300;118300;118300;110000;113000;154000;191523;193780;198036;191400;145300;173400;253027;212112;263277;250280;265732;269282;330905;302818;340658;352627;361927;332056;353263;318979;322523;322520;365044;319691;319691;319691;327999;349012;349012;349012;349012;349012
-105;'376;Israel;1675;Other paper and paperboard;5622;Import value;1000 USD;5411;4643;8201;9069;9183;10240;12335;15722;14919;15896;18765;16752;16752;16752;42140;33878;31188;36395;54815;50604;62280;63786;53180;62733;50774;67700;67700;67700;85495;99488;128343;152881;143194;120429;134236;151254;192164;174481;174984;161007;142118;153146;156312;192302;211650;226004;269089;304821;224370;274616;297981;273145;273145;313591;262438;262438;262438;316811;287959;287959;287959;287959;287959
-105;'376;Israel;1675;Other paper and paperboard;5910;Export quantity;t;700;1500;2200;2400;3000;400;300;1300;500;1600;600;700;600;700;1000;600;800;1400;8600;4600;3300;2500;2400;5400;2300;2300;2300;2300;6000;4000;5400;6945;1847;4540;1700;10600;13400;20327;14012;32963;28011;34727;36383;10634;7308;7434;12211;24186;24606;35632;114983;112249;112260;95278;58655;58655;58655;39842;72447;72447;72447;72447;72447
-105;'376;Israel;1675;Other paper and paperboard;5922;Export value;1000 USD;147;390;484;489;647;84;70;304;184;501;305;433;446;952;1150;590;949;1125;5725;3406;3149;2367;1811;3558;1468;1468;1468;1468;3900;2800;4850;5313;3032;7472;2420;8640;11330;17724;15984;23224;40137;46494;48873;13337;10036;10045;12882;23823;17073;19805;58168;58275;58275;57928;31864;31864;31864;26530;34333;34333;34333;34333;34333
-105;'376;Israel;1676;Household and sanitary papers;5510;Production;t;;;;;;;;6000;6000;7000;24000;27000;26000;27000;26000;31000;12000;12000;12000;12000;12000;12000;29000;25000;26000;26000;30000;31000;35000;37000;35000;40000;42000;46000;50000;50000;50000;50000;50000;72000;75000;75000;75000;75000;75000;75000;75000;100000;100000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-105;'376;Israel;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5157;10675;12180;15807;14927;18101;17399;17974;20306;22776;20508;23272;32732;27690;27690;34936;33704;33704;33704;34776;38094;38094;38094;38094;38094
-105;'376;Israel;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7535;11572;13203;17135;16181;19627;22208;22942;29664;34220;24245;31051;46732;35294;35294;48181;41462;41462;41462;48060;48428;48428;48428;48428;48428
-105;'376;Israel;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7377;29150;23558;30278;32351;5737;6237;5754;7822;6505;2107;3755;2839;3546;3550;7683;2800;2800;2800;106;217;217;217;217;217
-105;'376;Israel;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9244;16744;32353;41582;44429;7879;8566;7902;9016;14074;4803;5327;4266;6459;6459;10838;3997;3997;3997;142;261;261;261;261;261
-105;'376;Israel;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138000;138000;138000;140000;140000;140000;140000;140000;140000;140000;151000;151000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000
-105;'376;Israel;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210027;178518;236826;226132;236441;241748;300405;280154;318728;328551;335492;307892;321742;276070;288445;288440;321669;277454;277454;277454;287574;306558;306558;306558;306558;306558
-105;'376;Israel;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134481;126926;136029;118745;124553;129418;162139;182658;197531;234569;264664;193802;234605;239213;228419;228419;250403;204918;204918;204918;250285;224282;224282;224282;224282;224282
-105;'376;Israel;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5327;4150;1689;2248;4435;4026;4873;645;1633;4387;17662;22476;31843;112132;108688;108690;87594;55843;55843;55843;39434;71968;71968;71968;71968;71968
-105;'376;Israel;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4178;3254;3343;4527;4892;4435;5423;687;2072;3859;9611;12107;14235;53882;51437;51437;47076;27809;27809;27809;24968;32214;32214;32214;32214;32214
-105;'376;Israel;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;21200;20800;24900;25200;29300;29300;29300;17000;23000;52000;52000;52000;52000;52000;52000;59000;53000;51000;62000;63000;75000;83000;95000;96000;106000;110000;121000;130000;130000;130000;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;26800;25900;26900;26900;26900;60900;52100;46700;64000;94900;47000;64900;60000;85000;96400;77800;100000;100000;100000;85000;87000;130000;161523;163780;168036;161400;122100;133000;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;7466;7566;6934;6934;6934;31253;26757;22593;23919;40165;30292;42393;37160;37201;47605;36751;50228;50228;50228;75302;87395;115343;137881;128194;105429;119236;134616;152164;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-105;'376;Israel;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123000;123000;123000;125000;125000;125000;125000;125000;125000;125000;151000;151000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000
-105;'376;Israel;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121000;92539;132763;132281;139000;128560;183167;200551;239546;232845;239439;219957;229232;183390;195781;195780;201534;169528;169528;169528;179723;203224;203224;203224;203224;203224
-105;'376;Israel;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71282;65795;70750;59966;63012;58279;81285;99767;113916;136715;152661;102074;131014;125811;117045;117045;128475;96599;96599;96599;123085;111140;111140;111140;111140;111140
-105;'376;Israel;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;245;145;76;4343;3870;4353;46;487;21;8353;18370;28650;107641;102234;102230;85153;54337;54337;54337;37887;70765;70765;70765;70765;70765
-105;'376;Israel;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;192;160;84;4780;4260;4791;26;276;13;2885;6183;9818;48728;43098;43098;40820;23293;23293;23293;21192;30163;30163;30163;30163;30163
-105;'376;Israel;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51281;40696;46905;41137;50034;55777;70971;46003;50561;64233;64718;53018;55169;52907;50743;50740;63356;59643;59643;59643;63070;61849;61849;61849;61849;61849
-105;'376;Israel;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36461;28935;32365;28385;34524;38487;48890;50879;55509;64059;77972;62526;66081;70938;71497;71497;72912;68964;68964;68964;78672;70705;70705;70705;70705;70705
-105;'376;Israel;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;163;39;106;52;13;459;9;10;2282;7932;2891;1817;2603;5837;5840;1646;1327;1327;1327;1403;989;989;989;989;989
-105;'376;Israel;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;128;47;129;64;16;560;11;12;1562;4593;4434;2787;3374;7566;7566;5048;4162;4162;4162;3417;1548;1548;1548;1548;1548
-105;'376;Israel;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36956;41505;55987;52045;43476;51951;38958;26195;23445;27461;25065;29805;30103;28192;29761;29760;39864;29711;29711;29711;28010;25390;25390;25390;25390;25390
-105;'376;Israel;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26176;29510;32349;30071;25120;30017;28437;27567;24999;30879;29638;25282;33403;34269;33223;33223;39157;30343;30343;30343;37962;33267;33267;33267;33267;33267
-105;'376;Israel;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;99;73;90;37;141;56;590;1136;2084;1362;1209;1364;1872;606;610;614;130;130;130;144;214;214;214;214;214
-105;'376;Israel;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;78;80;99;41;155;62;650;1784;2284;2094;1474;1606;1741;734;734;1071;318;318;318;359;503;503;503;503;503
-105;'376;Israel;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790;3778;1171;669;3931;5460;7309;7405;5176;4012;6270;5112;7238;11581;12160;12160;16915;18572;18572;18572;16771;16095;16095;16095;16095;16095
-105;'376;Israel;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;2686;565;323;1897;2635;3527;4445;3107;2916;4393;3920;4107;8195;6654;6654;9859;9012;9012;9012;10566;9170;9170;9170;9170;9170
-105;'376;Israel;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4612;3643;1432;1976;3;2;5;0;0;0;15;6;12;16;11;10;181;49;49;49;0;0;0;0;0;0
-105;'376;Israel;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3616;2856;3056;4215;7;4;10;0;0;0;39;16;24;39;39;39;137;36;36;36;0;0;0;0;0;0
-105;'376;Israel;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-105;'376;Israel;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;31600;32700;36600;39600;37900;40700;50000;77200;64500;43900;59700;48300;48300;48300;8500;4600;9000;14100;26000;19800;21500;28600;17200;15900;14700;18300;18300;18300;25000;26000;24000;30000;30000;30000;30000;23200;40400;43000;28437;15776;11968;13484;12607;12399;5265;3956;3770;3659;3656;8249;10177;6388;6390;8439;8533;8533;8533;5649;4360;4360;4360;4360;4360
-105;'376;Israel;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5411;4643;8201;9069;9183;10240;12335;15722;14919;8430;11199;9818;9818;9818;10887;7121;8595;12476;14650;20312;19887;26626;15979;15128;14023;17472;17472;17472;10193;12093;13000;15000;15000;15000;15000;16638;40000;40000;40523;13406;10170;11458;10713;10536;6784;5531;4856;5937;6323;8960;12036;9432;9432;15007;16058;16058;16058;18466;15249;15249;15249;15249;15249
-105;'376;Israel;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;700;1500;2200;2400;3000;400;300;1300;500;1600;600;700;600;700;1000;600;800;1400;8600;4500;3300;2500;2400;5400;2300;2300;2300;2300;6000;4000;5400;6945;1847;4540;1700;10600;13400;15000;2485;2124;2205;14;6;24;426;47;2;19;23;34;12;15;20;1;12;12;12;302;262;262;262;262;262
-105;'376;Israel;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;147;390;484;489;647;84;70;304;184;501;305;433;446;952;1150;590;949;1125;5725;3328;3149;2367;1811;3558;1468;1468;1468;1468;3900;2800;4850;5313;3032;7472;2420;8640;11330;13546;3486;3137;3257;20;9;35;783;71;7;138;163;243;20;379;379;14;58;58;58;1420;1858;1858;1858;1858;1858
-105;'376;Israel;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466017;470588;475377;490354;628356;622446;548399
-105;'376;Israel;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9839;12341;12589;12930;12039;15116;15998
-105;'376;Israel;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14876;14876;14876;14876;14876;14876;14876
-105;'376;Israel;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37
-105;'376;Israel;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;585;585;585;585;585;585
-105;'376;Israel;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-105;'376;Israel;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14291;14291;14291;14291;14291;14291;14291
-105;'376;Israel;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37
-105;'376;Israel;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9169;9169;9169;9169;9169;9169;9169
-105;'376;Israel;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;460;460;460;460;460;460
-105;'376;Israel;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13413;13413;13413;13413;13413;13413;13413
-105;'376;Israel;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1606;1606;1606;1606;1606;1606;1606
-105;'376;Israel;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54385;54385;54385;54385;54385;54385;54385
-105;'376;Israel;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3285;3285;3285;3285;3285;3285;3285
-105;'376;Israel;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362002;366573;370507;385484;523486;517576;443529
-105;'376;Israel;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4094;6596;6389;6730;5839;8916;9798
-105;'376;Israel;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855;855;855;855;855
-105;'376;Israel;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;455;455;455;455
-105;'376;Israel;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12172;12172;12172;12172;12172;12172;12172
-105;'376;Israel;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;357;357;357;357
-105;'376;Israel;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178366;178366;178366;178366;178366;178366;178366
-105;'376;Israel;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61474;61474;61474;61474;61474;61474;61474
-105;'376;Israel;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3116;3116;3116;3116;3116;3116;3116
-105;'376;Israel;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23
-105;'376;Israel;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25019;25019;25019;25019;25019;25019;25019
-105;'376;Israel;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9553;9553;9553;9553;9553;9553;9553
-105;'376;Israel;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24993;24993;24993;24993;24993;24993;24993
-105;'376;Israel;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7135;7135;7135;7135;7135;7135;7135
-105;'376;Israel;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45031;45031;45031;45031;45031;45031;45031
-105;'376;Israel;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25506;25506;25506;25506;25506;25506;25506
-105;'376;Israel;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80207;80207;80207;80207;80207;80207;80207
-105;'376;Israel;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19257;19257;19257;19257;19257;19257;19257
-106;'380;Italy;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12994970.03;14673973;13465709;11220261;15368579;19140356;16405411
-106;'380;Italy;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15889456.54;16954876;16141962;14645675;18556025;20676006;18972707
-106;'380;Italy;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;271206;296117;328925;297204;295358;362748;383932;547074;662693;762132;693613;859594;1360457;1933403;1399920;1848791;1843939;2097021;3202897;4075877;3136703;2934095;2486429;2870889;2746213;3418586;4640187;5695849;6114380;6825292;6425632;6837616;5644940;6626630;8669228;6359640;6823035;6885677;7146248;7827475;6871885;7417040;8608007;9509928;8873762;10457478;12071897;11431650;8798681;10565961;11361694;9349822;10032188;10223422;8904501;8606419;9492357.04;10919112;9579075;7845342;10608072;13715155;11160922
-106;'380;Italy;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;29883;28598;25705;38886;83404;94386;100964;120692;146858;156775;168888;203395;245745;400393;349767;394229;415718;547220;754501;663354;660263;510428;569064;725769;720336;919481;1101018;1661189;1777326;1819396;1819867;1848560;1921914;2181301;2896588;2671701;2651102;2749017;2390238;2573317;2346624;2614068;2956549;3445084;3507944;4785770;5522504;5767822;4721473;4437375;4893525;4609787;4842515;5034991;4394649;4389489;4880360.13;5170377;4769676;4198364;5711526;6568112;5375649
-106;'380;Italy;1861;Roundwood;5516;Production;m3;11179000;11069000;12162000;10626000;11176000;11932000;12157000;12221000;11117000;11667000;9870000;9084000;9065000;6809000;6621000;6091000;7109000;6918000;7946000;8989000;9037000;8650000;8308000;9162000;9382000;9557000;9024000;9037000;8780000;7972000;8327000;8357000;8818000;9465000;9736000;9121000;13243000;13258000;14448000;12836000;12181000;10515000;10742000;11321316;12469392;11795753;12568113;13342678;12068080;14076228;12647100;13015500;13021144;13084500;13077800;13057500;13051800;13045600;18366548;15841077;15841077;15841077;13317449
-106;'380;Italy;1861;Roundwood;5616;Import quantity;m3;3876100;4285100;4651500;3885500;3776700;3546900;4275500;4581700;4824400;4803100;4234100;4935700;5897700;6130700;4621300;5726000;5833700;5217700;5922800;6326300;5235200;4790600;4549500;5478100;5134000;4750000;4812000;4814000;5955000;6327248;6910371;5744588;4873843;6223000;5058000;3734600;4752000;5456000;5320000;6295000;5721000;5308132;4958975;5417537;5620037;5585558;4965000;4260000;3657000;4150000;4413507;3760399;3742532;4159978;3961417;4067067;3751792;4871135;4567488;3321020;4069859;3609909;2145520
-106;'380;Italy;1861;Roundwood;5622;Import value;1000 USD;94980;104257;111237;95918;99828;101764;113539;123028;144943;146460;139199;163543;295603;395904;276748;373371;418749;422724;572853;763168;537110;470585;347787;373779;358381;416333;485140;529083;550957;722334;720778;659947;495139;647828;643262;416921;508008;507070;531247;518266;453455;445084;494432;569241;524881;583422;619370;530116;412234;442212;557990;358102;387838;417442;333949;339290;359610.03;357105;330493;220943;344307;347518;321578
-106;'380;Italy;1861;Roundwood;5916;Export quantity;m3;7200;9600;8500;13100;12600;18800;26400;21200;19600;25100;13000;7600;6700;21300;8400;4700;8600;19000;7600;4300;5100;6600;5200;6000;4000;9000;5000;10000;12000;35637;41609;41932;21855;9500;5000;7000;9000;16000;15000;24380;23000;16364;10884;17039;15113;16706;17449;33859;27087;47540;105860;177267;204718;192835;247714;205814;213918;115708;861737;443264;533953;607041;344971
-106;'380;Italy;1861;Roundwood;5922;Export value;1000 USD;169;150;182;354;395;555;755;753;770;725;412;404;633;1101;1414;802;1039;2332;2002;1154;1336;1792;1072;1038;837;1863;1315;5347;4706;4696;5423;5163;3922;2617;1968;2409;4736;2229;2918;3349;2914;2371;5448;7333;6819;7051;8204;10952;8310;12797;19409;26696;29137;31658;29558;27073;26298.01;24447;66375;45582;50508;56868;75662
-106;'380;Italy;1862;Roundwood, coniferous;5516;Production;m3;1737000;1529000;1506000;1279000;1319000;1409000;1589000;1511000;1242000;1414000;1325000;1357000;1317000;1222000;1150000;1103000;1304000;1234000;1300000;1708000;1422000;1624000;1277000;1388000;1536000;1792000;1547000;1703000;1712000;1413000;1281000;1166000;1522000;1602000;1736000;1441000;2080000;2045000;2262000;2093000;2075000;1854000;1892000;1977630;2251064;2302524;2479821;2495467;2425037;2643086;2495000;2409600;2376200;2432300;2516100;2504100;2500100;2497400;7813063;5304587;5304587;5304587;3123726
-106;'380;Italy;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506987;2253642;1417129;859010;988252;923190;501892
-106;'380;Italy;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138059.62;152023;93921;60393;92635;94891;74392
-106;'380;Italy;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172643;67682;709438;340731;368276;439928;290463
-106;'380;Italy;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17194.82;13309;46096;28804;31586;37825;59488
-106;'380;Italy;1863;Roundwood, non-coniferous;5516;Production;m3;9442000;9540000;10656000;9347000;9857000;10523000;10568000;10710000;9875000;10253000;8545000;7727000;7748000;5587000;5471000;4988000;5805000;5684000;6646000;7281000;7615000;7026000;7031000;7774000;7846000;7765000;7477000;7334000;7068000;6559000;7046000;7191000;7296000;7863000;8000000;7680000;11163000;11213000;12186000;10743000;10106000;8661000;8850000;9343686;10218328;9493229;10088292;10847211;9643043;11433142;10152100;10605900;10644944;10652200;10561700;10553400;10551700;10548200;10553485;10536490;10536490;10536490;10193723
-106;'380;Italy;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2244805;2617493;3150359;2462010;3081607;2686719;1643628
-106;'380;Italy;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221550.41;205082;236572;160550;251672;252627;247186
-106;'380;Italy;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41275;48026;152299;102533;165677;167113;54508
-106;'380;Italy;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9103.19;11138;20279;16778;18922;19043;16174
-106;'380;Italy;1864;Wood fuel;5516;Production;m3;6271000;6084000;6317000;5096000;5201000;4730000;4365000;4090000;3844000;3800000;3624000;2943000;2973000;3124000;3350000;2869000;3037000;2882000;3330000;3880000;4356000;4032000;4145000;4778000;4825000;4913000;4440000;4357000;4111000;3637000;4239000;4832000;4698000;5481000;5263000;4958000;9319000;8891000;10235000;9187000;9232000;7887000;8103000;8438000;9452000;8783000;9577000;10349000;9340000;11429000;10245000;10839000;10839000;10839000;10839000;10839000;10839000;10839000;10839000;10839000;10839000;10839000;10269299
-106;'380;Italy;1864;Wood fuel;5616;Import quantity;m3;549700;799700;1078800;852600;555000;415800;407600;376400;380500;339000;223400;228500;706200;845600;667800;708100;703500;468000;519300;500800;338100;392900;580300;642100;588000;461000;378000;356000;474000;418000;559000;322000;204000;155000;122000;220000;238000;233000;368000;490000;510000;605139;635963;803069;864744;1099255;666000;782000;954000;952000;1085507;957935;1051462;1247170;1296245;1304567;906245;1011431;1193717;627447;780411;541099;417564
-106;'380;Italy;1864;Wood fuel;5622;Import value;1000 USD;5027;7985;9994;8435;5739;4378;4505;3729;4124;4702;3314;3351;9991;19565;15985;15087;15675;10681;16367;22940;17052;15000;18279;17619;16349;18938;15661;19618;19415;21050;25357;16739;9117;6443;5789;9490;9500;9470;13972;18763;19348;25995;31804;44273;47339;72046;52079;63543;73790;77669;93933;81663;93520;103794;80464;79934;69858.89;71669;79164;41868;59381;52591;57933
-106;'380;Italy;1864;Wood fuel;5916;Export quantity;m3;6000;8700;8000;8500;3500;2400;300;300;200;2100;2100;600;600;600;500;400;200;200;600;700;500;400;200;1000;1000;1000;1000;1000;1000;700;1400;9446;3070;1000;1000;3000;4000;2000;0;380;0;326;380;188;665;2278;750;663;530;1000;860;2956;11181;23600;33913;23163;18829;23204;12698;4224;10860;42614;10177
-106;'380;Italy;1864;Wood fuel;5922;Export value;1000 USD;85;110;145;121;67;30;5;1;6;28;28;8;8;8;49;46;11;29;83;50;22;22;8;57;48;74;117;231;219;169;262;467;221;64;112;330;355;354;92;80;47;53;199;40;102;239;146;137;104;308;186;260;1081;1649;1489;1258;1338.92;1441;906;513;1146;4255;2219
-106;'380;Italy;1627;Wood fuel, coniferous;5516;Production;m3;407000;358000;337000;284000;269000;294000;251000;243000;210000;229000;213000;262000;212000;183000;168000;206000;205000;216000;234000;304000;246000;312000;244000;257000;263000;381000;279000;287000;290000;238000;224000;204000;237000;301000;312000;284000;1005000;959000;1106000;995000;1000000;857000;881000;920000;1030000;962000;1040000;1125000;1019000;1244000;1119000;1180000;1180000;1180000;1180000;1180000;1180000;1180000;1180000;1180000;1180000;1180000;610299
-106;'380;Italy;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227082;206364;182068;119948;69587;81952;64728
-106;'380;Italy;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18365.96;14670;11135;7000;7388;9262;7601
-106;'380;Italy;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2093;942;1996;454;4070;24354;5249
-106;'380;Italy;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378.77;165;286;78;395;2235;1236
-106;'380;Italy;1628;Wood fuel, non-coniferous;5516;Production;m3;5864000;5726000;5980000;4812000;4932000;4436000;4114000;3847000;3634000;3571000;3411000;2681000;2761000;2941000;3182000;2663000;2832000;2666000;3096000;3576000;4110000;3720000;3901000;4521000;4562000;4532000;4161000;4070000;3821000;3399000;4015000;4628000;4461000;5180000;4951000;4674000;8314000;7932000;9129000;8192000;8232000;7030000;7222000;7518000;8422000;7821000;8537000;9224000;8321000;10185000;9126000;9659000;9659000;9659000;9659000;9659000;9659000;9659000;9659000;9659000;9659000;9659000;9659000
-106;'380;Italy;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679163;805067;1011649;507499;710824;459147;352836
-106;'380;Italy;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51492.94;56999;68029;34868;51993;43329;50332
-106;'380;Italy;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16736;22262;10702;3770;6790;18260;4928
-106;'380;Italy;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960.14;1276;620;435;751;2020;983
-106;'380;Italy;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;549700;799700;1078800;852600;555000;415800;407600;376400;380500;339000;223400;228500;706200;845600;667800;708100;703500;468000;519300;500800;338100;392900;580300;642100;588000;461000;378000;356000;474000;418000;559000;322000;204000;155000;122000;220000;238000;233000;368000;490000;510000;605139;635963;803069;864744;1099255;666000;782000;954000;952000;1085507;957935;1051462;1247170;1296245;1304567;;;;;;;
-106;'380;Italy;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;5027;7985;9994;8435;5739;4378;4505;3729;4124;4702;3314;3351;9991;19565;15985;15087;15675;10681;16367;22940;17052;15000;18279;17619;16349;18938;15661;19618;19415;21050;25357;16739;9117;6443;5789;9490;9500;9470;13972;18763;19348;25995;31804;44273;47339;72046;52079;63543;73790;77669;93933;81663;93520;103794;80464;79934;;;;;;;
-106;'380;Italy;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;6000;8700;8000;8500;3500;2400;300;300;200;2100;2100;600;600;600;500;400;200;200;600;700;500;400;200;1000;1000;1000;1000;1000;1000;700;1400;9446;3070;1000;1000;3000;4000;2000;0;380;0;326;380;188;665;2278;750;663;530;1000;860;2956;11181;23600;33913;23163;;;;;;;
-106;'380;Italy;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;85;110;145;121;67;30;5;1;6;28;28;8;8;8;49;46;11;29;83;50;22;22;8;57;48;74;117;231;219;169;262;467;221;64;112;330;355;354;92;80;47;53;199;40;102;239;146;137;104;308;186;260;1081;1649;1489;1258;;;;;;;
-106;'380;Italy;1865;Industrial roundwood;5516;Production;m3;4908000;4985000;5845000;5530000;5975000;7202000;7792000;8131000;7273000;7867000;6246000;6141000;6092000;3685000;3271000;3222000;4072000;4036000;4616000;5109000;4681000;4618000;4163000;4384000;4557000;4644000;4584000;4680000;4669000;4335000;4088000;3525000;4120000;3984000;4473000;4163000;3924000;4367000;4213000;3649000;2949000;2628000;2639000;2883316;3017392;3012753;2991113;2993678;2728080;2647228;2402100;2176500;2182144;2245500;2238800;2218500;2212800;2206600;7527548;5002077;5002077;5002077;3048150
-106;'380;Italy;1865;Industrial roundwood;5616;Import quantity;m3;3326400;3485400;3572700;3032900;3221700;3131100;3867900;4205300;4443900;4464100;4010700;4707200;5191500;5285100;3953500;5017900;5130200;4749700;5403500;5825500;4897100;4397700;3969200;4836000;4546000;4289000;4434000;4458000;5481000;5909248;6351371;5422588;4669843;6068000;4936000;3514600;4514000;5223000;4952000;5805000;5211000;4702993;4323012;4614468;4755293;4486303;4299000;3478000;2703000;3198000;3328000;2802464;2691070;2912808;2665172;2762500;2845547;3859704;3373771;2693573;3289448;3068810;1727956
-106;'380;Italy;1865;Industrial roundwood;5622;Import value;1000 USD;89953;96272;101243;87483;94089;97386;109034;119299;140819;141758;135885;160192;285612;376339;260763;358284;403074;412043;556486;740228;520058;455585;329508;356160;342032;397395;469479;509465;531542;701284;695421;643208;486022;641385;637473;407431;498508;497600;517275;499503;434107;419089;462628;524968;477542;511376;567291;466573;338444;364543;464057;276439;294318;313648;253485;259356;289751.14;285436;251329;179075;284926;294927;263645
-106;'380;Italy;1865;Industrial roundwood;5916;Export quantity;m3;1200;900;500;4600;9100;16400;26100;20900;19400;23000;10900;7000;6100;20700;7900;4300;8400;18800;7000;3600;4600;6200;5000;5000;3000;8000;4000;9000;11000;34937;40209;32486;18785;8500;4000;4000;5000;14000;15000;24000;23000;16038;10504;16851;14448;14428;16699;33196;26557;46540;105000;174311;193537;169235;213801;182651;195089;92504;849039;439040;523093;564427;334794
-106;'380;Italy;1865;Industrial roundwood;5922;Export value;1000 USD;84;40;37;233;328;525;750;752;764;697;384;396;625;1093;1365;756;1028;2303;1919;1104;1314;1770;1064;981;789;1789;1198;5116;4487;4527;5161;4696;3701;2553;1856;2079;4381;1875;2826;3269;2867;2318;5249;7293;6717;6812;8058;10815;8206;12489;19223;26436;28056;30009;28069;25815;24959.09;23006;65469;45069;49362;52613;73443
-106;'380;Italy;1866;Industrial roundwood, coniferous;5516;Production;m3;1330000;1171000;1169000;995000;1050000;1115000;1338000;1268000;1032000;1185000;1112000;1095000;1105000;1039000;982000;897000;1099000;1018000;1066000;1404000;1176000;1312000;1033000;1131000;1273000;1411000;1268000;1416000;1422000;1175000;1057000;962000;1285000;1301000;1424000;1157000;1075000;1086000;1156000;1098000;1075000;997000;1011000;1057630;1221064;1340524;1439821;1370467;1406037;1399086;1376000;1229600;1196200;1252300;1336100;1324100;1320100;1317400;6633063;4124587;4124587;4124587;2513427
-106;'380;Italy;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474282;2909656;2388951;2615843;2485000;1955000;1226300;1680000;2287000;2093000;2585000;2287000;2337303;2152660;2309439;2363430;2291280;1946000;1752000;1337000;1460000;1512000;1267000;1304456;1361658;1141456;1238270;1279905;2047278;1235061;739062;918665;841238;437164
-106;'380;Italy;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244595;266190;232101;201536;220249;193066;121729;142733;143000;179277;167230;149800;156660;182310;202777;185304;203083;211685;205088;143914;153988;172196;125529;133139;141925;102964;108023;119693.66;137353;82786;53393;85247;85629;66791
-106;'380;Italy;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4293;4240;4486;2785;1500;1000;1000;1000;4000;3000;4000;3000;2959;2664;6268;3312;5861;6000;22621;18097;29540;59000;135050;132856;138742;181750;153157;170550;66740;707442;340277;364206;415574;285214
-106;'380;Italy;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;912;1368;1256;960;405;225;400;692;692;1406;1219;915;711;499;1413;896;2215;3068;3489;2647;4059;6996;13767;14993;15783;17063;14792;16816.04;13144;45810;28726;31191;35590;58252
-106;'380;Italy;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474282;2909656;2388951;2615843;2485000;1955000;1226300;1680000;2287000;2093000;2585000;2287000;2337303;2152660;2309439;2363430;2291280;1946000;1752000;1337000;1460000;1512000;1267000;1304456;1361658;1141456;1238270;1279905;2047278;1235061;739062;918665;841238;437164
-106;'380;Italy;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244595;266190;232101;201536;220249;193066;121729;142733;143000;179277;167230;149800;156660;182310;202777;185304;203083;211685;205088;143914;153988;172196;125529;133139;141925;102964;108023;119693.66;137353;82786;53393;85247;85629;66791
-106;'380;Italy;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4293;4240;4486;2785;1500;1000;1000;1000;4000;3000;4000;3000;2959;2664;6268;3312;5861;6000;22621;18097;29540;59000;135050;132856;138742;181750;153157;170550;66740;707442;340277;364206;415574;285214
-106;'380;Italy;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;912;1368;1256;960;405;225;400;692;692;1406;1219;915;711;499;1413;896;2215;3068;3489;2647;4059;6996;13767;14993;15783;17063;14792;16816.04;13144;45810;28726;31191;35590;58252
-106;'380;Italy;1867;Industrial roundwood, non-coniferous;5516;Production;m3;3578000;3814000;4676000;4535000;4925000;6087000;6454000;6863000;6241000;6682000;5134000;5046000;4987000;2646000;2289000;2325000;2973000;3018000;3550000;3705000;3505000;3306000;3130000;3253000;3284000;3233000;3316000;3264000;3247000;3160000;3031000;2563000;2835000;2683000;3049000;3006000;2849000;3281000;3057000;2551000;1874000;1631000;1628000;1825686;1796328;1672229;1551292;1623211;1322043;1248142;1026100;946900;985944;993200;902700;894400;892700;889200;894485;877490;877490;877490;534723
-106;'380;Italy;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3434966;3441715;3033637;2054000;3583000;2981000;2288300;2834000;2936000;2859000;3220000;2924000;2365690;2170352;2305029;2391863;2195023;2353000;1726000;1366000;1738000;1816000;1535464;1386614;1551150;1523716;1524230;1565642;1812426;2138710;1954511;2370783;2227572;1290792
-106;'380;Italy;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456689;429231;411107;284486;421136;444407;285702;355775;354600;337998;332273;284307;262429;280318;322191;292238;308293;355606;261485;194530;210555;291861;150910;161179;171723;150521;151333;170057.48;148083;168543;125682;199679;209298;196854
-106;'380;Italy;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30644;35969;28000;16000;7000;3000;3000;4000;10000;12000;20000;20000;13079;7840;10583;11136;8567;10699;10575;8460;17000;46000;39261;60681;30493;32051;29494;24539;25764;141597;98763;158887;148853;49580
-106;'380;Italy;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615;3793;3440;2741;2148;1631;1679;3689;1183;1420;2050;1952;1607;4750;5880;5821;4597;4990;7326;5559;8430;12227;12669;13063;14226;11006;11023;8143.05;9862;19659;16343;18171;17023;15191
-106;'380;Italy;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724358;568280;414590;439000;254000;265000;265000;268000;332000;292000;314000;276000;232729;199976;154279;137858;124990;156000;91000;47000;36000;49000;24353;16770;9548;20614;20614;51943;71395;20673;50429;28924;38902;12383
-106;'380;Italy;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176033;137615;124269;108451;74367;81112;81112;75789;75600;80627;79658;73635;65049;73916;72483;62237;66428;210480;73027;35269;23690;29299;15242;15173;8388;8910;8910;13082.62;17312;8678;12119;7206;14543;8043
-106;'380;Italy;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440;440;320;1000;1149;4676;9263;1523;1385;1219;2284;1827;1000;3000;4386;5249;12800;19200;16000;6003;3197;3739;2919;4928;4291;11977
-106;'380;Italy;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;509;264;532;727;3748;5187;2105;1332;1483;3478;2639;1864;3298;4178;4751;9451;7447;7447;1370.9;2066;2822;4004;3299;2872;2268
-106;'380;Italy;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2710608;2873435;2619047;1615000;3329000;2716000;2023300;2566000;2604000;2567000;2906000;2648000;2132961;1970376;2150750;2254005;2070033;2197000;1635000;1319000;1702000;1767000;1511111;1369844;1541602;1503102;1503616;1513699;1741031;2118037;1904082;2341859;2188670;1278409
-106;'380;Italy;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280656;291616;286838;176035;346769;363295;204590;279986;279000;257371;252615;210672;197380;206402;249708;230001;241865;145126;188458;159261;186865;262562;135668;146006;163335;141611;142423;156974.85;130771;159865;113563;192473;194755;188811
-106;'380;Italy;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30644;35969;28000;16000;7000;3000;3000;4000;9560;11560;19680;19000;11930;3164;1320;9613;7182;9480;8291;6633;16000;43000;34875;55432;17693;12851;13494;18536;22567;137858;95844;153959;144562;37603
-106;'380;Italy;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615;3793;3440;2741;2148;1631;1679;3689;674;911;1786;1420;880;1002;693;3716;3265;3507;3848;2920;6566;8929;8491;8312;4775;3559;3576;6772.15;7796;16837;12339;14872;14151;12923
-106;'380;Italy;1868;Sawlogs and veneer logs;5516;Production;m3;2217000;2582000;3038000;2857000;3056000;3516000;4037000;4298000;3748000;4245000;3168000;2957000;2999000;1930000;1646000;1640000;2097000;2147000;2502000;2800000;2566000;2525000;2266000;2333000;2460000;3203000;2606000;2650000;2621000;2437000;2247000;1941000;2224000;2180000;2543000;2398000;2258000;2572000;2120000;2062000;1597000;1618000;1632000;1448398;1340170;1246351;1290730;1300307;1235985;1549298;1691500;1537800;1534700;1587500;1585000;1571800;1567400;1563800;5587887;3351893;3351893;3351893;2042567
-106;'380;Italy;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1862700;2062000;2434000;1889600;1757700;2062600;2363200;2416200;2854200;2637500;2607500;3050500;4050400;3692200;2797900;3727600;3903700;3496900;3933300;4291300;3697400;3182000;2840000;3269000;2977000;2693000;2724000;2730000;3421000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;65634;73077;83903;69330;71189;79983;84379;91539;114820;107590;106111;128556;256969;301312;210933;303433;342575;348252;477795;638084;449627;388500;275956;290609;273107;312392;374332;406565;424142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1200;900;500;4600;9100;16400;26100;20900;19000;22600;9900;6000;6000;20600;7700;4100;8200;18300;6900;3500;4500;5000;5000;5000;3000;8000;4000;9000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;84;40;37;233;328;525;750;752;757;690;367;379;617;1065;1356;747;1019;2266;1890;1071;1281;1374;1064;981;789;1789;1198;5116;4487;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;884000;774000;796000;679000;707000;755000;906000;850000;691000;900000;832000;735000;747000;691000;645000;557000;713000;682000;699000;919000;768000;858000;676000;751000;804000;1198000;855000;901000;904000;774000;662000;607000;837000;798000;942000;741000;721000;735000;682000;701000;678000;647000;653000;607964;498331;484610;520201;571272;535172;871153;1036000;928100;889300;932200;1011800;1002400;997700;996000;5018020;2791543;2791543;2791543;1701102
-106;'380;Italy;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;734100;832000;1040100;699200;542200;696800;895200;853400;854400;727300;651600;833100;1239100;1325500;933500;1127600;1276300;1135900;1214500;1491600;1338000;1077000;959000;1181000;1117000;1015000;968000;950000;1185000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;18094;20809;24766;17164;12658;16821;20437;19683;21396;20739;19062;24391;55619;80937;57073;70938;90536;89745;109790;166951;124124;98000;64784;71651;65863;81788;91944;116565;118142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;400;100;200;3100;5700;4700;1500;100;100;100;700;200;100;13400;900;300;3400;800;2500;500;300;2000;2000;2000;1000;6000;1000;2300;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;20;5;11;110;149;212;84;9;7;5;29;14;33;329;85;38;133;155;491;158;71;474;273;73;143;874;132;562;494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1333000;1808000;2242000;2178000;2349000;2761000;3131000;3448000;3057000;3345000;2336000;2222000;2252000;1239000;1001000;1083000;1384000;1465000;1803000;1881000;1798000;1667000;1590000;1582000;1656000;2005000;1751000;1749000;1717000;1663000;1585000;1334000;1387000;1382000;1601000;1657000;1537000;1837000;1438000;1361000;919000;971000;979000;840434;841839;761741;770529;729035;700813;678145;655500;609700;645400;655300;573200;569400;569700;567800;569867;560350;560350;560350;341465
-106;'380;Italy;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;1128600;1230000;1393900;1190400;1215500;1365800;1468000;1562800;1999800;1910200;1955900;2217400;2811300;2366700;1864400;2600000;2627400;2361000;2718800;2799700;2359400;2105000;1881000;2088000;1860000;1678000;1756000;1780000;2236000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;47540;52268;59137;52166;58531;63162;63942;71856;93424;86851;87049;104165;201350;220375;153860;232495;252039;258507;368005;471133;325503;290500;211172;218958;207244;230604;282388;290000;306000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;800;800;300;1500;3400;11700;24600;20800;18900;22500;9200;5800;5900;7200;6800;3800;4800;17500;4400;3000;4200;3000;3000;3000;2000;2000;3000;6700;8200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;64;35;26;123;179;313;666;743;750;685;338;365;584;736;1271;709;886;2111;1399;913;1210;900;791;908;646;915;1066;4554;3993;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705000;930000;708000;555000;652000;594000;533175;766619;818703;781616;643443;594106;370204;348100;316800;320400;328000;320400;317500;316700;315700;914093;1018080;1018080;1018080;620395
-106;'380;Italy;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108000;118000;126000;157000;189000;172000;151440;358523;444683;466276;341280;371277;147138;154600;138200;134400;140700;150100;148800;148300;148000;745372;852564;852564;852564;519531
-106;'380;Italy;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;597000;812000;582000;398000;463000;422000;381735;408096;374020;315340;302163;222829;223066;193500;178600;186000;187300;170300;168700;168400;167700;168721;165516;165516;165516;100864
-106;'380;Italy;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1316100;1288200;1012700;1050500;1354300;959200;1305100;1569200;1395100;1676900;1215500;1508000;1073100;1483700;1080800;1227900;1149000;1133000;1359600;1438200;1134600;1109000;1025200;1460000;1469000;1508000;1634000;1634000;1846000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;19942;19304;13800;15743;19992;14127;19061;21911;20180;28846;22643;25368;24213;62296;41213;47826;49519;44504;60142;84036;60189;50000;40020;52128;56030;71936;80835;87600;91400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;400;400;1000;1000;100;100;200;200;200;500;100;100;100;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;7;7;17;17;8;28;9;9;9;37;29;33;33;396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1055000;812000;1069000;1086000;1219000;1609000;1835000;1805000;1623000;1695000;981000;807000;924000;564000;461000;472000;805000;739000;934000;1009000;923000;909000;807000;980000;908000;965000;1534000;903000;878000;856000;874000;712000;781000;820000;710000;889000;646000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1316100;1288200;1012700;1050500;1354300;959200;1305100;1569200;1395100;1676900;1215500;1508000;1073100;1483700;1080800;1227900;1149000;1133000;1359600;1438200;1134600;1109000;1025200;1460000;1469000;1508000;1634000;1634000;1846000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;19942;19304;13800;15743;19992;14127;19061;21911;20180;28846;22643;25368;24213;62296;41213;47826;49519;44504;60142;84036;60189;50000;40020;52128;56030;71936;80835;87600;91400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;400;400;1000;1000;100;100;200;200;200;500;100;100;100;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;7;7;17;17;8;28;9;9;9;37;29;33;33;396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;70000;65000;60000;58000;58000;56000;84000;72000;55000;59000;57000;44000;45000;44000;47000;53000;92000;57000;71000;69000;67000;80000;74000;87000;98000;91000;332000;131000;116000;97000;105000;92000;122000;158000;151000;146000;94000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;985000;747000;1009000;1028000;1161000;1553000;1751000;1733000;1568000;1636000;924000;763000;879000;520000;414000;419000;713000;682000;863000;940000;856000;829000;733000;893000;810000;874000;1202000;772000;762000;759000;769000;620000;659000;662000;559000;743000;552000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1871;Other industrial roundwood;5516;Production;m3;1636000;1591000;1738000;1587000;1700000;2077000;1920000;2028000;1902000;1927000;2097000;2377000;2169000;1191000;1164000;1110000;1170000;1150000;1180000;1300000;1192000;1184000;1090000;1071000;1189000;476000;444000;1127000;1170000;1042000;967000;872000;1115000;984000;1220000;876000;1020000;1090000;1163000;879000;797000;358000;413000;901743;910603;947699;918767;1049928;897989;727726;362500;321900;327044;330000;333400;329200;328700;327100;1025568;632104;632104;632104;385188
-106;'380;Italy;1871;Other industrial roundwood;5616;Import quantity;m3;147600;135200;126000;92800;109700;109300;199600;219900;194600;149700;187700;148700;68000;109200;74800;62400;77500;119800;110600;96000;65100;106700;104000;107000;100000;88000;76000;94000;214000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1871;Other industrial roundwood;5622;Import value;1000 USD;4377;3891;3540;2410;2908;3276;5594;5849;5819;5322;7131;6268;4430;12731;8617;7025;10980;19287;18549;18108;10242;17085;13532;13423;12895;13067;14312;15300;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;376000;332000;313000;258000;285000;304000;348000;346000;286000;226000;223000;316000;313000;304000;290000;287000;294000;279000;296000;416000;341000;374000;283000;293000;371000;122000;81000;384000;402000;304000;290000;263000;326000;345000;331000;270000;260000;243000;356000;271000;240000;161000;186000;298226;364210;411231;453344;457915;499588;380795;185400;163300;172500;179400;174200;172900;174100;173400;869671;480480;480480;480480;292794
-106;'380;Italy;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1260000;1259000;1425000;1329000;1415000;1773000;1572000;1682000;1616000;1701000;1874000;2061000;1856000;887000;874000;823000;876000;871000;884000;884000;851000;810000;807000;778000;818000;354000;363000;743000;768000;738000;677000;609000;789000;639000;889000;606000;760000;847000;807000;608000;557000;197000;227000;603517;546393;536468;465423;592013;398401;346931;177100;158600;154544;150600;159200;156300;154600;153700;155897;151624;151624;151624;92394
-106;'380;Italy;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;147600;135200;126000;92800;109700;109300;199600;219900;194600;149700;187700;148700;68000;109200;74800;62400;77500;119800;110600;96000;65100;106700;104000;107000;100000;88000;76000;94000;214000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;4377;3891;3540;2410;2908;3276;5594;5849;5819;5322;7131;6268;4430;12731;8617;7025;10980;19287;18549;18108;10242;17085;13532;13423;12895;13067;14312;15300;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1630;Wood charcoal;5510;Production;t;55690;59690;59190;58091;64193;69895;66897;64400;63004;61708;65148;72829;68690;64626;67098;65509;68303;67276;63852;59977;62285;62425;60711;54485;51086;42971;38821;41268;46773;46247;36131;33180;37789;33140;33505;30807;28517;11000;11000;11000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000
-106;'380;Italy;1630;Wood charcoal;5610;Import quantity;t;23000;17300;16900;18600;11200;5700;8100;10300;11100;12400;9300;2100;5400;9000;8000;9400;6000;6400;9400;12500;10000;10000;11900;18600;21000;29000;32000;29000;23000;23000;33000;36604;30437;34600;34000;36000;38000;40000;38000;46000;41000;41169;46668;49558;56824;63573;64000;67000;75000;92000;67586;59965;57493;60930;57636;60827;55112;61830;63941;78668;68270;56661;68800
-106;'380;Italy;1630;Wood charcoal;5622;Import value;1000 USD;1112;844;807;930;608;329;410;533;537;817;790;267;525;1243;1541;1564;1321;1427;2477;4318;3424;3424;2250;3908;4558;6371;7086;8591;8116;9005;13230;14039;10606;10597;10477;11649;11442;13349;10302;11402;9708;10082;12845;15699;18399;19960;23499;26726;28652;25577;28653;26929;27823;28499;25723;26542;24012.8;27016;27156;30308;32926;33560;41042
-106;'380;Italy;1630;Wood charcoal;5910;Export quantity;t;3000;1500;800;1600;500;900;500;400;400;200;200;200;200;200;200;900;500;200;700;500;200;200;500;1500;1000;1500;1000;1300;1400;1300;1400;2174;436;400;800;200;150;40;0;520;0;436;397;550;403;419;3575;3000;2400;1000;812;1445;1381;1180;934;654;662;499;712;475;5063;1331;1722
-106;'380;Italy;1630;Wood charcoal;5922;Export value;1000 USD;203;86;55;127;39;50;33;36;36;13;13;17;15;13;272;246;217;90;449;394;75;75;243;436;246;366;257;345;378;380;328;700;293;240;513;117;95;27;191;400;214;327;296;499;336;437;1572;1640;1244;662;723;1313;1177;1044;786;596;533.67;494;610;734;1136;959;1093
-106;'380;Italy;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1156000;665000;665000;680000;700000;720000;715000;720000;780000;780000;780000;620000;3248000;2000000;2000000;1900000;5500000;4800000;5280000;5280000;5280000;5546218;3500000;3600000;3600000;3013000
-106;'380;Italy;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1703000;1759000;2082000;2125000;2491314;2681564;3185256;3488132;3095161;2778000;2201000;2563000;3551627;1176000;1555000;1850293;1894360;881746;945017;1149987;1446685;1132100;1153769;1252387;1287596;471651
-106;'380;Italy;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32600;37241;37079;35620;42146;79215;113568;106841;165993;100992;124303;138386;303918;384356;71054;86530;89402;42351;39281;47480.42;59597;49216;44138;51861;54573;36328
-106;'380;Italy;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200;7000;7750;5000;9697;5478;3112;4664;8698;7768;15075;12060;86079;63000;15822;19751;75680;33928;32429;52051;43592;98708;104864;424918;695511;62183
-106;'380;Italy;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;847;1183;660;1257;1029;801;1101;2437;2987;5104;3554;8278;5604;1781;1966;6104;5249;5591;9779.53;9063;13740;12042;17848;28953;18959
-106;'380;Italy;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556000;463000;463000;480000;490000;504000;510000;505000;530000;530000;530000;420000;2000000;1096000;1096000;1200000;4800000;4800000;5280000;5280000;5280000;5546218;3500000;3600000;3600000;3013000
-106;'380;Italy;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;200;100;4700;2500;5000;2600;19000;18000;6000;19000;19000;61000;144000;236000;261834;290000;432000;759000;724000;1012000;1134000;1214000;1419000;1318000;1498514;1506795;1456877;1428512;1794336;1579000;979000;1146000;1201000;1030000;844000;1016806;974340;520792;610395;662281;907141;653244;760736;727011;558699;34612
-106;'380;Italy;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;8;18;263;119;240;95;424;479;260;1004;1004;2093;5677;8838;9945;9958;14933;19884;14502;18204;18200;21773;20869;18241;20530;38692;39745;34082;65108;51405;28745;31910;46476;47739;34779;44225;46655;28196;26666;31166.99;40375;32113;28148;26122;30701;7449
-106;'380;Italy;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2799;288;1000;500;200;1800;200;0;750;0;562;1399;546;923;1144;1045;3205;2564;68000;60000;1822;4125;62260;10112;5411;46686;38107;88909;82590;401201;677681;55511
-106;'380;Italy;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;22;108;53;24;202;22;20;301;96;109;143;185;234;321;363;1103;837;5251;4929;569;621;4711;1565;1287;9072.57;8286;12912;11106;16535;27930;17901
-106;'380;Italy;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900000;838000;500000;500000;500000;600000;600000;202000;202000;200000;210000;216000;205000;215000;250000;250000;250000;200000;1248000;904000;904000;700000;700000;0;0;0;0;0;0;0;0;0
-106;'380;Italy;1620;Wood residues;5616;Import quantity;m3;;;;152800;152300;210500;246600;205400;196000;128800;142200;315100;370600;453000;332100;527800;175700;111000;114000;135600;120000;129100;142000;173000;218000;217000;200000;200000;305000;276000;397000;461000;472514;656000;476000;431000;487000;569000;545000;663000;807000;992800;1174769;1728379;2059620;1300825;1199000;1222000;1417000;2350627;146000;711000;833487;920020;360954;334622;487706;539544;478856;393033;525376;728897;437039
-106;'380;Italy;1620;Wood residues;5622;Import value;1000 USD;;;;1804;1786;2678;3305;2339;2288;1828;2281;5111;7053;13670;11556;16994;6287;3322;4593;6685;5081;5400;4233;4803;6571;8634;8168;8168;11080;10115;16775;22203;15784;22519;16022;14261;14554;14400;15468;16210;17379;21616;40523;73823;72759;100885;49587;95558;106476;257442;336617;36275;42305;42747;14155;12615;16313.43;19222;17103;15990;25739;23872;28879
-106;'380;Italy;1620;Wood residues;5916;Export quantity;m3;;;;;;;;100;200;2400;300;500;400;100;300;200;200;500;200;100;800;3100;2000;1500;2000;6000;2000;2000;2000;2000;4000;2000;3000;2000;3000;5000;5000;4000;7000;7000;5000;9135;4079;2566;3741;7554;6723;11870;9496;18079;3000;14000;15626;13420;23816;27018;5365;5485;9799;22274;23717;17830;6672
-106;'380;Italy;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;7;14;33;7;33;25;10;34;28;26;32;23;14;94;180;64;69;212;207;160;160;738;353;508;784;567;354;273;577;600;522;827;882;564;1148;886;616;867;2116;2624;4001;2717;3027;675;1212;1345;1393;3684;4304;706.96;777;828;936;1313;1023;1058
-106;'380;Italy;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208943;177335
-106;'380;Italy;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11940;18149
-106;'380;Italy;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5025;3187
-106;'380;Italy;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;567
-106;'380;Italy;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1793000;1932000;1967000;1967000;1967000;1967000;1967000
-106;'380;Italy;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-106;'380;Italy;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-106;'380;Italy;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-106;'380;Italy;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0
-106;'380;Italy;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350000;420000;510000;510000;460000;445000;495000;497000;420000;425000;470000;450000
-106;'380;Italy;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223000;1778712;1978880;1683533;1699736;1894847;2350352;2661605;1901037;2216630;2066979;2170469
-106;'380;Italy;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288221;458295;503191;336589;324299;373290.77;498496;589952;385211;484946;730658;670065
-106;'380;Italy;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4559;8108;15290;29652;40561;29644;17430;15600;13027;15562;16050;22453
-106;'380;Italy;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650;4207;5687;9765;12712;8747.79;7550;8021;6073;9315;9224;10823
-106;'380;Italy;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;400000;450000;450000;400000;400000;450000;452000;400000;405000;450000;430000
-106;'380;Italy;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197000;1748733;1935960;1653604;1663820;1792547;2185579;2461437;1801642;2124089;1915516;2057994
-106;'380;Italy;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282021;451087;493632;330524;317709;361848.83;482889;570412;374726;472666;714530;654264
-106;'380;Italy;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2559;5977;11030;9548;13732;21531;11613;9030;7200;8825;6994;5305
-106;'380;Italy;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750;3223;4155;3737;5066;6397.24;4575;3519;2912;4514;4381;4103
-106;'380;Italy;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;20000;60000;60000;60000;45000;45000;45000;20000;20000;20000;20000
-106;'380;Italy;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;29979;42920;29929;35916;102300;164773;200168;99395;92541;151463;112475
-106;'380;Italy;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;7208;9559;6065;6590;11441.94;15607;19540;10485;12280;16128;15801
-106;'380;Italy;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2131;4260;20104;26829;8113;5817;6570;5827;6737;9056;17148
-106;'380;Italy;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;984;1532;6028;7646;2350.55;2975;4502;3161;4801;4843;6720
-106;'380;Italy;1872;Sawnwood;5516;Production;m3;1971000;1934000;2016000;2108000;2045000;1869000;2145000;2566000;2500000;2411000;2555000;2288000;2700000;2143000;1687000;2006000;2266000;2045000;2345000;2721000;2600000;2330000;2025000;2234000;2599000;1919000;1905000;2095000;1998000;1950000;1850000;1823000;1700000;1808000;1850000;1650000;1751000;1600000;1630000;1630000;1600000;1605000;1590000;1580000;1590000;1748000;1700000;1384000;1220000;1200000;1250000;1370000;1360000;1430000;1470000;1500000;1520000;1554200;1074412;900000;900000;900000;900000
-106;'380;Italy;1872;Sawnwood;5616;Import quantity;m3;2847100;3124000;3568900;3158000;2920800;3290800;3683600;3949600;4223800;4025100;3760100;4232600;5045500;4068600;3801900;4678700;4599600;4726700;5724000;5773500;5005600;4893300;4701100;5187100;4909000;4740000;5305000;5768000;5978000;5999000;6054000;6443592;5975266;6578000;6406000;5527000;6905000;7295000;7605000;8380000;7785000;7935707;7424095;7660755;7727326;7862757;8031000;6733000;5567000;6134000;5981000;4891000;4653702;4658430;4651351;4737697;5203619;4811411;5701382;4050689;5079067;6061634;5294873
-106;'380;Italy;1872;Sawnwood;5622;Import value;1000 USD;122661;136339;157844;142498;134264;157121;169321;178225;213668;242250;227489;276468;498326;547475;416482;580965;630028;753794;1152158;1469053;1033211;1016200;781173;839014;718065;891178;1227780;1378557;1493316;1813094;1802980;1888569;1606238;1765314;1984099;1348858;1739172;1734000;1754523;1651699;1452165;1564452;1791664;1980261;1910439;2181524;2622201;1977174;1452747;1723213;1813355;1323423;1308070;1329408;1182927;1181188;1257347.53;1334828;1138244;1018609;1817356;2098855;1491021
-106;'380;Italy;1872;Sawnwood;5916;Export quantity;m3;9600;8600;6800;13800;25400;23000;21500;21200;29000;56800;31300;50600;51500;69300;48700;47100;45000;98000;143600;82000;78700;54400;83000;113600;107000;117000;111000;86000;92000;63500;56000;52000;91000;109000;130000;99000;140000;174000;212000;208000;197000;195553;150937;156884;160898;168608;435120;242951;194361;264000;249000;272994;260988;324910;323936;353146;480904;450277;566469;448675;564462;375802;369409
-106;'380;Italy;1872;Sawnwood;5922;Export value;1000 USD;868;824;806;1189;1401;1834;1933;1830;2760;3537;3400;5563;9005;14185;9940;10678;10293;15158;28766;33894;24035;16280;25412;29323;28870;33410;36526;82764;93194;110664;114609;110002;171362;215570;264933;204770;267603;318394;196761;135633;107421;111998;102639;122004;125953;150179;200052;192030;145686;178182;207224;173154;184922;207264;205389;218283;245579.9;268412;293532;249939;354237;330933;301116
-106;'380;Italy;1632;Sawnwood, coniferous;5516;Production;m3;928000;887500;878500;894500;743000;561000;660000;836500;791000;661500;743000;775500;1150000;1144500;767000;804500;948500;883000;1017500;1186500;1185500;1102000;951000;1029000;1188500;886000;768000;934000;925500;875000;825000;800000;800000;808000;800000;750000;788000;700000;730000;730000;700000;715000;710000;753000;790000;948000;900000;684000;670000;700000;750000;850000;860000;910000;920000;950000;970000;1004200;473971;400000;400000;400000;400000
-106;'380;Italy;1632;Sawnwood, coniferous;5616;Import quantity;m3;2552750;2795050;3135050;2721500;2481050;2787250;3140700;3320650;3528200;3233750;2978800;3391850;3960750;3389850;3094650;3559700;3463750;3647050;4365300;4388250;3963400;3793650;3723200;3983000;3509000;3625000;3929500;4258000;4597500;4426000;4441000;4704187;4326000;4839000;4629000;4675000;5145000;5274000;5551000;6304000;5948000;6017581;5700485;6095398;6177604;6409463;6438000;5560000;4674000;5195000;5002000;4156000;3936337;3904430;3881657;3980716;4202616;3915421;4925902;3380796;4303963;5243307;4684226
-106;'380;Italy;1632;Sawnwood, coniferous;5622;Import value;1000 USD;107794;119996;136975;120791;109997;129668;139458;146653;173661;191177;173344;214665;379301;441373;314677;412506;454336;520147;778692;1015647;742939;709850;541797;563417;458602;582710;746449;844916;940133;1172034;1112535;1165268;936891;1006454;1109230;991288;999221;996000;993924;950189;836834;936393;1074991;1253249;1214030;1462767;1672176;1427282;1075599;1225537;1306762;981132;966418;989132;818241;813406;892707.86;940219;801676;733403;1464819;1553822;1116787
-106;'380;Italy;1632;Sawnwood, coniferous;5916;Export quantity;m3;4000;2100;1700;4050;11200;7500;7300;5800;6900;7350;5900;6400;8500;12100;5550;6900;7550;7800;27150;27900;27500;14700;37000;53700;61000;70500;68000;38000;40000;31500;22000;18000;28000;39000;51000;54000;37000;49000;51000;41000;50000;53117;30369;42620;49983;61956;150449;127100;101680;142000;123000;145972;119597;139910;150961;178312;200528;225582;336287;262213;348787;192885;206205
-106;'380;Italy;1632;Sawnwood, coniferous;5922;Export value;1000 USD;342;186;146;250;226;350;421;335;545;478;478;543;1166;3797;714;1039;1230;1701;6639;10980;7555;3740;9486;14671;15515;18341;18828;28537;29869;33840;32993;28901;39064;48275;59959;71260;60571;87088;40536;11425;12313;13708;11048;18479;17767;23218;49835;44194;33528;51490;50485;54290;51847;56230;51080;59350;66437.43;82573;105747;82996;132192;107445;98423
-106;'380;Italy;1633;Sawnwood, non-coniferous;5516;Production;m3;1043000;1046500;1137500;1213500;1302000;1308000;1485000;1729500;1709000;1749500;1812000;1512500;1550000;998500;920000;1201500;1317500;1162000;1327500;1534500;1414500;1228000;1074000;1205000;1410500;1033000;1137000;1161000;1072500;1075000;1025000;1023000;900000;1000000;1050000;900000;963000;900000;900000;900000;900000;890000;880000;827000;800000;800000;800000;700000;550000;500000;500000;520000;500000;520000;550000;550000;550000;550000;600441;500000;500000;500000;500000
-106;'380;Italy;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;294350;328950;433850;436500;439750;503550;542900;628950;695600;791350;781300;840750;1084750;678750;707250;1119000;1135850;1079650;1358700;1385250;1042200;1099650;977900;1204100;1400000;1115000;1375500;1510000;1380500;1573000;1613000;1739405;1649266;1739000;1777000;852000;1760000;2021000;2054000;2076000;1837000;1918126;1723610;1565357;1549722;1453294;1593000;1173000;893000;939000;979000;735000;717365;754000;769694;756981;1001003;895990;775480;669893;775104;818327;610647
-106;'380;Italy;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;14867;16343;20869;21707;24267;27453;29863;31572;40007;51073;54145;61803;119025;106102;101805;168459;175692;233647;373466;453406;290272;306350;239376;275597;259463;308468;481331;533641;553183;641060;690445;723301;669347;758860;874869;357570;739951;738000;760599;701510;615331;628059;716673;727012;696409;718757;950025;549892;377148;497676;506593;342291;341652;340276;364686;367782;364639.66;394609;336568;285206;352537;545033;374234
-106;'380;Italy;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;5600;6500;5100;9750;14200;15500;14200;15400;22100;49450;25400;44200;43000;57200;43150;40200;37450;90200;116450;54100;51200;39700;46000;59900;46000;46500;43000;48000;52000;32000;34000;34000;63000;70000;79000;45000;103000;125000;161000;167000;147000;142436;120568;114264;110915;106652;284671;115851;92681;122000;126000;127022;141391;185000;172975;174834;280376;224695;230182;186462;215675;182917;163204
-106;'380;Italy;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;526;638;660;939;1175;1484;1512;1495;2215;3059;2922;5020;7839;10388;9226;9639;9063;13457;22127;22914;16480;12540;15926;14652;13355;15069;17698;54227;63325;76824;81616;81101;132298;167295;204974;133510;207032;231306;156225;124208;95108;98290;91591;103525;108186;126961;150217;147836;112158;126692;156739;118864;133075;151034;154309;158933;179142.47;185839;187785;166943;222045;223488;202693
-106;'380;Italy;1634;Veneer sheets;5516;Production;m3;;150000;150000;180000;180000;180000;180000;180000;180000;180000;180000;180000;350000;370000;389000;427000;400000;405000;441000;450000;470000;336000;295000;309000;293000;297000;297000;555000;622000;622000;436000;483000;500000;500000;500000;500000;500000;500000;450000;450000;480000;470000;460000;470000;470000;470000;470000;400000;317000;317000;315000;274050;202500;202500;202500;207000;132554;116549;107345;107345;107345;107345;107345
-106;'380;Italy;1634;Veneer sheets;5616;Import quantity;m3;6900;7100;9800;5100;4700;6300;6700;10000;13100;13900;14200;15500;19400;19400;15700;31400;34600;35000;60000;81500;63500;55300;60000;82000;82000;91000;110000;128000;157000;124000;107000;119985;114776;139000;152000;143000;155000;182000;175000;199000;174000;184142;191390;186984;181969;189434;389000;251000;191000;200000;188000;162228;140289;148070;120634;129998;203256;165206;177237;160567;240650;255654;174732
-106;'380;Italy;1634;Veneer sheets;5622;Import value;1000 USD;744;833;1158;681;626;994;1222;1764;2491;2560;2566;3729;5702;8680;8121;16335;21721;27921;54062;80427;57546;50100;41983;50038;49444;66254;94974;107551;107205;138146;131312;145749;134904;165086;199392;170000;183403;183000;215900;222089;209811;236034;279051;300385;300267;321361;375014;218615;156333;231943;226664;163477;158943;179362;158403;159787;172444.71;174910;189377;151534;262724;248199;240782
-106;'380;Italy;1634;Veneer sheets;5916;Export quantity;m3;6000;6900;8600;12700;16500;17300;16700;20200;21900;19400;18000;18700;24500;21800;16500;20200;18800;22000;22400;19800;17500;15600;17000;16000;14000;16000;15000;16000;17000;14000;12000;13635;21334;23000;24000;20000;23000;27000;22000;28000;25000;27911;27800;28555;30062;36313;77928;37981;30384;33200;33000;29112;30420;29700;21471;22962;60103;40444;46140;23252;39451;32323;25034
-106;'380;Italy;1634;Veneer sheets;5922;Export value;1000 USD;5568;7994;9540;14195;18890;19829;19057;22651;22798;21902;20744;21797;30211;31084;24674;28521;30856;36336;47660;48918;36368;32000;29894;25126;25714;37401;41405;40952;46204;31859;37093;46443;65425;74838;83332;79370;88363;88100;77286;84252;84824;98023;116092;140955;141030;148018;190583;167573;127131;122451;126910;113013;109591;119973;100533;98144;119541.67;151585;182989;118871;163401;186106;183106
-106;'380;Italy;1873;Wood-based panels;5516;Production;m3;323000;350000;704000;648000;748000;815000;985000;1155000;1305000;1460000;1730000;2350000;2700000;1760000;2133000;2270000;2330000;2200000;2090000;2100000;2200000;2056000;1913000;1896000;1930000;2013000;2340000;3740000;3715000;3735000;3730000;2942000;2920000;2851000;3683000;3407000;3864000;4820000;4780000;4975000;4988000;5120000;4861000;5196000;5071000;5270000;5231000;4736000;3837000;4126000;4046000;3598000;3286559;3381270;3438500;3810000;3777975;4452066;4387935;3845000;3863246;3863246;4042016
-106;'380;Italy;1873;Wood-based panels;5616;Import quantity;m3;18500;22600;33400;23800;17800;30004;41268;44784;55433;76413;74739;222829;303418;531484;242696;443100;334200;298500;550700;709500;619500;479800;492000;509000;588000;559000;642000;585000;737000;785000;766000;908833;802483;832000;976000;963000;1254000;1357000;1272000;1530000;1599000;1938647;1843813;1974181;1910178;1811067;2556000;2036000;1733000;2237000;2173080;2049589;2242452;2611863;2561496;2450193;2742438;2850738;3021695;2332505;2732956;3230232;2805998
-106;'380;Italy;1873;Wood-based panels;5622;Import value;1000 USD;2078;2587;3799;3016;2481;3055;4119;4108;5114;6839;7565;17735;32759;64167;29893;54354;51155;49326;112738;184348;140088;109100;79984;86796;94218;128790;170271;192123;196843;263091;256242;290968;208283;254091;324100;327849;353683;386969;363558;368941;384114;437048;531181;657938;667171;724865;858822;880677;686266;785254;775674;721146;797636;911044;799085;795132;810079.17;955754;778887;702099;1044276;1433439;1229014
-106;'380;Italy;1873;Wood-based panels;5916;Export quantity;m3;22200;26700;25800;42700;169700;202135;214570;238154;266465;174524;181033;202948;170806;145829;148208;140479;145200;179400;199500;143800;159800;130200;161000;182000;193000;207000;248000;307000;421000;360000;354000;361989;564000;656000;587000;640000;857000;824000;853000;1093000;966000;1377254;968000;1101836;842347;1092878;1445889;959318;767455;1043000;1067821;1000969;960769;852728;870050;840256;1130544;1115490;974631;1061316;1303563;1245228;968568
-106;'380;Italy;1873;Wood-based panels;5922;Export value;1000 USD;5500;6558;6888;9916;17781;22516;24607;30038;35149;30987;33607;43163;48345;53586;51182;55983;72140;83377;120580;118063;94787;81800;86613;86197;96303;132671;163285;183153;188801;228084;216093;220911;243174;286632;300045;290965;332651;396611;302501;306290;300173;352116;374821;442005;407533;486669;516287;520693;395028;490194;531328;503502;503178;554049;477299;525481;574893.4;659076;616350;620210;891846;1011811;879351
-106;'380;Italy;1640;Plywood and LVL;5516;Production;m3;200000;200000;400000;300000;300000;280000;300000;340000;380000;420000;470000;700000;650000;280000;400000;420000;380000;350000;410000;400000;500000;425000;325000;346000;360000;375000;390000;410000;445000;445000;450000;427000;415000;427000;418000;402000;414000;420000;450000;450000;488000;520000;511000;485000;390000;334000;420000;421000;337000;310000;310000;280000;225000;265670;243500;280000;236446;320000;320000;265000;265000;265000;468770
-106;'380;Italy;1640;Plywood and LVL;5616;Import quantity;m3;3100;5100;7100;5900;5500;6900;10200;9700;10600;10400;10000;12500;29000;38300;20800;49800;65200;51400;86700;124900;102400;78000;73000;90000;96000;104000;122000;151000;188000;212000;204000;244939;241000;257000;323000;295000;312000;378000;367000;422000;425000;558222;558470;581155;531994;575062;588000;530000;417000;485000;463000;420070;428079;452940;447876;458295;539005;527393;601768;412556;612302;730822;545862
-106;'380;Italy;1640;Plywood and LVL;5622;Import value;1000 USD;507;816;1044;902;884;1254;1898;1676;2080;2051;2157;2960;6624;9740;6127;12818;17932;16340;36407;59994;47447;36100;26621;30953;32809;45223;58279;73019;84939;123732;118152;136378;111317;134190;175158;170484;154823;154000;193303;188137;191426;221502;249998;294298;317396;341120;330075;365366;265986;261416;280444;238330;247634;263996;233305;226642;248605.95;297906;230429;211336;358291;461181;396586
-106;'380;Italy;1640;Plywood and LVL;5916;Export quantity;m3;18900;23100;21100;29200;38500;60200;66600;85200;104400;97500;93100;116100;100300;94000;86400;89500;92500;100500;121000;89900;80200;77700;88000;83000;88000;87000;96000;100000;160000;94000;95000;95989;104000;108000;96000;117000;125000;139000;139000;146000;125000;203888;208473;200977;146459;238513;294889;184382;147506;218000;228000;200859;191710;210130;215001;240365;279443;210865;217273;203996;230415;287593;240284
-106;'380;Italy;1640;Plywood and LVL;5922;Export value;1000 USD;4078;5092;4702;7060;9014;13404;14975;19508;22980;23482;24497;32017;37940;44712;39395;43806;56349;62608;91539;94024;69431;66800;59442;53094;58666;75814;91029;106821;97089;116540;109349;108376;101451;112968;114975;118711;118964;119000;127144;114453;122189;123774;144100;159576;155182;203213;189496;197992;150209;191330;206104;156797;157787;201388;183739;207934;228691.35;253493;253536;226164;309544;406560;370855
-106;'380;Italy;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1566;3912
-106;'380;Italy;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;1531
-106;'380;Italy;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;422
-106;'380;Italy;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;1928
-106;'380;Italy;1646;Particle board and OSB (1961-1994);5516;Production;m3;70000;90000;250000;300000;400000;450000;605000;740000;840000;920000;1100000;1500000;1700000;1200000;1500000;1600000;1700000;1600000;1500000;1500000;1480000;1430000;1380000;1300000;1350000;1400000;1700000;3090000;3030000;3050000;3030000;2265000;2250000;2202000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;7500;6600;9400;4100;800;1100;4600;3100;6300;20300;17200;36300;163400;361000;129200;288700;235600;210000;411600;483400;411300;350000;333000;337000;411000;346000;382000;308000;363000;361000;378000;444000;355000;346000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;536;443;615;246;87;74;253;198;419;1398;1699;2236;15969;39824;15003;31316;28308;26936;67444;100779;70577;60200;38734;41100;44128;53234;70277;82529;71458;88059;87584;98006;53076;65081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;2000;2000;2000;3200;116600;133300;144600;148700;155600;67800;68600;69200;53700;44500;39000;18800;13800;29600;26200;37900;42000;20000;29000;32000;39000;43000;58000;50000;61000;61000;75000;57000;99000;121000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;230;248;352;493;6916;8287;9218;10014;11272;6284;7065;9473;8421;7661;9459;8207;9791;12975;18685;14245;11702;4000;13568;16520;20353;28640;32412;25825;30489;37119;40756;44189;38701;52326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2450000;2205000;2750000;2950000;3070000;3200000;3240000;3300000;3350000;3655000;3525000;3725000;3600000;3350000;2700000;3016000;2976000;2588000;2314559;2315600;2395000;2550000;2380937;2978000;3070000;2670000;2670000;2670000;2646000
-106;'380;Italy;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340000;340000;644000;642000;456000;516000;487000;520401;448240;527212;554962;425374;533000;572000;398000;775000;545000;748000;843628;1221530;1172077;1041807;1042558;1094734;1103826;958811;1168110;1232003;1133365
-106;'380;Italy;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87215;87215;132054;132000;74868;73013;73582;71966;76481;105541;118858;116048;159847;186774;96294;182193;138045;166513;189012;292314;256769;256300;216004.01;251575;226129;188183;293874;385183;347962
-106;'380;Italy;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91000;128000;158000;202000;227000;348000;393000;431666;306527;410287;328655;473864;569000;312832;250266;245000;236000;237295;236150;240870;288187;284472;509960;535887;566424;549102;655978;615747;553324
-106;'380;Italy;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55348;54864;66159;119000;54735;65181;80902;102842;106121;130937;113443;147672;172525;162991;123655;116305;120379;122803;134676;165273;153722;181522;211374.51;248188;259024;261547;372876;402564;356694
-106;'380;Italy;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;39000;70000;70000;50000;180408;130000;130000;100000;100000;100000;100000
-106;'380;Italy;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;67000;69000;155564;111741;136054;118000;138340;166000;129000;152000;173000;164000;163000;141720;133180;150595;163243;196604;211441;171743;230948;187627;295129;269651
-106;'380;Italy;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11524;12440;10790;23788;21244;38439;31077;34673;53204;36263;38536;53882;51420;42937;44701;36887;31520;35269;45789.43;63213;43466;51513;74183;107119;85892
-106;'380;Italy;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;12000;15000;53408;34666;15634;22000;34259;33000;35860;28688;38000;97000;91815;75110;53330;48453;44623;42681;37775;36172;29103;41027;42699;31136
-106;'380;Italy;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3945;4781;5128;13000;7812;9399;9134;12226;10399;11313;8582;22341;36078;34498;32447;21594;12106;13842;11659.14;14606;12156;9192;24229;22902;14564
-106;'380;Italy;1874;Fibreboard;5516;Production;m3;53000;60000;54000;48000;48000;85000;80000;75000;85000;120000;160000;150000;350000;280000;233000;250000;250000;250000;180000;200000;220000;201000;208000;250000;220000;238000;250000;240000;240000;240000;250000;250000;255000;222000;815000;800000;700000;1450000;1260000;1325000;1260000;1300000;1000000;1056000;1156000;1211000;1211000;965000;800000;800000;760000;730000;708000;730000;730000;930000;980184;1024066;867935;810000;828246;828246;827246
-106;'380;Italy;1874;Fibreboard;5616;Import quantity;m3;7900;10900;16900;13800;11500;22004;26468;31984;38533;45713;47539;174029;111018;132184;92696;104600;33400;37100;52400;101200;105800;51800;86000;82000;81000;109000;138000;126000;186000;212000;184000;219894;206483;229000;313000;328000;298000;337000;398000;525000;618000;704460;725362;729760;705222;672291;1269000;805000;766000;804000;1001080;718519;829025;804213;790948;786848;964271;1017170;1144358;730190;764917;972278;857120
-106;'380;Italy;1874;Fibreboard;5622;Import value;1000 USD;1035;1328;2140;1868;1510;1727;1968;2234;2615;3390;3709;12539;10166;14603;8763;10220;4915;6050;8887;23575;22064;12800;14629;14743;17281;30333;41715;36575;40446;51300;50506;56584;43890;54820;61727;70150;66806;100969;83863;95351;108316;119792;183458;219660;199840;233024;315696;292274;285450;287763;305765;273366;316289;317847;277491;276921;299679.79;343060;278863;251067;317928;479956;398574
-106;'380;Italy;1874;Fibreboard;5916;Export quantity;m3;1300;1600;2700;10300;14600;8635;3370;4254;6465;9224;19333;17648;16806;7329;22808;32179;38900;49300;52300;16000;37600;32500;44000;67000;66000;77000;94000;157000;200000;205000;184000;209000;361000;427000;400000;395000;574000;483000;477000;587000;433000;688292;418334;474938;345233;346242;549000;426244;340995;542000;506821;471000;457799;348398;318409;270796;298460;330963;154762;279115;376143;299189;143824
-106;'380;Italy;1874;Fibreboard;5922;Export value;1000 USD;1192;1218;1834;2363;1851;825;414;516;897;1221;2045;1673;1984;1213;2328;3970;6000;7794;10356;9794;13654;11000;13603;16583;17284;28217;39844;50507;61223;74425;65988;68346;103022;121338;129722;117390;147528;158611;116677;121875;91954;112500;116788;142093;129774;123558;143867;148397;112582;160218;168767;189404;178268;165794;127732;122183;123168.4;142789;91634;123307;185197;179785;137238
-106;'380;Italy;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;100000;800000;610000;610000;610000;300000;50000;56000;56000;56000;56000;0;0;0;0;0;0;0;0;0;15743;15743;15743;0;15743;15743;15743
-106;'380;Italy;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;105000;140000;154000;145000;76000;86000;200611;239691;230244;241526;251375;139000;116000;99000;103000;105000;84293;83161;85920;82419;82197;107611;142812;146348;104676;121408;173283;95005
-106;'380;Italy;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31966;31130;36992;55119;42938;22466;26821;61871;88667;102062;112255;122054;82112;73786;59120;57766;61255;48572;54087;59004;50302;49948;53160.66;56051;50381;41562;56019;83537;74380
-106;'380;Italy;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;23000;30000;49000;56000;12000;6000;53457;38473;39527;45241;39732;12000;11888;9510;18000;18000;25187;48681;20190;9145;6507;15922;17646;13635;11527;15085;18797;7979
-106;'380;Italy;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22181;14760;18841;33490;28520;8127;5619;25458;25584;25644;31167;28442;13064;13308;10096;10717;12911;18330;22179;15343;8330;7630;9860.98;11936;10174;9133;16488;19263;10638
-106;'380;Italy;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;700000;600000;650000;650000;715000;650000;1000000;950000;1000000;1100000;1155000;1155000;965000;800000;800000;760000;730000;708000;730000;730000;930000;864745;1005820;849689;810000;810000;810000;809000
-106;'380;Italy;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;93000;87000;106000;124000;260000;289000;222579;288301;326143;276404;260653;845000;389000;397000;501000;717220;507650;557604;508690;564952;560786;640051;805533;936017;561004;570180;714015;636504
-106;'380;Italy;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17915;25080;22054;33752;27377;55985;60662;32223;70913;91840;57197;78798;191353;175397;189884;191085;208211;196874;231059;227778;200821;201460;220537.48;254797;202900;182505;234621;354469;297091
-106;'380;Italy;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266000;286000;435000;342000;331000;463000;357000;569186;343971;406194;260000;271092;511000;390506;312405;499000;473999;441031;320961;316610;302004;257094;266990;309288;137504;261562;356778;269365;128222
-106;'380;Italy;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85525;78190;102316;96887;69411;94512;73154;73893;79135;101239;83653;78999;118210;120674;91550;110126;127907;165596;139868;143084;114388;109851;108361.58;125179;76118;108198;163221;148970;114325
-106;'380;Italy;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;99696;2503;2503;0;2503;2503;2503
-106;'380;Italy;1650;Other fibreboard;5616;Import quantity;m3;;;;;;10000;13200;16400;20000;23600;11000;137700;59000;59000;59000;59000;8400;4300;11100;57400;59000;11500;32000;21000;13000;16000;33000;36000;85000;106000;61000;74000;65000;69000;139000;130000;71000;77000;129000;189000;243000;281270;197370;173373;187292;160263;285000;300000;270000;200000;178860;126576;188260;209603;143577;143865;216609;68825;61993;64510;73329;84980;125611
-106;'380;Italy;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;305;348;466;573;790;642;9040;4068;4068;4068;4068;1204;767;1847;9041;9300;1800;2218;1562;1071;1792;3314;4873;8744;11338;8038;10788;7143;8624;11846;13940;7760;12098;13548;16900;20833;25698;23878;25758;30388;32172;42231;43091;36446;38912;36299;27920;31143;31065;26368;25513;25981.65;32212;25582;27000;27288;41950;27103
-106;'380;Italy;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;1200;1200;800;800;800;800;800;800;800;600;2000;3800;3800;14800;3100;3000;13000;10000;7000;12000;59000;67000;29000;40000;43000;42000;82000;91000;86000;109000;92000;90000;112000;70000;65649;35890;29217;39992;35418;26000;23850;19080;25000;14822;4782;88157;11598;7260;7195;15548;4029;3623;6026;4280;11027;7623
-106;'380;Italy;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;78;117;170;170;170;170;170;170;170;248;888;1129;1258;5015;1000;691;1803;1609;1451;2320;13785;16921;14558;14510;14515;12208;17878;22016;24440;26371;28234;18746;19236;13181;13149;12069;15210;14954;16117;12593;14415;10936;39375;27949;5478;16221;7367;5014;4702;4945.84;5674;5342;5976;5488;11552;12275
-106;'380;Italy;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;53000;60000;54000;48000;48000;85000;80000;75000;85000;120000;160000;150000;350000;280000;233000;250000;250000;250000;180000;200000;220000;201000;208000;250000;220000;238000;250000;240000;240000;240000;250000;250000;240000;207000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;7900;10900;16900;13800;11500;12004;13268;15584;18533;22113;36539;36329;52018;73184;33696;45600;25000;32800;41300;43800;46800;40300;54000;61000;68000;93000;105000;90000;101000;106000;123000;145894;141483;160000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1035;1328;2140;1868;1510;1422;1620;1768;2042;2600;3067;3499;6098;10535;4695;6152;3711;5283;7040;14534;12764;11000;12411;13181;16210;28541;38401;31702;31702;39962;42468;45796;36747;46196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;1300;1600;2700;10300;14600;8635;3370;3054;5265;8424;18533;16848;16006;6529;22008;31379;38300;47300;48500;12200;22800;29400;41000;54000;56000;70000;82000;98000;133000;176000;144000;166000;319000;345000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;1192;1218;1834;2363;1851;825;414;438;780;1051;1875;1503;1814;1043;2158;3800;5752;6906;9227;8536;8639;10000;12912;14780;15675;26766;37524;36722;44302;59867;51478;53831;90814;103460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1879;Total fibre furnish;5510;Production;t;824100;962700;859400;980100;1048000;1469500;1642000;1773000;1953000;1948000;1890000;2049000;2582000;2459000;2343000;2442000;2429000;2602000;2374000;2491000;2568000;2320000;2163000;2209000;2063000;2049000;2084000;2545000;3466000;3331000;3336000;3442000;3479000;2807000;2930000;2891000;3668000;3968100;4784000;5672241;5717000;5872017;5935000;6131000;6185707;6259966;6247877;5993094;5340980;5765000;5630907;6809936;6646632;6681780;6950783;7073900;5585117;5715635;5596402;5632638;6485471;5819471;5372890
-106;'380;Italy;1879;Total fibre furnish;5610;Import quantity;t;23500;22000;33300;54000;67200;70500;91400;1153200;1327600;1617800;1218500;1624400;1885500;1908559;1311585;1919065;1799267;2184933;2550895;2411554;2110951;1972700;2077700;2349400;2527000;2524000;2770000;2828000;3103000;2856000;3054000;3250693;3355063;3819300;3733000;3827000;3989000;4113000;4059000;3923000;3985000;3928394;3838268;3863019;4207133;4134115;3972492;3734954;3415284;3924748;3932570;3678694;3821503;3705706;3808710;3778177;3581673;3920054;3879993;3539082;3701504;3839698;3552852
-106;'380;Italy;1879;Total fibre furnish;5622;Import value;1000 USD;1776;1706;2528;4188;5318;6049;7619;141951;175121;224143;174472;226557;294436;518845;418152;546005;486849;536601;821761;988185;857002;752811;626226;810915;773177;886711;1231533;1503005;1714575;1591843;1350938;1360638;1093075;1434835;2396188;1535330;1513968;1528038;1548743;2042622;1578997;1550487;1822070;1933155;2001937;2174921;2538631;2601120;1785297;2662277;2695233;2198113;2380756;2285655;2273538;2006230;2173796.13;2748256;2331484;1725953;2333312;2935565;2399036
-106;'380;Italy;1879;Total fibre furnish;5910;Export quantity;t;;;;;;3800;2300;2200;2100;4200;3200;2500;2000;4900;8354;10054;4341;3088;4071;13489;17343;23040;42400;60900;64000;54400;47700;59700;72900;77700;63500;28214;72135;71000;72800;54200;65500;61100;146000;240336;280000;435880;547363;623813;783136;915026;1120051;1567484;1889319;1654681;1772447;1970773;1721516;1712662;1873932;2030541;1992306;2108007;1948447;1890189;1469070;1774422;2339828
-106;'380;Italy;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;411;227;347;383;786;472;392;346;1782;2068;2459;2021;985;2179;7809;8963;12073;16823;23116;23821;25875;24954;37434;48056;52241;40033;9800;17554;19132;24047;14360;10546;11898;21193;41992;36171;52642;76755;84874;97606;117326;205579;291419;226060;340398;422357;360072;323452;303372;297320;352573;426027.17;461966;281453;242196;418055;555739;452215
-106;'380;Italy;1878;Pulp for paper;5510;Production;t;480100;543700;560400;597100;628000;956500;1015000;1118000;1223000;1219000;1159000;1247000;1236000;1242000;1087000;1207000;1086000;1149000;1039000;940000;877000;840000;829000;816000;755000;669000;688000;809000;786000;687000;607000;513000;482000;530000;579000;540000;588000;664200;577000;615000;619000;614803;647000;657000;697501;682329;667388;663885;589127;571000;588907;578936;584632;613780;599783;594900;591237;572038;536666;425471;425471;425471;350890
-106;'380;Italy;1878;Pulp for paper;5610;Import quantity;t;23500;22000;33300;54000;67200;70500;91400;1153200;1327600;1333800;960500;1245400;1442500;1410000;959600;1301400;1188800;1577100;1789500;1761200;1544400;1368700;1513500;1703600;1825000;1857000;2088000;2148000;2181000;2110000;2363000;2523750;2555192;2750000;2755000;2866000;3113000;3250000;3353000;3182000;3318000;3247581;3249198;3365117;3761750;3671794;3479427;3212349;3000794;3430645;3458764;3327643;3483501;3395899;3486552;3430475;3216950;3514227;3564113;3291997;3335024;3544145;3280653
-106;'380;Italy;1878;Pulp for paper;5622;Import value;1000 USD;1776;1706;2528;4188;5318;6049;7619;141951;175121;206808;162290;207772;258653;433818;385026;481932;423171;475632;703397;860536;775359;682858;564173;735666;694212;809558;1141884;1385681;1579642;1466991;1247852;1269935;1030446;1294311;2157719;1425580;1429532;1421476;1462206;1899829;1482683;1432389;1707381;1821445;1904865;2068045;2399394;2443422;1688472;2507009;2514123;2089419;2277841;2189146;2185549;1902365;2068567.08;2629700;2241397;1663063;2222028;2829277;2315173
-106;'380;Italy;1878;Pulp for paper;5910;Export quantity;t;;;;;;3800;2300;2200;2100;4200;3200;2500;2000;4900;4600;6300;3540;2940;3740;12840;16740;22440;41900;60100;63000;53400;45700;57700;68900;71700;60500;21522;40297;32400;19800;20200;12500;15100;18000;22336;23000;17176;18971;22022;34159;29890;40955;45268;27972;27833;34850;37632;36337;35016;52615;90593;123435;196285;115745;78083;119670;293651;185770
-106;'380;Italy;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;411;227;347;383;786;472;392;346;1782;1680;2071;1941;935;1835;7459;8704;11848;16590;22773;23463;25485;24368;36560;46309;50484;39158;8181;14506;13398;10907;9570;6371;6517;9678;13692;13280;9490;11544;13095;15067;14720;27078;31809;18554;21220;26045;23549;25495;24227;32519;50245;76168.52;152280;76012;40855;96224;257530;181129
-106;'380;Italy;1875;Wood pulp;5510;Production;t;503500;576600;596500;650300;669300;694500;731000;794000;911000;925000;833000;927000;916000;938000;742000;859000;736000;762000;718000;689000;697000;672000;658000;706000;655000;591000;642000;724000;707000;621000;577000;473000;436000;474000;448000;403000;463000;541400;444000;434000;415000;450159;478000;492000;515483;501634;498388;487505;376489;395000;385907;376045;381742;410890;396893;392010;388347;369148;333776;222581;222581;222581;148000
-106;'380;Italy;1875;Wood pulp;5610;Import quantity;t;23500;22000;33300;54000;67200;179400;196800;1252100;1439100;1431100;1042400;1309000;1499600;1456800;992100;1305200;1190300;1575900;1783700;1759600;1540800;1370800;1514800;1695400;1811000;1830000;2051000;2142000;2165000;2099000;2352000;2524584;2569051;2772000;2778000;2887000;3119000;3254000;3335000;3193000;3333000;3258650;3260158;3372394;3757892;3685956;3486911;3215031;3002188;3425366;3451184;3315223;3470951;3377657;3474715;3417957;3204086;3500380;3552087;3270840;3316478;3536355;3271471
-106;'380;Italy;1875;Wood pulp;5622;Import value;1000 USD;1776;1706;2528;4188;5318;27312;27555;159741;197019;228648;182098;222894;272539;454662;401780;483817;423487;474808;700847;858709;772223;682725;562993;730132;684547;792903;1118005;1382113;1571037;1459501;1237892;1269858;1037718;1308536;2177374;1446130;1445903;1445335;1466417;1910010;1494639;1439863;1718897;1830437;1903944;2080762;2384960;2421895;1673359;2501636;2498942;2073270;2260292;2168510;2169980;1884243;2051555.72;2610773;2220315;1638177;2196400;2813306;2299164
-106;'380;Italy;1875;Wood pulp;5910;Export quantity;t;;;;;;1300;2400;2300;2700;5200;5600;3000;2800;5900;4000;3600;2440;2740;2840;3040;16640;22340;42700;57200;63000;53400;41700;58000;69600;71900;60300;21048;40161;32200;19800;20361;12427;14180;18000;22255;23000;17186;18909;21953;34477;30492;41359;45393;28116;28284;35371;37260;35336;34885;49935;84770;122268;195720;113096;77077;118799;292959;164835
-106;'380;Italy;1875;Wood pulp;5922;Export value;1000 USD;;;;;;41;338;269;383;926;965;501;549;2600;1467;1226;544;779;977;1072;8619;11763;16798;22630;23470;24938;22040;36440;46374;50392;38940;7627;14394;13216;10890;9859;6374;6420;9667;13591;11842;9586;11401;12994;15595;15560;27713;31822;18784;21830;26907;23164;24052;23774;30910;47358;75494.51;151526;73686;39680;94683;256330;128466
-106;'380;Italy;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365641;347565;314264;209569;209569;209569;139349
-106;'380;Italy;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134525;151150;157781;137036;159567;182499;119945
-106;'380;Italy;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68704.52;83096;79916;60335;79844;106402;74603
-106;'380;Italy;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29293;25414;18091;11072;15745;15182;5526
-106;'380;Italy;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17189.08;16280;10477;5271;8071;10106;4015
-106;'380;Italy;1654;Mechanical wood pulp (1961-2016);5510;Production;t;292800;319800;340900;361900;370800;398000;406000;464000;533000;553000;512000;563000;524000;525000;431000;545000;534000;566000;557000;533000;493000;448000;409000;474000;487000;436000;449000;473000;471000;449000;396000;342000;339000;381000;408000;365000;385000;383500;366000;274000;265000;309159;341000;365000;376483;347634;333388;325504;259934;278000;281000;269045;273122;293980;283966;280471;;;;;;;
-106;'380;Italy;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;23500;22000;33300;54000;67200;55000;73700;77600;92900;89500;58500;69600;100600;115400;67200;63000;61100;78000;111300;111500;72800;87800;98000;114200;108000;76000;97000;111000;138000;116000;127000;122279;112189;133000;113000;133000;153000;150000;156000;140000;148000;140467;143487;136399;124604;130833;132789;107806;104824;100411;87182;59301;40208;40573;42658;20155;;;;;;;
-106;'380;Italy;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1776;1706;2528;4188;5318;4563;6129;6537;8199;8616;5973;6767;12181;24929;19470;16606;15180;17449;31996;38840;23994;29000;25903;32845;30534;27586;40192;51698;65595;57667;55201;50516;38043;47443;63418;52930;47557;47400;48667;53063;52535;50431;58905;58659;51503;56670;72785;66575;58027;52195;49866;32338;22145;20161;16912;7630;;;;;;;
-106;'380;Italy;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;100;800;500;500;500;500;500;540;540;540;540;540;540;100;1100;4000;2000;4000;8000;13000;13000;8000;13417;10488;13000;13000;10000;7000;8000;9000;9000;6000;5581;8037;6203;15413;21414;21089;28394;16159;21728;21393;21340;18215;17320;2479;541;;;;;;;
-106;'380;Italy;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;5;74;59;59;59;157;157;98;98;98;98;98;98;24;284;555;445;835;2613;3247;3437;1757;3390;2028;3816;5602;4410;3350;3340;3721;3853;2515;2384;3041;2564;4520;8376;10895;16294;9792;12542;13690;12660;11668;10934;1911;835;;;;;;;
-106;'380;Italy;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;76300;109600;103800;114600;129400;140000;140000;150000;182000;171000;149000;170000;186000;187000;156000;166000;83000;63000;73000;94000;94000;96000;99000;72000;73000;70000;68000;141000;136000;88000;67000;46000;34000;24000;0;0;0;78900;39000;120000;110000;98000;94000;89000;97000;108000;165000;162001;116555;82000;84000;85000;86287;92880;89716;88615;;;;;;;
-106;'380;Italy;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;10200;13300;17200;28900;15800;23900;32800;44200;30300;15400;23400;18600;26900;31000;26000;20900;22200;16900;31000;29000;36000;29000;26000;39000;61000;53000;65268;99650;124000;129000;152000;129000;126000;103000;100000;70000;61853;60341;50047;53221;63203;49528;41637;36487;75703;95509;89604;135509;105355;109052;107862;;;;;;;
-106;'380;Italy;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;606;794;873;1609;1281;2189;3117;5157;6030;4168;5905;4475;5385;8237;8532;6222;6620;4134;7787;7204;11338;10502;8863;13977;27228;19502;25927;31987;46514;74002;59420;48029;47900;40096;52470;27318;24560;27226;23581;23054;29689;28893;28442;19220;46467;53577;45712;74333;55924;52907;51319;;;;;;;
-106;'380;Italy;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;1200;700;600;200;200;300;300;100;500;400;600;1400;1400;1400;1400;1400;1400;1400;400;1000;2000;1000;2000;3000;2000;1000;476;2639;100;700;0;100;100;0;220;1000;1563;707;617;162;103;120;13;5;188;539;5315;6444;6183;25052;27959;;;;;;;
-106;'380;Italy;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;20;34;33;10;10;20;20;5;93;66;85;240;240;240;240;240;240;240;69;96;382;310;553;777;486;226;166;632;22;153;0;70;41;93;204;508;791;691;439;209;143;151;32;10;391;367;2491;3422;2823;12045;13661;;;;;;;
-106;'380;Italy;1656;Chemical wood pulp;5510;Production;t;57400;67200;71800;79500;90100;78500;111000;111000;124000;125000;98000;116000;121000;137000;100000;86000;54000;85000;54000;28000;75000;81000;105000;130000;65000;55000;95000;80000;70000;54000;47000;39000;29000;45000;40000;38000;78000;79000;39000;40000;40000;43000;43000;38000;42000;46000;0;0;0;35000;20907;22000;22333;24030;23211;22924;22706;21583;19512;13012;13012;13012;8651
-106;'380;Italy;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1053600;1193300;1218800;871800;1129400;1291300;1257700;871500;1209600;1105500;1468800;1639800;1617900;1445200;1253200;1387800;1543700;1665000;1703000;1910000;1990000;1977000;1907000;2162000;2321620;2338212;2487000;2510000;2577000;2812000;2947000;3053000;2931000;3088000;3038830;3038830;3171248;3562946;3468714;3282994;3053588;2854777;3239065;3264818;3163806;3291599;3230597;3320926;3288927;3068125;3348198;3392219;3132667;3155775;3351732;3149657
-106;'380;Italy;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;133869;163966;195588;153213;195685;239968;400167;358724;457161;401833;451241;659745;808958;741005;643100;528184;686580;642214;747114;1058702;1311426;1482702;1364438;1157404;1181791;955583;1195533;2017179;1308730;1326253;1314805;1358701;1784961;1392262;1351634;1616929;1735385;1813686;1974441;2261491;2310699;1587883;2390138;2388803;1991424;2160226;2090006;2098214;1823895;1981097.56;2526456;2138495;1576712;2115448;2704360;2221864
-106;'380;Italy;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;800;1100;3100;1700;1400;1000;3200;3000;2400;400;700;800;1000;14600;20300;39000;53500;57000;48400;35700;47000;52600;56300;51200;7010;27000;19000;6000;10000;5200;6000;9000;13020;16000;9842;9965;14933;18498;8322;19650;16686;11652;5643;12550;10219;10588;11219;22205;56121;92942;170288;94955;65986;103028;277662;159284
-106;'380;Italy;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;104;163;561;306;266;198;1420;1189;929;151;386;602;636;8183;11327;15757;21500;22559;23851;20635;33014;42090;46279;36927;3961;11703;9306;5091;5040;2794;2960;5828;9514;8765;6222;7443;9618;10266;6148;15708;15055;8285;7673;11369;7380;8805;9731;16665;32693;58243.44;135203;63053;34328;86498;246069;124318
-106;'380;Italy;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;13200;14000;14000;12000;12000;3000;15000;16000;21000;13000;12000;6000;7000;2000;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-106;'380;Italy;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;165300;181400;208000;137200;188000;281300;222200;133300;194600;149600;165800;168100;156500;110700;81700;105300;86500;83000;91000;105000;102000;42000;32000;34000;36732;32626;35500;40000;17000;20000;28000;38000;31000;22000;22545;22545;20675;25218;14416;12681;18661;12479;12333;8972;8613;9345;7052;8733;11057;11063;15020;13503;12693;19950;22549;15150
-106;'380;Italy;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;17376;20671;30594;21531;28127;45303;69745;50892;65687;47417;42998;60135;68344;41221;30400;33470;32384;29745;36464;53927;60477;26203;20664;17351;18899;12907;16181;29107;8550;8769;11421;15541;15834;8721;9216;11025;10553;10723;6882;8176;11756;5960;7206;6005;4861;5728;4556;4953;5416;6069.06;9821;8173;6293;11459;14084;8378
-106;'380;Italy;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;100;200;200;200;600;200;200;1900;200;100;100;200;;;;;;;;;1000;600;300;200;1250;293;300;400;1000;200;200;0;20;0;0;123;120;307;162;100;46;118;0;0;0;115;30;129;27;100;150;885;163;445;769;1309
-106;'380;Italy;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;2;36;36;27;87;19;19;700;73;49;67;248;;;;;;;;;162;101;64;40;566;148;156;209;430;129;103;140;21;63;95;113;124;205;203;171;38;102;1;13;0;49;35;59;25;70.82;88;549;93;378;870;938
-106;'380;Italy;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;3000;2000;4000;68000;79000;83000;90000;65000;59000;40000;68000;17000;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-106;'380;Italy;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;504100;581600;622400;499000;629400;649600;676700;529900;723900;716200;1001000;1118900;1177200;1040100;906700;969900;1126000;1216000;1262000;1485000;1647000;1699000;1677000;1887000;2020687;2047360;2174100;2228000;2345000;2495000;2581000;2693000;2689000;2821000;2791991;2791991;2887439;3327140;3292545;3156846;2927137;2743730;3126753;3136334;3086133;3261340;3208831;3294317;3260369;3038300;3316715;3364098;3101145;3109989;3297190;3103929
-106;'380;Italy;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;66020;83245;102260;90009;112807;125095;219499;224140;285669;268781;313443;452863;593395;547973;476900;373906;510781;471178;553752;823133;1092623;1281443;1199071;1005390;1016637;822342;1039833;1788653;1191540;1184488;1152015;1199681;1639682;1276296;1240365;1483821;1576606;1691920;1870757;2166836;2216046;1526535;2312721;2300285;1944351;2138403;2072664;2080030;1804118;1960329.09;2500818;2116025;1553546;2081100;2656007;2182556
-106;'380;Italy;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;1000;500;200;200;500;300;300;100;200;200;1300;1000;400;3000;2000;1000;2000;1000;5241;26144;17900;5000;8000;4000;5000;8000;11000;11000;7317;7317;13127;16814;7848;19320;16013;11438;5254;11510;10126;10402;10996;21980;55972;92800;170042;93713;65613;102154;276715;157323
-106;'380;Italy;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;495;216;78;78;295;165;239;65;130;141;671;449;178;1376;1251;937;1573;1643;3152;11306;8402;4310;4130;2133;2517;5048;8138;6497;4653;5567;8276;9167;5630;15173;13892;7924;7046;10381;7208;8599;9247;16393;32446;58041.25;134833;61735;32820;83973;243839;121780
-106;'380;Italy;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22706;21583;19512;13012;13012;13012;8651
-106;'380;Italy;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18762;16463;14618;18829;25836;31993;30578
-106;'380;Italy;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14699.42;15817;14297;16873;22889;34269;30930
-106;'380;Italy;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;96;357;210;429;178;652
-106;'380;Italy;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131.38;282;769;1415;2147;1360;1600
-106;'380;Italy;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;2300;40000;35000;22000;19000;12000;15000;15000;17000;16000;10000;6000;7000;2000;;;;;;;;;;;;;;;0;0;0;0;0;19500;20000;20000;21000;21000;18000;20000;22000;0;0;0;19722;12550;13206;13410;14430;13938;13768;;;;;;;
-106;'380;Italy;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;138700;137300;116700;67500;86500;116600;116300;65300;81600;73000;85000;76500;67200;47500;58400;81500;90200;100000;99000;88000;18000;14000;5000;4000;1552;2984;5700;4000;1000;1000;10000;5000;2000;3000;1739;1739;3256;1032;1856;627;590;1585;2290;1733;1512;2437;2372;845;336;;;;;;;
-106;'380;Italy;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;16196;16229;16179;10203;13959;20215;32631;25647;29913;25026;25214;29480;32633;23058;28300;29507;37487;36883;43162;48695;10157;8924;2656;1909;796;1278;1711;1577;670;674;4529;2106;972;1124;753;900;1566;566;1056;476;503;1031;1578;1391;1021;1587;1541;433;178;;;;;;;
-106;'380;Italy;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;13800;19400;38500;49100;51000;47000;32000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;39;39;91;23;1;10;2;1;2;1;2;3;2;3;4;;;;;;;
-106;'380;Italy;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;7721;10800;15449;19692;20520;23351;19017;1272;0;0;0;0;0;0;0;0;0;0;17;4;1;37;44;72;22;9;5;1;14;10;10;18;29;19;32;40;;;;;;;
-106;'380;Italy;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;63000;57000;59000;88000;90000;15000;7000;7000;9000;6000;5000;2000;3000;33000;28000;75000;81000;105000;130000;65000;55000;95000;80000;70000;54000;47000;39000;29000;45000;40000;38000;78000;79000;19500;20000;20000;22000;22000;20000;22000;24000;0;0;0;15278;8357;8794;8923;9600;9273;9156;;;;;;;
-106;'380;Italy;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;245500;293000;271700;168100;225500;243800;242500;143000;209500;166700;217000;276300;217000;246900;206400;231100;241000;266000;251000;232000;223000;222000;193000;237000;262649;255242;271700;238000;214000;296000;328000;317000;209000;242000;222555;222555;259878;209556;159897;112840;107200;96983;97689;117779;67548;18477;12342;17031;17165;;;;;;;
-106;'380;Italy;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;34277;43821;46555;31470;40792;49355;78292;58045;75892;60609;69586;117267;114586;128753;107500;91301;105928;104408;113736;132947;148169;166132;142047;132754;145459;119056;137808;197842;107970;132322;146840;141373;128473;106121;101300;121183;146660;110477;95746;86003;82394;54357;68633;81122;41191;14508;11245;12798;14183;;;;;;;
-106;'380;Italy;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;700;900;2900;1500;800;800;2000;600;2000;100;100;300;700;700;700;300;3100;5000;1000;700;42000;51000;54000;50000;519;563;800;600;1000;1000;800;1000;2000;5000;2486;2486;1595;1354;311;220;625;95;387;1039;91;68;191;93;118;;;;;;;
-106;'380;Italy;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;102;127;525;279;179;179;906;273;778;24;24;189;397;397;397;167;1137;1590;322;242;30329;41052;44642;35244;243;249;748;572;480;532;340;623;1351;2204;1437;1719;1146;872;306;359;1124;245;616;965;154;128;430;181;182;;;;;;;
-106;'380;Italy;1667;Dissolving wood pulp;5510;Production;t;77000;80000;80000;94300;79000;78000;74000;69000;72000;76000;74000;78000;85000;89000;55000;62000;65000;48000;34000;34000;35000;47000;45000;30000;30000;30000;30000;30000;30000;30000;67000;46000;34000;24000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-106;'380;Italy;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;114200;109800;103700;124000;107000;88200;77200;63500;53400;38000;9200;5100;2200;1600;4200;1900;7600;12100;6500;9000;15000;15000;15000;11000;15000;10000;15417;19000;28000;26000;25000;25000;31000;23000;22000;27000;17500;17500;14700;17121;23206;21600;12000;6100;10187;3675;2512;3635;1132;2079;1013;1436;1032;2087;1137;1136;2124;1869
-106;'380;Italy;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;22143;20632;18462;23245;23163;20723;17325;15233;23536;19418;4145;1999;733;869;2379;1002;4005;4772;2920;4595;6865;8609;10126;8763;10168;5785;11624;12105;19046;22775;25050;24064;35230;18953;19516;22524;13238;15837;12812;15701;19962;21791;16179;8229;12836;6696;3796;3588;2419;1947;1399;1753.63;1221;1904;1130;1108;2544;2697
-106;'380;Italy;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;100;1700;900;1400;1800;2800;800;1200;1700;100;100;100;100;100;100;100;100;2200;2200;1000;1000;1000;1000;1000;600;100;145;34;100;100;361;127;80;0;15;0;200;200;200;404;653;500;300;300;725;889;386;89;163;199;149;33;18;50;19;26;115;25
-106;'380;Italy;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;21;304;132;210;350;565;156;287;1028;55;55;55;55;37;98;98;98;777;777;260;260;260;260;260;190;30;110;31;72;44;409;160;79;25;20;54;189;226;373;600;893;959;441;697;1224;1481;633;157;286;289;169;61.99;43;156;81;114;155;133
-106;'380;Italy;1668;Pulp from fibres other than wood;5510;Production;t;53600;47100;43900;41100;37700;340000;358000;393000;384000;370000;400000;398000;405000;393000;400000;410000;415000;435000;355000;285000;215000;215000;216000;140000;130000;108000;76000;115000;109000;96000;97000;86000;80000;80000;131000;137000;125000;122800;133000;181000;204000;164644;169000;165000;182018;180695;169000;176380;212638;176000;203000;202891;202890;202890;202890;202890;202890;202890;202890;202890;202890;202890;202890
-106;'380;Italy;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;5300;4400;4800;12500;9700;6300;13600;6400;6600;5500;5400;3600;3400;7400;5800;5500;5500;10800;14700;23000;42000;52000;21000;27000;26000;21000;14583;5141;6000;3000;4000;19000;27000;41000;11000;12000;6431;6540;7423;20979;9044;14116;9318;4706;15466;11255;14932;16185;19374;13916;13531;14300;14879;14113;22294;19682;9914;11051
-106;'380;Italy;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;880;696;672;1347;1323;915;2203;1347;2692;2664;2260;1683;1557;3419;4206;4138;4138;5952;8454;14260;23520;32488;13694;17368;17658;15745;11701;4833;4821;3120;4500;7693;11371;14742;9335;10568;5764;4321;3820;16622;7245;36225;37706;23342;18209;21877;19945;21137;23055;17516;19521;18765;20148;22986;26016;26736;18515;18706
-106;'380;Italy;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;2600;1600;800;800;800;400;300;400;700;700;2800;1200;300;1000;9900;200;200;1400;5100;1000;1000;5000;700;300;400;300;619;170;300;100;200;200;1000;0;96;0;190;262;269;86;51;96;175;156;274;368;758;1090;294;2879;5972;1200;583;2699;1025;897;807;20960
-106;'380;Italy;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;391;193;210;210;210;72;47;84;210;268;900;1452;211;895;6485;183;183;569;920;253;807;2588;380;195;282;248;664;143;254;61;120;157;176;36;121;1492;93;369;474;72;53;324;428;467;614;619;1018;1600;739;1898;3056;736;797;2482;1256;1655;1355;52796
-106;'380;Italy;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;9000;14000;3619;4360;4949;9015;4536;32;540;1315;3926;6254;9483;5441;3379;3360;5767;6800;7665;11396;11336;18896;19231;17108
-106;'380;Italy;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6797;3438;4429;1501;2881;2547;3121;1754;2915;1212;1505;2103;4368;6550;3819;2215;1770;3485;7194;5092;8306;7507;13772;17872;13560
-106;'380;Italy;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;630;2000;445;175;179;1084;230;139;231;4;972;784;1017;1175;1202;1202;1010;300;899;2707;3900;1769;1007;963
-106;'380;Italy;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;371;1489;522;246;316;763;344;961;681;263;689;679;828;852;828;597;455;302;502;1091;1230;1127;692;1100
-106;'380;Italy;1669;Recovered paper;5510;Production;t;344000;419000;299000;383000;420000;513000;627000;655000;730000;729000;731000;802000;1346000;1217000;1256000;1235000;1343000;1453000;1335000;1551000;1691000;1480000;1334000;1393000;1308000;1380000;1396000;1736000;2680000;2644000;2729000;2929000;2997000;2277000;2351000;2351000;3080000;3303900;4207000;5057241;5098000;5257214;5288000;5474000;5488206;5577637;5580489;5329209;4751853;5194000;5042000;6231000;6062000;6068000;6351000;6479000;4993880;5143597;5059736;5207167;6060000;5394000;5022000
-106;'380;Italy;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;284000;258000;379000;443000;498559;351985;617665;610467;607833;761395;650354;566551;604000;564200;645800;702000;667000;682000;680000;922000;746000;691000;726943;799871;1069300;978000;961000;876000;863000;706000;741000;667000;680813;589070;497902;445383;462321;493065;522605;414490;494103;473806;351051;338002;309807;322158;347702;364723;405827;315880;247085;366480;295553;272199
-106;'380;Italy;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;17335;12182;18785;35783;85027;33126;64073;63678;60969;118364;127649;81643;69953;62053;75249;78965;77153;89649;117324;134933;124852;103086;90703;62629;140524;238469;109750;84436;106562;86537;142793;96314;118098;114689;111710;97072;106876;139237;157698;96825;155268;181110;108694;102915;96509;87989;103865;105229.04;118556;90087;62890;111284;106288;83863
-106;'380;Italy;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;3754;3754;801;148;331;649;603;600;500;800;1000;1000;2000;2000;4000;6000;3000;6692;31838;38600;53000;34000;53000;46000;128000;218000;257000;418704;528392;601791;748977;885136;1079096;1522216;1861347;1626848;1737597;1933141;1685179;1677646;1821317;1939948;1868871;1911722;1832702;1812106;1349400;1480771;2154058
-106;'380;Italy;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;388;388;80;50;344;350;259;225;233;343;358;390;586;874;1747;1757;875;1619;3048;5734;13140;4790;4175;5381;11515;28300;22891;43152;65211;71779;82539;102606;178501;259610;207506;319178;396312;336523;297957;279145;264801;302328;349858.65;309686;205441;201341;321831;298209;271086
-106;'380;Italy;1876;Paper and paperboard;5510;Production;t;1599600;1761700;1926400;2045800;2208000;2524000;2851000;3052000;3461000;3549000;3288000;3723000;3682000;4200000;3496000;4499000;4288000;4616000;4756800;4934000;4855000;4503000;4259000;4722000;4587000;4631000;4882000;5512000;5640000;5732000;5795000;6040000;6019000;6705000;6810000;6954000;8032000;8253900;8568000;9129317;8926000;9317261;9491000;9667000;9999371;10008360;10112031;9467019;8404170;9086755;9130256;8587595;8652142;8648460;8840350;8888000;9071483;9080992;8264762;7894761;8801846;8069325;7496000
-106;'380;Italy;1876;Paper and paperboard;5610;Import quantity;t;239500;238700;288600;260900;259800;259000;282900;334900;406700;420200;467700;501700;598800;675100;320000;424000;448100;570200;757600;860700;815600;859100;1208700;1407400;1422000;1591000;1884000;2037000;2319000;2454000;2522000;2970210;2989166;3495000;3218000;3023000;3564000;3386000;4028000;4385000;4157000;4663736;4677297;4893375;4382798;5176460;5315970;5048056;4605461;5122277;4996060;4774443;4694665;4823626;4952569;5044559;5285214;5439250;5184500;4772800;4799882;5484719;4695215
-106;'380;Italy;1876;Paper and paperboard;5622;Import value;1000 USD;47855;49551;51552;48169;50447;68615;63765;76664;95286;114072;118528;148859;210820;359883;218009;255058;225830;301165;481368;577051;502120;522230;597926;698292;736725;1007190;1405622;1957641;2021432;2261819;2118754;2433934;2058848;2292381;3053029;2495220;2456537;2465421;2658984;2952423;2721062;3116968;3578831;3924322;3325005;4263716;4908662;5055528;4129032;4376628;4868705;4189011;4418890;4474785;3748219;3729786;4265347.84;4756837;4134056;3557910;4221484;5812372;4715799
-106;'380;Italy;1876;Paper and paperboard;5910;Export quantity;t;36100;26400;20700;51700;183300;186900;197000;230800;293200;320200;325000;356400;336000;429600;372500;441400;444700;554300;620000;500700;618500;449400;582600;791000;768000;822000;879000;1152000;1199000;1111000;1168000;1239316;1455052;1639000;1707000;1790000;2007000;2047000;2057000;2241000;2099999;2345001;2369113;2673632;2749816;3491234;3514132;3388824;3150278;3069812;3046214;3151963;3260960;3342105;3398101;3386801;3575745;3348124;3282655;3082782;3613804;3106238;2678449
-106;'380;Italy;1876;Paper and paperboard;5922;Export value;1000 USD;17575;12986;8234;13105;44898;49170;54048;64898;84738;98442;109668;131870;156878;297604;260128;295457;299071;408855;552805;453010;494507;366130;408166;559687;544073;687428;832856;1310774;1394989;1390929;1405750;1454489;1419564;1581738;2221380;2078700;1946146;1931135;1788497;1999827;1812704;1994623;2278997;2645924;2726203;3872416;4395320;4577289;3813500;3282500;3577810;3426145;3683876;3804726;3267864;3148412;3468594.99;3587239;3305359;2901406;3803939;4386672;3452091
-106;'380;Italy;2042;Graphic papers;5510;Production;t;697900;767500;824900;910400;953100;1088800;1244000;1292000;1485000;1478000;1404000;1535000;1647000;1641000;1297000;1734000;1715000;1980000;2159000;2076000;2041000;1877000;1865000;2212000;2118000;2187000;2267000;2472000;2535000;2480000;2448000;2498000;2464000;2749000;2777000;2840000;2931000;2967900;3069000;3055207;2952000;3059708;3189000;3303000;3470095;3380756;3458278;3227687;2846484;3033749;3051641;2905464;2738810;2708114;2691515;2593000;2586556;2456991;2306053;1658209;1884000;1701000;1139000
-106;'380;Italy;2042;Graphic papers;5610;Import quantity;t;59300;55300;42500;45900;48200;34800;36200;31900;27900;37900;36800;32200;51000;77600;45400;76200;68800;91000;136500;211600;277200;334200;437500;484900;563000;617000;774000;793000;973000;1139000;1149000;1451210;1468166;1695000;1544000;1376000;1685000;1484000;1946000;2180000;2092000;2288416;2310395;2510593;2637050;2680757;2821631;2646233;2243841;2548215;2455702;2198380;2138554;2100624;1998084;1955706;1954744;1975275;1794254;1523690;1546521;1615012;1297956
-106;'380;Italy;2042;Graphic papers;5622;Import value;1000 USD;11575;12337;10282;10592;11046;8735;8165;7303;6580;9127;10187;9496;25089;49026;33743;59436;51375;76198;129966;206580;224480;265330;275769;300405;346676;486373;697380;818939;930027;1201834;1109365;1207249;1073563;1227417;1599886;1297470;1273852;1273000;1394602;1540667;1474791;1625934;1820958;2058240;2133313;2233675;2608785;2650684;2123873;2184603;2359623;1933361;1887496;1850240;1434193;1417828;1450663.81;1637745;1456510;1138354;1238768;1740624;1456868
-106;'380;Italy;2042;Graphic papers;5910;Export quantity;t;2200;2800;2300;17800;115500;97600;107800;137400;180600;175500;167000;188800;122400;146000;120600;197100;247800;332400;378200;343400;405300;377400;378900;560600;507000;523000;540000;544000;546000;538000;537000;584112;737333;816000;824000;840000;907000;913000;986000;1034000;1021000;1166979;1199142;1394024;1526430;1530656;1607504;1549490;1364823;1547204;1623419;1645480;1634521;1638894;1624192;1551642;1636433;1465139;1506689;1037089;1304076;1193320;881204
-106;'380;Italy;2042;Graphic papers;5922;Export value;1000 USD;300;402;357;2306;23300;21416;23647;31497;41684;44047;47566;57837;51765;102169;83669;128012;160041;240743;327304;325089;332362;311480;273069;412873;379666;455779;548138;640985;636551;690800;661162;672883;665387;772903;1041081;894650;826618;824420;865671;928031;858404;992661;1126403;1348250;1483908;1545384;1787350;1880600;1536025;1662664;1878818;1709370;1740316;1775428;1469381;1397208;1456735.55;1477921;1461992;1025564;1428763;1783323;1337021
-106;'380;Italy;1671;Newsprint;5510;Production;t;293200;330000;331600;378800;379400;407600;432000;360000;355000;311000;267000;329000;263000;273000;243000;264000;234000;262000;272000;277000;234000;198000;194000;207000;178000;212000;242000;264000;252000;233000;196000;101000;83000;154000;183000;178000;180000;189700;183000;173718;189000;175100;182000;193000;191210;218652;198434;221288;211302;181334;193207;127059;52000;0;0;0;0;0;0;0;0;0;0
-106;'380;Italy;1671;Newsprint;5610;Import quantity;t;36100;17500;5400;10900;13200;2800;11900;10300;9200;13800;1600;1500;8300;11100;11500;12000;18900;23000;31700;63700;99000;122000;178200;176700;232000;268000;303000;265000;364000;374000;350000;486814;468000;471000;440000;372000;438000;458000;475000;552000;581000;552663;572652;602603;604238;630903;639897;592349;493659;630339;647922;610617;614809;605012;590779;556982;564151;518215;480503;378317;354827;353690;286799
-106;'380;Italy;1671;Newsprint;5622;Import value;1000 USD;5575;2637;782;1592;1946;415;1780;1549;1339;2185;331;251;1874;4180;4778;4362;6247;9373;14986;36030;51792;59730;80342;72412;95774;146958;187434;172342;236044;278817;248683;283919;209667;223627;330977;293740;243299;243000;260124;272497;331721;295909;330213;362466;371435;414618;464807;458316;369972;369267;466988;406490;403361;403320;301004;284689;289488.01;307604;287914;194258;185335;301954;230480
-106;'380;Italy;1671;Newsprint;5910;Export quantity;t;2200;2800;2300;17800;51800;46800;51700;51400;56600;42500;22900;27400;9300;10100;9600;9400;35900;29700;27000;13000;12300;4000;1300;29000;28000;11000;28000;25000;12000;10000;6000;10448;7471;4000;5000;15000;8000;5000;9000;17000;16000;8653;4221;13032;15814;18269;7257;10663;17823;5529;2751;2663;1383;508;935;2179;879;1236;838;1372;2989;2501;2608
-106;'380;Italy;1671;Newsprint;5922;Export value;1000 USD;300;402;357;2306;6437;5970;6678;6584;7056;5480;3243;3930;1627;4296;3948;3353;16081;15326;15752;8925;7138;2300;829;18700;18231;6569;15391;20525;9720;13583;9097;12419;3929;4511;7907;10950;5439;5420;4167;11284;11085;5766;2819;6929;9155;9041;5741;8513;8358;3898;2232;2100;1469;816;788;1514;1105.86;1296;781;1197;3121;3381;1417
-106;'380;Italy;1674;Printing and writing papers;5510;Production;t;404700;437500;493300;531600;573700;681200;812000;932000;1130000;1167000;1137000;1206000;1384000;1368000;1054000;1470000;1481000;1718000;1887000;1799000;1807000;1679000;1671000;2005000;1940000;1975000;2025000;2208000;2283000;2247000;2252000;2397000;2381000;2595000;2594000;2662000;2751000;2778200;2886000;2881489;2763000;2884608;3007000;3110000;3278885;3162104;3259844;3006399;2635182;2852415;2858434;2778405;2686810;2708114;2691515;2593000;2586556;2456991;2306053;1658209;1884000;1701000;1139000
-106;'380;Italy;1674;Printing and writing papers;5610;Import quantity;t;23200;37800;37100;35000;35000;32000;24300;21600;18700;24100;35200;30700;42700;66500;33900;64200;49900;68000;104800;147900;178200;212200;259300;308200;331000;349000;471000;528000;609000;765000;799000;964396;1000166;1224000;1104000;1004000;1247000;1026000;1471000;1628000;1511000;1735753;1737743;1907990;2032812;2049854;2181734;2053884;1750182;1917876;1807780;1587763;1523745;1495612;1407305;1398724;1390593;1457060;1313751;1145373;1191694;1261322;1011157
-106;'380;Italy;1674;Printing and writing papers;5622;Import value;1000 USD;6000;9700;9500;9000;9100;8320;6385;5754;5241;6942;9856;9245;23215;44846;28965;55074;45128;66825;114980;170550;172688;205600;195427;227993;250902;339415;509946;646597;693983;923017;860682;923330;863896;1003790;1268909;1003730;1030553;1030000;1134478;1268170;1143070;1330025;1490745;1695774;1761878;1819057;2143978;2192368;1753901;1815336;1892635;1526871;1484135;1446920;1133189;1133139;1161175.79;1330141;1168596;944096;1053433;1438670;1226388
-106;'380;Italy;1674;Printing and writing papers;5910;Export quantity;t;;;;;63700;50800;56100;86000;124000;133000;144100;161400;113100;135900;111000;187700;211900;302700;351200;330400;393000;373400;377600;531600;479000;512000;512000;519000;534000;528000;531000;573664;729862;812000;819000;825000;899000;908000;977000;1017000;1005000;1158326;1194921;1380992;1510616;1512387;1600247;1538827;1347000;1541675;1620668;1642817;1633138;1638386;1623257;1549463;1635554;1463903;1505851;1035717;1301087;1190819;878596
-106;'380;Italy;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;16863;15446;16969;24913;34628;38567;44323;53907;50138;97873;79721;124659;143960;225417;311552;316164;325224;309180;272240;394173;361435;449210;532747;620460;626831;677217;652065;660464;661458;768392;1033174;883700;821179;819000;861504;916747;847319;986895;1123584;1341321;1474753;1536343;1781609;1872087;1527667;1658766;1876586;1707270;1738847;1774612;1468593;1395694;1455629.69;1476625;1461211;1024367;1425642;1779942;1335604
-106;'380;Italy;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2778200;175000;164310;133000;171236;157000;155000;166908;163086;136753;103677;96164;97929;78556;61524;25000;61000;62351;60000;64879;66951;48678;32461;35000;19000;21000
-106;'380;Italy;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590000;754000;743000;450544;459756;441286;450698;455451;522278;525267;442441;477700;446779;363062;367654;354923;270392;304532;298713;376838;296922;265093;234835;278707;189954
-106;'380;Italy;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444187;566233;547964;283004;326014;330558;335066;341987;424568;465245;388724;368461;381442;290875;294134;292281;180673;192703;185874.43;260255;210729;177640;159919;263257;189825
-106;'380;Italy;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96000;119000;108000;54754;36129;36521;62178;43314;18263;18189;29713;25057;43406;33394;28677;31168;22598;20887;23062;30078;29235;31199;20916;21705;20114
-106;'380;Italy;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113753;134733;118916;42037;36549;37276;51556;38058;22158;24699;31876;26419;48152;34958;44170;59056;29150;25555;31247.36;55743;46604;49815;38592;41885;39511
-106;'380;Italy;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;690000;596486;613000;587357;631000;615000;569970;498501;524054;465632;494768;454367;474405;448922;451457;480750;494895;515000;511020;496074;521250;468002;586000;580000;342000
-106;'380;Italy;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;439355;417709;466454;591094;541074;553287;504643;501978;560444;558265;498745;498379;496167;519128;484346;487615;461177;462442;412855;500776;465637;390825
-106;'380;Italy;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;372819;387799;441001;535039;518375;629391;603814;538613;584427;642409;535849;534204;518166;445493;435628;449119.36;497276;472091;383633;486138;596665;513987
-106;'380;Italy;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;101718;113663;178467;138383;134003;152813;148694;155750;161884;159519;174947;181151;209820;211705;221547;235607;218969;229662;184435;247128;306259;282790
-106;'380;Italy;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;148156;176877;238397;196662;212012;301269;346145;312784;326320;352518;316723;355823;408477;341450;350244;355256.18;330587;318771;243058;372080;481719;478404
-106;'380;Italy;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2021000;2120693;2017000;2126015;2219000;2340000;2542007;2500517;2599037;2437090;2044250;2300119;2305473;2267959;2210353;2166364;2134269;2018000;2010657;1893966;1736125;1157746;1263000;1102000;776000
-106;'380;Italy;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026000;881000;874000;768000;845854;860278;1000250;991020;1053329;1106169;1023974;805763;879732;802736;725956;657712;644522;617785;609846;604265;619045;554387;467425;456083;516978;430378
-106;'380;Italy;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030000;690291;701937;595106;674202;776932;924215;891773;958695;1090019;1123309;826564;862448;868784;700147;655797;636473;507023;504808;526182;572610;485776;382823;407376;578748;522576
-106;'380;Italy;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908000;881000;898000;897000;1001854;1045129;1166004;1310055;1335070;1429171;1371944;1161537;1354734;1417743;1434476;1423310;1397398;1388954;1307029;1376885;1214856;1246954;820083;1033043;862855;575692
-106;'380;Italy;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;819000;747751;782014;728403;796702;910158;1065648;1226535;1286273;1458182;1501243;1183007;1306027;1475916;1355589;1338854;1307079;1097993;1019895;1069126.14;1090295;1095836;731494;1014970;1256338;817689
-106;'380;Italy;1675;Other paper and paperboard;5510;Production;t;901700;994200;1101500;1135400;1254900;1435200;1607000;1760000;1976000;2071000;1884000;2188000;2035000;2559000;2199000;2765000;2573000;2636000;2597800;2858000;2814000;2626000;2394000;2510000;2469000;2444000;2615000;3040000;3105000;3252000;3347000;3542000;3555000;3956000;4033000;4114000;5101000;5286000;5499000;6074110;5974000;6257553;6302000;6364000;6529276;6627604;6653753;6239332;5557686;6053006;6078615;5682131;5913332;5940346;6148835;6295000;6484927;6624001;5958709;6236552;6917846;6368325;6357000
-106;'380;Italy;1675;Other paper and paperboard;5610;Import quantity;t;180200;183400;246100;215000;211600;224200;246700;303000;378800;382300;430900;469500;547800;597500;274600;347800;379300;479200;621100;649100;538400;524900;771200;922500;859000;974000;1110000;1244000;1346000;1315000;1373000;1519000;1521000;1800000;1674000;1647000;1879000;1902000;2082000;2205000;2065000;2375320;2366902;2382782;1745748;2495703;2494339;2401823;2361620;2574062;2540358;2576063;2556111;2723002;2954485;3088853;3330470;3463975;3390246;3249110;3253361;3869707;3397259
-106;'380;Italy;1675;Other paper and paperboard;5622;Import value;1000 USD;36280;37214;41270;37577;39401;59880;55600;69361;88706;104945;108341;139363;185731;310857;184266;195622;174455;224967;351402;370471;277640;256900;322157;397887;390049;520817;708242;1138702;1091405;1059985;1009389;1226685;985285;1064964;1453143;1197750;1182685;1192421;1264382;1411756;1246271;1491034;1757873;1866082;1191692;2030041;2299877;2404844;2005159;2192025;2509082;2255650;2531394;2624545;2314026;2311958;2814684.03;3119092;2677546;2419556;2982716;4071748;3258931
-106;'380;Italy;1675;Other paper and paperboard;5910;Export quantity;t;33900;23600;18400;33900;67800;89300;89200;93400;112600;144700;158000;167600;213600;283600;251900;244300;196900;221900;241800;157300;213200;72000;203700;230400;261000;299000;339000;608000;653000;573000;631000;655204;717719;823000;883000;950000;1100000;1134000;1071000;1207000;1078999;1178022;1169971;1279608;1223386;1960578;1906628;1839334;1785455;1522608;1422795;1506483;1626439;1703211;1773909;1835159;1939312;1882985;1775966;2045693;2309728;1912918;1797245
-106;'380;Italy;1675;Other paper and paperboard;5922;Export value;1000 USD;17275;12584;7877;10799;21598;27754;30401;33401;43054;54395;62102;74033;105113;195435;176459;167445;139030;168112;225501;127921;162145;54650;135097;146814;164407;231649;284718;669789;758438;700129;744588;781606;754177;808835;1180299;1184050;1119528;1106715;922826;1071796;954300;1001962;1152594;1297674;1242295;2327032;2607970;2696689;2277475;1619836;1698992;1716775;1943560;2029298;1798483;1751204;2011859.45;2109318;1843367;1875842;2375176;2603349;2115070
-106;'380;Italy;1676;Household and sanitary papers;5510;Production;t;;;;;;;255000;155000;155000;154000;121000;153000;;100000;95000;85000;97000;98000;110000;128000;150000;139000;156000;176000;200000;241000;232000;264000;266000;353000;388000;421000;416000;510000;545000;548000;1026000;1101500;1182000;1218652;1229000;1322865;1338000;1377000;1439490;1410506;1450963;1370389;1319380;1389205;1502327;1410237;1397075;1385933;1423258;1481000;1548984;1555446;1577890;1622580;1588000;1592000;1556000
-106;'380;Italy;1676;Household and sanitary papers;5610;Import quantity;t;14400;14700;19700;17200;16900;17900;19700;23600;40200;48700;44300;56200;83800;104300;50600;59200;15700;20000;19900;20000;14800;10400;23100;27100;22000;18000;21000;32000;34000;20000;14000;10000;21000;20000;15000;32000;36000;38000;52000;41000;44000;88007;90558;74451;40431;58817;60168;60591;68465;35399;32666;25251;38913;45709;43305;34487;106045;89327;69658;18314;19150;25088;33273
-106;'380;Italy;1676;Household and sanitary papers;5622;Import value;1000 USD;8344;8559;9492;8643;9062;13772;12788;16045;25985;31018;30388;40555;52779;89443;57819;64011;11139;14531;19803;23740;17161;12100;21225;24196;20365;20839;27724;50686;53819;34623;22042;16205;23236;22998;25743;48840;44816;49210;60111;53099;59800;118661;147990;138006;87819;133392;140933;153227;155424;82927;85520;61892;98802;106674;85926;60336;226759.1;180045;113988;34493;46555;71097;89348
-106;'380;Italy;1676;Household and sanitary papers;5910;Export quantity;t;7100;5000;3900;7100;14200;18800;18700;20000;25800;35100;35100;39600;71700;78000;78200;55700;2500;3400;2100;3100;5200;2700;8400;13100;13000;19000;10000;105000;133000;114000;110000;128000;175000;174000;226000;250000;296000;327000;131000;167000;163000;156074;163218;170178;207362;719280;703731;644196;633179;272250;283081;292006;314968;343960;340656;311728;308400;356295;331859;407355;391514;361287;343336
-106;'380;Italy;1676;Household and sanitary papers;5922;Export value;1000 USD;7256;5285;3308;4536;9072;11657;12768;14122;18142;22872;25069;31107;47857;74917;76079;56314;1756;2330;2445;3593;5040;2600;6109;10200;10494;18710;12761;133093;170359;164363;153573;178249;189245;188312;320125;364980;351692;324057;129770;167043;155169;151123;185712;201750;238928;1062696;1219815;1253861;1133533;374684;415833;379024;431310;458515;389861;350654;361750;473239;413867;469955;482386;602036;516555
-106;'380;Italy;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3811800;3945000;4286173;4200000;4414144;4439000;4471000;4541105;4661438;4680893;4434338;3877008;4260776;4168817;3892546;4108754;4122927;4287567;4374000;4496082;4613623;3937819;4187015;4841846;4350325;4459000
-106;'380;Italy;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1799000;1947000;2065000;1966000;2196046;2195299;2232611;1644512;2352881;2341717;2258253;2228945;2529901;2502539;2549563;2458886;2621997;2843925;2986761;3143781;3307630;3254602;3171598;3179385;3779681;3322395
-106;'380;Italy;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093436;1157482;1288716;1141353;1281225;1505419;1624753;1030099;1778144;2014888;2102167;1721843;2102298;2419726;2192752;2325972;2414006;2125219;2150175;2431990.86;2828051;2458024;2288786;2831109;3885501;3059861
-106;'380;Italy;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745000;892000;967000;840999;948313;925012;1029706;967739;1140748;1133842;1128126;1103197;1250129;1139370;1214452;1302597;1350095;1422611;1512428;1553613;1508325;1426020;1614253;1910636;1541041;1445363
-106;'380;Italy;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;712462;753045;837104;735156;745061;821013;931217;932620;1075650;1194310;1235657;994222;1244957;1283002;1337699;1473562;1529508;1372245;1364493;1424761.15;1582834;1374550;1358007;1856405;1962317;1555113
-106;'380;Italy;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;360000;200000;464000;491000;481000;498000;500000;500000;1977000;1754000;2445000;2172000;2142000;2463000;2367000;2303000;2149000;1927000;2004000;1917000;1879000;2086000;2490000;2550000;2638000;2706000;2816000;2826000;3120000;3136000;3207000;3702000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;138800;141200;189500;165600;162900;172600;190000;234000;308000;292900;346300;369400;404200;428600;189100;246100;304300;393500;503000;595400;496100;507400;730200;871400;805000;907000;1032000;467000;509000;1259000;1327000;1457000;1453000;1717000;1625000;1585000;1806000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;18503;18979;21048;19164;20094;30539;28356;35225;46504;48906;53651;63156;84779;157163;79948;83026;88407;118220;197636;305092;232326;237500;283688;353089;341989;450299;617205;443766;317330;982620;944808;1164795;921808;990898;1382385;1108750;1098303;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;14200;9900;7700;14200;28500;37500;37500;38400;60700;73500;73300;70900;105800;168100;130300;112100;71200;74500;65900;140500;184100;62900;170000;197300;225000;257000;306000;145000;139000;404000;454000;446204;461719;587000;599000;643000;739000;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;4837;3524;2206;3024;6047;7771;8513;9361;14812;18265;19258;21936;37231;91084;64177;50291;36396;42694;50917;107560;134752;46050;110427;121601;138110;192395;247745;122387;128645;457977;502239;488742;474424;559740;788816;757370;705768;;;;;;;;;;;;;;;;;;;;;;;;;;
-106;'380;Italy;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3811800;2425000;2573282;2525000;2631411;2680000;2683000;2774006;2832587;2739942;2623049;2168823;2339038;2335579;2119100;2337183;2316311;2396077;2362000;2404031;2421819;2451000;2738786;3206000;2848000;2680000
-106;'380;Italy;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1064000;1152000;1221761;1163188;1265658;1259699;1265917;1138619;1355063;1376061;1289986;1287097;1515383;1457455;1450695;1330933;1405447;1618052;1754093;1807941;2039194;2005830;1894386;1873062;2291728;2080853
-106;'380;Italy;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646934;684827;762472;675284;509659;575805;621505;558555;738407;880425;851959;659484;913872;1049122;873680;921059;920650;891119;921999;1024227.74;1367233;1087553;932560;1245193;1836559;1272150
-106;'380;Italy;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148000;178000;192501;167418;168899;185881;229568;127977;229531;193331;204930;122265;224897;227097;230775;238874;191083;223173;247203;150067;227218;229231;433936;579841;409081;468151
-106;'380;Italy;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141830;149909;166643;146348;82521;73726;99083;44905;108953;121524;101089;46502;140917;175680;164453;183719;164408;164903;165029;77399.11;185324;159594;224009;413806;366505;274246
-106;'380;Italy;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;837000;893448;862000;805409;717000;713000;652315;618734;650329;585985;577878;651839;590593;521703;522000;529550;557076;699546;612218;648815;0;0;0;0;0
-106;'380;Italy;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330000;357000;378657;360503;418396;441993;487345;60515;541493;527177;498248;454759;531845;579474;593533;606350;656623;700636;706134;727585;731663;718837;747627;761808;882421;736461
-106;'380;Italy;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200502;212246;236310;209288;382319;479608;541620;48774;592943;640494;673359;571014;665364;808597;758926;782614;842706;732975;731359;785267.01;832936;800860;822478;950761;1208045;1079245
-106;'380;Italy;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386000;462000;500709;435466;401471;377960;462478;368000;423591;468320;424271;408650;439033;405255;373560;407653;418851;435612;463022;505403;491975;490615;478508;541865;435807;343670
-106;'380;Italy;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368910;389924;433449;380661;313336;331779;404219;346045;393247;486992;499284;423312;495890;554788;518158;580162;590883;537351;523303;571542.8;620533;583130;570029;710748;732210;588894
-106;'380;Italy;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;341000;368021;374000;415876;395000;386000;399181;452715;474107;453105;419121;446306;432524;461497;458571;475066;490726;253000;553051;561154;512000;511607;596000;554000;464000
-106;'380;Italy;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362000;392000;415347;395435;422222;401585;408224;418275;398219;378083;412456;436894;450836;437104;474957;494342;534091;505745;508651;541404;525415;515889;518756;529826;574545;478772
-106;'380;Italy;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219930;232812;259208;229568;336266;386306;409323;404792;395697;434240;513891;438810;499649;535808;537156;600228;630001;488125;483473;555215.86;617630;559187;524811;620117;809016;684481
-106;'380;Italy;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202000;242000;262702;228472;294284;287236;275282;346581;366942;326391;344170;312887;308710;246761;343131;366700;386655;396413;406213;474532;402141;338190;314824;345323;314168;279146
-106;'380;Italy;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193553;204578;227414;199718;304565;371138;391087;491080;506998;498354;535434;434741;478253;404120;524629;568044;598332;515749;517564;570765.26;581217;464024;402659;481990;567570;482042
-106;'380;Italy;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;342000;451422;439000;561448;647000;689000;715603;757402;816515;772199;711186;823593;810121;790246;791000;802000;843688;1059454;926782;981835;974819;936622;1039846;948325;1315000
-106;'380;Italy;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;46000;49235;46874;89770;92022;71125;27103;58106;60396;57563;50195;31837;28506;30378;27261;25836;19492;17883;66851;11358;14046;10829;14689;30987;26309
-106;'380;Italy;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26070;27597;30726;27213;52981;63700;52305;17978;51097;59729;62958;52535;23413;26199;22990;22071;20649;13000;13344;67280.26;10252;10424;8937;15038;31881;23985
-106;'380;Italy;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;10000;11088;9643;83659;73935;62378;125181;120684;145800;154755;259395;277489;260257;266986;289370;353506;367413;395990;423611;386991;367984;386985;443607;381985;354396
-106;'380;Italy;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8169;8634;9598;8429;44639;44370;36828;50590;66452;87440;99850;89667;129897;148414;130459;141637;175885;154242;158597;205053.98;195760;167802;161310;249861;296032;209931
-106;'380;Italy;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;1075200;1152000;1141000;1330000;1436000;1265000;1535000;1535000;482000;350000;235000;304000;396000;24800;363000;361000;338000;311000;330000;352000;324000;297000;286000;289000;261000;253000;305000;313000;326000;352000;359000;373000;372700;372000;569285;545000;520544;525000;516000;548681;555660;521897;434605;361298;403025;407471;379348;407503;431486;438010;440000;439861;454932;443000;426957;488000;426000;342000
-106;'380;Italy;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;27000;27500;36900;32200;31800;33700;37000;45400;30600;40700;40300;43900;59800;64600;34900;42500;59300;65700;98200;33700;27500;7100;17900;24000;32000;49000;57000;745000;803000;36000;32000;52000;47000;63000;34000;30000;37000;65000;83000;99000;55000;91267;81045;75720;60805;84005;92454;82979;64210;8762;5153;1249;58312;55296;67255;67605;80644;67018;65986;59198;54826;64938;41591
-106;'380;Italy;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;9433;9676;10730;9770;10245;15569;14456;18091;16217;25021;24302;35652;48173;64251;46499;48585;74909;92216;133963;41639;28153;7300;17244;20602;27695;49679;63313;644250;720256;42742;42539;45685;40241;51068;45015;40160;39566;49775;46789;69941;45118;91148;104464;103323;73774;118505;144056;149450;127892;6800;3836;1006;106620;103865;102881;101447;155934.07;110996;105534;96277;105052;115150;109722
-106;'380;Italy;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;12600;8700;6800;12600;25100;33000;33000;35000;26100;36100;49600;57100;36100;37500;43400;76500;123200;144000;173800;13700;23900;6400;25300;20000;23000;23000;23000;358000;381000;55000;67000;81000;81000;62000;58000;57000;65000;62000;48000;73000;75000;73635;81741;79724;48285;100550;69055;67012;49079;229;344;25;8874;9156;10642;11003;77299;18365;18087;24085;7578;10590;8546
-106;'380;Italy;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;5182;3775;2363;3239;6479;8326;9120;9918;10100;13258;17775;20990;20025;29434;36203;60840;100878;123088;172139;16768;22353;6000;18561;15013;15803;20544;24212;414309;459434;77789;88776;114615;90508;60783;71358;61700;62068;70196;40011;67649;63975;105778;145869;164707;70747;188686;193845;207171;149720;195;157;52;38688;41275;36377;36057;225348.3;53245;54950;47880;36385;38996;43402
-106;'380;Italy;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2118027.04;2278628;2202102;2008845;2893399;3240810;2996342
-106;'380;Italy;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7252722.6;7746756;7428793;6757810;8507356;9111506;8867415
-106;'380;Italy;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91607.45;83606;82531;56073;93351;112281;86575
-106;'380;Italy;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143897.21;162569;163535;144252;197229;203856;191703
-106;'380;Italy;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29482.51;27181;23078;21958;35889;41176;27168
-106;'380;Italy;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39868.33;44046;48624;43991;57196;59893;52523
-106;'380;Italy;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62124.94;56425;59453;34115;57462;71105;59407
-106;'380;Italy;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104028.88;118523;114911;100261;140033;143963;139180
-106;'380;Italy;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222539.13;218243;221840;213697;404160;473629;407350
-106;'380;Italy;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135124.01;147818;146093;133100;181771;237198;204293
-106;'380;Italy;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100378.81;102020;94044;81033;92400;107251;94221
-106;'380;Italy;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94763.24;103187;100148;84848;108110;97656;101804
-106;'380;Italy;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552720.71;599715;510978;530650;787582;852022;799968
-106;'380;Italy;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464281.55;449571;429437;376094;480026;409774;412215
-106;'380;Italy;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401546;399950
-106;'380;Italy;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341570;291467
-106;'380;Italy;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9794;14064
-106;'380;Italy;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17386;23691
-106;'380;Italy;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29180;37340
-106;'380;Italy;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28237;30407
-106;'380;Italy;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1920;1691
-106;'380;Italy;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2522;1687
-106;'380;Italy;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;36
-106;'380;Italy;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;45
-106;'380;Italy;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;394
-106;'380;Italy;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;936
-106;'380;Italy;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893388;978743;967020;891074;1162833;1268337;1219996
-106;'380;Italy;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6213979;6690979;6351755;5846854;7319767;7964867;7743628
-106;'380;Italy;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31355.38;30942;59919;18619;51527;81582;67196
-106;'380;Italy;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28411.07;26508;27665;17314;23692;20944;20962
-106;'380;Italy;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226037.55;265359;265770;217699;301546;345708;321036
-106;'380;Italy;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172266.52;166124;210160;155348;196761;177211;192810
-106;'380;Italy;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1384585.95;1476233;1684532;1366074;1867108;2184391;2248147
-106;'380;Italy;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3756373.81;4037743;3943493;3689501;4337143;4996388;4729643
-106;'380;Italy;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20206.74;21243;19105;18885;31282;34010;26374
-106;'380;Italy;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34522.2;38429;37627;31514;43101;52975;42491
-106;'380;Italy;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363497.69;412325;393676;380792;587909;666728;579998
-106;'380;Italy;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556844.13;590038;553687;518538;670660;718533;626524
-106;'380;Italy;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107278.31;119426;127075;126862;145826;162923;178442
-106;'380;Italy;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;888057.02;928315;925863;942124;911104;1224159;1300011
-106;'380;Italy;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502792.09;517337;720284;442704;577658;717202;843800
-106;'380;Italy;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1224433.55;1370435;1357731;1283971;1576190;1797628;1578341
-106;'380;Italy;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390811.14;405902;424392;396831;524433;603528;619533
-106;'380;Italy;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052516.92;1110526;1068585;913354;1136088;1203093;1182276
-109;'388;Jamaica;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208058;205815;235942;215401;253940;287272;277915
-109;'388;Jamaica;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7778;5933;5674;6230;6325;4639;6005
-109;'388;Jamaica;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;8781;8349;10265;13066;14777;15263;16909;16639;18498;21209;21881;28697;28697;28697;28697;46826;44647;44431;48751;35404;75144;67426;72571;51761;46288;42506;47463;65772;75577;61578;70125;64755;88872;80528;93216;85638;89594;100619;96202;90515;81155;77630;79560;80926;90218;106309;102638;111862;85465;97591;95016;92497;100972;103485;91062;90417;96478;83929;107329;108117;127993;137915;111555
-109;'388;Jamaica;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;16;15;26;31;36;36;36;456;421;1002;1914;1977;1842;1828;1564;2640;1769;1769;1598;1598;1661;1012;1038;331;2522;396;1692;1939;1578;1251;694;321;558;509;233;152;183;222;238;158;319;899;1419;1675;1674;2444.22;834;1966;1892;2237;2466;1179;1769;1634;1501;1698
-109;'388;Jamaica;1861;Roundwood;5516;Production;m3;2000;251010;265317;7000;296046;65300;65300;405289;418328;437303;430631;327693;384774;427772;444073;510867;545021;540575;572721;664086;676322;674975;539000;630000;913970;880000;983000;990000;995000;1055000;917000;695500;630400;675000;577100;770011;803515;828587;855821;882110;874825;735981;728419;722258;715789;712080;707893;704289;700046;699856;692751;688738;685037;680502;676590;671130;667787;660789;655498;650261;645079;639951;634877
-109;'388;Jamaica;1861;Roundwood;5616;Import quantity;m3;4900;4000;2100;4600;5700;7100;19000;7700;4300;5500;2900;13600;13600;13600;13600;15000;10500;3100;4800;10500;2700;100;2800;2800;2800;5900;1200;1200;1200;52675;43108;1468;14548;16109;13345;13313;23130;18537;25046;1266;1173;2544;2926;2926;2926;4071;1247;2992;7085;207;283;8639;10361;43810;6548;4121;234;1018;10006;20797;23730;16156;13618
-109;'388;Jamaica;1861;Roundwood;5622;Import value;1000 USD;286;253;118;277;316;544;1483;539;191;567;511;1265;1265;1265;1265;1894;1987;548;850;2140;793;32;900;900;900;1098;165;165;161;4136;1440;842;3912;4703;4597;3905;7005;4736;6229;405;202;842;1138;1138;1138;730;518;745;1154;170;313;2639;3789;4021;1817;767;121;374;3183;7039;8288;6923;5316
-109;'388;Jamaica;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;5;0;4;3;60;0;81;1;0;0;0;0;0;4;0;0;9;19;0;19;1;42;151;85;3;649;59;60;3;60;79
-109;'388;Jamaica;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;0;3;2;28;0;33;2;0;0;0;0;0;12;0;0;14;7;2;15;1.22;31;35;15;18;499;17;55;1;100;100
-109;'388;Jamaica;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4000;4000;4000;12000;12000;30000;18000;34000;40000;40000;33000;42000;45000;33000;15000;4000;4500;5400;6000;6100;6200;6300;6300;6400;6400;6400;323;118;970;1550;1450;814;719;198;269;112;199;209;115;115;115;1252;583;583;583;583;583;583
-109;'388;Jamaica;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;814;8688;17258;22469;15494;12951
-109;'388;Jamaica;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;257;2449;5191;7644;6120;5118
-109;'388;Jamaica;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;629;0;0;0;59;77
-109;'388;Jamaica;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;488;0;18;0;99;99
-109;'388;Jamaica;1863;Roundwood, non-coniferous;5516;Production;m3;2000;251010;265317;7000;296046;65300;65300;405289;418328;437303;430631;327693;384774;427772;444073;506867;541021;536575;560721;652086;646322;656975;505000;590000;873970;847000;941000;945000;962000;1040000;913000;691000;625000;669000;571000;763811;797215;822287;849421;875710;868425;735658;728301;721288;714239;710630;707079;703570;699848;699587;692639;688539;684828;680387;676475;671015;666535;660206;654915;649678;644496;639368;634294
-109;'388;Jamaica;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;204;1318;3539;1261;662;667
-109;'388;Jamaica;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;117;734;1848;644;803;198
-109;'388;Jamaica;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;20;59;60;3;1;2
-109;'388;Jamaica;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;11;17;37;1;1;1
-109;'388;Jamaica;1864;Wood fuel;5516;Production;m3;1000;250010;263317;1000;292046;1000;1000;340989;359028;378003;371331;273393;330474;373472;389773;458567;494621;502775;539821;631186;628822;645275;468000;550000;793970;708000;779000;783000;790000;853000;750000;500000;450000;400000;300000;491811;524215;547287;572421;598710;591425;584228;577119;570096;563159;559490;555800;552200;548626;545051;541022;537022;533052;529112;525200;519740;514337;508990;503699;498462;493280;488152;483078
-109;'388;Jamaica;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895;0;0;0;0;0;0;20;20;20;20;20;20;20;20;20;20;20;0;0;0;1;1;1;;;;;;;
-109;'388;Jamaica;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;0;0;0;2;2;2;;;;;;;
-109;'388;Jamaica;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;1;0;1;85;;;;;;;
-109;'388;Jamaica;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;1;0.22;0;0;15;;;;;;;
-109;'388;Jamaica;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1628;Wood fuel, non-coniferous;5516;Production;m3;1000;250010;263317;1000;292046;1000;1000;340989;359028;378003;371331;273393;330474;373472;389773;458567;494621;502775;539821;631186;628822;645275;468000;550000;793970;708000;779000;783000;790000;853000;750000;500000;450000;400000;300000;491811;524215;547287;572421;598710;591425;584228;577119;570096;563159;559490;555800;552200;548626;545051;541022;537022;533052;529112;525200;519740;514337;508990;503699;498462;493280;488152;483078
-109;'388;Jamaica;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895;0;0;0;0;0;0;20;20;20;20;20;20;20;20;20;20;20;0;0;0;1;1;1;;;;;;;
-109;'388;Jamaica;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;0;0;0;2;2;2;;;;;;;
-109;'388;Jamaica;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;1;0;1;85;;;;;;;
-109;'388;Jamaica;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;1;0.22;0;0;15;;;;;;;
-109;'388;Jamaica;1865;Industrial roundwood;5516;Production;m3;1000;1000;2000;6000;4000;64300;64300;64300;59300;59300;59300;54300;54300;54300;54300;52300;50400;37800;32900;32900;47500;29700;71000;80000;120000;172000;204000;207000;205000;202000;167000;195500;180400;275000;277100;278200;279300;281300;283400;283400;283400;151753;151300;152162;152630;152590;152093;152089;151420;154805;151729;151716;151985;151390;151390;151390;153450;151799;151799;151799;151799;151799;151799
-109;'388;Jamaica;1865;Industrial roundwood;5616;Import quantity;m3;4900;4000;2100;4600;5700;7100;19000;7700;4300;5500;2900;13600;13600;13600;13600;15000;10500;3100;4800;10500;2700;100;2800;2800;2800;5900;1200;1200;1200;52675;43108;1468;11653;16109;13345;13313;23130;18537;25046;1246;1153;2524;2906;2906;2906;4051;1227;2972;7065;187;283;8639;10361;43809;6547;4120;234;1018;10006;20797;23730;16156;13618
-109;'388;Jamaica;1865;Industrial roundwood;5622;Import value;1000 USD;286;253;118;277;316;544;1483;539;191;567;511;1265;1265;1265;1265;1894;1987;548;850;2140;793;32;900;900;900;1098;165;165;161;4136;1440;842;3791;4703;4597;3905;7005;4736;6229;397;194;834;1130;1130;1130;722;510;737;1146;162;313;2639;3789;4019;1815;765;121;374;3183;7039;8288;6923;5316
-109;'388;Jamaica;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;5;0;4;3;60;0;81;1;0;0;0;0;0;4;0;0;9;1;0;19;0;42;150;0;3;649;59;60;3;60;79
-109;'388;Jamaica;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;0;3;2;28;0;33;2;0;0;0;0;0;12;0;0;14;1;2;14;1;31;35;0;18;499;17;55;1;100;100
-109;'388;Jamaica;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;4000;4000;4000;12000;12000;30000;18000;34000;40000;40000;33000;42000;45000;33000;15000;4000;4500;5400;6000;6100;6200;6300;6300;6400;6400;6400;323;118;970;1550;1450;814;719;198;269;112;199;209;115;115;115;1252;583;583;583;583;583;583
-109;'388;Jamaica;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52292;42951;1230;9700;13200;12400;11800;22600;15100;24500;700;700;2107;2107;2107;2107;3252;428;2173;6921;122;200;6684;7041;43483;6140;2238;6;814;8688;17258;22469;15494;12951
-109;'388;Jamaica;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4087;1412;780;3221;4214;4227;3267;6590;3524;5920;88;88;664;664;664;664;256;44;271;882;16;82;1564;1983;3492;1660;202;5;257;2449;5191;7644;6120;5118
-109;'388;Jamaica;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;0;0;629;0;0;0;59;77
-109;'388;Jamaica;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;11;4;0;0;488;0;18;0;99;99
-109;'388;Jamaica;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52292;42951;1230;9700;13200;12400;11800;22600;15100;24500;700;700;2107;2107;2107;2107;3252;428;2173;6921;122;200;6684;7041;43483;6140;2238;6;814;8688;17258;22469;15494;12951
-109;'388;Jamaica;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4087;1412;780;3221;4214;4227;3267;6590;3524;5920;88;88;664;664;664;664;256;44;271;882;16;82;1564;1983;3492;1660;202;5;257;2449;5191;7644;6120;5118
-109;'388;Jamaica;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;0;0;629;0;0;0;59;77
-109;'388;Jamaica;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;11;4;0;0;488;0;18;0;99;99
-109;'388;Jamaica;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1000;1000;2000;6000;4000;64300;64300;64300;59300;59300;59300;54300;54300;54300;54300;48300;46400;33800;20900;20900;17500;11700;37000;40000;80000;139000;162000;162000;172000;187000;163000;191000;175000;269000;271000;272000;273000;275000;277000;277000;277000;151430;151182;151192;151080;151140;151279;151370;151222;154536;151617;151517;151776;151275;151275;151275;152198;151216;151216;151216;151216;151216;151216
-109;'388;Jamaica;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;157;238;1953;2909;945;1513;530;3437;546;546;453;417;799;799;799;799;799;799;144;65;83;1955;3320;326;407;1882;228;204;1318;3539;1261;662;667
-109;'388;Jamaica;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;28;62;570;489;370;638;415;1212;309;309;106;170;466;466;466;466;466;466;264;146;231;1075;1806;527;155;563;116;117;734;1848;644;803;198
-109;'388;Jamaica;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;5;0;4;3;60;0;81;1;0;0;0;0;0;4;0;0;9;1;0;19;0;42;110;0;3;20;59;60;3;1;2
-109;'388;Jamaica;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;0;3;2;28;0;33;2;0;0;0;0;0;12;0;0;14;1;0;14;1;20;31;0;18;11;17;37;1;1;1
-109;'388;Jamaica;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;153;104;211;0;61;80;153;153;153;153;153;153;153;153;153;153;0;0;0;1530;910;43;90;311;164;6;761;777;0;149;451
-109;'388;Jamaica;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;29;117;0;52;43;36;36;36;36;36;36;36;36;36;36;0;0;0;516;507;50;40;108;83;4;455;449;0;180;117
-109;'388;Jamaica;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;5;0;4;3;60;0;81;1;0;0;0;0;0;4;0;0;0;0;0;1;0;22;110;0;3;20;59;60;3;0;2
-109;'388;Jamaica;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;0;3;2;28;0;33;2;0;0;0;0;0;12;0;0;0;0;0;7;0;10;31;0;18;11;17;37;1;0;1
-109;'388;Jamaica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;157;85;1800;2805;734;1513;469;3357;393;393;300;264;646;646;646;646;646;646;144;65;83;425;2410;283;317;1571;64;198;557;2762;1261;513;216
-109;'388;Jamaica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;28;3;511;460;253;638;363;1169;273;273;70;134;430;430;430;430;430;430;264;146;231;559;1299;477;115;455;33;113;279;1399;644;623;81
-109;'388;Jamaica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;0;18;0;20;0;0;0;0;0;0;0;1;0
-109;'388;Jamaica;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;0;7;1;10;0;0;0;0;0;0;0;1;0
-109;'388;Jamaica;1868;Sawlogs and veneer logs;5516;Production;m3;;;1000;4000;2000;64000;64000;64000;59000;59000;59000;54000;54000;54000;54000;52000;50000;37300;32400;32400;47000;29000;61000;67000;80000;96000;127000;134000;120000;130000;107000;95500;80400;125000;127100;128200;129300;131300;132400;132400;132400;753;300;1162;1630;1590;1093;1089;420;3805;729;716;985;390;390;390;2450;799;799;799;799;799;799
-109;'388;Jamaica;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;4000;4000;4000;12000;12000;30000;18000;34000;40000;40000;33000;42000;45000;33000;15000;4000;4500;5400;6000;6100;6200;6300;6300;6400;6400;6400;323;118;970;1550;1450;814;719;198;269;112;199;209;115;115;115;1252;583;583;583;583;583;583
-109;'388;Jamaica;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;1000;4000;2000;64000;64000;64000;59000;59000;59000;54000;54000;54000;54000;48000;46000;33300;20400;20400;17000;11000;27000;27000;40000;63000;85000;89000;87000;115000;103000;91000;75000;119000;121000;122000;123000;125000;126000;126000;126000;430;182;192;80;140;279;370;222;3536;617;517;776;275;275;275;1198;216;216;216;216;216;216
-109;'388;Jamaica;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1871;Other industrial roundwood;5516;Production;m3;1000;1000;1000;2000;2000;300;300;300;300;300;300;300;300;300;300;300;400;500;500;500;500;700;10000;13000;40000;76000;77000;73000;85000;72000;60000;100000;100000;150000;150000;150000;150000;150000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000
-109;'388;Jamaica;1871;Other industrial roundwood;5616;Import quantity;m3;4900;4000;2100;4600;5700;7100;19000;7700;4300;5500;2900;13600;13600;13600;13600;15000;10500;3100;4800;10500;2700;100;2800;2800;2800;5900;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1871;Other industrial roundwood;5622;Import value;1000 USD;286;253;118;277;316;544;1483;539;191;567;511;1265;1265;1265;1265;1894;1987;548;850;2140;793;32;900;900;900;1098;165;165;161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1000;1000;1000;2000;2000;300;300;300;300;300;300;300;300;300;300;300;400;500;500;500;500;700;10000;13000;40000;76000;77000;73000;85000;72000;60000;100000;100000;150000;150000;150000;150000;150000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000;151000
-109;'388;Jamaica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;4900;4000;2100;4600;5700;7100;19000;7700;4300;5500;2900;13600;13600;13600;13600;15000;10500;3100;4800;10500;2700;100;2800;2800;2800;5900;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;286;253;118;277;316;544;1483;539;191;567;511;1265;1265;1265;1265;1894;1987;548;850;2140;793;32;900;900;900;1098;165;165;161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1630;Wood charcoal;5510;Production;t;3967;4071;4078;4187;4300;4415;4534;4756;5081;5109;5288;5138;5392;5596;5735;5976;6041;6051;6221;6499;6525;6694;6850;7060;7337;7423;7331;7331;7248;7207;7298;7387;7473;7411;7540;7723;7917;8080;8253;8430;8532;8636;8741;8848;8956;9090;9200;9400;9505;9647;9787;9928;10072;10218;10366;10500;10636;10774;10913;11055;11193;11333;11475
-109;'388;Jamaica;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;3;3;1;12;1;6;3;7;2;4;10;7;7
-109;'388;Jamaica;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;11;3;12;4;60;4;9;7;13;6;6;12;10;12
-109;'388;Jamaica;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;100;300;200;300;300;300;300;300;300;200;100;100;100;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;23;24;12;1;1;8;20;20;0;6;4;2;9
-109;'388;Jamaica;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;16;15;26;31;36;36;36;36;34;42;11;11;11;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;12;8;6;1;1;10;11;11;0;6;1;2;4
-109;'388;Jamaica;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;180;600;600;600;600;600;600;600;600;600;68;58;68;113;225;208;97;133;99;67;91;23;38;43;30
-109;'388;Jamaica;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;34;163;163;173;173;173;173;177;177;177;64;103;84;233;227;186;104;41;53;34;26;7;11;46;26
-109;'388;Jamaica;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;90;90;90;90;90;90;90;90;90;7;11;0;1;0;1;1;1;13;1;1;41;17;13;11
-109;'388;Jamaica;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;8;8;8;8;8;8;8;8;11;20;1;3;0;2;2;2;6;3;3;62;49;12;49
-109;'388;Jamaica;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;240;20;130;60;90;180;300;300;300;300;300;300;300;300;300;39;29;39;82;77;64;50;122;75;50;78;3;28;26;16
-109;'388;Jamaica;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;11;3;23;9;50;34;35;35;45;45;45;45;49;49;49;26;65;46;120;108;126;58;27;33;17;20;6;10;43;23
-109;'388;Jamaica;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890;547;0;0;0;0;0;0;90;90;90;90;90;90;90;90;90;7;11;0;0;0;1;1;1;13;1;1;23;12;13;11
-109;'388;Jamaica;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;47;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;11;20;1;0;0;2;2;2;6;3;3;56;45;12;49
-109;'388;Jamaica;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;300;300;300;300;300;300;300;300;300;29;29;29;31;148;144;47;11;24;17;13;20;10;17;14
-109;'388;Jamaica;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;128;128;128;128;128;128;128;128;128;38;38;38;113;119;60;46;14;20;17;6;1;1;3;3
-109;'388;Jamaica;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;18;5;0;0
-109;'388;Jamaica;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;6;4;0;0
-109;'388;Jamaica;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;19;0;29;7;7;16;9
-109;'388;Jamaica;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;4;0;69;8;11;16;15
-109;'388;Jamaica;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;12;12
-109;'388;Jamaica;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;12;12
-109;'388;Jamaica;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;19;0;1;0;0;1;1
-109;'388;Jamaica;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;4;0;1;0;0;0;1
-109;'388;Jamaica;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1
-109;'388;Jamaica;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1
-109;'388;Jamaica;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;7;7;15;8
-109;'388;Jamaica;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;8;11;16;14
-109;'388;Jamaica;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11
-109;'388;Jamaica;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11
-109;'388;Jamaica;1872;Sawnwood;5516;Production;m3;;;400;1400;1200;40000;40000;40000;37000;37000;37000;34000;34000;34000;34000;30000;29000;24000;25000;25000;25000;25000;23000;31000;31000;26000;30000;44000;40000;40000;32000;27000;24000;63000;63100;64100;65100;65200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;66200;65730;65730;65730;65730
-109;'388;Jamaica;1872;Sawnwood;5616;Import quantity;m3;60100;49800;60800;74500;90500;79300;86900;81900;92300;78700;95300;122600;122600;122600;122600;98400;83300;45700;44400;33500;70500;98000;73800;58000;41600;43500;71200;94800;49100;19800;95000;95372;358700;237463;117932;105271;107961;95980;94517;102693;97300;119766;95122;115389;111000;121000;126000;103912;86312;112889;118368;96084;119568;118634;95948;134178;143755;54976;140472;156989;132985;125669;143870
-109;'388;Jamaica;1872;Sawnwood;5622;Import value;1000 USD;3924;3444;3945;5091;6191;5437;6035;5892;6923;7000;7587;9896;9896;9896;9896;17736;15048;9968;9651;4029;22823;30119;17521;11277;8538;7818;13413;18211;11125;6414;19475;18041;27257;29741;28480;29281;35453;29607;29162;31948;29606;30718;25773;35306;42308;43806;41294;43221;26244;30804;30485;24746;34352;35861;31882;35392;41844;19317;43366;49658;56593;50228;39904
-109;'388;Jamaica;1872;Sawnwood;5916;Export quantity;m3;;;;;;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;612;99;305;213;314;211;26;46;3;0;29;0;11;0;7;65;193;10;10;33;6;11;0;1701;541;309;19;2;229;33;329;0
-109;'388;Jamaica;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;37;22;23;33;14;61;36;10;0;11;0;5;0;9;18;59;9;13;170;57;34;0;1091;178;178;541;1;517;51;39;0
-109;'388;Jamaica;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3100;3100;3100;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;2730;2730;2730;2730
-109;'388;Jamaica;1632;Sawnwood, coniferous;5616;Import quantity;m3;49750;40450;51950;62800;78500;66750;70450;69550;73800;61050;50450;92150;92150;92150;92150;82450;69800;39850;38850;13750;55550;79750;58550;51200;34800;32000;63000;78900;26400;6800;87700;86635;350000;228900;99000;94719;98966;85446;86983;99493;95106;114193;91743;112300;108400;118000;124000;100000;84548;111274;117145;95337;118460;117612;94310;132035;140690;44821;123077;117271;117680;112544;141281
-109;'388;Jamaica;1632;Sawnwood, coniferous;5622;Import value;1000 USD;2967;2591;3206;4055;4946;4240;4495;4787;5282;4573;4099;7124;7124;7124;7124;14168;11982;7926;8064;2760;18458;23900;12676;8739;6000;5018;10328;13085;4716;1302;16851;16135;24899;26471;25057;25349;30713;26477;26646;30770;28085;29443;24557;33546;40614;41809;39381;40053;24839;29354;29373;23989;33345;35042;30493;33971;39779;13619;33271;38079;45801;39564;38460
-109;'388;Jamaica;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;60;193;0;0;0;6;11;0;94;436;147;7;0;229;17;24;0
-109;'388;Jamaica;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;15;59;0;13;166;57;32;0;23;91;41;532;0;204;7;39;0
-109;'388;Jamaica;1633;Sawnwood, non-coniferous;5516;Production;m3;;;400;1400;1200;40000;40000;40000;37000;37000;37000;34000;34000;34000;34000;30000;29000;24000;25000;25000;25000;25000;23000;31000;31000;26000;30000;44000;40000;40000;32000;27000;24000;60000;60000;61000;62000;62000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000
-109;'388;Jamaica;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;10350;9350;8850;11700;12000;12550;16450;12350;18500;17650;44850;30450;30450;30450;30450;15950;13500;5850;5550;19750;14950;18250;15250;6800;6800;11500;8200;15900;22700;13000;7300;8737;8700;8563;18932;10552;8995;10534;7534;3200;2194;5573;3379;3089;2600;3000;2000;3912;1764;1615;1223;747;1108;1022;1638;2143;3065;10155;17395;39718;15305;13125;2589
-109;'388;Jamaica;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;957;853;739;1036;1245;1197;1540;1105;1641;2427;3488;2772;2772;2772;2772;3568;3066;2042;1587;1269;4365;6219;4845;2538;2538;2800;3085;5126;6409;5112;2624;1906;2358;3270;3423;3932;4740;3130;2516;1178;1521;1275;1216;1760;1694;1997;1913;3168;1405;1450;1112;757;1007;819;1389;1421;2065;5698;10095;11579;10792;10664;1444
-109;'388;Jamaica;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;612;99;305;213;314;211;26;46;3;0;29;0;11;0;7;5;0;10;10;33;0;0;0;1607;105;162;12;2;0;16;305;0
-109;'388;Jamaica;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;37;22;23;33;14;61;36;10;0;11;0;5;0;9;3;0;9;0;4;0;2;0;1068;87;137;9;1;313;44;0;0
-109;'388;Jamaica;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1634;Veneer sheets;5616;Import quantity;m3;300;150;125;375;100;100;100;100;100;200;100;200;200;200;200;500;500;400;500;500;500;500;500;500;500;500;500;500;500;500;500;48;7700;1700;166;410;1400;440;838;700;314;469;218;413;453;278;235;1855;519;517;68;64;49;170;28;43;129;53;373;21;77;126;56
-109;'388;Jamaica;1634;Veneer sheets;5622;Import value;1000 USD;12;6;5;15;4;9;9;15;9;17;17;35;35;35;35;45;119;174;161;161;161;161;161;161;161;161;161;161;161;161;161;22;217;131;147;204;390;293;150;156;202;150;173;296;214;412;244;1311;858;290;159;52;110;159;79;70;276;88;170;55;53;526;120
-109;'388;Jamaica;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;28;0;0;0;96;0;0
-109;'388;Jamaica;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;73;0;0;129;270;0;0
-109;'388;Jamaica;1873;Wood-based panels;5516;Production;m3;;;;;;2200;2300;4700;6000;8400;5500;13000;10800;10900;8700;10800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3000;2000;1000;0;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1873;Wood-based panels;5616;Import quantity;m3;4000;3200;3500;6600;8600;7827;8711;14211;10806;8927;14437;21132;21132;21132;21132;6832;9100;10400;6800;5600;33500;10200;13500;8400;8400;4600;10300;12500;20600;24600;23300;15254;38705;63800;36898;47758;53099;55345;53859;58385;77079;83412;78714;70904;63039;42328;49176;42754;39332;57689;47303;51294;49309;50545;54560;53747;63474;69342;54766;77021;70532;59437;70047
-109;'388;Jamaica;1873;Wood-based panels;5622;Import value;1000 USD;605;442;439;803;974;1100;1185;1485;1241;1432;1717;1779;1779;1779;1779;1510;1744;2753;2354;1463;8584;3201;4289;3108;3108;2071;4889;4400;7908;9198;6046;4077;8694;9745;10903;12508;13866;15379;16573;15457;15057;15035;22721;20115;18801;23938;26753;25029;19364;24931;18192;19992;19747;20190;20593;16098;19345;24692;17525;20884;30525;27097;25252
-109;'388;Jamaica;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;42;36;134;41;0;0;580;300;41;9;89;976;214;37
-109;'388;Jamaica;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;231;72;207;40;20;0;244;133;19;6;215;597;236;18
-109;'388;Jamaica;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1640;Plywood and LVL;5616;Import quantity;m3;2900;2400;2600;4700;6800;6900;8100;11300;8200;7700;13000;19700;19700;19700;19700;5400;8700;9400;5400;4800;32700;9300;12300;7400;7400;3800;9500;1000;1600;14300;16600;11106;31600;58000;30998;25558;26299;30845;36336;40300;62100;62100;64800;54000;45000;37000;39000;29000;30128;50800;38453;41306;41583;41367;50236;47898;57747;63306;49832;71173;64618;51459;64701
-109;'388;Jamaica;1640;Plywood and LVL;5622;Import value;1000 USD;463;355;332;641;802;998;1119;1368;1116;1232;1489;1502;1502;1502;1502;1233;1534;1884;1196;1069;8163;2649;3495;2694;2694;1703;4521;470;764;5059;4462;2879;6075;7260;8383;8521;9626;10972;13406;11747;12303;11639;20000;16761;14006;21569;24179;20572;16803;22704;15553;17223;17592;17460;18811;14131;17269;22593;15194;18686;27173;21826;21277
-109;'388;Jamaica;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;42;29;19;18;0;0;573;293;34;2;79;966;204;27
-109;'388;Jamaica;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;231;52;163;34;20;0;242;131;17;4;213;595;234;16
-109;'388;Jamaica;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17
-109;'388;Jamaica;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21
-109;'388;Jamaica;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;2200;2300;4700;6000;8400;5500;13000;10800;10900;8700;10800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3000;2000;1000;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;800;400;600;1000;1100;400;400;700;500;700;700;800;800;800;800;800;100;300;700;600;600;600;800;300;300;300;300;11000;18500;9800;6200;1644;4200;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;110;61;88;115;132;68;50;91;66;145;162;210;210;210;210;210;75;271;560;317;317;317;585;171;171;171;171;3733;6947;3942;1387;553;1856;1439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3100;1900;1900;1900;3600;1600;2463;1667;3100;3600;1000;900;1800;1075;650;1052;290;365;2382;312;323;32;63;203;64;496;821;178
-109;'388;Jamaica;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1322;1396;774;608;580;937;531;535;438;793;1196;424;419;942;421;456;659;315;354;620;153;171;25;25;273;61;339;762;232
-109;'388;Jamaica;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;108;23;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;6;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;157;49;24;0;0;0;0;44;5;5;5;5;0;47
-109;'388;Jamaica;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;34;27;13;0;0;0;0;64;12;6;6;6;0;12
-109;'388;Jamaica;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1874;Fibreboard;5616;Import quantity;m3;300;400;300;900;700;527;211;2211;2106;527;737;632;632;632;632;632;300;700;700;200;200;300;400;700;700;500;500;500;500;500;500;2504;2905;2600;2900;19100;24900;22600;15623;14485;13379;18849;12247;13804;14439;4328;9276;11954;8006;6082;7749;9674;7361;6796;4012;5526;5651;5968;4726;5779;5413;7157;5121
-109;'388;Jamaica;1874;Fibreboard;5622;Import value;1000 USD;32;26;19;47;40;34;16;26;59;55;66;67;67;67;67;67;135;598;598;77;104;235;209;243;243;197;197;197;197;197;197;645;763;1046;1198;2591;3466;3799;2587;2773;2223;2861;2283;2561;3599;1945;2155;3515;2073;1737;1953;2441;1801;2110;1629;1796;1987;2062;2052;2131;3007;4509;3731
-109;'388;Jamaica;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;7;7;7;7;10;10;10;10
-109;'388;Jamaica;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;2;2;2;2;2;2;2;2
-109;'388;Jamaica;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;3100;3100;4600;3452;3700;1200;3877;2122;700;1000;500;100;534;149;147;0;574;399;1857;1415;2078;3816;3986;3134;3903;3510;3963;2547
-109;'388;Jamaica;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1198;720;720;1075;924;1215;636;1008;758;431;754;472;69;424;106;100;0;372;240;954;750;803;1483;1582;1348;1358;2081;2834;1256
-109;'388;Jamaica;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;2185;2779;3158;2225;2104;2439;828;176;4020;1932;1424;1424;3100;2223;349;559;558;753;685;965;1415;1574;2955;2400
-109;'388;Jamaica;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;474;498;644;543;578;865;473;86;1508;696;751;751;960;659;362;411;334;345;319;512;627;750;1524;2367
-109;'388;Jamaica;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;10;10;10;10
-109;'388;Jamaica;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2
-109;'388;Jamaica;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;5;;;16000;21800;18000;11500;8600;9400;11814;7900;11000;11000;3000;9000;7400;5925;4511;6325;6000;4739;4590;2038;2890;1082;1297;627;461;329;239;174
-109;'388;Jamaica;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;7;;;1871;2746;2724;1484;1084;1089;1209;982;1552;1980;1000;2000;1583;1271;886;1202;1109;902;794;468;659;159;161;192;146;176;151;108
-109;'388;Jamaica;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;400;300;900;700;527;211;2211;2106;527;737;632;632;632;632;632;300;700;700;200;200;300;400;700;700;500;500;500;500;500;500;2473;2900;2600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;32;26;19;47;40;34;16;26;59;55;66;67;67;67;67;67;135;598;598;77;104;235;209;243;243;197;197;197;197;197;197;624;756;1046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;6000;14000;8000;8000;6000;4000;4000;4000;3000;4000;4000;8000;2000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;6000;8000;6000;10000;12000;12000;12000;12000;12000;12000;12000
-109;'388;Jamaica;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;2801;1647;997;448;200;1600;600;2300;4100;4100;2100;3000;2200;3600;5100;4200;18097;3855;162;211;297;189;72;45;28;4;5;1;15;27;21;3;4;289;260;17;16;8;27;103;185;162;274;342;285;280;188;135
-109;'388;Jamaica;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;805;629;346;156;102;116;218;966;1320;1320;760;1163;1240;2539;2982;2822;2332;1183;155;187;184;114;39;37;25;11;11;5;15;21;14;9;10;138;120;34;24;21;38;111;176;147;275;353;255;301;245;157
-109;'388;Jamaica;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;2524;7249;3692;4304;2649;1600;1800;1700;1600;3500;3500;3800;3800;4000;6800;4000;3200;2964;4000;6156;6766;5541;4722;3446;3294;2883;1915;1366;2291;1582;1101;2421;932;1067;3548;4073;5111;5157;5294;7436;5574;10364;11874;10395;8384;7555;5830;7033;9840
-109;'388;Jamaica;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;420;387;366;332;277;142;150;180;169;317;317;213;213;325;342;368;178;519;204;501;739;466;361;212;227;233;108;85;107;84;80;135;104;165;416;980;1378;1086;2334;641;746;1208;1512;1185;783;528;576;683;986
-109;'388;Jamaica;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;300;1400;100;542;166;162;176;227;156;51;40;0;0;0;0;0;1;0;0;0;274;255;5;8;0;0;0;0;0;0;0;38;38;0;0
-109;'388;Jamaica;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;715;379;203;319;203;375;100;155;175;164;107;35;29;0;0;0;0;0;3;0;0;0;112;101;14;4;0;0;0;0;0;0;0;47;47;1;1
-109;'388;Jamaica;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;21;0;57;0;50;26;26;26;26;26;26;26
-109;'388;Jamaica;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;2;0;25;13;13;13;13;13;13;13
-109;'388;Jamaica;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;300;1400;100;542;155;162;156;158;118;19;45;0;0;0;0;0;0;0;0;0;274;255;5;8;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;715;379;203;319;203;375;94;155;151;117;81;13;38;0;0;0;0;0;0;0;0;0;112;101;14;4;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;0;0;;;;;;;
-109;'388;Jamaica;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;;;;;;;
-109;'388;Jamaica;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;255;0;8;0;0;0;0;;;;;;;
-109;'388;Jamaica;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;0;4;0;0;0;0;;;;;;;
-109;'388;Jamaica;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;0;0;;;;;;;
-109;'388;Jamaica;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;;;;;;;
-109;'388;Jamaica;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;300;1400;100;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;
-109;'388;Jamaica;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;715;379;203;319;203;;;;;;;;;;;;;;;;;;;;14;;;;;;;;;;;;
-109;'388;Jamaica;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;155;162;156;158;118;19;40;0;0;0;0;0;0;0;0;0;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;94;155;151;117;81;13;29;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;115;143;156;158;118;19;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;62;144;151;117;81;13;29;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0;0;0;0;0;0;0;;;;;;;
-109;'388;Jamaica;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;;;;;;;
-109;'388;Jamaica;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;20;69;38;32;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;38;0;0
-109;'388;Jamaica;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;24;47;26;22;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;47;1;1
-109;'388;Jamaica;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;21;0;0;0;50;26;26;26;26;26;26;26
-109;'388;Jamaica;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;25;13;13;13;13;13;13;13
-109;'388;Jamaica;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;81;0;0;3;3;2;25;1;1;0;0;0
-109;'388;Jamaica;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;49;0;0;6;6;3;28;2;1;0;1;0
-109;'388;Jamaica;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;131;116;120;120;120;120;120;120;120;120;120;120
-109;'388;Jamaica;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;14;16;16;16;16;16;16;16;16;16;16
-109;'388;Jamaica;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;6000;14000;8000;8000;6000;4000;4000;4000;3000;4000;4000;8000;2000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;6000;8000;6000;10000;12000;12000;12000;12000;12000;12000;12000
-109;'388;Jamaica;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;2801;1647;997;448;200;1600;600;2300;4100;4100;2100;1900;1700;3300;3700;4100;17555;3689;0;35;70;33;21;5;28;4;5;1;15;26;21;3;4;15;5;12;8;8;27;103;185;162;274;342;247;242;188;135
-109;'388;Jamaica;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;805;629;346;156;102;116;218;966;1320;1320;760;448;861;2336;2663;2619;1957;1083;0;12;20;7;4;8;25;11;11;5;15;18;14;9;10;26;19;20;20;21;38;111;176;147;275;353;208;254;244;156
-109;'388;Jamaica;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;2524;7249;3692;4304;2649;1600;1800;1700;1600;3500;3500;3800;3800;4000;6800;4000;3200;2964;4000;6156;6766;5541;4722;3446;3294;2883;1915;1366;2291;1582;1101;2421;932;1067;3548;4073;5094;5136;5294;7379;5574;10314;11848;10369;8358;7529;5804;7007;9814
-109;'388;Jamaica;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;420;387;366;332;277;142;150;180;169;317;317;213;213;325;342;368;178;519;204;501;739;466;361;212;227;233;108;85;107;84;80;135;104;165;416;980;1374;1082;2334;639;746;1183;1499;1172;770;515;563;670;973
-109;'388;Jamaica;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;3500;9000;10000;10000;10000;18000;18000;18000;15000;11000;2300;2800;3700;4000;4000;4600;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1876;Paper and paperboard;5610;Import quantity;t;19700;20300;25500;28700;29700;37900;39200;40100;47500;50000;52200;59000;59000;59000;59000;45100;44900;46000;46300;32100;40200;35600;44600;40600;38000;39600;28700;52000;84500;48000;41700;45173;57600;43933;47876;40801;33634;51306;52759;45537;36874;31603;32007;25579;24655;29697;26838;31573;31100;30965;32317;34093;30027;32910;30090;34831;33781;34455;36297;28274;28743;36573;31199
-109;'388;Jamaica;1876;Paper and paperboard;5622;Import value;1000 USD;3954;4204;5758;6880;7292;8173;8197;8708;10134;12193;12049;15722;15722;15722;15722;24836;25120;30642;35579;27509;42667;33695;48734;34995;32261;30598;27672;41595;53683;38687;40181;39441;47599;36042;48899;39533;32757;50515;44008;42361;35914;30701;29577;23883;27563;37232;33643;41369;37634;41162;45746;44750;42722;42939;36435;37827;34678;39108;42629;30204;32199;52823;40753
-109;'388;Jamaica;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;300;1700;1900;1900;1000;700;1200;1000;1000;900;900;900;800;800;200;2551;150;1011;842;672;621;294;24;424;624;266;14;45;92;106;31;149;340;176;88;455;3.74;42.07;77;273;369;185;403;155;26;388;504
-109;'388;Jamaica;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;594;1571;1689;1689;1678;1384;2471;1452;1452;1385;1385;1336;670;670;153;1690;103;1169;1174;1077;848;421;25;305;393;129;37;86;134;74;28;87;116;165;29;260;15;122;74;218;289;191;352;240;72;401;513
-109;'388;Jamaica;2042;Graphic papers;5610;Import quantity;t;6600;7100;6900;8400;9300;9400;11600;10100;12000;12700;13300;15000;15000;15000;15000;15200;10000;11700;13500;10400;12900;12400;10200;10900;8300;10700;10700;12400;36000;13700;16700;13233;18300;17071;20043;18150;13893;13958;15479;17533;16620;16224;18365;17438;16553;18820;16461;19144;16158;14708;15598;17570;13961;13309;13166;14057;13348;12943;13559;9004;8628;11485;9176
-109;'388;Jamaica;2042;Graphic papers;5622;Import value;1000 USD;1419;1477;1467;1857;2125;1883;2709;2698;2966;3280;3541;4694;4694;4694;4694;4927;8181;8399;8176;7923;10939;10936;11553;9134;6400;8739;8739;11943;13611;12248;17502;10617;15437;14390;22725;19423;15659;15012;15453;17305;16657;15946;16002;14765;16466;20882;19410;24006;19684;19265;21562;20113;17919;16403;17030;14824;13777;15475;16987;10415;9991;17581;13831
-109;'388;Jamaica;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;0;78;0;1;0;0;0;0;2;55;0;0;1;152;61;18;19;0.44;1.07;60;133;163;24;143;26;17;16;17
-109;'388;Jamaica;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;61;0;6;0;0;0;0;6;39;0;0;7;57;125;5;22;7;6;33;78;87;34;113;34;22;17;19
-109;'388;Jamaica;1671;Newsprint;5610;Import quantity;t;4900;5600;5500;6100;6300;6300;7900;5400;7100;8600;8400;8700;8700;8700;8700;8700;4700;6000;6000;3500;6100;5000;4600;4000;4500;3400;3400;5400;28900;8000;8600;4172;9300;7462;11057;8886;6400;8758;7011;8023;9400;8825;11286;9867;8124;9857;7820;9661;7587;6767;7513;9372;5402;6205;4081;3845;3105;2979;3276;1356;1666;1479;1142
-109;'388;Jamaica;1671;Newsprint;5622;Import value;1000 USD;841;922;876;1004;1043;818;1323;884;1205;1487;1517;1759;1759;1759;1759;3214;2323;2964;3000;1750;3254;2794;3676;2159;2500;1788;1788;3484;4740;4724;6731;2281;5301;3961;8574;7490;4739;6148;4463;5207;6671;5431;6234;5737;6321;8924;6982;9066;6580;5798;6921;7690;5003;5491;3776;3155;2383;2348;2613;973;1205;1428;1223
-109;'388;Jamaica;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;15;15;15;15;15;15;15;15
-109;'388;Jamaica;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;8;8;8;8;8;8;8;8
-109;'388;Jamaica;1674;Printing and writing papers;5610;Import quantity;t;1700;1500;1400;2300;3000;3100;3700;4700;4900;4100;4900;6300;6300;6300;6300;6500;5300;5700;7500;6900;6800;7400;5600;6900;3800;7300;7300;7000;7100;5700;8100;9061;9000;9609;8986;9264;7493;5200;8468;9510;7220;7399;7079;7571;8429;8963;8641;9483;8571;7941;8085;8198;8559;7104;9085;10212;10243;9964;10283;7648;6962;10006;8034
-109;'388;Jamaica;1674;Printing and writing papers;5622;Import value;1000 USD;578;555;591;853;1082;1065;1386;1814;1761;1793;2024;2935;2935;2935;2935;1713;5858;5435;5176;6173;7685;8142;7877;6975;3900;6951;6951;8459;8871;7524;10771;8336;10136;10429;14151;11933;10920;8864;10990;12098;9986;10515;9768;9028;10145;11958;12428;14940;13104;13467;14641;12423;12916;10912;13254;11669;11394;13127;14374;9442;8786;16153;12608
-109;'388;Jamaica;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;0;78;0;1;0;0;0;0;2;55;0;0;1;137;46;18;19;0.44;1.07;60;118;148;9;128;11;2;1;2
-109;'388;Jamaica;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;61;0;6;0;0;0;0;6;39;0;0;7;54;122;5;22;7;6;33;70;79;26;105;26;14;9;11
-109;'388;Jamaica;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582;1030;1500;665;1202;1423;2603;2265;4491;3843;3407;2891;2522;2372;2456;1897;1738;2323;2825;2971;3214;2627;1913;1468;1654;1252
-109;'388;Jamaica;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818;758;1026;701;1253;1667;3228;3574;5725;5757;5756;4716;4696;4642;3859;3258;2770;3353;2912;2939;3438;3301;2059;1692;2453;2070
-109;'388;Jamaica;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;18;19;0.44;1;1;5;1;1;1;11;2;0;0
-109;'388;Jamaica;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;3;13;4;3;3;15;12;7;6;25;11;6;1
-109;'388;Jamaica;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009;4489;4291;3675;2322;2366;1819;1388;1213;2074;3297;2616;2898;2627;3000;3349;2392;3086;3130;3238;2567;3626;2303;1879;3188;3421
-109;'388;Jamaica;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3424;4960;5278;4292;3001;2724;2217;2030;1808;2826;4991;3899;4608;4911;4059;4630;3479;4313;3483;3411;4294;5767;3379;2363;5123;5003
-109;'388;Jamaica;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;1;108;14;0;0;0;0.07;57;111;145;4;114;0;0;1;0
-109;'388;Jamaica;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;7;45;34;1;4;3;3;25;50;62;6;51;0;1;2;2
-109;'388;Jamaica;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3609;2949;3719;2880;3875;3290;3149;4776;3259;2724;2779;3064;2521;3086;2742;3313;2974;3676;4257;4034;4183;4030;3432;3615;5164;3361
-109;'388;Jamaica;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622;5272;5794;4993;6261;5377;3583;4541;4425;3845;4193;4489;4163;5088;4505;5028;4663;5588;5274;5044;5395;5306;4004;4731;8577;5535
-109;'388;Jamaica;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;2;43;0;0;0;1;32;0;0;0;0;2;2;2;4;13;0;0;0;2
-109;'388;Jamaica;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;6;18;0;0;0;4;88;1;5;0;0;5;5;5;13;48;1;2;1;8
-109;'388;Jamaica;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;3500;9000;10000;10000;10000;18000;18000;18000;15000;11000;2300;2800;3700;4000;4000;4600;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1675;Other paper and paperboard;5610;Import quantity;t;13100;13200;18600;20300;20400;28500;27600;30000;35500;37300;38900;44000;44000;44000;44000;29900;34900;34300;32800;21700;27300;23200;34400;29700;29700;28900;18000;39600;48500;34300;25000;31940;39300;26862;27833;22651;19741;37348;37280;28004;20254;15379;13642;8141;8102;10877;10377;12429;14942;16257;16719;16523;16066;19601;16924;20774;20433;21512;22738;19270;20115;25088;22023
-109;'388;Jamaica;1675;Other paper and paperboard;5622;Import value;1000 USD;2535;2727;4291;5023;5167;6290;5488;6010;7168;8913;8508;11028;11028;11028;11028;19909;16939;22243;27403;19586;31728;22759;37181;25861;25861;21859;18933;29652;40072;26439;22679;28824;32162;21652;26174;20110;17098;35503;28555;25056;19257;14755;13575;9118;11097;16350;14233;17363;17950;21897;24184;24637;24803;26536;19405;23003;20901;23633;25642;19789;22208;35242;26922
-109;'388;Jamaica;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;300;1700;1900;1900;1000;700;1200;1000;1000;900;900;900;800;800;200;2551;150;1005;841;672;543;294;23;424;624;266;14;43;37;106;31;148;188;115;70;436;3.3;41;17;140;206;161;260;129;9;372;487
-109;'388;Jamaica;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;594;1571;1689;1689;1678;1384;2471;1452;1452;1385;1385;1336;670;670;153;1690;103;1166;1173;1077;787;421;19;305;393;129;37;80;95;74;28;80;59;40;24;238;8;116;41;140;202;157;239;206;50;384;494
-109;'388;Jamaica;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;3500;9000;10000;10000;10000;6000;6000;6000;5000;4000;2300;2800;3700;4000;4000;4600;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;300;300;400;100;100;100;100;100;100;100;300;1100;1100;1300;600;700;700;300;3500;900;800;200;200;1540;1800;2300;3400;4664;4228;4973;5381;5029;4764;2756;2497;2078;3426;3836;3018;4228;3859;4302;5743;6308;5521;6822;6761;6083;8801;8958;10414;8501;9497;11418;9432
-109;'388;Jamaica;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;155;164;202;106;106;106;106;110;110;110;337;1717;1995;2001;1412;952;952;315;2834;1019;892;222;363;940;2214;2716;4319;6034;5144;5643;5875;5184;5360;2940;2485;2336;4283;5131;4104;7722;5667;7246;9148;10785;9657;10450;10631;7157;9245;10077;11505;8334;11002;17396;12242
-109;'388;Jamaica;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;62;251;233;260;1;0;0;0;0;0;0;0;0;105;164;86;1;29;1.3;27;3;2;49;4;3;17;4;2;28
-109;'388;Jamaica;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;99;362;350;361;2;0;0;0;0;0;0;0;0;21;37;25;5;87;5;89;14;6;53;8;14;82;9;11;95
-109;'388;Jamaica;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30338;30579;21977;14195;11590;10169;5210;4471;5736;6826;6201;8214;9086;7962;9945;7471;9078;9937;13986;11431;11970;11828;9721;10045;13582;12482
-109;'388;Jamaica;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25488;20268;17433;11264;8693;8107;5493;6070;6727;9004;8081;8890;10932;11089;12738;10478;11735;8241;12876;9813;11537;12129;9576;10359;17336;13939
-109;'388;Jamaica;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;22;419;624;265;13;33;32;99;12;42;10;13;53;7;1;1;1;125;144;144;257;112;4;369;440
-109;'388;Jamaica;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;17;241;393;127;30;56;86;55;20;58;11;10;14;15;2;10;10;117;132;132;221;118;24;356;392
-109;'388;Jamaica;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;12000;12000;12000;10000;7000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;7200;5000;6200;9100;9100;9100;9100;28000;32700;30500;23700;11700;16700;13500;28000;23400;23400;21200;10500;10100;16000;1800;10900;16300;22500;21700;21400;15300;13000;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;1589;1354;1491;2416;2416;2416;2416;17999;15058;18262;17030;7062;13509;10563;21273;15545;15545;11691;7488;6914;10580;1850;8390;11905;15207;15088;16702;8755;7061;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;100;1500;1500;1500;400;400;300;200;200;100;100;100;100;100;100;100;100;947;751;400;285;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;231;1351;1351;1351;302;302;343;167;167;100;100;51;68;68;68;68;68;1025;996;686;381;;;;;;;;;;;;;;;;;;;;;;;;;;
-109;'388;Jamaica;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1808;11529;7002;5247;4614;4677;1576;1375;1717;1137;1133;1168;2040;2455;5950;3087;3854;7644;7584;2342;3320;3702;3601;3998;4851;4826
-109;'388;Jamaica;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2303;6065;4432;3042;2420;2741;1340;1337;1593;1104;1014;981;1720;2063;4037;2408;3104;4739;4545;1550;2657;2717;2190;3197;5062;3695
-109;'388;Jamaica;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;175;282;229;0;3;8;0;0;1;0;0;0;0;1;1;1;21;21;21;240;0;0;357;357
-109;'388;Jamaica;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;89;150;81;0;7;15;0;0;1;0;0;0;0;2;10;10;21;21;21;218;0;7;320;320
-109;'388;Jamaica;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17348;4777;3589;766;1400;1000;222;396;1015;2532;2539;3897;3723;1813;1864;1728;1997;1844;2768;2202;3340;3911;2870;2562;3837;2730
-109;'388;Jamaica;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13497;5870;4558;832;1640;1169;224;445;1569;3015;2697;3444;4066;3226;2160;3006;3241;2604;4524;2626;3964;5139;4364;2954;5737;4903
-109;'388;Jamaica;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;227;294;35;7;0;0;69;1;4;7;7;0;0;0;0;0;102;102;102;17;112;0;3;1
-109;'388;Jamaica;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;113;186;45;13;0;0;43;4;7;3;3;0;0;0;0;0;93;93;93;3;115;0;7;4
-109;'388;Jamaica;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10645;13768;11160;7796;4707;3823;3389;2699;3000;3153;2525;3113;3287;3373;2000;2632;3176;446;3626;2648;4117;4213;3249;3482;4891;4918
-109;'388;Jamaica;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9468;8175;8162;7007;3930;3617;3907;4287;3555;4875;4360;4424;5105;5544;5595;5018;5357;884;3802;2879;4034;4271;3018;4203;6527;5329
-109;'388;Jamaica;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3;17;48;1;6;30;24;30;11;37;3;6;53;7;0;0;0;2;21;21;0;0;4;9;82
-109;'388;Jamaica;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;39;57;1;17;49;71;12;16;50;8;7;14;15;0;0;0;3;18;18;0;3;17;29;68
-109;'388;Jamaica;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;505;226;386;869;669;23;1;4;4;4;36;36;321;131;24;51;3;8;4239;1193;2;1;3;3;8
-109;'388;Jamaica;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;158;281;383;703;580;22;1;10;10;10;41;41;256;946;46;33;14;5;2758;882;2;4;5;10;12
-109;'388;Jamaica;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-109;'388;Jamaica;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;28000;32000;32300;34800;34800;34800;34800;1800;2100;3700;8800;8900;9500;8400;5800;5600;5600;7400;4000;28600;31700;32300;13900;14100;15000;2862;3033;2687;2513;2037;1320;998;1295;1033;976;853;205;1305;533;2000;2869;2869;3014;270;3074;3701;226;705;201;584;496;1048;573;88;109
-109;'388;Jamaica;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;5424;7395;6815;8506;8506;8506;8506;1800;1771;3871;10036;10807;16224;10195;14496;9364;9364;9853;8611;21719;28600;24367;13926;15979;14741;3848;5153;5321;4893;4372;2412;2439;2633;3122;2983;1289;744;4492;1125;1560;3393;3719;3947;1114;4668;4351;533;2970;1843;2019;2008;1879;847;510;741
-109;'388;Jamaica;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;200;200;400;400;600;300;900;800;800;800;800;800;700;700;100;2451;50;21;28;21;25;13;0;5;0;1;1;10;5;7;19;1;14;16;16;400;1;13;13;13;13;13;0;0;1;1;19
-109;'388;Jamaica;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;363;220;338;338;1376;1082;2128;1285;1285;1285;1285;1285;602;602;85;1622;35;54;78;29;56;32;0;64;0;2;7;24;9;19;8;1;11;5;5;136;1;17;17;17;17;17;4;6;17;17;7
-109;'388;Jamaica;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41194;51419;49926;37945;42216;44620;63568
-109;'388;Jamaica;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649;2854;3842;3548;3973;2051;3020
-109;'388;Jamaica;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605;1489;1260;1039;1878;1702;1267
-109;'388;Jamaica;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;2;12;12;6;2;3
-109;'388;Jamaica;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;1166;1014;796;1608;1379;994
-109;'388;Jamaica;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;1;2;2;2;2;2
-109;'388;Jamaica;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;323;246;243;270;323;273
-109;'388;Jamaica;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;1;10;10;4;0;1
-109;'388;Jamaica;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;2367;1528;2691;1209;2027;5161
-109;'388;Jamaica;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;430;443;287;423;209;253
-109;'388;Jamaica;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;652;857;588;474;794;908
-109;'388;Jamaica;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;51;424;34;44;52;116
-109;'388;Jamaica;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7781;12888;12942;9259;10368;8504;20977
-109;'388;Jamaica;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894;1803;2227;2898;2913;1095;2174
-109;'388;Jamaica;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-109;'388;Jamaica;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3
-109;'388;Jamaica;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30337;31684;31386;23046;26146;30067;32991
-109;'388;Jamaica;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;550;568;306;553;490;450
-109;'388;Jamaica;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;29;115;17;104;16;197
-109;'388;Jamaica;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;1;4;2
-109;'388;Jamaica;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1015;2310;1838;1305;2037;1510;2067
-109;'388;Jamaica;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;17;167;11;33;199;22
-109;'388;Jamaica;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70386;70467;78687;69339;83731;104737;102792
-109;'388;Jamaica;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1892;613;653;913;718;1087;1287
-109;'388;Jamaica;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;22;6;160;76;108
-109;'388;Jamaica;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8
-109;'388;Jamaica;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2381;3186;3371;2567;2293;3988;4523
-109;'388;Jamaica;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;3;8;11;27;96
-109;'388;Jamaica;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13278;14269;15608;15089;18133;22261;22905
-109;'388;Jamaica;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;187;234;404;97;236;235
-109;'388;Jamaica;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33815;33259;36318;34506;42214;51799;49664
-109;'388;Jamaica;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567;334;321;246;387;359;333
-109;'388;Jamaica;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20906;19749;23368;17171;20931;26613;25592
-109;'388;Jamaica;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;91;95;255;223;465;615
-110;'392;Japan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16997886;18031047;17724363;15113307;17904341.44;20267386;16221710
-110;'392;Japan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4066739;4383519;3605878;3389709;4214151.97;3907859;3290783
-110;'392;Japan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;293082;359367;475555;542661;582890;795693;1090577;1358020;1516060;1893353;1741221;2080799;4096652;4923723;3557122;4553750;4960827;5516679;9127442;9671352;6321622;6565846;6127791;6179765;5949444;6691340;9947184;11037371;14041259;13150348;12631371;13436229;16736197;17066400;19486219;18639365;16684401;10980530;12352682;13393567;11286655;10467852;10985514;12906077;12000337;12780000;12337259;12362930;9919117;11813892;14125908;13616323;13276683;12616219;10509642;10168688;10376838;11182086;10702260;8552304;10710769.44;12695129;9930567
-110;'392;Japan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;133955;131462;131661;141819;143491;168577;155802;191399;214424;223037;245937;265515;311735;653146;560990;516514;567776;633568;777951;880627;868427;813497;734011;741759;772722;899891;585851;571988;1278154;1567013;1744549;1741523;1396359;1502830;1781177;1469535;1640340;1451792;1755903;1934196;1585842;1200723;1239114;2493818;2428589;2581746;2286046;2977844;2422800;3437400;3204178;2919655;2883359;2938710;2753119;2885773;3228041;3509215;2773671;2592143;3308891.97;3101154;2579713
-110;'392;Japan;1861;Roundwood;5516;Production;m3;65048999;58000008;59577000;61713000;59241007;59588008;59274008;54675008;51587007;49801999;46978000;44596008;42515007;39701008;34888999;35868000;34306999;32531000;33644008;34412000;31747999;32603008;31388561;32842000;33269000;31919000;31097000;30866000;30619000;29403000;28106000;27276000;25708000;24618442;23056019;23218000;22322000;19580000;19045000;18120621;15902538;15215648;15289944;15729419;16276067;16714185;17750500;17805100;16710801;17280729;18373838;18559120;21133566;23101000;23918000;26147000;28682000;29424000;30349000;30544000;33057000;34053000;33756000
-110;'392;Japan;1861;Roundwood;5616;Import quantity;m3;9039900;10374200;13030800;14317500;15952600;20737000;26298700;31112300;33740008;39356016;38195904;42339404;48600008;44066416;35649800;41638208;41948216;42704108;44855912;37566312;30061600;30436800;29814900;28447700;28927000;30051400;32784704;29849400;29936008;27634377;25372062;23176066;23006731;22386300;21944200;21335300;20407200;15189000;16551450;15948500;13911500;12663000;12640000;12682000;10655000;10582700;8973700;6228700;4130700;4757309;4639776;4512101;4556230;4151228;3450250;3652463;3270941;3282903;3019717;2293358;2618198.25;2533247;2021570
-110;'392;Japan;1861;Roundwood;5622;Import value;1000 USD;233636;287920;362893;396124;452058;613972;837621;1035942;1153020;1392356;1332064;1512231;2905318;3158596;2262948;3086169;3354512;3587377;6312270;5784995;3495768;3629980;3048012;3101568;2821919;3006019;4415701;3870744;4716219;4499194;4132564;4006878;5653534;4994081;4731965;4410454;3204756;2110896;2330659;2331546;1872231;1596456;1652222;1958672;1700903;1836094;1758286;1381925;815152;1005333;1111770;1030377;1105342;1043574;797352;824267;775798;900899;740965;568509;764657.42;897961;560590
-110;'392;Japan;1861;Roundwood;5916;Export quantity;m3;23800;18300;15700;22000;27800;36800;31300;33200;27000;25000;22600;12900;10300;15200;19100;19000;24800;30400;36800;21200;31800;30000;44800;42700;38200;36300;28200;16500;13400;30127;34065;32748;7931;7000;4800;8700;5300;2000;2500;3800;3000;3700;7700;8700;23700;30394;19001;48001;37001;66330;101207;113600;264869;520803;692279;650532;971330;1136685;1130637;1383953;1458608.35;1324974;1595810
-110;'392;Japan;1861;Roundwood;5922;Export value;1000 USD;1197;993;842;798;1112;2099;2095;2806;2167;1916;1972;1324;1718;2081;3756;3182;4546;7770;6605;4720;6457;6088;9413;8468;7242;7930;11172;5887;661;5727;5792;5033;2311;2427;1511;3025;1161;456;561;758;531;717;1233;1359;3482;3674;3428;6983;5842;9946;17152;17474;32287;65282;77887;78006;122092;134168;135071;153052;191544;156389;164515
-110;'392;Japan;1862;Roundwood, coniferous;5516;Production;m3;36779999;32879008;33362000;35671000;34987007;34961008;33369008;30262008;27941007;26834999;26042000;25661008;24958007;22250008;20863999;21394000;20468999;20232000;21223008;21431000;20135999;21075008;20070000;20421000;20558000;20245000;20505000;20155000;20078000;19549000;19037000;18900000;18772000;19090000;18067000;17993000;17315000;15214000;15026000;14520000;12846000;12420000;12605000;13167000;13695000;14017000;15162000;14975000;13976000;14789000;15986000;16062000;18214000;18774000;18611000;19243000;20151000;20614000;21027000;19349000;21485000;21685000;20405000
-110;'392;Japan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3078197;3071871;2838857;2174799;2586006;2433528;1945709
-110;'392;Japan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691238;807775;661826;508295;740859;849527;512472
-110;'392;Japan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;962885;1130513;1121932;1377768;1455376;1321084;1592129
-110;'392;Japan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113723;130843;128489;149614;190087;155037;162798
-110;'392;Japan;1863;Roundwood, non-coniferous;5516;Production;m3;28269000;25121000;26215000;26042000;24254000;24627000;25905000;24413000;23646000;22967000;20936000;18935000;17557000;17451000;14025000;14474000;13838000;12299000;12421000;12981000;11612000;11528000;11318561;12421000;12711000;11674000;10592000;10711000;10541000;9854000;9069000;8376000;6936000;5528442;4989019;5225000;5007000;4366000;4019000;3600621;3056538;2795648;2684944;2562419;2581067;2697185;2588500;2830100;2734801;2491729;2387838;2497120;2919566;4327000;5307000;6904000;8531000;8810000;9322000;11195000;11572000;12368000;13351000
-110;'392;Japan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192744;211032;180860;118559;32192.25;99719;75861
-110;'392;Japan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84560;93124;79139;60214;23798.42;48434;48118
-110;'392;Japan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8445;6172;8705;6185;3232.35;3890;3681
-110;'392;Japan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8369;3325;6582;3438;1457;1352;1717
-110;'392;Japan;1864;Wood fuel;5516;Production;m3;15715999;13517000;12695000;11035000;9706999;8565000;7461000;6333000;5369999;4450999;1725000;1482000;930999;827000;734999;597000;513999;386000;374000;361000;386999;370000;377561;328000;325000;367000;363000;355000;104000;103000;168000;162000;138000;162442;159019;749000;777000;264000;308000;133621;128538;123648;118944;114419;110067;105185;100500;96100;91801;87729;83838;80120;76566;1843000;2806000;4458000;6037000;6248000;6932000;8912000;9348000;10239000;11137000
-110;'392;Japan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22258;22000;100;200;100;200;0;450;500;500;1000;1000;1000;1000;700;700;700;700;168;186;195;329;228;250;680;5239;4982;1210;1540;5144.25;6330;5869
-110;'392;Japan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;976;61;206;45;90;49;112;117;117;203;203;203;203;300;300;300;300;320;427;326;336;258;327;507;447;609;774;1197;2557.42;2963;2357
-110;'392;Japan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;330;611;600;868;803;704;382;783;1005;522;327;343.35;403;403
-110;'392;Japan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;42;77;86;129;119;74;50;66;114;71;45;34;37;37
-110;'392;Japan;1627;Wood fuel, coniferous;5516;Production;m3;125999;95000;76000;66000;62999;61000;53000;52000;48999;43999;17000;15000;8999;8000;6999;6000;4999;4000;4000;4000;3999;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-110;'392;Japan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;1871;83;112;102;91;32
-110;'392;Japan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;227;223;224;186;240;75
-110;'392;Japan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;513;11;1;2;14;14
-110;'392;Japan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;49;1;4;3;2;2
-110;'392;Japan;1628;Wood fuel, non-coniferous;5516;Production;m3;15590000;13422000;12619000;10969000;9644000;8504000;7408000;6281000;5321000;4407000;1708000;1467000;922000;819000;728000;591000;509000;382000;370000;357000;383000;366000;377561;328000;325000;367000;363000;355000;104000;103000;168000;162000;138000;162442;159019;749000;777000;264000;308000;133621;128538;123648;118944;114419;110067;105185;100500;96100;91801;87729;83838;80120;76566;1843000;2806000;4458000;6037000;6248000;6932000;8912000;9348000;10239000;11137000
-110;'392;Japan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2973;3111;1127;1428;5042.25;6239;5837
-110;'392;Japan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;382;551;973;2371.42;2723;2282
-110;'392;Japan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;492;511;326;341.35;389;389
-110;'392;Japan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;65;70;41;31;35;35
-110;'392;Japan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22258;22000;100;200;100;200;0;450;500;500;1000;1000;1000;1000;700;700;700;700;168;186;195;329;228;250;680;;;;;;;
-110;'392;Japan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;976;61;206;45;90;49;112;117;117;203;203;203;203;300;300;300;300;320;427;326;336;258;327;507;;;;;;;
-110;'392;Japan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;330;611;600;868;803;704;382;;;;;;;
-110;'392;Japan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;42;77;86;129;119;74;50;;;;;;;
-110;'392;Japan;1865;Industrial roundwood;5516;Production;m3;49333000;44483008;46882000;50678000;49534008;51023008;51813008;48342008;46217008;45351000;45253000;43114008;41584008;38874008;34154000;35271000;33793000;32145000;33270008;34051000;31361000;32233008;31011000;32514000;32944000;31552000;30734000;30511000;30515000;29300000;27938000;27114000;25570000;24456000;22897000;22469000;21545000;19316000;18737000;17987000;15774000;15092000;15171000;15615000;16166000;16609000;17650000;17709000;16619000;17193000;18290000;18479000;21057000;21258000;21112000;21689000;22645000;23176000;23417000;21632000;23709000;23814000;22619000
-110;'392;Japan;1865;Industrial roundwood;5616;Import quantity;m3;9039900;10374200;13030800;14317500;15952600;20737000;26298700;31112300;33740008;39356016;38195904;42339404;48600008;44066416;35649800;41638208;41948216;42704108;44855912;37566312;30061600;30436800;29814900;28447700;28927000;30051400;32784704;29849400;29936008;27634377;25372062;23153808;22984731;22386200;21944000;21335200;20407000;15189000;16551000;15948000;13911000;12662000;12639000;12681000;10654000;10582000;8973000;6228000;4130000;4757141;4639590;4511906;4555901;4151000;3450000;3651783;3265702;3277921;3018507;2291818;2613054;2526917;2015701
-110;'392;Japan;1865;Industrial roundwood;5622;Import value;1000 USD;233636;287920;362893;396124;452058;613972;837621;1035942;1153020;1392356;1332064;1512231;2905318;3158596;2262948;3086169;3354512;3587377;6312270;5784995;3495768;3629980;3048012;3101568;2821919;3006019;4415701;3870744;4716219;4499194;4132564;4005840;5652558;4994020;4731759;4410409;3204666;2110847;2330547;2331429;1872114;1596253;1652019;1958469;1700700;1835794;1757986;1381625;814852;1005013;1111343;1030051;1105006;1043316;797025;823760;775351;900290;740191;567312;762100;894998;558233
-110;'392;Japan;1865;Industrial roundwood;5916;Export quantity;m3;23800;18300;15700;22000;27800;36800;31300;33200;27000;25000;22600;12900;10300;15200;19100;19000;24800;30400;36800;21200;31800;30000;44800;42700;38200;36300;28200;16500;13400;30127;34065;32617;7800;7000;4800;8700;5300;2000;2500;3800;3000;3700;7700;8700;23700;30394;19001;48001;37001;66000;100596;113000;264001;520000;691575;650150;970547;1135680;1130115;1383626;1458265;1324571;1595407
-110;'392;Japan;1865;Industrial roundwood;5922;Export value;1000 USD;1197;993;842;798;1112;2099;2095;2806;2167;1916;1972;1324;1718;2081;3756;3182;4546;7770;6605;4720;6457;6088;9413;8468;7242;7930;11172;5887;661;5727;5792;5030;2308;2427;1511;3025;1161;456;561;758;531;717;1233;1359;3482;3674;3428;6983;5842;9904;17075;17388;32158;65163;77813;77956;122026;134054;135000;153007;191510;156352;164478
-110;'392;Japan;1866;Industrial roundwood, coniferous;5516;Production;m3;36654000;32784008;33286000;35605000;34924008;34900008;33316008;30210008;27892008;26791000;26025000;25646008;24949008;22242008;20857000;21388000;20464000;20228000;21219008;21427000;20132000;21071008;20070000;20421000;20558000;20245000;20505000;20155000;20078000;19549000;19037000;18900000;18772000;19090000;18067000;17993000;17315000;15214000;15026000;14520000;12846000;12420000;12605000;13167000;13695000;14017000;15162000;14975000;13976000;14789000;15986000;16062000;18214000;18774000;18611000;19243000;20151000;20614000;21027000;19349000;21485000;21685000;20405000
-110;'392;Japan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16726259;15319909;15257833;14780237;14438200;14901800;14650000;13961000;11351000;12528000;12241000;11293000;10266000;10468000;10742000;8977000;9021000;7748000;5362000;3601000;4139031;4044459;4099000;4211748;3821000;3163000;3387675;3075931;3070000;2838774;2174687;2585904;2433437;1945677
-110;'392;Japan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2733446;2383804;2647067;3216866;3033020;3173759;2965409;2390697;1561098;1684591;1714432;1475023;1229239;1301000;1605600;1364000;1470367;1441145;1136078;673960;829846;877253;867972;962989;902549;674907;710824;691046;807548;661603;508071;740673;849287;512397
-110;'392;Japan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;8900;5700;7100;6300;4500;3100;1700;1000;2000;3000;2000;2000;6000;7000;22000;30000;18000;47000;35000;64000;99130;111000;262000;518000;686397;643993;962570;1130000;1121921;1377767;1455374;1321070;1592115
-110;'392;Japan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4512;2426;1433;1838;2018;1315;993;445;326;505;666;367;443;959;1132;3255;3473;2789;5671;5027;8880;15583;16661;30961;63862;75334;71094;113700;130794;128488;149610;190084;155035;162796
-110;'392;Japan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16726259;15319909;15257833;14780237;14438200;14901800;14650000;13961000;11351000;12528000;12241000;11293000;10266000;10468000;10742000;8977000;9021000;7748000;5362000;3601000;4139031;4044459;4099000;4211748;3821000;3163000;3387675;3075931;3070000;2838774;2174687;2585904;2433437;1945677
-110;'392;Japan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2733446;2383804;2647067;3216866;3033020;3173759;2965409;2390697;1561098;1684591;1714432;1475023;1229239;1301000;1605600;1364000;1470367;1441145;1136078;673960;829846;877253;867972;962989;902549;674907;710824;691046;807548;661603;508071;740673;849287;512397
-110;'392;Japan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;8900;5700;7100;6300;4500;3100;1700;1000;2000;3000;2000;2000;6000;7000;22000;30000;18000;47000;35000;64000;99130;111000;262000;518000;686397;643993;962570;1130000;1121921;1377767;1455374;1321070;1592115
-110;'392;Japan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4512;2426;1433;1838;2018;1315;993;445;326;505;666;367;443;959;1132;3255;3473;2789;5671;5027;8880;15583;16661;30961;63862;75334;71094;113700;130794;128488;149610;190084;155035;162796
-110;'392;Japan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;12679000;11699000;13596000;15073000;14610000;16123000;18497000;18132000;18325000;18560000;19228000;17468000;16635000;16632000;13297000;13883000;13329000;11917000;12051000;12624000;11229000;11162000;10941000;12093000;12386000;11307000;10229000;10356000;10437000;9751000;8901000;8214000;6798000;5366000;4830000;4476000;4230000;4102000;3711000;3467000;2928000;2672000;2566000;2448000;2471000;2592000;2488000;2734000;2643000;2404000;2304000;2417000;2843000;2484000;2501000;2446000;2494000;2562000;2390000;2283000;2224000;2129000;2214000
-110;'392;Japan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10908118;10052153;7895975;8204494;7948000;7042200;6685200;6446000;3838000;4023000;3707000;2618000;2396000;2171000;1939000;1677000;1561000;1225000;866000;529000;618110;595131;412906;344153;330000;287000;264108;189771;207921;179733;117131;27150;93480;70024
-110;'392;Japan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765748;1748760;1358773;2435692;1961000;1558000;1445000;813969;549749;645956;616997;397091;367014;351019;352869;336700;365427;316841;245547;140892;175167;234090;162079;142017;140767;122118;112936;84305;92742;78588;59241;21427;45711;45836
-110;'392;Japan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12627;25165;26917;700;700;300;5600;3600;1000;500;800;1000;1700;1700;1700;1700;394;1001;1001;2001;2000;1466;2000;2001;2000;5178;6157;7977;5680;8194;5859;2891;3501;3292
-110;'392;Japan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;3366;3597;470;409;196;2032;716;130;56;92;164;274;274;227;227;201;639;1312;815;1024;1492;727;1197;1301;2479;6862;8326;3260;6512;3397;1426;1317;1682
-110;'392;Japan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9903868;8983721;7063700;7531224;7442000;6526000;6185200;5854000;3427000;3526000;3141000;2147000;2032000;1785000;1623000;1064000;1355656;1061608;723415;442080;554271;507221;335563;283941;270511;236936;213521;152957;170846;151113;75800;13864;33270;37889
-110;'392;Japan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600614;1564272;1204263;2274570;1828000;1403000;1329000;680969;448868;540807;493306;295049;289014;266132;273421;206700;290980;248094;180496;99196;136866;175602;108383;97846;93920;80873;72362;54669;63098;54593;25157;7787;13963;15813
-110;'392;Japan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;1000;1000;2000;17;0;0;1;0;6;0;4;1605;607;284;295;17;1
-110;'392;Japan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4;631;1310;798;28;0;0;30;0;4;0;6;491;292;136;229;6;2
-110;'392;Japan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004250;1068432;832275;673270;506000;516200;500000;592000;411000;497000;566000;471000;364000;386000;316000;613000;205344;163392;142585;86920;63839;87910;77343;60212;59489;50064;50587;36814;37075;28620;41331;13286;60210;32135
-110;'392;Japan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165134;184488;154510;161122;133000;155000;116000;133000;100881;105149;123691;102042;78000;84887;79448;130000;74447;68747;65051;41696;38301;58488;53696;44171;46847;41245;40574;29636;29644;23995;34084;13640;31748;30023
-110;'392;Japan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12627;25165;26917;700;700;300;5600;3600;1000;500;800;1000;1700;1700;1700;1700;393;1;1;1;1983;1466;2000;2000;2000;5172;6157;7973;4075;7587;5575;2596;3484;3291
-110;'392;Japan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;3366;3597;470;409;196;2032;716;130;56;92;164;274;274;227;227;197;8;2;17;996;1492;727;1167;1301;2475;6862;8320;2769;6220;3261;1197;1311;1680
-110;'392;Japan;1868;Sawlogs and veneer logs;5516;Production;m3;33170000;31806008;32302000;35066000;34742008;35167008;34264008;32052008;29685008;28140000;27180000;27323008;26912008;23184008;21581000;22037000;21184000;21079000;22064008;21467000;19979000;20396008;19392000;19403000;19247000;18801000;18774000;18774000;18934000;18377000;17644000;17517000;17567000;17693000;16480000;16382000;15631000;13556000;13402000;12936000;11948000;11421000;11574000;12015000;12434000;12789000;13613000;13247000;12222000;13072000;14016000;13923000;15313000;15557000;15361000;15863000;16625000;17055000;17620000;15810000;17522000;17849000;16176000
-110;'392;Japan;1868;Sawlogs and veneer logs;5616;Import quantity;m3;8528900;9843600;12558100;13682800;15373900;19743800;25265400;30136900;32829008;38246016;37035804;41131504;47195008;42564016;34512000;40813008;40636016;41698608;43563312;36374112;29221000;29465000;28678700;27184300;27834800;28900000;31775504;29600000;29685908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;223990;277251;355815;385031;441996;597846;819020;1015782;1136305;1372632;1310045;1488474;2866340;3120585;2228888;3061514;3310827;3555666;6244535;5694677;3458061;3594131;3005638;3051401;2774984;2956069;4375151;3861950;4707650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1868;Sawlogs and veneer logs;5916;Export quantity;m3;13600;12200;10800;10400;18500;21600;24800;26800;18000;17000;12700;8700;9300;13800;7400;16100;17600;21100;31300;13300;22000;19000;26500;25500;25000;23100;23600;16500;13400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;641;601;551;583;775;1225;1661;2364;1489;1297;1183;927;1556;1829;1376;2772;3167;5606;5689;3188;4656;4493;6323;5591;5123;5811;9803;5887;661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;26020000;25967008;26748000;28562000;28255008;28525008;27377008;25109008;23173008;22230000;21320000;21789008;21419008;18433008;17610000;17930000;17170000;17200000;18147008;17762000;16762000;17319008;16466000;16360000;16396000;16180000;16646000;16646000;16650000;16314000;15796000;15865000;16099000;16438000;15401000;15379000;14779000;12840000;12801000;12400000;11500000;11042000;11240000;11743000;12185000;12442000;13401000;13033000;12049000;12930000;13877000;13789000;15160000;15495000;15240000;15755000;16484000;16893000;17479000;15682000;17365000;17754000;16070000
-110;'392;Japan;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;2672400;3160700;4320300;5353700;5946600;7559100;11478300;15661000;15544000;18395008;15991100;19794800;20886000;17591008;17238000;18771008;19409008;19668800;20966608;17171904;13871000;14245000;14400500;13800000;14500000;16000000;17861504;16500000;17428208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;81699;98549;130485;169561;189328;250247;397959;577316;606090;740062;628667;825993;1476450;1484168;1387198;1523964;1753073;1832476;2855768;2726434;1686433;1607385;1438297;1376267;1424478;1600407;2106986;2059200;2855377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;13200;11700;10500;9700;17900;17200;22600;25000;15000;12000;12000;7300;7300;6300;6100;15200;16500;16500;25600;12000;19400;12000;18000;19400;18000;19400;22400;13800;13400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;601;548;512;494;630;959;1495;2206;1303;1161;1040;753;1286;1119;1033;2526;2881;3451;3069;2745;3747;2472;3712;3752;3038;4516;7217;4875;661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;7150000;5839000;5554000;6504000;6487000;6642000;6887000;6943000;6512000;5910000;5860000;5534000;5493000;4751000;3971000;4107000;4014000;3879000;3917000;3705000;3217000;3077000;2926000;3043000;2851000;2621000;2128000;2128000;2284000;2063000;1848000;1652000;1468000;1255000;1079000;1003000;852000;716000;601000;536000;448000;379000;334000;272000;249000;347000;212000;214000;173000;142000;139000;134000;153000;62000;121000;108000;141000;162000;141000;128000;157000;95000;106000
-110;'392;Japan;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;5856500;6682900;8237800;8329100;9427300;12184700;13787100;14475900;17285008;19851008;21044704;21336704;26309008;24973008;17274000;22042000;21227008;22029808;22596704;19202208;15350000;15220000;14278200;13384300;13334800;12900000;13914000;13100000;12257700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;142291;178702;225330;215470;252668;347599;421061;438466;530215;632570;681378;662481;1389890;1636417;841690;1537550;1557754;1723190;3388767;2968243;1771628;1986746;1567341;1675134;1350506;1355662;2268165;1802750;1852273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;400;500;300;700;600;4400;2200;1800;3000;5000;700;1400;2000;7500;1300;900;1100;4600;5700;1300;2600;7000;8500;6100;7000;3700;1200;2700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;40;53;39;89;145;266;166;158;186;136;143;174;270;710;343;246;286;2155;2620;443;909;2021;2611;1839;2085;1295;2586;1012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5421000;4994000;4717000;3826000;3671000;3597000;3600000;3732000;3820000;4037000;4462000;4397000;4121000;4274000;4556000;5117000;4813000;4690000;4795000;4657000;4585000;4263000;4072000;4325000;4233000;4467000
-110;'392;Japan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2116000;1966000;1864000;1346000;1378000;1365000;1424000;1510000;1575000;1761000;1942000;1927000;1859000;2109000;2273000;2584000;2613000;2575000;2715000;2645000;2569000;2397000;2355000;2723000;2632000;2852000
-110;'392;Japan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3305000;3028000;2853000;2480000;2293000;2232000;2176000;2222000;2245000;2276000;2520000;2470000;2262000;2165000;2283000;2533000;2200000;2115000;2080000;2012000;2016000;1866000;1717000;1602000;1601000;1615000
-110;'392;Japan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;411900;462500;452500;586000;550600;956300;971200;893300;858000;1060000;1118600;1162800;1357800;1345000;1064000;776000;1244000;954800;1222800;1136000;810800;942000;1114200;1248400;1063300;1115600;1005300;247200;249100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;5821;8056;6437;9408;8940;15072;16604;17393;14757;18110;20894;22081;35777;31050;29283;20120;37845;26657;56094;80607;33642;31784;39217;48107;44950;47366;38553;7419;7600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1870;Pulpwood and particles (1961-1997);5516;Production;m3;12550000;9408000;9945000;9705000;8448000;9010000;14180000;12971000;13625000;14846000;15931000;13867000;12801000;13952000;11021000;11679000;11090000;9631000;9793000;11283000;10182000;10383000;10383000;12107000;12714000;11785000;10914000;10935000;10894000;10306000;9721000;9050000;7497000;6282000;5971000;5658000;5517000;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;411900;462500;452500;586000;550600;956300;971200;893300;858000;1060000;1118600;1162800;1357800;1345000;1064000;776000;1244000;954800;1222800;1136000;810800;942000;1114200;1248400;1063300;1115600;1005300;247200;249100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;5821;8056;6437;9408;8940;15072;16604;17393;14757;18110;20894;22081;35777;31050;29283;20120;37845;26657;56094;80607;33642;31784;39217;48107;44950;47366;38553;7419;7600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;7850000;4812000;4340000;4326000;3958000;3749000;3934000;3091000;2955000;3112000;3405000;2653000;2306000;2637000;2212000;2397000;2259000;2017000;2058000;2744000;2499000;2718000;2718000;3321000;3445000;3365000;3048000;2901000;2903000;2774000;2808000;2621000;2288000;2287000;2327000;2288000;2234000;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;4700000;4596000;5605000;5379000;4490000;5261000;10246000;9880000;10670000;11734000;12526000;11214000;10495000;11315000;8809000;9282000;8831000;7614000;7735000;8539000;7683000;7665000;7665000;8786000;9269000;8420000;7866000;8034000;7991000;7532000;6913000;6429000;5209000;3995000;3644000;3370000;3283000;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1871;Other industrial roundwood;5516;Production;m3;3613000;3269000;4635000;5907000;6344000;6846000;3369000;3319000;2907000;2365000;2142000;1924000;1871000;1738000;1552000;1555000;1519000;1435000;1413000;1301000;1200000;1454000;1236000;1004000;983000;966000;1046000;802000;687000;617000;573000;547000;506000;481000;446000;429000;397000;339000;341000;334000;0;0;0;0;0;0;0;0;0;0;0;0;627000;888000;1061000;1031000;1363000;1536000;1534000;1750000;1862000;1732000;1976000
-110;'392;Japan;1871;Other industrial roundwood;5616;Import quantity;m3;99100;68100;20200;48700;28100;36900;62100;82100;53000;50000;41500;45100;47200;157400;73800;49200;68200;50700;69800;56200;29800;29800;22000;15000;28900;35800;3900;2200;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1871;Other industrial roundwood;5622;Import value;1000 USD;3825;2613;641;1685;1122;1054;1997;2767;1958;1614;1125;1676;3201;6961;4777;4535;5840;5054;11641;9711;4065;4065;3157;2060;1985;2584;1997;1375;969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1871;Other industrial roundwood;5916;Export quantity;m3;10200;6100;4900;11600;9300;15200;6500;6400;9000;8000;9900;4200;1000;1400;11700;2900;7200;9300;5500;7900;9800;11000;18300;17200;13200;13200;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1871;Other industrial roundwood;5922;Export value;1000 USD;556;392;291;215;337;874;434;442;678;619;789;397;162;252;2380;410;1379;2164;916;1532;1801;1595;3090;2877;2119;2119;1369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;2784000;2005000;2198000;2717000;2711000;2626000;2005000;2010000;1764000;1449000;1300000;1204000;1224000;1172000;1035000;1061000;1035000;1011000;1014000;921000;871000;1034000;886000;740000;717000;700000;811000;608000;525000;461000;433000;414000;385000;365000;339000;326000;302000;258000;259000;256000;0;0;0;0;0;0;0;0;0;0;0;0;470000;666000;796000;773000;1022000;1152000;1151000;1312000;1397000;1299000;1483000
-110;'392;Japan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;829000;1264000;2437000;3190000;3633000;4220000;1364000;1309000;1143000;916000;842000;720000;647000;566000;517000;494000;484000;424000;399000;380000;329000;420000;350000;264000;266000;266000;235000;194000;162000;156000;140000;133000;121000;116000;107000;103000;95000;81000;82000;78000;0;0;0;0;0;0;0;0;0;0;0;0;157000;222000;265000;258000;341000;384000;383000;438000;465000;433000;493000
-110;'392;Japan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;99100;68100;20200;48700;28100;36900;62100;82100;53000;50000;41500;45100;47200;157400;73800;49200;68200;50700;69800;56200;29800;29800;22000;15000;28900;35800;3900;2200;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;3825;2613;641;1685;1122;1054;1997;2767;1958;1614;1125;1676;3201;6961;4777;4535;5840;5054;11641;9711;4065;4065;3157;2060;1985;2584;1997;1375;969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;10200;6100;4900;11600;9300;15200;6500;6400;9000;8000;9900;4200;1000;1400;11700;2900;7200;9300;5500;7900;9800;11000;18300;17200;13200;13200;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;556;392;291;215;337;874;434;442;678;619;789;397;162;252;2380;410;1379;2164;916;1532;1801;1595;3090;2877;2119;2119;1369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1630;Wood charcoal;5510;Production;t;164321;164019;167925;170304;170063;162495;161136;167885;168544;163811;152824;143302;140450;161328;174091;178542;179466;184284;180019;174491;177959;159086;159208;144714;136950;131000;113850;128825;106297;108807;158726;94876;91163;136452;135385;84557;79675;82635;67000;56000;52000;42000;40000;37000;35000;33000;30000;28000;26000;25000;25000;25000;25000;25000;18000;17000;16000;15000;15000;13000;12000;12000;14000
-110;'392;Japan;1630;Wood charcoal;5610;Import quantity;t;4600;6000;3300;2100;3600;12300;14900;9400;10000;16000;29700;39900;43800;29000;20000;16000;15000;9700;12900;18500;15000;34000;34200;47900;54300;60300;76500;59200;80200;76000;24600;89450;95164;50300;51700;100000;105000;103000;118000;129000;132000;135000;144000;143000;149000;142000;141000;146000;147000;151000;150144;144704;148000;152000;159000;146538;141662;144462;143953;124238;121808;123438;124965
-110;'392;Japan;1630;Wood charcoal;5622;Import value;1000 USD;322;409;225;139;236;575;1031;958;775;1081;2334;3000;3748;4474;3361;2534;2311;1649;2093;3719;3254;6009;6010;10969;12591;10829;14992;12846;21137;19866;9403;28792;35032;27143;32416;48257;57150;53175;61770;73565;75812;76087;84599;83830;79638;80928;84711;97719;106779;108286;119729;125773;129369;127222;127568;120628;120194;124273;120049;102045;104976;113022;117885
-110;'392;Japan;1630;Wood charcoal;5910;Export quantity;t;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1681;1500;1500;1000;1000;1000;1000;1000;1100;5000;5000;5000;1000;1000;1000;1000;1000;1000;834;731;531;1000;830;616;521;442;460;439;324;222;383
-110;'392;Japan;1630;Wood charcoal;5922;Export value;1000 USD;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;426;617;1004;580;470;608;707;922;1031;2076;2607;2800;2500;2648;3045;3418;2669;3832;4298;4163;2623;2573;2988;3316;2966;3126;2983;2660;1729;1249;1400
-110;'392;Japan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10826000;10554000;10851000;10244000;11099000;11880000;11854000;12291000;12043000;12061000;11755000;10392000;10993000;11534000;11982000;13253000;12032000;11837000;12025000;12332000;11836000;10895000;9845000;12626000;12084000;12182000
-110;'392;Japan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18959000;18857000;19924000;19169000;19067000;18745000;19311000;19498000;19030000;19804000;20375000;18597000;21710176;21057591;19840429;19623750;20770677;21221996;21644364;21517975;22024276;21445604;16789564;19495277;20161199;19777130
-110;'392;Japan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2011744;1902799;1915884;1759961;1669022;1713014;1943920;2060857;2115285;2449814;2951137;2130336;2516681;2675883;2541014;2235659;2270640;2224876;2142277;2108871;2284314;2388239;1761931;1969793;2287311;2277918
-110;'392;Japan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;600;550;3500;2600;4000;5000;5000;7000;17000;16000;4058;4698;8665;3499;12995;5179;3937;4440;5660;7135;13940;3118.35;2578;3338
-110;'392;Japan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;106;218;238;766;358;506;803;775;908;1915;1814;654;812;625;374;723;366;453;324;532;974;766;486;410;512
-110;'392;Japan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4512000;4363000;4282000;3890000;3830000;3786000;4051000;4374000;4435000;4656000;5201000;4657000;4699000;4684000;5038000;5181000;5083000;5155000;5185000;5188000;5063000;4431000;4314000;5467000;4925000;5023000
-110;'392;Japan;1619;Wood chips and particles;5616;Import quantity;m3;;;;8300;320100;596400;1387000;3880000;4879000;5966000;4179200;5772100;8770000;10028000;8434000;9631000;13819500;13116300;15002600;15936400;12507700;11325000;11402000;12156000;11722900;12094100;13840300;16289000;13293000;14087000;16224000;15665000;15542000;16516000;18877000;18889000;19159000;18949000;18830000;19906000;19150000;19045000;18725000;19287000;19474000;19011000;19785000;20317000;18515000;21608981;20983915;19825000;19613000;20756000;21198000;21622000;21512191;22012910;21433035;16771297;19481516;20154483;19773000
-110;'392;Japan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;130;4134;7800;24188;52093;61977;80006;95999;143836;244260;375603;402150;446243;495168;517795;593317;951227;700093;625958;775336;643965;613027;686581;827755;1068647;1357250;1440391;1706670;1636855;1627698;1797260;2343941;2222000;2098290;2008379;1898256;1911867;1756213;1664860;1708931;1938487;2055275;2110195;2444540;2939960;2116229;2499298;2656328;2534208;2230688;2265261;2219411;2137257;2107719;2282575;2385660;1758698;1966396;2284314;2275884
-110;'392;Japan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;400;400;1000;200;300;200;100;500;400;1500;600;1000;1000;1000;1000;12000;12000;1058;234;5000;164;6000;1000;134;779;301;249;9162;107;152;118
-110;'392;Japan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;23;18;67;59;88;50;25;138;122;498;139;170;272;133;123;1134;1134;195;80;191;87;273;92;107;165;77;162;223;131;96;158
-110;'392;Japan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;7700;6400;7300;7300;7300;7700;7300;6400;6300;6300000;6600000;6600000;6300000;6900000;6900000;7400000;7400000;7200000;6752000;6803000;6563000;6298000;6496000;6279000;6314000;6191000;6569000;6354000;7269000;8094000;7803000;7917000;7608000;7405000;6554000;5735000;6294000;6850000;6944000;8072000;6949000;6682000;6840000;7144000;6773000;6464000;5531000;7159000;7159000;7159000
-110;'392;Japan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;307400;459700;571800;612200;572100;290100;432000;451000;453200;467300;408700;285300;272300;266100;280800;227100;73300;1800;2100;1900;4400;3800;75814;5600;6900;7200;8500;8700;10000;27000;18000;19000;22000;20000;24000;24000;19000;19000;58000;82000;101195;73676;15429;10750;14677;23996;22364;5784;11366;12569;18267;13761;6716;4130
-110;'392;Japan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;2650;3907;5569;6284;7141;4730;7085;7044;7115;8093;9285;6439;5968;5078;5540;4575;1695;332;563;735;1038;1218;2467;2111;2577;2897;2897;3064;3365;4543;4017;3748;4162;4083;5433;5582;5090;5274;11177;14107;17383;19555;6806;4971;5379;5465;5020;1152;1739;2579;3233;3397;2997;2034
-110;'392;Japan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5048;3497;5000;1000;200;200;100;100;100;150;2000;2000;3000;4000;4000;6000;5000;4000;3000;4464;3665;3335;6995;4179;3803;3661;5359;6886;4778;3011.35;2426;3220
-110;'392;Japan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;104;223;135;102;148;81;81;80;116;268;219;336;531;642;785;781;680;459;732;434;287;450;274;346;159;455;812;543;355;314;354
-110;'392;Japan;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740000;730000;710000;620000;700000;690000;800000
-110;'392;Japan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;90000;126000;126000;126000;127000;131000;147000;149000;156000;156000;156000
-110;'392;Japan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71981;83769;96745;232425;361764;519688;1070339;1631268;2046901;3138702.24;4492055;6048740
-110;'392;Japan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19356;20019;24455;45587;68032;91973;197960;289070;347538;566168.08;934829;1315722
-110;'392;Japan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462;4828;4194;463;2774;664;636;529;1037;1745.04;2215;2434
-110;'392;Japan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;558;569;86;392;198;154;170;151;172;200;222
-110;'392;Japan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;90000;126000;126000;126000;127000;131000;147000;149000;156000;156000;156000
-110;'392;Japan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71981;83769;96745;232425;346855;506353;1059542;1614000;2028230;3117761;4407406;5803370
-110;'392;Japan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19356;20019;24455;45587;63015;87366;194966;285332;343691;561704;909348;1254403
-110;'392;Japan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462;4828;4194;463;270;240;312;215;953;1728.04;2203;2424
-110;'392;Japan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;558;569;86;46;44;57;54;115;144;196;206
-110;'392;Japan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14909;13335;10797;17268;18671;20941.24;84649;245370
-110;'392;Japan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5017;4607;2994;3738;3847;4464.08;25481;61319
-110;'392;Japan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2504;424;324;314;84;17;12;10
-110;'392;Japan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;154;97;116;36;28;4;16
-110;'392;Japan;1872;Sawnwood;5516;Production;m3;27869016;27574004;30136000;32681016;33291012;35633004;38407004;40754008;41957000;42827008;42195004;43363000;44658008;40570008;36812016;39371008;38198004;41129004;39631004;36955012;32519008;32537004;29669996;28666996;28472004;29105004;30159004;30138004;30542004;29781008;28264008;27277000;26260000;25906000;24493000;23844000;21709000;18625000;17952000;17094000;15485000;14402000;13929000;13603000;12825000;12554000;11632000;10884000;9291000;9415000;9434000;9320000;10100000;9569000;9231000;9293000;9457000;9202000;9032000;8203000;9091000;8600000;7962000
-110;'392;Japan;1872;Sawnwood;5616;Import quantity;m3;608700;673100;951500;999300;968000;1214200;1980700;2536800;2066000;3010000;2128200;2496500;3679700;3636100;2611900;3273500;3585400;3952400;5116300;5573100;3971600;4954000;4719500;4551900;5244100;5564100;7435200;8462900;9564700;9037800;9399700;9301066;10625644;10716700;11764600;12280600;12590300;7539000;9434000;9951000;8980000;8584000;8849000;9123000;8395000;8505000;7354000;6522000;5568000;6414836;6843947;6561856;7497170;6248000;5997000;6314879;6332585;5980367;5708281;4939662;4836982;4903630;3340159
-110;'392;Japan;1872;Sawnwood;5622;Import value;1000 USD;25451;29743;39906;44543;39271;58015;96808;125049;121935;179875;131998;190623;394904;440030;347014;431623;498225;594628;1091272;1248295;771424;914509;848217;828447;945944;1125032;1895147;2496889;3035551;2852273;2856886;3777924;4280576;4567400;5078770;4895683;4884987;2370985;2992590;3235407;2686881;2429441;2673306;2900302;2630700;2733063;2635901;2365428;1887038;2304814;2724720;2527115;3098400;2539999;2087624;2163353;2245517;2351437;2113014;1733999;2581404;2975075;1396982
-110;'392;Japan;1872;Sawnwood;5916;Export quantity;m3;348100;317100;315700;306000;309500;338800;222400;196600;182000;159000;159900;109300;57200;55100;54900;57074;63300;67600;60400;57100;48000;40200;37600;28200;21900;18800;13900;11600;17600;29800;21100;11878;9000;9100;10400;26400;12900;7000;6000;7000;10000;22000;14000;18000;20000;17000;29000;43000;43000;60000;59013;58503;59448;66000;60620;87363;129959;146014;147153;172709;207824;173010;136439
-110;'392;Japan;1872;Sawnwood;5922;Export value;1000 USD;23041;21632;20349;21897;22519;23387;20441;18045;17349;16387;17244;14719;16269;18638;15363;18813;31237;43659;39676;37712;25739;21648;22750;20166;15069;19392;15678;14964;17107;23503;17178;16811;15138;18137;18525;26855;16903;9331;9415;8245;7375;10399;11734;13884;12649;11243;15502;25437;22752;31322;32235;30390;27811;30185;27006;34522;48019;54782;54740;63301;88756;69889;46089
-110;'392;Japan;1632;Sawnwood, coniferous;5516;Production;m3;22664016;22035504;23896000;25044016;26462512;28159504;30339504;31673008;32650000;32875008;31445504;32434000;32603008;29545008;27390016;29713008;31943504;32953504;30701504;29922512;25965008;26479504;24144496;23822496;23903504;25279504;26203504;26529504;27097504;26421008;25075008;24200000;23298000;24740000;23391000;22771000;20719000;17788000;17270000;16479000;14974000;13970000;13550000;13263000;12517000;12228000;11411000;10688000;9134000;9277000;9294000;8267000;9050000;8622000;8299000;8419000;8606000;8383000;8282000;7522000;8457000;8018000;7367000
-110;'392;Japan;1632;Sawnwood, coniferous;5616;Import quantity;m3;597050;657700;905150;968850;824400;1153600;1843050;2317200;1857500;2685500;1785800;2072450;3202350;3102550;2414950;3031250;3244850;3484100;4598600;4954900;3446900;4276000;3943650;3719750;4138200;4533450;5873850;6575150;7449400;7368900;7792200;7710234;8834500;9081800;10011300;10326400;10801000;6639000;8372000;8806000;8027000;7722000;8077000;8553000;7902000;8060000;6947000;6208000;5347000;6156816;6572744;6289000;7245170;5989000;5770000;6099249;6124313;5777054;5511648;4791881;4688347;4736441;3195085
-110;'392;Japan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;24352;27943;37586;41779;36613;53003;86236;112706;105753;154615;104670;142714;330126;354863;306940;386930;427518;496070;917632;1034076;595803;710100;647466;580800;649098;825708;1346750;1700709;2061220;2018780;2068582;2942908;3174298;3420560;3797005;3714271;3675527;1877243;2401824;2593567;2156934;1969422;2229590;2542502;2298000;2410013;2319582;2093380;1693482;2099962;2450290;2240565;2840429;2262297;1850293;1950156;2033685;2140136;1904787;1578415;2413797;2777776;1228554
-110;'392;Japan;1632;Sawnwood, coniferous;5916;Export quantity;m3;102200;101450;116700;96800;108600;145250;84900;71100;61000;59000;69150;26650;1450;900;2000;5237;8600;7300;4900;9900;10700;6100;3150;3200;2900;1400;1500;1600;1600;6800;1300;3578;1200;1400;1200;16000;3500;2000;2000;3000;4000;3000;5000;11000;13000;12000;25000;39000;37000;55000;52857;49000;55401;64000;57070;83700;126307;142311;142983;169768;204829;169479;132901
-110;'392;Japan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;5400;5247;5152;4899;5603;6978;5969;5212;4708;4681;5649;2372;355;215;372;815;2376;2095;1725;3112;2666;1921;778;939;880;679;617;1282;1388;1853;1025;922;1381;1940;1615;12552;3059;2028;2690;2003;1699;2019;2637;5756;5108;4083;10456;19286;17858;26227;25862;23659;23955;27158;23806;30050;43228;50241;48936;58822;84171;66173;41568
-110;'392;Japan;1633;Sawnwood, non-coniferous;5516;Production;m3;5205000;5538500;6240000;7637000;6828500;7473500;8067500;9081000;9307000;9952000;10749500;10929000;12055000;11025000;9422000;9658000;6254500;8175500;8929500;7032500;6554000;6057500;5525500;4844500;4568500;3825500;3955500;3608500;3444500;3360000;3189000;3077000;2962000;1166000;1102000;1073000;990000;837000;682000;615000;511000;432000;379000;340000;308000;326000;221000;196000;157000;138000;140000;1053000;1050000;947000;932000;874000;851000;819000;750000;681000;634000;582000;595000
-110;'392;Japan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11650;15400;46350;30450;143600;60600;137650;219600;208500;324500;342400;424050;477350;533550;196950;242250;340550;468300;517700;618200;524700;678000;775850;832150;1105900;1030650;1561350;1887750;2115300;1668900;1607500;1590832;1791144;1634900;1753300;1954200;1789300;900000;1062000;1145000;953000;862000;772000;570000;493000;445000;407000;314000;221000;258020;271203;272856;252000;259000;227000;215630;208272;203313;196633;147781;148635;167189;145074
-110;'392;Japan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1099;1800;2320;2764;2658;5012;10572;12343;16182;25260;27328;47909;64778;85167;40074;44693;70707;98558;173640;214219;175621;204409;200751;247647;296846;299324;548397;796180;974331;833493;788304;835016;1106278;1146840;1281765;1181412;1209460;493742;590766;641840;529947;460019;443716;357800;332700;323050;316319;272048;193556;204852;274430;286550;257971;277702;237331;213197;211832;211301;208227;155584;167607;197299;168428
-110;'392;Japan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;245900;215650;199000;209200;200900;193550;137500;125500;121000;100000;90750;82650;55750;54200;52900;51837;54700;60300;55500;47200;37300;34100;34450;25000;19000;17400;12400;10000;16000;23000;19800;8300;7800;7700;9200;10400;9400;5000;4000;4000;6000;19000;9000;7000;7000;5000;4000;4000;6000;5000;6156;9503;4047;2000;3550;3663;3652;3703;4170;2941;2995;3531;3538
-110;'392;Japan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;17641;16385;15197;16998;16916;16409;14472;12833;12641;11706;11595;12347;15914;18423;14991;17998;28861;41564;37951;34600;23073;19727;21972;19227;14189;18713;15061;13682;15719;21650;16153;15889;13757;16197;16910;14303;13844;7303;6725;6242;5676;8380;9097;8128;7541;7160;5046;6151;4894;5095;6373;6731;3856;3027;3200;4472;4791;4541;5804;4479;4585;3716;4521
-110;'392;Japan;1634;Veneer sheets;5516;Production;m3;10000;10000;10000;84000;84000;98000;151000;188000;226000;250000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;289000;307000;303000;274000;268000;242000;242000;242000;242000;116000;130000;130000;80000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000
-110;'392;Japan;1634;Veneer sheets;5616;Import quantity;m3;77;67;134;300;400;2000;22400;28000;27200;62000;97600;125600;88400;80000;49200;41300;36100;53600;89600;111200;114400;197600;218400;272000;309400;241600;369300;439900;494000;601900;731100;737600;918100;731100;641800;200100;173000;101000;112000;117000;110000;100000;124000;135000;109000;95000;76000;66000;100000;235480;246908;213512;259000;280000;205041;291905;330070;354675;312956;193408;255113;78849;72218
-110;'392;Japan;1634;Veneer sheets;5622;Import value;1000 USD;24;21;42;94;314;295;1222;1756;2131;3642;3757;5156;10098;10458;6000;8617;6879;11243;23083;25301;19579;32427;31626;35970;37652;30608;58112;79889;99335;125860;193981;144069;211307;193981;187450;179279;156029;84412;92110;101200;91298;79007;100634;110708;98900;90885;85522;82947;75428;125832;162268;158427;148836;150238;112305;150896;157083;184669;170423;106787;127899;74819;66133
-110;'392;Japan;1634;Veneer sheets;5916;Export quantity;m3;2500;3100;2800;2700;2600;12800;28800;13600;20000;20000;18800;28800;11200;12800;9600;6000;6400;24000;34400;25600;32500;42300;62400;83000;61700;92700;67000;56300;52700;39600;26000;37832;33199;26000;23300;26900;11000;9000;10000;7000;7000;7000;3000;1000;2000;1134;1109;1015;1083;1064;494;497;582;589;445;650;645;250;386;709;447;285;206
-110;'392;Japan;1634;Veneer sheets;5922;Export value;1000 USD;378;413;421;355;501;578;762;697;1064;1358;1460;1578;1415;1737;1338;1952;2457;6444;9175;7102;7558;8022;11680;15335;9505;17303;14617;12214;12913;10299;11141;11307;9893;11141;11173;13273;13513;10846;14663;15422;10139;10331;10791;10530;13060;10550;10930;10378;8257;7675;6832;7340;6235;5849;5011;4549;4676;3422;3974;3901;2855;2569;2021
-110;'392;Japan;1873;Wood-based panels;5516;Production;m3;1747700;2122000;2449000;2923000;3047000;3880000;4484000;5525000;6795000;7979000;8239000;8918000;9989000;8617000;7364000;8601000;9005000;9524000;10439000;9980000;8782000;8327000;8896000;8632000;8664000;8360000;9233000;9254000;8660000;8325000;8200000;8046000;7617000;7252000;6801000;6758000;7123000;5689000;5364000;5477000;4972000;4833000;5124000;5228000;5320000;5454000;5253000;4549000;3941000;4350000;4279000;4316000;4669000;4737800;4619700;4959000;5216000;5140000;5166000;4657000;4908000;4763000;4091000
-110;'392;Japan;1873;Wood-based panels;5616;Import quantity;m3;130;176;352;3000;10200;24590;63454;21680;79059;498859;117164;258011;1517592;811692;281616;163132;82600;93200;139200;204200;76300;77800;85000;164800;366400;749100;2074900;2290700;3512300;3219000;3282400;3286697;4599991;4893200;5394500;6616800;6858500;4902000;5925000;6083000;6187000;6242000;5314000;6327000;5882000;6212000;5357000;4432000;3685000;3870000;4630856;4465475;4629769;4440000;3872266;3789764;4088319;4038027;3658172;3155181;3581314;3901222;3041648
-110;'392;Japan;1873;Wood-based panels;5622;Import value;1000 USD;37;42;70;410;850;1746;6092;2023;7106;31617;9042;20666;170928;97363;32309;28173;16247;20927;27105;49540;17787;16882;11536;34644;68361;150714;540341;680888;1128770;1118666;1067738;1045472;2158852;2196088;2417428;2960489;2969332;1487550;2195468;2167437;1982915;1992653;1794249;2522633;2283569;2773057;2328471;2207891;1706309;2020527;2886682;2936352;2999748;3039567;2048753;1835714;1936352;2151319;1859584;1515625;1940085;2521674;1675880
-110;'392;Japan;1873;Wood-based panels;5916;Export quantity;m3;345500;358800;342600;361800;388800;710433;633458;797237;738353;606506;618259;510770;298459;235191;221196;256065;277165;215500;173300;121800;137700;129700;136800;124100;119100;88400;70400;61500;54100;52900;42800;46105;30947;13000;11100;31400;25500;28400;24000;25500;29000;37400;47800;34300;37500;32100;39900;37000;43000;30448;30594;24127;26476;27339;70342;125374;149962;148204;133943;126453;169210;151148;133651
-110;'392;Japan;1873;Wood-based panels;5922;Export value;1000 USD;58435;67758;66145;68894;65102;73737;68987;93207;93143;75097;87053;90028;74351;68542;57972;78393;100342;94315;89388;70768;68692;59054;64959;54697;49346;49757;35636;27699;32173;30354;28659;28128;24482;24623;17246;22027;20175;18626;16983;13479;12415;14214;20387;16932;15405;15101;17194;19581;19249;17390;18716;13653;12254;13566;27347;55286;69443;73463;66830;61573;80312.46;94197;79511
-110;'392;Japan;1640;Plywood and LVL;5516;Production;m3;1499000;1833000;2073000;2453000;2627000;3101000;3778000;4743000;5893000;6922000;7197000;7748000;8596000;7443000;6168000;7136000;7476000;8016000;8532000;8000000;7096000;6742000;7291000;7083000;7033000;6824000;7340000;7291000;6700000;6415000;6174000;5954000;5263000;4865000;4421000;4311000;4257000;3267000;3261000;3218000;2771000;2735000;3024000;3149000;3212000;3314000;3073000;2586000;2287000;2645000;2486000;2549000;2761000;2813000;2756000;3063000;3287000;3298000;3337000;2999000;3172000;3059000;2532000
-110;'392;Japan;1640;Plywood and LVL;5616;Import quantity;m3;30;33;100;300;500;3200;39800;13900;49900;478700;108600;255000;1460600;786800;277000;154600;77500;89600;100200;113000;38100;37900;44100;134700;337100;672000;1807600;1970800;3261400;2941100;3045500;3002600;4104900;4074100;4436900;5381000;5422000;3938000;4888000;5033000;5021000;5119000;4221000;5122000;4732000;5046000;4064000;3583000;2948000;3130000;3665735;3526216;3644000;3491000;2886000;2770000;3016541;2933871;2557961;2227494;2648233;2744700;2170099
-110;'392;Japan;1640;Plywood and LVL;5622;Import value;1000 USD;9;10;30;212;335;618;4648;1495;6067;30439;8156;20492;165381;93369;31554;26975;15196;20155;19597;32900;11206;11563;5883;30032;63471;140500;503942;634831;1072330;1032603;991965;965170;1983997;1926480;2112036;2603758;2583848;1254111;1931890;1894161;1697981;1728634;1475437;2154142;1939250;2418500;1920114;1847000;1397318;1650303;2394047;2424171;2499578;2568624;1657482;1419787;1507594;1687551;1397271;1126123;1516436;1922195;1236115
-110;'392;Japan;1640;Plywood and LVL;5916;Export quantity;m3;344900;358100;341700;360300;382400;707600;632100;796300;737200;604300;613500;507000;291409;231300;217200;250700;261600;197000;151500;103500;106800;93700;99600;82900;78100;54100;28900;18700;18500;16700;12100;13100;5900;3800;8600;21100;10000;8000;9000;7000;13000;13000;15000;9000;10000;12000;13000;10000;18000;6328;7829;6068;7000;8399;43000;93591;113838;123452;111280;108874;145220;134650;117167
-110;'392;Japan;1640;Plywood and LVL;5922;Export value;1000 USD;58369;67659;66036;68750;64906;73397;68792;93032;92755;74578;86187;89008;72022;66759;56121;76539;96554;88907;83621;66345;62427;52246;57997;47550;42388;43098;26743;16333;22626;21319;20885;16814;14210;15482;14619;16078;14546;10015;11630;8572;7969;8938;11159;8131;6759;7478;6461;6313;5426;5414;7078;3724;3257;4999;17790;42142;52767;61289;56995;54026;70989;87278;72966
-110;'392;Japan;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;228000
-110;'392;Japan;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527161;490034
-110;'392;Japan;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258719;203967
-110;'392;Japan;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;3
-110;'392;Japan;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;47
-110;'392;Japan;1646;Particle board and OSB (1961-1994);5516;Production;m3;105000;134000;162000;206000;166000;202000;231000;265000;297000;350000;373000;500000;645000;577000;699000;901000;941000;941000;1260000;1312000;1141000;921000;929000;885000;904000;900000;1102000;1064000;1055000;987000;1097000;1163000;1265000;1299000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;100;200;2600;9500;19600;18600;4200;26000;17000;5300;2800;49200;19100;4300;7900;5000;3500;31900;74700;11900;8000;9000;7500;8600;30100;100900;83000;147000;187700;130500;127910;187152;347400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;28;23;29;177;474;970;1017;261;792;950;620;157;4785;3073;691;832;956;677;6743;14289;3568;2114;2448;2427;2861;5385;18509;18832;29069;30990;32547;31857;57992;98234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;400;300;400;900;5300;200;200;200;100;100;1600;400;100;100;100;100;300;300;2000;800;1900;3000;4200;6300;4100;1700;100;1700;300;300;500;3100;1900;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;29;30;36;31;25;19;8;8;55;69;94;94;65;55;94;44;308;417;1131;624;754;848;1002;1412;900;471;121;1106;312;424;401;646;1051;401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1310000;1332000;1249000;1084000;1182000;1261000;1256000;1237000;1249000;1186000;1234000;1245000;1243000;1135000;972000;934000;959000;943000;1040000;1073000;1070000;1088000;1093000;1069000;1051000;961000;1004000;985000;935000
-110;'392;Japan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361000;553100;672800;198000;176000;181000;199000;201000;222000;228000;229000;223000;222000;187000;183000;210000;272455;279000;292000;263000;285872;302080;248217;256992;277914;240944;257406;346473;240785
-110;'392;Japan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119837;168962;192682;59407;60230;62560;67566;66426;84354;91551;90997;87305;92680;85794;78766;89068;122356;121490;123887;111102;101743;108208;94805;102102;103656;91530;107679;160593;111978
-110;'392;Japan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;1500;1390;970;1000;1000;2000;13000;17000;21000;16000;21000;21000;15000;12000;11140;7990;6515;12000;11353;14857;15355;12361;16380;13321;20094;12241;13228
-110;'392;Japan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726;642;712;1275;322;275;421;477;3276;6441;6900;5871;7406;8003;7284;6011;5194;3708;2459;2852;3505;4898;4794;3937;5483;4204;6214;3871;4111
-110;'392;Japan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213000;204000;204000;190000;204000;193000;231000;163000;239000;238000;223000;178000;213000;298478;227000;264000;270000;211767;222753;280472;285360;256924;218311;211476;232868;140356
-110;'392;Japan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55350;61964;61964;50645;49542;46832;83333;56273;80221;83297;80524;55608;71603;110810;81764;96399;95247;67067;66303;84864;96672;81995;73772;82562;113516;65064
-110;'392;Japan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;30;0;0;0;0;0;0;0;0;0;0;0;319;10;0;0;6;0;0;0;480;0;0;0;1
-110;'392;Japan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;19;0;0;0;0;0;0;0;0;0;0;0;110;14;0;0;4;0;0;0;98;0;0;0;5
-110;'392;Japan;1874;Fibreboard;5516;Production;m3;143700;155000;214000;264000;254000;577000;475000;517000;605000;707000;669000;670000;748000;597000;497000;564000;588000;567000;647000;668000;545000;664000;676000;664000;727000;636000;791000;899000;905000;923000;929000;929000;1089000;1088000;1070000;1115000;1617000;1338000;921000;998000;945000;861000;851000;893000;874000;895000;937000;828000;682000;771000;834000;824000;868000;851800;793700;808000;836000;773000;778000;697000;732000;719000;624000
-110;'392;Japan;1874;Fibreboard;5616;Import quantity;m3;;43;52;100;200;1790;5054;3580;3159;3159;3264;211;7792;5792;316;632;100;100;7100;16500;26300;31900;31900;22600;20700;47000;166400;236900;103900;90200;106400;156187;307939;471700;596600;682700;763700;553000;657000;665000;777000;718000;678000;746000;758000;704000;833000;439000;376000;317000;394188;433259;429769;416000;488627;494931;543089;561804;565373;468432;464199;577181;490408
-110;'392;Japan;1874;Fibreboard;5622;Import value;1000 USD;;9;11;21;41;158;427;267;247;228;266;17;762;921;64;366;95;95;765;2351;3013;3205;3205;2185;2029;4829;17890;27225;27371;55073;43226;48445;116863;171374;185555;187769;192802;118682;141384;148752;166723;148051;187626;193607;197049;187031;232380;194573;174617;209553;259469;308927;279884;264594;222461;241416;249089;264994;276662;224200;233408;325370;262723
-110;'392;Japan;1874;Fibreboard;5916;Export quantity;m3;200;400;500;600;1100;2633;1158;737;1053;2106;3159;3370;6950;3791;3896;5265;15265;18200;19800;17500;29000;33000;33000;34900;36900;32600;41400;41100;35300;35900;30200;29905;23147;8900;2000;9800;14000;19000;14000;17500;15000;22400;19800;8300;6500;4100;5900;6000;10000;12120;11306;10059;12961;6940;15983;16926;20769;12391;5803;4258;3896;4257;3255
-110;'392;Japan;1874;Fibreboard;5922;Export value;1000 USD;37;69;73;113;171;321;187;167;333;450;772;926;2264;1728;1757;1810;3480;4991;4636;3799;5511;5960;5960;5735;6058;6188;8772;10260;9235;8611;7373;10668;9221;8740;1901;5307;4917;7331;5012;4632;4025;4799;5952;2360;1746;1752;3327;5265;6539;5965;6334;6207;6538;5715;6048;8246;11882;8237;4254;3343;3109.46;3048;2429
-110;'392;Japan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453000;510000;281000;224000;94000;79000;73000;64000;65000;66000;58000;59000;61000;60000;44000;49000;51000;52000;48000;46800;43700;44000;44000;44000;44000;47000;44000;35000;31000
-110;'392;Japan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;54000;57000;37000;33000;26000;39000;34000;36000;29000;29000;39000;29000;27000;20000;11000;2458;2259;2369;2000;1238;1410;1080;842;1467;704;189;147;54
-110;'392;Japan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28316;25950;23903;13282;13323;12764;18021;14043;38378;15777;15777;20021;13020;13937;11294;8868;3221;2233;2497;2322;1518;1942;1489;1158;1810;1093;276;195;115
-110;'392;Japan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;500;1000;400;800;800;500;500;1300;2000;1000;120;186;59;61;55;43;46;547;1222;207;195;159;218;154
-110;'392;Japan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;403;228;462;169;540;562;249;251;639;1897;853;99;269;111;90;67;54;76;437;947;701;625;868.46;635;415
-110;'392;Japan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557000;466000;353000;447000;433000;410000;420000;438000;420000;436000;475000;397000;320000;342000;374000;387000;404000;389000;397000;419000;415000;396000;404000;350000;378000;394000;328000
-110;'392;Japan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484500;592000;679000;504000;618000;636000;735000;680000;638000;715000;726000;660000;793000;398000;336000;282000;367000;428000;425700;413000;486000;491121;535346;557334;561906;466789;462682;575610;489269
-110;'392;Japan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148497;156631;165366;103929;127080;135081;147800;132621;147906;177036;180115;164895;215245;175540;156201;190299;242637;305522;276649;261132;220397;238533;245001;262387;273843;222434;232132;324525;262007
-110;'392;Japan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;8000;6000;1000;5000;4000;3000;12000;5000;5000;2600;2600;3000;8000;10000;10108;9000;11900;6000;14508;15460;17678;9125;4596;3492;2929;3354;2380
-110;'392;Japan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4553;1129;3646;981;1378;1448;1404;3511;1147;1147;1082;1076;2322;3834;4787;5355;5528;5619;4983;5440;7428;10539;6425;2875;2238;1863;2155;1722
-110;'392;Japan;1650;Other fibreboard;5516;Production;m3;32500;35000;59000;79000;87000;376000;180000;208000;260000;288000;288000;300000;316000;252000;236000;284000;311000;290000;357000;364000;283000;311000;307000;309000;340000;410000;450000;524000;518000;531000;544000;544000;642000;640000;617000;605000;779000;648000;474000;472000;439000;387000;366000;389000;396000;400000;401000;371000;318000;380000;409000;385000;416000;416000;353000;345000;377000;333000;330000;300000;310000;290000;265000
-110;'392;Japan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;6600;13100;24600;31500;31500;21800;19700;43800;162200;231600;38500;2100;3800;8371;7040;10700;58100;36700;27700;12000;6000;3000;3000;4000;4000;2000;3000;5000;11000;14000;20000;24000;24730;3000;1700;1000;1389;2400;6663;3628;2000;939;1328;1424;1085
-110;'392;Japan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;605;1213;2436;3066;3066;2005;1785;4066;16510;24651;3909;396;865;2967;2927;4223;8742;5188;3533;1471;981;907;902;1387;1342;794;1157;2115;4115;5096;7122;10386;13611;1172;738;1140;546;941;2599;1449;1009;673;1000;650;601
-110;'392;Japan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;10000;12700;17600;16400;28000;32000;32000;34100;36200;32000;40000;40500;35000;35700;30000;25526;18475;8400;2000;1100;6000;12000;12000;12000;10000;19000;7000;2500;1000;1000;2000;1000;1000;2000;1012;1000;1000;885;1432;1420;2544;2044;1000;571;808;685;721
-110;'392;Japan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;1297;2088;3482;3117;5157;5521;5521;5452;5817;5947;8245;9651;8596;8250;6980;9291;7608;8270;1901;754;3788;3350;3628;3026;2115;3226;1901;651;350;419;1612;1046;1852;1079;710;568;829;665;554;742;906;865;678;480;378;258;292
-110;'392;Japan;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;111200;120000;155000;185000;167000;201000;295000;309000;345000;419000;381000;370000;432000;345000;261000;280000;277000;277000;290000;304000;262000;353000;369000;355000;387000;226000;341000;375000;387000;392000;385000;385000;447000;448000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;43;52;100;200;1790;5054;3580;3159;3159;3264;211;7792;5792;316;632;100;100;500;3400;1700;400;400;800;1000;3200;4200;5300;65400;88100;102600;147816;300899;461000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;9;11;21;41;158;427;267;247;228;266;17;762;921;64;366;95;95;160;1138;577;139;139;180;244;763;1380;2574;23462;54677;42361;45478;113936;167151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;200;400;500;600;1100;2633;1158;737;1053;2106;3159;3370;6950;3791;3896;5265;5265;5500;2200;1100;1000;1000;1000;800;700;600;1400;600;300;200;200;4379;4672;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;37;69;73;113;171;321;187;167;333;450;772;926;2264;1728;1757;1810;2183;2903;1154;682;354;439;439;283;241;241;527;609;639;361;393;1377;1613;470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1879;Total fibre furnish;5510;Production;t;5513600;5851700;6567200;7456600;7540700;8395600;9178000;9951000;11359000;12943000;13096000;14107000;15977000;15462000;13585000;15458000;15659000;15986000;17430000;17567000;16276000;16833000;17597000;18592000;19192000;19585000;20758000;22194000;23888000;25173000;26224000;25699000;25289000;25280000;26231300;26316300;26630300;26172300;26161300;29651115;29857162;30694152;31014616;31994000;33124746;33665300;33890700;33458252;30201919;31141031;30581578;30415622;30684000;30772651;30180849;29930708;29850763;29338000;27999000;25936542;26029000;25336000;24336093
-110;'392;Japan;1879;Total fibre furnish;5610;Import quantity;t;12600;62700;281600;333400;304300;463600;516200;611000;670000;842000;564400;681500;1095000;1459100;969500;1013100;1086700;1587200;1743100;2158800;1569200;1675900;2201300;2204800;2305900;2633200;3090700;3417000;3561400;3305400;3523100;3334810;3473488;3943600;3870000;3677500;3631900;3340350;3214200;3239300;2800300;2566250;2450100;2499100;2304100;2283100;2081200;1977200;1632100;1774636;1830646;1755981;1688804;1693000;1649000;1594807;1741333;1626407;1653385;1477822;1401428.61;1478975;1094174
-110;'392;Japan;1879;Total fibre furnish;5622;Import value;1000 USD;1580;8008;35281;46019;42793;67265;71694;81778;96486;133779;97613;115192;212834;436910;322192;326630;320079;454205;629359;959262;745192;768865;796182;899181;825981;978729;1434804;1931134;2370778;1876749;1571243;1558289;1384328;1829663;2798233;1835135;1687021;1470923;1376924;1834949;1252208;1042844;1121918;1254054;1173506;1293682;1348341;1416670;905714;1342962;1463341;1208030;1170945;1204630;1163290;1024477;1199151;1372418;1206403;939392;1140343.08;1453740;1058393
-110;'392;Japan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;2000;11000;16000;50800;59300;56400;224071;179500;299400;215548;150000;139600;118700;185900;92000;45600;38000;32500;162600;75000;16400;59700;38800;12300;48320;58946;86200;104300;97700;373100;604000;369000;493080;1579000;2004000;2157600;3014000;3885000;4097000;4055000;3667500;5054500;4755499;4805825;5252354;5315502;4965895;4590129;4374331;3985183;4051600;3357660;3424987;2622786.22;2088977;2530666
-110;'392;Japan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;266;1487;2073;6844;7518;10070;109386;49659;50716;47683;32179;46484;51023;50458;25250;15330;15258;7289;22248;13594;7674;6982;11477;4818;7470;7741;18535;61751;40630;48909;49842;58116;119211;131722;192587;241434;397199;513435;563717;725319;829237;753026;1106215;1227482;1114057;1109879;1010949;911635;850119;939428;951359;566196;522967;672370.06;595503;523540
-110;'392;Japan;1878;Pulp for paper;5510;Production;t;3725400;3816700;4164200;4568600;4694700;5204600;5699000;6345000;7144000;8247000;8494000;8944000;9634000;9596000;8350000;9194000;9107000;9070000;9677000;9488000;8356000;8361000;8601000;8892000;9040000;9075000;9548000;10237000;10797000;11151000;11557000;11032000;10448000;10439000;10980000;11065000;11379000;10921000;10910000;11319000;10735000;10648000;10572000;10703000;10805000;10840000;10850000;10706000;8538000;9426000;9029000;8664000;8791000;8989000;8745000;8656000;8757000;8644000;8390000;7071000;7620000;7573000;7210599
-110;'392;Japan;1878;Pulp for paper;5610;Import quantity;t;12600;62700;281600;333400;304300;463600;516200;611000;670000;732000;480400;585500;919000;1228400;848600;886800;961700;1485000;1611700;1935100;1488700;1581500;1924000;1893300;2005700;2281500;2474700;2829100;3123200;2671200;2672000;2888539;3055160;3539200;3391300;3246500;3269900;3046350;2914200;2961300;2586300;2422250;2332100;2418100;2227100;2211100;2014200;1916200;1588100;1730766;1788456;1728373;1658728;1659000;1614000;1551388;1694843;1584407;1606088;1447601;1385320.61;1461652;1075227
-110;'392;Japan;1878;Pulp for paper;5622;Import value;1000 USD;1580;8008;35281;46019;42793;67265;71694;81778;96486;124173;90444;106007;190760;396607;305787;305694;301031;438955;604846;914614;727939;751375;754347;851332;781678;920186;1305416;1799651;2261120;1749996;1404029;1466585;1303335;1735813;2641178;1741167;1605878;1412979;1321366;1765673;1212052;1016068;1099800;1237574;1156841;1276665;1328254;1395366;894704;1326732;1444950;1197840;1159613;1191415;1149462;1008147;1181005;1354122;1190763;929594;1133207.08;1445165;1049458
-110;'392;Japan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;2000;11000;10000;41800;47300;44400;215800;140100;146400;152948;92200;107100;98900;103300;65600;43500;29900;14800;36000;15500;10700;9000;16900;9700;7457;5847;12800;62800;76500;61100;43000;81000;121080;93000;107000;167600;179000;175000;210000;211000;176500;140500;381499;373693;323039;425787;347895;329129;236387;251219;272697;216547;237224;257268.46;256099;306199
-110;'392;Japan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;266;1487;1556;6303;6887;9276;108514;47559;42732;43254;27245;43552;49128;43800;22882;15047;12763;5207;14011;7492;6970;2172;9263;4270;3733;3163;7678;53048;37770;27189;17548;36500;71099;33574;39805;63103;72362;76022;100483;116240;95834;63785;233598;221280;162089;207397;176551;164259;116599;140528;189425;113820;108989;159916.58;190938;182263
-110;'392;Japan;1875;Wood pulp;5510;Production;t;4076700;4166600;4544400;4990200;5134500;5660100;6199800;6832000;7657000;8768000;9005000;9431000;10095000;10017000;8613000;9503000;9423000;9376000;9975000;9773000;8601000;8617000;8848000;9127000;9279000;9240000;9716000;10406000;10967000;11321000;11722000;11194000;10590000;10575000;11118000;11195000;11486000;10988000;10971000;11373000;10792000;10652000;10583000;10714000;10821000;10861000;10850000;10733000;8570000;9475000;9083000;8722000;8841000;9066000;8875000;8809000;8921000;8806000;8560000;7241000;7773000;7724000;7368985
-110;'392;Japan;1875;Wood pulp;5610;Import quantity;t;172000;227000;471600;527800;503700;671500;722700;784000;858000;914000;660900;803200;1105800;1500700;1030400;1077200;1165500;1690600;1857700;2205500;1687200;1742500;2158200;2148100;2252300;2548000;2710000;3058800;3336200;2869200;2906200;3085892;3267204;3678100;3541200;3381000;3404800;3166350;3039200;3092300;2686300;2512250;2430100;2512100;2317100;2325100;2059200;1978200;1665100;1809990;1879358;1827143;1748906;1751000;1683000;1634315;1784043;1681229;1691052;1514373;1455167.94;1531806;1169501
-110;'392;Japan;1875;Wood pulp;5622;Import value;1000 USD;30963;37937;68188;80728;78266;103492;108350;112570;129913;159257;127377;150622;233068;503119;384972;390744;391831;534394;725396;1074044;846295;841352;872315;978965;905092;1056616;1436094;1953587;2435555;1904354;1588778;1601428;1451490;1824407;2769657;1853165;1702860;1494182;1410296;1855004;1271815;1078239;1165957;1302753;1219474;1375186;1366720;1456304;986284;1406527;1549152;1356635;1313053;1344709;1245613;1113973;1281918;1457197;1275373;990768;1195258.58;1510304;1180924
-110;'392;Japan;1875;Wood pulp;5910;Export quantity;t;7500;800;300;300;300;100;100;2100;12000;10300;43300;48700;45800;231100;150100;147400;159548;94900;110100;100000;104600;68100;45500;38500;20000;37100;16600;12500;9200;17900;11700;7601;5954;13400;69300;79700;62400;43000;83000;132000;104000;133000;193000;206000;193000;228000;228000;188000;160000;409257;393360;349968;451654;391895;411012;344988;368060;373355;342153;344819;365873.99;359140;411337
-110;'392;Japan;1875;Wood pulp;5922;Export value;1000 USD;1268;9;47;47;47;6;81;344;1632;1644;6667;7235;9726;116276;52800;43224;45771;28380;44839;49872;44618;24317;15910;16427;7277;14511;8088;8210;2367;9881;5453;3564;2959;7736;59943;38073;26645;17813;37939;78630;39905;51631;77205;91297;87706;112167;129849;112781;79919;270920;257959;189666;228747;211669;230509;209793;244174;282876;213166;177049;260446.33;295641;276497
-110;'392;Japan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566000;561000;528000;446000;465000;445000;432000
-110;'392;Japan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99450;96516;84733;60058;55062.47;14594;10100
-110;'392;Japan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43915;43605;37894;25339;27681.91;10869;7656
-110;'392;Japan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;206;264;199;125;38;47
-110;'392;Japan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;110;134;151;90;23;27
-110;'392;Japan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;922300;915800;891300;934700;952800;984600;1013800;1051000;1080000;1272000;1255000;1275000;1376000;1423000;1320000;1464000;1513000;1671000;1757000;1770000;1638000;1540000;1595000;1580000;1646000;1662000;1683000;1928000;2009000;2048000;2072000;1861000;1644000;1636000;1673000;1705000;1674000;1598000;1474000;1405000;1394000;1258000;1236000;1237000;1203000;1166000;1033000;960000;747000;738000;714000;689000;666000;647000;587000;584000;;;;;;;
-110;'392;Japan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;700;800;700;1000;1000;1000;3000;9100;36200;76100;163300;167400;209000;279800;282500;377500;374900;302300;296000;395200;368700;361100;397500;424300;466800;443900;463400;426800;373753;339001;398300;409200;442000;424000;393000;404000;421000;369000;349000;267000;303000;288000;256000;265000;250000;197000;221597;199270;170932;143007;115000;109000;95872;;;;;;;
-110;'392;Japan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;64;71;57;106;50;50;297;973;3869;8348;29826;27201;31304;42237;48712;84579;101184;79923;83234;106894;96325;92293;112024;137885;169973;171172;165086;141088;113843;105478;131443;170569;157992;140127;112419;110357;120267;91861;87080;77625;99585;97985;86859;99100;99148;73584;93366;87049;79501;65549;51488;43091;38853;;;;;;;
-110;'392;Japan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;93;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;8;0;8;35;;;;;;;
-110;'392;Japan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;87;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;4;0;13;64;;;;;;;
-110;'392;Japan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;511000;608300;730100;845300;856400;988900;1124700;1367000;1625000;1930000;1840000;1876000;1989000;1837000;1458000;1503000;1336000;1150000;1090000;1002000;797000;622000;553000;540000;496000;453000;446000;434000;344000;324000;334000;293000;243000;214000;211000;198000;196000;152000;102000;96000;75000;59000;53000;49000;49000;42000;43000;41000;34000;31000;22000;22000;19000;17000;20000;18000;;;;;;;
-110;'392;Japan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;1100;9100;4000;1000;1400;1400;1200;3700;4800;6000;6500;900;5500;4200;1200;48100;81800;77900;37700;38080;48314;80600;71900;65000;72000;83000;89000;76000;123000;112000;45000;44000;39000;35000;42000;37000;32000;38412;40496;30720;25236;27000;24000;17855;;;;;;;
-110;'392;Japan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;230;2708;1225;274;405;405;394;863;1054;1135;668;331;1806;1419;441;22683;39505;34098;16053;16015;16920;32865;50260;26921;27280;30009;33323;39701;48053;42783;19086;19974;18799;18336;24819;25297;16508;25332;24159;17977;15196;16389;13518;9357;;;;;;;
-110;'392;Japan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;750;1015;966;744;265;0;0;;;;;;;
-110;'392;Japan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;299;469;1997;717;124;0;0;;;;;;;
-110;'392;Japan;1656;Chemical wood pulp;5510;Production;t;2242200;2254700;2510100;2755200;2856000;3200100;3529300;3899000;4410000;5012000;5365000;5766000;6241000;6313000;5555000;6212000;6244000;6234000;6812000;6701000;5910000;6189000;6440000;6755000;6888000;6953000;7412000;7867000;8425000;8762000;9144000;8874000;8550000;8585000;9092000;9158000;9490000;9152000;9315000;9792000;9245000;9258000;9215000;9349000;9490000;9572000;9713000;9649000;7714000;8619000;8265000;7926000;8082000;8302000;8132000;8048000;8184000;8077000;7857000;6620000;7150000;7124000;6774340
-110;'392;Japan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;608000;666000;725000;468500;545800;834500;1050800;672900;671700;673200;1192400;1223100;1545700;1170900;1268500;1508500;1508100;1623500;1864500;2028700;2283200;2569500;2104700;2194100;2448078;2639182;3026100;2868700;2701800;2728800;2533350;2385200;2426300;2052300;1925250;1984100;2036100;1863100;1884100;1672200;1596200;1338100;1442787;1516802;1497721;1463055;1489000;1450000;1412263;1568709;1457116;1495812;1365792;1304477.77;1417498;1038734
-110;'392;Japan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;80920;95155;122554;88254;100685;178667;358497;273382;269640;251589;382636;508733;799359;634218;653524;630902;733174;667002;789879;1145324;1575649;2014244;1511058;1227844;1291986;1137899;1521943;2350995;1491641;1371727;1209445;1120180;1546086;1003955;835575;946592;1062478;978082;1112250;1144045;1200598;758088;1136630;1239336;1017551;1011670;1059063;1020043;895374;1061278;1226897;1082318;843903;1032733.96;1333473;956980
-110;'392;Japan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;2000;11000;10000;41800;47300;44400;215800;140100;146400;152948;92200;107100;98900;103300;65600;43500;29900;14800;36000;15500;10700;9000;16900;9700;6550;5266;12300;62500;75200;60300;42000;80000;121000;92000;106000;167000;178000;174000;209000;210000;176000;139000;380504;372498;321913;424902;344630;329004;236262;248784;268244;216234;236974;257102.46;256024;306109
-110;'392;Japan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;266;1487;1556;6303;6887;9276;108514;47559;42732;43254;27245;43552;49128;43800;22882;15047;12763;5207;14011;7492;6970;2172;9263;4270;2964;2491;6966;52193;34615;25311;17195;35924;71050;32594;38429;62131;70885;73320;97781;114018;95087;61896;230906;219150;159000;205721;173053;163516;115982;138728;186168;113436;108542;159609.58;190695;181955
-110;'392;Japan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;873900;862900;991300;1094100;1163200;1282000;1412000;1578000;1737000;1899000;2080000;2166000;2513000;2602000;2180000;2428000;2423000;2348000;2472000;2324000;1854000;1848000;1851000;1912000;1956000;1852000;1937000;1974000;1858000;1781000;1848000;1760000;1659000;1648000;1689000;1626000;1634000;1459000;1451000;1525000;1397000;1313000;1250000;1225000;1205000;1181000;1219000;1157000;916000;1058000;1041000;1023000;1026000;1072000;1039000;1032000;1044000;988000;967000;944000;1015000;1061000;981000
-110;'392;Japan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;100000;97000;98000;54300;86600;113800;127700;67000;70700;104700;154500;70800;107600;33600;46000;72000;59100;43400;72800;58900;44000;47400;122700;108400;113340;111751;120100;134400;120000;120000;102000;107000;82000;65000;36000;28000;38000;38000;40000;38000;37000;27000;27963;32246;26530;21928;25000;17000;16570;23213;28839;22476;17157;18169.01;21408;15732
-110;'392;Japan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;11465;11917;15735;9128;13539;22702;41716;25706;21093;27955;38217;25397;50802;16285;16691;22287;22843;15002;25130;28374;26096;24007;54714;52661;53084;47666;55545;100968;63130;54467;42908;44318;45103;29021;14592;12241;18688;18896;21668;25182;23359;14681;20759;25307;17534;14471;18988;12033;10782;16255;26271;16894;10365;15001.33;19658;12409
-110;'392;Japan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;4000;3000;3500;3500;400;10500;10600;10600;48;900;9300;8800;11800;4500;200;1900;3500;800;800;3200;6400;5700;4800;3676;827;1100;0;1000;900;4000;10000;12000;12000;30000;71000;68000;74000;104000;109000;98000;106000;150593;132824;124895;143207;138975;156000;167512;161843;122500;109882;145678;116940.22;124730;130773
-110;'392;Japan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;556;392;504;504;65;4236;3859;3859;14;262;2955;3241;3954;1349;104;740;1005;309;309;1752;399;2394;1860;1258;314;715;0;478;403;1268;3228;4991;3679;9111;21816;24310;27514;43474;56232;43494;44128;82152;79928;62297;72443;78480;80333;84745;93975;96701;62491;71611;81662.88;96789;82156
-110;'392;Japan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;913900;999500;1146400;1253300;1300400;1511100;1699000;1890000;2268000;2709000;2911000;3222000;3384000;3365000;3059000;3509000;3550000;3670000;4132000;4195000;3913000;4231000;4488000;4763000;4892000;5073000;5447000;5862000;6536000;6950000;7270000;7090000;6875000;6928000;7400000;7529000;7853000;7607000;7864000;8267000;7848000;7945000;7965000;8124000;8285000;8391000;8494000;8492000;6795000;7558000;7220000;6902000;7049000;7210000;7076000;6998000;7122000;7070000;6874000;5662000;6115000;6041000;5772000
-110;'392;Japan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;404000;466000;536000;360000;390100;600600;777400;546700;553700;507000;924800;1046100;1325600;1045800;1102000;1329600;1359900;1497800;1692400;1883200;2148000;2439000;1913600;2011100;2273160;2477428;2857300;2669400;2538000;2572300;2394000;2239000;2306000;1974000;1880000;1943000;1983000;1813000;1835000;1626000;1550000;1305000;1408659;1476781;1464191;1436697;1460000;1430000;1390582;1540905;1425097;1469700;1342770;1282509.49;1390268;1019607
-110;'392;Japan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;55579;68456;91004;68912;74484;129682;265556;222997;228264;199282;301847;434100;685140;562253;563211;555539;662862;613851;716573;1064903;1485565;1923230;1405259;1127492;1202270;1062772;1435400;2188675;1397228;1293489;1140946;1051124;1473094;964827;813184;924106;1031091;949862;1081883;1111087;1166000;736800;1108222;1200975;987523;988659;1031568;1002438;876357;1037515;1194708;1058904;823705;1011135.97;1302822;937465
-110;'392;Japan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2000;7000;7000;28800;30800;38600;170900;118600;128200;151700;89900;93300;89900;91400;61000;43200;27900;11200;29500;14100;2600;1600;10700;4400;1691;3645;11200;62500;74200;59400;37000;70000;109000;80000;75000;96000;110000;100000;105000;101000;77000;32000;228747;239479;196943;281324;205650;173000;68747;86937;145710;106329;91266;140109.24;131216;175326
-110;'392;Japan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;266;931;1164;4314;4455;7960;85376;40423;36751;42869;26557;39053;45710;39796;21483;14839;11926;4105;11137;6861;1707;1061;6564;2105;959;1753;6251;52193;34137;24908;15923;32696;66059;28915;29093;40315;46575;45806;54307;57786;50633;16779;146879;138711;96504;133034;94530;83145;31216;44720;89414;50903;36892;77898.7;93856;99777
-110;'392;Japan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;19000;16000;14000;20000;22000;21340
-110;'392;Japan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4591;3180;3636;5865;3799.27;5822;3395
-110;'392;Japan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7508;5918;6520;9833;6596.65;10993;7106
-110;'392;Japan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;34;23;30;53;78;10
-110;'392;Japan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;53;42;39;48;50;22
-110;'392;Japan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;234800;243600;248700;273500;236600;207700;236700;239000;259000;301000;310000;333000;311000;313000;275000;236000;230000;179000;136000;34000;11000;7000;5000;4000;4000;3000;2000;1000;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-110;'392;Japan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;36000;28000;19000;6600;13400;35800;44100;2000;900;2900;3400;4400;1200;1000;1000;900;1100;1800;1200;1300;1100;1200;1300;900;637;1024;700;600;1400;200;350;200;300;300;250;100;100;100;100;200;200;100;287;85;0;0;0;0;194;;;;;;;
-110;'392;Japan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3853;3028;2700;1085;2051;7470;14118;769;363;852;921;1617;615;545;549;436;621;870;546;832;728;865;763;498;378;779;400;492;799;197;323;226;253;275;216;85;179;141;112;222;219;106;302;104;0;0;0;0;118;;;;;;;
-110;'392;Japan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;122;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;6;0;0;0;0;0;;;;;;;
-110;'392;Japan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;171;23;0;0;0;0;0;;;;;;;
-110;'392;Japan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;219600;148700;123700;134300;155800;199300;181600;192000;146000;103000;64000;45000;33000;33000;41000;39000;41000;37000;72000;148000;132000;103000;96000;76000;36000;25000;26000;30000;31000;31000;26000;24000;16000;9000;3000;3000;3000;86000;0;0;0;0;0;0;0;0;0;0;3000;3000;4000;1000;7000;20000;17000;18000;;;;;;;
-110;'392;Japan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;68000;75000;72000;47600;55700;84300;101600;57200;46400;58600;109700;101800;111300;90500;119500;106000;88000;80500;98100;85300;90100;81900;67100;73700;60941;48979;48000;64300;42400;36300;37000;39000;38000;13000;9000;13000;15000;12000;9000;8000;9000;6000;5878;7690;7000;4430;4000;3000;4917;;;;;;;
-110;'392;Japan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;10023;11754;13115;9129;10611;18813;37107;23910;19920;23500;41651;47619;62802;55135;73073;52640;46848;37279;47630;51215;63260;66142;50322;47193;36254;26682;30598;60860;30484;23574;25268;24512;27636;9832;7583;10160;12520;9183;8587;7554;11020;6501;7347;12950;12494;8540;8507;5572;8117;;;;;;;
-110;'392;Japan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;9500;13000;5400;34400;10900;7600;1200;1400;4500;200;100;100;100;100;100;5700;600;4900;1000;500;500;1089;672;0;0;0;0;1000;0;0;0;1000;0;0;0;0;0;1000;1000;1137;189;75;371;5;4;3;;;;;;;
-110;'392;Japan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;1485;1928;1251;18902;3277;2122;371;426;1544;177;50;50;104;97;97;2565;322;3511;712;305;305;703;380;0;0;0;0;4;0;0;0;225;0;0;0;0;0;960;989;1704;488;199;244;43;38;21;;;;;;;
-110;'392;Japan;1667;Dissolving wood pulp;5510;Production;t;401200;387800;412900;455000;469300;486500;532000;515000;542000;554000;545000;514000;489000;444000;280000;324000;330000;321000;316000;300000;256000;266000;260000;252000;249000;172000;175000;177000;189000;187000;172000;166000;153000;140000;142000;134000;126000;86000;80000;80000;78000;77000;79000;79000;79000;81000;61000;83000;75000;87000;82000;85000;74000;100000;136000;159000;171000;168000;175000;175000;158000;155000;162645
-110;'392;Japan;1667;Dissolving wood pulp;5610;Import quantity;t;159400;164300;190000;197500;202900;210800;207900;175000;191000;186000;183300;221200;194100;277500;186100;195500;211100;214300;255900;281200;209200;172000;248000;270400;262200;281800;255800;260700;241000;223200;247600;225981;240707;173100;191400;172200;180000;157000;161000;169000;142000;126000;134000;129000;127000;150000;80000;95000;98000;107194;122790;127770;117608;120000;100000;108325;115884;127597;110507;88523;95627.69;99714;120667
-110;'392;Japan;1667;Dissolving wood pulp;5622;Import value;1000 USD;29383;29929;32907;35489;36551;37222;37236;31600;34708;36406;38150;46068;45823;112088;83164;89526;97600;102641;131690;172638;131100;103459;133851;149135;143991;153294;152444;185282;210634;194112;203793;179584;191193;138156;197833;176611;163726;142309;146436;148950;127946;112801;122654;120716;124608;157741;98756;131261;138104;151199;198608;241606;220638;217769;168961;170389;176725;186695;155161;121526;134842.72;165962;216288
-110;'392;Japan;1667;Dissolving wood pulp;5910;Export quantity;t;7500;800;300;300;300;100;100;100;1000;300;1500;1400;1400;15300;10000;1000;6600;2700;3000;1100;1300;2500;2000;8600;5200;1100;1100;1800;200;1000;2000;569;571;1100;6800;4500;2100;1000;3000;11000;12000;27000;26000;28000;19000;19000;18000;12000;21000;28003;19847;27077;26000;47000;82000;108691;119255;104905;125655;107646;108646.53;103078;105181
-110;'392;Japan;1667;Dissolving wood pulp;5922;Export value;1000 USD;1268;9;47;47;47;6;81;78;145;88;364;348;450;7762;5241;492;2517;1135;1287;744;818;1435;863;3664;2070;500;596;1240;195;618;1183;360;373;770;7750;3458;1334;618;2015;7580;7311;13202;15074;20412;14386;14386;15831;17694;18023;39715;38340;28663;22305;38492;66980;93747;105435;96598;99596;68356;100746.75;104923;94515
-110;'392;Japan;1668;Pulp from fibres other than wood;5510;Production;t;49900;37900;32700;33400;29500;31000;31200;28000;29000;33000;34000;27000;28000;23000;17000;15000;14000;15000;18000;15000;11000;10000;13000;17000;10000;7000;7000;8000;19000;17000;7000;4000;11000;4000;4000;4000;19000;19000;19000;26000;21000;73000;68000;68000;63000;60000;61000;56000;43000;38000;28000;27000;24000;23000;6000;6000;7000;6000;5000;5000;5000;4000;4259
-110;'392;Japan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3100;3500;2900;1400;2000;3000;4000;2800;3500;7300;5200;4300;5100;7300;8700;9900;10800;10700;11000;13800;15600;15600;15300;20500;31000;28000;25200;13400;28628;28663;34200;41500;37700;45100;37000;36000;38000;42000;36000;36000;35000;37000;36000;35000;33000;21000;27970;31888;29000;27430;28000;31000;25398;26684;30775;25543;21751;25780.36;29560;26393
-110;'392;Japan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;780;1078;995;580;808;1281;1322;1217;1453;3515;5576;3979;4476;6800;7202;11140;13208;12744;13482;15883;21502;20577;16864;21766;31346;36199;39754;19044;44741;43038;49562;69354;64613;66744;61106;57506;59619;68183;50630;56497;55537;61975;59220;60290;70323;46524;71404;94406;82811;67198;64475;72810;64563;75812;83620;70551;60352;72791.22;100823;84822
-110;'392;Japan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;464;500;300;1300;800;1000;1000;80;1000;1000;600;1000;1000;1000;1000;500;1500;245;180;148;133;3000;117;90;2414;4247;49;51;41;37;43
-110;'392;Japan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529;577;712;855;3155;1878;353;576;49;980;1376;972;1477;2702;2702;2222;747;1889;2393;1661;1086;955;3374;730;553;1789;3147;250;296;217;220;281
-110;'392;Japan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;4000;5000;9000;4000;4000;5000;3000;3000;3000;1000;1285;1031;1024;997;1000;1000;747;786;601;642;923;1122.88;1084;515
-110;'392;Japan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;1492;2405;2333;3785;2276;2373;3133;2049;1976;2712;467;1118;1053;1062;1022;1062;891;812;937;789;865;970;1061;1256;832
-110;'392;Japan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;1000;100;100;100;100;500;500;1000;1000;500;443;455;333;2836;2962;2504;860;807;2069;717;1132;2040.01;7491;18612
-110;'392;Japan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;102;669;82;39;44;83;339;409;364;335;190;429;402;302;2345;2357;1884;607;687;1236;452;626;988;2834;4581
-110;'392;Japan;1669;Recovered paper;5510;Production;t;1788200;2035000;2403000;2888000;2846000;3191000;3479000;3606000;4215000;4696000;4602000;5163000;6343000;5866000;5235000;6264000;6552000;6916000;7753000;8079000;7920000;8472000;8996000;9700000;10152000;10510000;11210000;11957000;13091000;14022000;14667000;14667000;14841000;14841000;15251300;15251300;15251300;15251300;15251300;18332115;19122162;20046152;20442616;21291000;22319746;22825300;23040700;22752252;21663919;21715031;21552578;21751622;21893000;21783651;21435849;21274708;21093763;20694000;19609000;18865542;18409000;17763000;17125494
-110;'392;Japan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;110000;84000;96000;176000;230700;120900;126300;125000;102200;131400;223700;80500;94400;277300;311500;300200;351700;616000;587900;438200;634200;851100;446271;418328;404400;478700;431000;362000;294000;300000;278000;214000;144000;118000;81000;77000;72000;67000;61000;44000;43870;42190;27608;30076;34000;35000;43419;46490;42000;47297;30221;16108;17323;18947
-110;'392;Japan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;9606;7169;9185;22074;40303;16405;20936;19048;15250;24513;44648;17253;17490;41835;47849;44303;58543;129388;131483;109658;126753;167214;91704;80993;93850;157055;93968;81143;57944;55558;69276;40156;26776;22118;16480;16665;17017;20087;21304;11010;16230;18391;10190;11332;13215;13828;16330;18146;18296;15640;9798;7136;8575;8935
-110;'392;Japan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;6000;9000;12000;12000;8271;39400;153000;62600;57800;32500;19800;82600;26400;2100;8100;17700;126600;59500;5700;50700;21900;2600;40863;53099;73400;41500;21200;312000;561000;288000;372000;1486000;1897000;1990000;2835000;3710000;3887000;3844000;3491000;4914000;4374000;4432132;4929315;4889715;4618000;4261000;4137944;3733964;3778903;3141113;3187763;2365517.77;1832878;2224467
-110;'392;Japan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;517;541;631;794;872;2100;7984;4429;4934;2932;1895;6658;2368;283;2495;2082;8237;6102;704;4810;2214;548;3737;4578;10857;8703;2860;21720;32294;21616;48112;98148;152782;178331;324837;437413;463234;609079;733403;689241;872617;1006202;951968;902482;834398;747376;733520;798900;761934;452376;413978;512453.48;404565;341277
-110;'392;Japan;1876;Paper and paperboard;5510;Production;t;5392700;5672200;6380000;7366000;7298600;8194600;9044000;9958000;11310000;12973000;12907000;13648000;15975000;15645000;13600000;15394000;15702000;16499000;17861000;18089000;16980000;17453000;18441000;19345000;20469000;21062000;22537000;24625000;26809000;28088000;29053000;28324000;27764000;28527000;29664000;30014000;31014000;29888000;30631000;31828000;30717000;30686000;30457000;30891000;30953000;31097000;31268000;30628000;26268000;27364000;26609000;25957000;26238000;26626000;26404000;26220000;26544000;26056000;25376000;22702000;24090000;23475000;21998478
-110;'392;Japan;1876;Paper and paperboard;5610;Import quantity;t;3570;3253;5560;106300;19100;29670;61820;135410;192000;115000;81700;156900;304000;506800;164042;227300;298900;435500;458900;656100;616800;746300;807100;805600;824500;859400;859300;903300;1344900;1203800;1236600;1209653;1301453;1412200;1544400;1857300;1613700;1448000;1364000;1647000;1681000;1806000;1985000;2274000;2059000;1961000;1664000;1544000;2066000;2067819;2404237;2497462;2132625;1985900;1810000;1622523;1584867;1299515;1574162;1226467;1236933.68;1102514;969509
-110;'392;Japan;1876;Paper and paperboard;5622;Import value;1000 USD;2649;3295;4231;19713;6683;8803;14685;26821;37922;31941;26357;38458;102455;281060;93254;127150;162762;219099;309160;467090;430986;461789;471943;470346;475403;547839;607556;710489;1100850;1022199;887875;1055899;1191566;1320051;1695286;1908560;1460046;1247666;1252434;1582224;1435070;1465756;1720642;2008869;1844523;1697216;1545481;1725240;2153790;2237140;2781854;2827211;2146705;1997063;1732435;1667843;1564237;1427313;1658487;1353982;1379540.14;1269480;1243944
-110;'392;Japan;1876;Paper and paperboard;5910;Export quantity;t;240200;190600;205200;217500;247100;350000;293000;346000;437000;525000;533000;544000;509000;742000;706900;652400;664100;627500;754600;763100;785900;855000;877300;750500;920100;900800;658700;518300;637600;1012400;1198300;1229753;966576;976500;963500;856600;1148900;1213000;1599000;1615000;1460000;890000;876000;1705000;1454665;1456000;1398000;1624000;1192000;1643158;1123672;981593;1226871;1416805;1514000;1708707;1963833;2172343;1751365;1990307;2317504.91;2338790;1817600
-110;'392;Japan;1876;Paper and paperboard;5922;Export value;1000 USD;49623;40657;43857;49828;54210;68770;63436;76300;99069;126118;131000;150000;207462;445000;427661;362966;378994;448066;585336;708558;708705;692000;609016;624171;682201;782761;494558;502310;1208123;1485035;1675778;1672024;1335868;1426339;1662015;1359526;1537639;1361165;1653235;1767692;1414998;956392;935452;2030113;1852530;1959243;1493525;2062866;1590978;2220222;1857909;1702493;1666688;1768165;1631929;1764776;1934773;2190375;1842685;1714790;2168932.69;2072991;1662807
-110;'392;Japan;2042;Graphic papers;5510;Production;t;1923100;2042300;2243400;2489000;2395600;2618000;2850000;3114000;3587000;4327000;4241000;4508000;4926000;5170000;4932000;5391000;5473000;5898000;6337000;6811000;6389000;6597000;6881000;7104000;7338000;7590000;8923000;10847000;12045000;12729000;13242000;12865000;12460000;12777000;13663000;13952000;14304000;14168000;14643000;15175000;14639000;14828000;14730000;15079000;15195000;15313000;15469000;15182000;12575000;12896000;11976000;11674000;11794000;11625000;11391000;11012000;11045000;10465000;9933000;7764000;8312000;7665000;7218335
-110;'392;Japan;2042;Graphic papers;5610;Import quantity;t;200;143;400;78900;11300;20800;48900;105500;166000;90000;52200;107900;163400;286000;54000;81200;88400;90200;130800;153200;180700;288000;323100;382800;416400;505400;522000;552900;588400;546300;570400;618053;668053;653100;747800;816900;779500;908000;807000;1067000;1128000;1254000;1397000;1576000;1397000;1246000;967000;909000;1394000;1362059;1705731;1795696;1435750;1351000;1192000;1024555;990824;715348;1009867;691957;705344.85;567064;532700
-110;'392;Japan;2042;Graphic papers;5622;Import value;1000 USD;37;31;139;12398;1951;3262;7542;16182;25952;14807;9225;20891;44134;152390;23859;35085;45512;45012;68023;89045;116047;166710;183316;218354;234502;367139;410187;483931;483524;441971;446764;527763;612250;602412;771559;754142;624363;694300;659857;919975;832707;877089;1042157;1226355;1143603;963023;797192;945175;1343825;1352493;1821017;1888821;1263513;1177013;972883;890696;816468;660570;924742;650087;646078.78;517017;547988
-110;'392;Japan;2042;Graphic papers;5910;Export quantity;t;138600;110200;126400;113000;115900;127400;113400;135700;169000;223000;208700;182900;162000;305800;301700;288300;276500;259400;330200;344500;395400;433000;402300;350500;401200;330800;345600;348900;152600;379800;455200;335953;243297;228100;295600;171100;224200;690000;884000;799000;716000;463000;447000;1065000;939000;889000;875000;1126000;859000;1168284;643402;539277;645098;652805;755000;839601;869237;1056120;730321;595849;734973.37;686099;630612
-110;'392;Japan;2042;Graphic papers;5922;Export value;1000 USD;28544;25154;28035;28758;30902;31267;30141;35769;45545;58108;55450;50479;49753;184259;138485;200386;187090;218478;300165;364552;357586;351132;297601;243791;277593;256190;300829;348214;184215;346449;398075;390823;268243;244620;356689;221943;244292;562273;670327;684961;542746;277960;274301;843491;813471;773509;678743;1110614;767469;1055953;655708;557195;593974;584862;615560;647952;671381;872719;632005;488425;632318.28;645920;596705
-110;'392;Japan;1671;Newsprint;5510;Production;t;803600;940800;1022400;1137000;1184200;1176500;1321000;1471000;1614000;1917000;1951000;2060000;2106000;2233000;2160000;2341000;2370000;2482000;2566000;2674000;2575000;2580000;2562000;2553000;2592000;2641000;2668000;3067000;3217000;3479000;3515000;3255000;2917000;2972000;3098000;3140000;3192000;3265000;3295000;3419000;3464000;3597000;3552000;3695000;3720000;3771000;3802000;3680000;3455000;3349000;3211000;3254000;3218000;3134000;2985000;2906000;2779000;2594000;2422000;2061000;1978000;1854000;1666486
-110;'392;Japan;1671;Newsprint;5610;Import quantity;t;100;100;200;78300;11100;20400;47900;103800;163000;88000;48300;79900;90500;91600;29500;40400;42000;52400;89000;126900;164700;244000;260100;298200;330400;417400;434000;358300;407400;434900;461600;544053;550053;536300;580100;637900;628500;620000;594000;613000;612000;565000;506000;484000;376000;272000;233000;182000;138000;138175;119637;53744;52607;53000;49000;23777;10586;4533;1586;2320;1829;808;994
-110;'392;Japan;1671;Newsprint;5622;Import value;1000 USD;6;6;22;12184;1832;3030;7106;15726;25016;14043;8175;14354;18121;34490;11237;15145;17137;22512;41623;69395;104035;136476;142540;163125;177254;296096;337408;305528;307701;302532;330835;408995;467794;467902;568591;554644;472317;432254;452431;485186;409072;338723;319210;315929;241215;166373;141601;130865;106468;109244;101977;42660;34602;32361;25473;13506;6086;2975;1095;1547;1220;713;756
-110;'392;Japan;1671;Newsprint;5910;Export quantity;t;12000;6300;6600;5300;6800;26000;7400;6000;4000;32000;35800;51000;44000;111800;107300;96100;94500;89700;99800;97500;136300;121000;85300;67800;81000;49800;49600;88700;64000;125500;155400;92153;59297;33600;100500;31100;29000;90000;139000;139000;177000;287000;245000;262000;216000;154000;219000;169000;114000;57542;19395;9333;7286;7000;6000;4902;3880;3820;838;492;4088.69;2792;811
-110;'392;Japan;1671;Newsprint;5922;Export value;1000 USD;1724;953;977;844;1047;3751;1094;917;619;4481;5145;7148;8609;40058;32561;28379;28030;29752;38196;47609;68047;55132;33114;26083;31820;19470;24110;54567;34797;66065;85630;39801;27195;16343;77716;21939;13722;44100;63498;71876;97488;109627;88507;115816;108200;82304;116688;115196;60310;30632;11397;5456;3792;3746;2538;2020;1612;2281;433;259;2278.73;1365;424
-110;'392;Japan;1674;Printing and writing papers;5510;Production;t;1119500;1101500;1221000;1352000;1211400;1441500;1529000;1643000;1973000;2410000;2290000;2448000;2820000;2937000;2772000;3050000;3103000;3416000;3771000;4137000;3814000;4017000;4319000;4551000;4746000;4949000;6255000;7780000;8828000;9250000;9727000;9610000;9543000;9805000;10565000;10812000;11112000;10903000;11348000;11756000;11175000;11231000;11178000;11384000;11475000;11542000;11667000;11502000;9120000;9547000;8765000;8420000;8576000;8491000;8406000;8106000;8266000;7871000;7511000;5703000;6334000;5811000;5551849
-110;'392;Japan;1674;Printing and writing papers;5610;Import quantity;t;100;43;200;600;200;400;1000;1700;3000;2000;3900;28000;72900;194400;24500;40800;46400;37800;41800;26300;16000;44000;63000;84600;86000;88000;88000;194600;181000;111400;108800;74000;118000;116800;167700;179000;151000;288000;213000;454000;516000;689000;891000;1092000;1021000;974000;734000;727000;1256000;1223884;1586094;1741952;1383143;1298000;1143000;1000778;980238;710815;1008281;689637;703515.85;566256;531706
-110;'392;Japan;1674;Printing and writing papers;5622;Import value;1000 USD;31;25;117;214;119;232;436;456;936;764;1050;6537;26013;117900;12622;19940;28375;22500;26400;19650;12012;30234;40776;55229;57248;71043;72779;178403;175823;139439;115929;118768;144456;134510;202968;199498;152046;262046;207426;434789;423635;538366;722947;910426;902388;796650;655591;814310;1237357;1243249;1719040;1846161;1228911;1144652;947410;877190;810382;657595;923647;648540;644858.78;516304;547232
-110;'392;Japan;1674;Printing and writing papers;5910;Export quantity;t;126600;103900;119800;107700;109100;101400;106000;129700;165000;191000;172900;131900;118000;194000;194400;192200;182000;169700;230400;247000;259100;312000;317000;282700;320200;281000;296000;260200;88600;254300;299800;243800;184000;194500;195100;140000;195200;600000;745000;660000;539000;176000;202000;803000;723000;735000;656000;957000;745000;1110742;624007;529944;637812;645805;749000;834699;865357;1052300;729483;595357;730884.69;683307;629801
-110;'392;Japan;1674;Printing and writing papers;5922;Export value;1000 USD;26820;24201;27058;27914;29855;27516;29047;34852;44926;53627;50305;43331;41144;144201;105924;172007;159060;188726;261969;316943;289539;296000;264487;217708;245773;236720;276719;293647;149418;280384;312445;351022;241048;228277;278973;200004;230570;518173;606829;613085;445258;168333;185794;727675;705271;691205;562055;995418;707159;1025321;644311;551739;590182;581116;613022;645932;669769;870438;631572;488166;630039.55;644555;596281
-110;'392;Japan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1494000;1555000;1444000;1450000;1454000;1416000;1374000;1379000;1292000;1272000;1094000;1012000;943000;894000;831000;807000;782000;751000;713000;670000;629000;582000;485000;517000;450000;413249
-110;'392;Japan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;40000;45000;40000;41000;44000;39000;45000;42000;49000;63000;64000;79094;113791;153739;120840;127000;106000;114226;113295;43791;40514;23304;21613.96;12263;5829
-110;'392;Japan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45281;33117;37882;31492;32214;36911;34292;35563;34947;39191;64818;60299;71344;115554;147974;99175;100183;73357;84549;79784;36316;35208;19263;16659.61;10217;6902
-110;'392;Japan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;7000;9000;11000;13000;15000;15000;14000;12000;7000;9000;10758;7984;6700;5016;2000;3000;2386;2947;5000;5360;3622;7585.55;18737;8355
-110;'392;Japan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1525;4242;10144;9231;8910;10149;11220;12100;11100;10364;7519;9962;13524;9944;8519;6700;4500;5080;3345;3597;6445;4613;2288;6366.79;13240;6332
-110;'392;Japan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3423000;3563000;3582000;3447000;3442000;3105000;3072000;3017000;3408000;3426000;3465000;2572000;2683000;2581000;2717000;2704000;2728000;2684000;2532000;2721000;2727000;2732000;2035000;2163000;2028000;2075133
-110;'392;Japan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;63000;108000;116000;303000;361000;439000;422000;428000;362000;387000;454000;460483;538695;608172;579558;541000;549000;513453;512756;472289;481964;454317;448485.49;453533;414348
-110;'392;Japan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68981;66508;113081;107738;253715;320661;403967;384145;381891;355920;465553;513343;533752;666360;734794;585690;529568;520850;507868;487387;471275;487990;451075;440327.5;423850;430432
-110;'392;Japan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171000;184000;192000;161000;90000;130000;273000;272000;297000;321000;287000;194000;225698;178253;159715;157000;184000;205000;255049;249921;303481;209191;168113;215827.98;192307;192210
-110;'392;Japan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144421;144244;167656;124267;92680;120000;220143;236371;253205;291211;307722;203421;256402;213326;187193;173969;184632;188846;225378;215069;275780;200378;157862;212217.18;192186;201462
-110;'392;Japan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5986000;6230000;6730000;6278000;6335000;6657000;6938000;7079000;6842000;6969000;6943000;5536000;5921000;5290000;4872000;5065000;4981000;4971000;4861000;4875000;4515000;4197000;3183000;3654000;3333000;3063467
-110;'392;Japan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;110000;301000;360000;345000;486000;614000;554000;504000;323000;277000;738000;684307;933608;980041;682745;630000;488000;373099;354187;194735;485803;212016;233416.4;100460;111529
-110;'392;Japan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147784;107801;283826;284405;252437;365375;472167;482680;379812;260480;283939;663715;638153;937126;963393;544046;514901;353203;284773;243211;150004;400449;178202;187871.67;82237;109898
-110;'392;Japan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428000;559000;461000;369000;75000;59000;515000;436000;424000;323000;663000;542000;874286;437770;363529;475796;459805;541000;577264;612489;743819;514932;423622;507471.16;472263;429236
-110;'392;Japan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372227;458343;435285;311760;66743;55645;496312;456800;426900;260480;680177;493776;755395;421041;356027;409513;391984;419096;417209;451103;588213;426581;328016;411455.58;439129;388487
-110;'392;Japan;1675;Other paper and paperboard;5510;Production;t;3469600;3629900;4136600;4877000;4903000;5576600;6194000;6844000;7723000;8646000;8666000;9140000;11049000;10475000;8668000;10003000;10229000;10601000;11524000;11278000;10591000;10856000;11560000;12241000;13131000;13472000;13614000;13778000;14764000;15359000;15811000;15459000;15304000;15750000;16001000;16062000;16710000;15720000;15988000;16653000;16078000;15858000;15727000;15812000;15758000;15784000;15799000;15446000;13693000;14468000;14633000;14283000;14444000;15001000;15013000;15208000;15499000;15591000;15443000;14938000;15778000;15810000;14780143
-110;'392;Japan;1675;Other paper and paperboard;5610;Import quantity;t;3370;3110;5160;27400;7800;8870;12920;29910;26000;25000;29500;49000;140600;220800;110042;146100;210500;345300;328100;502900;436100;458300;484000;422800;408100;354000;337300;350400;756500;657500;666200;591600;633400;759100;796600;1040400;834200;540000;557000;580000;553000;552000;588000;698000;662000;715000;697000;635000;672000;705760;698506;701766;696875;634900;618000;597968;594043;584167;564295;534510;531588.83;535450;436809
-110;'392;Japan;1675;Other paper and paperboard;5622;Import value;1000 USD;2612;3264;4092;7315;4732;5541;7143;10639;11970;17134;17132;17567;58321;128670;69395;92065;117250;174087;241137;378045;314939;295079;288627;251992;240901;180700;197369;226558;617326;580228;441111;528136;579316;717639;923727;1154418;835683;553366;592577;662249;602363;588667;678485;782514;700920;734193;748289;780065;809965;884647;960837;938390;883192;820050;759552;777147;747769;766743;733745;703895;733461.36;752463;695956
-110;'392;Japan;1675;Other paper and paperboard;5910;Export quantity;t;101600;80400;78800;104500;131200;222600;179600;210300;268000;302000;324300;361100;347000;436200;405200;364100;387600;368100;424400;418600;390500;422000;475000;400000;518900;570000;313100;169400;485000;632600;743100;893800;723279;748400;667900;685500;924700;523000;715000;816000;744000;427000;429000;640000;515665;567000;523000;498000;333000;474874;480270;442316;581773;764000;759000;869106;1094596;1116223;1021044;1394458;1582531.53;1652691;1186988
-110;'392;Japan;1675;Other paper and paperboard;5922;Export value;1000 USD;21079;15503;15822;21070;23308;37503;33295;40531;53524;68010;75550;99521;157709;260741;289176;162580;191904;229588;285171;344006;351119;340868;311415;380380;404608;526571;193729;154096;1023908;1138586;1277703;1281201;1067625;1181719;1305326;1137583;1293347;798892;982908;1082731;872252;678432;661151;1186622;1039059;1185734;814782;952252;823509;1164269;1202201;1145298;1072714;1183303;1016369;1116824;1263392;1317656;1210680;1226365;1536614.42;1427071;1066102
-110;'392;Japan;1676;Household and sanitary papers;5510;Production;t;187300;205800;232200;251600;279200;313600;332000;402000;447000;499000;554000;632000;697000;691000;622000;696000;735000;769000;863000;900000;898000;908000;997000;1527000;1559000;1613000;1226000;1281000;1351000;1366000;1438000;1475000;1523000;1548000;1560000;1649000;1715000;1660000;1701000;1735000;1711000;1688000;1672000;1702000;1764000;1795000;1770000;1805000;1776000;1792000;1779000;1767000;1746000;1767000;1766000;1807000;1786000;1775000;1806000;1836000;1797000;1872000;1823000
-110;'392;Japan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;100;160;100;100;140;100;42;500;400;7700;37000;46000;17000;14000;4000;100;100;3000;1000;200;1100;200;500;300;300;800;800;800;800;1000;4000;5000;8000;11000;25000;19000;13000;6000;5000;6000;4000;4902;6665;7025;11612;11000;12000;13281;21190;20549;27620;25731;27822.1;19525;15720
-110;'392;Japan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;118;148;70;90;180;120;70;830;800;11800;60000;85300;34700;26000;9995;320;336;8019;104;492;2608;565;1912;1023;1044;3331;2759;2612;2569;2577;5268;7634;9261;11508;29327;26358;19288;11300;11219;12626;10470;11977;15716;19071;24223;24212;25559;28916;38653;40207;49718;43787;47868.63;41138;35620
-110;'392;Japan;1676;Household and sanitary papers;5910;Export quantity;t;;;;1500;2000;2300;2200;2400;1800;1800;1400;700;500;500;600;700;900;800;1000;1600;3000;3700;6000;13600;25800;15000;1600;2500;2200;3400;4200;4000;2900;5200;4600;4800;3300;2000;4000;11000;4000;3000;2000;3000;4000;11000;12000;11000;8000;7546;8708;9934;9773;10000;10000;8707;7784;10315;9674;12374;11160.22;9723;6761
-110;'392;Japan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;633;692;840;961;1150;900;1000;900;790;1260;770;800;1400;2200;2600;3600;5700;10718;9376;13609;23882;40639;41057;1983;7155;5818;6571;7759;10131;9490;15306;16000;12335;8714;6567;6883;13300;8089;8519;7328;6977;9310;13595;16288;20146;14401;18520;25049;31990;27612;29637;28336;26253;23381;23370;21726;24315;25249.38;21795;16334
-110;'392;Japan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12093000;12285000;12822000;12387000;12265000;12143000;12184000;12177000;12163000;12219000;12048000;10635000;11224000;11408000;11122000;11282000;11749000;11801000;11965000;12183000;12284000;12164000;11845000;12596000;12612000;11771846
-110;'392;Japan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509000;519000;538000;517000;504000;517000;633000;624000;682000;667000;604000;650000;672094;672448;674347;664695;603800;587000;567943;556064;546262;519686;494698;489424.07;498364;409391
-110;'392;Japan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490512;520621;588103;536600;508404;560224;654065;638032;675393;686970;719596;756538;821373;901729;877276;814691;752519;694905;713128;677550;691241;649371;628008;650921.22;673289;626493
-110;'392;Japan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408000;595000;692000;635000;358000;317000;502000;410000;435000;500000;476000;318000;460379;464702;428313;568000;749000;744000;853619;1079802;1101310;1006799;1376592;1565845.02;1632619;1173088
-110;'392;Japan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464284;624095;724960;591269;388084;350624;715205;645749;732450;759884;886309;774497;1101428;1130462;1072033;1011261;1122703;963947;1058682;1208604;1270205;1170232;1186095;1495053.68;1388538;1036213
-110;'392;Japan;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2646100;2734900;3127100;3725700;3623600;4100600;4572000;5112000;5768000;6457000;6360000;6596000;8157000;7788000;6329000;7229000;7397000;7603000;8243000;7805000;7048000;7069000;9563000;8984000;9757000;9871000;9722000;10227000;11118000;11716000;12023000;11755000;11618000;11986000;12255000;12295000;12769000;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;2570;2150;2850;21800;3590;2940;6630;22390;19800;7300;23000;47000;125000;192700;104700;140500;204400;327200;279400;446700;411000;441400;475000;415200;399600;349000;230900;225900;549700;451400;499400;320800;266100;270700;260400;744600;546400;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2068;2483;2955;5295;3163;3193;4143;6707;6500;5400;9900;15722;47300;105130;60830;83410;107620;147870;157100;267830;265200;259530;267331;243673;232280;159342;101756;113049;362232;309257;212116;229360;184704;187092;223621;698480;424683;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;78740;65700;59870;81570;103600;181630;129380;59000;175000;270000;280000;307000;292000;362000;329000;325900;351000;332000;383000;377000;335000;362000;396000;251000;389800;544000;228700;91800;265300;393900;596200;283300;298979;325800;300100;564000;779400;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;11858;9187;8557;12193;13716;22946;16730;8557;24000;46900;43300;51100;79300;146700;114600;100600;120500;132400;165300;207300;177900;171500;185160;97964;228205;469404;96681;43031;366323;449231;628209;273151;273056;346551;416843;606986;721816;;;;;;;;;;;;;;;;;;;;;;;;;;
-110;'392;Japan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8961000;9180000;9676000;9418000;9301000;9207000;9290000;9311000;9322000;9423000;9219000;8212000;8647000;8811000;8637000;8805000;9096000;9187000;9364000;9682000;9766000;9659000;9702000;10131000;10201000;9511000
-110;'392;Japan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;97000;78000;64000;64000;71000;93000;129000;150000;127000;104000;170000;139414;113440;132414;97428;87000;59000;46650;43955;49976;47101;43130;38566.99;45536;23341
-110;'392;Japan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49833;46918;44588;33884;26719;43906;55120;62138;69281;63045;66206;106497;84559;79881;86050;61590;56855;39622;35597;33692;40824;36768;31572;32203.56;40287;21392
-110;'392;Japan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;206000;310000;304000;56000;49000;103000;93000;93000;123000;132000;49000;90832;92859;70026;169000;242000;324000;408833;584404;592709;514841;909254;1022109.85;1039144;803341
-110;'392;Japan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39849;84492;133807;98751;20258;21023;38256;33424;88633;93414;116595;64477;94243;98329;94654;142278;182226;185218;212996;299244;337027;285673;400529;562295.92;560353;394062
-110;'392;Japan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089000;2086000;2097000;1963000;1991000;1977000;1929000;1891000;1868000;1802000;1819000;1637000;1673000;1696000;1614000;1597000;1593000;1570000;1576000;1455000;1474000;1461000;1262000;1501000;1436000;1375387
-110;'392;Japan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358000;367000;409000;418000;422000;423000;520000;473000;504000;508000;465000;443000;492668;526443;506903;535572;486000;496000;490893;482561;462667;445922;425716;421677.5;414338;354417
-110;'392;Japan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406453;436866;499696;472905;458688;487444;568956;543330;564930;577493;599923;600207;681201;769282;736621;702508;644090;608880;630439;596548;596903;570854;557790;570908.44;575019;553020
-110;'392;Japan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234000;256000;243000;198000;160000;140000;227000;183000;178000;168000;155000;133000;181995;179544;168516;173000;187000;184000;186152;207129;211278;192498;153003;200225.1;273366;121467
-110;'392;Japan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285297;369448;406894;351366;219000;180000;476000;443000;449733;438478;512871;484891;682080;677392;641142;544869;550786;485277;530739;546134;535406;497689;406874;487153.08;416781;320524
-110;'392;Japan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043000;1019000;1049000;1006000;973000;959000;965000;975000;973000;994000;1010000;786000;904000;901000;871000;880000;905000;891000;877000;896000;896000;899000;759000;831000;842000;764000
-110;'392;Japan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;20000;26000;19000;17000;21000;18000;20000;20000;18000;16000;22000;21985;19524;21393;20480;20200;18000;17117;18138;17306;15578;16164;21040.58;25961;20903
-110;'392;Japan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25281;26036;34477;25231;21567;27680;28413;30988;33172;32304;32593;34702;36789;37519;39270;37649;38556;29977;31403;33378;33088;27750;26486;37655.22;41563;37505
-110;'392;Japan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101000;111000;112000;108000;142000;128000;147000;119000;148000;191000;173000;123000;170622;177972;176562;212000;303000;219000;237712;264733;275134;265604;279325;293842.93;275009;209640
-110;'392;Japan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135182;160497;171280;135002;148826;149601;177949;154317;172896;208038;233706;202570;294020;326282;311688;303579;367243;275263;292432;338171;374219;354729;344062;396194.19;365273;284045
-110;'392;Japan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;155000;153000;148000;150000;148000;145000;122000;133000;133000;121459
-110;'392;Japan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;35000;25000;16000;1000;2000;2000;2000;8000;14000;19000;15000;18027;13041;13637;11215;10600;14000;13283;11410;16313;11085;9688;8139;12529;10730
-110;'392;Japan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8945;10801;9342;4580;1430;1194;1576;1576;8010;14128;20874;15132;18824;15047;15335;12944;13018;16426;15689;13932;20426;13999;12160;10154;16420;14576
-110;'392;Japan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;22000;27000;25000;0;0;25000;15000;16000;18000;16000;13000;16930;14327;13209;14000;17000;17000;20922;23536;22189;33856;35010;49667.13;45100;38640
-110;'392;Japan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3956;9658;12979;6150;0;0;23000;15008;21188;19954;23137;22559;31085;28459;24549;20535;22448;18189;22515;25055;23553;32141;34630;49410.49;46131;37582
-110;'392;Japan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;636200;689200;777300;899700;1000200;1162400;1290000;1330000;1508000;1690000;1752000;1912000;2195000;1996000;1717000;2078000;2097000;2229000;2418000;2573000;2645000;2879000;1000000;1730000;1815000;1988000;2666000;2270000;2295000;2277000;2350000;2229000;2163000;2216000;2186000;2118000;2226000;1967000;2002000;2096000;1980000;1905000;1912000;1926000;1817000;1826000;1810000;1593000;1282000;1452000;1446000;1394000;1416000;1485000;1446000;1436000;1530000;1532000;1473000;1257000;1385000;1326000;1185297
-110;'392;Japan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;800;960;2310;5600;4210;5930;6290;7520;6100;17540;6400;1900;15460;28000;5300;5100;5700;10400;11700;10200;8100;2900;5000;7500;8400;2000;105400;124300;205700;205900;166300;270500;367000;487600;535400;295000;287000;30000;34000;37000;28000;37000;46000;46000;25000;27000;25000;25000;18000;28764;19393;20394;20568;20100;19000;16744;16789;17356;16989;14081;14342.67;17561;11698
-110;'392;Japan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;544;781;1137;2020;1569;2348;3000;3932;5352;11586;7162;1755;10841;23420;8495;7825;8830;14417;24037;24915;15039;9549;11301;7999;8285;13339;95509;113017;252486;270406;227083;297753;393568;527216;697347;453326;408431;60277;66688;66512;56502;68755;88934;102091;43600;47500;50100;47843;42957;51297;43392;42043;44278;43319;39088;35103;31566;35295;34656;32100;34671.5;38036;33843
-110;'392;Japan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;22860;14700;18930;21430;25600;38670;48020;148900;91200;30200;42900;53400;54500;73700;75600;37500;35700;35300;40400;40000;52500;56300;73000;135400;103300;11000;82800;75100;217500;235300;142700;606500;421400;417400;363200;116700;142000;113000;116000;113000;105000;66000;110000;135000;101665;121000;11000;11000;7000;6949;6860;4069;4000;5000;5000;6780;7010;4598;4571;5492;5526.3;10349;7139
-110;'392;Japan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;9221;6316;7265;8244;8900;13717;15604;30824;28624;20110;31350;47631;77149;113271;173776;60580;69204;94588;116271;131006;162501;159992;112646;258534;135764;16110;95065;103910;651767;682784;641735;997919;785079;819862;872483;518262;562817;328041;351930;344471;272894;281829;303199;464440;384000;439689;38610;45797;34611;44321;46690;41275;33841;30963;24086;31889;31407;24081;18722;15955;16311.36;16738;13555
-110;'392;Japan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5183414;5323596;5423890;5057533;5608321;5941902;4668447
-110;'392;Japan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100571;106518;105836;98793;129643;128589;117833
-110;'392;Japan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252360;253311;250350;200945;213321;217469;170053
-110;'392;Japan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3094;3666;2973;2625;5408;4939;4156
-110;'392;Japan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69097;71377;60277;49951;57171;56215;34017
-110;'392;Japan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594;3048;2577;2416;4687;4724;3986
-110;'392;Japan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183263;181934;190073;150994;156150;161254;136036
-110;'392;Japan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;618;396;209;721;215;170
-110;'392;Japan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62417;67419;74399;67256;71297;85905;85503
-110;'392;Japan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3238;3258;2822;3706;4188;4058;4207
-110;'392;Japan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309922;308747;290536;263473;285979;308262;280375
-110;'392;Japan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10167;13094;13775;13967;20321;22612;21744
-110;'392;Japan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490682;1570515;1615963;1416074;1726946;2105398;1403559
-110;'392;Japan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14903;14052;17063;14567;20377;29339;20921
-110;'392;Japan;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577000;1590000
-110;'392;Japan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906000;557853
-110;'392;Japan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820888;267044
-110;'392;Japan;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4087;1195
-110;'392;Japan;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4927;1790
-110;'392;Japan;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;18000
-110;'392;Japan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;53
-110;'392;Japan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;63
-110;'392;Japan;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923;2140
-110;'392;Japan;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924;3176
-110;'392;Japan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1571;584
-110;'392;Japan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3714;1237
-110;'392;Japan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456712;2514805;2590533;2533511;2669438;2583874;2166958
-110;'392;Japan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54629;62524;59866;53915;71311;57805;56507
-110;'392;Japan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16998;18543;18561;12409;18472;23690;16243
-110;'392;Japan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5576;1732;871;1427;8;527;1531
-110;'392;Japan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594323;590256;583548;563865;622868;617304;545756
-110;'392;Japan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8964;8192;8466;8586;8030;9309;8767
-110;'392;Japan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1437634;1525365;1598213;1503470;1585251;1630355;1622696
-110;'392;Japan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738127;767786;726371;698773;775617;678116;593237
-110;'392;Japan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2683;2643;2138;1676;2401;2192;2057
-110;'392;Japan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;961;1516;1038;1093;582;875
-110;'392;Japan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139130;130240;133306;121298;134767;131702;120266
-110;'392;Japan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296487;300145;260985;232691;272465;263259;219828
-110;'392;Japan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369945;393434;445574;436641;435668;426635;467006
-110;'392;Japan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35460;38509;43308;40754;35509;26681;23624
-110;'392;Japan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367405;395378;399523;349075;384749;398495;395599
-110;'392;Japan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57587;64916;67464;62798;69809;61324;53148
-110;'392;Japan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558471;603670;617672;594780;627666;671331;637768
-110;'392;Japan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347781;363255;353098;361492;396741;326270;295762
-112;'400;Jordan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596369;630490;573158;534577;669762;814918;720024
-112;'400;Jordan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172394;162113;151540;132695;153548;210701;221638
-112;'400;Jordan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3253;5110;4883;4956;4787;5979;6975;4385;3838;3877;2531;5391;7238;12309;18274;30163;35179;40513;81206;63704;56055;71965;71965;80503;51641;72262;84792;65257;65473;56338;56338;141604;167189;116332;151958;121047;120020;110233;94740;167842;187548;169147;173713;249661;248794;233389;303543;421580;326098;466208;553912;587007;506689;472982;366943;394462;430575;462579;415711;391199;494229;610943;545472
-112;'400;Jordan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;145;238;430;384;313;272;436;942;1306;1997;1997;1183;4131;4131;7795;7534;7534;7552;5639;9271;9271;9267;9267;9404;9404;8155;10880;7982;8098;13671;17681;6203;6190;18183;35720;24047;24059;38491;39174;39877;35959;86280;86962;109731;108304;155209;105402;98453;75866;89034;84631;61999;49977;41777;77725;82596;88198
-112;'400;Jordan;1861;Roundwood;5516;Production;m3;66154;66915;68188;69673;71669;66678;67298;68231;69177;70135;78215;81431;86075;90485;87259;88084;85498;84567;85925;86653;90389;95151;101865;108170;112570;114763;116432;120210;131798;137680;145544;148417;155602;162128;169047;177028;147759;208946;217365;226143;233544;241198;249115;257302;265771;273437;281300;289500;297839;306465;314074;321878;329880;338087;346503;353629;360905;368335;375921;383669;391508;399510;407680
-112;'400;Jordan;1861;Roundwood;5616;Import quantity;m3;;100;700;100;100;5900;4200;4200;4200;4200;400;400;400;200;100;;;;;;2700;2400;2400;37000;45300;807;924;0;953;123;123;3095;3175;7272;8500;9100;2200;2200;3600;7700;200;100;100;7398;7398;7398;7398;5135;531;17632;4669;4517;2489;12085;3018;2222;1167;2581;2096;1694;4544;4607;1007
-112;'400;Jordan;1861;Roundwood;5622;Import value;1000 USD;;1;8;2;2;110;78;70;65;86;12;12;12;9;3;;;;;;263;169;169;5205;7675;105;114;0;81;15;15;298;304;814;4034;2943;477;477;980;2297;34;9;9;463;463;463;463;395;130;1957;1460;1383;856;1025;815;600;398;779;590;480;1601;1372;143
-112;'400;Jordan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1792;1792;1792;1792;1968;1968;316;191;191;171;203;34;60;149;172;1291;1120;1520;1168;80
-112;'400;Jordan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;118;118;118;118;154;154;39;46;46;41;81;7;12;43;83;564;993;240;233;13
-112;'400;Jordan;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826;2474;1212;1188;3888;4526;394
-112;'400;Jordan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;730;286;425;1506;1356;96
-112;'400;Jordan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;172;1255;1084;1411;1087;0
-112;'400;Jordan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;83;559;988;193;216;0
-112;'400;Jordan;1863;Roundwood, non-coniferous;5516;Production;m3;66154;66915;68188;69673;71669;66678;67298;68231;69177;70135;78215;81431;86075;90485;87259;88084;85498;84567;85925;86653;90389;95151;101865;108170;112570;114763;116432;120210;131798;137680;145544;148417;155602;162128;169047;177028;147759;208946;217365;226143;233544;241198;249115;257302;265771;273437;281300;289500;297839;306465;314074;321878;329880;338087;346503;353629;360905;368335;375921;383669;391508;399510;407680
-112;'400;Jordan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;107;884;506;656;81;613
-112;'400;Jordan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;49;304;55;95;16;47
-112;'400;Jordan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;36;36;109;81;80
-112;'400;Jordan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;5;5;47;17;13
-112;'400;Jordan;1864;Wood fuel;5516;Production;m3;64154;64915;65188;66673;67669;62678;65298;66231;67177;68135;74215;76431;80075;83485;83259;81084;81498;80567;81925;82653;86389;91151;97865;104170;108570;110763;112432;116210;127798;133680;141544;144417;151602;158128;165047;173028;143759;204946;213365;222143;229544;237198;245115;253302;261771;269437;277300;285500;293839;302465;310074;317878;325880;334087;342503;349629;356905;364335;371921;379669;387508;395510;403680
-112;'400;Jordan;1864;Wood fuel;5616;Import quantity;m3;;100;700;100;100;5900;4200;4200;4200;4200;400;400;400;200;100;;;;;;;;;;;;;;;;;;;828;0;0;0;0;0;0;0;0;0;0;0;0;0;58;58;172;123;123;154;73;110;371;337;463;988;549;765;338;338
-112;'400;Jordan;1864;Wood fuel;5622;Import value;1000 USD;;1;8;2;2;110;78;70;65;86;12;12;12;9;3;;;;;;;;;;;;;;;;;;;44;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;14;22;22;33;18;21;71;37;101;173;61;106;36;36
-112;'400;Jordan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;28;28;28;24;32;32;60;;;36;36;80;80;80
-112;'400;Jordan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;6;6;6;2;7;7;12;;;5;5;9;13;13
-112;'400;Jordan;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;384;315;43;167;273;273
-112;'400;Jordan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;78;49;6;28;24;24
-112;'400;Jordan;1628;Wood fuel, non-coniferous;5516;Production;m3;64154;64915;65188;66673;67669;62678;65298;66231;67177;68135;74215;76431;80075;83485;83259;81084;81498;80567;81925;82653;86389;91151;97865;104170;108570;110763;112432;116210;127798;133680;141544;144417;151602;158128;165047;173028;143759;204946;213365;222143;229544;237198;245115;253302;261771;269437;277300;285500;293839;302465;310074;317878;325880;334087;342503;349629;356905;364335;371921;379669;387508;395510;403680
-112;'400;Jordan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;79;673;506;598;65;65
-112;'400;Jordan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;124;55;78;12;12
-112;'400;Jordan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;80;80;80
-112;'400;Jordan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;13;13
-112;'400;Jordan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;100;700;100;100;5900;4200;4200;4200;4200;400;400;400;200;100;;;;;;;;;;;;;;;;;;;828;0;0;0;0;0;0;0;0;0;0;0;0;0;58;58;172;123;123;154;73;110;371;;;;;;;
-112;'400;Jordan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;1;8;2;2;110;78;70;65;86;12;12;12;9;3;;;;;;;;;;;;;;;;;;;44;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;14;22;22;33;18;21;71;;;;;;;
-112;'400;Jordan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;28;28;28;24;32;32;60;;;;;;;
-112;'400;Jordan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;6;6;6;2;7;7;12;;;;;;;
-112;'400;Jordan;1865;Industrial roundwood;5516;Production;m3;2000;2000;3000;3000;4000;4000;2000;2000;2000;2000;4000;5000;6000;7000;4000;7000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-112;'400;Jordan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;2700;2400;2400;37000;45300;807;924;0;953;123;123;3095;3175;6444;8500;9100;2200;2200;3600;7700;200;100;100;7398;7398;7398;7398;5077;473;17460;4546;4394;2335;12012;2908;1851;830;2118;1108;1145;3779;4269;669
-112;'400;Jordan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;263;169;169;5205;7675;105;114;0;81;15;15;298;304;770;4034;2943;477;477;980;2297;34;9;9;463;463;463;463;378;113;1943;1438;1361;823;1007;794;529;361;678;417;419;1495;1336;107
-112;'400;Jordan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1792;1792;1792;1792;1792;1792;288;163;163;147;171;2;0;149;172;1255;1084;1440;1088;0
-112;'400;Jordan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;118;118;118;118;118;118;33;40;40;39;74;0;0;43;83;559;988;231;220;0
-112;'400;Jordan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4300;1600;1100;1100;2400;7000;200;100;100;5013;5013;5013;5013;5013;296;16959;4484;4332;2333;11917;1855;951;525;2090;897;1145;3721;4253;121
-112;'400;Jordan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;504;403;208;208;778;1888;34;9;9;306;306;306;306;306;18;1729;1373;1296;815;961;465;135;129;652;237;419;1478;1332;72
-112;'400;Jordan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;99;172;1255;1084;1411;1087;0
-112;'400;Jordan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;37;83;559;988;193;216;0
-112;'400;Jordan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4300;1600;1100;1100;2400;7000;200;100;100;5013;5013;5013;5013;5013;296;16959;4484;4332;2333;11917;1855;951;525;2090;897;1145;3721;4253;121
-112;'400;Jordan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;504;403;208;208;778;1888;34;9;9;306;306;306;306;306;18;1729;1373;1296;815;961;465;135;129;652;237;419;1478;1332;72
-112;'400;Jordan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;99;172;1255;1084;1411;1087;0
-112;'400;Jordan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;37;83;559;988;193;216;0
-112;'400;Jordan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2000;2000;3000;3000;4000;4000;2000;2000;2000;2000;4000;5000;6000;7000;4000;7000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-112;'400;Jordan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;3095;3175;2644;4200;7500;1100;1100;1200;700;0;0;0;2385;2385;2385;2385;64;177;501;62;62;2;95;1053;900;305;28;211;0;58;16;548
-112;'400;Jordan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;298;304;608;3530;2540;269;269;202;409;0;0;0;157;157;157;157;72;95;214;65;65;8;46;329;394;232;26;180;0;17;4;35
-112;'400;Jordan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1792;1792;1792;1792;1792;1792;288;163;163;147;171;2;0;50;0;0;0;29;1;0
-112;'400;Jordan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;118;118;118;118;118;118;33;40;40;39;74;0;0;6;0;0;0;38;4;0
-112;'400;Jordan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;3095;3095;0;0;0;0;0;200;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;0;0;6;0;0;0;0
-112;'400;Jordan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;298;298;0;0;0;0;0;40;198;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;0;1;14;0;0;0;0
-112;'400;Jordan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;137;137;137;137;137;137;137;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;2644;4200;7500;1100;1100;1000;300;0;0;0;2385;2385;2385;2385;64;177;501;62;62;2;95;1053;849;305;28;205;0;58;16;548
-112;'400;Jordan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;608;3530;2540;269;269;162;211;0;0;0;157;157;157;157;72;95;214;65;65;8;46;329;380;232;25;166;0;17;4;35
-112;'400;Jordan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1655;1655;1655;1655;1655;1655;151;26;26;10;34;2;0;50;0;0;0;29;1;0
-112;'400;Jordan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;98;98;98;98;98;98;13;20;20;19;54;0;0;6;0;0;0;38;4;0
-112;'400;Jordan;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;2700;2400;2400;37000;45300;807;924;0;953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;263;169;169;5205;7675;105;114;0;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;2700;2400;2400;37000;45300;807;924;0;953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;263;169;169;5205;7675;105;114;0;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1871;Other industrial roundwood;5516;Production;m3;2000;2000;3000;3000;4000;4000;2000;2000;2000;2000;4000;5000;6000;7000;4000;7000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-112;'400;Jordan;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2000;2000;3000;3000;4000;4000;2000;2000;2000;2000;4000;5000;6000;7000;4000;7000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-112;'400;Jordan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1630;Wood charcoal;5510;Production;t;4146;3877;4111;1949;4090;2935;2984;6036;4193;5554;6031;5368;7225;7799;7448;7602;7782;7789;8018;8108;8177;8493;9122;9944;10030;10249;10593;11238;12842;13870;15150;15145;15950;17280;18567;19484;18194;26286;27543;28794;29836;30915;32033;33192;34392;35472;36600;37700;38920;40142;41210;42305;43430;44585;45770;46778;47809;48862;49939;51039;52147;53280;54437
-112;'400;Jordan;1630;Wood charcoal;5610;Import quantity;t;900;1300;1200;3500;1500;2800;2900;2900;2000;800;600;1500;100;100;400;100;100;100;100;100;400;500;500;300;700;800;800;800;800;800;800;1203;1167;700;100;160;160;160;200;200;500;1100;1906;3980;1817;7149;9024;12019;4897;13393;15575;14127;8641;5634;6457;12336;19775;21142;26407;30581;32958;33542;42786
-112;'400;Jordan;1630;Wood charcoal;5622;Import value;1000 USD;41;55;50;170;59;148;75;75;137;52;38;99;9;9;49;16;16;16;16;16;89;165;165;99;312;251;251;251;251;251;251;333;263;221;33;37;37;37;37;56;100;247;411;772;919;1341;1716;2545;2550;3878;6458;6484;5811;4490;5465;10922;17644;20455;23224;26760;28742;29499;33232
-112;'400;Jordan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;42;100;100;100;100;100;100;200;200;100;100;100;100;100;100;115;308;339;23;23;285;95;22;119;413;468;499;394;425;635;260
-112;'400;Jordan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;13;16;16;16;16;38;57;53;53;53;53;53;53;53;71;156;137;21;21;195;132;34;54;207;337;491;403;478;455;209
-112;'400;Jordan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;300;400;600;600;600;381;381;381;381;183;299;561;1046;1046;226;199;167;1359;1240;974;719;9448;5022;4008;11971
-112;'400;Jordan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;28;34;40;40;40;15;15;15;15;61;60;106;119;119;72;80;59;251;245;209;148;470;231;269;1112
-112;'400;Jordan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;59;59;59;59;97;97;21;21;21;93;20;20;50;173;173;39;39;232;208;165
-112;'400;Jordan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;5;5;42;52;52;39;41;41;61;90;90;3;3;16;12;10
-112;'400;Jordan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;32;35;27;7;7;42;130;213;387;624
-112;'400;Jordan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;38;20;25;7;8;16;19;17;33;50
-112;'400;Jordan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;18;18;18;18;18;18;18;18;18;6;6;175;175;132
-112;'400;Jordan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;35;35;35;35;35;35;35;35;35;2;2;11;11;9
-112;'400;Jordan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590;1156;800;400;600;2200;2200;300;400;600;600;600;381;381;381;381;183;299;561;1046;1046;212;167;132;1332;1233;967;677;9318;4809;3621;11347
-112;'400;Jordan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;54;59;28;32;145;145;28;34;40;40;40;15;15;15;15;61;60;106;119;119;55;42;39;226;238;201;132;451;214;236;1062
-112;'400;Jordan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;171;0;0;0;0;0;0;0;0;0;0;19;19;19;19;57;57;3;3;3;75;2;2;32;155;155;33;33;57;33;33
-112;'400;Jordan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;0;0;0;0;0;0;0;0;0;1;1;1;1;3;3;7;17;17;4;6;6;26;55;55;1;1;5;1;1
-112;'400;Jordan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;11;11;18;18;18;18;1181;3858;710;980;207
-112;'400;Jordan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;18;5;5;5;5;348;625;139;256;61
-112;'400;Jordan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14
-112;'400;Jordan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5
-112;'400;Jordan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;11;11;18;18;18;18;306;1183;23;921;44
-112;'400;Jordan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;18;5;5;5;5;59;211;4;240;12
-112;'400;Jordan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875;2675;687;59;163
-112;'400;Jordan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;414;135;16;49
-112;'400;Jordan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14
-112;'400;Jordan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5
-112;'400;Jordan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1872;Sawnwood;5616;Import quantity;m3;33100;43000;55400;50300;44300;59100;57600;41300;27400;21400;11700;32300;29200;20600;43400;81300;110900;117700;152900;123400;55700;81600;81600;92500;94600;67788;74189;27792;43289;6877;6877;87034;65086;51305;89400;115600;119100;134500;121700;139500;145000;137100;178400;272398;265498;211655;204692;257056;311821;267103;326949;405949;376899;388342;297183;321886;217973;231035;166310;187281;166912;176039;178004
-112;'400;Jordan;1872;Sawnwood;5622;Import value;1000 USD;1841;2396;2383;2709;2366;3279;3381;2026;1470;1415;762;2273;2210;2909;6597;12824;19454;24124;45663;27499;13096;16735;16735;18668;15856;20181;22829;6811;11750;1950;1950;20929;12780;13170;11373;16533;18017;14993;12889;21944;28425;31679;36407;63692;62678;46175;53780;68905;75985;69082;81608;106833;93326;99789;66068;70348;55436;63679;42483;42029;55982;61784;54679
-112;'400;Jordan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;200;0;0;0;0;0;0;0;7063;7063;7063;7063;3677;12313;20881;30781;58237;38130;12546;1811;1815;783;2511;1536;0;2;608;341
-112;'400;Jordan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;33;0;0;0;0;0;0;0;1699;1699;1699;1699;4583;7846;10002;14884;61593;20586;6404;868;1011;385;947;604;508;363;456;193
-112;'400;Jordan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1632;Sawnwood, coniferous;5616;Import quantity;m3;27700;37600;50000;44900;40100;46950;37200;36000;27300;21300;11600;32200;29100;19100;30750;74250;72650;77250;86550;86550;55100;80500;80500;91000;92600;20797;17543;24124;36719;659;659;73429;60098;24505;7900;47600;54800;94500;84000;96500;113000;34100;75400;123200;116300;165000;164115;210277;268498;229953;285549;335949;333240;347850;262578;273843;182000;203990;133314;168580;145114;150333;152298
-112;'400;Jordan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1484;2039;2026;2352;2106;2497;2105;1772;1407;1352;699;2210;2147;2644;4339;11473;11842;12712;16587;16587;12939;16317;16317;18200;15256;4237;4037;5631;9544;183;183;16293;10672;4410;1597;8524;7444;11448;9385;15359;17907;5294;10022;18187;17173;29542;36542;49032;56112;50766;62532;73719;72646;80701;50437;41764;35672;45998;26863;30328;41489;41310;34205
-112;'400;Jordan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;200;0;0;0;0;0;0;0;3270;3270;3270;3270;1407;8036;6555;7291;986;1082;1124;121;758;236;954;82;0;0;483;162
-112;'400;Jordan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;33;0;0;0;0;0;0;0;546;546;546;546;1094;3898;1534;1783;440;260;281;31;157;55;234;18;83;45;316;53
-112;'400;Jordan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;5400;5400;5400;5400;4200;12150;20400;5300;100;100;100;100;100;1500;12650;7050;38250;40450;66350;36850;600;1100;1100;1500;2000;46991;56646;3668;6570;6218;6218;13605;4988;26800;81500;68000;64300;40000;37700;43000;32000;103000;103000;149198;149198;46655;40577;46779;43323;37150;41400;70000;43659;40492;34605;48043;35973;27045;32996;18701;21798;25706;25706
-112;'400;Jordan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;357;357;357;357;260;782;1276;254;63;63;63;63;63;265;2258;1351;7612;11412;29076;10912;157;418;418;468;600;15944;18792;1180;2206;1767;1767;4636;2108;8760;9776;8009;10573;3545;3504;6585;10518;26385;26385;45505;45505;16633;17238;19873;19873;18316;19076;33114;20680;19088;15631;28584;19764;17681;15620;11701;14493;20474;20474
-112;'400;Jordan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3793;3793;3793;3793;2270;4277;14326;23490;57251;37048;11422;1690;1057;547;1557;1454;0;2;125;179
-112;'400;Jordan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153;1153;1153;1153;3489;3948;8468;13101;61153;20326;6123;837;854;330;713;586;425;318;140;140
-112;'400;Jordan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;5600;5600;5600;100;700;700;100;100;194;548;101;204;140;140;179;421;900;600;600;600;600;300;700;1300;1200;1200;1469;1469;1469;1469;1248;576;451;486;486;1223;144;483;367;323;384;388;748;32;265;470
-112;'400;Jordan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;2090;2090;2090;67;460;460;73;32;136;170;103;281;203;203;160;277;320;309;229;263;263;295;646;1205;925;925;1145;1145;1145;1145;2478;1913;964;1016;1015;1322;551;1026;814;632;653;790;1593;351;924;928
-112;'400;Jordan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;52;6;9;25;35;35;35;10;0;1;2;35;26;0;0;0;0
-112;'400;Jordan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;12;37;11;33;62;62;33;0;10;1;53;40;0;4;9;0
-112;'400;Jordan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1873;Wood-based panels;5616;Import quantity;m3;3700;4100;4800;5340;7100;7716;4505;4705;6705;5005;6011;5616;13927;11727;11505;25500;29100;25000;37300;37300;36400;45500;45500;39800;28600;70494;137557;40440;23079;24381;24381;261216;298623;67691;74200;56350;52800;88800;65100;84200;85000;95600;94888;167188;167188;142851;175923;152097;67757;326084;349768;345301;330360;166348;154764;160908;212959;191311;237797;213840;360113;272240;194092
-112;'400;Jordan;1873;Wood-based panels;5622;Import value;1000 USD;447;503;581;636;833;813;511;413;942;811;399;708;2581;2584;2695;6826;7578;6297;13030;13030;13763;15799;15799;12591;8961;11999;17303;16373;8053;9376;9376;54808;76504;25367;23789;19854;15168;19216;15590;25229;25181;33689;33363;46024;46024;46700;60923;88893;64759;155056;178504;186421;181438;103400;89846;84504;93897;86890;92024;79224;141426;124973;102003
-112;'400;Jordan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;299;308;0;0;0;0;0;0;0;0;0;19133;19133;19133;11621;7027;7022;18568;22533;26575;24884;15468;3333;3035;2134;3036;7279;8276;4752;5168;3539
-112;'400;Jordan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;224;161;0;0;0;0;0;0;0;0;0;5967;5967;5967;3533;14596;8503;9677;11229;11325;13261;10302;2578;1662;1972;2326;3685;5108;3380;3893;2726
-112;'400;Jordan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1640;Plywood and LVL;5616;Import quantity;m3;3700;4000;4700;4900;6500;7200;4100;4300;6500;4800;5000;3800;5100;6800;6100;19100;23400;18800;36500;36500;35600;44700;44700;39000;27800;69236;129734;36850;20582;23274;23274;182442;207616;57900;53100;40700;39000;75000;50000;75000;55600;67900;67900;84153;84153;84153;92500;93000;36924;270561;302325;297858;275233;106849;90678;97967;138284;114214;120850;96823;157942;120198;93896
-112;'400;Jordan;1640;Plywood and LVL;5622;Import value;1000 USD;447;490;568;580;748;733;450;352;896;767;232;476;1310;1591;791;4766;5600;4258;12573;12573;13306;15342;15342;12134;8622;11330;16015;15050;7203;8970;8970;29117;44232;22870;19913;17036;13235;17283;12982;23403;18324;25421;25421;29873;29873;29873;32371;58881;46108;130543;150812;158729;151339;72777;58591;56393;62494;52989;53223;40840;61990;53921;34199
-112;'400;Jordan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;300;0;0;0;0;0;0;0;0;0;15012;15012;15012;7500;2488;5802;14430;16802;20844;18947;7762;1743;2894;1686;1747;2235;1544;1550;1797;945
-112;'400;Jordan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;160;0;0;0;0;0;0;0;0;0;4924;4924;4924;2490;11341;7478;7204;8392;8488;9734;5000;1232;1552;1707;1333;1775;1376;1368;1587;1182
-112;'400;Jordan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;240;400;200;300;300;100;100;800;1500;8300;4400;5300;5300;5300;5300;300;300;300;300;300;300;300;758;7323;3090;1997;607;607;4279;3898;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;28;46;20;23;23;8;6;104;170;1188;910;1833;1833;1833;1833;222;222;222;222;222;222;104;434;1053;1088;615;171;171;681;553;134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;50;200;200;1900;2600;2200;9000;8288;14552;14552;14552;18766;5028;5129;7877;4319;4319;2581;1940;1994;1133;7689;7689;18135;18339;33545;38525;32027
-112;'400;Jordan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;18;121;121;847;646;730;2400;2074;2387;2387;2387;3070;3194;4058;4577;2801;2801;1514;1329;1218;559;2298;2298;5525;5822;11910;17202;15795
-112;'400;Jordan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;301;301;301;576;179;413;515;515;22;46;8;82;62;62;190;121;182;465;1216
-112;'400;Jordan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;718;201;149;311;311;32;63;32;46;29;29;98;31;60;312;512
-112;'400;Jordan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;234;234;234;12;13;20;15;15;27;27;27;27;3;3;46;69;33;205;26
-112;'400;Jordan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;6;7;24;12;12;23;23;23;9;4;4;12;17;13;78;8
-112;'400;Jordan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1874;Fibreboard;5616;Import quantity;m3;;100;100;200;200;316;105;105;105;105;211;316;527;527;105;1100;400;900;500;500;500;500;500;500;500;500;500;500;500;500;500;74495;87109;9391;20600;15600;13600;13600;13200;6600;27200;18700;18700;68249;68249;43912;64423;54057;25691;47626;43109;43109;52519;57532;62065;61781;66983;69405;98766;98609;168593;113312;68143
-112;'400;Jordan;1874;Fibreboard;5622;Import value;1000 USD;;13;13;28;39;60;38;38;38;38;63;62;83;83;71;227;145;206;235;235;235;235;235;235;235;235;235;235;235;235;235;25010;31719;2363;3745;2800;1812;1812;1761;1180;6127;5868;5868;13726;13726;14402;25444;26812;14586;19912;24879;24879;28562;29271;30014;27543;29101;31599;33264;32545;67513;53772;52001
-112;'400;Jordan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;299;8;0;0;0;0;0;0;0;0;0;3820;3820;3820;3820;3963;1041;3725;5216;5216;5915;7660;1582;59;386;1227;4854;6611;3020;2906;1378
-112;'400;Jordan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;224;1;0;0;0;0;0;0;0;0;0;992;992;992;992;2537;824;2324;2526;2526;3495;5239;1314;64;236;964;1812;3701;1952;1994;1032
-112;'400;Jordan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;6400;3300;3300;6000;3000;7000;9300;9300;13369;13369;30385;25438;36365;12321;30450;32782;32782;45096;52176;53467;52704;55616;46208;57522;51772;90779;66009;36648
-112;'400;Jordan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046;1873;975;975;1517;779;2428;4672;4672;6203;6203;12022;11501;18647;9779;13837;16786;16786;22925;24725;23892;22204;22827;20337;21130;18819;40427;33851;31357
-112;'400;Jordan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1579;1579;1579;1579;713;167;1349;2605;2605;4947;6797;1564;6;19;295;3400;6408;2649;1583;671
-112;'400;Jordan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;638;638;638;456;122;760;880;880;2773;4610;1304;19;4;102;1120;3653;1769;1356;613
-112;'400;Jordan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;1700;2600;2600;300;800;16600;3400;3400;12570;12570;1611;10685;5369;9456;9777;6288;6288;5727;3941;7942;8753;10795;22396;38558;44306;73980;44149;24627
-112;'400;Jordan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;737;380;300;300;26;172;3248;472;472;2149;2149;503;3073;1843;3364;3692;4908;4908;3844;3387;5518;5050;5777;10588;11466;13186;26190;18412;17066
-112;'400;Jordan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;304;1351;198;198;38;220;13;35;322;713;0;52;329;1172;685
-112;'400;Jordan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;200;991;219;219;42;338;2;30;133;404;0;19;174;609;400
-112;'400;Jordan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48192;62100;4197;10800;7500;7700;7700;6900;2800;3600;6000;6000;42310;42310;11916;28300;12323;3914;7399;4039;4039;1696;1415;656;324;572;801;2686;2531;3834;3154;6868
-112;'400;Jordan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16056;24059;843;962;547;537;537;218;229;451;724;724;5374;5374;1877;10870;6322;1443;2383;3185;3185;1793;1159;604;289;497;674;668;540;896;1509;3578
-112;'400;Jordan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;299;8;0;0;0;0;0;0;0;0;0;2241;2241;2241;2241;3176;570;1025;2413;2413;930;643;5;18;45;219;1454;151;42;151;22
-112;'400;Jordan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;224;1;0;0;0;0;0;0;0;0;0;354;354;354;354;2040;502;573;1427;1427;680;291;8;15;99;458;692;29;9;29;19
-112;'400;Jordan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;100;100;200;200;316;105;105;105;105;211;316;527;527;105;1100;400;900;500;500;500;500;500;500;500;500;500;500;500;500;500;26303;25009;5194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;13;13;28;39;60;38;38;38;38;63;62;83;83;71;227;145;206;235;235;235;235;235;235;235;235;235;235;235;235;235;8954;7660;1520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1879;Total fibre furnish;5510;Production;t;;;;;;;1500;1900;2800;4500;7100;7100;7000;13000;13000;13000;13000;14000;15000;12000;14000;15000;13000;14000;23000;25000;25000;20000;14000;14000;14000;14000;20000;20000;20000;20000;20000;20000;20000;20000;10000;11000;11000;13000;23000;33000;48000;58000;28000;63000;78000;78000;78000;78000;78000;93000;108000;108000;108000;108000;108000;108000;108000
-112;'400;Jordan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;2000;2984;4306;3347;4847;1483;2845;2492;2600;2600;100;2000;514;1909;0;0;20;20;9075;15844;13800;19400;36000;36900;37800;38500;42800;56200;25600;25600;77071;77071;77071;61844;82164;42781;71323;104882;104882;112944;99123;97788;96693;95682;81385;80480;102102;84978;103589;114307
-112;'400;Jordan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;115;212;208;191;546;323;985;194;190;190;22;156;52;265;0;0;7;7;4445;6252;7782;15612;19688;19177;12949;15829;29690;26423;10597;10597;33158;33158;33158;26310;61395;32085;57841;80595;80595;82754;69170;66855;56884;59211;65649;53944;53004;53862;88648;82750
-112;'400;Jordan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;200;100;106;102;0;0;747;747;771;42;1000;400;400;300;0;0;1600;2300;2900;2435;4915;12243;22210;36641;47833;17766;51870;70279;70279;46628;58665;57719;80118;100179;89275;52962;39230;37115;18371;12166
-112;'400;Jordan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;18;9;4;4;0;0;137;137;150;12;33;44;44;55;0;0;224;177;138;150;275;958;1661;3065;6223;6950;6231;8162;8162;7320;6465;9002;12433;14630;10819;5206;4284;5213;6906;2703
-112;'400;Jordan;1878;Pulp for paper;5510;Production;t;;;;;;;1500;1900;2800;1500;2100;2100;2000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-112;'400;Jordan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8454;14695;10800;16400;33000;34600;35500;36300;40700;55200;24600;24600;76255;76255;76255;61028;81348;42532;70824;104732;104732;112941;99031;97739;96668;95148;80851;79790;101737;84782;103248;113916
-112;'400;Jordan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4390;6162;6368;14198;18274;18840;12612;15171;29230;26209;10383;10383;33067;33067;33067;26219;61304;32034;57492;80579;80579;82754;69167;66852;56883;59181;65619;53898;52959;53815;88562;82692
-112;'400;Jordan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1698;2465;320;357;357;1719;1167;1045;187;136;2979;1459;1498;2222;7156;1625
-112;'400;Jordan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1193;4163;260;320;320;1405;889;935;165;100;2619;819;1101;1747;5354;1122
-112;'400;Jordan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8454;14310;3600;11500;8000;18800;35600;37000;40700;55200;24600;24600;76200;76200;76200;60973;81293;41973;68799;104483;104483;112639;98574;97291;96321;94901;80645;79596;101681;84694;103173;113938
-112;'400;Jordan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4390;6028;2079;9879;4598;10381;12650;15510;29230;26209;10383;10383;33023;33023;33023;26175;61260;31079;56033;80364;80364;82591;68886;66475;56667;58955;65457;53776;52859;53650;88408;82720
-112;'400;Jordan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1698;2465;320;357;357;1715;1163;1041;180;129;2972;1452;1491;2215;7149;1618
-112;'400;Jordan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1193;4163;260;320;320;1372;856;902;144;93;2612;812;1094;1740;5347;1115
-112;'400;Jordan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;263
-112;'400;Jordan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;157
-112;'400;Jordan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;200;2200;2200;2200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-112;'400;Jordan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;123;1483;1483;1483;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-112;'400;Jordan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;0;0;0;;;;;;;
-112;'400;Jordan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;7;7;0;0;0;;;;;;;
-112;'400;Jordan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;0;0;0;0;0;0;0;0;6773;6773;6773;6773;6773;6773;24108;25014;25014;25014;0;0;0;;;;;;;
-112;'400;Jordan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0;0;0;2675;2675;2675;2675;2675;2675;19925;19268;19268;19268;0;0;0;;;;;;;
-112;'400;Jordan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8302;14059;3400;8900;5700;16500;35500;36300;40700;55200;24600;24600;69427;69427;69427;54200;74520;35200;44691;79469;79469;87625;98574;97291;96321;94901;80645;79596;101681;84694;102910;113652
-112;'400;Jordan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4331;5919;1956;8012;3017;8860;12612;15171;29230;26209;10383;10383;30348;30348;30348;23500;58585;28404;36108;61096;61096;63323;68886;66475;56667;58955;65457;53776;52859;53650;88251;82532
-112;'400;Jordan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1698;2465;320;353;353;1711;1163;1041;180;129;2972;1452;1491;2215;7149;1618
-112;'400;Jordan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1193;4163;260;313;313;1365;856;902;144;93;2612;812;1094;1740;5347;1115
-112;'400;Jordan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1167;62;62;62;62
-112;'400;Jordan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;545;37;37;37;37
-112;'400;Jordan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5447;11898;1000;2200;5200;9900;30500;30800;38000;28500;2300;2300;20432;20432;20432;38200;67701;31422;18572;8820;8820;38723;47273;67774;41133;55381;30115;74402;101611;84597;102823;113580
-112;'400;Jordan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2586;4966;608;2173;2735;5559;10312;12827;27405;13791;1238;1238;8623;8623;8623;16000;53094;23314;15754;8336;8336;29143;32396;47674;25536;34338;24782;50066;52805;53534;88156;82473
-112;'400;Jordan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1156;133;51;84;84;1442;1163;1023;180;129;322;947;986;1710;6644;1113
-112;'400;Jordan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;780;84;37;90;90;1142;856;871;144;93;280;390;672;1318;4925;693
-112;'400;Jordan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39520;50530;4027;8;35;25;10
-112;'400;Jordan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24617;40675;3165;17;79;58;22
-112;'400;Jordan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2650;505;505;505;505;505
-112;'400;Jordan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2332;422;422;422;422;422
-112;'400;Jordan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;0;1500;0;0;0;0;600;24400;21900;21900;21900;21900;21900;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;1433;0;0;0;0;434;11114;8910;8910;8910;8910;8910;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;0;0;0;;;;;;;
-112;'400;Jordan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;0;0;0;;;;;;;
-112;'400;Jordan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2855;1567;2400;5200;500;6600;5000;5500;2100;2300;400;400;27095;27095;27095;16000;6819;3778;26119;70649;70649;48902;51301;29517;55188;;;;;;;
-112;'400;Jordan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745;784;1348;4406;282;3301;2300;2344;1391;1304;235;235;12815;12815;12815;7500;5491;5090;20354;52760;52760;34180;36490;18801;31131;;;;;;;
-112;'400;Jordan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;2332;194;194;194;194;0;18;0;;;;;;;
-112;'400;Jordan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;4079;168;168;168;168;0;31;0;;;;;;;
-112;'400;Jordan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;400;100;100;100;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23
-112;'400;Jordan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;384;98;38;38;339;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;31
-112;'400;Jordan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;1500;1900;2800;1500;2100;2100;2000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000
-112;'400;Jordan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;7200;5300;25100;15900;0;0;0;0;0;0;55;55;55;55;55;559;2025;249;249;302;457;448;347;247;206;194;56;88;75;1
-112;'400;Jordan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;4289;4703;13774;8497;0;0;0;0;0;0;44;44;44;44;44;955;1459;215;215;163;281;377;216;226;162;122;100;165;154;3
-112;'400;Jordan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;7;7;7;7;7;7;7;7
-112;'400;Jordan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;21;7;7;7;7;7;7;7
-112;'400;Jordan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10391;5639;3307;193;193;193;34;34;22;22;22;2;11;31;14;14
-112;'400;Jordan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8513;4195;2758;175;175;175;12;12;1;1;1;5;6;18;11;11
-112;'400;Jordan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;243;243;1004;17292;454;2;0;0;20335;42398;95545;137037;128598
-112;'400;Jordan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;12;12;380;3308;36;7;0;0;1984;3546;14871;24454;16254
-112;'400;Jordan;1669;Recovered paper;5510;Production;t;;;;;;;;;;3000;5000;5000;5000;5000;5000;5000;5000;6000;7000;4000;6000;7000;5000;6000;15000;17000;17000;12000;6000;6000;6000;6000;12000;12000;12000;12000;12000;12000;12000;12000;2000;3000;3000;5000;15000;25000;40000;50000;20000;55000;70000;70000;70000;70000;70000;85000;100000;100000;100000;100000;100000;100000;100000
-112;'400;Jordan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2000;2984;4306;3347;4847;1483;2845;2492;2600;2600;100;2000;514;1909;0;0;20;20;621;1149;3000;3000;3000;2300;2300;2200;2100;1000;1000;1000;816;816;816;816;816;249;499;150;150;3;92;49;25;534;534;690;365;196;341;391
-112;'400;Jordan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;115;212;208;191;546;323;985;194;190;190;22;156;52;265;0;0;7;7;55;90;1414;1414;1414;337;337;658;460;214;214;214;91;91;91;91;91;51;349;16;16;0;3;3;1;30;30;46;45;47;86;58
-112;'400;Jordan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;200;100;106;102;0;0;747;747;747;17;1000;400;400;300;0;0;1600;2300;2900;2435;4915;12243;22210;36641;46135;15301;51550;69922;69922;44909;57498;56674;79931;100043;86296;51503;37732;34893;11215;10541
-112;'400;Jordan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;18;9;4;4;0;0;137;137;137;2;33;44;44;55;0;0;224;177;138;150;275;958;1661;3065;5030;2787;5971;7842;7842;5915;5576;8067;12268;14530;8200;4387;3183;3466;1552;1581
-112;'400;Jordan;1876;Paper and paperboard;5510;Production;t;;;;;;;3000;3900;3500;3800;9300;9900;3700;4000;6000;6000;6000;6000;6000;6000;6000;6000;5000;7000;13000;14000;12000;10000;12000;15000;15000;15000;29000;31000;31000;31000;32000;32000;32000;18800;27300;25300;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000;54000
-112;'400;Jordan;1876;Paper and paperboard;5610;Import quantity;t;3500;7600;6100;6500;6400;9500;10300;7000;4700;6100;4800;7700;6000;6400;12000;19100;12500;11900;23400;23400;28500;42600;42600;54800;31300;51808;55679;50519;51657;54530;54530;81651;100528;116200;106300;79100;76900;95600;79700;109600;151200;132800;132800;154017;154017;154017;186656;189984;116935;199535;209733;209733;186078;229007;187787;229831;265857;260739;256596;232713;246241;281817;243281
-112;'400;Jordan;1876;Paper and paperboard;5622;Import value;1000 USD;924;2155;1861;1439;1527;1629;2930;1801;1224;1513;1320;2299;2426;6683;8718;10289;7940;7440;20084;20084;28583;38447;38447;43845;18649;39538;43860;41719;45057;44536;44536;60536;70722;68582;96396;61633;66698;62115;48753;87946;106140;91961;91961;104392;104392;104392;159191;188395;144421;174566;203977;203977;140923;194447;136792;170133;203106;224259;202155;187008;211877;303207;270522
-112;'400;Jordan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;700;1900;2700;2200;1700;1600;3500;2800;3800;4500;1700;1600;5500;5500;7900;7200;7200;7200;6400;9600;9600;9600;9600;9600;9600;6662;10728;7600;6400;12100;15900;6100;6100;19000;27200;27300;27300;32111;32111;32111;27393;44809;31401;64271;55724;55714;49648;53446;47049;56836;56906;35861;33518;21335;43630;28360;42597
-112;'400;Jordan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;145;238;430;384;313;272;436;942;1306;1997;1997;1183;4131;4131;7795;7534;7534;7534;5630;9267;9267;9267;9267;9267;9267;7680;10629;7771;8034;13578;17610;6187;6152;17902;35490;23856;23856;30335;30335;30335;27447;60636;63311;83557;73865;73936;63518;71687;63300;73784;67303;47344;37400;26932;53160;46174;66085
-112;'400;Jordan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;800;1600;1600;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200
-112;'400;Jordan;2042;Graphic papers;5610;Import quantity;t;1700;800;1800;2200;2500;3100;3400;2400;2400;1100;1100;2300;600;2800;2700;3100;2800;3900;9700;9700;8100;13500;13500;22400;16100;22408;26279;21119;22257;25130;25130;46449;62333;55200;40400;44600;36300;59600;45000;42700;67700;50800;50800;61552;61552;61552;91107;84670;52264;78423;87461;87461;64423;82211;58923;72979;78769;68117;66493;53258;46864;58187;48132
-112;'400;Jordan;2042;Graphic papers;5622;Import value;1000 USD;398;236;406;457;550;661;913;642;638;242;270;591;211;2025;1404;1368;1949;2290;7779;7779;6354;9703;9703;11791;9385;13016;17338;15197;18535;18014;18014;32573;41680;23766;35532;33271;27802;36236;26676;32405;44246;31613;31613;41952;41952;41952;76127;82195;64316;68211;82151;82151;52375;69679;46487;55494;61630;63015;56504;42937;40992;69831;65052
-112;'400;Jordan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804;4110;3300;400;400;400;0;0;500;1400;1500;1500;3563;3563;3563;3563;3359;1563;2879;5132;5122;1963;1670;950;930;658;2049;4658;613;729;1306;1820
-112;'400;Jordan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769;3350;2809;568;466;482;0;0;317;1834;1115;1115;2697;2697;2697;2697;3759;1868;2776;5028;5099;1739;1908;840;1059;1070;2442;1932;635;742;1543;1937
-112;'400;Jordan;1671;Newsprint;5610;Import quantity;t;300;300;200;500;600;1100;1400;400;400;600;400;200;100;900;700;1700;1300;2700;2600;2600;5000;8500;8500;9500;8400;8916;8723;6040;2644;5305;5305;8230;8887;14000;10700;10900;11400;12400;12500;12700;15700;15700;15700;23693;23693;23693;35200;31236;24938;25204;24437;24437;20274;13461;14240;12825;10127;6818;7439;3495;982;1643;2223
-112;'400;Jordan;1671;Newsprint;5622;Import value;1000 USD;49;55;36;85;114;111;363;92;88;126;70;60;21;541;350;773;730;1440;1389;1389;3396;5566;5566;4221;3794;3975;4481;3873;1629;2617;2617;4062;4387;7259;9600;8768;6114;5117;4478;7126;6938;6938;6938;12084;12084;12084;24214;25119;18889;14589;17081;17081;12639;8551;7924;7211;6141;5095;5129;1829;646;1308;1782
-112;'400;Jordan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;106;106;106;106;405;480;54;432;432;432;130;130;20;20;20;404;2;2;2;2
-112;'400;Jordan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;50;50;50;50;321;340;19;326;326;326;109;109;48;48;48;332;1;1;1;1
-112;'400;Jordan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;800;1600;1600;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200
-112;'400;Jordan;1674;Printing and writing papers;5610;Import quantity;t;1400;500;1600;1700;1900;2000;2000;2000;2000;500;700;2100;500;1900;2000;1400;1500;1200;7100;7100;3100;5000;5000;12900;7700;13492;17556;15079;19613;19825;19825;38219;53446;41200;29700;33700;24900;47200;32500;30000;52000;35100;35100;37859;37859;37859;55907;53434;27326;53219;63024;63024;44149;68750;44683;60154;68642;61299;59054;49763;45882;56544;45909
-112;'400;Jordan;1674;Printing and writing papers;5622;Import value;1000 USD;349;181;370;372;436;550;550;550;550;116;200;531;190;1484;1054;595;1219;850;6390;6390;2958;4137;4137;7570;5591;9041;12857;11324;16906;15397;15397;28511;37293;16507;25932;24503;21688;31119;22198;25279;37308;24675;24675;29868;29868;29868;51913;57076;45427;53622;65070;65070;39736;61128;38563;48283;55489;57920;51375;41108;40346;68523;63270
-112;'400;Jordan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804;4110;3300;400;400;400;;;500;1400;1500;1500;3457;3457;3457;3457;2954;1083;2825;4700;4690;1531;1540;820;910;638;2029;4254;611;727;1304;1818
-112;'400;Jordan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769;3350;2809;568;466;482;;;317;1834;1115;1115;2647;2647;2647;2647;3438;1528;2757;4702;4773;1413;1799;731;1011;1022;2394;1600;634;741;1542;1936
-112;'400;Jordan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;207;207;321;235;290;234;234;175;426;517;279;183;183;768;790;615;339;2645
-112;'400;Jordan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;163;163;163;385;358;380;277;277;238;389;361;295;246;246;731;619;736;291;2526
-112;'400;Jordan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;180;180;165;127;146;560;550;43;128;3;527;219;111;4;28;22;255;498
-112;'400;Jordan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;138;138;295;164;118;529;600;87;214;1;429;349;189;14;19;29;198;390
-112;'400;Jordan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;500;1400;1500;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900
-112;'400;Jordan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40592;30200;25800;47500;27800;27800;28095;28095;28095;41900;39624;15321;41002;47520;47520;26301;48240;27540;42195;37758;36802;36840;36222;33988;44452;33440
-112;'400;Jordan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25949;20187;21079;33391;18572;18572;22166;22166;22166;38252;41476;30956;40794;48662;48662;23351;42293;23257;33300;30714;34582;32630;28132;27572;51671;45691
-112;'400;Jordan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1400;1500;1500;2420;2420;2420;2420;1688;698;1427;2556;2556;998;950;505;273;324;1703;1160;424;245;368;639
-112;'400;Jordan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;1834;1115;1115;1853;1853;1853;1853;1975;998;1675;2626;2626;867;1006;500;401;539;1900;1020;439;272;503;705
-112;'400;Jordan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;100;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300
-112;'400;Jordan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608;2300;4200;4500;7300;7300;9557;9557;9557;13800;13489;11770;11927;15270;15270;17673;20084;16626;17680;30701;24314;21446;12751;11279;11753;9824
-112;'400;Jordan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5170;2011;4200;3917;6103;6103;7539;7539;7539;13498;15215;14113;12448;16131;16131;16147;18446;14945;14688;24529;23092;18014;12357;12038;16561;15053
-112;'400;Jordan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;857;857;857;857;1101;258;1252;1584;1584;490;462;312;110;95;215;3090;159;460;681;681
-112;'400;Jordan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656;656;656;656;1168;366;964;1547;1547;459;579;230;181;134;305;566;176;440;841;841
-112;'400;Jordan;1675;Other paper and paperboard;5510;Production;t;;;;;;;3000;3900;3500;3800;9300;9900;3700;4000;6000;6000;6000;6000;6000;6000;6000;6000;5000;7000;13000;14000;12000;10000;12000;15000;15000;15000;29000;31000;31000;31000;32000;32000;32000;18000;25700;23700;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800;50800
-112;'400;Jordan;1675;Other paper and paperboard;5610;Import quantity;t;1800;6800;4300;4300;3900;6400;6900;4600;2300;5000;3700;5400;5400;3600;9300;16000;9700;8000;13700;13700;20400;29100;29100;32400;15200;29400;29400;29400;29400;29400;29400;35202;38195;61000;65900;34500;40600;36000;34700;66900;83500;82000;82000;92465;92465;92465;95549;105314;64671;121112;122272;122272;121655;146796;128864;156852;187088;192622;190103;179455;199377;223630;195149
-112;'400;Jordan;1675;Other paper and paperboard;5622;Import value;1000 USD;526;1919;1455;982;977;968;2017;1159;586;1271;1050;1708;2215;4658;7314;8921;5991;5150;12305;12305;22229;28744;28744;32054;9264;26522;26522;26522;26522;26522;26522;27963;29042;44816;60864;28362;38896;25879;22077;55541;61894;60348;60348;62440;62440;62440;83064;106200;80105;106355;121826;121826;88548;124768;90305;114639;141476;161244;145651;144071;170885;233376;205470
-112;'400;Jordan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;700;1900;2700;2200;1700;1600;3500;2800;3800;4500;1700;1600;5500;5500;7900;7200;7200;7200;6400;9600;9600;9600;9600;9600;9600;5858;6618;4300;6000;11700;15500;6100;6100;18500;25800;25800;25800;28548;28548;28548;23830;41450;29838;61392;50592;50592;47685;51776;46099;55906;56248;33812;28860;20722;42901;27054;40777
-112;'400;Jordan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;145;238;430;384;313;272;436;942;1306;1997;1997;1183;4131;4131;7795;7534;7534;7534;5630;9267;9267;9267;9267;9267;9267;6911;7279;4962;7466;13112;17128;6187;6152;17585;33656;22741;22741;27638;27638;27638;24750;56877;61443;80781;68837;68837;61779;69779;62460;72725;66233;44902;35468;26297;52418;44631;64148
-112;'400;Jordan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;15000;15000;15000;29000;31000;31000;31000;20000;20000;20000;14500;22000;22000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000
-112;'400;Jordan;1676;Household and sanitary papers;5610;Import quantity;t;200;700;400;400;400;700;700;500;200;500;400;400;400;400;900;800;500;100;700;700;600;1000;1000;1000;200;8700;8700;8700;8700;8700;8700;9000;9000;5000;5200;900;500;0;0;600;1800;1400;1400;1936;1936;1936;1936;1876;703;1248;1171;1171;1284;1967;9266;13137;20058;17474;18184;14446;15747;10291;21030
-112;'400;Jordan;1676;Household and sanitary papers;5622;Import value;1000 USD;68;249;189;128;127;125;262;151;76;165;136;136;136;136;950;929;750;212;1505;1505;1226;2219;2219;2219;160;5737;5737;5737;5737;5737;5737;5700;5700;4937;5214;943;534;0;0;670;1710;1271;1271;2129;2129;2129;2129;3120;1296;1673;1627;1627;1801;2725;13160;15216;22401;20896;22075;17789;17973;18300;36166
-112;'400;Jordan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;300;500;500;100;700;700;600;1000;1000;1000;200;3400;3400;3400;3400;3400;3400;3400;3400;500;0;5700;12700;6100;5100;14500;22100;22300;22300;20668;20668;20668;15950;38567;24098;51957;41821;41821;43596;46611;45178;53939;54614;30304;21402;15627;38701;22064;34415
-112;'400;Jordan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;390;650;650;273;1310;1310;1300;2500;2500;2500;596;3473;3473;3473;3473;3473;3473;3473;3473;538;0;5610;12228;6187;5420;14359;30550;20370;20370;22899;22899;22899;20011;53692;54941;69485;55806;55806;56236;62063;61200;68853;63920;40273;28370;20159;45800;37491;56067
-112;'400;Jordan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;2400;3200;1200;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700
-112;'400;Jordan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;31300;60800;78300;77400;77400;77867;77867;77867;77613;91434;57583;108756;111440;111440;115900;136086;115063;136141;164109;172316;169808;163019;182112;212260;172823
-112;'400;Jordan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19879;16582;35159;50529;49353;49353;48280;48280;48280;66031;83555;62744;87804;103092;103092;83675;107780;74025;88673;111192;132628;117125;117179;144221;209330;161085
-112;'400;Jordan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;2900;3200;3000;3000;6885;6885;6885;6885;2677;5211;7840;8404;8404;4002;5018;877;1314;1596;3434;7348;4869;4090;4880;6195
-112;'400;Jordan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;1026;1312;1137;1137;3646;3646;3646;3646;2417;4577;8488;10997;10997;5455;6475;1214;1954;1601;3532;6018;5371;5288;6756;7608
-112;'400;Jordan;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;800;3000;1900;1900;1700;2800;3000;2000;1000;2200;1600;1500;1500;800;4100;6000;1200;1500;4800;4800;10300;15100;15100;22000;100;7300;7300;7300;7300;7300;7300;8000;8000;35200;39100;18000;21300;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;221;806;611;412;410;407;847;487;246;534;441;419;544;477;3078;3575;1041;700;3578;3578;10109;14903;14903;21700;61;11396;11396;11396;11396;11396;11396;12000;11000;20621;31557;10471;13691;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;700;1900;2700;2200;1700;1600;3500;2800;3500;4000;1200;1500;4800;4800;7300;6200;6200;6200;6200;100;100;100;100;100;100;100;100;2000;4800;4600;1500;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;145;238;430;384;313;272;436;942;916;1347;1347;910;2821;2821;6495;5034;5034;5034;5034;113;113;113;113;113;113;113;113;1306;4193;3789;1018;;;;;;;;;;;;;;;;;;;;;;;;;;
-112;'400;Jordan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;100;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300
-112;'400;Jordan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;7400;6900;6900;11932;11932;11932;5600;10591;6205;7401;10310;10310;16982;18051;22206;23707;70946;74888;81564;98173;107569;132343;107578
-112;'400;Jordan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2644;3203;2753;2753;7400;7400;7400;3161;6235;4164;4322;6228;6228;9748;10357;11655;11697;38192;45465;40255;44016;68840;101091;66748
-112;'400;Jordan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;2769;2769;2769;2769;1054;2960;3298;1735;1735;295;235;579;220;89;409;1650;935;607;392;1126
-112;'400;Jordan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;0;0;1673;1673;1673;1673;848;1612;2191;1683;1683;270;243;741;121;188;505;1603;564;416;322;810
-112;'400;Jordan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;1200;300;100;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300
-112;'400;Jordan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34700;44400;44400;44400;38330;38330;38330;39400;49326;30281;55249;54768;54768;63996;83269;65656;75170;51373;49531;49492;35649;40080;57106;41022
-112;'400;Jordan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20755;32041;32041;32041;23765;23765;23765;38910;50280;35232;48818;56537;56537;45748;70316;42144;52930;44795;47739;47337;45175;44451;80071;64598
-112;'400;Jordan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;300;300;300;779;779;779;779;1421;1565;3368;6080;6080;3173;3144;197;314;304;736;2328;1303;2081;2971;2742
-112;'400;Jordan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;120;120;120;470;470;470;470;1192;1583;5146;8455;8455;4616;4208;281;781;585;1265;2356;1679;3056;4202;3276
-112;'400;Jordan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;100;300;1000;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100
-112;'400;Jordan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;31300;18100;25100;24700;24700;26792;26792;26792;31800;31393;20876;45498;45337;45337;34346;33742;26465;36824;38438;43554;35129;25218;29066;18784;20230
-112;'400;Jordan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19879;16582;10594;14762;14036;14036;16611;16611;16611;23456;26960;23044;34309;39619;39619;27809;26414;19681;23628;26474;36788;27379;25736;27152;24455;26395
-112;'400;Jordan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;600;300;1100;1100;1737;1737;1737;1737;199;665;1173;587;587;532;1616;69;748;1186;2272;3370;2513;1284;1504;2255
-112;'400;Jordan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;242;295;563;563;1049;1049;1049;1049;366;1357;1147;847;847;557;1904;140;1000;817;1751;2058;3065;1753;2220;3461
-112;'400;Jordan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5500;1100;1600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-112;'400;Jordan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;1400;1400;1400;813;813;813;813;124;221;608;1025;1025;576;1024;736;440;3352;4343;3623;3979;5397;4027;3993
-112;'400;Jordan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1166;523;523;523;504;504;504;504;80;304;355;708;708;370;693;545;418;1731;2636;2154;2252;3778;3713;3344
-112;'400;Jordan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1600;1600;1600;1600;1600;1600;1600;3;21;1;2;2;2;23;32;32;17;17;0;118;118;13;72
-112;'400;Jordan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;454;454;454;454;454;454;454;11;25;4;12;12;12;120;52;52;11;11;1;63;63;12;61
-112;'400;Jordan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;500;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-112;'400;Jordan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;800;3100;2000;2000;1800;2900;3200;2100;1100;2300;1700;3500;3500;2400;4300;9200;8000;6400;8200;8200;9500;13000;13000;9400;14900;13400;13400;13400;13400;13400;13400;18202;21195;20800;21600;15600;18800;4000;3400;5500;3400;3200;3200;12662;12662;12662;16000;12004;6385;11108;9661;9661;4471;8743;4535;7574;2921;2832;2111;1990;1518;1079;1296
-112;'400;Jordan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;237;864;655;442;440;436;908;521;264;572;473;1153;1535;4045;3286;4417;4200;4238;7222;7222;10894;11622;11622;8135;9043;9389;9389;9389;9389;9389;9389;10263;12342;19258;24093;16948;24671;6000;5495;19712;9655;9724;9724;12031;12031;12031;14904;19525;16065;16878;17107;17107;3072;14263;3120;10750;7883;7720;6451;9103;8691;5746;8219
-112;'400;Jordan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;6100;6100;6100;6100;6100;6100;2358;3118;1800;1200;1400;1300;0;100;1100;500;500;500;995;995;995;995;206;529;1595;367;367;87;147;44;653;38;74;110;226;110;110;167
-112;'400;Jordan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;5681;5681;5681;5681;5681;5681;3325;3693;3118;3273;3713;3882;0;118;2200;1794;1234;1234;1093;1093;1093;1093;768;1925;2808;2034;2034;88;1241;46;1918;712;1097;1080;767;1330;384;473
-112;'400;Jordan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72133;72742;62502;60651;73203;79511;71252
-112;'400;Jordan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19984;17874;17030;14465;19078;26193;21191
-112;'400;Jordan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;223;416;277;448;585;192
-112;'400;Jordan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;34;42;17;14;217;170
-112;'400;Jordan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;77;55;96;341;405;61
-112;'400;Jordan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;13;13;13;13;13
-112;'400;Jordan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;146;361;181;107;180;131
-112;'400;Jordan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;29;4;1;204;157
-112;'400;Jordan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090;1379;1355;1368;1726;10196;5819
-112;'400;Jordan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;1055;423;370;291;432;363
-112;'400;Jordan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019;1414;1148;806;1196;1013;969
-112;'400;Jordan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;83;155;125;232;173;81
-112;'400;Jordan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6271;6914;2324;2148;2070;3936;3302
-112;'400;Jordan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;1198;1316;1472;2412;3343;2985
-112;'400;Jordan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78
-112;'400;Jordan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77
-112;'400;Jordan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9
-112;'400;Jordan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-112;'400;Jordan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57944;58577;53638;52499;64373;60621;56855
-112;'400;Jordan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18252;15039;14873;11865;15912;21720;17131
-112;'400;Jordan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;218;342;264;342;416;374
-112;'400;Jordan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;217;8;8;8
-112;'400;Jordan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3529;4017;3279;3289;3048;2744;3741
-112;'400;Jordan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;465;221;399;209;300;453
-112;'400;Jordan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93661;95169;94945;82727;102330;124464;103300
-112;'400;Jordan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67779;82240;84533;76453;56745;101912;112249
-112;'400;Jordan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;704;1065;792;1022;3261;2776
-112;'400;Jordan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;36;52;79;605;146;32
-112;'400;Jordan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10362;11594;10203;10860;10795;13370;12388
-112;'400;Jordan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;1532;1198;290;1487;1521;2259
-112;'400;Jordan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14713;15776;12867;8100;7740;7749;8290
-112;'400;Jordan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39173;50539;63476;49410;25755;50252;62074
-112;'400;Jordan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26921;23567;25016;19262;25606;23305;25252
-112;'400;Jordan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20298;20508;16743;23298;22283;36260;38962
-112;'400;Jordan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41352;43528;45794;43713;57167;76779;54594
-112;'400;Jordan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6633;9625;3064;3376;6615;13733;8922
-108;'398;Kazakhstan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1206078.55;1008840;1051303;1006722;1191817;1273687;1238701
-108;'398;Kazakhstan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22691.86;75537;76153;31555;56208;116751;194344
-108;'398;Kazakhstan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1254;3353;3242;57590;48398;26182;48398;88012;88012;113770;158836;207956;283853;433722;602037;502948;450903;528944;647263;660573;574498;599013;598990;599074;587349.31;493949;510676;473474;641775;556479;546992
-108;'398;Kazakhstan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;4281;211;65;982;598;598;29881;42225;40840;5524;5437;5334;18240;2474;3266;6557;6803;13909;10977;25886;14345;15108;15108;15108;15391.77;57728;54500;13856;39283;69108;122013
-108;'398;Kazakhstan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;315000;0;453300;645400;745900;493200;300800;473000;852000;117800;247500;247500;317000;345000;345000;286000;321000;340000;340000;340000;340000;367000;423000;496000;493000;459599;431000
-108;'398;Kazakhstan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580;29;29;147229;142000;0;0;76050;76050;127300;162800;156421;175326;140095;130646;101752;52461;85289;396071;285327;188724;137222;137222;137222;131214;155056;195713;140788;210998;107845;236710
-108;'398;Kazakhstan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;8;8;5025;6762;327;6762;2748;2748;3408;4657;6085;7776;7176;9135;8987;5857;8937;16094;20201;15797;10182;10182;10182;9803.18;14652;18529;13235;17757;9053;10580
-108;'398;Kazakhstan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7066;45851;500;660;5560;4600;4600;8950;559000;559000;3900;0;60;60;0;0;45;0;83;83;0;0;0;0;0;0;113982;110732;19270;46260;170;170
-108;'398;Kazakhstan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567;3996;42;46;522;187;187;29470;30291;30291;164;0;74;74;0;0;2;0;5;5;0;0;0;0;0;0;9303;9020;1570;4087;17;17
-108;'398;Kazakhstan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;315000;0;272000;526500;655000;399160;247309;388889;700490;98800;211000;211000;249887;278742;278742;102108;111755;128043;128043;128043;128043;76000;84000;82000;70000;91759;100000
-108;'398;Kazakhstan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123784;149353;180562;132787;197402;83553;188664
-108;'398;Kazakhstan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8871.14;14141;17128;12537;16615;7030;7421
-108;'398;Kazakhstan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;110756;106249;18573;41821;46;46
-108;'398;Kazakhstan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9084;8715;1523;3580;3;3
-108;'398;Kazakhstan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;181300;118900;90900;94040;53491;84111;151510;19000;36500;36500;67113;66258;66258;183892;209245;211957;211957;211957;211957;291000;339000;414000;423000;367840;331000
-108;'398;Kazakhstan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7430;5703;15151;8001;13596;24292;48046
-108;'398;Kazakhstan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932.04;511;1401;698;1142;2023;3159
-108;'398;Kazakhstan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3226;4483;697;4439;124;124
-108;'398;Kazakhstan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;219;305;47;507;14;14
-108;'398;Kazakhstan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;315000;0;267800;473600;590800;347400;170900;202000;210000;69200;49600;49600;243000;272000;272000;244000;215000;241000;241000;241000;241000;211000;233000;303000;226000;174271;194000
-108;'398;Kazakhstan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;600;0;0;825;825;600;400;762;4731;2;6;0;0;70;701;4393;56907;7860;7860;7860;1852;4091;3717;5252;4841;3078;168
-108;'398;Kazakhstan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;31;31;31;9;9;13;10;10;56;1;0;0;0;15;117;3358;3101;428;428;428;49;220;199;284;462;316;18
-108;'398;Kazakhstan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;200;0;0;0;13000;13000;100;0;0;0;0;0;45;0;0;0;0;0;0;0;0;;34;46;0;36;52;52
-108;'398;Kazakhstan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;36;0;0;429;424;424;4;0;0;0;0;0;2;0;0;0;0;0;0;0;0;;2;3;0;2;4;4
-108;'398;Kazakhstan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;315000;0;160700;386400;518800;281160;140509;166080;172657;56900;40800;40800;199887;223742;223742;87108;76755;86043;86043;86043;86043;19000;32000;33000;31000;29427;37000
-108;'398;Kazakhstan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1546;3595;3582;4036;3483;1158;44
-108;'398;Kazakhstan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;192;191;215;311;103;4
-108;'398;Kazakhstan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;36;36;36
-108;'398;Kazakhstan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2
-108;'398;Kazakhstan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;107100;87200;72000;66240;30391;35920;37343;12300;8800;8800;43113;48258;48258;156892;138245;154957;154957;154957;154957;192000;201000;270000;195000;144844;157000
-108;'398;Kazakhstan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;496;135;1216;1358;1920;124
-108;'398;Kazakhstan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;28;8;69;151;213;14
-108;'398;Kazakhstan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;46;0;0;16;16
-108;'398;Kazakhstan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;0;0;2;2
-108;'398;Kazakhstan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;600;0;0;825;825;600;400;762;4731;2;6;0;0;70;701;4393;56907;7860;7860;7860;;;;;;;
-108;'398;Kazakhstan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;31;31;31;9;9;13;10;10;56;1;0;0;0;15;117;3358;3101;428;428;428;;;;;;;
-108;'398;Kazakhstan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;200;0;0;0;13000;13000;100;0;0;0;0;0;45;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;36;0;0;429;424;424;4;0;0;0;0;0;2;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;185500;171800;155100;145800;129900;271000;642000;48600;197900;197900;74000;73000;73000;42000;106000;99000;99000;99000;99000;156000;190000;193000;267000;285328;237000
-108;'398;Kazakhstan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580;29;29;145029;141400;0;0;75225;75225;126700;162400;155659;170595;140093;130640;101752;52461;85219;395370;280934;131817;129362;129362;129362;129362;150965;191996;135536;206157;104767;236542
-108;'398;Kazakhstan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;8;8;4973;6731;296;6731;2739;2739;3395;4647;6075;7720;7175;9135;8987;5857;8922;15977;16843;12696;9754;9754;9754;9754.18;14432;18330;12951;17295;8737;10562
-108;'398;Kazakhstan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7066;45816;500;660;5360;4600;4600;8950;546000;546000;3800;0;60;60;0;0;0;0;83;83;0;0;0;0;0;0;113948;110686;19270;46224;118;118
-108;'398;Kazakhstan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567;3995;42;46;486;187;187;29041;29867;29867;160;0;74;74;0;0;0;0;5;5;0;0;0;0;0;0;9301;9017;1570;4085;13;13
-108;'398;Kazakhstan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;111300;140100;136200;118000;106800;222809;527833;41900;170200;170200;50000;55000;55000;15000;35000;42000;42000;42000;42000;57000;52000;49000;39000;62332;63000
-108;'398;Kazakhstan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;;145000;139000;0;0;71265;71265;122800;149900;150457;167387;139007;129136;100459;51975;84679;393573;268702;121931;122238;122238;122238;122238;145758;176980;128751;193919;82395;188620
-108;'398;Kazakhstan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;;4965;6441;6;6441;2449;2449;3307;4511;5909;7547;7076;8939;8896;5751;8852;15845;15750;11419;8834;8834;8834;8834.14;13949;16937;12322;16304;6927;7417
-108;'398;Kazakhstan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7066;45683;440;600;5300;4300;4300;6150;96000;96000;0;0;60;60;0;0;0;0;63;63;0;0;0;0;0;0;110756;106249;18573;41785;10;10
-108;'398;Kazakhstan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567;3985;38;42;482;173;173;7243;6324;6324;0;0;74;74;0;0;0;0;4;4;0;0;0;0;0;0;9084;8715;1523;3578;1;1
-108;'398;Kazakhstan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;;145000;139000;0;0;71265;71265;122800;149900;150457;167387;139007;129136;100459;51975;84679;393573;268702;121931;122238;122238;122238;122238;145758;176980;128751;193919;82395;188620
-108;'398;Kazakhstan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;;4965;6441;6;6441;2449;2449;3307;4511;5909;7547;7076;8939;8896;5751;8852;15845;15750;11419;8834;8834;8834;8834.14;13949;16937;12322;16304;6927;7417
-108;'398;Kazakhstan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7066;45683;440;600;5300;4300;4300;6150;96000;96000;0;0;60;60;0;0;0;0;63;63;0;0;0;0;0;0;110756;106249;18573;41785;10;10
-108;'398;Kazakhstan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567;3985;38;42;482;173;173;7243;6324;6324;0;0;74;74;0;0;0;0;4;4;0;0;0;0;0;0;9084;8715;1523;3578;1;1
-108;'398;Kazakhstan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;74200;31700;18900;27800;23100;48191;114167;6700;27700;27700;24000;18000;18000;27000;71000;57000;57000;57000;57000;99000;138000;144000;228000;222996;174000
-108;'398;Kazakhstan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2559;29;29;29;2400;0;0;3960;3960;3900;12500;5202;3208;1086;1504;1293;486;540;1797;12232;9886;7124;7124;7124;7124;5207;15016;6785;12238;22372;47922
-108;'398;Kazakhstan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;8;8;8;290;290;290;290;290;88;136;166;173;99;196;91;106;70;132;1093;1277;920;920;920;920.04;483;1393;629;991;1810;3145
-108;'398;Kazakhstan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;60;60;60;300;300;2800;450000;450000;3800;0;0;0;0;0;0;0;20;20;0;0;0;0;0;0;3192;4437;697;4439;108;108
-108;'398;Kazakhstan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;4;4;14;14;21798;23543;23543;160;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;217;302;47;507;12;12
-108;'398;Kazakhstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3900;11900;4706;2616;0;185;129;0;0;0;0;9788;7124;7124;7124;7124;156;328;369;405;317;743
-108;'398;Kazakhstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;88;70;96;69;0;43;19;0;0;0;0;1236;920;920;920;920.04;78;164;184;188;147;51
-108;'398;Kazakhstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;4000;4000;3800;0;0;0;0;0;0;0;20;20;0;0;0;0;0;0;30;5;5;5;5;5
-108;'398;Kazakhstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;1285;1285;160;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;15;2;2;2;2;2
-108;'398;Kazakhstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2559;29;29;29;2400;0;0;3960;3960;0;600;496;592;1086;1319;1164;486;540;1797;12232;98;0;0;0;0;5051;14688;6416;11833;22055;47179
-108;'398;Kazakhstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;8;8;8;290;290;290;290;290;0;66;70;104;99;153;72;106;70;132;1093;41;0;0;0;0;405;1229;445;803;1663;3094
-108;'398;Kazakhstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;60;60;60;300;300;300;446000;446000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3162;4432;692;4434;103;103
-108;'398;Kazakhstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;4;4;14;14;21065;22258;22258;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;202;300;45;505;10;10
-108;'398;Kazakhstan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;148500;137400;124100;116640;103920;216800;513600;38800;158300;158300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;89100;112100;109000;94400;85440;178247;422267;33500;136200;136200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;59400;25300;15100;22240;18480;38553;91333;5300;22100;22100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18500;17200;15500;14580;12990;27100;64200;4900;19800;19800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11100;14000;13600;11800;10680;22281;52783;4200;17000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7400;3200;1900;2780;2310;4819;11417;700;2800;2800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18500;17200;15500;14580;12990;27100;64200;4900;19800;19800;74000;73000;73000;42000;106000;99000;99000;99000;99000;156000;190000;193000;267000;285328;237000
-108;'398;Kazakhstan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11100;14000;13600;11800;10680;22281;52783;4200;17000;17000;50000;55000;55000;15000;35000;42000;42000;42000;42000;57000;52000;49000;39000;62332;63000
-108;'398;Kazakhstan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7400;3200;1900;2780;2310;4819;11417;700;2800;2800;24000;18000;18000;27000;71000;57000;57000;57000;57000;99000;138000;144000;228000;222996;174000
-108;'398;Kazakhstan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;1;1;1;1;0;476;476;476;476;480;480;480;480;480;1589;1364;1700;2800;3300;3000
-108;'398;Kazakhstan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;0;0;0;0;129;129;300;300;366;408;1168;1229;1097;831;399;530;6200;1175;3155;3155;3155;3155;6563;8177;1024;1750;1913;3284
-108;'398;Kazakhstan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;0;0;62;62;128;107;132;159;553;750;848;467;249;358;3984;785;1661;1661;1661;1660.78;4228;5267;660;848;1404;1773
-108;'398;Kazakhstan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;0;0;0;0;0;0;0;0;2;2;0;0;0;14;0;0;7;38;71;71;71;71;2;0;39;655;406;1619
-108;'398;Kazakhstan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;0;17;17;0;0;4;4;1;0;0;8;0;0;4;87;179;179;179;178.82;1;0;15;255;271;448
-108;'398;Kazakhstan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;401;466;1106;1110;425;369;356;1873;1034;178;168;168;2002;9290;5530;5530;5530;5530;15912;9127;92966;99000;94310;94310
-108;'398;Kazakhstan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;383;383;206;0;545;1022;121;314;346;259;447;3278;2895;4745;2049;2049;2049;2049;12911;5733;9225;7996;12022;13833
-108;'398;Kazakhstan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;6;6;15;20;22;42;52;98;145;136;218;576;385;552;394;394;394;393.53;504;230;363;354;490;564
-108;'398;Kazakhstan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51055;1055;1055;1055;1055;1180;0;0;0;0;0;0;0;0;0;0;0;0;596;577;322;297;287;287
-108;'398;Kazakhstan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1685;300;300;300;300;390;0;0;0;0;0;0;0;0;0;0;0;0;23;24;12;12;12;12
-108;'398;Kazakhstan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;7;9;5;9;67;11;11;11;0;10;0;0;1745;9270;5510;5510;5510;5510;15912;7471;92000;99000;94310;94310
-108;'398;Kazakhstan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;150;200;200;200;206;206;206;0;322;333;90;182;263;182;248;2278;2893;4393;1536;1536;1536;1536;12215;5103;8581;6282;10577;11839
-108;'398;Kazakhstan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;10;12;12;12;5;5;5;13;13;13;31;67;114;97;158;403;382;458;232;232;232;231.66;464;194;326;256;431;483
-108;'398;Kazakhstan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;0;0;0;0;0;0;0;0;0;0;0;0;595;479;322;297;287;287
-108;'398;Kazakhstan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;280;280;280;280;280;0;0;0;0;0;0;0;0;0;0;0;0;23;18;12;12;12;12
-108;'398;Kazakhstan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;394;457;1101;1101;358;358;345;1862;1034;168;168;168;257;20;20;20;20;20;0;1656;966;0;0;0
-108;'398;Kazakhstan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;177;0;0;223;689;31;132;83;77;199;1000;2;352;513;513;513;513;696;630;644;1714;1445;1994
-108;'398;Kazakhstan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;10;7;9;29;21;31;31;39;60;173;3;94;162;162;162;161.87;40;36;37;98;59;81
-108;'398;Kazakhstan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;1000;1000;1000;1000;1125;0;0;0;0;0;0;0;0;0;0;0;0;1;98;0;0;0;0
-108;'398;Kazakhstan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1405;20;20;20;20;110;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0
-108;'398;Kazakhstan;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-108;'398;Kazakhstan;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-108;'398;Kazakhstan;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0
-108;'398;Kazakhstan;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;474;499;1326;187;246
-108;'398;Kazakhstan;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;35;37;98;54;72
-108;'398;Kazakhstan;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;76;76;76;76;76
-108;'398;Kazakhstan;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;6;6
-108;'398;Kazakhstan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1105;378;465;389;521;1171;2713;1682;1896;3316;3903;5392
-108;'398;Kazakhstan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;172;224;201;285;636;755;432;498;545;683;1002
-108;'398;Kazakhstan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;167;170;168;167
-108;'398;Kazakhstan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;19;20;19;19
-108;'398;Kazakhstan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;143;123;47;179;996;2185;842;1100;2634;2997;3647
-108;'398;Kazakhstan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;78;62;39;123;531;638;246;321;366;474;494
-108;'398;Kazakhstan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;0;3;1;0
-108;'398;Kazakhstan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;1;0;0
-108;'398;Kazakhstan;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;235;342;342;342;175;528;840;796;682;906;1745
-108;'398;Kazakhstan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;94;162;162;162;105;117;186;177;179;209;508
-108;'398;Kazakhstan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;167;167;167;167
-108;'398;Kazakhstan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;19;19
-108;'398;Kazakhstan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182000;183400;243800;224100;232200;265084;134200;138700;149000;111000;98600;87100;107800;107800;622300;232000;232000;232000;232000;232000;150000;215400;285600;214500;210000;210300
-108;'398;Kazakhstan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;93;3032;3021;269300;211700;211700;211700;482134;482134;202200;300600;546174;812545;1184901;1459917;693347;423085;514211;505806;455871;423286;338263;338263;338263;338263;292206;316417;274762;145421;147012;788547
-108;'398;Kazakhstan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;1315;1306;18451;14260;2488;14260;18946;18946;9647;15950;31252;50435;75546;121728;92484;76726;94650;84442;78890;55181;38270;38270;38270;38270.01;34316;37017;32323;50264;49673;47287
-108;'398;Kazakhstan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;357265;357265;126500;126500;126560;126560;0;85;0;0;508;40;965;4;138;138;138;138;248598;209913;6160;13982;4718;4221
-108;'398;Kazakhstan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9772;9772;4316;4316;4294;4294;0;10;0;0;182;35;137;3;19;19;19;18.82;35703;29944;865;3654;1312;1563
-108;'398;Kazakhstan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104000;179100;227000;221600;215300;245791;109600;113275;144000;108000;91500;80400;97823;97823;590300;211000;211000;211000;211000;211000;136422;197300;263300;197800;192200;194900
-108;'398;Kazakhstan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;55;411;400;249100;181700;181700;181700;403591;403591;183500;287400;522436;784696;1159116;1425394;655347;403359;497897;497897;447720;410013;316082;316082;316082;316082;261728;288485;244154;133566;133566;784429
-108;'398;Kazakhstan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;84;75;16565;11983;128;11983;15331;15331;8159;14374;29385;48245;72653;116328;85861;72949;90739;81282;75985;52185;35904;35904;35904;35904.14;29968;33032;27956;45127;44256;47057
-108;'398;Kazakhstan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;357265;357265;126400;126400;126400;126400;0;85;0;0;508;17;958;0;138;138;138;138;231418;199545;6134;10039;4034;3537
-108;'398;Kazakhstan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9772;9772;4294;4294;4294;4294;0;10;0;0;182;10;135;0;19;19;19;18.82;32452;27982;860;2818;1221;1472
-108;'398;Kazakhstan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;4300;16800;2500;16900;19293;24600;25425;5000;3000;7100;6700;9977;9977;32000;21000;21000;21000;21000;21000;13578;18100;22300;16700;17800;15400
-108;'398;Kazakhstan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;38;2621;2621;20200;30000;30000;30000;78543;78543;18700;13200;23738;27849;25785;34523;38000;19726;16314;7909;8151;13273;22181;22181;22181;22181;30478;27932;30608;11855;13446;4118
-108;'398;Kazakhstan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;1231;1231;1886;2277;2360;2277;3615;3615;1488;1576;1867;2190;2893;5400;6623;3777;3911;3160;2905;2996;2366;2366;2366;2365.87;4348;3985;4367;5137;5417;230
-108;'398;Kazakhstan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;0;100;100;160;160;0;0;0;0;0;23;7;4;0;0;0;0;17180;10368;26;3943;684;684
-108;'398;Kazakhstan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;0;22;22;0;0;0;0;0;0;0;25;2;3;0;0;0;0;3251;1962;5;836;91;91
-108;'398;Kazakhstan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;0;600;0;0;0;0;0;21000;21000;0;0;0
-108;'398;Kazakhstan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;200;300;300;300;514;515;300;0;532;995;607;998;1382;966;448;568;445;3215;1910;1910;1910;1910;826;604;649;1717;2238;3070
-108;'398;Kazakhstan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;420;704;704;704;120;120;105;130;234;230;474;1660;1083;1106;698;632;846;1094;1035;1035;1035;1035;1108;822;875;1245;2200;4477
-108;'398;Kazakhstan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;88;88;88;88;88;88;0;0;0;0;0;0;0;0;0;0;0;0;21;28;31;52;1214;13107
-108;'398;Kazakhstan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3;3;3;3;3;3;0;0;0;0;4;4;4;0;0;0;0;0;13;17;19;58;507;6024
-108;'398;Kazakhstan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;0;0;12170;10375;10671;10045;2927;3870;21300;25700;115800;115800;616909;396200;150100;150100;150100;150100;263600;117000;139300;263100;267500;333500
-108;'398;Kazakhstan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;447;1654;2000;5100;6200;6700;6450;146363;146364;155738;208770;1063091;502275;535869;718186;464208;350059;389984;682133;808923;708585;826240;826240;826240;813413;696653;713046;645734;739085;486809;573157
-108;'398;Kazakhstan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;328;728;508;1510;1523;1523;1523;16678;16678;26734;42605;71159;101439;144179;217300;162235;171646;199998;250728;270628;268502;284951;284951;284951;273254.02;201300;205377;188321;302560;202579;224105
-108;'398;Kazakhstan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;0;550;42;0;0;0;0;613;613;740;340;226;841;387;417;229;365;1126;1368;26661;6516;6498;6498;6498;6854;22459;33903;16327;9013;48336;205295
-108;'398;Kazakhstan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;0;156;6;0;0;0;0;55;55;145;75;71;93;191;196;249;365;969;1422;17663;5515;4937;4937;4937;5222.46;5412;7153;3741;3484;31705;93945
-108;'398;Kazakhstan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;100;2900;6300;22600;101000;101000;306000;195700;80300;80300;80300;80300;4100;3000;3300;135500;161100;170400
-108;'398;Kazakhstan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;267;521;900;400;400;400;150;21586;21587;16000;18900;197002;52799;52872;63667;34400;19552;26018;48784;60359;62925;77330;77330;77330;77330;62167;59075;56183;68821;59263;150000
-108;'398;Kazakhstan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;152;199;244;349;349;349;349;1791;1791;3405;6774;10091;17898;23415;36377;21460;13604;18274;25849;35059;35405;40676;40676;40676;40676.32;28918;27501;26054;37444;33922;81645
-108;'398;Kazakhstan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;0;423;0;0;0;0;0;200;200;0;0;6;24;51;67;129;302;586;5;25492;5651;6173;6173;6173;6173;2478;1207;706;950;44302;146116
-108;'398;Kazakhstan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;0;103;0;0;0;0;0;4;4;0;21;0;1;50;62;207;338;766;835;16487;4676;4454;4454;4454;4454.1;1194;585;341;442;30001;82965
-108;'398;Kazakhstan;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-108;'398;Kazakhstan;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303
-108;'398;Kazakhstan;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86
-108;'398;Kazakhstan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;33;212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8;62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;900;1200;1000;300;0;300;5900;5900;301900;195300;64600;64600;64600;64600;230500;98400;114400;127600;106400;163000
-108;'398;Kazakhstan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1500;1500;2000;2000;74148;74148;111700;146200;763823;327933;352336;431267;312320;218557;252097;417567;464722;422088;498297;498297;498297;498297;391329;394246;333406;364858;367331;367331
-108;'398;Kazakhstan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;823;823;823;823;9323;9323;16985;25558;44082;57434;82139;115001;97309;76101;103176;141335;134785;127883;133961;133961;133961;133960.88;89423;90224;76232;141442;132786;110879
-108;'398;Kazakhstan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;312;400;0;88;244;329;263;87;45;534;1043;450;213;249;249;249;249;17969;28987;11364;1485;2205;39534
-108;'398;Kazakhstan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;91;0;32;72;139;97;5;12;194;460;793;433;432;432;432;432.36;3346;5356;1983;563;820;5639
-108;'398;Kazakhstan;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;600;4600;9615;10849;16277;43048;32680;23525;29535;52401;81548;86398;85285;85285;85285;85285;74808;66281;60736;59822;29873;29873
-108;'398;Kazakhstan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;115;69;505;998;1148;1271;11115;12569;11680;17146;19045;24783;29714;24447;24447;24447;24446.82;18408;16310;14945;17412;15790;15132
-108;'398;Kazakhstan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;3;0;6;0;0;0;0;0;0;0;0;59;902;2679;3053;320;2884
-108;'398;Kazakhstan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;3;0;7;0;0;0;0;0;0;0;0;14;213;633;1128;121;738
-108;'398;Kazakhstan;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;0;0;12170;10375;9771;8845;1827;670;15000;2800;8900;8900;9009;5200;5200;5200;5200;5200;29000;15600;21600;0;0;100
-108;'398;Kazakhstan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;147;921;600;3200;4300;4300;4300;49729;49729;27438;39070;92651;110694;114384;180204;84808;88425;82334;163381;202294;137174;165328;165328;165328;152501;168349;193444;195409;245584;30342;25953
-108;'398;Kazakhstan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;168;467;117;338;351;351;351;5449;5449;6275;9768;15988;24959;37354;54807;30897;70261;61402;64499;76001;75500;85867;85867;85867;74170;64551;71342;71090;106262;20081;16449
-108;'398;Kazakhstan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;127;42;0;0;0;0;101;101;340;340;132;573;7;84;13;12;6;320;719;652;76;76;76;432;1953;2807;1578;3525;1509;16761
-108;'398;Kazakhstan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;6;0;0;0;0;31;31;54;54;39;20;2;34;37;8;9;127;383;406;51;51;51;336;858;999;784;1351;763;4603
-108;'398;Kazakhstan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;0;0;12170;10375;9745;8822;1804;647;15000;2800;8900;8900;8900;5200;5200;5200;5200;5200;29000;15600;21600;0;0;100
-108;'398;Kazakhstan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16355;16355;10732;17022;67481;84567;40153;36701;5249;39800;34495;36623;40102;27822;32633;32633;32633;7379;6329;6143;4708;8871;8513;5424
-108;'398;Kazakhstan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3064;3064;4228;6707;11833;19539;15171;18620;2127;18032;18391;17197;19898;14902;16506;16506;16506;4703;4632;4369;4043;7039;8639;5575
-108;'398;Kazakhstan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;44;44;44;485;0;60;2;0;3;2;63;82;23;23;23;2;0;212;124;634;223;3573
-108;'398;Kazakhstan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;19;19;19;0;0;29;21;0;4;1;83;126;31;31;31;1;0;34;27;127;56;1453
-108;'398;Kazakhstan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;26;23;23;23;0;0;0;0;109;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8168;8168;3935;8786;14260;20587;57286;61593;75599;46580;42816;104870;134180;103182;122174;122174;122174;140980;156935;182834;188220;234078;15954;17039
-108;'398;Kazakhstan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1284;1284;783;1748;2431;4760;19141;23780;27902;50808;40728;43225;52463;58577;67934;67934;67934;67934;56874;65197;65935;98430;10183;9623
-108;'398;Kazakhstan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;14;5;12;1;316;654;556;28;28;28;430;1953;2595;1454;2891;1286;13188
-108;'398;Kazakhstan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;0;1;10;8;5;126;300;278;15;15;15;335;858;965;757;1224;707;3150
-108;'398;Kazakhstan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;273;600;3200;4300;4300;4300;25206;25206;12771;13262;10910;5540;16945;81910;3960;2045;5023;21888;28012;6170;10521;10521;10521;4142;5085;4467;2481;2635;5875;3490
-108;'398;Kazakhstan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;111;117;338;351;351;351;1101;1101;1264;1313;1724;660;3042;12407;868;1421;2283;4077;3640;2021;1427;1427;1427;1533;3045;1776;1112;793;1259;1251
-108;'398;Kazakhstan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;0;0;0;0;2;2;296;296;88;88;7;10;6;0;2;2;2;14;25;25;25;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;35;35;20;20;2;4;6;0;0;0;0;2;5;5;5;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;129;648;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;162;356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-108;'398;Kazakhstan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;36;36;7;7;8;5000;10000;15000;15000;15000;15000;30900;37700;37700;37700;37700;37700;37700;39829;39740;39955;39960;43700;42700
-108;'398;Kazakhstan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;0;0;0;3216;3216;900;1100;3582;7318;13996;13474;16372;16819;12045;18965;22578;10598;9666;9666;9666;9666;13744;10970;20480;31066;29768;27257
-108;'398;Kazakhstan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;0;0;0;244;244;102;416;776;1701;3594;3848;4804;3849;4731;7463;8224;7536;9246;9246;9246;9246.85;6261;5011;9398;14582;18657;13743
-108;'398;Kazakhstan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4143;4143;4300;2600;1819;1800;0;0;0;0;0;162;794;2109;3224;3224;3224;3224;13487;3963;10291;15455;16546;9111
-108;'398;Kazakhstan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;211;211;119;179;126;311;0;0;0;0;0;420;1184;2044;2570;2570;2570;2569.04;4059;2105;2021;5296;6888;3219
-108;'398;Kazakhstan;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2129;2040;2255;2260;6000;5000
-108;'398;Kazakhstan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;0;0;0;2311;2311;200;1000;874;769;3841;3251;3458;3348;3931;5283;7601;8705;7240;7240;7240;7240;5757;6151;14912;13268;16703;15040
-108;'398;Kazakhstan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;0;0;0;206;206;83;400;522;899;2283;2343;2774;2218;3069;4649;5751;6891;7990;7990;7990;7990.41;3610;3799;8264;8713;14751;10740
-108;'398;Kazakhstan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;200;200;200;0;0;0;0;0;162;794;1351;1532;1532;1532;1532;1217;886;615;1610;3645;880
-108;'398;Kazakhstan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;57;57;57;0;0;0;0;0;420;1184;1935;2246;2246;2246;2245.51;2271;1500;1016;2731;4335;2227
-108;'398;Kazakhstan;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2000;1000
-108;'398;Kazakhstan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;0;0;0;2310;2310;200;1000;858;742;3801;3190;3384;3307;3885;5258;7271;7783;7150;7150;7150;7150;5676;6080;14741;13168;16658;14817
-108;'398;Kazakhstan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;0;0;0;202;202;79;374;478;835;2228;2231;2602;2132;2979;4597;5217;5704;7794;7794;7794;7794.59;3486;3696;8137;8602;14684;10202
-108;'398;Kazakhstan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;119
-108;'398;Kazakhstan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;57;57;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3;3;283
-108;'398;Kazakhstan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2000;1000
-108;'398;Kazakhstan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;0;4;10;46;14;9
-108;'398;Kazakhstan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60.53;1;5;63;60;21;6
-108;'398;Kazakhstan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;108;45;63;124;140;140;140;;;;;;;
-108;'398;Kazakhstan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;275;21;30;45;60;60;60;;;;;;;
-108;'398;Kazakhstan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;0;0;0;0;0;0;100;100;100;0;0;0;0;0;0;1;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;0;0;0;0;0;0;148;148;148;0;0;0;0;0;0;2;1;1;1;1;;;;;;;
-108;'398;Kazakhstan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310;2310;200;900;756;640;3792;3182;3384;3307;3777;5213;7198;7639;7010;7010;7010;7010;5676;6076;14731;13122;16644;14808
-108;'398;Kazakhstan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;202;74;180;325;682;2224;2227;2602;2132;2704;4571;5151;5407;7733;7733;7733;7733.68;3485;3691;8074;8542;14663;10196
-108;'398;Kazakhstan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;119
-108;'398;Kazakhstan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;57;57;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;282
-108;'398;Kazakhstan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;49;49;768;150;470;220;171;1579;3598;817;618;618;618;618;3488;3717;5732;3544;3079;3396
-108;'398;Kazakhstan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;35;20;20;435;167;452;247;100;1102;2423;957;684;684;684;684.31;2038;2041;2797;2346;2240;1624
-108;'398;Kazakhstan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;18;424;2930;2990;2909;3072;3590;3616;3529;6787;6385;6385;6385;6385;2174;2350;8986;9501;13017;11223
-108;'398;Kazakhstan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;5;19;262;1745;2021;2139;1859;2575;3435;2692;4431;7012;7012;7012;7012.03;1398;1622;5237;6075;12158;8307
-108;'398;Kazakhstan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;116
-108;'398;Kazakhstan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;258
-108;'398;Kazakhstan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;14;9;13;77;548;189
-108;'398;Kazakhstan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37.34;49;28;40;121;265;265
-108;'398;Kazakhstan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;3
-108;'398;Kazakhstan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;24
-108;'398;Kazakhstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310;2310;0;500;500;165;89;30;0;0;0;2;71;35;0;0;0;;;;;;;
-108;'398;Kazakhstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;202;0;33;33;41;35;15;0;0;0;5;36;17;3;3;3;;;;;;;
-108;'398;Kazakhstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;300;189;2;5;12;5;15;16;16;0;0;7;7;7;;;;;;;
-108;'398;Kazakhstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;107;253;359;9;24;11;26;29;29;0;2;34;34;34;;;;;;;
-108;'398;Kazakhstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;30;30;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-108;'398;Kazakhstan;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;9;8;0;0;0;0;9;20;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;5;5;4;4;0;0;0;5;34;251;0;0;0;0.39;0;0;0;0;0;0
-108;'398;Kazakhstan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1
-108;'398;Kazakhstan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2129;2040;2255;2260;4000;4000
-108;'398;Kazakhstan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;1;1;0;0;18;29;49;69;74;41;46;25;339;942;90;90;90;90;81;71;171;100;45;223
-108;'398;Kazakhstan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;4;4;4;72;49;69;59;116;172;86;90;57;568;1438;196;196;196;196.21;124;103;127;111;67;538
-108;'398;Kazakhstan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;162;794;1351;1532;1532;1532;1532;1217;886;605;1610;3645;761
-108;'398;Kazakhstan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;420;1184;1935;2246;2246;2246;2245.51;2271;1500;1016;2729;4333;1945
-108;'398;Kazakhstan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;43;243;707;1712;851;873;2922;3520;2132;2132;2132;2132;1738;768;2618;1851;1750;2092
-108;'398;Kazakhstan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;0;49;325;1089;1719;868;920;2390;2986;1728;1728;1728;1727.54;1014;424;1392;1046;1125;1496
-108;'398;Kazakhstan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;104;104;104;104;5392;3446;123;716;581;1080
-108;'398;Kazakhstan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;15;15;15;14.59;727;616;126;118;141;188
-108;'398;Kazakhstan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;36;36;7;7;8;5000;10000;15000;15000;15000;15000;30900;37700;37700;37700;37700;37700;37700;37700;37700;37700;37700;37700;37700
-108;'398;Kazakhstan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905;905;700;100;2708;6549;10155;10223;12914;13471;8114;13682;14977;1893;2426;2426;2426;2426;7987;4819;5568;17798;13065;12217
-108;'398;Kazakhstan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;19;16;254;802;1311;1505;2030;1631;1662;2814;2473;645;1256;1256;1256;1256.43;2651;1212;1134;5869;3906;3003
-108;'398;Kazakhstan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4143;4143;4300;2400;1619;1600;0;0;0;0;0;0;0;758;1692;1692;1692;1692;12270;3077;9676;13845;12901;8231
-108;'398;Kazakhstan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;211;119;122;69;254;0;0;0;0;0;0;0;109;324;324;324;323.53;1788;605;1005;2565;2553;992
-108;'398;Kazakhstan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;23815;46904;64200;58000;69400;81100;165527;201555;172267;207483;211376;211376;168477;220895;220246;220246;220246;220246;261960;250736;264044;233500;220600;249400
-108;'398;Kazakhstan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;697;1260;800;36200;31300;31300;31300;54022;54022;97300;114800;113313;143400;193718;210791;179959;171773;183656;198089;187381;169461;217154;217154;217154;217154;216875;226995;203394;198611;190372;182339
-108;'398;Kazakhstan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;635;1264;1382;32164;25137;21128;25137;49190;49190;73631;94905;98291;122066;202095;247189;231273;189397;218595;286045;274847;221642;251322;251322;251322;251322.02;229771;237532;226372;252476;270561;241893
-108;'398;Kazakhstan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;472;0;0;300;250;1250;1250;373;373;867;1067;1006;15565;4212;5401;9556;8855;7649;5793;8134;7707;8451;8451;8451;8451;4664;10468;8899;29944;33314;29253
-108;'398;Kazakhstan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;285;0;0;460;411;411;411;191;191;477;564;462;13071;2282;3060;6306;6430;12749;9091;6894;6696;7388;7388;7388;7388.04;2487;5613;5461;22292;28229;16571
-108;'398;Kazakhstan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;204;1;0;0;0;0;9900;10500;43403;48201;48334;48334;5438;57232;57232;57232;57232;57232;3;1164;1441;0;0;0
-108;'398;Kazakhstan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;534;400;27700;19400;19400;19400;44963;44963;49300;61000;81014;88284;96583;111180;98778;96391;100616;111012;107887;92650;96995;96995;96995;96995;135054;91323;92052;91510;72613;70276
-108;'398;Kazakhstan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;682;720;23154;14414;10405;14414;36331;36331;33743;44997;65711;77738;90714;118177;109262;88171;102695;130823;138817;106319;119106;119106;119106;119106.24;122169;120124;110498;119743;102625;86698
-108;'398;Kazakhstan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1000;1000;365;365;467;667;220;9135;1157;1236;496;739;73;120;209;108;133;133;133;133;516;4813;2955;3388;2188;1190
-108;'398;Kazakhstan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;179;179;161;427;148;11416;838;746;458;1203;145;230;390;193;222;222;222;221.63;499;2242;1330;1674;3952;2250
-108;'398;Kazakhstan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;1;134;134;134;130;130;130;130;130;0;0;0;0;0;0
-108;'398;Kazakhstan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;11000;11000;11000;18647;18647;23800;25600;34440;36137;40571;45881;38163;35946;32854;36233;35468;30224;28635;28635;28635;28635;48675;16364;13894;11775;10540;8801
-108;'398;Kazakhstan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747;5458;5;5458;8365;8365;9266;10141;15156;17957;23854;31548;27647;20653;19219;26851;26660;20085;17792;17792;17792;17792.13;11015;9503;6754;5758;6013;4544
-108;'398;Kazakhstan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1000;1000;267;267;267;267;2;0;741;404;0;0;0;0;32;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;91;91;91;91;1;1;485;261;0;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;204;1;0;0;0;0;9900;10500;43400;48200;48200;48200;5304;57102;57102;57102;57102;57102;3;1164;1441;0;0;0
-108;'398;Kazakhstan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;534;400;11700;8400;8400;8400;26316;26316;25500;35400;46574;52147;56012;65299;60615;60445;67762;74779;72419;62426;68360;68360;68360;68360;86379;74959;78158;79735;62073;61475
-108;'398;Kazakhstan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;682;720;13407;8956;10400;8956;27966;27966;24477;34856;50555;59781;66860;86629;81615;67518;83476;103972;112157;86234;101314;101314;101314;101314.11;111154;110621;103744;113985;96612;82154
-108;'398;Kazakhstan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;200;400;218;9135;416;832;496;739;73;120;177;108;133;133;133;133;516;4813;2955;3388;2188;1190
-108;'398;Kazakhstan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;70;336;147;11415;353;485;458;1203;145;230;380;193;222;222;222;221.63;499;2242;1330;1674;3952;2250
-108;'398;Kazakhstan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1071;771;0;0;0
-108;'398;Kazakhstan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;680;1300;2600;6885;3530;2990;2023;1033;1369;2151;2276;1587;1859;1482;1482;1482;1482;7487;8032;5199;5841;9247;6382
-108;'398;Kazakhstan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465;465;730;1476;4337;2359;2651;1718;966;879;1525;2309;1655;1756;1134;1134;1134;1134.46;5685;6279;3706;4743;11511;5451
-108;'398;Kazakhstan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;129;0;41;656;0;0;0;0;0;0;0;0;0;0;0;50;0;0;3;0
-108;'398;Kazakhstan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;83;28;35;347;0;0;0;0;0;0;0;0;0;0.05;1;41;0;0;1;5
-108;'398;Kazakhstan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9900;10500;43400;48200;48200;48200;5304;57102;57102;57102;57102;57102;2;93;670;0;0;0
-108;'398;Kazakhstan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;8400;25612;25612;17600;25500;28762;37280;39359;47710;44428;44176;47708;53928;49002;38005;48123;48123;48123;48123;66008;55407;64249;64700;40432;39271
-108;'398;Kazakhstan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10400;8956;27482;27482;17427;25802;33171;43439;48183;66749;61998;48987;59878;76368;83465;57294;77881;77881;77881;77880.55;91233;92355;91073;99649;66878;60291
-108;'398;Kazakhstan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;100;400;89;60;375;157;478;651;1;99;154;96;70;70;70;70;360;4656;2895;3269;182;659
-108;'398;Kazakhstan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;64;298;61;50;318;124;435;782;36;184;338;167;124;124;124;123.57;344;2013;1223;1561;464;1063
-108;'398;Kazakhstan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-108;'398;Kazakhstan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;6600;7300;10927;11337;13663;15566;15154;14900;17903;18575;21830;22562;18755;18755;18755;18755;12884;11520;8710;9194;12394;15822
-108;'398;Kazakhstan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;6320;7578;13047;13983;16026;18162;18651;17652;22073;25295;27037;27184;22299;22299;22299;22299.1;14236;11987;8965;9593;18223;16412
-108;'398;Kazakhstan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;100;0;0;9075;0;19;18;88;72;21;23;12;63;63;63;63;156;107;60;119;2003;531
-108;'398;Kazakhstan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;6;37;3;11337;0;14;23;421;109;46;42;26;98;98;98;98.01;154;188;107;113;3487;1182
-108;'398;Kazakhstan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;23611;46903;64200;58000;69400;81100;155627;191055;128864;159282;163042;163042;163039;163663;163014;163014;163014;163014;261957;249572;262603;233500;220600;249400
-108;'398;Kazakhstan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;508;726;400;8500;11900;11900;11900;9059;9059;48000;53800;32299;55116;97135;99611;81181;75382;83040;87077;79494;76811;120159;120159;120159;120159;81821;135672;111342;107101;117759;112063
-108;'398;Kazakhstan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;388;582;662;9010;10723;10723;10723;12859;12859;39888;49908;32580;44328;111381;129012;122011;101226;115900;155222;136030;115323;132216;132216;132216;132215.77;107602;117408;115874;132733;167936;155195
-108;'398;Kazakhstan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;472;;;300;250;250;250;8;8;400;400;786;6430;3055;4165;9060;8116;7576;5673;7925;7599;8318;8318;8318;8318;4148;5655;5944;26556;31126;28063
-108;'398;Kazakhstan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;285;;;460;411;411;411;12;12;316;137;314;1655;1444;2314;5848;5227;12604;8861;6504;6503;7166;7166;7166;7166.41;1988;3371;4131;20618;24277;14321
-108;'398;Kazakhstan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1400;2300;3300;3300;4000;6600;127;155;64;82;42;42;11;5;342;342;342;342;41485;48919;51300;47400;38500;44000
-108;'398;Kazakhstan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646;646;1000;1300;728;1033;1223;1877;2286;2414;4657;4298;6029;7734;6989;6989;6989;6989;10031;12594;8415;8728;9174;11267
-108;'398;Kazakhstan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;349;679;821;713;1051;1632;2744;3878;3297;5709;6515;10481;10873;10914;10914;10914;10913.53;11925;14949;7863;8295;12110;13255
-108;'398;Kazakhstan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5107;4;21;2;13;5;2;0;11;68;68;68;68;22;20;1;78;59;56
-108;'398;Kazakhstan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1033;13;35;6;35;11;1;7;11;61;61;61;61.2;38;37;3;78;73;77
-108;'398;Kazakhstan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1703;22211;44603;60900;54700;65400;74500;75400;83000;70700;66100;72500;72500;72528;73158;72172;72172;72172;72172;129972;110153;120803;186100;182100;205400
-108;'398;Kazakhstan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3626;3626;38900;42900;23656;45097;89323;92681;74484;70768;75030;80055;70529;66390;109994;109994;109994;109994;68863;120600;100049;95724;105388;97692
-108;'398;Kazakhstan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7968;7968;28052;32392;12459;21722;95353;109277;101793;86433;95632;134378;109694;89958;105301;105301;105301;105301.54;83814;91255;95053;111453;142305;125266
-108;'398;Kazakhstan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;300;400;786;1313;3049;4143;9051;8087;7570;5668;7875;7576;8162;8162;8162;8162;3960;5531;5848;26324;30895;27748
-108;'398;Kazakhstan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;112;137;314;596;1426;2267;5794;5079;12579;8836;6408;6443;6885;6885;6885;6885.03;1316;2505;3226;18901;22536;11586
-108;'398;Kazakhstan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;5500;22700;22900;16000;23000;31800;0;0;0;0;0;0;0;68476;66523;66523;66523;66523;66523;45707;59403;117700;114500;137100
-108;'398;Kazakhstan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;21800;24400;13939;36393;39755;40470;26854;26442;20264;22447;19026;19636;23887;23887;23887;23887;13764;44689;37143;24312;22685;33781
-108;'398;Kazakhstan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;6299;6962;5153;15143;18145;21648;16959;12750;12742;33581;13346;13484;12529;12529;12529;12529.47;7669;14617;16408;16248;17111;16679
-108;'398;Kazakhstan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;400;736;827;2552;3664;6823;7329;4315;3578;6853;6836;7391;7391;7391;7391;2404;4670;3616;18503;24854;25900
-108;'398;Kazakhstan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;96;130;287;346;1081;1784;3504;2950;1811;2143;3660;4281;4411;4411;4411;4411;867;1902;1423;11548;14603;9401
-108;'398;Kazakhstan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;308;600;1100;1800;2700;3000;67900;74500;62800;59500;67400;67400;67693;0;0;0;0;0;0;0;0;9500;7600;7600
-108;'398;Kazakhstan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;1868;12100;14900;240;794;41730;44842;39803;33029;40840;45658;43957;40468;77159;77159;77159;77159;39657;59607;47190;50735;64535;49613
-108;'398;Kazakhstan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6816;6816;18981;22840;112;709;70106;79949;75956;66096;73389;90540;86438;68005;82448;82448;82448;82447.99;60169;60226;61741;69413;104798;92677
-108;'398;Kazakhstan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;115;147;335;538;3124;1710;699;555;631;631;631;631;1212;105;1885;5401;2803;326
-108;'398;Kazakhstan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;5;5;5;104;229;1197;2046;10710;6359;2518;1996;2329;2329;2329;2329.22;242;386;1420;5930;4485;1333
-108;'398;Kazakhstan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;57800;60564;59700;58900;60000;60700
-108;'398;Kazakhstan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1678;1678;3500;3500;6377;4810;5087;5680;5516;7504;11165;9096;5530;4707;6669;6669;6669;6669;13443;13590;13398;18763;13607;10615
-108;'398;Kazakhstan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1101;1101;2322;2554;5705;4381;5302;6736;7361;6073;7782;8168;8311;7260;8584;8584;8584;8583.86;14672;14604;15572;23904;17398;12385
-108;'398;Kazakhstan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;50;486;382;332;1893;1;2;251;194;185;40;40;40;40;317;485;142;182;718;137
-108;'398;Kazakhstan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;2;18;241;241;254;1093;3;8;284;180;166;57;57;57;57.26;173;168;238;174;2213;192
-108;'398;Kazakhstan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400;21300;36900;36900;39700;39700;7500;8500;7900;6600;5100;5100;4835;4682;5649;5649;5649;5649;5649;3882;1700;0;0;0
-108;'398;Kazakhstan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;1500;100;3100;3100;2751;1689;2311;3793;2761;2854;2016;1579;2279;2279;2279;2279;1999;2714;2318;1914;4561;3683
-108;'398;Kazakhstan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;450;36;1489;1489;1800;944;1517;1514;1719;2089;1599;1209;1740;1740;1740;1740.21;1304;1808;1332;1888;2998;3525
-108;'398;Kazakhstan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;219;129;129;129;0;100;100;100;100;27;271;205;2238;2520;1385
-108;'398;Kazakhstan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;0;0;0;80;50;50;50;0;88;88;88;87.56;34;49;145;1249;1235;660
-108;'398;Kazakhstan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;80100;107900;58100;93100;90500;90500;90500;90500;90500;90500;90500;90500;90500;90500;90500;0;0;0
-108;'398;Kazakhstan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;11900;4787;4787;8100;9600;7915;8986;6589;5053;4411;2200;3353;2724;2936;2687;3176;3176;3176;3176;2927;2478;2878;2649;3197;3104
-108;'398;Kazakhstan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10723;10723;4542;4542;11157;16695;19408;21555;14396;16991;16340;11496;14559;14329;15855;14492;16001;16001;16001;16000.7;11863;11204;12958;12985;13521;16674
-108;'398;Kazakhstan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;250;1;1;100;0;0;10;2;1;7;16;1;3;50;12;88;88;88;88;166;104;95;154;172;259
-108;'398;Kazakhstan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;411;6;6;204;0;0;26;5;12;48;113;14;24;89;49;220;220;220;220.17;634;829;902;1639;1668;2658
-108;'398;Kazakhstan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355630.26;291360;294940;302128;274333;386777;352048
-108;'398;Kazakhstan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1228.67;4147;4760;3177;2855;18945;38637
-108;'398;Kazakhstan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12153.14;8166;9290;10438;11308;13182;11536
-108;'398;Kazakhstan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54.28;16;223;208;11;1558;4195
-108;'398;Kazakhstan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6205.92;6210;6315;8018;8903;8891;8527
-108;'398;Kazakhstan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12.41;12;218;208;4;1433;4083
-108;'398;Kazakhstan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5947.21;1956;2975;2420;2405;4291;3009
-108;'398;Kazakhstan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41.86;4;5;0;7;125;112
-108;'398;Kazakhstan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4203.11;2780;2493;2209;2148;5043;4384
-108;'398;Kazakhstan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57.46;106;187;180;457;5600;4738
-108;'398;Kazakhstan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5145.9;3210;3030;1897;3106;5291;7567
-108;'398;Kazakhstan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.41;70;97;55;39;142;549
-108;'398;Kazakhstan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127155.91;68132;73182;90926;23024;104827;93801
-108;'398;Kazakhstan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208.23;760;1142;538;80;7532;13453
-108;'398;Kazakhstan;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-108;'398;Kazakhstan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3
-108;'398;Kazakhstan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7
-108;'398;Kazakhstan;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-108;'398;Kazakhstan;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;22
-108;'398;Kazakhstan;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;27
-108;'398;Kazakhstan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195719;196822;190686;182431;214547;235204;191424
-108;'398;Kazakhstan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859;2887;2977;1932;1957;2108;3855
-108;'398;Kazakhstan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627.87;3105;5314;2668;2382;2215;4703
-108;'398;Kazakhstan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.09;200;60;197;0;208;2175
-108;'398;Kazakhstan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8625.33;9145;10945;11559;17818;21015;38633
-108;'398;Kazakhstan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39.2;108;74;67;311;1797;9672
-108;'398;Kazakhstan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263098.98;223531;245687;231120;275709;330431;339661
-108;'398;Kazakhstan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6071.42;13662;16893;14522;14070;28698;33694
-108;'398;Kazakhstan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662.63;1093;1521;1039;1242;1587;1158
-108;'398;Kazakhstan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;31;6;84;65
-108;'398;Kazakhstan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20694.74;19905;27561;19529;19977;36266;29426
-108;'398;Kazakhstan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10.25;169;518;268;290;5769;2787
-108;'398;Kazakhstan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35550.2;24689;28731;25646;31175;42108;39121
-108;'398;Kazakhstan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2227.68;621;449;526;916;1354;1237
-108;'398;Kazakhstan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81157.11;67399;77496;80796;91530;117938;128717
-108;'398;Kazakhstan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1253.28;7958;10532;11332;10738;15488;22923
-108;'398;Kazakhstan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124034.3;110445;110378;104110;131785;132532;141239
-108;'398;Kazakhstan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580.21;4914;5386;2365;2120;6003;6682
-114;'404;Kenya;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441167;556501;506954;469071;592370.51;679607;590936
-114;'404;Kenya;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69394;98908;86287;80157;83301.51;100760.68;93840.68
-114;'404;Kenya;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4741;5954;6978;7944;9581;11638;12654;13041;15704;17476;21711;20367;27508;51160;27032;16542;22646;31371;30571;26622;19004;15924;18947;11828;13974;11226;27899;22921;28503;24665;24665;20482;21438;19031;21111;22763;29111;38032;38019;32312;29117;24162;82644;81098;95426.1;84181;161040;196679;196793.6;262143;289066;223368;252964.04;316550.04;309086.04;291387;334597;427860;385564;350530;451339.51;530752;446742
-114;'404;Kenya;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;725;822;915;1253;1784;1729;1865;2290;3224;4021;4434;1431;2467;3386;4016;7932;10181;9003;12486;13357;10302;11432;8144;2422;3942;3950;3630;4054;3229;3811;3811;6684;996;1391;791;398;712;2064;2064;7569;13270;7297;18917;21428;21428;16392;26061;34264;34011;19581;18244;55847;74904;21086;13227;9721;16111;40295;27142;26097;31196.51;35062.68;25575.68
-114;'404;Kenya;1861;Roundwood;5516;Production;m3;8804535;9012128;9242259;9469033;9733557;9930944;10237307;10490761;10755426;11003421;10970363;10984825;11340693;11710838;12198006;12777933;13097523;13731156;14099157;14328470;14591678;15054209;15580376;16151233;16576821;16940507;17332988;17722412;18134361;18535606;19022700;19557655;20050617;20416475;20753384;21032528;21334053;21342779;21497854;21635247;21697903;21843528;21942351;22161621;26714000;27646000;27646000;27636000;27479000;27533000;27541000;27432000;27432000;27432000;27432000;27432000;27432000;27432000;27432000;25917000;25792617;25970616;26158072
-114;'404;Kenya;1861;Roundwood;5616;Import quantity;m3;;100;200;200;300;300;200;200;600;1600;500;300;400;300;100;;;;;;;;;;;;;;;;;;;138;138;0;201;0;0;0;0;0;580;1738;1735.7;8477;9599;11675;28812;6533;6067;1785;2337;1998;2701;293;1693;7584;6930;7913;1645;5151;1604
-114;'404;Kenya;1861;Roundwood;5622;Import value;1000 USD;;3;5;5;9;17;15;15;30;81;28;30;20;13;6;;;;;;;;;;;;;;;;;;;5;5;0;30;0;0;0;0;0;44;114;117.5;545;1623;2123;3021;1958;2578;1749;1777;746;2379;214;652;1094;2365;1704;207;418;298
-114;'404;Kenya;1861;Roundwood;5916;Export quantity;m3;7500;9100;6100;13200;25400;31600;29600;26200;14200;15200;11200;6000;1000;2000;3600;440;7000;7000;3000;3100;6800;6700;11000;6000;;;;;;671;671;671;151;156;162;0;67;0;0;0;0;442;1353;5438;5438;875;2062;1521;1521;505;2963;2004;26407;10009;1064;839;1630;15331;6386;4655;21024;10059;10184
-114;'404;Kenya;1861;Roundwood;5922;Export value;1000 USD;149;121;95;109;180;303;285;250;117;127;124;130;32;108;215;22;536;536;304;404;1025;495;1047;579;;;;;;190;190;190;41;22;34;0;5;0;0;0;0;147;409;381;381;114;584;751;751;454;2410;915;20280;7111;443;468;486;8007;3287;2190;8218;3477;3905
-114;'404;Kenya;1862;Roundwood, coniferous;5516;Production;m3;526514;536226;566165;582335;645742;631392;715290;739442;770855;782533;775735;747455;800024;844401;934223;1082383;1127838;1423389;1464360;1256392;1180817;1196654;1265971;1367224;1396418;1422573;1450065;1492055;1525518;1544097;1566810;1592061;1615217;1632079;1647596;1660280;1674181;1673569;1680260;1687117;1574535;1546250;1481275;1514621;3466000;3574000;3574000;3564000;3407000;3461000;3469000;3201000;3201000;3201000;3201000;3201000;3201000;3201000;3201000;3025000;3025000;3025000;3025000
-114;'404;Kenya;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1693;5037;2780;2937;817;817;159
-114;'404;Kenya;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;652;415;778;398;93;93;40
-114;'404;Kenya;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;0;24;20;20
-114;'404;Kenya;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;7;4;5
-114;'404;Kenya;1863;Roundwood, non-coniferous;5516;Production;m3;8278021;8475902;8676094;8886698;9087815;9299552;9522017;9751319;9984571;10220888;10194628;10237370;10540669;10866437;11263783;11695550;11969685;12307767;12634797;13072078;13410861;13857555;14314405;14784009;15180403;15517934;15882923;16230357;16608843;16991509;17455890;17965594;18435400;18784396;19105788;19372248;19659872;19669210;19817594;19948130;20123368;20297278;20461076;20647000;23248000;24072000;24072000;24072000;24072000;24072000;24072000;24231000;24231000;24231000;24231000;24231000;24231000;24231000;24231000;22892000;22767617;22945616;23133072
-114;'404;Kenya;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2547;4150;4976;828;4334;1445
-114;'404;Kenya;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;679;1587;1306;114;325;258
-114;'404;Kenya;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1630;15331;6378;4655;21000;10039;10164
-114;'404;Kenya;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;8007;3285;2190;8211;3473;3900
-114;'404;Kenya;1864;Wood fuel;5516;Production;m3;8345535;8540128;8739259;8943033;9151557;9364944;9583307;9806761;10035426;10269421;10213363;10247825;10519693;10847838;11245006;11648933;11918523;12250156;12570157;12931470;13320678;13758209;14205376;14651233;15035821;15359507;15709988;16050412;16420361;16792606;17247700;17753655;18217617;18555475;18866384;19120528;19399053;19386779;19520854;19658247;19826903;20001528;20182351;20369621;25600000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;26400000;24948000;24823617;25001616;25189072
-114;'404;Kenya;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;0;0;0;0;0;58;58;0.7;165;200;200;362;2720;2720;53;73;73;73;73;0;0;0;29;29;29;83
-114;'404;Kenya;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;2;2;0.5;28;59;59;128;1455;1455;67;73;73;73;73;0;0;0;30;30;30;18
-114;'404;Kenya;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;15;15;15;15;167;10;10;130;130;24;173;59;51;51;0;0;0;0;0;0;0
-114;'404;Kenya;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5;5;5;5;38;2;2;6;6;8;52;17;12;12;0;0;0;0;0;0;0
-114;'404;Kenya;1627;Wood fuel, coniferous;5516;Production;m3;416514;426226;436165;446335;456742;467392;478290;489442;500855;512533;509735;511455;525024;541401;561223;581383;594838;611389;627360;645392;664817;686654;708971;731224;750418;766573;784065;801055;819518;838097;860810;886061;909217;926079;941596;954280;968181;967569;974260;981117;989535;998250;1007275;1016621;2560000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2640000;2495000;2495000;2495000;2495000
-114;'404;Kenya;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;29;29;83
-114;'404;Kenya;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;30;30;18
-114;'404;Kenya;1628;Wood fuel, non-coniferous;5516;Production;m3;7929021;8113902;8303094;8496698;8694815;8897552;9105017;9317319;9534571;9756888;9703628;9736370;9994669;10306437;10683783;11067550;11323685;11638767;11942797;12286078;12655861;13071555;13496405;13920009;14285403;14592934;14925923;15249357;15600843;15954509;16386890;16867594;17308400;17629396;17924788;18166248;18430872;18419210;18546594;18677130;18837368;19003278;19175076;19353000;23040000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;23760000;22453000;22328617;22506616;22694072
-114;'404;Kenya;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-114;'404;Kenya;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-114;'404;Kenya;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-114;'404;Kenya;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-114;'404;Kenya;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;0;0;0;0;0;58;58;0.7;165;200;200;362;2720;2720;53;73;73;73;73;;;;;;;
-114;'404;Kenya;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;2;2;0.5;28;59;59;128;1455;1455;67;73;73;73;73;;;;;;;
-114;'404;Kenya;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;15;15;15;15;167;10;10;130;130;24;173;59;51;51;;;;;;;
-114;'404;Kenya;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5;5;5;5;38;2;2;6;6;8;52;17;12;12;;;;;;;
-114;'404;Kenya;1865;Industrial roundwood;5516;Production;m3;459000;472000;503000;526000;582000;566000;654000;684000;720000;734000;757000;737000;821000;863000;953000;1129000;1179000;1481000;1529000;1397000;1271000;1296000;1375000;1500000;1541000;1581000;1623000;1672000;1714000;1743000;1775000;1804000;1833000;1861000;1887000;1912000;1935000;1956000;1977000;1977000;1871000;1842000;1760000;1792000;1114000;1246000;1246000;1236000;1079000;1133000;1141000;1032000;1032000;1032000;1032000;1032000;1032000;1032000;1032000;969000;969000;969000;969000
-114;'404;Kenya;1865;Industrial roundwood;5616;Import quantity;m3;;100;200;200;300;300;200;200;600;1600;500;300;400;300;100;;;;;;;;;;;;;;;;;;;138;138;0;23;0;0;0;0;0;522;1680;1735;8312;9399;11475;28450;3813;3347;1732;2264;1925;2628;220;1693;7584;6930;7884;1616;5122;1521
-114;'404;Kenya;1865;Industrial roundwood;5622;Import value;1000 USD;;3;5;5;9;17;15;15;30;81;28;30;20;13;6;;;;;;;;;;;;;;;;;;;5;5;0;22;0;0;0;0;0;42;112;117;517;1564;2064;2893;503;1123;1682;1704;673;2306;141;652;1094;2365;1674;177;388;280
-114;'404;Kenya;1865;Industrial roundwood;5916;Export quantity;m3;7500;9100;6100;13200;25400;31600;29600;26200;14200;15200;11200;6000;1000;2000;3600;440;7000;7000;3000;3100;6800;6700;11000;6000;;;;;;671;671;671;151;156;162;0;67;0;0;0;0;442;1338;5423;5423;860;1895;1511;1511;375;2833;1980;26234;9950;1013;788;1630;15331;6386;4655;21024;10059;10184
-114;'404;Kenya;1865;Industrial roundwood;5922;Export value;1000 USD;149;121;95;109;180;303;285;250;117;127;124;130;32;108;215;22;536;536;304;404;1025;495;1047;579;;;;;;190;190;190;41;22;34;0;5;0;0;0;0;147;404;376;376;109;546;749;749;448;2404;907;20228;7094;431;456;486;8007;3287;2190;8218;3477;3905
-114;'404;Kenya;1866;Industrial roundwood, coniferous;5516;Production;m3;110000;110000;130000;136000;189000;164000;237000;250000;270000;270000;266000;236000;275000;303000;373000;501000;533000;812000;837000;611000;516000;510000;557000;636000;646000;656000;666000;691000;706000;706000;706000;706000;706000;706000;706000;706000;706000;706000;706000;706000;585000;548000;474000;498000;906000;934000;934000;924000;767000;821000;829000;561000;561000;561000;561000;561000;561000;561000;561000;530000;530000;530000;530000
-114;'404;Kenya;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;118;45;45;7992;4700;617;21450;1186;2413;50;1364;1175;2138;40;1693;5037;2780;2908;788;788;76
-114;'404;Kenya;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;7;3;3;487;287;38;1300;102;193;4;656;464;1023;19;652;415;778;368;63;63;22
-114;'404;Kenya;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;52;0;0;0;0;12;996;427;427;694;1538;701;701;0;567;959;0;10;76;97;0;0;8;0;24;20;20
-114;'404;Kenya;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0;4;53;23;23;37;81;37;37;0;53;49;0;1;8;9;0;0;2;0;7;4;5
-114;'404;Kenya;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;118;45;45;7992;4700;617;21450;1186;2413;50;1364;1175;2138;40;1693;5037;2780;2908;788;788;76
-114;'404;Kenya;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;7;3;3;487;287;38;1300;102;193;4;656;464;1023;19;652;415;778;368;63;63;22
-114;'404;Kenya;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;52;0;0;0;0;12;996;427;427;694;1538;701;701;0;567;959;0;10;76;97;0;0;8;0;24;20;20
-114;'404;Kenya;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0;4;53;23;23;37;81;37;37;0;53;49;0;1;8;9;0;0;2;0;7;4;5
-114;'404;Kenya;1867;Industrial roundwood, non-coniferous;5516;Production;m3;349000;362000;373000;390000;393000;402000;417000;434000;450000;464000;491000;501000;546000;560000;580000;628000;646000;669000;692000;786000;755000;786000;818000;864000;895000;925000;957000;981000;1008000;1037000;1069000;1098000;1127000;1155000;1181000;1206000;1229000;1250000;1271000;1271000;1286000;1294000;1286000;1294000;208000;312000;312000;312000;312000;312000;312000;471000;471000;471000;471000;471000;471000;471000;471000;439000;439000;439000;439000
-114;'404;Kenya;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;0;23;0;0;0;0;0;404;1635;1690;320;4699;10858;7000;2627;934;1682;900;750;490;180;0;2547;4150;4976;828;4334;1445
-114;'404;Kenya;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;22;0;0;0;0;0;35;109;114;30;1277;2026;1593;401;930;1678;1048;209;1283;122;0;679;1587;1306;114;325;258
-114;'404;Kenya;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;671;671;151;156;162;0;15;0;0;0;0;430;342;4996;4996;166;357;810;810;375;2266;1021;26234;9940;937;691;1630;15331;6378;4655;21000;10039;10164
-114;'404;Kenya;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;190;41;22;34;0;2;0;0;0;0;143;351;353;353;72;465;712;712;448;2351;858;20228;7093;423;447;486;8007;3285;2190;8211;3473;3900
-114;'404;Kenya;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;60;255;84;84;2000;259;308;17;55;8;480;4;0;710;12;1173;828;2890;360
-114;'404;Kenya;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;6;19;4;4;793;83;65;14;101;19;1170;1;0;147;2;227;114;36;20
-114;'404;Kenya;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;671;671;151;156;0;0;0;0;0;0;0;0;38;672;672;77;50;92;92;312;1148;984;26060;9790;937;691;1630;15331;6378;4655;21000;9893;10164
-114;'404;Kenya;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;190;41;22;0;0;0;0;0;0;0;0;21;98;98;43;29;83;83;357;2069;815;20000;6403;423;447;486;8007;3285;2190;8211;3454;3900
-114;'404;Kenya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;0;23;0;0;0;0;0;402;1630;1630;65;4615;10774;5000;2368;626;1665;845;742;10;176;0;1837;4138;3803;0;1444;1085
-114;'404;Kenya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;22;0;0;0;0;0;30;108;108;11;1273;2022;800;318;865;1664;947;190;113;121;0;532;1585;1079;0;289;238
-114;'404;Kenya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;0;15;0;0;0;0;430;304;4324;4324;89;307;718;718;63;1118;37;174;150;0;0;0;0;0;0;0;146;0
-114;'404;Kenya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;2;0;0;0;0;143;330;255;255;29;436;629;629;91;282;43;228;690;0;0;0;0;0;0;0;19;0
-114;'404;Kenya;1868;Sawlogs and veneer logs;5516;Production;m3;118000;120000;140000;152000;196000;168000;233000;250000;271000;271000;278000;242000;309000;286000;277000;396000;421000;460000;488000;468000;327000;328000;351000;423000;437000;451000;465000;462000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000;251000;241000;251000;241000;588000;607000;607000;597000;440000;494000;512000;514000;514000;514000;514000;514000;514000;514000;514000;486000;486000;486000;486000
-114;'404;Kenya;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;100;200;200;300;300;200;200;600;1600;500;300;400;300;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;3;5;5;9;17;15;15;30;81;28;30;20;13;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1868;Sawlogs and veneer logs;5916;Export quantity;m3;500;100;100;200;400;1600;1600;1200;200;200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;60;11;11;18;17;74;65;48;8;7;38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;100000;100000;120000;126000;179000;154000;217000;230000;250000;250000;246000;216000;255000;237000;227000;350000;350000;389000;417000;326000;241000;235000;251000;302000;312000;322000;332000;330000;329000;329000;329000;329000;329000;329000;329000;329000;329000;329000;329000;329000;120000;110000;120000;110000;486000;514000;514000;504000;347000;401000;419000;421000;421000;421000;421000;421000;421000;421000;421000;398000;398000;398000;398000
-114;'404;Kenya;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;18000;20000;20000;26000;17000;14000;16000;20000;21000;21000;32000;26000;54000;49000;50000;46000;71000;71000;71000;142000;86000;93000;100000;121000;125000;129000;133000;132000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;102000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;88000;88000;88000;88000
-114;'404;Kenya;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;100;200;200;300;300;200;200;600;1600;500;300;400;300;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;3;5;5;9;17;15;15;30;81;28;30;20;13;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;500;100;100;200;400;1600;1600;1200;200;200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;60;11;11;18;17;74;65;48;8;7;38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357000;357000;357000;460000;441000;349000;391000;450000;450000;450000;450000;450000;450000;450000;170000;170000;170000;170000;170000;170000;170000;170000;163000;163000;163000;163000
-114;'404;Kenya;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357000;357000;357000;445000;418000;334000;368000;400000;400000;400000;400000;400000;400000;400000;120000;120000;120000;120000;120000;120000;120000;120000;113000;113000;113000;113000
-114;'404;Kenya;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15000;23000;15000;23000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-114;'404;Kenya;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;163000;166000;406000;403000;268000;258000;258000;289000;317000;317000;317000;317000;341000;357000;357000;357000;357000;357000;357000;357000;357000;357000;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;131000;163000;403000;400000;265000;255000;255000;286000;314000;314000;314000;314000;341000;357000;357000;357000;357000;357000;357000;357000;357000;357000;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;32000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1871;Other industrial roundwood;5516;Production;m3;341000;352000;363000;374000;386000;398000;421000;434000;449000;463000;479000;495000;512000;531000;550000;570000;592000;615000;638000;661000;686000;710000;735000;760000;787000;813000;841000;869000;897000;926000;958000;987000;1016000;1044000;1070000;1095000;1118000;1139000;1160000;1160000;1160000;1160000;1160000;1160000;76000;189000;189000;189000;189000;189000;179000;348000;348000;348000;348000;348000;348000;348000;348000;320000;320000;320000;320000
-114;'404;Kenya;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1871;Other industrial roundwood;5916;Export quantity;m3;7000;9000;6000;13000;25000;30000;28000;25000;14000;15000;10000;6000;1000;2000;3600;440;7000;7000;3000;3100;6800;6700;11000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1871;Other industrial roundwood;5922;Export value;1000 USD;89;110;84;91;163;229;220;202;109;120;86;130;32;108;215;22;536;536;304;404;1025;495;1047;579;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;10000;10000;10000;10000;10000;10000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;10000;20000;20000;20000;20000;20000;20000;20000;20000;19000;19000;19000;19000
-114;'404;Kenya;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;331000;342000;353000;364000;376000;388000;401000;414000;429000;443000;459000;475000;492000;511000;530000;550000;572000;595000;618000;641000;666000;690000;715000;740000;767000;793000;821000;849000;877000;906000;938000;967000;996000;1024000;1050000;1075000;1098000;1119000;1140000;1140000;1140000;1140000;1140000;1140000;56000;169000;169000;169000;169000;169000;169000;328000;328000;328000;328000;328000;328000;328000;328000;301000;301000;301000;301000
-114;'404;Kenya;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;7000;9000;6000;13000;25000;30000;28000;25000;14000;15000;10000;6000;1000;2000;3600;440;7000;7000;3000;3100;6800;6700;11000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;89;110;84;91;163;229;220;202;109;120;86;130;32;108;215;22;536;536;304;404;1025;495;1047;579;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1630;Wood charcoal;5510;Production;t;88374;96663;102431;112002;132303;136763;149312;157683;178911;200232;231447;204143;231105;237376;226712;234754;251581;266570;283451;290717;304394;315227;325827;341811;353679;375938;397285;420415;441764;463076;478227;488380;501428;523673;545053;569658;587778;603911;621938;640501;665540;691557;718591;746682;775871;805753;836787;869016;902486;937245;971086;1006148;1006148;1080117;1119116;1157021;1196209;1236725;1279000;1208000;1366427;1412432;1459986
-114;'404;Kenya;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;493;0;0;0;0;0;30;30;30;22;205;8;34;28;302;67;120;42;6;61;5;9;31;75;191;180;18
-114;'404;Kenya;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;215;0;0;0;0;0;4;4;4;5;16;10;64;14;7;34;22;282;7;190;15;36;27;37;95;84;21
-114;'404;Kenya;1630;Wood charcoal;5910;Export quantity;t;2800;5400;5100;8200;21600;18700;23400;23400;35700;47500;58200;11000;27600;25100;7700;7700;7700;7700;7700;;;;;;;;;;;;;;30;30;2;2;2;2;2;2;2;2;146;1;1;597;431;729;729;470;842;357;120;85;122;139;1177;263;8;49;74;17;34
-114;'404;Kenya;1630;Wood charcoal;5922;Export value;1000 USD;99;193;218;258;429;375;413;561;1122;1531;2203;318;925;1082;294;338;385;385;442;;;;;;;;;;;;;;7;7;1;1;1;1;1;1;1;1;68;233;233;302;197;317;317;219;341;117;22;24;45;42;348;170;13;14;35;8;14
-114;'404;Kenya;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;45;34000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;34000;34000;34000;34000
-114;'404;Kenya;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;451;3823;3473;3517;3617;3600;3600;142;143;13;66;66;18;663;5;59;111;61;44;38;75
-114;'404;Kenya;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;22;154;139;154;193;219;219;86;95;2;52.04;52.04;13.04;98;10;25;32;41;111;44;61
-114;'404;Kenya;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;13;77;77;2318;30;30;30;30;30;36;31;69;69;69;1025;29;29;29;4;4;6
-114;'404;Kenya;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;8;8;63;15;15;15;15;15;20;24;23;23;23;19;15;15;15;1;1;3
-114;'404;Kenya;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;356;6;50;150;133;133;133;133;10;8;8;8;1;3;30;63;32;43;38;75
-114;'404;Kenya;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;19;4;19;58;84;84;84;84;1;0.04;0.04;0.04;2;5;7;14;24;111;44;61
-114;'404;Kenya;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;65;2306;25;25;25;25;25;25;25;25;25;25;25;25;25;25;0;0;2
-114;'404;Kenya;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;58;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;2
-114;'404;Kenya;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;45;34000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;34000;34000;34000;34000
-114;'404;Kenya;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;0;0;0;0;0;21;3467;3467;3467;3467;3467;3467;9;10;3;58;58;10;662;2;29;48;29;1;0;0
-114;'404;Kenya;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;0;0;7;135;135;135;135;135;135;2;11;1;52;52;13;96;5;18;18;17;0;0;0
-114;'404;Kenya;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;249;249;0;0;0;0;0;12;12;12;12;5;5;5;5;5;11;6;44;44;44;1000;4;4;4;4;4;4
-114;'404;Kenya;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;0;0;5;5;5;5;1;1;1;1;1;6;10;9;9;9;5;1;1;1;1;1;1
-114;'404;Kenya;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;127;247;388
-114;'404;Kenya;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;72;83;100
-114;'404;Kenya;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-114;'404;Kenya;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-114;'404;Kenya;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;360
-114;'404;Kenya;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;92
-114;'404;Kenya;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-114;'404;Kenya;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13
-114;'404;Kenya;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;127;28;28
-114;'404;Kenya;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;72;8;8
-114;'404;Kenya;1872;Sawnwood;5516;Production;m3;50000;51000;60000;68000;82000;71000;87000;95000;95000;83000;83000;85000;104000;92000;125000;173000;173000;131000;151000;170000;149000;149000;142000;183000;192000;173000;195000;188000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;84000;78000;78000;78000;136000;142000;142000;142000;142000;142000;159000;170000;296000;296000;296000;296000;296000;296000;296000;279000;279000;279000;279000
-114;'404;Kenya;1872;Sawnwood;5616;Import quantity;m3;4200;3800;3200;4000;4100;8300;8900;15000;12800;13400;18400;11950;5400;3900;7000;;;;;;;;;;;;;;;;;552;105;1516;1606;2000;20;160;160;160;900;718;349;4779;4400;2473;5119;13592;10282;11790;4690;5015;4020;2467;44700;31398;12331;14139;50525;104252;362128;295524;296005
-114;'404;Kenya;1872;Sawnwood;5622;Import value;1000 USD;246;189;194;247;253;512;644;1101;959;831;1097;724;380;351;394;;;;;;;;;;;;;;;;;154;45;351;387;498;5;62;62;62;268;156;487;1088;933;626;2100;1466;1144;3595;3959;4437;2216;951;23135;4812;2826;3164;21266;28080;29943;20835;20835
-114;'404;Kenya;1872;Sawnwood;5916;Export quantity;m3;10500;12000;13000;17100;23400;20500;21100;28000;30500;29600;24000;9400;12400;15500;13700;16200;18200;8900;5900;10300;17700;4400;1600;1600;1700;1100;400;400;9;218;218;2629;578;2739;1359;1800;94;200;200;200;1000;503;199;740;740;886;553;434;434;272;137;382;1428;4558;378;380;437;3789;3883;3832;2023;2898;2952
-114;'404;Kenya;1872;Sawnwood;5922;Export value;1000 USD;477;483;568;829;1094;853;919;1111;1292;1348;1261;518;919;1190;1045;1465;1968;948;737;1975;2348;1272;164;547;180;148;37;37;20;74;74;675;143;639;307;380;44;107;107;107;194;50;513;208;208;667;364;386;386;104;180;224;744;3344;127;141;248;2148;2039;1920;1012;1196;1196
-114;'404;Kenya;1632;Sawnwood, coniferous;5516;Production;m3;42000;42000;50000;63000;75000;65000;83000;90000;90000;74000;74000;76000;89000;74000;97000;147000;140000;116000;125000;144000;123000;127000;136000;178000;186000;168000;190000;185000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;74000;70000;70000;70000;116000;121000;121000;121000;121000;121000;129000;140000;266000;266000;266000;266000;266000;266000;266000;251000;251000;251000;251000
-114;'404;Kenya;1632;Sawnwood, coniferous;5616;Import quantity;m3;100;100;100;400;600;4150;2750;5950;4650;3850;5950;5950;550;1700;2450;;;;;;;;;;;;;;;;;;;1494;1494;1300;18;100;100;100;700;700;59;2812;2600;362;2666;11463;8182;2690;1060;1395;1300;437;270;398;80;1513;22114;36615;19128;13290;13771
-114;'404;Kenya;1632;Sawnwood, coniferous;5622;Import value;1000 USD;4;5;6;18;30;204;170;398;336;185;274;274;24;93;75;;;;;;;;;;;;;;;;;;;340;340;334;4;37;37;37;139;139;36;489;397;26;1315;863;690;492;336;821;312;356;76;193;50;499;6141;6810;3189;1869;1869
-114;'404;Kenya;1632;Sawnwood, coniferous;5916;Export quantity;m3;8700;10500;10400;13600;18400;16850;18500;25950;29400;28150;22600;8400;11700;13000;12000;12200;16100;8000;5000;8300;13900;1300;300;300;300;600;300;300;0;0;0;2119;487;2431;1320;1500;73;0;0;0;500;500;100;126;126;82;269;187;187;18;36;36;39;28;198;80;19;64;15;15;109;213;268
-114;'404;Kenya;1632;Sawnwood, coniferous;5922;Export value;1000 USD;382;409;437;592;794;639;756;973;1203;1247;1160;430;790;962;863;1043;1717;838;627;1599;1501;171;70;296;60;78;32;32;0;0;0;412;83;456;296;312;17;0;0;0;48;48;44;21;21;22;130;145;145;39;67;9;54;78;61;21;22;74;24;93;67;72;72
-114;'404;Kenya;1633;Sawnwood, non-coniferous;5516;Production;m3;8000;9000;10000;5000;7000;6000;4000;5000;5000;9000;9000;9000;15000;18000;28000;26000;33000;15000;26000;26000;26000;22000;6000;5000;6000;5000;5000;3000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;10000;8000;8000;8000;20000;21000;21000;21000;21000;21000;30000;30000;30000;30000;30000;30000;30000;30000;30000;28000;28000;28000;28000
-114;'404;Kenya;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;4100;3700;3100;3600;3500;4150;6150;9050;8150;9550;12450;6000;4850;2200;4550;;;;;;;;;;;;;;;;;552;105;22;112;700;2;60;60;60;200;18;290;1967;1800;2111;2453;2129;2100;9100;3630;3620;2720;2030;44430;31000;12251;12626;28411;67637;343000;282234;282234
-114;'404;Kenya;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;242;184;188;229;223;308;474;703;623;646;823;450;356;258;319;;;;;;;;;;;;;;;;;154;45;11;47;164;1;25;25;25;129;17;451;599;536;600;785;603;454;3103;3623;3616;1904;595;23059;4619;2776;2665;15125;21270;26754;18966;18966
-114;'404;Kenya;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1800;1500;2600;3500;5000;3650;2600;2050;1100;1450;1400;1000;700;2500;1700;4000;2100;900;900;2000;3800;3100;1300;1300;1400;500;100;100;9;218;218;510;91;308;39;300;21;200;200;200;500;3;99;614;614;804;284;247;247;254;101;346;1389;4530;180;300;418;3725;3868;3817;1914;2685;2684
-114;'404;Kenya;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;95;74;131;237;300;214;163;138;89;101;101;88;129;228;182;422;251;110;110;376;847;1101;94;251;120;70;5;5;20;74;74;263;60;183;11;68;27;107;107;107;146;2;469;187;187;645;234;241;241;65;113;215;690;3266;66;120;226;2074;2015;1827;945;1124;1124
-114;'404;Kenya;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000
-114;'404;Kenya;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;20;57;22;22;83;80;80;80;0;44;475;126;103;79;117;123;513;427;54;209;946;242;270;163;1119;1275;942;140;44;87;109
-114;'404;Kenya;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;41;69;13;13;71;52;52;52;0;13;307;99;74;14;139;80;215;233;41;109;538;263;214;103;386;423;467;112;108;109;109
-114;'404;Kenya;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;4;4;637;2000;2000;2000;0;0;57;123;123;12;206;162;162;28;2;195;114;40;34;8;95;191;817;282;0;0;0
-114;'404;Kenya;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;4;4;313;833;833;833;0;0;59;98;98;19;263;170;170;66;65;33;20;21;21;13;40;222;147;154;0;0;0
-114;'404;Kenya;1873;Wood-based panels;5516;Production;m3;;;;;;;;;1600;2200;2500;4200;4500;9900;11000;12000;14000;17000;19000;28000;24000;22000;21000;24000;33000;40000;35000;49000;52200;52200;52200;52200;52200;52200;52200;52200;52200;52200;52200;52200;95400;82400;85500;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;82000;82000;82000;82000
-114;'404;Kenya;1873;Wood-based panels;5616;Import quantity;m3;4300;5000;4900;5700;5500;7959;6917;11023;11411;12254;14118;10765;7227;6843;2900;3400;4500;4400;2300;2600;12100;5300;6400;6600;8850;12000;9500;10400;3428;4462;4462;738;1329;781;2818;3074;2076;3600;3600;3600;5300;2741;8278;25465;10452;14137;11408;19927;40407;42378;55438;74972;62353;82344;78824;116276;154049;167616;152507;186209;219393.89;293472;336621
-114;'404;Kenya;1873;Wood-based panels;5622;Import value;1000 USD;487;557;633;740;651;976;1014;1225;1468;1897;2379;1838;1812;2506;944;1337;2306;2495;1874;1245;1801;998;910;855;917;950;496;769;1330;1810;1810;438;651;683;1440;1368;1216;1467;1467;1467;1635;748;2663;5439;3483;4440;5845;10460;11063;15777;21351;29267;24349;37798;40810;46797;61235;64126;58582;64827;70196.05;90092;99905
-114;'404;Kenya;1873;Wood-based panels;5916;Export quantity;m3;0;0;58;133;200;305;405;605;1205;1305;905;405;505;505;605;800;1050;750;600;400;800;1500;1000;1000;1036;1900;1300;1300;8;0;0;97;1251;169;730;0;6;0;0;0;0;3372;9170;12068;12068;7101;15867;18675;17252;21552;12756;10776;11897;8563;9394;4762;7168;3642;6560;6035;10140.64;9136;5712
-114;'404;Kenya;1873;Wood-based panels;5922;Export value;1000 USD;0;0;21;48;72;183;202;299;520;782;647;169;203;234;203;339;627;469;353;304;491;604;399;403;412;450;629;661;6;0;0;31;680;62;218;0;4;0;0;0;0;1049;4017;2731;2731;3031;6792;8199;7946;8473;5240;6433;6180;4569;4594;2174;3382;1725;3300;3532;4955.13;4471;2423
-114;'404;Kenya;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;1600;2200;2500;4200;4500;9900;11000;12000;14000;17000;19000;23000;19000;18000;17000;20000;20000;25000;22000;34000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;78000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000;66000
-114;'404;Kenya;1640;Plywood and LVL;5616;Import quantity;m3;1400;2100;2200;3400;3000;4500;4300;5700;8400;6200;7300;5000;4200;3700;1600;1000;3000;3000;1900;2200;300;600;600;600;900;600;100;100;3259;2570;2570;731;1271;721;1184;1500;1547;2000;2000;2000;2800;3;3479;3793;2737;3552;4156;4893;6396;14222;22426;23366;29487;34843;25408;53677;47673;84339;87078;133073;146470;219426;219426
-114;'404;Kenya;1640;Plywood and LVL;5622;Import value;1000 USD;240;318;376;493;486;711;676;795;1164;1299;1620;1033;1306;1075;532;503;1700;1800;1646;1017;161;296;270;252;389;362;69;69;1299;1396;1396;434;633;653;961;921;851;975;975;975;1029;4;1266;1345;1244;1701;3032;3684;2819;5032;8835;9404;12005;17128;15345;23044;17278;29826;31547;42231;44802;64716;64716
-114;'404;Kenya;1640;Plywood and LVL;5916;Export quantity;m3;0;0;58;133;200;200;300;500;900;1000;600;100;200;200;300;500;700;500;500;300;700;1400;700;800;900;1200;1200;1200;8;0;0;31;1185;103;730;0;1;0;0;0;0;3227;3154;2280;2280;2188;3134;5023;5023;11463;4637;1547;3558;1249;2777;2195;857;621;330;14;314;0;109
-114;'404;Kenya;1640;Plywood and LVL;5922;Export value;1000 USD;0;0;21;48;72;139;170;272;471;728;590;121;149;156;154;268;418;298;298;249;478;549;357;378;395;383;619;619;6;0;0;8;657;39;218;0;1;0;0;0;0;1015;1999;748;748;883;3937;4307;4307;5156;2092;810;1944;662;1303;1016;303;289;169;78;159;98;25
-114;'404;Kenya;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-114;'404;Kenya;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-114;'404;Kenya;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;9000;10000;8000;9000;10000;10000;10000;10000;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1900;2000;1700;200;200;300;300;900;800;1000;500;500;500;300;400;400;400;300;400;400;200;400;400;400;150;100;100;100;89;1892;1892;6;57;60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;128;135;133;14;16;15;17;45;61;72;112;127;87;48;61;61;61;150;228;228;40;80;80;80;24;22;22;22;20;414;414;3;17;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;200;200;200;200;200;200;200;200;200;100;100;100;100;100;300;200;136;700;100;100;0;0;0;66;66;66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;22;27;27;27;27;36;36;36;78;40;55;55;13;55;42;25;17;67;10;42;0;0;0;23;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;6400;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;7700;8000;7000;7000;7000;7000
-114;'404;Kenya;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1472;1472;342;400;400;400;200;208;287;2234;1834;2037;3755;4307;10604;14749;19735;25542;18756;21306;23146;26094;23020;23020;16136;10000;22247.22;23173;31398
-114;'404;Kenya;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;429;194;187;187;187;109;47;226;367;696;797;1241;1249;3461;4098;5680;7406;5410;6463;6797;6961;6595;6595;4618;2759;6462.97;6927;7345
-114;'404;Kenya;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;0;0;0;145;2926;7433;7433;3913;10397;9959;8536;6041;4260;2737;1342;1213;1105;650;961;961;230;157;404.69;1316;1114
-114;'404;Kenya;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0;34;810;1256;1256;1806;1989;2410;2157;1426;1060;981;473;425;352;208;363;363;90;26;250;484;418
-114;'404;Kenya;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;57;57;8;640;640;316;272;385;734;539;418;402;339;853;633;126;119;1862.56;715;958
-114;'404;Kenya;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;9;9;9;7;136;136;68;188;146;294;164;448;726;280;225;269;38;36;647.19;285;263
-114;'404;Kenya;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;97;97;4;4;4;0;50;50;47;6;6;24
-114;'404;Kenya;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;75;75;4;4;4;0;58;58;55;3;1;2
-114;'404;Kenya;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;5000;5000;4000;4000;4000;4000;5000;5000;6000;6200;6200;6200;6200;6200;6200;6200;6200;6200;6200;6200;6200;11000;8700;11800;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9000;9000;9000;9000;9000
-114;'404;Kenya;1874;Fibreboard;5616;Import quantity;m3;1000;900;1000;2100;2300;3159;2317;4423;2211;5054;6318;5265;2527;2843;900;2000;1100;1100;;;11600;4300;5400;5600;7800;11300;9300;10200;80;0;0;1;1;0;162;102;187;1200;1200;1200;2300;2507;4511;19381;5824;8540;2857;10087;23091;13135;12892;25330;13571;25777;29868;36166;82503;59624;49167;43017;48814.11;50158;84839
-114;'404;Kenya;1874;Fibreboard;5622;Import value;1000 USD;119;104;124;233;149;250;321;385;243;526;647;678;419;1383;351;773;545;545;;;1600;622;560;523;504;566;405;678;11;0;0;1;1;0;50;18;171;305;305;305;497;692;1162;3718;1534;1935;1436;5391;4715;6459;6690;12163;6770;13759;17942;16512;37137;27436;22379;19801;18283.88;18164;27581
-114;'404;Kenya;1874;Fibreboard;5916;Export quantity;m3;;;;;;105;105;105;105;105;105;105;105;105;105;100;150;150;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3090;2355;2355;1000;2336;3693;3693;4048;3760;6395;6900;6097;5508;1913;5350;2010;5950;5817;9415.95;7814;4465
-114;'404;Kenya;1874;Fibreboard;5922;Export value;1000 USD;;;;;;44;32;27;27;27;30;21;27;42;13;35;131;131;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1208;727;727;342;866;1482;1482;1891;2006;4567;3688;3478;2935;946;2716;1015;2983;3373;4543.13;3888;1978
-114;'404;Kenya;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;6200;6200;6200;6200;6200;11000;8700;11800;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9300;9000;9000;9000;9000;9000
-114;'404;Kenya;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;100;100;100;900;707;873;1869;1869;1146;293;534;350;656;995;10689;486;326;507;397;1136;611;605;306;274;2503;3411
-114;'404;Kenya;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;71;71;71;142;267;461;867;867;571;185;222;151;399;643;4958;418;359;552;502;667;494;138;130;195;1145;1455
-114;'404;Kenya;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336;1323;1323;722;2194;61;61;265;265;749;3079;3411;2294;1479;3892;1522;1742;1754;2527.99;2265;2124
-114;'404;Kenya;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;534;534;273;745;55;55;285;285;1603;1127;1736;1153;657;1650;682;806;771;1106.2;1063;1006
-114;'404;Kenya;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;93;300;300;300;600;1000;1865;14236;679;6479;2374;7905;19458;9774;11096;13624;12902;23520;27511;35090;77661;56694;45187;41845;47458.88;45342;81205
-114;'404;Kenya;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;86;130;130;130;251;321;431;2435;251;1113;1063;4217;4243;4888;5509;6487;6312;11974;16262;15464;35156;25942;21515;19510;17778.88;16514;26075
-114;'404;Kenya;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;365;365;71;9;3614;3614;3773;3458;5643;3449;2550;3092;429;1364;466;4090;4000;6678.96;5107;2254
-114;'404;Kenya;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;88;88;46;35;1419;1419;1599;1699;2962;2459;1632;1683;284;1001;324;2141;2583;3408.93;2770;962
-114;'404;Kenya;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;11600;4300;5400;5600;7800;11300;9300;10200;80;0;0;1;1;0;160;100;48;800;800;800;800;800;1773;3276;3276;915;190;1648;3283;2705;801;1017;183;1931;1850;679;3706;2319;3375;866;1081.23;2313;223
-114;'404;Kenya;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1600;622;560;523;504;566;405;678;11;0;0;1;1;0;49;17;5;104;104;104;104;104;270;416;416;251;188;952;321;1172;538;718;40;1426;1128;546;1314;1000;726;161;310;505;51
-114;'404;Kenya;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1626;667;667;207;133;18;18;10;37;3;372;136;122;5;94;22;118;63;209;442;87
-114;'404;Kenya;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;117;105;105;23;86;8;8;7;22;2;102;110;99;5;65;9;36;19;28;55;10
-114;'404;Kenya;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;5000;5000;4000;4000;4000;4000;5000;5000;6000;6200;6200;6200;6200;6200;6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1000;900;1000;2100;2300;3159;2317;4423;2211;5054;6318;5265;2527;2843;900;2000;1100;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;119;104;124;233;149;250;321;385;243;526;647;678;419;1383;351;773;545;545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;105;105;105;105;105;105;105;105;105;105;100;150;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;44;32;27;27;27;30;21;27;42;13;35;131;131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;3000;12000;24000;24000;27000;56000;59000;61000;70000;72000;119000;116000;68000;73000;85000;92000;83000;84000;101000;116000;100000;104000;104000;104000;104000;104000;104000;104000;125000;134000;161000;154000;151000;151000;151000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000
-114;'404;Kenya;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;299;0;0;8892;5052;3394;5700;6203;4096;5164;4898;4888;4510;2777;5734;4448;4757;2501;4117;4018;2126.2;4004;2531;1608;1611;1742;4196;3942;3615;3451;11294;10055;14478.19;20039;23088
-114;'404;Kenya;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;111;0;0;1937;630;591;1737;2832;1873;2156;2143;3191;1621;868;2971;1688;2287;1098;1901;2700;1079.6;2370;1002;1439;755;812;2569;1676;2198;1718;6287;11241;14537.76;22478;24004
-114;'404;Kenya;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;1;25;1;1;0;0;0;0;0;1816;831;831;236;987;1322;1322;5887;9592;16287;11916;11092;11310;9776;18010;18010;3304;2894;7587.29;5822;3886
-114;'404;Kenya;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;10;10;1;20;1;1;0;0;0;0;0;249;84;84;28;177;289;289;912;1989;3169;1962;2018;1728;1726;2722;2722;152;144;1609.6;1424;1116
-114;'404;Kenya;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;3000;12000;15000;15000;18000;47000;50000;52000;53000;53000;57000;52000;53000;54000;55000;56000;56000;58000;75000;90000;63000;66000;66000;66000;66000;66000;66000;66000;87000;96000;123000;116000;113000;113000;113000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4203;363;366;1525;5103;3897;4800;4800;4500;3100;1795;5183;3073;2825;2015;1828;2929;1482.2;2187;1094;643;777;795;3645;2625;2643;2479;7217;8690;11768.89;14836;15047
-114;'404;Kenya;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1447;140;174;664;2569;1837;2124;2124;3161;1482;740;2795;1426;1886;1016;1470;2376;936.6;1940;494;576;594;534;1758;1312;2052;1572;4669;9712;14012.76;20824;22288
-114;'404;Kenya;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;1;25;1;1;0;0;0;0;0;0;7;7;7;20;53;53;27;27;115;117;102;112;30;26;26;22;8;180;115;387
-114;'404;Kenya;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1;20;1;1;0;0;0;0;0;0;2;2;2;24;77;77;52;52;99;105;64;69;23;25;25;24;23;219;141;563
-114;'404;Kenya;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;3000;12000;15000;15000;18000;47000;50000;52000;53000;53000;57000;52000;53000;54000;55000;56000;56000;58000;75000;90000;63000;66000;66000;66000;66000;66000;66000;66000;66000;74000;98000;93000;86000;86000;86000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4203;363;366;1572;5103;3407;3200;3200;2900;2900;1595;5069;3100;2824.7;1996;1817;2888;1485;2187;985;501;777;795;3646;2594;2729;2613;7337;8783;11849.89;14880;15091
-114;'404;Kenya;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1447;140;174;715;2569;1680;1533;1533;2570;1376;634;2516;1421;1886.6;899;1442;2291;937;1931;287;306;589;529;1751;1280;2025;1615;4747;9785;14022.76;20870;22336
-114;'404;Kenya;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;24;0;0;0;0;0;0;0;0;15;15;11;24;57;57;31;31;119;119;104;114;32;24;24;24;11;183;118;496
-114;'404;Kenya;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;19;0;0;0;0;0;0;0;0;7;7;4;26;79;79;54;54;101;101;60;65;22;16;16;15;14;210;132;664
-114;'404;Kenya;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;56;56;9;18;1;1
-114;'404;Kenya;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52;52;48;6;1;1
-114;'404;Kenya;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;11000;11000;9000;9000;9000;0;0;0;0;0;0;0;0;;;;;;;
-114;'404;Kenya;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;101;103;103;103;103;0;0;0;0;0;0;0;23;0;5;5;5;100;100;100;100;0;0;0;;;;;;;
-114;'404;Kenya;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;22;46;46;46;46;0;0;0;0;0;0;0;20;0;3;3;3;65;65;65;65;0;0;0;;;;;;;
-114;'404;Kenya;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;1;1;1;1;0;0;0;;;;;;;
-114;'404;Kenya;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;;
-114;'404;Kenya;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;10;10;10;10;227;25;20;582;65;65;0;0;0;;;;;;;
-114;'404;Kenya;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;4;4;4;4;168;6;5;28;4;4;0;0;0;;;;;;;
-114;'404;Kenya;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;4;4;4;4;4;4;0;0;0;;;;;;;
-114;'404;Kenya;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;21;21;21;21;21;21;0;0;0;;;;;;;
-114;'404;Kenya;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;3000;12000;15000;15000;18000;47000;50000;52000;53000;53000;57000;52000;53000;54000;55000;56000;56000;58000;75000;90000;63000;66000;66000;66000;66000;66000;66000;66000;66000;66000;87000;82000;77000;77000;77000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2231;262;263;1422;5000;3304;3200;3200;2900;2900;1578;4977;2999;2791;1984;1800;2653;1452;2062;298;331;607;790;3641;2589;2573;2401;7125;8680;11737.89;14829;15040
-114;'404;Kenya;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052;118;128;618;2523;1634;1533;1533;2570;1376;629;2470;1372;1861;894;1434;2119;927;1860;193;236;519;528;1750;1279;1935;1473;4605;9652;13931.76;20812;22278
-114;'404;Kenya;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;24;0;0;0;0;0;0;0;0;0;0;0;13;44;44;22;22;110;110;100;110;28;20;20;20;7;179;114;386
-114;'404;Kenya;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;19;0;0;0;0;0;0;0;0;0;0;0;22;55;55;30;30;77;77;58;63;20;14;14;13;12;208;130;552
-114;'404;Kenya;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;66000;63000;63000;63000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;998;0;0;0;0;0;0;0;0;0;21;71;71;71;71;71;22;22;2598;1525;825;825;290;208;663.22;436;120
-114;'404;Kenya;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578;360;0;0;0;0;0;0;0;0;0;13;34;34;34;34;34;14;14;1057;633;370;370;22;21;599;624;111
-114;'404;Kenya;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;14;14;14;14;1;1;46;100
-114;'404;Kenya;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;11;11;10;9;9;35;97
-114;'404;Kenya;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;16000;14000;14000;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212;253;240;1028;3200;2282;3200;3200;2900;2900;1554;3824;1020;1215;1925;1057;1860;1348;1958;197;230;555;766;1041;1061;1744;1574;6830;8471;11071.68;14383;14917
-114;'404;Kenya;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;107;113;366;1713;1261;1533;1533;2570;1376;613;1760;430;837;849;852;1516;870;1798;128;166;469;508;688;640;1516;1096;4578;9626;13324.76;20161;22151
-114;'404;Kenya;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;34;34;12;12;100;100;100;100;14;6;6;6;6;178;68;286
-114;'404;Kenya;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;36;36;11;11;58;58;58;58;7;3;3;3;3;199;95;455
-114;'404;Kenya;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;5;1;3;10;3
-114;'404;Kenya;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;7;5;5;8;27;16
-114;'404;Kenya;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;29000;30000;31000;31000;32000;27000;28000;29000;29000;30000;30000;31000;55000;65000;46000;48000;48000;48000;48000;48000;48000;48000;48000;48000;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-114;'404;Kenya;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;0;0;0;0;0;0;0;23;23;46;31;31;31;31;31;28;28;28;0;0;0;;;;;;;
-114;'404;Kenya;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;17;17;22;19;19;19;19;19;22;22;22;0;0;0;;;;;;;
-114;'404;Kenya;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;;;;;;;
-114;'404;Kenya;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;;;;;;;
-114;'404;Kenya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;21000;22000;22000;22000;25000;25000;25000;25000;26000;26000;26000;27000;20000;25000;17000;18000;18000;18000;18000;18000;18000;18000;18000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-114;'404;Kenya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;9;23;303;300;24;0;0;0;0;24;1130;1956;1530;28;691;691;2;2;2;2;2;2;2;3;;;;;;;
-114;'404;Kenya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;11;15;232;232;13;0;0;0;0;16;693;925;1002;26;550;550;4;9;9;14;14;6;5;6;;;;;;;
-114;'404;Kenya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;24;0;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;0;0;0;;;;;;;
-114;'404;Kenya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;19;0;0;0;0;0;0;0;0;0;0;0;19;19;19;19;19;19;19;0;0;0;;;;;;;
-114;'404;Kenya;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;0;0;0;0;0;91;91;0.7;2;2;3;3;5;5;5;5;5;5;5;156;156;156;94;94;50;50
-114;'404;Kenya;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;0;0;0;0;0;45;45;1.6;1;1;1;1;1;1;1;1;1;1;1;90;90;90;85;85;57;57
-114;'404;Kenya;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;110
-114;'404;Kenya;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;112
-114;'404;Kenya;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;22000;25000;23000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490;1600;1600;1600;200;200;205;64;1;21;13;44;0.2;5;114;147;5;5;4;36;70;22;36;1;13;6;6
-114;'404;Kenya;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;591;591;591;106;106;324;50;1;118;29;86;0.6;10;208;271;6;6;8;33;117;47;12;12;75;11;9
-114;'404;Kenya;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;6;6;2;1;1;1;1
-114;'404;Kenya;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;3;11;11;11;11;11;11;11
-114;'404;Kenya;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241;20;20;266;49;19;86;41;41;1;1;1;100;19;16;42;0;3;2;0;1
-114;'404;Kenya;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;16;16;50;34;17;61;33;33;11;11;11;83;5;1;21;1;4;8;0;1
-114;'404;Kenya;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;4;4;4;2;27;27;27;27;27;18;18;18;18;18;18;18;18;6;6.14;6.14
-114;'404;Kenya;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;3;3;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;1.68;1.68
-114;'404;Kenya;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;9000;9000;9000;9000;9000;9000;17000;19000;62000;64000;15000;19000;30000;36000;27000;26000;26000;26000;37000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000
-114;'404;Kenya;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;299;0;0;4689;4689;3028;4175;1100;199;364;98;388;1410;982;551;1375;1932;486;2289;1089;644;1817;1437;965;834;947;551;1317;972;972;4077;1365;2709.3;5203;8041
-114;'404;Kenya;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;111;0;0;490;490;417;1073;263;36;32;19;30;139;128;176;262;401;82;431;324;143;430;508;863;161;278;811;364;146;146;1618;1529;525;1654;1716
-114;'404;Kenya;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1816;824;824;229;967;1269;1269;5860;9565;16172;11799;10990;11198;9746;17984;17984;3282;2886;7407.29;5707;3499
-114;'404;Kenya;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;0;0;0;0;0;0;0;0;0;249;82;82;26;153;212;212;860;1937;3070;1857;1954;1659;1703;2697;2697;128;121;1390.6;1283;553
-114;'404;Kenya;1876;Paper and paperboard;5510;Production;t;1400;3000;2400;2600;2600;2600;3000;3200;3200;2300;3500;4200;4200;4500;29000;41000;55000;58000;61000;62000;63000;66000;69000;76000;105000;105000;107000;100600;108100;91000;90000;176000;176000;108000;113000;129000;129000;129000;129000;129000;70000;84000;105800;160700;273000;279000;178400;176300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1876;Paper and paperboard;5610;Import quantity;t;19600;20800;26300;27400;34900;39400;42700;39500;50700;52500;62200;52100;67600;80900;35100;20600;26400;33300;35800;28600;20100;17300;22100;12800;20500;17900;29900;24357;31123;24065;24065;21600;26499;20651;18813;20400;30851;52999;52999;31900;45700;38074;108957;105392;109225;123578;159503;177042;223053;280103;304619;211214;243028;314409;298411;314087;336149;370161;354709;309551;353320.17;341957;323748
-114;'404;Kenya;1876;Paper and paperboard;5622;Import value;1000 USD;4008;5205;6146;6952;8668;10133;10981;10700;13247;14667;18207;17775;25296;48290;25688;15205;20340;28876;28697;25377;17203;14926;18037;10973;13057;10276;27403;21312;27062;22855;22855;17948;20069;17328;17474;18048;25699;34295;34295;27540;25593;22377;75535;72451;88371;77248;149188;179603;179926;238076;259999;186319;223243;275634;239875;237491;267184;357163;296443;244386;335976.7;396552;301351
-114;'404;Kenya;1876;Paper and paperboard;5910;Export quantity;t;;100;52;36;36;100;200;200;600;500;600;800;700;1700;5600;15400;13600;13600;19200;19300;10100;16900;7000;4400;3500;2700;2600;2700;2601;2755;2755;7180;116;1001;207;0;275;1700;1700;10200;17200;6486;18629;26830;26830;14702;21545;23670;23670;8222;5138;23953;26284;4026;8777;5359;11241;17835;12085;9768;20046.34;23390;18305
-114;'404;Kenya;1876;Paper and paperboard;5922;Export value;1000 USD;;25;13;9;9;15;46;69;173;233;199;296;388;772;2259;5768;6665;6665;10650;10674;6438;9061;6534;893;3350;3352;2964;3356;3203;3547;3547;5776;113;660;195;0;332;1123;1123;6628;13075;6050;13590;17677;17677;12163;17662;24133;24133;9334;8000;44932;45668;3972;6242;5130;8862;25282;18185;18124;15361.78;24482;16792
-114;'404;Kenya;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;600;500;8000;12000;18000;19000;20000;19000;18000;24000;26000;38000;37000;37000;39000;42200;44300;34000;34000;48000;48000;30000;32000;32000;32000;32000;32000;32000;22000;22000;24800;25700;33000;29000;22400;20300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;2042;Graphic papers;5610;Import quantity;t;9100;8500;9500;8800;9500;11000;11200;12100;14200;11900;16100;13600;16600;23200;6900;5800;6800;8000;10400;9800;7400;3800;5100;2200;2700;8300;2800;8100;13623;6565;6565;5300;9843;9172;8956;9100;19851;37999;37999;21900;24500;14033;63541;64889;62236;62218;96398;97671;102808;139342;151416;109477;113250;138275;132635;138313;136643;158510;148081;102788;126581.28;144447;131670
-114;'404;Kenya;2042;Graphic papers;5622;Import value;1000 USD;2352;2236;2412;2388;2598;2876;2859;3012;3773;3150;4432;4009;5856;15226;4785;3683;4536;5162;6888;6568;5401;3320;3889;1805;1426;5323;6228;6418;10591;6384;6384;3715;7181;7640;8051;6096;14913;22886;22886;16832;14208;9444;40762;43765;54253;47692;93938;102621;93813;121851;133395;90678;97193;125678;107565;110872;112493;156346;143795;99537;122356.91;165788;121271
-114;'404;Kenya;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;100;100;100;200;200;400;3400;2900;2900;10300;8300;2800;3300;600;500;300;100;100;100;1;155;155;30;105;105;109;0;145;1500;1500;1500;3300;3301;4266;8134;8134;4626;6281;7893;7893;3715;603;2630;5190;749;2931;2140;5515;2503;4952;2883;3016.6;5682;4030
-114;'404;Kenya;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;22;22;22;174;155;228;1685;1982;1982;5374;4355;1100;1806;723;571;347;122;285;159;6;350;350;23;92;92;105;0;181;1004;1004;1004;3230;3231;3147;5098;5098;3179;5089;8012;8012;2916;652;2219;5067;731;1867;2475;4054;3491;2336;3257;2890.75;7564;4249
-114;'404;Kenya;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;2000;6000;8000;7000;6000;7000;8200;6300;6000;11000;16000;16000;13000;14000;14000;14000;14000;14000;14000;12000;9000;6000;11000;14000;13000;6400;4300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1671;Newsprint;5610;Import quantity;t;3500;2900;3000;2600;3200;3900;4300;4900;4100;5000;6300;5000;5800;5900;3900;4200;4800;6000;8400;7900;6500;2600;3800;1100;2600;4200;1600;7100;5047;965;965;956;298;1006;5315;2400;7610;21000;21000;10000;5400;6800;25524;26462;23207;27041;41655;42202;42760;55414;50957;54339;56391;53805;50707;45343;38737;41279;35979;22593;25568.11;30528;29119
-114;'404;Kenya;1671;Newsprint;5622;Import value;1000 USD;595;508;511;449;550;664;724;793;671;879;1143;948;1228;2824;1974;1943;2374;3000;4086;3924;3858;1628;2599;570;1237;2063;4817;4817;3037;461;461;379;102;434;3800;1045;2883;9518;9518;6146;2380;2500;12140;13495;13816;13592;29214;32949;28150;35190;32408;38660;37786;34916;29389;25203;20904;29687;14439;13645;15560.07;28780;21872
-114;'404;Kenya;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;0;4;0;0;0;0;0;0;0;1193;3851;3851;1649;4152;5468;5468;2547;83;414;185;301;2338;2079;1974;1401;1412;529;673.15;705;1559
-114;'404;Kenya;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;;0;13;0;0;0;0;0;0;0;677;1817;1817;886;3045;4439;4439;1427;89;392;171;232;1680;2361;1592;2009;11;11;362;698;1454
-114;'404;Kenya;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;600;500;8000;12000;18000;19000;20000;19000;18000;22000;20000;30000;30000;31000;32000;34000;38000;28000;23000;32000;32000;17000;18000;18000;18000;18000;18000;18000;10000;13000;18800;14700;19000;16000;16000;16000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1674;Printing and writing papers;5610;Import quantity;t;5600;5600;6500;6200;6300;7100;6900;7200;10100;6900;9800;8600;10800;17300;3000;1600;2000;2000;2000;1900;900;1200;1300;1100;100;4100;1200;1000;8576;5600;5600;4344;9545;8166;3641;6700;12241;16999;16999;11900;19100;7233;38017;38427;39029;35177;54743;55469;60048;83928;100459;55138;56859;84470;81928;92970;97906;117231;112102;80195;101013.17;113919;102551
-114;'404;Kenya;1674;Printing and writing papers;5622;Import value;1000 USD;1757;1728;1901;1939;2048;2212;2135;2219;3102;2271;3289;3061;4628;12402;2811;1740;2162;2162;2802;2644;1543;1692;1290;1235;189;3260;1411;1601;7554;5923;5923;3336;7079;7206;4251;5051;12030;13368;13368;10686;11828;6944;28622;30270;40437;34100;64724;69672;65663;86661;100987;52018;59407;90762;78176;85669;91589;126659;129356;85892;106796.84;137008;99399
-114;'404;Kenya;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;100;100;100;200;200;400;3400;2900;2900;10300;8300;2800;3300;600;500;300;100;100;100;1;155;155;20;105;105;105;0;145;1500;1500;1500;3300;3301;3073;4283;4283;2977;2129;2425;2425;1168;520;2216;5005;448;593;61;3541;1102;3540;2354;2343.44;4977;2471
-114;'404;Kenya;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;22;22;22;174;155;228;1685;1982;1982;5374;4355;1100;1806;723;571;347;122;285;159;6;350;350;19;92;92;92;0;181;1004;1004;1004;3230;3231;2470;3281;3281;2293;2044;3573;3573;1489;563;1827;4896;499;187;114;2462;1482;2325;3246;2528.75;6866;2795
-114;'404;Kenya;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3772;3772;2641;1200;1605;6705;8300;6676;10257;2955;1832;6647;12551;12573;11782;10104;1393;971;2935;2503;2503;1909;502;859;418;492
-114;'404;Kenya;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2424;2424;1937;409;1259;4410;6500;7095;7253;1662;1209;6647;12066;14256;10738;8556;1325;980;2311;1879;1879;4861;4593;1104;701;792
-114;'404;Kenya;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;100;100;1;47;294;294;20;22;510;4033;15;2;2;39;39;57;34;2;2;4
-114;'404;Kenya;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;77;77;2;75;328;328;115;30;589;3125;8;14;14;83;83;1;0;11;40;22
-114;'404;Kenya;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;7000;9000;13800;9700;10000;8000;8000;8000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7173;7173;5021;12300;3052;18144;14784;16501;15368;27369;30214;33213;43815;65563;16904;27438;63467;62251;66361;75804;94434;95533;64149;82136;98333;88922
-114;'404;Kenya;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8293;8293;6630;8013;4308;14847;11665;19765;20555;41335;44713;35805;48586;65880;11489;32802;70617;61175;63392;72584;103519;109754;67093;85712;116537;84107
-114;'404;Kenya;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1475;1475;1475;3246;3246;2673;3693;3693;2747;1281;1298;1298;497;301;1517;761;406;35;22;827;664;3139;1470;1928.85;4130;1475
-114;'404;Kenya;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;988;988;988;3178;3178;2079;2828;2828;1997;1225;2381;2381;554;337;1049;1516;458;30;46;1011;1022;1620;1531;1869;5259;1771
-114;'404;Kenya;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;3000;4000;5000;5000;9000;8000;8000;8000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054;6054;4238;5600;2576;13168;15343;15852;9552;24419;23423;20188;27562;22323;26452;19317;19610;18706;23674;19599;20294;14660;15544;18018.17;15168;13137
-114;'404;Kenya;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651;2651;2119;3406;1377;9365;12105;13577;6292;21727;23750;23211;26009;20851;29791;18049;18820;16021;19966;17126;21261;14741;14206;19980.84;19770;14500
-114;'404;Kenya;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;54;55;197;490;490;229;801;833;833;651;197;189;211;27;556;37;2675;399;344;850;412.59;845;992
-114;'404;Kenya;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;52;53;147;376;376;294;744;864;864;820;196;189;255;33;143;54;1368;377;704;1715;648.75;1567;1002
-114;'404;Kenya;1675;Other paper and paperboard;5510;Production;t;1400;3000;2400;2600;2600;2600;3000;3200;3200;2300;3500;4200;3600;4000;21000;29000;37000;39000;41000;43000;45000;42000;43000;38000;68000;68000;68000;58400;63800;57000;56000;128000;128000;78000;81000;97000;97000;97000;97000;97000;48000;62000;81000;135000;240000;250000;156000;156000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1675;Other paper and paperboard;5610;Import quantity;t;10500;12300;16800;18600;25400;28400;31500;27400;36500;40600;46100;38500;51000;57700;28200;14800;19600;25300;25400;18800;12700;13500;17000;10600;17800;9600;27100;16257;17500;17500;17500;16300;16656;11479;9857;11300;11000;15000;15000;10000;21200;24041;45416;40503;46989;61360;63105;79371;120245;140761;153203;101737;129778;176134;165776;175774;199506;211651;206628;206763;226738.89;197510;192078
-114;'404;Kenya;1675;Other paper and paperboard;5622;Import value;1000 USD;1656;2969;3734;4564;6070;7257;8122;7688;9474;11517;13775;13766;19440;33064;20903;11522;15804;23714;21809;18809;11802;11606;14148;9168;11631;4953;21175;14894;16471;16471;16471;14233;12888;9688;9423;11952;10786;11409;11409;10708;11385;12933;34773;28686;34118;29556;55250;76982;86113;116225;126604;95641;126050;149956;132310;126619;154691;200817;152648;144849;213619.78;230764;180080
-114;'404;Kenya;1675;Other paper and paperboard;5910;Export quantity;t;;100;52;36;36;100;200;200;600;400;500;700;500;1500;5200;12000;10700;10700;8900;11000;7300;13600;6400;3900;3200;2600;2500;2600;2600;2600;2600;7150;11;896;98;0;130;200;200;8700;13900;3185;14363;18696;18696;10076;15264;15777;15777;4507;4535;21323;21094;3277;5846;3219;5726;15332;7133;6885;17029.74;17708;14275
-114;'404;Kenya;1675;Other paper and paperboard;5922;Export value;1000 USD;;25;13;9;9;15;46;69;173;211;177;274;214;617;2031;4083;4683;4683;5276;6319;5338;7255;5811;322;3003;3230;2679;3197;3197;3197;3197;5753;21;568;90;0;151;119;119;5624;9845;2819;10443;12579;12579;8984;12573;16121;16121;6418;7348;42713;40601;3241;4375;2655;4808;21791;15849;14867;12471.03;16918;12543
-114;'404;Kenya;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;3000;3000;4000;4000;7000;7000;7000;6400;6800;6000;7000;8000;8000;5000;6000;6000;6000;6000;6000;6000;9000;10000;12000;8000;90000;100000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;100;200;200;100;200;200;200;200;100;100;200;200;200;200;200;100;400;600;600;600;600;600;600;600;600;0;0;0;0;0;0;0;400;2;2913;2538;3274;285;5933;5142;6723;7654;7654;7654;14207;17511;16553;20356;24284;28667;32955;32063;39629.7;34099;31198
-114;'404;Kenya;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;86;185;173;165;216;186;186;172;98;98;251;317;317;358;270;168;383;627;627;650;650;650;650;650;650;0;0;0;0;0;0;0;236;4;2585;2793;3586;247;6353;6509;8081;9585;9585;9585;18862;22705;21170;24227;26420;35369;28259;26705;45607.89;52286;41759
-114;'404;Kenya;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1545;682;682;584;1084;732;732;630;367;1686;642;368;493;409;453;196;300;302;314;406;524
-114;'404;Kenya;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;756;756;503;825;805;805;734;375;3333;1041;615;778;538;853;509;559;529;445;540;721
-114;'404;Kenya;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91000;91000;91000;27000;40000;57000;103000;135000;135000;135000;135000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18700;22257;39166;30818;42563;59077;51442;69454;112037;126042;135842;89160;113162;154925;146037;150953;171741;179679;170577;170207;179435.7;159446;156648
-114;'404;Kenya;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854;9946;22588;19105;26879;23421;35028;56058;73150;90179;100321;79708;100768;119658;105134;95595;122803;157805;118811;111753;158608.71;171776;132751
-114;'404;Kenya;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;3154;12341;16119;16119;9203;13874;14540;14540;3467;4022;19548;20413;2654;5283;2798;5204;15056;6757;6538;16707.74;17278;13723
-114;'404;Kenya;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4221;2693;7512;9736;9736;5593;9523;13707;13707;4156;6606;39279;39446;2329;3543;2057;3719;20932;15002;14176;11991.03;16291;11800
-114;'404;Kenya;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;42000;39000;39000;34000;61000;61000;61000;52000;57000;51000;49000;120000;120000;73000;75000;91000;91000;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;7600;8900;12100;13300;18300;20400;22700;19700;26100;26300;30100;29900;35400;37200;18900;3300;6500;12200;16500;7700;7700;5500;1200;1200;8800;1000;11100;5800;5800;5800;5800;5800;5800;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;960;1722;2166;2647;3521;4209;4711;4459;5455;6326;7621;8215;9819;19050;11651;1558;3095;11005;13422;6166;6166;3773;837;837;4700;326;5601;4821;4821;4821;4821;4821;4821;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;100;52;36;36;100;200;200;600;400;500;700;500;1500;5200;3000;10700;10700;8900;11000;7300;13600;6400;3900;3200;2600;2500;2600;2600;2600;2600;7150;11;896;98;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;25;13;9;9;15;46;69;173;211;177;274;214;617;2031;1172;4683;4683;5276;6319;5338;7255;5811;322;3003;3230;2679;3197;3197;3197;3197;5753;21;568;90;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-114;'404;Kenya;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;45000;45000;45000;45000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;18300;20622;11554;28442;40909;27885;39732;67808;62841;74175;50865;68394;83704;79152;76733;90715;83468;78836;78334;81368.69;68359;65638
-114;'404;Kenya;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;6400;8861;7162;14837;10662;15775;28905;35520;38640;45466;29853;46406;54164;48150;43893;55094;65338;36586;34574;64112.78;65787;43269
-114;'404;Kenya;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;5345;6090;6090;5714;9285;10750;10750;1263;1572;2026;4907;1710;4748;2455;4081;7941;5204;5367;14400.08;13768;11208
-114;'404;Kenya;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498;1498;2470;3679;3679;3275;5481;7827;7827;786;1036;1334;3287;1320;3082;1416;2114;4738;3048;2829;8067.03;9928;7074
-114;'404;Kenya;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;6000;6000;7000;11000;11000;11000;11000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;2685;5993;7170;6176;7986;7916;13755;11007;25576;24754;12946;11759;27761;29001;29050;29722;33801;35892;31936;40750.47;39287;42100
-114;'404;Kenya;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2668;2100;5258;4446;6007;6443;7590;12657;10961;20206;17989;25938;23907;25071;23411;20181;21993;27303;25022;24074;36686.7;43134;31665
-114;'404;Kenya;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;903;2696;2696;262;994;1264;1264;910;1761;17211;14981;518;161;242;456;6768;1272;697;920;1683;1079
-114;'404;Kenya;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032;1032;1683;1628;1628;552;947;2087;2087;1932;5013;37568;35862;622;72;542;886;15730;11635;10994;3013;4883;3515
-114;'404;Kenya;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91000;91000;91000;17000;16000;16000;15000;18000;18000;18000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1199;11734;10631;7818;10094;15033;15464;32431;36456;36494;25063;32841;43340;37740;45119;51257;62032;55074;58955;56457.54;51052;47591
-114;'404;Kenya;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;923;7538;6590;5911;6262;11267;14133;26125;30576;36470;23679;30144;40132;33350;31408;45652;64847;56484;52425;57134.23;62174;57027
-114;'404;Kenya;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;54;3367;5485;5485;3219;3160;2486;2486;1279;666;309;518;419;359;90;619;299;233;426;1339.66;1827;1436
-114;'404;Kenya;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1552;24;2214;3313;3313;1763;2846;3629;3629;1350;545;365;282;372;374;86;705;450;305;340;898;1480;1211
-114;'404;Kenya;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;18000;35000;36000;61000;61000;61000;61000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;73;817;1463;127;88;608;503;791;1169;419;286;168;120;144;51;47;378;775;982;859;748;1319
-114;'404;Kenya;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;523;931;907;124;54;396;363;544;757;396;238;311;291;223;113;64;317;719;680;675;681;790
-114;'404;Kenya;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;2726;1848;1848;8;435;40;40;15;23;2;7;7;15;11;48;48;48;48;48;0;0
-114;'404;Kenya;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;139;1145;1116;1116;3;249;164;164;88;12;12;15;15;15;13;14;14;14;13;13;0;0
-114;'404;Kenya;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;12000;24000;15000;15000;15000;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-114;'404;Kenya;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;2900;3400;4700;5300;7100;8000;8800;7700;10300;14100;15800;8500;15400;20300;9100;11300;13000;13000;8700;10900;4800;7800;15600;9300;8600;8000;15400;9857;11100;11100;11100;9900;10256;11479;9857;11300;11000;15000;15000;10000;2100;1782;3337;7147;1152;1998;5730;4775;1485;7065;9707;4923;2409;3698;3186;4465;3481;3305;3096;4493;7673.49;3965;4232
-114;'404;Kenya;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;696;1247;1568;1917;2549;3048;3411;3229;3933;5006;5981;5386;9405;13828;9066;9792;12611;12611;8136;12326;5319;7475;13041;8163;6548;4000;14947;9423;11000;11000;11000;8762;7417;9688;9423;11952;10786;11409;11409;10708;3295;2983;9600;6788;3653;5888;13869;14415;4882;16461;16698;6348;6420;7593;6006;6797;5468;7643;5578;6391;9403.18;6702;5570
-114;'404;Kenya;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;9000;;;;;;;;;;;;;;;;;;;;;130;200;200;8700;8700;31;477;1895;1895;289;306;505;505;410;146;89;39;255;70;12;69;80;76;45;8;24;28
-114;'404;Kenya;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;2911;;;;;;;;;;;;;;;;;;;;;151;119;119;5624;5624;126;1868;2087;2087;2888;2225;1609;1609;1528;367;101;114;297;54;60;236;350;288;162;35;87;22
-114;'404;Kenya;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49740;60263;57425;53916;59506;56733;59425
-114;'404;Kenya;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3982;3394;3466;3326;5127;5148;6849
-114;'404;Kenya;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;534;322;328;420;466;358
-114;'404;Kenya;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;5;125;6;157
-114;'404;Kenya;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;78;50;31;105;127;4
-114;'404;Kenya;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;1;5;93
-114;'404;Kenya;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;456;272;297;315;339;354
-114;'404;Kenya;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;5;124;1;64
-114;'404;Kenya;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;602;504;277;999;1247;557
-114;'404;Kenya;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;194;112;69;232;83;293
-114;'404;Kenya;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;539;526;494;568;655;485
-114;'404;Kenya;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1329;1483;903;712;738;1396;758
-114;'404;Kenya;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3379;4043;4256;5301;3465;2699;3579
-114;'404;Kenya;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;151;109;143;157;39;316
-114;'404;Kenya;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0
-114;'404;Kenya;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0
-114;'404;Kenya;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47
-114;'404;Kenya;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31
-114;'404;Kenya;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44158;53419;49588;40576;46168;42129;44582
-114;'404;Kenya;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2338;1561;2119;2095;3526;2851;3821
-114;'404;Kenya;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;1415;987;1006;303
-114;'404;Kenya;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;137;211;655;1307
-114;'404;Kenya;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1318;1126;1928;5525;6899;8531;9561
-114;'404;Kenya;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;3;196;165;138;118;197
-114;'404;Kenya;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56830;68378;63965;64625;81525;92122;84769
-114;'404;Kenya;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49301;55219;55679;50734;46978;60550;61416
-114;'404;Kenya;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;346;620;444;725;607;346
-114;'404;Kenya;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;28;28;4;25;9;3
-114;'404;Kenya;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13393;16639;15899;17826;22239;22974;21728
-114;'404;Kenya;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;554;978;674;716;848;879
-114;'404;Kenya;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7813;11392;6644;3634;3090;3280;5068
-114;'404;Kenya;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1850;2208;3170;3402;3922;6315;7694
-114;'404;Kenya;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17233;19810;20956;22954;28685;35387;31170
-114;'404;Kenya;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28806;33685;32296;30895;24041;27043;27012
-114;'404;Kenya;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17994;20191;19846;19767;26786;29874;26457
-114;'404;Kenya;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18255;18744;19207;15759;18274;26335;25828
-83;'296;Kiribati;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3653;3590;3616;3172;7160;5425;4675
-83;'296;Kiribati;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-83;'296;Kiribati;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;382;392;769;769;769;769;698;698;698;698;698;698;698;698;698;698;698;698;837;1137;1843;1264;1768;3583;1821;2632;2435;2394;2351;4668;4022;3216
-83;'296;Kiribati;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1861;Roundwood;5516;Production;m3;818;849;880;913;947;982;1018;1056;1095;1136;1176;1167;1138;1055;1068;1189;1235;1284;1361;1635;1693;1693;1771;1777;1853;1880;1928;1915;1963;2032;2062;2085;2123;2056;2084;2144;2155;2204;2242;2402;2449;2497;2545;2595;2646;2701;2758;2816;2876;2937;2986;3036;3087;3140;3193;3239;3286;3334;3383;3432;3483;3534;3586
-83;'296;Kiribati;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;127;521;711;592;790;181;228;2440;183;186
-83;'296;Kiribati;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;110;75;12;35;38;171;162;276;320;163;77;671;196;186
-83;'296;Kiribati;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;690;168;221;2433;77;78
-83;'296;Kiribati;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;303;161;70;664;90;90
-83;'296;Kiribati;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-83;'296;Kiribati;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-83;'296;Kiribati;1863;Roundwood, non-coniferous;5516;Production;m3;818;849;880;913;947;982;1018;1056;1095;1136;1176;1167;1138;1055;1068;1189;1235;1284;1361;1635;1693;1693;1771;1777;1853;1880;1928;1915;1963;2032;2062;2085;2123;2056;2084;2144;2155;2204;2242;2402;2449;2497;2545;2595;2646;2701;2758;2816;2876;2937;2986;3036;3087;3140;3193;3239;3286;3334;3383;3432;3483;3534;3586
-83;'296;Kiribati;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;100;13;7;7;106;108
-83;'296;Kiribati;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;17;2;7;7;106;96
-83;'296;Kiribati;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-83;'296;Kiribati;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-83;'296;Kiribati;1864;Wood fuel;5516;Production;m3;818;849;880;913;947;982;1018;1056;1095;1136;1176;1167;1138;1055;1068;1189;1235;1284;1361;1635;1693;1693;1771;1777;1853;1880;1928;1915;1963;2032;2062;2085;2123;2056;2084;2144;2155;2204;2242;2402;2449;2497;2545;2595;2646;2701;2758;2816;2876;2937;2986;3036;3087;3140;3193;3239;3286;3334;3383;3432;3483;3534;3586
-83;'296;Kiribati;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;;;;;;;
-83;'296;Kiribati;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;;;;;;;
-83;'296;Kiribati;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1628;Wood fuel, non-coniferous;5516;Production;m3;818;849;880;913;947;982;1018;1056;1095;1136;1176;1167;1138;1055;1068;1189;1235;1284;1361;1635;1693;1693;1771;1777;1853;1880;1928;1915;1963;2032;2062;2085;2123;2056;2084;2144;2155;2204;2242;2402;2449;2497;2545;2595;2646;2701;2758;2816;2876;2937;2986;3036;3087;3140;3193;3239;3286;3334;3383;3432;3483;3534;3586
-83;'296;Kiribati;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;121;;;;;;;
-83;'296;Kiribati;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;;;;;;;
-83;'296;Kiribati;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;400;590;592;790;181;228;2440;183;186
-83;'296;Kiribati;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;104;69;6;29;32;165;156;276;320;163;77;671;196;186
-83;'296;Kiribati;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;110;572;690;168;221;2433;77;78
-83;'296;Kiribati;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;102;67;4;27;30;46;44;265;303;161;70;664;90;90
-83;'296;Kiribati;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;110;572;690;168;221;2433;77;78
-83;'296;Kiribati;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;102;67;4;27;30;46;44;265;303;161;70;664;90;90
-83;'296;Kiribati;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;330;480;20;100;13;7;7;106;108
-83;'296;Kiribati;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;119;112;11;17;2;7;7;106;96
-83;'296;Kiribati;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;330;480;20;100;0;0;0;0;103
-83;'296;Kiribati;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;119;112;11;17;0;0;0;0;91
-83;'296;Kiribati;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;7;7;106;5
-83;'296;Kiribati;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;7;7;106;5
-83;'296;Kiribati;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1630;Wood charcoal;5510;Production;t;74;77;81;84;88;92;97;101;106;111;117;115;113;104;106;120;127;130;141;174;183;182;191;191;202;207;211;211;216;226;231;233;239;243;248;255;255;262;267;273;279;285;291;298;305;313;321;329;338;347;354;362;369;377;385;393;400;408;416;424;432;440;448
-83;'296;Kiribati;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1155;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;2195;967;1400;2360;1163;2520;2160;1593;7703;4303;8787;6903;7886;24415;19979
-83;'296;Kiribati;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;294;639;639;639;639;639;639;639;639;639;639;639;639;639;639;639;639;273;309;643;439;746;916;471;1786;1696;1628;1541;2767;3175;2343
-83;'296;Kiribati;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;991;1080;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;2058;830;1263;1200;1026;1320;1670;285;2997;3980;7647;6663;7706;24225;19859
-83;'296;Kiribati;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;265;585;585;585;585;585;585;585;585;585;585;585;585;585;585;585;585;135;207;448;292;486;453;175;1142;1349;1429;1497;2320;2982;2116
-83;'296;Kiribati;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;137;137;137;137;137;137;137;137;137;137;137;137;137;137;137;137;137;137;1160;137;1200;490;1308;4706;323;1140;240;180;190;120
-83;'296;Kiribati;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;138;102;195;147;260;463;296;644;347;199;44;447;193;227
-83;'296;Kiribati;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;103;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;80;200;240;200;210;259;109;5;1;0;0;0;0;12
-83;'296;Kiribati;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;28;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;189;470;516;445;143;2058;533;4;1;0;28;79;18;17
-83;'296;Kiribati;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;72;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;2129;54;1200;788;833;797;462;2757;2888;3581;67;1067
-83;'296;Kiribati;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;37;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;263;281;670;343;839;436;653;564;416;422;312;702;302;487
-83;'296;Kiribati;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;72;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;2129;54;1200;788;833;797;462;2701;2886;3550;46;1066
-83;'296;Kiribati;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;37;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;263;281;670;343;839;436;653;564;416;383;299;678;284;486
-83;'296;Kiribati;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-83;'296;Kiribati;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27
-83;'296;Kiribati;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54
-83;'296;Kiribati;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;2;31;21;1
-83;'296;Kiribati;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;39;13;24;18;1
-83;'296;Kiribati;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;40;48;48;48;48;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;76;390;131;73;85
-83;'296;Kiribati;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;33;73;73;73;73;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;181;393;449;331;183
-83;'296;Kiribati;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;27;47;47;47;47;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;72;129;120;68;59
-83;'296;Kiribati;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;21;72;72;72;72;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;173;149;352;310;106
-83;'296;Kiribati;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4
-83;'296;Kiribati;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-83;'296;Kiribati;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;43;43;43;43;;;;;;;;;;;;;;;;;;;;;;68;125;116;64;55
-83;'296;Kiribati;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;70;70;70;70;;;;;;;;;;;;;;;;;;;;;;171;147;350;308;104
-83;'296;Kiribati;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;47;4;24;1
-83;'296;Kiribati;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;26;14;220;20
-83;'296;Kiribati;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;66;93;25;42
-83;'296;Kiribati;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;97;268;35;66
-83;'296;Kiribati;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;12;19;15;12
-83;'296;Kiribati;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;24;68;53;18
-83;'296;Kiribati;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;13;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;4;261;11;5;26
-83;'296;Kiribati;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;12;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;8;244;97;21;77
-83;'296;Kiribati;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;9;4;5
-83;'296;Kiribati;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;30;85;20;12
-83;'296;Kiribati;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;253;2;1;21
-83;'296;Kiribati;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;214;12;1;65
-83;'296;Kiribati;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0
-83;'296;Kiribati;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0
-83;'296;Kiribati;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;253;0;0;0
-83;'296;Kiribati;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;212;3;0;0
-83;'296;Kiribati;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;1;21
-83;'296;Kiribati;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;1;65
-83;'296;Kiribati;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;277;110;272;1185;404;728
-83;'296;Kiribati;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-83;'296;Kiribati;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;2;31;291;168;165
-83;'296;Kiribati;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;6;3
-83;'296;Kiribati;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;2;31;162;162;162
-83;'296;Kiribati;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;6;0;7;3;7
-83;'296;Kiribati;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;13;3;4;4;3
-83;'296;Kiribati;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;32;106;559;49;43
-83;'296;Kiribati;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24
-83;'296;Kiribati;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3
-83;'296;Kiribati;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;258;46;99;234;163;407
-83;'296;Kiribati;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-83;'296;Kiribati;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;60;16;16
-83;'296;Kiribati;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;11;11;33;30;1;87
-83;'296;Kiribati;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;878;1112;549;1307;999;731
-83;'296;Kiribati;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;13;29;1;14;18;1
-83;'296;Kiribati;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;122;539;212;317;504;196
-83;'296;Kiribati;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;188;65;96;110;60;39
-83;'296;Kiribati;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-83;'296;Kiribati;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499;555;479;240;866;417;495
-83;'296;Kiribati;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;889918;937184;856555;717018;971038;976150;862116
-118;'414;Kuwait;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125242;146826;139077;110831;151502;159158;109911
-118;'414;Kuwait;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;9000;9720;11996;14543;9973;13131;10936;11685;13544;27073;46028;40483;61679;76134;71403;77861;157582;186086;185647;114076;118311;101360;107767;135896;112013;116685;60017;60227;102507;83861;101130;78076;93426;92703;94028;97708;98642;108056;109923;113909;155994;159171;163253;222244;267334;169746;228960;285483;281765;310170;404527;340331;302609;392000;416290;355375;295325;396998;442904;360236
-118;'414;Kuwait;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;145;180;225;375;762;899;953;1101;2593;3117;7714;13413;15493;11829;22634;28300;28704;37095;23446;20476;20377;7191;6634;6758;19081;675;675;895;912;27;1821;392;392;392;13;13;12751;12751;12751;13662;13662;13662;16317;11506;13165;21893;31235;33172;48396;55954;52240;43784;33615;39403;46603;36588;56086;62828;46277
-118;'414;Kuwait;1861;Roundwood;5516;Production;m3;1491;1639;1802;1180;1677;3893;3030;6091;5878;8194;8264;7744;8538;9705;10451;10862;8112;9039;13619;12196;13584;14591;14010;14643;15749;16608;17583;19248;19069;21129;23949;16646;14059;6244;5551;5439;5807;6717;14155;14896;15264;15640;16026;16421;16826;17131;17441;17757;18079;18406;18679;18955;19236;19250;19809;20019;20232;20447;20664;20883;21104;21327;21552
-118;'414;Kuwait;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4028;2117;3733;6212;27738;7285;8822;8822;8822;2300;2300;2500;2500;2500;7244;7244;7244;7244;1032;612;788;1715;2220;4713;4548;14420;7523;6642;4454;13081;1506;6766;5578;7210
-118;'414;Kuwait;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;411;534;499;2440;1245;1640;1640;1640;403;403;531;531;531;474;474;474;474;624;214;328;580;351;1426;3203;4638;1679;2170;1417;2915;567;1781;1181;1509
-118;'414;Kuwait;1861;Roundwood;5916;Export quantity;m3;;;;;;1900;800;3600;3100;4700;4700;3700;4100;4800;4800;4800;1400;1800;6000;3200;3200;3000;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;139;583;363;112;1826;316;87;772;335;130;0;2;21;5;81
-118;'414;Kuwait;1861;Roundwood;5922;Export value;1000 USD;;;;;;20;10;40;42;53;45;43;62;81;81;81;39;63;180;118;118;260;121;121;121;121;121;121;121;121;121;121;121;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;16;521;139;351;538;151;33;91;57;35;0;1;0;1;16
-118;'414;Kuwait;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3441;1010;4339;300;4825;3515;485
-118;'414;Kuwait;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887;273;1119;252;1365;786;96
-118;'414;Kuwait;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;10;0;0;0;0;0
-118;'414;Kuwait;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;1;0;0;0;0;0
-118;'414;Kuwait;1863;Roundwood, non-coniferous;5516;Production;m3;1491;1639;1802;1180;1677;3893;3030;6091;5878;8194;8264;7744;8538;9705;10451;10862;8112;9039;13619;12196;13584;14591;14010;14643;15749;16608;17583;19248;19069;21129;23949;16646;14059;6244;5551;5439;5807;6717;14155;14896;15264;15640;16026;16421;16826;17131;17441;17757;18079;18406;18679;18955;19236;19250;19809;20019;20232;20447;20664;20883;21104;21327;21552
-118;'414;Kuwait;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3201;3444;8742;1206;1941;2063;6725
-118;'414;Kuwait;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1283;1144;1796;315;416;395;1413
-118;'414;Kuwait;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;120;0;2;21;5;81
-118;'414;Kuwait;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;34;0;1;0;1;16
-118;'414;Kuwait;1864;Wood fuel;5516;Production;m3;1491;1639;1802;1180;1677;3893;3030;6091;5878;8194;8264;7744;8538;9705;10451;10862;8112;9039;13619;12196;13584;14591;14010;14643;15749;16608;17583;19248;19069;21129;23949;16646;14059;6244;5551;5439;5807;6717;14155;14896;15264;15640;16026;16421;16826;17131;17441;17757;18079;18406;18679;18955;19236;19250;19809;20019;20232;20447;20664;20883;21104;21327;21552
-118;'414;Kuwait;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440;24;6733;6733;6733;6733;6733;0;0;0;0;0;0;0;0;0;259;259;103;86;68;210;803;370;894;425;919;1253;1142;3749;5064;6419
-118;'414;Kuwait;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;1;1153;1153;1153;1153;1153;0;0;0;0;0;0;0;0;0;39;39;109;117;55;69;367;264;359;143;240;226;257;853;991;1267
-118;'414;Kuwait;1864;Wood fuel;5916;Export quantity;m3;;;;;;1900;800;3600;3100;4700;4700;3700;4100;4800;4800;4800;1400;1800;6000;3200;3200;3000;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;232;7;22;10;0;0;0;21;5;51
-118;'414;Kuwait;1864;Wood fuel;5922;Export value;1000 USD;;;;;;20;10;40;42;53;45;43;62;81;81;81;39;63;180;118;118;260;121;121;121;121;121;121;121;121;121;121;121;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;87;8;33;4;0;0;0;0;1;8
-118;'414;Kuwait;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;785;511;289;1853;3007;384
-118;'414;Kuwait;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;214;78;44;465;607;61
-118;'414;Kuwait;1628;Wood fuel, non-coniferous;5516;Production;m3;1491;1639;1802;1180;1677;3893;3030;6091;5878;8194;8264;7744;8538;9705;10451;10862;8112;9039;13619;12196;13584;14591;14010;14643;15749;16608;17583;19248;19069;21129;23949;16646;14059;6244;5551;5439;5807;6717;14155;14896;15264;15640;16026;16421;16826;17131;17441;17757;18079;18406;18679;18955;19236;19250;19809;20019;20232;20447;20664;20883;21104;21327;21552
-118;'414;Kuwait;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;134;742;853;1896;2057;6035
-118;'414;Kuwait;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;26;148;213;388;384;1206
-118;'414;Kuwait;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;21;5;51
-118;'414;Kuwait;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;1;8
-118;'414;Kuwait;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440;24;6733;6733;6733;6733;6733;0;0;0;0;0;0;0;0;0;259;259;103;86;68;210;803;370;894;;;;;;;
-118;'414;Kuwait;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;1;1153;1153;1153;1153;1153;0;0;0;0;0;0;0;0;0;39;39;109;117;55;69;367;264;359;;;;;;;
-118;'414;Kuwait;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;1900;800;3600;3100;4700;4700;3700;4100;4800;4800;4800;1400;1800;6000;3200;3200;3000;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;232;7;22;;;;;;;
-118;'414;Kuwait;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;20;10;40;42;53;45;43;62;81;81;81;39;63;180;118;118;260;121;121;121;121;121;121;121;121;121;121;121;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;87;8;33;;;;;;;
-118;'414;Kuwait;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4028;2117;3293;6188;21005;552;2089;2089;2089;2300;2300;2500;2500;2500;7244;7244;7244;7244;773;353;685;1629;2152;4503;3745;14050;6629;6217;3535;11828;364;3017;514;791
-118;'414;Kuwait;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;411;513;498;1287;92;487;487;487;403;403;531;531;531;474;474;474;474;585;175;219;463;296;1357;2836;4374;1320;2027;1177;2689;310;928;190;242
-118;'414;Kuwait;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;134;578;358;107;1821;84;80;750;325;130;0;2;0;0;30
-118;'414;Kuwait;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;520;138;350;537;64;25;58;53;35;0;1;0;0;8
-118;'414;Kuwait;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3995;2084;2084;4979;20638;89;89;89;89;300;300;300;300;300;2185;2185;2185;2185;283;283;346;1071;2087;2015;447;1630;1209;3057;225;3828;11;2972;508;101
-118;'414;Kuwait;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;405;405;390;1255;11;11;11;11;32;32;32;32;32;133;133;133;133;17;17;30;89;262;299;133;313;209;760;59;1041;208;900;179;35
-118;'414;Kuwait;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;123;527;0;0;1714;20;60;0;265;10;0;0;0;0;0
-118;'414;Kuwait;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;26;0;0;187;2;13;0;42;1;0;0;0;0;0
-118;'414;Kuwait;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3995;2084;2084;4979;20638;89;89;89;89;300;300;300;300;300;2185;2185;2185;2185;283;283;346;1071;2087;2015;447;1630;1209;3057;225;3828;11;2972;508;101
-118;'414;Kuwait;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;405;405;390;1255;11;11;11;11;32;32;32;32;32;133;133;133;133;17;17;30;89;262;299;133;313;209;760;59;1041;208;900;179;35
-118;'414;Kuwait;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;123;527;0;0;1714;20;60;0;265;10;0;0;0;0;0
-118;'414;Kuwait;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;26;0;0;187;2;13;0;42;1;0;0;0;0;0
-118;'414;Kuwait;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;1209;1209;367;463;2000;2000;2000;2000;2000;2200;2200;2200;5059;5059;5059;5059;490;70;339;558;65;2488;3298;12420;5420;3160;3310;8000;353;45;6;690
-118;'414;Kuwait;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;108;108;32;81;476;476;476;371;371;499;499;499;341;341;341;341;568;158;189;374;34;1058;2703;4061;1111;1267;1118;1648;102;28;11;207
-118;'414;Kuwait;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;51;358;107;107;64;20;750;60;120;0;2;0;0;30
-118;'414;Kuwait;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;494;138;350;350;62;12;58;11;34;0;1;0;0;8
-118;'414;Kuwait;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1198;1198;344;260;1300;1300;1300;0;0;200;200;200;72;72;72;72;8;8;8;8;8;10;527;12420;3659;1862;2806;4309;0;39;0;80
-118;'414;Kuwait;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;30;53;326;326;326;0;0;128;128;128;12;12;12;12;7;7;7;7;7;154;678;4061;683;997;836;1117;0;17;0;23
-118;'414;Kuwait;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;64;101;101;52;20;512;60;20;0;0;0;0;0
-118;'414;Kuwait;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;44;71;71;19;12;24;11;5;0;0;0;0;0
-118;'414;Kuwait;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;11;11;23;203;700;700;700;2000;2000;2000;2000;2000;4987;4987;4987;4987;482;62;331;550;57;2478;2771;0;1761;1298;504;3691;353;6;6;610
-118;'414;Kuwait;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;1;1;2;28;150;150;150;371;371;371;371;371;329;329;329;329;561;151;182;367;27;904;2025;0;428;270;282;531;102;11;11;184
-118;'414;Kuwait;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;22;294;6;6;12;0;238;0;100;0;2;0;0;30
-118;'414;Kuwait;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;472;94;279;279;43;0;34;0;29;0;1;0;0;8
-118;'414;Kuwait;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1630;Wood charcoal;5510;Production;t;199;220;244;0;0;0;0;0;0;0;0;0;0;0;0;0;283;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2261;2317;2375;2433;2494;2556;2602;2649;2697;2746;2796;2837;2879;2922;2965;3008;3040;3072;3105;3138;3171;3204;3237;3271
-118;'414;Kuwait;1630;Wood charcoal;5610;Import quantity;t;;;;13400;23100;12700;9000;17300;28200;20900;19400;9100;36900;14000;14000;14000;3700;3700;4800;6500;6500;6500;4200;10000;10000;10000;10000;10000;10000;10000;10000;11757;4942;3217;9665;5700;5700;5700;6800;6800;7500;7500;7500;3;3;3;3;3293;3780;45682;47226;47226;37005;55775;31608;43198;43041;52493;42483;34983;36146;26720;25218
-118;'414;Kuwait;1630;Wood charcoal;5622;Import value;1000 USD;;;;673;1272;706;657;952;1912;1240;717;673;2930;1571;1571;1571;746;698;1396;1772;1772;1841;1290;2557;2557;2557;2557;2557;2557;2557;2557;4299;977;814;2366;1596;1596;1596;1272;1272;1090;1090;1090;1576;1576;1576;1576;3035;2625;14418;17578;17578;14877;23794;14363;19222;22035;20971;20331;17376;19714;20351;19817
-118;'414;Kuwait;1630;Wood charcoal;5910;Export quantity;t;;;;;2200;2200;2200;3400;3300;4200;2600;4000;3400;2000;2000;2000;3000;2600;1000;2100;2100;1500;1600;700;700;700;700;700;700;700;700;43;43;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;68;101;99;277;277;7095;1399;1017;960;677;1269;276;248;169;33
-118;'414;Kuwait;1630;Wood charcoal;5922;Export value;1000 USD;;;;;120;120;110;173;176;286;133;274;281;287;287;287;717;621;359;899;899;538;460;266;266;266;266;266;266;266;266;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;26;54;23;63;63;1311;295;211;258;243;520;140;122;118;24
-118;'414;Kuwait;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002;300;300;900;900;900;587;587;587;587;273;88;171;834;743;262;953;1097;1453;3143;1862;431;430;1451;12249;2962
-118;'414;Kuwait;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;10;10;34;34;34;26;26;26;26;116;47;38;219;86;149;544;673;611;1100;1015;187;145;527;688;256
-118;'414;Kuwait;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;57;14;62;117;124;120;35;1368;143;143
-118;'414;Kuwait;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;16;21;59;34;43;30;3;147;10;10
-118;'414;Kuwait;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;200;200;201;201;201;201;123;25;88;618;630;12;104;195;344;313;238;198;144;1243;4091;1892
-118;'414;Kuwait;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;17;17;17;11;11;11;11;57;13;23;145;30;11;124;108;271;182;92;107;70;427;344;163
-118;'414;Kuwait;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;2;61;72;72;72;0;0;0;0
-118;'414;Kuwait;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;15;53;28;28;28;0;0;0;0
-118;'414;Kuwait;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;697;1002;1002;1002;1002;1002;300;300;700;700;700;386;386;386;386;150;63;83;216;113;250;849;902;1109;2830;1624;233;286;208;8158;1070
-118;'414;Kuwait;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;25;111;111;111;111;111;10;10;17;17;17;15;15;15;15;59;34;15;74;56;138;420;565;340;918;923;80;75;100;344;93
-118;'414;Kuwait;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;37;12;1;45;52;48;35;1368;143;143
-118;'414;Kuwait;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;6;6;6;6;15;2;3;147;10;10
-118;'414;Kuwait;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;136;114;66;66;66;2860;4254;2626;1425;2694
-118;'414;Kuwait;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;53;76;68;68;68;1002;1153;919;462;821
-118;'414;Kuwait;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;136;114;66;66;66;125;119;266;320;211
-118;'414;Kuwait;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;53;76;68;68;68;66;86;150;100;60
-118;'414;Kuwait;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2735;4135;2360;1105;2483
-118;'414;Kuwait;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;1067;769;362;761
-118;'414;Kuwait;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1872;Sawnwood;5616;Import quantity;m3;;;;63900;65800;99600;163500;84100;113600;57200;88700;89000;67400;102700;83200;249800;241200;219500;262300;229100;200000;297500;187700;187700;100000;6502;48256;78523;29051;15743;15743;45965;53955;44308;42432;55700;55700;55700;65800;71100;72500;81280;111100;153117;162017;181317;240500;225131;149800;205403;176782;196273;201681;250235;262273;191886;158992;215213;155431;120752;160190;134004;118047
-118;'414;Kuwait;1872;Sawnwood;5622;Import value;1000 USD;;;;3974;3248;5619;8335;4640;6269;4156;5944;5950;7092;16960;12215;36962;42252;39122;41282;50291;44000;60079;32313;32313;17000;982;8269;11423;4793;2796;2796;9210;8211;9281;12150;14311;14311;14311;14062;14996;13232;15099;19085;25771;27967;33030;52497;61146;35130;48100;44888;53315;56874;68209;60921;42567;42762;55875;38982;30563;61831;49646;34471
-118;'414;Kuwait;1872;Sawnwood;5916;Export quantity;m3;;;;;400;400;1000;800;5100;5200;5200;5200;7300;4300;29500;45500;43400;26500;71000;57400;57400;60000;39000;39000;39000;0;0;0;0;0;0;0;14;3;3;0;0;0;0;0;0;0;0;4;4;4;4;4;2;2;11;79;79;2708;18;294;760;172;100;1026;1;2;48
-118;'414;Kuwait;1872;Sawnwood;5922;Export value;1000 USD;;;;;25;25;77;67;316;358;358;358;975;754;5382;10581;9258;5612;16207;14130;14130;16529;9487;9487;9487;0;0;0;0;0;0;0;17;3;3;0;0;0;0;0;0;0;0;1;1;1;1;1;4;1;14;50;185;352;5;80;128;38;41;316;19;16;16
-118;'414;Kuwait;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;63900;65800;99600;163500;84100;113600;57200;88700;89000;67400;102700;83200;249800;241200;219500;262300;229100;200000;297500;187700;187700;100000;6502;48256;78523;29051;15743;15743;32164;52357;38975;26654;28700;28700;28700;39800;45100;58900;67680;97500;127900;136800;156100;196800;208000;128000;178003;155527;169599;172035;210742;234807;175759;136217;198490;134165;104459;133199;122420;109956
-118;'414;Kuwait;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;3974;3248;5619;8335;4640;6269;4156;5944;5950;7092;16960;12215;36962;42252;39122;41282;50291;44000;60079;32313;32313;17000;982;8269;11423;4793;2796;2796;4927;7317;6279;3793;4451;4451;4451;4664;5598;6168;8035;12021;18080;20276;25339;38949;46759;24669;33909;34029;39168;40791;51495;47994;33932;31179;45357;27504;21949;44351;40874;28803
-118;'414;Kuwait;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;400;400;1000;800;5100;5200;5200;5200;7300;4300;29500;45500;43400;26500;71000;57400;57400;60000;39000;39000;39000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;76;76;2320;0;271;0;160;1;1026;0;0;46
-118;'414;Kuwait;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;25;25;77;67;316;358;358;358;975;754;5382;10581;9258;5612;16207;14130;14130;16529;9487;9487;9487;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;125;336;0;68;0;33;0;265;0;15;15
-118;'414;Kuwait;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13801;1598;5333;15778;27000;27000;27000;26000;26000;13600;13600;13600;25217;25217;25217;43700;17131;21800;27400;21255;26674;29646;39493;27466;16127;22775;16723;21266;16293;26991;11584;8091
-118;'414;Kuwait;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4283;894;3002;8357;9860;9860;9860;9398;9398;7064;7064;7064;7691;7691;7691;13548;14387;10461;14191;10859;14147;16083;16714;12927;8635;11583;10518;11478;8614;17480;8772;5668
-118;'414;Kuwait;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;3;3;0;0;0;0;0;0;0;0;4;4;4;4;4;2;2;11;3;3;388;18;23;760;12;99;0;1;2;2
-118;'414;Kuwait;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;3;3;0;0;0;0;0;0;0;0;1;1;1;1;1;4;1;14;3;60;16;5;12;128;5;41;51;19;1;1
-118;'414;Kuwait;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1634;Veneer sheets;5616;Import quantity;m3;;;;;;100;200;200;100;100;100;100;100;100;100;100;100;100;100;300;300;100;100;100;100;100;100;100;100;100;100;107;43;103;312;1500;1500;1500;600;600;600;600;600;757;757;757;757;426;127;2659;3537;2947;700;434;919;684;843;998;212;29;99;35;121
-118;'414;Kuwait;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;74;72;64;67;41;41;49;66;82;82;82;113;113;113;332;332;181;181;181;181;181;181;181;181;181;181;306;56;240;177;779;779;779;251;251;251;251;251;590;590;590;590;1159;683;1637;2529;2357;1069;1153;1197;1423;1371;1288;776;499;1052;699;370
-118;'414;Kuwait;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;32;32;1;0;65;65;0;75;35;30;1;0;0;6;0;5
-118;'414;Kuwait;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;38;38;3;0;65;2;0;73;75;29;4;1;0;75;9;9
-118;'414;Kuwait;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1873;Wood-based panels;5616;Import quantity;m3;;;;5700;9300;11964;14017;16117;21265;21717;16138;25101;48307;33748;33748;33100;14700;14700;14700;104300;171300;164100;117500;125600;125600;139978;160916;126115;84927;62458;62458;81036;67705;79341;68571;80500;80500;80500;75800;75800;93800;93800;93800;153431;159584;153431;233847;75120;65506;132382;150574;195413;185130;189031;193188;245679;256333;226785;222928;184140;374799;225632;218954
-118;'414;Kuwait;1873;Wood-based panels;5622;Import value;1000 USD;;;;1206;1291;1677;2274;2867;2876;3255;2199;3883;11353;9407;9407;9705;5833;5833;5833;53602;89075;72200;45354;45440;45440;43488;56086;47894;35924;21865;21865;36606;29542;33407;27737;35950;35950;35950;26366;26366;30432;30432;30432;34829;35810;34829;60895;53387;44326;58458;68193;87053;82756;100556;103020;85307;103209;107394;89595;84396;146318;122611;120711
-118;'414;Kuwait;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;100;505;1816;1205;905;905;3505;2105;2105;2400;9000;9000;9000;7500;7500;10400;10300;6600;6600;230;0;0;17201;35;35;427;427;10;2;0;0;0;0;0;0;0;0;29;29;29;29;272;180;180;151;39;4745;2257;1907;3134;1232;6247;4183;698;1371;1488;259
-118;'414;Kuwait;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;8;75;206;145;135;133;834;628;628;740;2912;2912;2912;4901;4901;10461;6234;3611;3611;36;0;0;9370;11;11;200;200;4;1;0;0;0;0;0;0;0;0;5;5;5;5;209;107;85;43;18;1192;1046;834;1492;673;769;436;268;406;659;163
-118;'414;Kuwait;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-118;'414;Kuwait;1640;Plywood and LVL;5616;Import quantity;m3;;;;5000;5000;7800;10000;10700;14700;19000;13000;22700;43800;28600;28600;28600;8600;8600;8600;97000;164000;152300;103900;117700;117700;138380;159653;124515;82409;59073;59073;77092;60509;73595;59503;68300;68300;68300;57000;57000;57000;57000;57000;43511;43511;43511;108600;32794;21311;89390;96285;132329;132342;121422;115818;148638;161531;137030;101816;76556;154717;112004;99057
-118;'414;Kuwait;1640;Plywood and LVL;5622;Import value;1000 USD;;;;822;809;1160;1776;2156;2204;2961;1887;3554;10655;8075;8075;8075;2711;2711;2711;48827;84300;64905;38829;41382;41382;43099;55752;47372;35071;20672;20672;35279;26625;31077;25143;32869;32869;32869;21635;21635;21635;21635;21635;15446;15446;15446;39091;31459;22760;34681;40470;52174;54159;64404;62780;53223;58208;62169;44810;31620;61012;53363;47887
-118;'414;Kuwait;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;100;400;1500;1100;800;800;3400;2000;2000;2000;8500;8500;8500;6900;6900;9600;9000;6000;6000;230;0;0;17201;0;0;392;392;2;2;0;0;0;0;0;0;0;0;0;0;0;0;71;29;29;29;26;4732;2233;1827;3060;993;5796;3898;240;360;0;0
-118;'414;Kuwait;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;8;60;176;132;115;121;822;610;610;610;2593;2593;2593;4291;4291;9692;5414;3230;3230;36;0;0;9370;0;0;189;189;1;1;0;0;0;0;0;0;0;0;0;0;0;0;18;22;0;1;16;1190;1011;753;1435;556;606;241;133;138;15;0
-118;'414;Kuwait;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400
-118;'414;Kuwait;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325
-118;'414;Kuwait;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;900;1700;1100;1300;400;400;400;400;2200;2200;2200;2200;2200;2200;5100;5100;9600;10800;5500;5500;1521;798;752;615;1990;1990;807;641;423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;116;230;165;157;75;75;75;75;671;671;671;671;671;671;2260;2260;6104;5002;2595;2595;360;185;281;193;611;611;314;344;281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;300;300;500;1200;500;500;0;0;0;0;35;35;35;35;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;237;237;396;696;310;310;0;0;0;0;11;11;11;11;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745;1000;1000;1000;800;800;2400;2400;2400;6258;6258;6258;10900;2504;1470;1438;1184;1;46;498;1042;154;3710;3710;6660;6314;12689;20896;33329
-118;'414;Kuwait;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;546;546;546;146;146;440;440;440;1026;1026;1026;1738;1852;1120;936;942;41;37;566;1489;104;3564;3564;5203;5049;8016;10756;16824
-118;'414;Kuwait;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;25;0;0;0;8;8;21;7;49;183;183;21;4;4;43;79
-118;'414;Kuwait;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;77;0;0;0;1;1;30;15;29;53;53;35;1;1;17;32
-118;'414;Kuwait;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;27;27;26;403;636;200;368;110;35;248;1956;2114;5098;3779;551
-118;'414;Kuwait;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;27;27;4;135;220;85;157;55;28;196;2401;15248;3203;1486;175
-118;'414;Kuwait;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;0;0;0;0;113;5;4;3;1
-118;'414;Kuwait;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;65;12;9;1;0
-118;'414;Kuwait;1874;Fibreboard;5616;Import quantity;m3;;;;700;4300;3264;2317;4317;5265;2317;2738;2001;4107;2948;2948;2300;3900;3900;3900;2200;2200;2200;2800;2400;2400;77;465;848;1903;1395;1395;3137;6555;5323;8323;11200;11200;11200;18000;18000;34400;34400;34400;103662;109815;103662;114347;39770;42698;41527;53079;62680;52106;66911;75960;96777;91057;85797;112496;99156;202295;88953;86017
-118;'414;Kuwait;1874;Fibreboard;5622;Import value;1000 USD;;;;384;482;401;268;546;515;219;237;254;623;661;661;959;2451;2451;2451;2515;2515;1191;1523;1463;1463;29;149;241;660;582;582;1013;2573;2049;2187;2535;2535;2535;4585;4585;8357;8357;8357;18357;19338;18357;20066;20050;20419;22814;26777;34703;28340;35501;38594;31925;41409;41465;37181;32479;74087;57006;55825
-118;'414;Kuwait;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;105;316;105;105;105;105;105;105;400;500;500;500;300;300;300;100;100;100;0;0;0;0;0;0;0;0;8;;;;;;;;;;29;29;29;29;151;151;151;122;5;5;3;73;25;56;268;151;449;1003;1442;179
-118;'414;Kuwait;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;15;30;13;20;12;12;18;18;130;319;319;319;373;373;373;124;71;71;0;0;0;0;0;0;0;0;3;;;;;;;;;;5;5;5;5;85;85;85;42;1;1;5;66;28;64;110;95;122;258;626;131
-118;'414;Kuwait;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;4500;4500;6349;6349;6349;6900;1270;1073;1518;1398;1408;1496;2295;3089;2357;2547;3472;1596;2673;4841;3879;4507
-118;'414;Kuwait;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;843;843;2946;2946;2946;3251;1631;1158;1582;1660;1639;1727;2205;2492;2185;2370;3040;1577;2145;4017;3147;3865
-118;'414;Kuwait;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;20;14;19;4;38;74;74
-118;'414;Kuwait;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;39;37;25;4;63;58;58
-118;'414;Kuwait;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;6100;6100;6100;10000;10000;15400;15400;15400;69347;75500;69347;69347;33538;20686;17879;17960;40470;32234;52198;56241;85805;77827;71641;86525;73918;179172;75210;72281
-118;'414;Kuwait;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745;1650;1650;1650;3159;3159;4913;4913;4913;11859;12840;11859;11859;15813;9593;9535;9187;21539;16719;26450;27331;27109;32157;31774;29378;24615;65888;50964;49126
-118;'414;Kuwait;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;122;93;2;2;2;67;22;36;254;12;0;84;361;19
-118;'414;Kuwait;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;37;0;0;0;57;15;24;72;18;0;68;220;12
-118;'414;Kuwait;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;1345;1425;1923;5100;5100;5100;8000;8000;14500;14500;14500;27966;27966;27966;38100;4962;20939;22130;33721;20802;18376;12418;16630;8615;10683;10684;24375;22565;18282;9864;9229
-118;'414;Kuwait;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;657;591;442;885;885;885;1426;1426;2601;2601;2601;3552;3552;3552;4956;2606;9668;11697;15930;11525;9894;6846;8771;2631;6882;6651;6226;5719;4182;2895;2834
-118;'414;Kuwait;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;3;3;1;1;0;0;0;120;445;881;1007;86
-118;'414;Kuwait;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;1;1;5;1;1;1;1;52;118;127;348;61
-118;'414;Kuwait;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;700;4300;3264;2317;4317;5265;2317;2738;2001;4107;2948;2948;2300;3900;3900;3900;2200;2200;2200;2800;2400;2400;77;465;848;1903;1395;1395;2943;5210;3898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;384;482;401;268;546;515;219;237;254;623;661;661;959;2451;2451;2451;2515;2515;1191;1523;1463;1463;29;149;241;660;582;582;936;1916;1458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;105;316;105;105;105;105;105;105;400;500;500;500;300;300;300;100;100;100;0;0;0;0;0;0;0;0;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;15;30;13;20;12;12;18;18;130;319;319;319;373;373;373;124;71;71;0;0;0;0;0;0;0;0;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;8000;8000;8000;10000;10000;14000;14000;35000;35000;40000;42000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000
-118;'414;Kuwait;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;374;341;341;133;64;199;5569;76;76;14361;9912;16444;14724;12668;12668;12668;22700;22700;24700;24700;24700;11217;11217;11217;14240;15063;10615;8755;16350;12704;17350;25179;23996;30035;32540;31004;19041;17046;18358;22311;19419
-118;'414;Kuwait;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;45;41;41;16;27;64;1531;10;10;6850;3057;7138;8143;3957;3957;3957;8952;8952;6352;6352;6352;4047;4047;4047;7525;8951;5162;5200;9361;8958;10163;14730;13867;12934;19173;22020;11609;9427;14232;17913;13161
-118;'414;Kuwait;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;3559;4185;4339;4941;5267;6858;7000;2500;4000;4000;5537;3441;4003;6179;1755;1755;4023;4023;151;6178;1700;1700;1700;100;100;800;800;800;15323;15323;15323;50400;12803;42956;68594;95342;120314;114134;157998;148829;124795;127824;127824;93745;42224;44934;47047;55391
-118;'414;Kuwait;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;81;152;206;561;416;820;820;207;373;373;828;606;730;728;266;266;291;291;20;1817;392;392;392;13;13;52;52;52;1517;1517;1517;4172;3507;7795;12839;26331;27879;26170;28262;24857;18876;18797;18797;15445;7074;7624;11870;10026
-118;'414;Kuwait;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11854;9188;15432;13305;9768;9768;9768;18000;18000;14300;14300;14300;9059;9059;9059;12082;12380;9524;8091;15318;12191;16312;21436;20669;25251;25757;24221;18217;16820;18311;21379;18996
-118;'414;Kuwait;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6561;2902;7015;7998;3759;3759;3759;7890;7890;5448;5448;5448;3807;3807;3807;7285;8496;4849;5108;9182;8898;9852;14108;13575;12616;16173;19020;11293;9388;14149;17670;13090
-118;'414;Kuwait;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;670;670;1626;1626;1368;957;957;957;957;957;957;957;957;408;840
-118;'414;Kuwait;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;551;551;1139;1139;830;590;590;590;590;590;590;590;590;275;1256
-118;'414;Kuwait;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11854;9189;15432;13183;9269;9269;9269;18000;18000;14300;14300;14300;8971;8971;8971;11994;12320;9474;8190;15457;12346;16499;21570;20654;25219;25723;24213;18202;16785;18297;21326;18996
-118;'414;Kuwait;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6561;2903;7015;7923;3456;3456;3456;7890;7890;5448;5448;5448;3736;3736;3736;7214;8448;4794;5142;9200;8964;9990;14043;13521;12545;16065;18995;11253;9305;14103;17563;13091
-118;'414;Kuwait;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956;956;1367;1016;958;958;958;958;958;958;958;409;35
-118;'414;Kuwait;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;588;828;694;590;590;590;590;590;590;590;275;21
-118;'414;Kuwait;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;276;70;141;306;228;221
-118;'414;Kuwait;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;173;46;90;278;137;141
-118;'414;Kuwait;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21
-118;'414;Kuwait;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12
-118;'414;Kuwait;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6439;4618;4618;4618;4618;4618;4618;0;0;0;0;0;0;0;0;0;0;0;0;0;7;35;0;0;0;;;;;;;
-118;'414;Kuwait;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3905;1431;1431;1431;1431;1431;1431;0;0;0;0;0;0;0;0;0;0;0;0;0;2;7;0;1;0;;;;;;;
-118;'414;Kuwait;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;0;0;0;;;;;;;
-118;'414;Kuwait;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;0;0;0;;;;;;;
-118;'414;Kuwait;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2173;2173;2173;2173;13;13;13;13;13;13;0;1;0;;;;;;;
-118;'414;Kuwait;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858;858;858;858;153;153;153;153;153;153;0;1;0;;;;;;;
-118;'414;Kuwait;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5415;4570;10813;8564;4650;4650;4650;18000;18000;14300;14300;14300;6798;6798;6798;9821;12307;9461;8058;15239;12121;16246;21365;20652;25218;25710;23936;18131;16644;17991;21098;18775
-118;'414;Kuwait;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2656;1471;5583;6491;2024;2024;2024;7890;7890;5448;5448;5448;2878;2878;2878;6356;8295;4641;4908;8863;8625;9646;13859;13517;12543;16056;18820;11205;9215;13824;17425;12949
-118;'414;Kuwait;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956;956;956;956;956;956;956;956;956;956;956;407;12
-118;'414;Kuwait;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;588;588;588;588;588;588;588;588;588;588;273;7
-118;'414;Kuwait;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;0;0;500;500;500;0;0;1500;1500;1500;41;41;41;493;1399;1399;1616;531;531;1034;1034;2503;2503;2503;2503;52;2503;2503;2503;2503
-118;'414;Kuwait;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;0;0;177;177;177;0;0;428;428;428;14;14;14;348;607;607;785;270;270;680;680;1316;1316;1316;1316;12;1316;1316;1316;1316
-118;'414;Kuwait;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4997;3264;6317;8514;4100;4100;4100;18000;18000;11800;11800;11800;6529;6529;6529;9100;10740;8025;6435;13882;11583;15207;20323;18141;22702;23194;21423;18056;14124;15458;18551;16200
-118;'414;Kuwait;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2469;1127;3877;6450;1806;1806;1806;7890;7890;4759;4759;4759;2756;2756;2756;5900;7365;3965;4104;8069;8341;8957;13166;12187;11205;14717;17483;11160;7867;12440;16034;11504
-118;'414;Kuwait;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956;956;956;956;956;956;956;956;956;956;956;407;12
-118;'414;Kuwait;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588;588;588;588;588;588;588;588;588;588;588;273;7
-118;'414;Kuwait;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;23;17;30;44;72
-118;'414;Kuwait;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;21;33;32;68;75;129
-118;'414;Kuwait;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;1006;4496;50;50;50;50;0;0;1000;1000;1000;228;228;228;228;168;37;7;826;7;5;8;8;13;;;;;;;
-118;'414;Kuwait;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;238;1706;41;41;41;41;0;0;261;261;261;108;108;108;108;323;69;19;524;14;9;13;14;22;;;;;;;
-118;'414;Kuwait;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;119;205;205;205;205;1;1;1;1;1;0;0;0;0
-118;'414;Kuwait;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;81;184;184;184;184;2;2;2;2;2;0;1;1;1
-118;'414;Kuwait;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;2;2;2;2;2;2;2;2;2
-118;'414;Kuwait;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;2;2;2;2;2;2;2;2;2
-118;'414;Kuwait;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;123;500;500;500;0;0;0;0;0;88;88;88;88;60;50;20;66;50;18;71;16;33;35;9;16;35;14;53;0
-118;'414;Kuwait;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;76;304;304;304;0;0;0;0;0;71;71;71;71;48;55;47;166;118;46;249;56;73;110;27;42;83;47;108;0
-118;'414;Kuwait;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;670;670;670;670;1;1;1;1;1;1;1;1;1;1;807
-118;'414;Kuwait;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;551;551;551;551;2;2;2;2;2;2;2;2;2;2;1237
-118;'414;Kuwait;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683;347;347;2;24;24;24;2;5;22;2;5;0;1;1;16
-118;'414;Kuwait;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;170;170;8;13;13;13;4;7;31;10;9;2;2;0;11
-118;'414;Kuwait;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;458;0;0;155;50;332
-118;'414;Kuwait;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;17;0;0;55;33;228
-118;'414;Kuwait;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;8000;8000;8000;10000;10000;14000;14000;35000;35000;40000;42000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000
-118;'414;Kuwait;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;374;341;341;133;64;199;5569;76;76;2507;724;1012;1419;2900;2900;2900;4700;4700;10400;10400;10400;2158;2158;2158;2158;2683;1091;664;1032;513;1038;3743;3327;4784;6783;6783;824;226;47;932;423
-118;'414;Kuwait;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;45;41;41;16;27;64;1531;10;10;289;155;123;145;198;198;198;1062;1062;904;904;904;240;240;240;240;455;313;92;179;60;311;622;292;318;3000;3000;316;39;83;243;71
-118;'414;Kuwait;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;3559;4185;4339;4941;5267;6858;7000;2500;4000;4000;5537;3441;4003;6179;1755;1755;4023;4023;151;6178;1700;1700;1700;100;100;800;800;800;15323;15323;15323;50400;12133;42286;67924;93716;118688;112766;157041;147872;123838;126867;126867;92788;41267;43977;46639;54551
-118;'414;Kuwait;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;81;152;206;561;416;820;820;207;373;373;828;606;730;728;266;266;291;291;20;1817;392;392;392;13;13;52;52;52;1517;1517;1517;4172;2956;7244;12288;25192;26740;25340;27672;24267;18286;18207;18207;14855;6484;7034;11595;8770
-118;'414;Kuwait;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;48500;57500;57500;61000;61000;61000;61000;61000;66000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000
-118;'414;Kuwait;1876;Paper and paperboard;5610;Import quantity;t;;;;8300;9900;7700;12300;8100;8300;9800;15200;10800;14800;27000;25900;23000;49000;46000;52700;67500;62500;64000;50800;61400;52800;88606;90947;65208;80747;39437;39437;50705;67833;70259;31359;42200;42200;42201;67101;67101;88600;88600;88600;125727;125727;125727;139880;160103;111069;123074;162269;147254;184645;214338;165872;169410;221475;198519;182295;140487;155409;185658;125468
-118;'414;Kuwait;1876;Paper and paperboard;5622;Import value;1000 USD;;;;3147;3909;3920;3205;1450;2007;2244;2784;2989;5632;18008;17208;13359;27190;25637;29237;51585;50907;51346;34893;37779;36141;60543;68776;49894;71699;32407;32407;44683;41493;47698;26146;35081;34358;35683;46392;46392;56134;56134;56134;88681;88681;88681;98661;138550;81389;100530;141943;111870;142649;192088;141570;138789;200079;206230;189967;151197;150621;229352;169108
-118;'414;Kuwait;1876;Paper and paperboard;5910;Export quantity;t;;;;;;100;100;100;100;300;1100;900;1100;3200;3100;3400;5700;5800;5800;12300;12300;13200;14100;14000;13800;13119;12601;12601;15517;11;11;487;487;0;0;0;0;0;0;0;31500;31500;31500;27087;27087;27087;27087;10508;7692;12630;5759;7230;36152;43187;46337;47736;26633;36429;58256;66905;83688;63984;68452
-118;'414;Kuwait;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;15;20;20;22;57;282;293;441;1367;1336;1643;2415;2415;2415;7836;7836;8487;6937;6618;6519;5940;5641;5641;8596;11;11;265;265;0;0;0;0;0;0;0;12699;12699;12699;12104;12104;12104;12104;7746;5178;8389;4684;4745;20243;24698;26110;22888;13627;19455;30128;28784;47636;50110;35783
-118;'414;Kuwait;2042;Graphic papers;5610;Import quantity;t;;;;3900;4700;5400;4500;5600;5800;6700;12500;8700;8700;17900;16800;13900;34500;31500;38200;45500;40500;42300;32000;42600;34000;69806;72147;46408;61947;20637;20637;39678;40308;48028;11390;24700;24700;24700;49600;49600;46300;46300;46300;78100;78100;78100;94812;116997;79827;87596;116920;97142;108007;99830;86763;93047;88533;71693;72431;41898;33946;49168;44112
-118;'414;Kuwait;2042;Graphic papers;5622;Import value;1000 USD;;;;1450;1901;1896;868;1060;1610;1847;2150;2552;3308;13273;12473;8624;20128;18575;22175;31155;30477;30540;19752;22638;21000;45402;53635;34753;56558;17266;17266;32052;22728;28938;10925;17358;17358;17359;27727;27727;29946;29946;29946;57593;57593;57593;69341;99594;58801;67779;99479;75218;84496;84928;66932;70141;73604;66712;68046;39597;34301;64939;56728
-118;'414;Kuwait;2042;Graphic papers;5910;Export quantity;t;;;;;;100;100;100;100;300;600;400;1000;1300;1200;1500;1900;2000;2000;3800;3800;2500;1500;1400;1200;519;1;1;2917;11;11;487;487;0;0;0;0;0;0;0;10000;10000;10000;10119;10119;10119;10119;1225;1343;967;570;916;967;8580;4654;4454;1925;3525;1203;1391;5001;6295;4451
-118;'414;Kuwait;2042;Graphic papers;5922;Export value;1000 USD;;;;;;15;20;20;22;57;149;160;411;872;841;1148;1333;1333;1333;3974;3974;3019;1297;978;879;300;1;1;2956;11;11;265;265;0;0;0;0;0;0;0;3785;3785;3785;3875;3875;3875;3875;1302;1438;1423;1014;1645;1520;6602;5286;3018;1815;2400;1443;955;3173;6690;4527
-118;'414;Kuwait;1671;Newsprint;5610;Import quantity;t;;;;2500;3300;3600;;;;;;;3000;5900;4800;4500;11300;8300;15000;19000;14000;18600;14600;26700;18000;35664;30314;21491;22718;2014;2014;6250;17593;20773;6982;14900;14900;14900;22900;22900;8700;8700;8700;14434;14434;14434;28500;59408;33250;37436;35339;33756;31514;33417;21432;23539;15408;6928;6669;2224;2390;1478;1464
-118;'414;Kuwait;1671;Newsprint;5622;Import value;1000 USD;;;;750;1050;1046;;;;;;;920;4200;3400;3200;5953;4400;8000;10100;9422;11343;7888;12522;10000;15889;14715;12465;16388;859;859;3264;6063;7168;5324;7562;7562;7562;10095;10095;5251;5251;5251;7361;7361;7361;18099;45894;20974;22511;22361;19826;19132;24523;14752;15643;10138;5308;5301;1500;1625;1255;1171
-118;'414;Kuwait;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;100;;;500;500;500;;;300;200;200;;496;0;0;1441;0;0;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;44;44;61;61;163;163;1132;1226;861;556;599;206;32;229;58;67
-118;'414;Kuwait;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;31;;;274;274;274;;;150;100;100;;277;0;0;1223;0;0;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;19;43;43;105;105;619;1427;696;667;554;137;33;150;47;48
-118;'414;Kuwait;1674;Printing and writing papers;5610;Import quantity;t;;;;1400;1400;1800;4500;5600;5800;6700;12500;8700;5700;12000;12000;9400;23200;23200;23200;26500;26500;23700;17400;15900;16000;34142;41833;24917;39229;18623;18623;33428;22715;27255;4408;9800;9800;9800;26700;26700;37600;37600;37600;63666;63666;63666;66312;57589;46577;50160;81581;63386;76493;66413;65331;69508;73125;64765;65762;39674;31556;47690;42648
-118;'414;Kuwait;1674;Printing and writing papers;5622;Import value;1000 USD;;;;700;851;850;868;1060;1610;1847;2150;2552;2388;9073;9073;5424;14175;14175;14175;21055;21055;19197;11864;10116;11000;29513;38920;22288;40170;16407;16407;28788;16665;21770;5601;9796;9796;9797;17632;17632;24695;24695;24695;50232;50232;50232;51242;53700;37827;45268;77118;55392;65364;60405;52180;54498;63466;61404;62745;38097;32676;63684;55557
-118;'414;Kuwait;1674;Printing and writing papers;5910;Export quantity;t;;;;;;100;100;100;100;300;600;400;1000;1200;1200;1500;1400;1500;1500;3800;3800;2200;1300;1200;1200;23;1;1;1476;11;11;487;487;0;0;0;0;;;;10000;10000;10000;10119;10119;10119;10119;1181;1299;906;509;753;804;7448;3428;3593;1369;2926;997;1359;4772;6237;4384
-118;'414;Kuwait;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;15;20;20;22;57;149;160;411;841;841;1148;1059;1059;1059;3974;3974;2869;1197;878;879;23;1;1;1733;11;11;265;265;0;0;0;0;;;;3785;3785;3785;3875;3875;3875;3875;1283;1419;1380;971;1540;1415;5983;3859;2322;1148;1846;1306;922;3023;6643;4479
-118;'414;Kuwait;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990;2698;2698;3800;3800;3800;7154;7154;7154;9800;23439;8455;4412;11342;3808;7402;8415;7594;7606;6036;6036;2442;2373;1581;5211;4335
-118;'414;Kuwait;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;2035;2035;2850;2850;2850;5644;5644;5644;6654;21278;5403;3119;8588;3307;5296;7964;6591;5702;4881;4881;2730;2311;2002;5183;4114
-118;'414;Kuwait;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;442;61;316;148;48;176;5766;1856;2804;496;2838;165;53;79;18;48
-118;'414;Kuwait;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;588;49;342;138;31;107;3342;1148;1307;481;1678;64;24;40;17;43
-118;'414;Kuwait;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2320;6320;6320;8900;8900;8900;16013;16013;16013;16013;17581;9857;10526;26386;21854;23704;20041;21162;21025;23898;17966;31141;14705;12452;17235;20062
-118;'414;Kuwait;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2255;4058;4058;5684;5684;5684;12635;12635;12635;12635;16491;10022;10288;27648;20876;21778;20406;13990;17200;23619;19164;31007;16189;12584;23757;26206
-118;'414;Kuwait;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;470;7;231;106;450;373;1004;1272;677;553;42;655;485;1807;3990;4192
-118;'414;Kuwait;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3785;3785;3785;3785;3785;3785;3785;363;9;483;229;905;704;2034;2436;881;352;81;954;751;2511;4061;4267
-118;'414;Kuwait;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6490;17682;17682;24900;24900;24900;40499;40499;40499;40499;16569;28265;35222;43853;37724;45387;37957;36575;40877;43191;40763;32179;22596;17523;25244;18251
-118;'414;Kuwait;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6411;11539;11539;16161;16161;16161;31953;31953;31953;31953;15931;22402;31861;40882;31209;38290;32035;31599;31596;34966;37359;29008;19597;18090;34744;25237
-118;'414;Kuwait;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;269;1231;359;255;255;255;678;300;112;320;46;177;821;2886;2229;144
-118;'414;Kuwait;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;69;332;1361;555;604;604;604;607;275;134;315;87;288;147;472;2565;169
-118;'414;Kuwait;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;48500;57500;57500;61000;61000;61000;61000;61000;66000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000
-118;'414;Kuwait;1675;Other paper and paperboard;5610;Import quantity;t;;;;4400;5200;2300;7800;2500;2500;3100;2700;2100;6100;9100;9100;9100;14500;14500;14500;22000;22000;21700;18800;18800;18800;18800;18800;18800;18800;18800;18800;11027;27525;22231;19969;17500;17500;17501;17501;17501;42300;42300;42300;47627;47627;47627;45068;43106;31242;35478;45349;50112;76638;114508;79109;76363;132942;126826;109864;98589;121463;136490;81356
-118;'414;Kuwait;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;1697;2008;2024;2337;390;397;397;634;437;2324;4735;4735;4735;7062;7062;7062;20430;20430;20806;15141;15141;15141;15141;15141;15141;15141;15141;15141;12631;18765;18760;15221;17723;17000;18324;18665;18665;26188;26188;26188;31088;31088;31088;29320;38956;22588;32751;42464;36652;58153;107160;74638;68648;126475;139518;121921;111600;116320;164413;112380
-118;'414;Kuwait;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;500;500;100;1900;1900;1900;3800;3800;3800;8500;8500;10700;12600;12600;12600;12600;12600;12600;12600;0;0;0;0;0;0;0;0;0;0;0;21500;21500;21500;16968;16968;16968;16968;9283;6349;11663;5189;6314;35185;34607;41683;43282;24708;32904;57053;65514;78687;57689;64001
-118;'414;Kuwait;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;133;133;30;495;495;495;1082;1082;1082;3862;3862;5468;5640;5640;5640;5640;5640;5640;5640;0;0;0;0;0;0;0;0;0;0;0;8914;8914;8914;8229;8229;8229;8229;6444;3740;6966;3670;3100;18723;18096;20824;19870;11812;17055;28685;27829;44463;43420;31256
-118;'414;Kuwait;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12500;12500;12500;16000;16000;16000;16000;16000;16000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000
-118;'414;Kuwait;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1540;1540;1540;1540;450;89;787;441;250;3015;18254;17595;15845;14108;19669;17860;18994;21397;22342;34795
-118;'414;Kuwait;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;1948;1948;1693;1693;1693;1693;808;218;1057;702;487;5947;29158;27839;23772;20356;30149;24294;28025;30839;40978;58019
-118;'414;Kuwait;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;1851;1851;1851;1851;257;257;25;192;56;342;75;185;117;104;38;80;26;67;370;784
-118;'414;Kuwait;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2211;2211;2211;2050;2050;2050;2050;535;535;89;361;3;702;90;285;228;248;81;73;25;116;616;1248
-118;'414;Kuwait;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;36000;45000;45000;45000;45000;45000;45000;45000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-118;'414;Kuwait;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17501;17501;17501;36600;36600;36600;43596;43596;43596;41037;35906;27608;31418;40752;47699;68419;91851;58330;57647;94207;94950;81773;63403;95140;112572;45719
-118;'414;Kuwait;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18324;18665;18665;19310;19310;19310;27029;27029;27029;25261;29922;17802;26347;34133;32773;47600;72365;44086;40432;90934;97715;70834;59774;80786;119646;51508
-118;'414;Kuwait;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;9300;9300;5117;5117;5117;5117;8076;5770;11502;4935;6209;34794;34413;41410;43019;24487;32833;56911;65469;78616;57190;62881
-118;'414;Kuwait;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3614;3614;3614;3090;3090;3090;3090;5341;2805;6568;3186;3051;17975;17812;20472;19559;11467;16871;28372;27732;44192;41943;29312
-118;'414;Kuwait;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;600;600;500;1900;700;2500;4800;4800;4800;6900;6900;6900;11700;11700;16600;15000;15000;15000;15000;0;0;0;15000;15000;11027;27525;22231;19969;17500;17500;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;200;208;177;529;262;955;2923;2923;2923;3362;3362;3362;9281;9281;12166;8114;8114;8114;8114;0;0;0;8114;8114;12631;18765;18760;15221;17723;17000;;;;;;;;;;;;;;;;;;;;;;;;;;
-118;'414;Kuwait;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;36000;45000;45000;45000;45000;45000;45000;45000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000
-118;'414;Kuwait;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3156;3156;3156;6600;6600;6600;4034;4034;4034;4034;3044;3961;1196;4920;5355;21259;35168;22085;15625;34252;40386;40213;25930;41360;57180;14454
-118;'414;Kuwait;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2781;2833;2833;2931;2931;2931;2502;2502;2502;2502;1733;1907;704;2758;2803;12806;23747;15480;8396;19617;23641;22442;14353;28507;44142;8370
-118;'414;Kuwait;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;7600;7600;3894;3894;3894;3894;2070;2070;2070;1673;2952;31341;32193;40223;42520;22897;29775;26639;42806;64147;54976;62539
-118;'414;Kuwait;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2913;2913;2913;2352;2352;2352;2352;1100;1100;1100;870;1220;15953;16285;19585;19054;10236;14775;12887;18667;36889;38194;28619
-118;'414;Kuwait;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339;1339;1339;2800;2800;2800;9591;9591;9591;11900;15614;11594;12660;16623;23099;29953;34030;16809;26037;21911;23333;17652;18019;22640;29307;13880
-118;'414;Kuwait;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4129;4206;4206;4351;4351;4351;5947;5947;5947;7186;11279;6918;9871;14432;14524;20589;27780;12453;20814;37722;42119;23580;20724;21199;40845;20780
-118;'414;Kuwait;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;70;70;70;70;1099;1496;3970;1769;1384;1092;1076;410;217;217;105;28720;2607;441;2;44
-118;'414;Kuwait;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;42;42;42;42;629;498;2022;1016;653;627;583;273;138;138;528;14713;1298;287;2;46
-118;'414;Kuwait;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8081;8081;8081;16900;16900;16900;29368;29368;29368;24500;16919;11831;17266;18852;18589;16227;21951;17510;15665;34985;28298;21721;17523;28923;23346;14852
-118;'414;Kuwait;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8436;8593;8593;8890;8890;8890;18207;18207;18207;15200;16521;8698;15373;16333;14505;13311;19460;14614;10928;31943;30357;23685;23727;29708;32197;20289
-118;'414;Kuwait;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;960;960;960;960;4714;2011;5269;1300;1680;2168;1104;647;277;1368;2948;1547;20054;14026;2212;294
-118;'414;Kuwait;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490;490;490;580;580;580;580;3496;1091;3330;1184;1062;1279;935;576;365;1091;1566;770;7764;7013;3747;643
-118;'414;Kuwait;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4925;4925;4925;10300;10300;10300;603;603;603;603;329;222;296;357;656;980;702;1926;320;3059;2933;2187;1931;2217;2739;2533
-118;'414;Kuwait;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2978;3033;3033;3138;3138;3138;373;373;373;373;389;279;399;610;941;894;1378;1539;294;1652;1598;1127;970;1372;2462;2069
-118;'414;Kuwait;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;193;193;193;193;193;193;193;193;193;193;40;130;5;5;5;5;2;2;0;4
-118;'414;Kuwait;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;116;116;116;116;116;116;116;116;116;116;9;38;2;2;2;2;3;3;0;4
-118;'414;Kuwait;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;4400;5200;2300;7800;1900;1900;2600;800;1400;3600;4300;4300;4300;7600;7600;7600;10300;10300;5100;3800;3800;3800;3800;18800;18800;18800;3800;3800;0;0;0;0;0;0;0;0;0;4100;4100;4100;2491;2491;2491;2491;6750;3545;3273;4156;2163;5204;4403;3184;2871;24627;12207;10231;16192;4926;1576;842
-118;'414;Kuwait;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;1697;2008;2024;2337;190;189;220;105;175;1369;1812;1812;1812;3700;3700;3700;11149;11149;8640;7027;7027;7027;7027;15141;15141;15141;7027;7027;0;0;0;0;0;0;0;0;0;4930;4930;4930;2366;2366;2366;2366;8226;4568;5347;7629;3392;4606;5637;2713;4444;15185;11654;26793;23801;4695;3789;2853
-118;'414;Kuwait;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;12600;12600;12600;0;0;0;0;0;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000;10000;950;322;136;62;49;49;119;88;146;117;33;62;19;4;129;336
-118;'414;Kuwait;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;5640;5640;5640;0;0;0;0;0;0;0;0;0;0;0;3089;3089;3089;3089;3089;3089;3089;568;400;309;123;46;46;194;67;83;97;103;240;72;155;861;696
-118;'414;Kuwait;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318539;325469;306611;241767;359507;285941;283780
-118;'414;Kuwait;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43466;58645;43890;36847;52006;47282;25329
-118;'414;Kuwait;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2447;4358;2602;1602;1478;1674;979
-118;'414;Kuwait;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;122;51;34;235;65;36
-118;'414;Kuwait;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1799;749;593;404;604;290
-118;'414;Kuwait;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;33;33;31;31;31;2
-118;'414;Kuwait;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1698;2559;1853;1009;1074;1070;689
-118;'414;Kuwait;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;89;18;3;204;34;34
-118;'414;Kuwait;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3879;4527;5858;6790;5695;6915;2794
-118;'414;Kuwait;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;445;468;692;560;449;752
-118;'414;Kuwait;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570;9989;8133;9133;12289;11244;8110
-118;'414;Kuwait;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;266;261;159;140;943;260
-118;'414;Kuwait;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32921;22651;21713;11443;9879;13278;8612
-118;'414;Kuwait;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;1505;792;729;860;1001;1341
-118;'414;Kuwait;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6
-118;'414;Kuwait;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5
-118;'414;Kuwait;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8
-118;'414;Kuwait;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12
-118;'414;Kuwait;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254186;268624;255371;206252;316574;243670;252662
-118;'414;Kuwait;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40328;33748;32411;25659;22693;24854;20396
-118;'414;Kuwait;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5716;3125;4560;520;3748;471;921
-118;'414;Kuwait;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;21867;8925;9319;27367;19367;2148
-118;'414;Kuwait;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9820;12195;8374;6027;9844;8689;9702
-118;'414;Kuwait;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;692;982;255;151;603;396
-118;'414;Kuwait;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179379;195425;194569;179926;214533;247305;218100
-118;'414;Kuwait;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48161;48778;48584;37396;43410;49048;38305
-118;'414;Kuwait;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;3663;8431;10112;15216;1738;1174
-118;'414;Kuwait;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;479;11;9;21;0;3
-118;'414;Kuwait;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8616;11707;10330;8256;8765;10908;10678
-118;'414;Kuwait;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;77;134;465;220;57;156
-118;'414;Kuwait;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57090;54656;58857;59569;55575;63144;40976
-118;'414;Kuwait;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1824;3352;3347;1867;2277;1689;1681
-118;'414;Kuwait;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46073;38429;46711;43056;61046;89023;86934
-118;'414;Kuwait;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38203;37185;35567;27987;34578;39459;29713
-118;'414;Kuwait;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66720;86970;70240;58933;73931;82492;78338
-118;'414;Kuwait;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6902;7685;9525;7068;6314;7843;6752
-113;'417;Kyrgyzstan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114500.2;141560;173920;113009;157968;187337;152611
-113;'417;Kyrgyzstan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5372.59;3553;9629;10450;15673;18546;7416
-113;'417;Kyrgyzstan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667;66;66;10489;9167;7222;9214;12173;10806;13373;16710;26717;31229;35772;47007;64692;73434;76610;115417;152615;167901;165732;89816;121921;69306.9;82886;96991;70575;89304;105132;86343
-113;'417;Kyrgyzstan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;23;1;1;481;489;145;131;577;323;384;885;609;577;770;770;1416;194;81;636;630;909;286;405;153;1157.49;677;5059;6700;10204;8344;2334
-113;'417;Kyrgyzstan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37600;37600;35500;46350;43010;35800;36100;27300;27300;27300;27300;27300;37800;45900;45900;45900;45920;45920;45920;45920;45920;45920;45920;45920;78120;88120;88120
-113;'417;Kyrgyzstan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428;33;33;2256;2300;0;3020;2700;1700;2200;4066;3915;3502;4000;4000;11799;16212;3308;4008;4510;1600;1311;5173;5228;11000;2382;138000;77600;55300;17000;15269
-113;'417;Kyrgyzstan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;2;2;245;245;2;94;152;81;49;194;319;321;368;368;1294;1466;380;451;784;267;228;417;289;756.7;181;6984;2304;1266;677;667
-113;'417;Kyrgyzstan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;229;7;7;550;507;0;0;0;0;0;166;348;291;300;300;596;159;159;159;18;0;0;0;45;200;511;24570;112800;54100;54100;0
-113;'417;Kyrgyzstan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;1;1;54;54;1;2;1;18;46;60;220;181;341;341;363;11;11;11;3;0;0;0;4;20.8;18;898;2993;2043;2043;0
-113;'417;Kyrgyzstan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;11280;10650;13905;12900;10740;10830;8190;8190;8190;8190;8190;11340;13770;13770;13770;13780;13780;13780;13780;13780;13780;13780;13780;45980;55980;55980
-113;'417;Kyrgyzstan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;1782;137900;49900;16200;4300;13254
-113;'417;Kyrgyzstan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609.2;150;6979;1633;389;366;621
-113;'417;Kyrgyzstan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;182;24050;108500;48300;48300;0
-113;'417;Kyrgyzstan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;881;2918;1891;1891;0
-113;'417;Kyrgyzstan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23300;26320;24850;32445;30110;25060;25270;19110;19110;19110;19110;19110;26460;32130;32130;32130;32140;32140;32140;32140;32140;32140;32140;32140;32140;32140;32140
-113;'417;Kyrgyzstan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;600;100;27700;39100;12700;2015
-113;'417;Kyrgyzstan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147.5;31;5;671;877;311;46
-113;'417;Kyrgyzstan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;329;520;4300;5800;5800;0
-113;'417;Kyrgyzstan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20.8;10;17;75;152;152;0
-113;'417;Kyrgyzstan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;29400;26800;33300;29700;24700;24900;18000;18000;18000;18000;18000;28500;36600;36600;36600;36600;36600;36600;36600;36600;36600;36600;36600;36600;36600;36600
-113;'417;Kyrgyzstan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;2033;0;2;0;0;299;12;8;8;10;0;11;0;0;0;182;0;0;0;600;0
-113;'417;Kyrgyzstan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;97;0;0;0;0;92;7;1;1;1;0;8;0;18;0;21;0;0;0;171;0
-113;'417;Kyrgyzstan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;83;174;0;0;0;296;159;159;159;0;0;0;0;0;0;211;70;200;200;200;0
-113;'417;Kyrgyzstan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;110;0;0;0;22;11;11;11;0;0;0;0;0;0;9;9;7;8;8;0
-113;'417;Kyrgyzstan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;8820;8040;9990;8910;7410;7470;5400;5400;5400;5400;5400;8550;10980;10980;10980;10980;10980;10980;10980;10980;10980;10980;10980;10980;10980;10980
-113;'417;Kyrgyzstan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;182;0;0;0;500;0
-113;'417;Kyrgyzstan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;0;0;0;133;0
-113;'417;Kyrgyzstan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;182;50;0;0;0;0
-113;'417;Kyrgyzstan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;0;0;0;0
-113;'417;Kyrgyzstan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;20580;18760;23310;20790;17290;17430;12600;12600;12600;12600;12600;19950;25620;25620;25620;25620;25620;25620;25620;25620;25620;25620;25620;25620;25620;25620
-113;'417;Kyrgyzstan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;100;0
-113;'417;Kyrgyzstan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;38;0
-113;'417;Kyrgyzstan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;20;200;200;200;0
-113;'417;Kyrgyzstan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;7;8;8;0
-113;'417;Kyrgyzstan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;2033;0;2;0;0;299;12;8;8;10;0;11;0;0;;;;;;;
-113;'417;Kyrgyzstan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;97;0;0;0;0;92;7;1;1;1;0;8;0;18;;;;;;;
-113;'417;Kyrgyzstan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;83;174;0;0;0;296;159;159;159;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;110;0;0;0;22;11;11;11;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;8200;8700;13050;13310;11100;11200;9300;9300;9300;9300;9300;9300;9300;9300;9300;9320;9320;9320;9320;9320;9320;9320;9320;41520;51520;51520
-113;'417;Kyrgyzstan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428;33;33;2256;2300;0;3000;2700;1700;2200;2033;3915;3500;4000;4000;11500;16200;3300;4000;4500;1600;1300;5173;5228;11000;2200;138000;77600;55300;16400;15269
-113;'417;Kyrgyzstan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;2;2;245;245;2;94;152;81;49;97;319;321;368;368;1202;1459;379;450;783;267;220;417;271;756.7;160;6984;2304;1266;506;667
-113;'417;Kyrgyzstan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;229;7;7;550;507;0;0;0;0;0;83;174;291;300;300;300;0;0;0;18;0;0;0;45;200;300;24500;112600;53900;53900;0
-113;'417;Kyrgyzstan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;1;1;54;54;1;2;1;18;46;48;110;181;341;341;341;0;0;0;3;0;0;0;4;20.8;9;889;2986;2035;2035;0
-113;'417;Kyrgyzstan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;2460;2610;3915;3990;3330;3360;2790;2790;2790;2790;2790;2790;2790;2790;2790;2800;2800;2800;2800;2800;2800;2800;2800;35000;45000;45000
-113;'417;Kyrgyzstan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;33;33;2256;2300;0;2900;2700;1500;2000;2011;3912;3500;2000;2000;9500;14200;3300;4000;4200;1600;1200;4461;5100;10000;1600;137900;49900;16200;3800;13254
-113;'417;Kyrgyzstan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2;2;245;245;2;92;146;77;45;93;318;321;184;184;1018;1275;379;433;551;267;188;362;248;609.2;129;6979;1633;389;233;621
-113;'417;Kyrgyzstan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;229;;;543;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;0;0;0;45;0;0;24000;108500;48300;48300;0
-113;'417;Kyrgyzstan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;;;53;53;0;2;0;0;36;36;0;0;0;0;0;0;0;0;3;0;0;0;4;0;0;873;2918;1891;1891;0
-113;'417;Kyrgyzstan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;33;33;2256;2300;0;2900;2700;1500;2000;2011;3912;3500;2000;2000;9500;14200;3300;4000;4200;1600;1200;4461;5100;10000;1600;137900;49900;16200;3800;13254
-113;'417;Kyrgyzstan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2;2;245;245;2;92;146;77;45;93;318;321;184;184;1018;1275;379;433;551;267;188;362;248;609.2;129;6979;1633;389;233;621
-113;'417;Kyrgyzstan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;229;;;543;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;0;0;0;45;0;0;24000;108500;48300;48300;0
-113;'417;Kyrgyzstan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;;;53;53;0;2;0;0;36;36;0;0;0;0;0;0;0;0;3;0;0;0;4;0;0;873;2918;1891;1891;0
-113;'417;Kyrgyzstan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;5740;6090;9135;9320;7770;7840;6510;6510;6510;6510;6510;6510;6510;6510;6510;6520;6520;6520;6520;6520;6520;6520;6520;6520;6520;6520
-113;'417;Kyrgyzstan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096;;;;;0;100;0;200;200;22;3;0;2000;2000;2000;2000;0;0;300;0;100;712;128;1000;600;100;27700;39100;12600;2015
-113;'417;Kyrgyzstan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;;;;;0;2;6;4;4;4;1;0;184;184;184;184;0;17;232;0;32;55;23;147.5;31;5;671;877;273;46
-113;'417;Kyrgyzstan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;0;0;0;0;0;83;174;291;300;300;300;0;0;0;0;0;0;0;0;200;300;500;4100;5600;5600;0
-113;'417;Kyrgyzstan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;1;18;10;12;110;181;341;341;341;0;0;0;0;0;0;0;0;20.8;9;16;68;144;144;0
-113;'417;Kyrgyzstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;12;12;0;0;0;0;0;712;54;18;0;0;0;0;0;380
-113;'417;Kyrgyzstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;6;4;4;4;0;0;0;0;8;8;0;0;0;0;0;55;21;8.7;0;0;0;0;0;33
-113;'417;Kyrgyzstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;174;291;291;291;291;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;18;10;10;110;181;181;181;181;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096;;;;;0;0;0;200;200;22;3;0;2000;2000;1988;1988;0;0;300;0;100;0;74;982;600;100;27700;39100;12600;1635
-113;'417;Kyrgyzstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;;;;;0;0;0;0;0;0;1;0;184;184;176;176;0;17;232;0;32;0;2;138.8;31;5;671;877;273;13
-113;'417;Kyrgyzstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;0;0;0;0;0;83;0;0;9;9;9;0;0;0;0;0;0;0;0;200;300;500;4100;5600;5600;0
-113;'417;Kyrgyzstan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;2;0;0;160;160;160;0;0;0;0;0;0;0;0;20.8;9;16;68;144;144;0
-113;'417;Kyrgyzstan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;4100;4350;6400;6660;5550;5600;4650;4650;4650;4650;4650;4650;4650;4650;4650;4660;4660;4660;4660;4660;4660;4660;4660;36860;46860;46860
-113;'417;Kyrgyzstan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;1230;1305;1920;1995;1665;1680;1395;1395;1395;1395;1395;1395;1395;1395;1395;1400;1400;1400;1400;1400;1400;1400;1400;33600;43600;43600
-113;'417;Kyrgyzstan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2870;3045;4480;4665;3885;3920;3255;3255;3255;3255;3255;3255;3255;3255;3255;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260
-113;'417;Kyrgyzstan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;4100;4350;6650;6650;5550;5600;4650;4650;4650;4650;4650;4650;4650;4650;4650;4660;4660;4660;4660;4660;4660;4660;4660;4660;4660;4660
-113;'417;Kyrgyzstan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1230;1305;1995;1995;1665;1680;1395;1395;1395;1395;1395;1395;1395;1395;1395;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400
-113;'417;Kyrgyzstan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2870;3045;4655;4655;3885;3920;3255;3255;3255;3255;3255;3255;3255;3255;3255;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260
-113;'417;Kyrgyzstan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;10;100;100;100;100;0;0;1;1;10;30;0;9;44;35;9;200;2000;4000;300;400;900;700;800;581
-113;'417;Kyrgyzstan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;;;;;;1;0;0;1;1;0;0;2;2;7;17;0;18;49;33;70;229;172;437;119;146;271;155;266;265
-113;'417;Kyrgyzstan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;;;;;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;53;18;0;200;0
-113;'417;Kyrgyzstan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;20;0;130;0
-113;'417;Kyrgyzstan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7700;4600;18800;11300;11300;11300;11300;11300;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;4000;4000;4000;2;0;0;0;0;203;49;0;0;1;0;59;29;0;1380;1309;100;70;0;600;147754
-113;'417;Kyrgyzstan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;0;0;0;0;0;56;6;0;0;1;0;48;4;8;141;156;54;37;16;169;193
-113;'417;Kyrgyzstan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;33;33;0;0;0;0;0;0;0;0;12;800;900;1100;600;374
-113;'417;Kyrgyzstan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;0;0;0;0;2;2;0;0;0;0;0;0;0;0;2;7;9;13;6;2
-113;'417;Kyrgyzstan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7700;4600;4600;4600;4600;4600;4600;4600;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;29;0;1380;1309;100;50;0;600;147520
-113;'417;Kyrgyzstan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;4;8;141;156;54;28;16;169;74
-113;'417;Kyrgyzstan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;33;33;0;0;0;0;0;0;0;0;12;100;0;0;0;0
-113;'417;Kyrgyzstan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;0;0;0;0;2;2;0;0;0;0;0;0;0;0;2;0;0;0;0;0
-113;'417;Kyrgyzstan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14200;6700;6700;6700;6700;6700;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;0;10;4000;4000;4000;2;0;0;0;0;203;49;0;0;1;0;19;0;0;0;0;0;20;0;0;234
-113;'417;Kyrgyzstan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;2;0;0;0;0;0;56;6;0;0;1;0;27;0;0;0;0;0;9;0;0;119
-113;'417;Kyrgyzstan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;700;900;1100;600;374
-113;'417;Kyrgyzstan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;9;13;6;2
-113;'417;Kyrgyzstan;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;374
-113;'417;Kyrgyzstan;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2
-113;'417;Kyrgyzstan;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;0;83
-113;'417;Kyrgyzstan;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;9;0;0;45
-113;'417;Kyrgyzstan;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;700;900;1100;0;0
-113;'417;Kyrgyzstan;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;9;13;0;0
-113;'417;Kyrgyzstan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;48;0;1000;70;100;210;100;100;39
-113;'417;Kyrgyzstan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;27;7;147;38;37;38;18;21;11
-113;'417;Kyrgyzstan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;100;10400;23
-113;'417;Kyrgyzstan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;3208;3
-113;'417;Kyrgyzstan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15;0;0;0;0;10;0;0;24
-113;'417;Kyrgyzstan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;44;0;0;1;6;2;8
-113;'417;Kyrgyzstan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;7900;23
-113;'417;Kyrgyzstan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2433;3
-113;'417;Kyrgyzstan;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;33;0;1000;70;100;200;100;100;15
-113;'417;Kyrgyzstan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;7;103;38;37;37;12;19;3
-113;'417;Kyrgyzstan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;100;2500;0
-113;'417;Kyrgyzstan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;775;0
-113;'417;Kyrgyzstan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;23000;23000;6000;6000;6000;15200;22000;22000;22000;52000;60000;88928;80100;85700;98000;106000;111800;124600;127500;134600;140000;150000;143000;153000;150000;150000
-113;'417;Kyrgyzstan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49681;54000;53000;31600;43100;30300;37000;37000;82391;96910;106900;169183;180801;199073;171493;243889;283300;335800;443800;160469;353158;240400;127100;32125;36396;150302;63255;82871
-113;'417;Kyrgyzstan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4321;2999;2512;1670;2252;1452;2035;2035;6745;9168;11467;22702;29609;29189;27064;44033;60801;74622;73704;26905;58850;16388.8;9719;4790;9424;11359;8458;9235
-113;'417;Kyrgyzstan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;899;2100;2100;600;1780;1028;1528;448;950;282;2012;2012;0;0;0;0;400;1300;0;383;0;4500;307;10142;10259;69153;4772;22
-113;'417;Kyrgyzstan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;114;122;122;32;522;260;180;316;233;145;207;207;1;0;0;0;169;585;0;89;0;400;50;2491;2597;5649;252;2
-113;'417;Kyrgyzstan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;9000;8834;2000;2000;2000;8000;6300;6300;6300;26000;30000;44464;40050;42850;96000;106000;111800;124600;127500;134600;140000;150000;143000;153000;150000;150000
-113;'417;Kyrgyzstan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49681;54000;53000;31600;43100;30300;37000;37000;82286;96600;105700;167983;180000;198726;170545;243000;282900;335800;443500;158621;351916;130000;20700;19600;36114;150000;63000;78912
-113;'417;Kyrgyzstan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4321;2999;2512;1670;2233;1441;2025;2025;6722;9111;11344;22579;29218;29184;26901;43898;60662;74622;73704;26361;58484;10418;4396;4163;9255;11177;8304;8799
-113;'417;Kyrgyzstan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;899;2100;2100;600;500;500;1000;224;632;81;264;264;0;0;0;0;400;1300;0;383;0;4500;300;10080;9891;69000;4600;0
-113;'417;Kyrgyzstan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;114;122;122;32;38;61;98;158;104;10;28;28;0;0;0;0;169;585;0;89;0;400;46;2460;2414;5573;167;0
-113;'417;Kyrgyzstan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;14000;14166;4000;4000;4000;7200;15700;15700;15700;26000;30000;44464;40050;42850;2000;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;105;310;1200;1200;801;347;948;889;400;0;300;1848;1242;110400;106400;12525;282;302;255;3959
-113;'417;Kyrgyzstan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;11;10;10;23;57;123;123;391;5;163;135;139;0;0;544;366;5970.8;5323;627;169;182;154;436
-113;'417;Kyrgyzstan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;1280;528;528;224;318;201;1748;1748;0;0;0;0;0;0;0;0;0;0;7;62;368;153;172;22
-113;'417;Kyrgyzstan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;484;199;82;158;129;135;179;179;1;0;0;0;0;0;0;0;0;0;4;31;183;76;85;2
-113;'417;Kyrgyzstan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;;;609;609;609;210;0;0;0;0;1;81;100;100;236;155;0;4;2;168;171;1986;259;299;208;87;1256;3091;497;8704
-113;'417;Kyrgyzstan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;;;407;407;0;6;21;4;4;4;3;30;14;14;38;50;0;5;2;84;188;927;121;280;209;99;384;887;175;1506
-113;'417;Kyrgyzstan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;;;52;52;52;12;0;0;0;19;0;0;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;59;413
-113;'417;Kyrgyzstan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;;;14;14;0;7;0;2;11;20;0;0;0;0;0;0;0;15;2;0;0;0;0;0;0;0;0;0;29;74
-113;'417;Kyrgyzstan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;52;52;13137;13026;9026;36480;39663;17959;76459;22677;29119;31822;34346;34346;80205;76318;97986;140696;194800;240384;205231;110198;80399;158040;195305;241044;374742;196098;205029;477337
-113;'417;Kyrgyzstan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;15;15;1310;1310;342;1660;2748;2726;3530;5166;8460;9815;11196;11196;22459;25031;29328;46325;62554;65655;62873;35829;31721;33833.6;48072;59506;44164;56418;67577;53345
-113;'417;Kyrgyzstan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;344;344;30;2810;200;200;200;88;7;6;61;61;163;50;0;959;102;368;285;83;0;1831;1930;2950;8484;10868;11427;13312
-113;'417;Kyrgyzstan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;62;62;22;16;20;27;15;19;1;3;37;37;19;14;0;184;405;198;144;38;0;461.7;360;444;437;1823;2099;1891
-113;'417;Kyrgyzstan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;26;26;26;26;26;3200;1803;900;900;19722;1416;2082;2700;2700;3871;2858;3816;5700;8500;24600;12500;6792;14310;19500;25267;19000;18200;11500;17200;19061
-113;'417;Kyrgyzstan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;9;9;18;18;9;78;163;156;146;4491;534;867;1095;1095;2406;1445;1979;2997;5452;6763;7083;3821;4235;4223.9;5557;5666;4374;5209;9037;7160
-113;'417;Kyrgyzstan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;52;0;0;3;3;3;0;0;6;0;0;0;0;0;0;0;0;0;700;100;95
-113;'417;Kyrgyzstan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;16;0;3;2;0;16;0;0;1;1;1;0;0;2;0;0;0;0;0;0;0;0;0;46;38;45
-113;'417;Kyrgyzstan;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;453
-113;'417;Kyrgyzstan;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;124
-113;'417;Kyrgyzstan;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-113;'417;Kyrgyzstan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-113;'417;Kyrgyzstan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;13111;13000;9000;32000;34700;14500;73000;0;19649;21833;21833;21833;43578;59400;67500;80400;130800;135800;101700;52610;51847;32095;64106;46751;199600;50024;53233;320331
-113;'417;Kyrgyzstan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1292;1292;333;1185;1551;1569;1928;0;4357;5611;5611;5611;13926;15010;18284;27295;35262;34460;30684;15778;16006;9415.7;18759;20578;11482;23498;26726;15821
-113;'417;Kyrgyzstan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;344;0;2800;200;200;200;0;7;6;0;0;0;0;0;155;0;0;0;0;0;0;200;900;5900;1100;153;0
-113;'417;Kyrgyzstan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;14;12;12;13;0;1;2;0;0;0;0;0;38;5;0;0;0;0;0;68;69;48;143;15;0
-113;'417;Kyrgyzstan;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2247;1213;1213;1213;1213;1308;2000;3200;5200;12200;17400;17900;10911;2860;10258;21325;42700;47500;31600;40700;56631
-113;'417;Kyrgyzstan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;182;182;182;182;526;750;1337;2257;5004;7457;6621;4036;1058;3794.1;7889;7323;6844;7034;8410;10113
-113;'417;Kyrgyzstan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;0;0;0;0;0;0;400;0;0;0;300;19;0
-113;'417;Kyrgyzstan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;98.5;0;0;0;55;10;0
-113;'417;Kyrgyzstan;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;3160;2559;2559;708;6841;6694;8600;8600;31448;12060;23470;49396;43300;62584;73131;39885;11382;96187;84607;132593;109442;102974;93896;81314
-113;'417;Kyrgyzstan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;1034;1001;1456;338;3387;3155;4308;4308;5601;7826;7728;13776;16836;16975;18485;12194;10422;16399.9;15867;25939;21464;20677;23404;20251
-113;'417;Kyrgyzstan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;30;10;0;0;0;29;0;0;58;58;160;50;0;798;102;368;285;83;0;1431;1730;2050;2584;8768;11155;13217
-113;'417;Kyrgyzstan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;6;2;5;13;2;2;0;1;36;36;18;14;0;144;400;198;144;38;0;363.2;292;375;389;1579;2036;1846
-113;'417;Kyrgyzstan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;1470;1695;1695;2;4962;4302;6216;6216;0;4189;14304;12018;15500;18095;23788;10161;571;10313;8292;13176;9018;12642;17708;15715
-113;'417;Kyrgyzstan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;710;819;1063;141;2968;2573;3719;3719;0;3303;3637;5191;6824;5052;6121;3608;4778;3718.1;2238;2886;1602;4250;8075;7165
-113;'417;Kyrgyzstan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;10;0;0;0;0;0;0;46;46;0;0;0;31;100;0;0;0;0;0;0;0;0;0;14;6008
-113;'417;Kyrgyzstan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;1;12;1;1;0;1;32;32;0;0;0;24;399;0;0;0;0;0;0;0;0;0;31;598
-113;'417;Kyrgyzstan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;462;451;451;0;706;1773;1921;1921;28988;7756;7560;34901;26000;44104;48483;28546;10483;85386;75840;112629;99554;89979;75715;64151
-113;'417;Kyrgyzstan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;114;111;345;13;182;457;496;496;5209;4438;3949;8086;9702;11840;12219;8103;5567;12632.6;13565;22408;19751;16394;15285;12949
-113;'417;Kyrgyzstan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;12;5;50;0;675;0;368;285;83;0;1176;1730;2050;2584;8768;11141;6919
-113;'417;Kyrgyzstan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;4;1;14;0;114;0;198;144;38;0;258.6;292;375;389;1579;2005;1245
-113;'417;Kyrgyzstan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1228;413;413;706;1173;619;463;463;2460;115;1606;2477;1800;385;860;1178;328;488;475;6788;870;353;473;1448
-113;'417;Kyrgyzstan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;210;71;48;184;237;125;93;93;392;85;142;499;310;83;145;483;77;49.2;64;645;111;33;44;137
-113;'417;Kyrgyzstan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;0;0;0;29;0;0;0;0;155;0;0;92;2;0;0;0;0;255;0;0;0;0;0;290
-113;'417;Kyrgyzstan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;4;1;1;1;0;0;0;0;17;0;0;6;1;0;0;0;0;104.6;0;0;0;0;0;3
-113;'417;Kyrgyzstan;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-113;'417;Kyrgyzstan;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-113;'417;Kyrgyzstan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;300;300;300;1700;2304;715;443;0;0;25;32;0;12;2;182;576;747;458;1602;2300;3000;6082;2996;3323;5246
-113;'417;Kyrgyzstan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;11;13;18;888;860;143;152;0;0;110;9;0;12;5;43;149;153;68;675.7;525;537;644;502;845;770
-113;'417;Kyrgyzstan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;300;600;600;1000;928;871;916;800;800;1801;0;0;77;0;0;0;0;0;2;0;0;0;200;1500;347
-113;'417;Kyrgyzstan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;18;13;83;69;50;63;66;66;189;0;0;27;0;0;0;0;0;0.19;0;0;0;29;242;65
-113;'417;Kyrgyzstan;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1500;1671;200;405;0;0;25;8;0;0;2;25;26;94;224;202;400;500;93;301;423;266
-113;'417;Kyrgyzstan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;881;816;104;148;0;0;110;5;0;0;3;20;60;65;46;0.6;366;299;74;5;219;461
-113;'417;Kyrgyzstan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;77;0;0;0;0;0;0;0;0;0;0;0;27
-113;'417;Kyrgyzstan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0;0;0;0;0;0;19;0;17
-113;'417;Kyrgyzstan;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;0;1300;1471;0;405;0;0;21;4;0;0;20;18;7;94;327;100;408;600;110;139;485;332
-113;'417;Kyrgyzstan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;0;0;0;778;713;1;148;0;0;107;2;0;0;26;3;3;65;155;112.9;374;331;92;39;281;418
-113;'417;Kyrgyzstan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27
-113;'417;Kyrgyzstan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0;17
-113;'417;Kyrgyzstan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;100;0;0;300;145
-113;'417;Kyrgyzstan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;138;268
-113;'417;Kyrgyzstan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;;;;;;;
-113;'417;Kyrgyzstan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;;;;;;;
-113;'417;Kyrgyzstan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;21;4;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;107;2;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1300;1471;0;405;0;0;0;0;0;0;0;18;0;94;124;0;200;400;93;101;123;107
-113;'417;Kyrgyzstan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;778;713;1;148;0;0;0;0;0;0;0;3;0;64;46;0;366;299;74;2;81;150
-113;'417;Kyrgyzstan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27
-113;'417;Kyrgyzstan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0;17
-113;'417;Kyrgyzstan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;500;500;0;0;0;0;0;0;0;0;0;18;0;0;100;0;0;0;0;1;123;0
-113;'417;Kyrgyzstan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;303;303;0;0;0;0;0;0;0;0;0;3;0;0;18;0;0;0;0;1;81;0
-113;'417;Kyrgyzstan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;600;801;0;400;0;0;0;0;0;0;0;0;0;94;24;0;200;400;76;0;0;107
-113;'417;Kyrgyzstan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;297;330;0;145;0;0;0;0;0;0;0;0;0;64;28;0;366;299;57;0;0;150
-113;'417;Kyrgyzstan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27
-113;'417;Kyrgyzstan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17
-113;'417;Kyrgyzstan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;100;0;0
-113;'417;Kyrgyzstan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;1;0;0
-113;'417;Kyrgyzstan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;0;0
-113;'417;Kyrgyzstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;100;45;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;70;22;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;100;125;0;5;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;108;58;1;3;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-113;'417;Kyrgyzstan;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;20;0;7;0;103;100;8;100;17;38;62;80
-113;'417;Kyrgyzstan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;0;0;0;0;0;0;0;0;0;0;0;0;0;26;0;3;0;109;112.9;8;32;18;37;62;0
-113;'417;Kyrgyzstan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;200;200;0;0;0;4;4;0;0;2;7;26;0;0;202;0;0;0;200;0;14
-113;'417;Kyrgyzstan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;103;103;103;0;0;0;3;3;0;0;3;17;60;0;0;0.6;0;0;0;3;0;43
-113;'417;Kyrgyzstan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;77;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;27;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;200;200;0;0;0;0;0;0;0;0;0;0;0;270;322;5500;300;0;100;0;20
-113;'417;Kyrgyzstan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;103;103;103;0;0;0;0;0;0;0;0;0;0;0;297;392.8;1185;315;0;85;0;10
-113;'417;Kyrgyzstan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;73;300;300;300;200;633;515;38;0;0;0;24;0;12;0;157;550;653;234;1400;1900;2500;5989;2695;2900;4980
-113;'417;Kyrgyzstan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;11;13;18;7;44;39;4;0;0;0;4;0;12;2;23;89;88;22;675.1;159;238;570;497;626;309
-113;'417;Kyrgyzstan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;300;600;600;1000;928;871;916;800;800;1801;0;0;0;0;0;0;0;0;2;0;0;0;200;1500;320
-113;'417;Kyrgyzstan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;18;13;83;69;50;63;66;66;189;0;0;0;0;0;0;0;0;0.19;0;0;0;10;242;48
-113;'417;Kyrgyzstan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;6686;15623;2700;2400;2400;2400;367;304;158;1120;740;800;730;730;730;1200;700;800;800;800;800;800;800
-113;'417;Kyrgyzstan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;34;34;6150;6126;9400;18917;10440;11100;13900;14695;18477;17753;17216;17216;12267;23172;20314;24508;28200;27500;34667;35153;20720;19553;22550;27140;15380;23200;22800;19380
-113;'417;Kyrgyzstan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;48;48;4169;4169;4330;5772;6987;6525;6761;8347;10944;11743;12725;12725;11119;17666;19838;24573;28393;27197;28469;25325;30279;16141.4;22674;24491;13282;18561;26882;20296
-113;'417;Kyrgyzstan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;250;250;0;178;0;1000;0;637;255;792;131;131;719;137;374;464;1060;120;314;618;249;527;252;2010;1520;1500;500;558
-113;'417;Kyrgyzstan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;237;237;0;64;16;3;45;397;105;185;119;119;842;167;70;399;51;126;142;278;149;274.8;247;1179;635;633;335;297
-113;'417;Kyrgyzstan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;400;400;28;36;12;0;0;770;600;600;600;900;200;100;100;100;100;100;100
-113;'417;Kyrgyzstan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;23;23;3405;3426;5000;3540;3920;4500;5200;5820;7228;6800;7900;7900;8158;7491;10714;10761;12700;13600;16460;16299;9170;9389;13800;14600;9100;10300;8500;8344
-113;'417;Kyrgyzstan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;35;35;2360;2360;1625;1894;2640;2920;3101;4209;5290;5106;6414;6414;6833;6029;9944;11204;12872;13180;14322;13355;7830;9111.8;15776;15139;9140;10336;10504;8176
-113;'417;Kyrgyzstan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;238;238;0;178;0;1000;0;582;123;133;30;30;46;55;6;9;0;20;0;304;167;20;200;0;10;0;0;4
-113;'417;Kyrgyzstan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;231;231;0;58;10;0;33;369;73;101;66;66;88;78;16;14;0;35;0;101;57;25.9;219;0;46;0;0;2
-113;'417;Kyrgyzstan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;9;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3179;3200;3600;2900;3000;2800;2000;2429;3174;3034;2800;2800;3327;3112;3700;3500;2600;3100;3000;2169;325;1500;1600;1700;1400;2100;900;1169
-113;'417;Kyrgyzstan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2068;2068;1590;1250;1669;1430;858;962;1410;1508;1595;1595;2225;1846;2341;2494;1826;2147;1683;966;162;815.2;1331;987;665;812;523;584
-113;'417;Kyrgyzstan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;171;171;0;78;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;148;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;168;168;0;47;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;400;400;21;27;9;0;0;770;600;600;600;900;200;100;100;100;100;100;100
-113;'417;Kyrgyzstan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;23;23;226;226;1400;640;920;1700;3200;3391;4054;3766;5100;5100;4831;4379;7014;7261;10100;10500;13460;14130;8845;7889;12200;12900;7700;8200;7600;7175
-113;'417;Kyrgyzstan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;35;35;292;292;35;644;971;1490;2243;3247;3880;3598;4819;4819;4608;4183;7603;8710;11046;11033;12639;12389;7668;8296.6;14445;14152;8475;9524;9981;7592
-113;'417;Kyrgyzstan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;67;67;;100;0;1000;0;582;123;133;30;30;46;55;6;9;0;20;0;304;19;20;200;0;10;0;0;4
-113;'417;Kyrgyzstan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;;;63;63;;11;10;0;33;369;73;101;66;66;88;78;16;14;0;35;0;101;34;25.9;219;0;46;0;0;2
-113;'417;Kyrgyzstan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;9;3;0;0;770;600;600;600;900;200;100;100;100;100;100;100
-113;'417;Kyrgyzstan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;20;200;200;126;70;129;300;300;31;75;14;136;0;200;160;89;457;600;400;900;700;700;700;575
-113;'417;Kyrgyzstan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;18;110;67;109;56;98;262;262;50;36;9;164;34;202;122;72;503;615.2;517;729;588;651;853;562
-113;'417;Kyrgyzstan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;111;0;0;0;0;16;0;0;0;0;0;0;181;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;71;0;0;0;0;22;0;0;0;0;0;0;3;34;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;400;400;7;9;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;500;800;2000;2546;2933;2515;3600;3600;3600;3600;4900;4992;7100;8100;11200;11161;7621;6300;10000;11200;5900;6000;6700;5391
-113;'417;Kyrgyzstan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;421;574;1482;2023;2552;2281;3367;3367;3367;3367;5203;5999;7724;8315;10138;9345;6381;6728.5;12558;12747;6975;7353;9030;5951
-113;'417;Kyrgyzstan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;50;106;130;2;2;2;54;6;9;0;0;0;0;0;0;200;0;10;0;0;4
-113;'417;Kyrgyzstan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;33;59;101;41;41;41;75;16;14;0;0;0;0;0;0;219;0;46;0;0;1
-113;'417;Kyrgyzstan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;9;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;500;400;700;1000;719;1051;1122;1200;1200;1200;704;2100;2133;3000;2200;2100;2880;767;989;1800;800;1100;1500;200;1209
-113;'417;Kyrgyzstan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;547;532;806;694;1115;1272;1219;1190;1190;1191;780;2391;2547;3288;2516;2379;2972;784;952.9;1370;676;912;1520;98;1079
-113;'417;Kyrgyzstan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;0;421;17;3;28;28;28;1;0;0;0;20;0;123;19;20;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;33;265;14;0;25;25;25;3;0;0;0;35;0;98;0;25.9;0;0;0;0;0;1
-113;'417;Kyrgyzstan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;6686;15623;2000;2000;2000;2000;339;268;146;1120;740;30;130;130;130;300;500;700;700;700;700;700;700
-113;'417;Kyrgyzstan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;11;2745;2700;4400;15377;6520;6600;8700;8875;11249;10953;9316;9316;4109;15681;9600;13747;15500;13900;18207;18854;11550;10164;8750;12540;6280;12900;14300;11036
-113;'417;Kyrgyzstan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;13;1809;1809;2705;3878;4347;3605;3660;4138;5654;6637;6311;6311;4286;11637;9894;13369;15521;14017;14147;11970;22449;7029.6;6898;9352;4142;8225;16378;12120
-113;'417;Kyrgyzstan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;0;0;0;0;55;132;659;101;101;673;82;368;455;1060;100;314;314;82;507;52;2010;1510;1500;500;554
-113;'417;Kyrgyzstan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;6;6;3;12;28;32;84;53;53;754;89;54;385;51;91;142;177;92;248.9;28;1179;589;633;335;295
-113;'417;Kyrgyzstan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1600;1800;1900;1900;1900;1900;113;30;14;80;0;30;100;100;100;300;500;700;700;700;700;700;700
-113;'417;Kyrgyzstan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;20;100;100;50;32;55;16;16;697;1014;200;384;600;800;753;659;590;781;600;500;400;500;1300;1950
-113;'417;Kyrgyzstan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;83;85;45;41;22;42;21;21;1075;1447;347;766;1276;1340;1029;720;597;704;427;520;422;506;1759;2325
-113;'417;Kyrgyzstan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;0;0;0;0;126;0;3;110;17;0;0;1;20;0;0;0;0;0;0;1
-113;'417;Kyrgyzstan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;0;0;0;0;126;0;0;44;0;0;0;1;13;0;0;0;0;0;0;1
-113;'417;Kyrgyzstan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;5086;13823;100;100;100;100;113;120;96;50;20;0;30;30;30;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4780;5800;6000;7600;3016;8208;6043;9000;9000;3112;14367;9100;12790;14000;12900;17426;18118;10751;9373;8100;12000;5820;12300;12800;8772
-113;'417;Kyrgyzstan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2818;3422;2932;2756;1236;3335;2675;5480;5480;2401;9380;7907;11184;12860;12080;12905;11250;7279;6228.6;6309;8664;3607;7461;14233;9214
-113;'417;Kyrgyzstan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;48;112;655;101;101;547;82;365;345;43;100;14;313;62;507;52;2010;1510;1500;500;532
-113;'417;Kyrgyzstan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;2;11;15;28;76;53;53;628;89;54;341;50;91;18;176;79;248.9;27;1179;589;633;335;263
-113;'417;Kyrgyzstan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;20;30;9;50;20;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4700;5200;5000;2360;6927;4810;4800;4800;286;2419;4600;7698;8700;6900;8200;5841;3330;3300;2300;3600;2500;2500;4900;4753
-113;'417;Kyrgyzstan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923;2777;2393;2104;900;2483;2000;2020;2020;150;1652;2359;4997;5805;4853;5257;2818;1607;1582.3;1083;1970;1088;1303;2871;2089
-113;'417;Kyrgyzstan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;100;100;546;0;0;0;0;0;0;200;2;447;0;2000;1500;1500;200;351
-113;'417;Kyrgyzstan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;0;0;49;49;624;0;0;0;0;0;0;85;54;177.6;0;1172;582;633;115;165
-113;'417;Kyrgyzstan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;5086;13823;100;100;100;100;31;30;9;0;0;0;30;30;30;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;200;1000;351;783;516;1600;1600;1076;1031;3100;3182;4200;3900;4300;3731;3482;3900;3800;4300;3000;5200;4400;2697
-113;'417;Kyrgyzstan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;206;172;290;217;593;327;1852;1852;899;87;4806;4784;5997;5596;4092;3777;3525;3269.2;3509;3383;2360;3352;5469;5837
-113;'417;Kyrgyzstan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;48;0;0;14;0;0;0;2;0;0;0;0;0
-113;'417;Kyrgyzstan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;9;9;1;1;0;0;0;0;0;12;0;0;18;8;0;0;2;0;0;0;0;0
-113;'417;Kyrgyzstan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;31;30;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;800;600;600;271;480;717;1800;1800;1482;3209;800;1357;1000;1700;4467;8409;3898;2000;1700;3900;20;2600;3400;1045
-113;'417;Kyrgyzstan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;436;328;152;105;256;348;1220;1220;964;3296;434;1016;994;1332;3224;4591;2128;1266;1532;3190;3;2672;5790;1055
-113;'417;Kyrgyzstan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;8;0;1;1;1;82;280;294;43;100;0;61;60;50;40;0;0;0;200;149
-113;'417;Kyrgyzstan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;1;2;1;7;2;4;4;4;89;20;328;50;91;0;65;25;65.6;18;0;0;0;185;71
-113;'417;Kyrgyzstan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;31;30;69;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;1000;34;18;0;800;800;268;7708;600;553;100;400;459;137;41;173;300;200;300;2000;100;277
-113;'417;Kyrgyzstan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;3;39;210;14;3;0;388;388;388;4345;308;387;64;299;332;64;19;111.1;185;121;156;134;103;233
-113;'417;Kyrgyzstan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;47;104;655;0;0;0;0;85;3;0;0;0;52;0;10;10;10;10;0;100;32
-113;'417;Kyrgyzstan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;20;73;0;0;0;0;34;1;0;0;0;18;0;5.7;7;7;7;0;35;27
-113;'417;Kyrgyzstan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;113;118;36;990;720;0;0;0;0;0;0;0;0;0;0;0;0
-113;'417;Kyrgyzstan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;10500;700;500;1000;5809;3009;4855;300;300;300;300;300;573;900;200;28;77;209;10;50;40;60;100;200;314
-113;'417;Kyrgyzstan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2705;1007;842;588;859;2861;2297;3920;810;810;810;810;1640;1419;1385;597;213;0;14573;97;162;168;113;258;386;581
-113;'417;Kyrgyzstan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;20;4;0;0;0;0;0;0;1000;0;300;0;0;0;0;0;0;0;0;21
-113;'417;Kyrgyzstan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;1;1;8;4;8;0;0;0;0;0;0;1;0;124;0;0;0;1;0;0;0;0;31
-113;'417;Kyrgyzstan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19115.8;19185;35637;16811;27524;28494;17622
-113;'417;Kyrgyzstan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492.4;548;1521;1898;3868;6650;2455
-113;'417;Kyrgyzstan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936.7;1488;1800;1606;1963;2260;3
-113;'417;Kyrgyzstan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.4;5;305;0;22;21;0
-113;'417;Kyrgyzstan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785.4;1415;1517;1490;1801;2224;3
-113;'417;Kyrgyzstan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.4;2;305;0;22;21;0
-113;'417;Kyrgyzstan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151.3;73;283;116;162;36;0
-113;'417;Kyrgyzstan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0
-113;'417;Kyrgyzstan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193.4;1246;206;117;26;0;201
-113;'417;Kyrgyzstan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8;5;0;38;5;0;29
-113;'417;Kyrgyzstan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339.8;587;1907;1503;4109;1466;418
-113;'417;Kyrgyzstan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;7;3;15;58;1
-113;'417;Kyrgyzstan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4755.9;4732;21515;6704;7917;8715;1869
-113;'417;Kyrgyzstan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5;21;165;56;157;849;1303
-113;'417;Kyrgyzstan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29
-113;'417;Kyrgyzstan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41
-113;'417;Kyrgyzstan;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-113;'417;Kyrgyzstan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10793.4;10730;9539;5873;10799;11603;13601
-113;'417;Kyrgyzstan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249.3;460;372;1681;3190;262;0
-113;'417;Kyrgyzstan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035.8;56;46;273;2156;4079;522
-113;'417;Kyrgyzstan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213.8;40;650;56;382;195;15
-113;'417;Kyrgyzstan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060.8;346;624;735;554;371;1008
-113;'417;Kyrgyzstan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.6;12;22;64;97;5265;1107
-113;'417;Kyrgyzstan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26077.5;39489;41292;25623;41140;53711;48646
-113;'417;Kyrgyzstan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3722.7;2328;3049;1852;1601;3552;2627
-113;'417;Kyrgyzstan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80.8;45;144;217;224;315;120
-113;'417;Kyrgyzstan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;10;242;0
-113;'417;Kyrgyzstan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1213.4;0;1319;682;1963;2896;2968
-113;'417;Kyrgyzstan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;903;10
-113;'417;Kyrgyzstan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590.3;3839;4412;3559;3623;6904;4922
-113;'417;Kyrgyzstan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483.3;59;12;553;17;188;648
-113;'417;Kyrgyzstan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7496.5;14847;12590;10536;11479;15168;14257
-113;'417;Kyrgyzstan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023.4;481;1262;697;897;1266;1049
-113;'417;Kyrgyzstan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14696.5;20758;22827;10629;23851;28428;26379
-113;'417;Kyrgyzstan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2216;1788;1761;602;677;953;920
-120;'418;Lao People's Democratic Republic;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90256;138668;205877;228888;378737.75;509026.52;449397.52
-120;'418;Lao People's Democratic Republic;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341364;524009;658167;517918;1208986;1268784.31;998518
-120;'418;Lao People's Democratic Republic;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;305;276;296;75;321;321;535;401;825;1233;794;794;598;420;420;420;420;420;420;420;150;200;200;200;175;180;470;270;140;950;950;371;675;521;1214;1214;2022;902;704;195;1748;1748;1748;1748;1748;1748;1748;16332;16122;17407;19371;19714;23726;18601;20477;25858;25722;72747;102449;137942;292558.75;436481.52;378635.52
-120;'418;Lao People's Democratic Republic;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;48;14;41;28;75;342;1770;2136;1893;1715;1635;1527;1850;2100;2150;1800;1628;7531;8706;10900;4746;3800;3764;4518;4992;10251;2240;9370;18405;20493;35799;47902;70066;106327;70427;95093;41512;23166;24055;72229;106844;71075;85256;90462;89271;88521;140767;168540;191279;320604;617984;623882;972363;1732617;949115;372817;305718;462722;551166;482658;1163536;1251628.31;986439
-120;'418;Lao People's Democratic Republic;1861;Roundwood;5516;Production;m3;5041201;5076288;5114765;5146931;5185388;5211835;5270373;5255003;5324724;5303538;5340588;5402593;5519207;5614492;5577951;5606467;5602793;5686993;5584219;5598824;5463342;5499921;5588318;5524399;5660034;5673168;5794727;5929899;5906825;6082031;6316100;6047817;6344513;6381053;6724394;6546594;6482929;6385598;6708782;6438960;6455008;6380734;6322136;6388214;6398968;6475516;6471700;6524500;6434916;6979951;7566862;7454407;8042574;8431357;8120748;8080354;7240806;7202084;7164171;7127051;7090081;7053880;7018433
-120;'418;Lao People's Democratic Republic;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;218;266;0;0;0;405;54;7;1;29;5011;204;49;15;382.6;4.6
-120;'418;Lao People's Democratic Republic;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;16;0;0;0;367;6;2;1;7;1225;25;13;1;331.52;0.52
-120;'418;Lao People's Democratic Republic;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;3200;2500;500;600;700;800;700;15000;16900;17800;9900;6800;5000;9900;14200;34000;3800;10000;25600;39400;23100;90920;49400;206100;329700;351700;120400;40400;68500;268000;154000;29000;54000;171000;135000;156000;172000;220002;127002;213422;431247;322641;308101;616563;1372861;657899;115009;123361;88781;61451;209578;93941;73022
-120;'418;Lao People's Democratic Republic;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;63;27;50;100;150;200;214;6936;7790;8200;4500;3100;3319;4028;4121;9989;885;3199;5748;3465;3003;10834;11919;67410;42799;46309;14612;12179;9601;68666;53046;17283;31431;36614;35254;34162;71424;76432;52514;113635;277329;252805;451531;964640;487201;188671;156467;135549;103182;42083;109957;83495;43437
-120;'418;Lao People's Democratic Republic;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60000;150000;120000;156000;230000;491000;242000;209000;172000;294000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5010;202;49;15;3.6;3.6
-120;'418;Lao People's Democratic Republic;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1225;13;13;1;0.52;0.52
-120;'418;Lao People's Democratic Republic;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3075;183;403;0;1127;34;571
-120;'418;Lao People's Democratic Republic;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248;321;432;69;440;122;269
-120;'418;Lao People's Democratic Republic;1863;Roundwood, non-coniferous;5516;Production;m3;5041201;5076288;5114765;5146931;5185388;5211835;5270373;5255003;5324724;5303538;5340588;5402593;5519207;5614492;5577951;5606467;5602793;5686993;5584219;5598824;5463342;5499921;5588318;5524399;5660034;5673168;5794727;5929899;5906825;6022031;6166100;5927817;6188513;6151053;6233394;6304594;6273929;6213598;6414782;6438960;6455008;6380734;6322136;6388214;6398968;6475516;6471700;6524500;6434916;6979951;7566862;7454407;8042574;8431357;8120748;8080354;7240806;7202084;7164171;7127051;7090081;7053880;7018433
-120;'418;Lao People's Democratic Republic;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;1;2;0;0;379;1
-120;'418;Lao People's Democratic Republic;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;12;0;0;331;0
-120;'418;Lao People's Democratic Republic;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111934;123178;88378;61451;208451;93907;72451
-120;'418;Lao People's Democratic Republic;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154219;135228;102750;42014;109517;83373;43168
-120;'418;Lao People's Democratic Republic;1864;Wood fuel;5516;Production;m3;4972201;4993288;5014765;5035931;5057388;5078835;5100373;5122003;5143724;5165538;5199588;5235593;5315207;5350492;5371951;5435467;5430793;5469993;5375219;5388824;5289342;5285921;5337318;5296399;5323034;5368168;5486727;5618899;5592825;5627031;5679100;5692817;5715513;5715053;5730394;5764594;5797929;5814598;5842782;5871960;5885008;5898734;5913136;5928214;5943968;5943516;5943700;5944500;5945916;5947951;5934862;5922407;5910574;5899357;5888748;5848354;5808806;5770084;5732171;5695051;5658081;5621880;5586433
-120;'418;Lao People's Democratic Republic;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;49;49;4;3.6;3.6
-120;'418;Lao People's Democratic Republic;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;13;13;1;0.52;0.52
-120;'418;Lao People's Democratic Republic;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;600;1000;700;700;200;200;0;0;0;0;0;0;0;0;0;2;2;189;83;40;408;71;19;2112;;;1451;1451;1451;1451;1461
-120;'418;Lao People's Democratic Republic;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;21;123;88;88;36;36;0;0;0;0;0;0;0;0;0;0;0;83;20;22;136;28;3;197;;;14;14;14;14;16
-120;'418;Lao People's Democratic Republic;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;4;3.6;3.6
-120;'418;Lao People's Democratic Republic;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;1;0.52;0.52
-120;'418;Lao People's Democratic Republic;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10
-120;'418;Lao People's Democratic Republic;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-120;'418;Lao People's Democratic Republic;1628;Wood fuel, non-coniferous;5516;Production;m3;4972201;4993288;5014765;5035931;5057388;5078835;5100373;5122003;5143724;5165538;5199588;5235593;5315207;5350492;5371951;5435467;5430793;5469993;5375219;5388824;5289342;5285921;5337318;5296399;5323034;5368168;5486727;5618899;5592825;5627031;5679100;5692817;5715513;5715053;5730394;5764594;5797929;5814598;5842782;5871960;5885008;5898734;5913136;5928214;5943968;5943516;5943700;5944500;5945916;5947951;5934862;5922407;5910574;5899357;5888748;5848354;5808806;5770084;5732171;5695051;5658081;5621880;5586433
-120;'418;Lao People's Democratic Republic;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1451;1451;1451;1451;1451
-120;'418;Lao People's Democratic Republic;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14
-120;'418;Lao People's Democratic Republic;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;600;1000;700;700;200;200;0;0;0;0;0;0;0;0;0;2;2;189;83;40;408;71;19;2112;;;;;;;
-120;'418;Lao People's Democratic Republic;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;21;123;88;88;36;36;0;0;0;0;0;0;0;0;0;0;0;83;20;22;136;28;3;197;;;;;;;
-120;'418;Lao People's Democratic Republic;1865;Industrial roundwood;5516;Production;m3;69000;83000;100000;111000;128000;133000;170000;133000;181000;138000;141000;167000;204000;264000;206000;171000;172000;217000;209000;210000;174000;214000;251000;228000;337000;305000;308000;311000;314000;455000;637000;355000;629000;666000;994000;782000;685000;571000;866000;567000;570000;482000;409000;460000;455000;532000;528000;580000;489000;1032000;1632000;1532000;2132000;2532000;2232000;2232000;1432000;1432000;1432000;1432000;1432000;1432000;1432000
-120;'418;Lao People's Democratic Republic;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;218;266;0;0;0;405;54;7;1;29;5011;155;0;11;379;1
-120;'418;Lao People's Democratic Republic;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;16;0;0;0;367;6;2;1;7;1225;12;0;0;331;0
-120;'418;Lao People's Democratic Republic;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;3200;2500;500;600;700;800;700;15000;16900;17800;9900;6800;5000;9900;14200;34000;3800;10000;25600;39400;23100;90698;48800;205100;329000;351000;120200;40200;68500;268000;154000;29000;54000;171000;135000;156000;172000;220000;127000;213233;431164;322601;307693;616492;1372842;655787;115009;123361;87330;60000;208127;92490;71561
-120;'418;Lao People's Democratic Republic;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;63;27;50;100;150;200;214;6936;7790;8200;4500;3100;3319;4028;4121;9989;885;3199;5748;3465;3003;10825;11898;67287;42711;46221;14576;12143;9601;68666;53046;17283;31431;36614;35254;34162;71424;76432;52514;113552;277309;252783;451395;964612;487198;188474;156467;135549;103168;42069;109943;83481;43421
-120;'418;Lao People's Democratic Republic;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;150000;120000;156000;230000;491000;242000;209000;172000;294000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;218;266;0;0;0;266;0;0;0;0;5010;153;0;11;0;0
-120;'418;Lao People's Democratic Republic;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;16;0;0;0;10;0;0;0;0;1225;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;11700;75085;16700;151900;178700;113000;86000;6000;16100;0;0;0;0;0;0;0;0;0;0;6233;2164;2601;4693;26492;11842;4248;3075;183;403;0;1127;34;561
-120;'418;Lao People's Democratic Republic;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;886;8183;4398;55611;13758;13712;9794;7361;3385;0;0;0;0;0;0;0;0;0;0;3384;1437;1702;1395;5123;1321;465;2248;321;432;69;440;122;267
-120;'418;Lao People's Democratic Republic;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;218;266;0;0;0;266;0;0;0;0;5010;153;0;11;0;0
-120;'418;Lao People's Democratic Republic;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;16;0;0;0;10;0;0;0;0;1225;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;11700;75085;16700;151900;178700;113000;86000;6000;16100;0;0;0;0;0;0;0;0;0;0;6233;2164;2601;4693;26492;11842;4248;3075;183;403;0;1127;34;561
-120;'418;Lao People's Democratic Republic;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;886;8183;4398;55611;13758;13712;9794;7361;3385;0;0;0;0;0;0;0;0;0;0;3384;1437;1702;1395;5123;1321;465;2248;321;432;69;440;122;267
-120;'418;Lao People's Democratic Republic;1867;Industrial roundwood, non-coniferous;5516;Production;m3;69000;83000;100000;111000;128000;133000;170000;133000;181000;138000;141000;167000;204000;264000;206000;171000;172000;217000;209000;210000;174000;214000;251000;228000;337000;305000;308000;311000;314000;395000;487000;235000;473000;436000;503000;540000;476000;399000;572000;567000;570000;482000;409000;460000;455000;532000;528000;580000;489000;1032000;1632000;1532000;2132000;2532000;2232000;2232000;1432000;1432000;1432000;1432000;1432000;1432000;1432000
-120;'418;Lao People's Democratic Republic;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;54;7;1;29;1;2;0;0;379;1
-120;'418;Lao People's Democratic Republic;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;6;2;1;7;0;12;0;0;331;0
-120;'418;Lao People's Democratic Republic;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9400;11400;15613;32100;53200;150300;238000;34200;34200;52400;268000;154000;29000;54000;171000;135000;156000;172000;220000;127000;207000;429000;320000;303000;590000;1361000;651539;111934;123178;86927;60000;207000;92456;71000
-120;'418;Lao People's Democratic Republic;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2117;2642;7500;11676;28953;32509;4782;4782;6216;68666;53046;17283;31431;36614;35254;34162;71424;76432;52514;110168;275872;251081;450000;959489;485877;188009;154219;135228;102736;42000;109503;83359;43154
-120;'418;Lao People's Democratic Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;15;0;2;0;0;379;0
-120;'418;Lao People's Democratic Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;6;0;12;0;0;331;0
-120;'418;Lao People's Democratic Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9400;11400;15613;32100;53200;150300;238000;34200;34200;52400;268000;154000;29000;54000;171000;135000;156000;172000;220000;127000;207000;429000;320000;303000;590000;1361000;651539;111934;123178;86927;60000;207000;70687;71000
-120;'418;Lao People's Democratic Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2117;2642;7500;11676;28953;32509;4782;4782;6216;68666;53046;17283;31431;36614;35254;34162;71424;76432;52514;110168;275872;251081;450000;959489;485877;188009;154219;135228;102736;42000;109503;61089;43154
-120;'418;Lao People's Democratic Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;54;0;0;14;1;0;0;0;0;1
-120;'418;Lao People's Democratic Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;6;0;0;1;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;21769;0
-120;'418;Lao People's Democratic Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;22270;0
-120;'418;Lao People's Democratic Republic;1868;Sawlogs and veneer logs;5516;Production;m3;14000;27000;42000;52000;68000;71000;107000;69000;115000;71000;72000;96000;132000;190000;131000;95000;95000;139000;130000;130000;93000;131000;166000;141000;248000;213000;213000;213000;213000;350000;531000;246000;516000;550000;875000;660000;560000;442000;734000;435000;438000;350000;277000;328000;323000;400000;396000;448000;357000;900000;1500000;1400000;2000000;2400000;2100000;2100000;1300000;1300000;1300000;1300000;1300000;1300000;1300000
-120;'418;Lao People's Democratic Republic;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;3200;2500;500;600;700;800;700;15000;16900;17800;9900;6800;5000;9900;14200;34000;3800;10000;25600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;63;27;50;100;150;200;214;6936;7790;8200;4500;3100;3319;4028;4121;9989;885;3199;5748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;150000;120000;156000;230000;491000;242000;209000;172000;294000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;14000;27000;42000;52000;68000;71000;107000;69000;115000;71000;72000;96000;132000;190000;131000;95000;95000;139000;130000;130000;93000;131000;166000;141000;248000;213000;213000;213000;213000;290000;381000;126000;360000;320000;384000;418000;351000;270000;440000;435000;438000;350000;277000;328000;323000;400000;396000;448000;357000;900000;1500000;1400000;2000000;2400000;2100000;2100000;1300000;1300000;1300000;1300000;1300000;1300000;1300000
-120;'418;Lao People's Democratic Republic;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;3200;2500;500;600;700;800;700;15000;16900;17800;9900;6800;5000;9900;14200;34000;3800;10000;25600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;63;27;50;100;150;200;214;6936;7790;8200;4500;3100;3319;4028;4121;9989;885;3199;5748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1871;Other industrial roundwood;5516;Production;m3;55000;56000;58000;59000;60000;62000;63000;64000;66000;67000;69000;71000;72000;74000;75000;76000;77000;78000;79000;80000;81000;83000;85000;87000;89000;92000;95000;98000;101000;105000;106000;109000;113000;116000;119000;122000;125000;129000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000
-120;'418;Lao People's Democratic Republic;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;55000;56000;58000;59000;60000;62000;63000;64000;66000;67000;69000;71000;72000;74000;75000;76000;77000;78000;79000;80000;81000;83000;85000;87000;89000;92000;95000;98000;101000;105000;106000;109000;113000;116000;119000;122000;125000;129000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000
-120;'418;Lao People's Democratic Republic;1630;Wood charcoal;5510;Production;t;6032;6197;6366;6539;6718;6901;7089;7282;7481;7685;7859;8053;8375;8602;8829;9214;9436;9811;9772;10056;9955;10162;10542;10587;10871;11202;11810;12494;12559;12892;13357;13682;14065;14355;14717;15108;15515;15900;16330;16772;17185;17608;18042;18486;18941;19363;19800;30000;30000;35000;52000;50000;72000;95000;93000;93000;93000;127188;129223;87657;91815;205000;205000
-120;'418;Lao People's Democratic Republic;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;25;25;25;25;40;28;18;16;21;21
-120;'418;Lao People's Democratic Republic;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;514;29;29;29;29;67;4;5;4;91;91
-120;'418;Lao People's Democratic Republic;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;51;228;580;1405;1024;4530;3458;10235;9648;15416;32046;26773;50856;75000;72053;68904;37240;46200;52968;72369;69985;188048;141211
-120;'418;Lao People's Democratic Republic;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;10;43;66;235;521;763;2162;2827;3979;9210;13520;24068;35601;32727;32898;24345;31364;37385;40476;47881;98730;97532
-120;'418;Lao People's Democratic Republic;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1476;538;538;538;9;35;141;453;8;8;700057;841607;822976;210208;1434771;1404070
-120;'418;Lao People's Democratic Republic;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;70;25;25;25;2;3;71;344;10;10;38428;49616;57860;13348;93972;99757
-120;'418;Lao People's Democratic Republic;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;1100;8482;11827;16489;10726;6988;4073;6697;8152;729;359;0;7772;32;154;1183;3313
-120;'418;Lao People's Democratic Republic;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;16;245;342;535;360;224;131;647;238;70;68;0;1616;1;2;34;91
-120;'418;Lao People's Democratic Republic;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1474;536;536;536;7;33;117;0;0;0;700000;750000;822905;210132;1434742;1404050
-120;'418;Lao People's Democratic Republic;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;24;24;24;1;2;57;0;0;0;38421;45645;57858;13343;93971;99755
-120;'418;Lao People's Democratic Republic;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;1100;0;25;19;19;25;744;42;0;427;57;0;3884;32;32;1031;2941
-120;'418;Lao People's Democratic Republic;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;16;0;3;12;12;1;23;1;0;3;1;0;1515;1;1;24;76
-120;'418;Lao People's Democratic Republic;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;24;453;8;8;57;91607;71;76;29;20
-120;'418;Lao People's Democratic Republic;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;14;344;10;10;7;3971;2;5;1;2
-120;'418;Lao People's Democratic Republic;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8482;11802;16470;10707;6963;3329;6655;8152;302;302;0;3888;0;122;152;372
-120;'418;Lao People's Democratic Republic;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;339;523;348;223;108;646;238;67;67;0;101;0;1;10;15
-120;'418;Lao People's Democratic Republic;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;86;29;346;30
-120;'418;Lao People's Democratic Republic;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;51;12;103;20
-120;'418;Lao People's Democratic Republic;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7938;4287;7869.39;5419.39;182
-120;'418;Lao People's Democratic Republic;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;87;1233;1216.78;5
-120;'418;Lao People's Democratic Republic;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1
-120;'418;Lao People's Democratic Republic;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;10;10
-120;'418;Lao People's Democratic Republic;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2600;2600;150;150
-120;'418;Lao People's Democratic Republic;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;5;5
-120;'418;Lao People's Democratic Republic;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;82;25;345;29
-120;'418;Lao People's Democratic Republic;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;50;11;93;10
-120;'418;Lao People's Democratic Republic;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5338;1687;5269.39;5269.39;32
-120;'418;Lao People's Democratic Republic;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;66;1212;1211.78;0
-120;'418;Lao People's Democratic Republic;1872;Sawnwood;5516;Production;m3;7000;12000;20000;25000;30000;12000;34000;37000;58000;36000;41000;48000;66000;92000;63000;44000;46000;56000;41000;41000;16000;22000;25000;26000;16000;16000;30000;40000;100000;100000;300000;170000;262000;331000;562000;429000;498000;389000;439000;200000;185000;192000;125000;125000;130000;158000;148000;150000;250000;370000;505000;655000;1005000;1405000;805000;505000;355000;255000;255000;235000;355000;505000;505000
-120;'418;Lao People's Democratic Republic;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;28;28;0;4;4;4;17;3;233;225;29;2632;1529;154;12;173
-120;'418;Lao People's Democratic Republic;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;11;11;0;0;0;0;0;0;0;0;0;0;0;18;18;0;4;4;6;11;3;108;37;18;1021;462;40;5;29
-120;'418;Lao People's Democratic Republic;1872;Sawnwood;5916;Export quantity;m3;1600;800;1100;1000;2700;12000;33700;36900;34200;28800;41000;35100;30000;25000;20000;15000;11800;5400;8300;24600;2200;6500;3400;3800;8300;1800;9000;35100;94400;100000;285600;151974;242400;197100;130600;209800;134100;26400;41400;9500;131300;131300;131300;131300;131300;131300;163100;83875;195957;301847;434121;523140;897931;1294407;698779;354643;238773;170191;165425;154777;213011;261462;262998
-120;'418;Lao People's Democratic Republic;1872;Sawnwood;5922;Export value;1000 USD;48;14;41;28;75;342;1770;2136;1893;1715;1572;1500;1800;2000;2000;1600;1414;595;916;2700;246;700;445;490;871;262;1355;6171;12657;17028;32796;36517;57188;37350;25993;43415;25284;9431;14414;3523;52745;52745;52745;52745;52745;52745;67527;84193;131748;198861;327764;353032;493097;718407;419031;138742;109348;115498;115352;100760;175446;213124;147617
-120;'418;Lao People's Democratic Republic;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;171000;273000;140000;209000;100000;150000;0;0;0;0;0;0;0;0;0;0;20000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000
-120;'418;Lao People's Democratic Republic;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;103;0;0;2533;1529;147;12;173
-120;'418;Lao People's Democratic Republic;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;0;22;0;6;986;462;23;5;29
-120;'418;Lao People's Democratic Republic;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6036;4800;37800;42400;32200;21100;5400;5400;6500;13000;13000;13000;13000;13000;13000;7100;2759;957;3007;2281;1400;3413;3838;3289;1409;848;1737;2378;1614;1905;2523;2998
-120;'418;Lao People's Democratic Republic;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1441;1336;7321;7751;5809;2636;3052;3052;2102;3971;3971;3971;3971;3971;3971;3568;1636;649;1328;1725;1901;2001;3132;1372;894;503;1334;1098;852;1426;1515;3057
-120;'418;Lao People's Democratic Republic;1633;Sawnwood, non-coniferous;5516;Production;m3;7000;12000;20000;25000;30000;12000;34000;37000;58000;36000;41000;48000;66000;92000;63000;44000;46000;56000;41000;41000;16000;22000;25000;26000;16000;16000;30000;40000;100000;100000;300000;150000;242000;160000;289000;289000;289000;289000;289000;200000;185000;192000;125000;125000;130000;158000;148000;150000;250000;350000;500000;650000;1000000;1400000;800000;500000;350000;250000;250000;230000;350000;500000;500000
-120;'418;Lao People's Democratic Republic;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;28;0;4;4;4;17;3;130;225;29;99;0;7;0;0
-120;'418;Lao People's Democratic Republic;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;18;0;4;4;4;10;3;86;37;12;35;0;17;0;0
-120;'418;Lao People's Democratic Republic;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1600;800;1100;1000;2700;12000;33700;36900;34200;28800;41000;35100;30000;25000;20000;15000;11800;5400;8300;24600;2200;6500;3400;3800;8300;1800;9000;35100;94400;100000;285600;145938;237600;159300;88200;177600;113000;21000;36000;3000;118300;118300;118300;118300;118300;118300;156000;81116;195000;298840;431840;521740;894518;1290569;695490;353234;237925;168454;163047;153163;211106;258939;260000
-120;'418;Lao People's Democratic Republic;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;48;14;41;28;75;342;1770;2136;1893;1715;1572;1500;1800;2000;2000;1600;1414;595;916;2700;246;700;445;490;871;262;1355;6171;12657;17028;32796;35076;55852;30029;18242;37606;22648;6379;11362;1421;48774;48774;48774;48774;48774;48774;63959;82557;131099;197533;326039;351131;491096;715275;417659;137848;108845;114164;114254;99908;174020;211609;144560
-120;'418;Lao People's Democratic Republic;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;24000;30000;30000;30000;30000;30000;30000;30000;30000
-120;'418;Lao People's Democratic Republic;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;58;172;58;17;82;736;957;37;111;143;63;28;122;334;1165;56
-120;'418;Lao People's Democratic Republic;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;421;52;8;13;1283;174;71;75;59;2;55;492;141;450;31
-120;'418;Lao People's Democratic Republic;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;700;700;700;700;700;700;700;932;884;300;561;2153;227;7496;19568;23082;8891;1814;2950;1154;4943;2381;6963
-120;'418;Lao People's Democratic Republic;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;191;191;191;191;191;191;191;323;356;324;272;935;212;9644;6496;9651;6314;892;2221;1029;1663;992;3806
-120;'418;Lao People's Democratic Republic;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;2400;2400;2400;1100;1100;1000;1700;3200;5000;5000;5000;6300;6300;8000;8600;10000;10000;10000;13900;13900;13900;8500;117000;125000;100000;50000;25200;26400;27000;18600;15600;24000;24000;24000;24000;24000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000
-120;'418;Lao People's Democratic Republic;1873;Wood-based panels;5616;Import quantity;m3;300;300;400;100;300;300;400;1000;3000;5000;2000;2000;2000;;;;;;;;;;;;;;;;;;;129;100;100;800;800;1000;1000;400;0;1200;1200;1200;1200;1200;1200;1200;4001;3915;4791;5941;5850;6844;4789;6885;6030;5446;8540;22609;17626;15076.68;7403;19667
-120;'418;Lao People's Democratic Republic;1873;Wood-based panels;5622;Import value;1000 USD;23;23;140;22;81;81;135;100;438;679;240;240;240;;;;;;;;;;;;;;;;;;;45;37;37;357;357;319;319;121;0;203;203;203;203;203;203;203;1816;1690;2040;2583;2797;2792;3318;3606;4053;2610;3561;9556;7677;6703;4194;11218
-120;'418;Lao People's Democratic Republic;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1658;2400;5500;8500;16800;5200;5200;0;0;4200;4200;4200;4200;4200;4200;4200;8599;5241;5727;3594;1517;1053;3508;4470;419;7540;3594;12436;6215;8103;10087;4866
-120;'418;Lao People's Democratic Republic;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;959;1567;1611;5345;1516;1516;0;0;806;806;806;806;806;806;806;4359;2660;1928;1350;1297;1361;1643;1478;212;5667;2695;4747;1282;2227;5729.52;2537
-120;'418;Lao People's Democratic Republic;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;2400;2400;2400;1100;1100;1000;1700;3200;5000;5000;5000;6300;6300;8000;8600;10000;10000;10000;10000;10000;10000;8500;117000;125000;100000;50000;25200;26400;27000;18600;15600;24000;24000;24000;24000;24000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000
-120;'418;Lao People's Democratic Republic;1640;Plywood and LVL;5616;Import quantity;m3;300;300;400;100;300;300;400;1000;3000;5000;2000;2000;2000;;;;;;;;;;;;;;;;;;;56;100;100;100;100;600;600;0;0;500;500;500;500;500;500;500;1027;1321;2020;2460;2220;4223;1584;4506;5203;5351;6454;18151;14389;12807;6191;10855
-120;'418;Lao People's Democratic Republic;1640;Plywood and LVL;5622;Import value;1000 USD;23;23;140;22;81;81;135;100;438;679;240;240;240;;;;;;;;;;;;;;;;;;;19;37;37;47;47;198;198;0;0;174;174;174;174;174;174;174;949;1022;1124;1174;1279;1338;1217;2468;3508;2475;2631;5756;4814;5249;3685;4373
-120;'418;Lao People's Democratic Republic;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1658;2400;5500;8500;16800;5200;5200;0;0;4200;4200;4200;4200;4200;4200;4200;8599;5241;5727;3594;1491;1027;3459;4434;121;7489;3543;4989;969;3273;5257;4648
-120;'418;Lao People's Democratic Republic;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;959;1567;1611;5345;1516;1516;0;0;806;806;806;806;806;806;806;4359;2660;1928;1350;1281;1345;1624;1459;44;5602;2630;2582;505;1749;5251;2482
-120;'418;Lao People's Democratic Republic;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;3900;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-120;'418;Lao People's Democratic Republic;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;100;100;100;0;0;0;0;0;0;0;0;143;115;223;373;357;542;1025;549;726;3;3;3466;1957;1418.68;23;1498
-120;'418;Lao People's Democratic Republic;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;53;53;53;0;0;0;0;0;0;0;0;92;67;153;291;281;439;753;404;428;1;1;3425;1781;1169;8;743
-120;'418;Lao People's Democratic Republic;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;10;7;17;17;3987;5010;4594;4594;5
-120;'418;Lao People's Democratic Republic;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;7;46;46;1790;714;415;415.52;5
-120;'418;Lao People's Democratic Republic;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;6;35;22;8;156;19;22;424;1180
-120;'418;Lao People's Democratic Republic;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;4;14;39;7;51;6;7;151;2268
-120;'418;Lao People's Democratic Republic;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;8;8;4;210;210;210;210
-120;'418;Lao People's Democratic Republic;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3;3;1;47;47;47;47
-120;'418;Lao People's Democratic Republic;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;300;300;300;0;700;700;700;700;700;700;700;2831;2479;2548;3108;3273;2075;2179;1824;66;70;2075;836;1261;829;765;6134
-120;'418;Lao People's Democratic Republic;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;111;111;68;68;68;0;29;29;29;29;29;29;29;775;601;763;1118;1237;1013;1347;730;103;95;922;324;1076;278;350;3834
-120;'418;Lao People's Democratic Republic;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;261;26;26;3456;26;26;26;3
-120;'418;Lao People's Democratic Republic;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;150;16;16;374;16;16;16;3
-120;'418;Lao People's Democratic Republic;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;300;300;300;0;0;0;0;0;0;0;0;1988;1591;1759;2241;2206;2005;1868;1443;41;41;721;493;34;639;576;130
-120;'418;Lao People's Democratic Republic;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;68;68;68;0;0;0;0;0;0;0;0;686;508;691;993;960;896;1142;544;83;83;280;238;49;210;250;58
-120;'418;Lao People's Democratic Republic;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;0;0;3430;0;0;0;0
-120;'418;Lao People's Democratic Republic;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;0;0;358;0;0;0;0
-120;'418;Lao People's Democratic Republic;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;188;89;167;367;69;299;377;21;25;1350;334;1201;187;185;6000
-120;'418;Lao People's Democratic Republic;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;64;43;96;248;116;200;183;17;9;639;82;999;57;99;3775
-120;'418;Lao People's Democratic Republic;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;3
-120;'418;Lao People's Democratic Republic;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;3
-120;'418;Lao People's Democratic Republic;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;700;700;700;700;700;700;700;700;700;700;700;700;1;12;4;4;4;4;9;26;3;4;4
-120;'418;Lao People's Democratic Republic;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;29;29;29;29;29;29;29;29;29;29;29;29;1;5;3;3;3;3;4;28;11;1;1
-120;'418;Lao People's Democratic Republic;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;8000;10000;13000;14000;15000;15000;22000;28000;153000;372000;271000;240000;227000;216000
-120;'418;Lao People's Democratic Republic;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4318;3961;4005;3909;3931;4204;296;158;108;24;370;148623;195431;904914;1016979;1226054
-120;'418;Lao People's Democratic Republic;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5445;5529;5542;5498;5523;5559;166;84;27;14;372;22654;33844;230278;298067;231320
-120;'418;Lao People's Democratic Republic;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;6493;6132;7871;9598;13065;13517;14820;14825;21660;27541;155082;171017;74776;44612;26407;9814
-120;'418;Lao People's Democratic Republic;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;754;749;1282;1610;1997;1887;1945;1854;2481;3387;149443;123479;31648;17765;10356;2225
-120;'418;Lao People's Democratic Republic;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128000;156000;55000;24000;11000;0
-120;'418;Lao People's Democratic Republic;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3840;3888;3888;3888;3897;3897;158;26;24;13;365;138;1260;21090;1769;43084
-120;'418;Lao People's Democratic Republic;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5392;5478;5478;5478;5481;5481;123;44;11;5;367;52;624;13211;1511;26244
-120;'418;Lao People's Democratic Republic;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;100;49;32;13;130505;156502;59973;28394;11640;1308
-120;'418;Lao People's Democratic Republic;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;46;21;48;41;146494;122596;30764;16778;9495;1061
-120;'418;Lao People's Democratic Republic;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158000;286000;286000;293000;330000;323000
-120;'418;Lao People's Democratic Republic;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3840;3863;3863;3863;3872;3872;133;1;11;0;352;136;1260;21070;1769;43084
-120;'418;Lao People's Democratic Republic;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5392;5434;5434;5434;5437;5437;79;0;6;0;362;49;624;13168;1511;26244
-120;'418;Lao People's Democratic Republic;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;100;49;19;0;160218;285728;290446;297177;330484;323937
-120;'418;Lao People's Democratic Republic;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;46;21;7;0;173301;212726;174538;286314;331324;274585
-120;'418;Lao People's Democratic Republic;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;230;269;269;0
-120;'418;Lao People's Democratic Republic;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;60;29;29;0
-120;'418;Lao People's Democratic Republic;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1050;1050;1050;1050;1050
-120;'418;Lao People's Democratic Republic;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;788;788;788;788;788
-120;'418;Lao People's Democratic Republic;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;131;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;78;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;81;30;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;39;14;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3840;3840;3840;3840;3840;3840;2;1;4;;;;;;;
-120;'418;Lao People's Democratic Republic;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5392;5392;5392;5392;5392;5392;1;0;2;;;;;;;
-120;'418;Lao People's Democratic Republic;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128000;156000;55000;24000;11000;0
-120;'418;Lao People's Democratic Republic;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;23;23;23;0;0;7;0;352;0;1030;20801;1500;43084
-120;'418;Lao People's Democratic Republic;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;42;42;42;42;42;0;0;4;0;362;0;564;13139;1482;26244
-120;'418;Lao People's Democratic Republic;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;0;130488;155434;58829;27250;10500;164
-120;'418;Lao People's Democratic Republic;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;0;146433;121764;29736;15750;8505;69
-120;'418;Lao People's Democratic Republic;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1030;0;1500;20343
-120;'418;Lao People's Democratic Republic;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;564;0;1482;13296
-120;'418;Lao People's Democratic Republic;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;0;2680;0;3827;3000;0;0
-120;'418;Lao People's Democratic Republic;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;0;2022;0;1727;1685;0;0
-120;'418;Lao People's Democratic Republic;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128000;156000;55000;24000;11000;0
-120;'418;Lao People's Democratic Republic;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;352;0;0;20801;0;22741
-120;'418;Lao People's Democratic Republic;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;362;0;0;13139;0;12948
-120;'418;Lao People's Democratic Republic;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127808;155434;55002;24250;10500;164
-120;'418;Lao People's Democratic Republic;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144411;121764;28009;14065;8505;69
-120;'418;Lao People's Democratic Republic;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-120;'418;Lao People's Democratic Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;0;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;0;0;0;;;;;;;
-120;'418;Lao People's Democratic Republic;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;130000;231000;269000;319000;323000
-120;'418;Lao People's Democratic Republic;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29730;129244;230567;268877;318934;322723
-120;'418;Lao People's Democratic Republic;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26868;90174;144014;269776;322031;273728
-120;'418;Lao People's Democratic Republic;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;13;13;13;2;0;20;0;0
-120;'418;Lao People's Democratic Republic;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;5;5;5;3;0;43;0;0
-120;'418;Lao People's Democratic Republic;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;17;18;94;94;90;94
-120;'418;Lao People's Democratic Republic;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;61;44;240;240;202;204
-120;'418;Lao People's Democratic Republic;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;5;82;82;82;8;8;0;0;0;0;8369;104695;14906;34180;9319
-120;'418;Lao People's Democratic Republic;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;2;69;69;69;7;7;0;0;0;0;1270;13607;11962;26665;6355
-120;'418;Lao People's Democratic Republic;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185725;315625;32415;70998;26698
-120;'418;Lao People's Democratic Republic;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72844;117210;12332;26420;8877
-120;'418;Lao People's Democratic Republic;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;8000;10000;13000;14000;15000;15000;22000;28000;25000;216000;216000;216000;216000;216000
-120;'418;Lao People's Democratic Republic;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;478;73;117;21;34;307;138;132;84;11;5;148485;194171;883824;1015210;1182970
-120;'418;Lao People's Democratic Republic;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;0;0;0;0;0;0;0;0;0;0;0;0;0;53;51;64;20;42;78;43;40;16;9;5;22602;33220;217067;296556;205076
-120;'418;Lao People's Democratic Republic;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;6493;6103;7842;9569;13036;13488;14720;14776;21628;27528;24577;14515;14803;16218;14767;8506
-120;'418;Lao People's Democratic Republic;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;754;740;1273;1601;1988;1878;1899;1833;2433;3346;2949;883;884;987;861;1164
-120;'418;Lao People's Democratic Republic;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848000;813000;1010000
-120;'418;Lao People's Democratic Republic;1876;Paper and paperboard;5610;Import quantity;t;700;600;700;200;500;500;500;400;800;700;700;700;1000;500;500;500;500;500;500;500;200;300;300;300;200;300;500;300;150;1000;1000;270;700;600;800;800;3100;500;500;175;3300;3300;3300;3300;3300;3300;3300;8290;9703;10568;11177;12250;16151;21029;29308;38181;46896;50765;28538;46859;43790.19;17514;43091
-120;'418;Lao People's Democratic Republic;1876;Paper and paperboard;5622;Import value;1000 USD;282;253;156;53;240;240;400;301;387;554;554;554;358;420;420;420;420;420;420;420;150;200;200;200;175;180;470;270;140;950;950;323;638;484;846;846;1703;583;583;195;1545;1545;1545;1545;1545;1545;1545;8831;8421;9679;11184;10792;13195;14819;16338;21555;22956;29074;18218;23931;30069.75;12603;29814
-120;'418;Lao People's Democratic Republic;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;200;75;75;75;75;75;75;75;75;75;75;65;98;82;81;141;147;140;140;89;192;3575;58;8009;847599;812962;989323
-120;'418;Lao People's Democratic Republic;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;100;40;40;40;40;40;40;40;40;40;40;72;83;60;89;72;76;90;90;92;122;413;77;4068;525254;489500;406584
-120;'418;Lao People's Democratic Republic;2042;Graphic papers;5610;Import quantity;t;100;100;300;0;300;300;300;100;400;300;300;300;300;200;200;200;200;200;200;200;;;;;;;0;;;;;152;300;300;300;300;600;400;400;125;1100;1100;1100;1100;1100;1100;1100;4486;5372;5206;5793;6834;7051;4585;6962;2897;3137;10693;9145;8870;9103.87;33;6741
-120;'418;Lao People's Democratic Republic;2042;Graphic papers;5622;Import value;1000 USD;23;17;123;0;68;68;70;51;56;93;93;93;90;113;113;113;113;113;113;113;;;;;;;0;;;;;103;232;271;449;449;505;385;385;99;649;649;649;649;649;649;649;5008;5208;5122;6452;7169;7612;4969;6671;4052;3400;9473;5197;3840;5536.59;117;7885
-120;'418;Lao People's Democratic Republic;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;18;18;42;7;0
-120;'418;Lao People's Democratic Republic;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;18;19;33;12;5
-120;'418;Lao People's Democratic Republic;1671;Newsprint;5610;Import quantity;t;100;100;300;0;300;300;300;100;400;300;300;300;300;200;200;200;200;200;200;200;;;;;;;0;;;;;36;100;100;100;100;100;100;100;50;600;600;600;600;600;600;600;1880;1344;1027;1141;1678;805;1927;1728;1150;1150;816;4196;3643;3920.91;3;373
-120;'418;Lao People's Democratic Republic;1671;Newsprint;5622;Import value;1000 USD;23;17;123;0;68;68;70;51;56;93;93;93;90;113;113;113;113;113;113;113;;;;;;;0;;;;;21;76;72;123;123;72;72;72;22;333;333;333;333;333;333;333;1721;1090;992;1107;1594;784;1691;1433;624;624;715;945;821;830.33;3;435
-120;'418;Lao People's Democratic Republic;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;200;200;200;200;500;300;300;75;500;500;500;500;500;500;500;2606;4028;4179;4652;5156;6246;2658;5234;1747;1987;9877;4949;5227;5182.97;30;6368
-120;'418;Lao People's Democratic Republic;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;156;199;326;326;433;313;313;77;316;316;316;316;316;316;316;3287;4118;4130;5345;5575;6828;3278;5238;3428;2776;8758;4252;3019;4706.26;114;7450
-120;'418;Lao People's Democratic Republic;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;18;18;42;7;0
-120;'418;Lao People's Democratic Republic;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;18;19;33;12;5
-120;'418;Lao People's Democratic Republic;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;204;529;435;478;466;276;294;153;2;2;648;491;353;5;24
-120;'418;Lao People's Democratic Republic;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;142;517;431;835;592;342;341;1148;3;3;284;236;396;11;33
-120;'418;Lao People's Democratic Republic;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-120;'418;Lao People's Democratic Republic;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-120;'418;Lao People's Democratic Republic;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;240;60;400;400;400;400;400;400;400;1995;3214;3105;3909;4237;5280;1819;4762;1428;1819;5635;2400;2303;2363.95;4;5085
-120;'418;Lao People's Democratic Republic;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;247;61;249;249;249;249;249;249;249;2739;3750;3392;4845;4549;5988;2717;4729;2003;2496;6093;3135;2106;3309.29;12;6198
-120;'418;Lao People's Democratic Republic;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;1;1;25;7;0
-120;'418;Lao People's Democratic Republic;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;2;16;12;4
-120;'418;Lao People's Democratic Republic;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;15;100;100;100;100;100;100;100;104;610;545;308;441;500;563;178;166;166;4240;1901;2433;2466.01;21;1259
-120;'418;Lao People's Democratic Republic;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;16;67;67;67;67;67;67;67;50;226;221;69;191;248;219;168;277;277;2662;833;677;1000.96;91;1219
-120;'418;Lao People's Democratic Republic;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;0;0
-120;'418;Lao People's Democratic Republic;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;0;0
-120;'418;Lao People's Democratic Republic;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848000;813000;1010000
-120;'418;Lao People's Democratic Republic;1675;Other paper and paperboard;5610;Import quantity;t;600;500;400;200;200;200;200;300;400;400;400;400;700;300;300;300;300;300;300;300;200;300;300;300;200;300;500;300;150;1000;1000;118;400;300;500;500;2500;100;100;50;2200;2200;2200;2200;2200;2200;2200;3804;4331;5362;5384;5416;9100;16444;22346;35284;43759;40072;19393;37989;34686.32;17481;36350
-120;'418;Lao People's Democratic Republic;1675;Other paper and paperboard;5622;Import value;1000 USD;259;236;33;53;172;172;330;250;331;461;461;461;268;307;307;307;307;307;307;307;150;200;200;200;175;180;470;270;140;950;950;220;406;213;397;397;1198;198;198;96;896;896;896;896;896;896;896;3823;3213;4557;4732;3623;5583;9850;9667;17503;19556;19601;13021;20091;24533.17;12486;21929
-120;'418;Lao People's Democratic Republic;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;200;75;75;75;75;75;75;75;75;75;75;42;75;59;58;118;124;117;117;66;169;3552;40;7991;847557;812955;989323
-120;'418;Lao People's Democratic Republic;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;100;40;40;40;40;40;40;40;40;40;40;55;66;43;72;55;59;73;73;75;105;396;59;4049;525221;489488;406579
-120;'418;Lao People's Democratic Republic;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;1;2;1;16;97;87;12;18;2;288;952;1128;3;67
-120;'418;Lao People's Democratic Republic;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;1;5;1;19;98;120;18;16;3;181;514;650.48;3;68
-120;'418;Lao People's Democratic Republic;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848000;813000;1010000
-120;'418;Lao People's Democratic Republic;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;2100;2100;2100;2100;2046;2042;2512;2130;1367;3605;10141;16950;34397;43306;40034;17942;36149;32388.32;17178;35835
-120;'418;Lao People's Democratic Republic;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;702;702;702;702;702;702;2403;1702;2264;2230;1198;1992;5103;6670;14984;18377;19369;9602;17268;20385.32;11306;20428
-120;'418;Lao People's Democratic Republic;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;63;47;50;110;116;109;109;58;161;3544;15;7966;847534;812955;989323
-120;'418;Lao People's Democratic Republic;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;63;40;70;53;57;71;71;73;103;394;33;4023;525196;489486;406577
-120;'418;Lao People's Democratic Republic;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848000;813000;1010000
-120;'418;Lao People's Democratic Republic;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;12;12;180;403;1628;6896;15042;31946;43083;38310;11449;31310;26962;13615;30512
-120;'418;Lao People's Democratic Republic;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;13;13;104;222;1233;3244;5580;12173;18158;17619;5130;13895;15670;8869;16182
-120;'418;Lao People's Democratic Republic;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;63;69;69;69;18;18;18;1;7954;847491;812914;984031
-120;'418;Lao People's Democratic Republic;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;13;17;17;17;19;19;19;2;4016;525182;489474;404639
-120;'418;Lao People's Democratic Republic;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;566;516;779;694;1065;2524;1783;1621;170;798;593;372;565.12;56;647
-120;'418;Lao People's Democratic Republic;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;979;690;659;909;438;629;1365;980;1836;147;868;236;338;698;96;1305
-120;'418;Lao People's Democratic Republic;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;22;22;22;22;15;15;15;15;15;13;11;40;40;2048
-120;'418;Lao People's Democratic Republic;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;17;17;17;17;31;31;31;31;31;29;5;10;10;741
-120;'418;Lao People's Democratic Republic;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;944;1067;1425;987;225;822;535;25;501;50;914;5812;4414;4396.2;91;1191
-120;'418;Lao People's Democratic Republic;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;348;348;348;348;348;348;1126;856;1331;1138;477;81;400;59;678;71;870;4167;2992;3056.21;144;1247
-120;'418;Lao People's Democratic Republic;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;104;3487;0;0;2;0;3215
-120;'418;Lao People's Democratic Republic;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;1;1;1;1;31;322;0;0;2;0;1189
-120;'418;Lao People's Democratic Republic;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1100;1100;51;397;559;184;45;90;186;100;329;3;12;88;53;465;3416;3485
-120;'418;Lao People's Democratic Republic;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;354;354;354;354;354;354;21;143;261;79;61;49;94;51;297;1;12;69;43;961.11;2197;1694
-120;'418;Lao People's Democratic Republic;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;1;1;1;1;29
-120;'418;Lao People's Democratic Republic;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;2;2;2;2;8
-120;'418;Lao People's Democratic Republic;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;50;100;100;100;100;100;100;100;1754;2285;2849;3252;4048;5479;6206;5309;875;435;36;1163;888;1170;300;448
-120;'418;Lao People's Democratic Republic;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;198;96;194;194;194;194;194;194;194;1412;1503;2292;2497;2424;3572;4649;2877;2501;1163;229;3238;2309;3497.36;1177;1433
-120;'418;Lao People's Democratic Republic;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;75;75;75;75;75;75;15;12;12;8;8;8;8;8;8;8;8;25;25;23;0;0
-120;'418;Lao People's Democratic Republic;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;31;3;3;2;2;2;2;2;2;2;2;26;26;25;2;2
-120;'418;Lao People's Democratic Republic;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13449;13080;34073;20885;7518;11591;15027
-120;'418;Lao People's Democratic Republic;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33653;54420;97640;28093;41970;16917;11745
-120;'418;Lao People's Democratic Republic;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;352;28481;7099;959;32;52
-120;'418;Lao People's Democratic Republic;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11296;21282;20626;8162;17266;1819;1071
-120;'418;Lao People's Democratic Republic;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;216;216;26;6;13;12
-120;'418;Lao People's Democratic Republic;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12
-120;'418;Lao People's Democratic Republic;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;136;28265;7073;953;19;40
-120;'418;Lao People's Democratic Republic;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11284;21270;20614;8150;17254;1807;1059
-120;'418;Lao People's Democratic Republic;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4491;51;114;129;582;841;262
-120;'418;Lao People's Democratic Republic;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;63;25;44;117;45;1
-120;'418;Lao People's Democratic Republic;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;168;101;88;96;244;121
-120;'418;Lao People's Democratic Republic;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;149;972;584;744;2955;3896
-120;'418;Lao People's Democratic Republic;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2013;5216;1022;1034;829;933;3019
-120;'418;Lao People's Democratic Republic;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283;5774;4631;3705;6960;1292;538
-120;'418;Lao People's Democratic Republic;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6567;6409;4187;10690;4967;7826;9891
-120;'418;Lao People's Democratic Republic;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19625;26979;71224;15564;16842;10545;6073
-120;'418;Lao People's Democratic Republic;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;784;132;1789;26;14;132
-120;'418;Lao People's Democratic Republic;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;100;36;56;59;1701;1550
-120;'418;Lao People's Democratic Republic;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;173;162;34;41;261;166
-120;'418;Lao People's Democratic Republic;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51085;52841;69355;70061;78661;60954;55735
-120;'418;Lao People's Democratic Republic;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;6867;9361;7167;3480;239;334
-120;'418;Lao People's Democratic Republic;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;325;289;253;330;114;174
-120;'418;Lao People's Democratic Republic;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22
-120;'418;Lao People's Democratic Republic;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;173;922;1731;3002;1397;1280
-120;'418;Lao People's Democratic Republic;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;7;5;21;24
-120;'418;Lao People's Democratic Republic;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2496;2202;3538;3526;2828;8246;8468
-120;'418;Lao People's Democratic Republic;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;0;0;10;2;158
-120;'418;Lao People's Democratic Republic;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27030;33328;40102;37035;39407;38908;30275
-120;'418;Lao People's Democratic Republic;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1641;6663;9179;7048;3163;161;37
-120;'418;Lao People's Democratic Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20869;16813;24504;27516;33094;12289;15538
-120;'418;Lao People's Democratic Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;91;158;90;280;33;93
-119;'428;Latvia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865047.56;931267;1011408;1054155;1554820;1423167;1014484
-119;'428;Latvia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2482644.78;2644625;2859632;2875851;4221288;4292242;3426011
-119;'428;Latvia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1786;25751;40841;83126;92511;73129;85872;55020;93641;102653;129144;192886;302255;337844;357988;575587;361151;181581;260543;320127;331721;416539;511068;460816;494549;562417.9;637417;666331;690280;1121645;988977;614866
-119;'428;Latvia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37742;86201;208195;381222;424967;483783;587028;587174;632128;597471;652834;867042;1043500;1087985;1095010;1476627;1235836;955496;1400595;1515009;1519195;1670288;1799690;1551204;1636997;1769452.38;1922855;2083571;2043286;3083988;3212330;2594399
-119;'428;Latvia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471000;4931000;5700000;6900000;8080000;8697000;10030000;14008000;14304000;12841000;13465900;12915810;12754000;12842600;12844600;12172900;8805750;10442310;12533818;12833492;12529587;12241870;12885344;12294416;13051406;12896149;12942170;14822065;15346700;15943000;15427000;17400000
-119;'428;Latvia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;151;7100;15400;7100;39000;81000;145000;136030;213600;387320;465034;805618;1086681;1217789;1697812;567749;126643;438237;448583;738943;988927;1303202;1564039;1535442;1261716;1349628;1452697;1780800;1807694;1909738;1160066
-119;'428;Latvia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;47;1191;4297;2310;4059;6790;6787;6966;9889;16475;25284;49686;66572;72615;160448;62365;5835;25471;31961;49200;78121;115458;98446;88504;87123.98;94270;114668;119238;190986;214191;122092
-119;'428;Latvia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478438;1219542;2654700;2752000;2094000;3132000;4251000;3751000;4353250;4095480;4468570;4461420;4525650;4265630;3823565;4139640;3663432;3548899;5486875;5264351;4384206;4030515;4045932;3177675;3087398;3012718;2971242;3950589;3453000;3566231;4319500;4009809
-119;'428;Latvia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21390;30276;63786;137035;112192;92318;133874;110181;121881;107449;123681;141771;195746;195287;171432;351786;286826;182709;327796;368537;267934;274561;284194;187691;182930;198877.35;209177;316792;248970;316820;538917;471714
-119;'428;Latvia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1625000;3317000;2800000;2800000;4400000;5287000;5760000;9522000;9618000;8588000;8551700;7008820;6738000;8655000;8501300;7734800;6087840;7436990;7985271;9003607;6509338;8234384;8358272;8245736;8823985;7749275;7900000;8349698;8691700;8976000;8551000;8750000
-119;'428;Latvia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944313;988425;1093115;1222400;1569695;1549583;1061905
-119;'428;Latvia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72296.63;76149;95234;92707;173390;180293;112469
-119;'428;Latvia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060401;1015083;1182387;1093700;1167053;1120991;1320034
-119;'428;Latvia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68343.69;65548;89113;69175;91846;118147;133404
-119;'428;Latvia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;846000;1614000;2900000;4100000;3680000;3410000;4270000;4486000;4686000;4253000;4914200;5906990;6016000;4187600;4343300;4438100;2717910;3005320;4548547;3829885;6020249;4007486;4527072;4048680;4227421;5146874;5042170;6472367;6655000;6967000;6876000;8650000
-119;'428;Latvia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317403;361203;359582;558400;237999;360155;98161
-119;'428;Latvia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827.34;18121;19434;26531;17596;33898;9623
-119;'428;Latvia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952317;1956159;2768202;2359300;2399178;3198509;2689775
-119;'428;Latvia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130533.66;143629;227679;179795;224974;420770;338310
-119;'428;Latvia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;1100000;1110000;1210000;2530000;2864000;2845000;2490000;1680000;1580000;1198000;990810;970000;950000;979000;1028000;598420;1736280;2312000;1184384;1173000;1258298;1299000;1200000;1700000;2200000;2200000;2555000;2620000;2940000;2936000;3900000
-119;'428;Latvia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;150;40;30;5787;5102;4280;1923;10115;1538;6361;1630;7603;4172;3477;1086;4395;4627;32837;120749;77719;82000;53972;57650;45948
-119;'428;Latvia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;0;0;22;115;123;390;46;786;350;259;225;500;246;145;155;433;225;2294;9439;6233;6943;6837;7008;3959
-119;'428;Latvia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3081;19542;226000;318000;627000;1015000;1491000;798000;163460;105400;244030;539320;389941;346523;404877;450021;470854;1046303;1329094;863679;276863;293956;210353;175686;216315;360846;319370;371899;522800;501439;675957;727594
-119;'428;Latvia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;478;3607;5075;10000;27707;44213;20276;3213;2696;5284;14156;10138;11020;18058;21100;23645;43036;65557;51037;21144;26671;23099;21464;27036;37105;47405;55329;63255;90237;142218;130421
-119;'428;Latvia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;300000;400000;1200000;1299000;1125000;1920000;942000;886000;670000;456520;730000;720000;729000;617000;257310;801360;994160;558409;469200;259373;186000;200000;200000;200000;200000;270000;285000;315000;298000;1100000
-119;'428;Latvia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22705;66817;23148;19300;8076;28449;41140
-119;'428;Latvia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1502;5354;1863;1535;1481;2784;3363
-119;'428;Latvia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105449;60131;74928;174100;95078;134966;277662
-119;'428;Latvia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9546;6750;7665;9896;13159;20009;26502
-119;'428;Latvia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400000;800000;810000;810000;1330000;1565000;1720000;570000;738000;694000;528000;534290;240000;230000;250000;411000;341110;934920;1317840;625975;703800;998925;1113000;1000000;1500000;2000000;2000000;2285000;2335000;2625000;2638000;2800000
-119;'428;Latvia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10132;53932;54571;62700;45896;29201;4808
-119;'428;Latvia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;792;4085;4370;5408;5356;4224;596
-119;'428;Latvia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255397;259239;296971;348700;406361;540991;449932
-119;'428;Latvia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27559;40655;47664;53359;77078;122209;103919
-119;'428;Latvia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;150;40;30;5787;5102;4280;1923;10115;1538;6361;1630;7603;4172;3477;1086;4395;4627;;;;;;;
-119;'428;Latvia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;0;0;22;115;123;390;46;786;350;259;225;500;246;145;155;433;225;;;;;;;
-119;'428;Latvia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3081;19542;226000;318000;627000;1015000;1491000;798000;163460;105400;244030;539320;389941;346523;404877;450021;470854;1046303;1329094;863679;276863;293956;210353;175686;216315;;;;;;;
-119;'428;Latvia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;478;3607;5075;10000;27707;44213;20276;3213;2696;5284;14156;10138;11020;18058;21100;23645;43036;65557;51037;21144;26671;23099;21464;27036;;;;;;;
-119;'428;Latvia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1771000;3831000;4590000;5690000;5550000;5833000;7185000;11518000;12624000;11261000;12267900;11925000;11784000;11892600;11865600;11144900;8207330;8706030;10221818;11649108;11356587;10983572;11586344;11094416;11351406;10696149;10742170;12267065;12726700;13003000;12491000;13500000
-119;'428;Latvia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;151;7100;15400;7100;39000;81000;145000;135880;213560;387290;459247;800516;1082401;1215866;1687697;566211;120282;436607;440980;734771;985450;1302116;1559644;1530815;1228879;1228879;1374978;1698800;1753722;1852088;1114118
-119;'428;Latvia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;47;1191;4297;2310;4059;6789;6760;6966;9889;16453;25169;49563;66182;72569;159662;62015;5576;25246;31461;48954;77976;115303;98013;88279;84829.98;84831;108435;112295;184149;207183;118133
-119;'428;Latvia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475357;1200000;2428700;2434000;1467000;2117000;2760000;2953000;4189790;3990080;4224540;3922100;4135709;3919107;3418688;3689619;3192578;2502596;4157781;4400672;4107343;3736559;3835579;3001989;2871083;2651872;2651872;3578690;2930200;3064792;3643543;3282215
-119;'428;Latvia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21246;29798;60179;131960;102192;64611;89661;89905;118668;104753;118397;127615;185608;184267;153374;330686;263181;139673;262239;317500;246790;247890;261095;166227;155894;161772.35;161772;261463;185715;226583;396699;341293
-119;'428;Latvia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325000;3017000;2500000;2400000;3200000;3988000;4635000;7602000;8676000;7702000;7881700;6552300;6008000;7935000;7772300;7117800;5830530;6635630;6991111;8445198;6040138;7975011;8172272;8045736;8623985;7549275;7700000;8079698;8406700;8661000;8253000;7650000
-119;'428;Latvia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;32;500;500;300;16000;31000;95000;95450;138340;269690;279333;534425;593847;744851;1043546;229361;50984;322639;311297;390254;731463;1067761;1291344;1134457;921608;921608;1069967;1203100;1561619;1521134;1020765
-119;'428;Latvia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;11;27;27;30;618;959;2297;2679;4312;9615;12387;32111;35923;44704;97090;18249;2920;19645;24236;33394;65251;102844;87823;73617;70794.63;70795;93371;91172;171909;177509;109106
-119;'428;Latvia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272999;600000;1544000;1168000;792000;1067000;1300000;1477000;1968560;2071950;1994800;1764523;1853447;1954353;1583597;1712060;1606435;1335423;1841958;2218488;1626579;1807396;2120526;1493610;1447465;954952;954952;1107459;919600;1071975;986025;1042372
-119;'428;Latvia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12581;15050;37582;72423;49825;32750;42756;49218;59828;59857;58335;60049;89128;83506;68874;158286;129848;73801;116610;163278;93346;119709;131971;70152;65018;58797.69;58798;81448;59279;78687;98138;106902
-119;'428;Latvia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;32;500;500;300;16000;31000;95000;95450;138340;269690;279333;534425;593847;744851;1043546;229361;50984;322639;311297;390254;731463;1067761;1291344;1134457;921608;921608;1069967;1203100;1561619;1521134;1020765
-119;'428;Latvia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;11;27;27;30;618;959;2297;2679;4312;9615;12387;32111;35923;44704;97090;18249;2920;19645;24236;33394;65251;102844;87823;73617;70794.63;70795;93371;91172;171909;177509;109106
-119;'428;Latvia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272999;600000;1544000;1168000;792000;1067000;1300000;1477000;1968560;2071950;1994800;1764523;1853447;1954353;1583597;1712060;1606435;1335423;1841958;2218488;1626579;1807396;2120526;1493610;1447465;954952;954952;1107459;919600;1071975;986025;1042372
-119;'428;Latvia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12581;15050;37582;72423;49825;32750;42756;49218;59828;59857;58335;60049;89128;83506;68874;158286;129848;73801;116610;163278;93346;119709;131971;70152;65018;58797.69;58798;81448;59279;78687;98138;106902
-119;'428;Latvia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446000;814000;2090000;3290000;2350000;1845000;2550000;3916000;3948000;3559000;4386200;5372700;5776000;3957600;4093300;4027100;2376800;2070400;3230707;3203910;5316449;3008561;3414072;3048680;2727421;3146874;3042170;4187367;4320000;4342000;4238000;5850000
-119;'428;Latvia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;6600;14900;6800;23000;50000;50000;40430;75220;117600;179914;266091;488554;471015;644151;336850;69298;113968;129683;344517;253987;234355;268300;396358;307271;307271;305011;495700;192103;330954;93353
-119;'428;Latvia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;1164;4270;2280;3441;5830;4463;4287;5577;6838;12782;17452;30259;27865;62572;43766;2656;5601;7225;15560;12725;12459;10190;14662;14035.34;14036;15064;21123;12240;29674;9027
-119;'428;Latvia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202358;600000;884700;1266000;675000;1050000;1460000;1476000;2221230;1918130;2229740;2157577;2282262;1964754;1835091;1977559;1586143;1167173;2315823;2182184;2480764;1929163;1715053;1508379;1423618;1696920;1696920;2471231;2010600;1992817;2657518;2239843
-119;'428;Latvia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8665;14748;22597;59537;52367;31861;46905;40687;58840;44896;60062;67566;96480;100761;84500;172400;133333;65872;145629;154222;153444;128181;129124;96075;90876;102974.66;102974;180015;126436;147896;298561;234391
-119;'428;Latvia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;290;710;0;15;1085;1906;1639;235;297;16;43;12;17;95;10;27;224;224;63;0;0;35;0
-119;'428;Latvia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;115;314;0;2;766;1254;1351;191;188;16;22;0;20;95;8;13;217.83;218;109;20;0;9;0
-119;'428;Latvia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;69;134;112;29;74;38;17;58;0;0;0;0;0;0;0;0;2;0;0
-119;'428;Latvia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;21;157;41;123;21;11;52;0;0;0;0;0.42;0;0;0;3;0;0
-119;'428;Latvia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;6600;14900;6800;23000;50000;50000;40430;74930;116890;179914;266076;487469;469109;642512;336615;69001;113952;129640;344505;253970;234260;268290;396331;307047;307047;304948;495700;192103;330919;93353
-119;'428;Latvia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;1164;4270;2280;3441;5826;4463;4287;5462;6524;12782;17450;29493;26611;61221;43575;2468;5585;7203;15560;12705;12364;10182;14649;13817.51;13818;14955;21103;12240;29665;9027
-119;'428;Latvia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202358;600000;884700;1266000;675000;1050000;1460000;1476000;2221230;1918130;2229740;2157577;2282262;1964685;1834957;1977447;1586114;1167099;2315785;2182167;2480706;1929163;1715053;1508379;1423618;1696920;1696920;2471231;2010600;1992815;2657518;2239843
-119;'428;Latvia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8665;14748;22597;59537;52367;31861;46905;40687;58840;44896;60062;67566;96480;100757;84479;172243;133292;65749;145608;154211;153392;128181;129124;96075;90876;102974.24;102974;180015;126436;147893;298561;234391
-119;'428;Latvia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629000;2321000;2400000;2900000;2760000;3735000;4508000;6882000;8642000;7359000;8066000;7841700;7892000;7950900;8372000;6717000;4836210;6246780;6666944;7651598;6994603;6636190;6921000;7032794;7969366;7266857;7300000;7263066;7378700;7827000;7603000;7500000
-119;'428;Latvia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459000;1967000;1400000;1000000;1800000;2451000;2796000;5296000;6680000;5622000;5612000;4353300;4125000;5702600;5886000;4930000;3844010;4958270;5051111;6527598;3916978;5097344;5021000;5211794;5949560;5415039;5500000;5241699;5475700;5975000;5873000;5450000
-119;'428;Latvia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170000;354000;1000000;1900000;960000;1284000;1712000;1586000;1962000;1737000;2454000;3488400;3767000;2248300;2486000;1787000;992200;1288510;1615833;1124000;3077625;1538846;1900000;1821000;2019806;1851818;1800000;2021367;1903000;1852000;1730000;2050000
-119;'428;Latvia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2613000;2200000;3517000;3330000;3655000;3525000;3292000;3317700;2658600;3267900;2461400;1700650;2703947;3254030;3466587;3305000;3623304;3019582;2640000;2719292;2742170;3974999;4123000;3986000;3868000;4700000
-119;'428;Latvia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1777000;1046000;1596000;1580000;1783000;1742000;1363000;1691400;1166300;1457800;1269200;933100;1174364;1242845;1317303;2148000;2419947;2102617;2143100;1624236;1700000;2268999;2241000;2036000;1850000;1500000
-119;'428;Latvia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836000;1154000;1921000;1750000;1872000;1783000;1929000;1626300;1492300;1810100;1192200;767550;1529583;2011185;2149284;1157000;1203357;916965;496900;1095056;1042170;1706000;1882000;1950000;2018000;3200000
-119;'428;Latvia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332000;700000;1800000;2400000;2400000;2050000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166000;350000;900000;1200000;1200000;1490000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166000;350000;900000;1200000;1200000;560000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810000;810000;390000;390000;390000;48000;64000;2436000;465000;572000;546900;558300;600000;624000;835000;1160000;909720;758600;850927;743480;895397;1042382;1042040;1042040;742040;710000;700000;1029000;1225000;1190000;1020000;1300000
-119;'428;Latvia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;700000;200000;200000;200000;47000;62000;1260000;400000;500000;486700;457000;520000;541000;720000;730000;717320;744260;765636;674755;805857;729667;731325;731325;531325;510000;500000;569000;690000;650000;530000;700000
-119;'428;Latvia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110000;110000;190000;190000;190000;1000;2000;1176000;65000;72000;60200;101300;80000;83000;115000;430000;192400;14340;85291;68725;89540;312715;310715;310715;210715;200000;200000;460000;535000;540000;490000;600000
-119;'428;Latvia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1200;1200;5000;7000;8000;7000;11000;11000;13000;16100;16900;10000;11500;12000;7200;7450;9231;9894;11926;8310;12000;11000;11000;12000;12000;8000;8000;8000;7000;6000
-119;'428;Latvia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;60;130;290;86;67;266;500;857;1010;1073;1887;2187;1366;2243;2268;4193;7370;9290;9290;7205;4600;4426;3618;2923
-119;'428;Latvia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;13;17;43;63;33;125;290;510;638;832;1168;1440;1065;1177;1254;1617;2580;3583.27;3583;3511;2466;2778;3077;2931
-119;'428;Latvia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;50;500;2700;6000;6000;7000;8620;7090;8390;10377;8875;6067;5814;5733;7173;8517;11073;10089;10292;8550;11983;10831;16268;20981;20981;11911;9200;11563;6246;7050
-119;'428;Latvia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;17;170;1000;2212;2328;2418;3094;2585;3012;4559;4249;2584;2457;2659;4492;5243;6800;6567;6319;5380;6878;5908;7863;10707.32;10707;7174;5629;7562;5131;7409
-119;'428;Latvia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100000;3640000;3777000;3852000;3550000;3660000;3860000;4489000;5223000;4439500;5846000;3737070;4594276;3653231;3726185;4385259;3403600;4061600;4011344;4638800;4740200;4602400;3937600;4310000;5615454;5615454
-119;'428;Latvia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;500;370;580;1911;4174;19107;85158;155307;172238;27057;27453;68363;88799;108064;114615;283863;246796;213479;213479;1187156;1369600;777711;466149;377043
-119;'428;Latvia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;5;59;49;92;161;237;851;6259;18589;8988;1755;2316;3091;3830;4571;4854;8343;6701;4748.9;4749;33451;36498;20962;27217;28703
-119;'428;Latvia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334000;514000;732850;1123090;1434380;2065080;2176311;2399404;3351567;2781670;2396504;2464587;3176694;3211107;2503317;1953787;1625383;1330425;1782805;1870702;1870702;2128248;2051000;2354701;2489418;2435447
-119;'428;Latvia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6891;9610;15559;23781;38243;72444;93020;108558;134083;174408;173586;155126;196168;129132;102423;94978;73308;55677;73397;78002.31;78002;120375;105579;111813;163786;201918
-119;'428;Latvia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800000;980000;1641000;1746000;1883000;2120000;2210000;2513840;3215000;2732700;3725000;2847070;3428682;3307885;3210912;3813269;2740700;2512800;2462544;2983600;3085000;3765600;3551200;3906000;4843558;4843558
-119;'428;Latvia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;90;110;290;1005;3303;9497;26368;23271;93561;7853;13684;53349;35799;62894;62728;164388;121847;103679;103679;961296;1025600;383299;154953;83215
-119;'428;Latvia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;21;21;56;45;99;339;1052;1176;2498;374;590;2061;1638;2728;2752;4867;3335;3044.9;3045;27466;27633;10416;10743;8093
-119;'428;Latvia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53456;38660;83000;103000;166000;138000;215000;381000;584170;753380;1092660;1528636;1641912;1779859;2676040;1980830;1821352;1694776;2236666;2891656;2457317;1888434;1567874;1292602;1653275;1804402;1804402;2120246;2041000;2345013;2450697;2367287
-119;'428;Latvia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1377;868;1900;2358;3700;3001;5142;7182;10847;17194;27493;46221;62931;66294;69260;91969;98181;63917;87410;112147;99317;90582;68428;52769;67042;74282.31;74282;118753;103495;109693;158712;191085
-119;'428;Latvia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300000;2660000;2136000;2106000;1667000;1540000;1650000;1975160;2008000;1706800;2121000;890000;1165594;345346;515273;571990;662900;1548800;1548800;1655200;1655200;836800;386400;404000;771896;771896
-119;'428;Latvia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;410;260;290;906;871;9610;58790;132036;78677;19204;13769;15014;53000;45170;51887;119475;124949;109800;109800;225860;344000;394412;311196;293828
-119;'428;Latvia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;11;5;38;28;36;116;138;512;5207;17413;6490;1381;1726;1030;2192;1843;2102;3476;3366;1704;1704;5985;8865;10546;16474;20610
-119;'428;Latvia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;4815;32200;0;0;0;119000;133000;148680;369710;341720;536444;534399;619545;675527;800840;575152;769811;940028;319451;46000;65353;57509;37823;129530;66300;66300;8002;10000;9688;38721;68160
-119;'428;Latvia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;74;837;0;0;0;1749;2428;4712;6587;10750;26223;30089;42264;64823;82439;75405;91209;108758;16985;3106;4396;4880;2908;6355;3720;3720;1622;2084;2120;5074;10833
-119;'428;Latvia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235056;287783
-119;'428;Latvia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13522;20022
-119;'428;Latvia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5972;5308
-119;'428;Latvia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075;1536
-119;'428;Latvia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;25000;25000;0;0;0
-119;'428;Latvia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;119490;57248;5166
-119;'428;Latvia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3470;2951;588
-119;'428;Latvia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;38873;24623;53719
-119;'428;Latvia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5943;3999;9297
-119;'428;Latvia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071732;1174927;1328800;1642538;1552588;1562000;1620000;2257000;2318000;2189000;2160000;2170000
-119;'428;Latvia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35316;42429;89011;131433;198860;214210;257408;309945;446400;618438;351298;161675
-119;'428;Latvia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4623;5974;12754;14839;23237;22245.24;32512;42331;54547;68520;68387;36450
-119;'428;Latvia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;952031;1124933;1339962;1630144;1630916;1653872;1699138;2237183;2377600;2537577;1907590;1519642
-119;'428;Latvia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154497;196700;232501;236428;224500;214433.95;258891;344894;374983;418634;396905;334144
-119;'428;Latvia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;979000;1093122;1280000;1599835;1513222;1517000;1575000;2209000;2264000;2138000;1980000;1980000
-119;'428;Latvia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34016;41329;87661;129018;195847;195802;239000;295163;425800;592334;325676;135844
-119;'428;Latvia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440;5822;12603;14557;22995;21075;31342;40806;52748;65443;63514;32277
-119;'428;Latvia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;902031;1055869;1290351;1605188;1611432;1620734;1666000;2222615;2364100;2508744;1685326;1307525
-119;'428;Latvia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146897;186103;225131;233296;222177;210683;255140;342447;372474;411521;372299;314542
-119;'428;Latvia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92732;81805;48800;42703;39366;45000;45000;48000;54000;51000;180000;190000
-119;'428;Latvia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1100;1350;2415;3013;18408;18408;14782;20600;26104;25622;25831
-119;'428;Latvia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;152;151;282;242;1170.24;1170;1525;1799;3077;4873;4173
-119;'428;Latvia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;69064;49611;24956;19484;33138;33138;14568;13500;28833;222264;212117
-119;'428;Latvia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;10597;7370;3132;2323;3750.95;3751;2447;2509;7113;24606;19602
-119;'428;Latvia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740000;446000;950000;1300000;1614000;2700000;3200000;3640000;3900000;3840000;3947200;3950900;3988000;4226700;4320000;3459270;2544650;2520000;3150000;3431632;3316471;3447120;3484654;3479369;3902518;3909025;3775000;3511456;3899400;4438098;3822061;3822061
-119;'428;Latvia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;2516;4700;7000;2500;25000;33000;125000;135450;104750;157920;385072;688038;616033;481098;601901;231583;112516;201201;177999;227505;268059;470251;591148;808842;977452;1211000;1145731;1153300;1545176;882556;466687
-119;'428;Latvia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;304;576;1547;695;3285;4352;9251;12517;10998;18872;51507;101487;95801;82409;140699;57997;23628;41846;42176;50878;61733;106326;98804;124458;160803.32;218391;185537;193831;459396;269669;122517
-119;'428;Latvia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44416;273613;823800;1487100;1432000;2196000;2566000;2819000;3077330;2910460;2857200;3233598;2988446;2835462;2571999;2098058;1543865;1631543;2148711;2247690;2332413;2514774;2788276;3003336;3295639;3298126;3202000;3458740;3498600;3791864;3675771;2808753
-119;'428;Latvia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6116;33906;97847;180336;219644;293572;334965;378393;403175;364727;377448;509207;561551;558752;553425;625619;417370;349302;520310;579962;561561;639095;742787;645182;675784;721767.84;820411;776783;780441;1465527;1286840;762065
-119;'428;Latvia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480000;401000;750000;950000;1510000;2550000;2800000;3047000;3320000;3195000;3099600;3083400;2880000;3224700;3296000;2880670;2246100;2260000;2600000;2869632;2714631;2788120;2767654;2809157;3206813;3283766;3100000;2888486;3311400;3641168;3101834;3101834
-119;'428;Latvia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;2432;4200;6000;1800;21000;29000;118000;127310;99380;151040;376985;674786;586119;450798;555437;197926;103591;190673;167157;216037;259133;452369;565869;779531;949364;1170000;1104758;1107900;1467146;828565;452598
-119;'428;Latvia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;253;330;714;283;2289;3167;8425;11661;10195;17845;49333;97903;88289;73038;126368;46766;19745;37163;36672;45423;56893;98818;91693;116390;152234.58;205630;172598;180540;433793;244983;110323
-119;'428;Latvia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42347;253638;700000;1292100;1268000;2060000;2250000;2447000;2635200;2416890;2289580;2607456;2425766;2462398;2162183;1762370;1313124;1411192;1836945;1906046;1985882;2085165;2275548;2446820;2822874;2878126;2764000;3002060;3037100;3151828;2906776;2421066
-119;'428;Latvia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4888;31070;65377;129192;189109;276175;294792;332771;354461;312448;313097;424592;472140;487328;472559;534559;355102;305462;455641;499924;484815;541543;625393;540902;589843;634484.84;712454;679379;688216;1285978;1102369;662198
-119;'428;Latvia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260000;45000;200000;350000;104000;150000;400000;593000;580000;645000;847600;867500;1108000;1002000;1024000;578600;298550;260000;550000;562000;601840;659000;717000;670212;695705;625259;675000;622970;588000;796930;720227;720227
-119;'428;Latvia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;84;500;1000;700;4000;4000;7000;8140;5370;6880;8087;13252;29914;30300;46464;33657;8925;10528;10842;11468;8926;17882;25279;29311;28088;41000;40973;45400;78030;53991;14089
-119;'428;Latvia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;51;246;833;412;996;1185;826;856;803;1027;2174;3584;7512;9371;14331;11231;3883;4683;5504;5455;4840;7508;7111;8068;8568.74;12761;12939;13291;25603;24686;12194
-119;'428;Latvia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2069;19975;123800;195000;164000;136000;316000;372000;442130;493570;567620;626142;562680;373064;409816;335688;230741;220351;311766;341644;346531;429609;512728;556516;472765;420000;438000;456680;461500;640036;768995;387687
-119;'428;Latvia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1228;2836;32470;51144;30535;17397;40173;45622;48714;52279;64351;84615;89411;71424;80866;91060;62268;43840;64669;80038;76746;97552;117394;104280;85941;87283;107957;97404;92225;179549;184471;99867
-119;'428;Latvia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;8000;10000;10400;12000;13000;15000;15000;16000;22000;23700;28500;28600;20000;20000;18000;13400;1000;0;0;300;400;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;342;1000;1500;300;1000;1000;5000;490;940;1110;1129;1190;1179;2435;4738;4407;51870;69388;91024;89204;127394;124505;129294;126510;96195;96195;132116;147700;154033;140359;132963
-119;'428;Latvia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;359;834;1629;733;1356;1590;610;1032;1321;1852;1509;1787;2498;3654;6335;5023;9875;11277;16711;15912;24221;26027;23560;24098;22308.89;22309;35028;37900;45708;47373;50614
-119;'428;Latvia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;4000;4200;5000;5000;6000;7000;7630;10790;12200;14191;14703;15334;13845;9554;7713;4712;6608;1947;1167;1684;2867;3284;4934;27012;27012;3690;28200;41009;74811;94231
-119;'428;Latvia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;3636;7679;9648;7824;8749;9053;8296;11182;12751;17067;17049;13862;15570;15671;12548;5129;2773;1871;1722;1297;2357;2049;2010;14914.53;14915;3025;9216;16034;37136;47216
-119;'428;Latvia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;179000;228000;226000;269000;296000;328000;308000;275000;284900;294000;329800;365600;405500;430200;426800;650100;645000;918299;922862;1011990;1157335;1131889;1270490;1367299;1423583;1363583;1264100;1392681;1428681;1428681;1428681
-119;'428;Latvia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;591;5400;7600;5800;17000;23000;19000;41490;47380;60800;78814;92877;134675;151666;185159;116541;70851;81511;120842;100935;98211;129961;160354;235755;291893;260522;269000;277200;292031;301468;145940
-119;'428;Latvia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;310;1095;2412;2398;5245;6792;5748;10454;13433;16794;24313;33874;47649;64481;90773;71985;36499;38182;52703;43671;46075;61923;66265;78244;106229.99;106229;98369;99723;149881;143858;88632
-119;'428;Latvia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22862;73783;149700;157300;221300;248800;284000;248400;225260;225210;224660;276823;307271;344393;387215;478401;590993;658754;801044;817862;928180;988698;1037036;1158477;1325411;1427577;1337020;1204675;1315600;1252798;1273827;1377224
-119;'428;Latvia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7560;18378;33037;37144;70880;76824;93601;70925;72000;78542;78299;99109;126492;147593;178678;262034;297983;227527;305993;370229;372362;406580;412983;372513;421542;482009.88;482010;460902;473549;668780;704292;695440
-119;'428;Latvia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;58000;63000;73000;103000;120000;150000;155000;156000;175600;189000;179000;197400;225200;237800;220600;180700;163000;236324;253827;277858;285234;250000;279669;322583;323583;323583;307300;306852;306852;306852;306852
-119;'428;Latvia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;59;1400;2800;300;2000;2000;2000;3540;6350;6320;6871;10528;12490;25658;41381;36511;32716;37054;47684;34728;32400;53549;75436;90883;117222;117222;91110;100100;98215;94123;48262
-119;'428;Latvia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;69;314;872;157;566;442;607;735;1424;1505;1998;3609;5196;10744;20787;23676;13911;14748;26290;19764;18731;30549;36606;38312;59499.42;59499;47769;47436;66260;69822;40667
-119;'428;Latvia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13700;40974;45900;54300;92000;110000;138000;129400;127970;143010;144260;147188;163611;180314;206357;239115;153619;165149;216048;234092;247415;249549;246925;286179;360295;344640;344640;334056;357200;340099;333171;322256
-119;'428;Latvia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6086;14620;22195;26257;44946;55814;71756;55932;60501;68811;69448;83254;104026;118721;137602;196066;176198;116361;152113;198171;198263;207031;221175;209334;245052;256734.24;256734;258376;264322;306369;369472;382203
-119;'428;Latvia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;290
-119;'428;Latvia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;405
-119;'428;Latvia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;1872
-119;'428;Latvia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;1257
-119;'428;Latvia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000;101000;148000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;313;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;160;370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5679;21801;92100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;1714;8881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;143000;149000;152000;129000;102000;109300;105000;150800;168200;180300;192400;100510;261800;176000;235911;206712;271205;318891;311670;393315;413305;450000;410000;408800;416307;416307;416307;416307
-119;'428;Latvia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;5400;10000;12000;14000;21140;21490;23430;25981;29711;40264;54746;76104;51492;24439;29836;29904;26649;31179;34524;41085;56838;46650;46180;57290;48400;52397;68410;46709
-119;'428;Latvia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1440;2218;3094;3900;3936;4643;5529;5548;6963;8700;12442;17705;29007;21185;8492;9438;10673;9355;11564;12458;11422;14301;14147.81;14148;15675;15936;21470;24162;19765
-119;'428;Latvia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84700;107000;115000;124000;109000;78690;80760;72340;123645;137295;154980;170286;186962;256642;183507;204703;159671;232220;279774;256592;318824;370314;407495;344090;316402;283000;264269;322216;359838
-119;'428;Latvia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8168;20000;15856;16249;10442;8040;9231;7992;14918;20543;25006;35656;45545;58350;34651;33424;38124;49653;59132;56584;58763;61279;73272.85;73273;59150;55697;74489;100090;104382
-119;'428;Latvia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;105690;207600;306000;446064;462323;462927;553210;570219;597506;631411;650000;630000;548000;669522;669522;669522;669522
-119;'428;Latvia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;0;1560;4370;13360;24205;25396;50921;53061;50367;14147;2738;1993;7269;11247;6830;8926;8384;44348;84165;59680;76853;71200;73203;76362;7174
-119;'428;Latvia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;64;370;892;2958;5557;8306;14241;15670;18248;4172;715;642;2550;1949;2199;2639;1763;6926;14224.91;14225;13880;12769;27643;20929;2287
-119;'428;Latvia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;50;7680;5823;4047;6359;8483;48724;177314;307601;378563;419194;443239;451233;525464;537192;580197;651724;645080;538520;652600;562073;553822;662189
-119;'428;Latvia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;27;9;9;648;874;946;2500;2909;15807;59751;73404;117819;130552;121184;135858;132672;99155;111371;144777.57;144778;137018;144778;263061;205256;179658
-119;'428;Latvia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;17000;23000;23000;27000;26000;24000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;36000;36000;36000
-119;'428;Latvia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;219;2400;300;100;5000;7000;3000;15250;15170;17690;21757;27242;31000;18201;17307;14391;10958;12628;35985;28311;27802;32962;35449;43686;43856;37440;43747;57500;68216;62573;43795
-119;'428;Latvia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;81;411;100;23;1585;2318;1141;4706;5588;6783;9795;13259;15770;20362;22731;22952;13381;13354;13190;12603;13581;16277;16474;18705;18357.86;18357;21045;23582;34508;28945;25913
-119;'428;Latvia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3483;11008;11700;18300;22300;23800;22000;10000;18570;1390;380;167;2318;2740;2089;3600;3418;2497;1730;4905;5306;8142;8055;16282;14605;23718;3210;15697;22800;86357;64618;32941
-119;'428;Latvia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829;2044;1961;2719;5934;5154;5542;4524;3450;491;211;63;977;1366;2511;4616;3684;3111;2637;3382;3262;4559;2552;5261;3840;7225.21;7225;6358;8752;24861;29474;29197
-119;'428;Latvia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;23000;27000;26000;24000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;1000;9740;9770;10810;14144;21361;20040;11961;8517;4524;3127;3612;10606;6434;6489;12850;16601;10685;10050;11400;13622;15300;22518;18351;11285
-119;'428;Latvia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;911;1138;517;2847;3716;4245;6395;10380;11582;14200;10059;6061;2639;2722;3802;3487;3830;6959;8354;4906;4369.43;4369;7233;7381;11787;10406;6941
-119;'428;Latvia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17600;22000;22800;22000;10000;18570;1330;190;136;1900;2208;1855;2363;1585;1181;279;2613;3759;1445;1306;10568;164;259;1170;1629;1900;11730;32081;27822
-119;'428;Latvia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;5774;5060;5514;4496;3445;432;75;51;572;660;1531;2843;1922;1445;1338;2158;2455;1061;544;3530;105;184.39;184;1084;1163;6853;20677;25017
-119;'428;Latvia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;36000;36000;36000
-119;'428;Latvia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3000;1000;5170;5100;5820;7338;4534;7037;2626;7290;8121;5929;6723;18487;14577;14083;13032;12636;18984;18739;18180;20314;23500;27575;21552;16437
-119;'428;Latvia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;805;469;1649;1696;2237;3232;2152;2610;3360;11459;14524;8245;8244;7186;6708;7311;6919;6465;10011;9801.5;9801;11451;12585;17781;13041;10056
-119;'428;Latvia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;1000;0;0;0;60;160;31;306;316;209;1086;1796;1313;1364;2268;1537;1809;1312;714;4157;928;2040;4862;2400;63620;16294;2395
-119;'428;Latvia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;160;94;1;23;0;58;106;12;367;623;953;1513;1721;1660;1187;1203;797;868;519;492;1128;966.29;966;1687;2152;15126;3874;1795
-119;'428;Latvia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;300;300;100;1000;1000;1000;340;300;1060;275;1347;3923;3614;1500;1746;1902;2293;6892;7300;7230;7080;6212;14017;15067;7860;9811;18700;18123;22670;16073
-119;'428;Latvia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;71;100;23;274;375;155;210;176;301;168;727;1578;2802;1213;2367;2497;2388;2202;2408;2440;2399;1655;3788;4186.94;4187;2361;3616;4940;5498;8916
-119;'428;Latvia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;0;112;216;25;151;37;3;87;24;10;4888;5437;5000;10284;22531;0;9206;18500;11007;16243;2724
-119;'428;Latvia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;5;5;1;30;0;38;83;27;260;41;6;112;21;10;2630;1489;1239;2607;6074.53;6075;3587;5437;2882;4923;2385
-119;'428;Latvia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;17000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;210;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;76;340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3483;11008;11700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829;2044;1961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55500;36100;33100;34100;23000;20000;22000;35000;40000;40000;45000;50000;60000;60000;70000;80000;80000;80000;70000;75000;102012;105000;90000;98000;69000;70000;70000;69634;77500;114972;102508;102508
-119;'428;Latvia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;612;600;1700;1700;500;0;100;462;520;2080;2289;8208;7671;7621;4564;4675;4892;7021;9722;9790;6216;6487;9463;7876;8276;8276;11429;11300;19459;18576;23304
-119;'428;Latvia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;230;195;775;775;186;175;37;171;180;459;403;778;1119;1180;813;843;586;955;1418;1481;1380;1655;1657;1332;2365.11;2365;2384;2189;5028;8077;10171
-119;'428;Latvia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;1660;11000;16700;16700;16000;19000;24200;26100;26090;31440;35403;39376;44370;39973;37773;38459;37162;28862;32326;40905;57898;60478;72135;75194;73138;73138;76839;86000;107786;102250;113631
-119;'428;Latvia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;514;626;2263;2263;1369;1192;2253;2247;1763;2098;2704;3067;3010;3220;3549;4879;3366;4508;6460;6409;9398;10213;10674;13191;13368.49;13369;11992;11390;29399;31304;33841
-119;'428;Latvia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;16100;8100;9100;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;14972;12508;12508
-119;'428;Latvia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;600;1700;1700;500;0;0;152;170;80;74;101;417;619;531;179;13;132;213;358;244;236;526;408;2095;2095;1385;1000;1635;6957;12901
-119;'428;Latvia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;195;775;775;186;172;32;114;107;70;82;136;254;281;303;148;20;113;140;328;305;239;366;295;1421.14;1421;454;655;1185;4922;8301
-119;'428;Latvia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;4;11;5;21;151;173;34;65;100;106;108;2;6147;2987;2987;862;300;7921;12508;29714
-119;'428;Latvia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;11;2;4;1;3;15;18;13;21;73;84;31;47;110;139;62;5;2659;1461.09;1462;1815;165;6395;10926;22137
-119;'428;Latvia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36900;10000;2000;3000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13972;11691;11691
-119;'428;Latvia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;600;1700;1700;500;0;0;112;60;40;51;29;56;183;87;154;9;64;174;385;235;223;518;407;2088;2088;1382;1000;1583;6767;12855
-119;'428;Latvia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;195;775;775;186;149;7;82;48;18;33;33;50;66;80;146;13;65;112;344;270;195;352;284;1405.14;1405;435;608;1123;4802;8205
-119;'428;Latvia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;4;11;5;21;71;2;34;65;98;98;108;1;6147;2931;2931;842;0;7564;11691;29509
-119;'428;Latvia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;7;11;2;3;0;3;15;18;13;21;35;8;31;47;107;121;62;3;2659;1433.13;1434;1677;0;6283;10526;21991
-119;'428;Latvia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-119;'428;Latvia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;6;400;603;442;27
-119;'428;Latvia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11.25;11;3;181;331;220;17
-119;'428;Latvia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;22;0;18;0;0
-119;'428;Latvia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33.03;33;13;0;4;0;0
-119;'428;Latvia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;4000;1000;1500;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;114;16;0;0;0;3;41;0;0;18;0;;;;;;;
-119;'428;Latvia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;0;0;1;10;0;0;0;3;31;0;0;11;0;;;;;;;
-119;'428;Latvia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5;0;16;0;0;0;0;0;0;0;0;68;;;;;;;
-119;'428;Latvia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;12;;;;;;;
-119;'428;Latvia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;13;46;84;0;11;44;56;0;55;160;54;;;;;;;
-119;'428;Latvia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;13;24;56;0;6;29;35;0;35;71;23;;;;;;;
-119;'428;Latvia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30800;6000;1000;1500;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13972;11691;11691
-119;'428;Latvia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;600;1700;1700;500;0;0;111;60;40;43;29;56;56;25;58;5;53;127;247;235;168;340;353;2062;2062;1376;600;980;6325;12828
-119;'428;Latvia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;195;775;775;186;149;7;82;48;18;22;33;50;52;46;73;10;59;80;249;270;160;270;261;1393.9;1394;432;427;792;4582;8188
-119;'428;Latvia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;4;6;5;5;71;2;34;65;98;98;108;1;6079;2741;2741;820;0;7284;11691;29509
-119;'428;Latvia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;11;2;3;0;3;15;18;13;13;35;8;31;47;107;121;62;3;2647;1400.1;1401;1664;0;6052;10526;21991
-119;'428;Latvia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1433;1433
-119;'428;Latvia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1537;1537;894;0;0;1549;1731
-119;'428;Latvia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;986.84;987;58;0;0;1018;1101
-119;'428;Latvia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;777;777;390;0;596;1433;2202
-119;'428;Latvia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;477.68;478;262;0;446;1130;1486
-119;'428;Latvia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7284;10258;10258
-119;'428;Latvia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369;600;1700;1700;500;0;0;0;60;0;0;0;0;0;4;48;1;49;124;192;193;161;339;348;522;522;479;600;978;4446;11095
-119;'428;Latvia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;195;775;775;186;2;5;0;34;0;0;0;0;0;3;46;1;47;72;202;232;143;267;256;404.2;404;367;420;786;3371;7082
-119;'428;Latvia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;65;0;32;62;96;96;106;0;6073;1957;1957;429;0;6688;10258;27172
-119;'428;Latvia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;0;0;0;0;0;0;0;0;13;0;26;36;101;116;54;0;2641;915.91;916;1400;0;5606;9396;20179
-119;'428;Latvia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6688;0;0
-119;'428;Latvia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;2;330;2
-119;'428;Latvia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86;3;7;7;6;193;5
-119;'428;Latvia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;1;0;0;0;135
-119;'428;Latvia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52;7;2;0;0;0;326
-119;'428;Latvia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30800;6000;1000;1500;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-119;'428;Latvia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;110;0;40;43;29;54;56;21;10;4;4;3;55;42;7;1;5;;;;;;;
-119;'428;Latvia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;147;2;82;14;18;22;32;50;52;43;27;9;12;8;47;38;17;3;5;;;;;;;
-119;'428;Latvia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;4;6;5;5;6;2;2;3;2;2;2;1;6;;;;;;;
-119;'428;Latvia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;1;2;3;0;3;15;18;13;13;22;8;5;11;6;5;8;3;6;;;;;;;
-119;'428;Latvia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;0;0;0;0;12;4;0;0;41;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;0;0;0;0;17;3;0;0;29;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;262;0;0
-119;'428;Latvia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;227;0;0
-119;'428;Latvia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;6100;6100;6100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;1000;817;817
-119;'428;Latvia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;40;110;40;31;72;361;436;444;37;8;68;39;14;9;13;8;1;7;7;3;0;52;190;46
-119;'428;Latvia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;0;0;23;25;32;59;52;53;103;204;215;223;19;10;48;28;13;35;44;14;11;16;16;19;47;62;120;96
-119;'428;Latvia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;80;171;0;0;2;8;0;1;0;56;56;20;300;619;817;205
-119;'428;Latvia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;0;0;0;0;0;38;76;0;0;3;18;0;2;0;27.96;28;138;165;339;400;146
-119;'428;Latvia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;100;120;108;85;0;0;171;366;298;191;274;270;331;276;191;211;191;191;97;100;388;214;232
-119;'428;Latvia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;48;61;61;49;0;0;139;391;311;119;206;178;246;171;109;107;96.5;96;73;90;222;140;173
-119;'428;Latvia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;509;6369;0;0;262;5;150;132;0;10;245;248;190;1146;1454;1454;86;2700;2010;1966;1359
-119;'428;Latvia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;195;0;0;106;6;54;53;0;5;141;154;94;633;791.52;792;320;1565;1123;930;594
-119;'428;Latvia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12500;20000;25000;25000;21000;20000;22000;35000;40000;40000;45000;50000;60000;60000;70000;80000;80000;80000;70000;75000;102012;105000;90000;98000;69000;70000;70000;69634;76500;100000;90000;90000
-119;'428;Latvia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;233;0;0;0;0;0;100;310;350;2000;2215;8107;7254;7002;4033;4496;4879;6889;9509;9432;5972;6251;8937;7468;6181;6181;10044;10300;17824;11619;10403
-119;'428;Latvia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;20;0;0;0;0;3;5;57;73;389;321;642;865;899;510;695;566;842;1278;1153;1075;1416;1291;1037;943.97;944;1930;1534;3843;3155;1870
-119;'428;Latvia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;1660;11000;16700;16700;16000;19000;24200;26100;26090;31440;35402;39372;44359;39968;37752;38308;36989;28828;32261;40805;57792;60370;72133;69047;70151;70151;75977;85700;99865;89742;83917
-119;'428;Latvia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;514;626;2263;2263;1369;1185;2242;2245;1759;2097;2701;3052;2992;3207;3528;4806;3282;4477;6413;6299;9259;10151;10669;10532;11907.39;11907;10177;11225;23004;20378;11704
-119;'428;Latvia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45400;10000;4000;6000;8300;16000;18000;19000;16000;24300;33000;38000;38000;39000;57000;60000;52000;54000;53000;54000;43934;44213;40000;45000;20187;16000;16000;36276;24600;27633;28600;28600
-119;'428;Latvia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826;50000;44400;51200;69000;62000;72000;31900;85290;89330;100260;106455;130438;149686;135979;152988;140567;109178;152501;169036;164580;189685;184816;180670;176658;183633;183633;170318;170100;186000;172740;139781
-119;'428;Latvia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1268;24500;36950;72466;85600;58998;66136;32573;62426;66718;74496;89581;114324;123229;127100;157281;152904;102257;139209;170421;160854;193041;180646;147176;145288;152912.69;152913;150979;143798;174694;204037;151995
-119;'428;Latvia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;2299;4600;6600;3000;4000;5000;7800;9180;12750;24020;24905;46218;62905;42902;34457;39498;29693;36925;46952;39888;33698;30061;32532;35696;33191;33191;45318;32800;39646;33293;23276
-119;'428;Latvia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1174;2138;6509;14237;5640;6663;5428;4341;5876;7442;17302;20169;42131;58339;36145;40795;38146;27040;36194;52251;45963;42158;34315;34988;35147;34579.21;34581;41314;31964;42126;43090;30761
-119;'428;Latvia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;4000;3000;4000;4000;4000;3600;2000;1000;1000;1000;0;1000;1000;0;1000;1000;4000;3000;3000;3000;3000;1000;1000;0;0;0;0;0;0;0;0
-119;'428;Latvia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;33000;21700;18300;36000;31000;40000;17300;44590;43050;50070;54378;71588;79587;67518;73417;74586;51050;66939;67768;79360;90468;92135;92557;95138;94853;94853;87958;85000;93101;94170;67882
-119;'428;Latvia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;12500;11609;17406;36600;24173;30733;12365;31830;31601;37043;44901;62138;68326;63195;79067;80356;54394;67662;76661;82422;95598;93088;80256;81937;81434.93;81435;80709;76597;89359;115629;84788
-119;'428;Latvia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;999;1300;600;0;0;0;4600;2150;1100;2120;6793;22739;33922;8780;9485;10040;6955;7936;9011;11974;10814;10518;11948;13348;9653;9653;8837;8000;11818;10666;6791
-119;'428;Latvia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;421;1471;1280;0;0;42;1740;1190;776;1761;8456;25378;37382;10929;12258;12481;8370;10584;15449;17459;16843;13378;12991;13415;10328.38;10329;10541;9319;12149;15180;11474
-119;'428;Latvia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;3000;2000;2000;3000;3000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;15000;11600;14300;11000;13000;16000;5900;14030;13030;14130;13869;13376;13902;15371;17846;20696;12814;13044;12933;10763;14630;14924;10005;5343;6284;6284;5641;4900;6581;9047;5405
-119;'428;Latvia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;3500;4874;8631;7000;6257;7863;2853;6527;6765;6614;6190;6634;7814;9999;13556;13670;9775;9362;10254;8635;11800;10498;5353;2518;4141.74;4142;4905;4728;6339;9707;4728
-119;'428;Latvia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;270;170;220;287;737;299;351;1691;3450;1888;484;584;1184;144;750;394;1404;995;995;500;500;1092;1607;166
-119;'428;Latvia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;46;122;73;90;118;394;151;221;1091;2427;1220;290;429;1364;174;528;202;660;492.66;493;329;271;674;1288;132
-119;'428;Latvia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;2000;1000;1000;2600;2000;1000;1000;1000;0;1000;1000;0;1000;1000;4000;3000;3000;3000;3000;1000;1000;0;0;0;0;0;0;0;0
-119;'428;Latvia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;18000;10100;4000;25000;18000;24000;11400;30560;30020;35940;40509;58212;65685;52147;55571;53890;38236;53895;54835;68597;75838;77211;82552;89795;88569;88569;82317;80100;86520;85123;62477
-119;'428;Latvia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;9000;6735;8775;29600;17916;22870;9512;25303;24836;30429;38711;55504;60512;53196;65511;66686;44619;58300;66407;73787;83798;82590;74903;79419;77293.19;77293;75804;71869;83020;105922;80060
-119;'428;Latvia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;999;1300;600;0;0;0;4500;1880;930;1900;6506;22002;33623;8429;7794;6590;5067;7452;8427;10790;10670;9768;11554;11944;8658;8658;8337;7500;10726;9059;6625
-119;'428;Latvia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;421;1471;1280;0;0;0;1694;1068;703;1671;8338;24984;37231;10708;11167;10054;7150;10294;15020;16095;16669;12850;12789;12755;9835.72;9836;10212;9048;11475;13892;11342
-119;'428;Latvia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0
-119;'428;Latvia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;900;3590;3020;4420;2689;2988;4357;10135;10254;9020;4818;7860;5997;10395;10673;11675;7760;12161;13476;13476;12357;12900;13758;14593;14144
-119;'428;Latvia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;693;2188;1805;2554;2130;2352;3232;6622;8154;7383;4411;5982;5208;8055;8406;9160;5687;8000;8812.17;8812;7927;8464;10547;13647;13549
-119;'428;Latvia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;40;70;50;122;222;247;170;206;113;118;230;409;499;164;408;414;400;206;206;168;200;396;461;354
-119;'428;Latvia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;130;59;30;36;101;191;182;200;241;112;107;314;489;547;209;562;488;405;213.64;214;179;282;393;458;418
-119;'428;Latvia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1000;1000;1000;1000;0;1000;1000;0;1000;0;3000;2000;2000;2000;2000;500;500;0;0;0;0;0;0;0;0
-119;'428;Latvia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;3000;9350;11890;17430;19800;31879;36377;19806;21585;22007;16427;19817;22139;29471;33062;30942;36547;36870;33672;33672;29285;30800;33360;33708;23241
-119;'428;Latvia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7030;2712;7997;8754;13742;16903;27549;30738;21257;27823;29738;19612;23057;28017;32992;38972;35313;35327;35677;31883.41;31883;31031;31436;35713;46412;32411
-119;'428;Latvia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;900;170;170;980;1287;14623;25355;4282;3741;3410;3047;4530;5646;8035;8258;6898;8060;8766;5971;5971;5990;5300;6015;6518;4455
-119;'428;Latvia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;638;163;79;801;1233;15078;27187;5370;5419;5433;4378;6194;9511;11381;12249;8837;8378;9087;6771.49;6771;7392;6435;7213;10204;7909
-119;'428;Latvia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;500;500;0;0;0;0;0;0;0;0
-119;'428;Latvia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;7500;17620;15110;14090;18020;23345;24951;22206;23732;22863;16991;26218;26699;28731;32103;34594;38245;40764;41421;41421;40675;36400;39402;36822;25092
-119;'428;Latvia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15840;6107;15118;14277;14133;19678;25603;26542;25317;29534;29565;20596;29261;33182;32740;36420;38117;33889;35742;36597.61;36598;36846;31969;36760;45863;34100
-119;'428;Latvia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3500;1670;690;870;5097;7157;8021;3977;3847;3067;1902;2692;2372;2256;2248;2462;3080;2778;2481;2481;2179;2000;4315;2080;1816
-119;'428;Latvia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;926;846;594;834;7004;9715;9862;5138;5507;4509;2665;3786;5020;4167;4211;3451;3923;3263;2850.6;2851;2641;2331;3869;3230;3015
-119;'428;Latvia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;6000;1000;2000;4300;12000;14400;17000;15000;23300;32000;38000;37000;38000;57000;59000;51000;50000;50000;51000;40934;41213;39000;44000;20187;16000;16000;36276;24600;27633;28600;28600
-119;'428;Latvia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;17000;22700;32900;33000;31000;32000;14600;40700;46280;50190;52077;58850;70099;68461;79571;65981;58128;85562;101268;85220;99217;92681;88113;81520;88780;88780;82360;85100;92899;78570;71899
-119;'428;Latvia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;12000;25341;55060;49000;34825;35403;20208;30596;35117;37453;44680;52186;54903;63905;78214;72548;47863;71547;93760;78432;97443;87558;66920;63351;71477.76;71478;70270;67201;85335;88408;67207
-119;'428;Latvia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1300;3300;6000;3000;4000;5000;3200;7030;11650;21900;18112;23479;28983;34122;24972;29458;22738;28989;37941;27914;22884;19543;20584;22348;23538;23538;36481;24800;27828;22627;16485
-119;'428;Latvia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;1717;5038;12957;5640;6663;5386;2601;4686;6666;15541;11713;16753;20957;25216;28537;25665;18670;25610;36802;28504;25315;20937;21997;21732;24250.83;24252;30773;22645;29977;27910;19287
-119;'428;Latvia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4816;4816
-119;'428;Latvia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;440;610;690;763;1053;951;1301;1410;1735;1558;2213;2825;2103;2191;2081;1664;1671;1421;1421;2000;1400;1461;1515;535
-119;'428;Latvia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;140;333;498;428;660;1051;1406;2048;2544;3424;2505;3879;4866;3687;4066;3896;2771;2669;2520.73;2521;3348;2482;2691;3359;1858
-119;'428;Latvia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;6;9;8;3;5;200;1021;614;434;504;44;17;36;19;23;23;205;200;195;71;37
-119;'428;Latvia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;16;3;6;19;19;19;22;130;621;1674;1369;1370;199;67;111;69;110.85;111;694;717;589;228;159
-119;'428;Latvia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14400;17000;15000;20500;30000;34000;33000;34000;53000;57000;48000;46000;46000;47000;38467;38470;38000;43000;20187;16000;16000;36259;24600;27613;22439;22439
-119;'428;Latvia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;12400;35460;41370;44830;49216;56549;68110;66156;77655;63896;56391;83182;98166;82817;96766;90293;86175;79544;87057;87057;80207;83500;91168;76405;70906
-119;'428;Latvia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10017;17780;25308;28527;31537;41353;48585;51152;59185;73232;66840;44178;66819;87802;72840;90462;80723;61251;58348;66500.75;66501;66040;63576;81147;82663;63256
-119;'428;Latvia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3200;6590;11040;18040;17993;23101;28681;32512;22869;25719;19045;25618;35059;24651;20603;18914;20490;22260;23445;23445;36259;24600;27613;22394;16411
-119;'428;Latvia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2080;2457;4001;5880;10614;11561;16445;20686;24441;27322;23156;16502;22310;33792;25030;23059;20244;20986;21067;23708.22;23709;29572;21524;29178;26861;18676
-119;'428;Latvia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;6000;1000;2000;4300;10000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600;16400;23000;18000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10847;28603;26000;10208;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2800;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;3425;5640;2953;;;;;;;;;;;;;;;;;;;;;;;;;;
-119;'428;Latvia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;10000;14000;18500;25000;26000;23000;28000;42000;45000;39000;37000;37000;38000;27467;27470;28000;33000;8187;4000;4000;14942;9500;9366;5213;5213
-119;'428;Latvia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;5400;17090;21520;23350;25276;31311;42692;41792;52434;41441;37755;59388;69452;54649;64556;62710;57231;59555;64094;64094;56915;59200;65412;52405;42578
-119;'428;Latvia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917;2050;6598;8226;8712;9992;13151;18220;19426;29913;24479;15767;30828;44453;30836;39469;38424;28370;29256;34133.94;34134;30698;28251;41161;39095;23198
-119;'428;Latvia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;500;190;1090;1800;3284;4801;4950;6185;7978;12410;8347;10620;13435;9696;7832;4265;6561;8187;8313;8313;14942;9500;9366;5213;112
-119;'428;Latvia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;188;60;337;619;1152;1850;2111;2575;4332;7242;4687;6863;10552;7232;6869;3846;4647;5692;6390.8;6391;10461;6977;8400;4690;108
-119;'428;Latvia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3000;0;0;0;0;0;0;3000;4000;0;0;1000;1000;1000;1000;4000;4000;2000;2000;2000;2985;2000;1973;1531;1531
-119;'428;Latvia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;5400;14830;13930;17000;18675;17991;21631;21247;17847;15345;13077;15756;21239;20978;22797;18257;19925;12500;13439;13439;14846;16200;16620;17166;22440
-119;'428;Latvia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870;14417;15465;15793;18829;26083;29197;29056;35617;34619;33363;21640;26197;32730;33502;38223;29993;23259;19839;20807.87;20808;24180;25014;26928;32254;29915
-119;'428;Latvia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;580;230;1280;1058;1683;20489;22812;11871;11467;9495;13153;10175;1169;1748;4088;3572;2369;3261;3261;2985;2000;1973;1531;1499
-119;'428;Latvia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;616;508;214;1409;1654;4050;17049;19584;13890;11392;8670;12002;11957;3437;4001;5412;5385;3147;4576.6;4577;3793;3733;4347;3649;3140
-119;'428;Latvia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1000;0;0;1000;3000;4000;5000;2000;3000;4000;4000;4000;4000;8000;8000;6000;6000;10000;10000;10000;18297;13100;16271;15645;15645
-119;'428;Latvia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;1400;3300;4540;4480;4226;6458;2385;2260;6489;6514;5408;7753;7171;6878;9161;8821;7453;7154;9129;9129;7314;7500;7995;6377;5665
-119;'428;Latvia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;1241;3142;3989;3996;4902;5865;3397;3786;8241;8538;6642;9611;10391;8232;12476;11896;8712;9021;11266.88;11267;10530;9964;12290;10923;9912
-119;'428;Latvia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2200;5640;9640;14960;13621;16290;2421;2508;1773;1099;1055;1430;11171;13764;10691;10519;10294;11628;11811;11811;18297;13100;16271;15645;14797
-119;'428;Latvia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1538;3253;5250;8586;8742;10425;1229;1274;5566;3923;3082;3280;10756;14341;12097;10939;10893;12124;12665.76;12666;15285;10811;16427;18517;15419
-119;'428;Latvia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;3000;1000;2000;4000;5000;6000;1000;6000;5000;5000;5000;4000;4000;2000;2000;0;0;0;0;0;35;0;3;50;50
-119;'428;Latvia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;240;1380;0;1039;789;1402;857;885;596;151;285;304;312;252;505;1566;335;395;395;1132;600;1141;457;223
-119;'428;Latvia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;72;103;519;0;376;372;479;356;459;460;129;183;228;270;294;410;910;232;292.06;292;632;347;768;391;231
-119;'428;Latvia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;180;80;0;30;327;821;1007;1247;743;148;415;278;22;332;42;63;76;60;60;35;0;3;5;3
-119;'428;Latvia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;115;180;79;0;13;120;297;1008;3534;599;63;165;527;20;92;47;61;104;75.06;75;33;3;4;5;9
-119;'428;Latvia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;0;0;0;2800;2000;4000;4000;4000;4000;2000;3000;4000;4000;4000;2467;2743;1000;1000;0;0;0;17;0;20;1345;1345
-119;'428;Latvia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;17000;12100;16500;10000;13000;12000;2000;4800;4300;4670;2098;1248;1038;1004;506;350;179;167;277;300;260;307;274;305;302;302;153;200;270;650;458
-119;'428;Latvia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;12000;14494;26457;23000;24617;25043;2288;4955;6092;5488;2667;2550;2345;2672;2438;2284;1180;849;1092;1905;2915;2939;2898;2334;2456.28;2456;882;1143;1497;2386;2093
-119;'428;Latvia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1300;1900;3200;0;1000;2000;0;440;600;3860;113;369;294;1607;2098;3539;2672;2757;2448;2759;2237;612;58;69;70;70;17;0;20;162;37
-119;'428;Latvia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;1717;4419;9532;0;3710;3303;141;684;770;4924;146;289;252;756;1193;2379;1547;1626;1641;2104;2057;626;900;596;431.76;432;507;404;210;821;452
-119;'428;Latvia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172085.81;163306;192287;200038;251601;236667;212665
-119;'428;Latvia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626672.18;635250;681784;723524;1017488;957856;728268
-119;'428;Latvia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6645.12;6645;13252;15680;23887;22806;14545
-119;'428;Latvia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42806.43;42806;48535;59908;73799;68500;50172
-119;'428;Latvia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3202.21;3202;9299;10534;15284;14664;9425
-119;'428;Latvia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32190.99;32191;35494;41720;50765;44269;30260
-119;'428;Latvia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3442.91;3443;3953;5146;8603;8142;5120
-119;'428;Latvia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10615.44;10615;13041;18188;23034;24231;19912
-119;'428;Latvia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10520.68;10521;14192;13794;20701;28437;22605
-119;'428;Latvia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105430.77;105431;108798;102554;186446;220175;146996
-119;'428;Latvia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2066.02;2066;2718;3236;3545;3528;2919
-119;'428;Latvia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5308.29;5308;6360;8676;11584;2654;1965
-119;'428;Latvia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36180.36;36180;36156;36354;51653;38054;41916
-119;'428;Latvia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151878.14;151878;169309;182110;256554;164205;151771
-119;'428;Latvia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59459;48553
-119;'428;Latvia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2245;2004
-119;'428;Latvia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662;2120
-119;'428;Latvia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59459;48553
-119;'428;Latvia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69142;40566
-119;'428;Latvia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;9278
-119;'428;Latvia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;2489
-119;'428;Latvia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;1735
-119;'428;Latvia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;9278
-119;'428;Latvia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1158;7654
-119;'428;Latvia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0
-119;'428;Latvia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1
-119;'428;Latvia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;1
-119;'428;Latvia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0
-119;'428;Latvia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0
-119;'428;Latvia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101761;92981;98373;103539;118003;117584;107565
-119;'428;Latvia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183716.82;192296;187993;204658;255076;268357;220506
-119;'428;Latvia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1152.9;1153;1613;3824;4823;6267;5712
-119;'428;Latvia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77637.33;77637;79163;82063;110535;119255;79638
-119;'428;Latvia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13759.72;13760;25983;23611;28989;19991;17403
-119;'428;Latvia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59894.39;59894;81626;83555;123494;114710;77220
-119;'428;Latvia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130543.85;130544;152790;163837;181574;197523;186953
-119;'428;Latvia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86520.21;86520;94277;109041;119812;122056;103344
-119;'428;Latvia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4494.38;4494;4251;4292;6375;8002;5458
-119;'428;Latvia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110.06;110;87;145;263;332;243
-119;'428;Latvia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21642.85;21643;21519;19915;22083;34447;24350
-119;'428;Latvia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5948.22;5948;5723;7006;7472;13911;10662
-119;'428;Latvia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38818.19;38818;43174;46808;46434;56568;61009
-119;'428;Latvia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6629.32;6629;8700;12244;10745;12402;14370
-119;'428;Latvia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33392.82;33393;42304;42252;50723;57020;56189
-119;'428;Latvia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45767.51;45768;37980;40252;48803;50159;43711
-119;'428;Latvia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32195.6;32196;41542;50570;55959;41486;39947
-119;'428;Latvia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28065.1;28065;41787;49394;52529;45252;34358
-121;'422;Lebanon;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529616;598994;469371;252643;348453.47;482652;393344
-121;'422;Lebanon;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89815;96673;97339;76535;87597.18;104434.4;94963
-121;'422;Lebanon;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;19763;15874;14187;16518;18202;19182;15489;20280;20163;21678;26933;33051;33499;33471;32995;32263;48397;48940;49552;49655;58860;60645;63906;74531;58931;76306;77575;44646;34819;40845;40772;76643;74351;115766;92577;157755;178475;203732;166235;136984;187603;188959;187549;254185;257068;254906;331392;340983;340345;461551;495414;435281;410644;499768;339024;358674;361328;453199;347037;194786;277932.47;382385;308938
-121;'422;Lebanon;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;512;687;558;472;842;1143;1558;1668;2093;2115;1275;3777;3777;3777;3777;3777;3239;3239;3239;3239;2851;2691;2691;2691;2691;280;3348;16;548;13;13;9123;1250;805;869;9262;3065;4488;4884;4313;19518;19518;19518;12119;12119;12119;23079;28736;28736;58146;54871;33229;31284;27686;20247;14150;18843;25279;27226;18228;14327.18;18878.4;22254
-121;'422;Lebanon;1861;Roundwood;5516;Production;m3;45414;46123;53744;54526;55622;67528;56948;61479;55124;58882;64550;64913;66012;66988;70941;85549;69305;69305;67447;83331;75338;74009;81898;77096;81032;78537;78403;76515;79619;74156;73957;80280;83004;85192;87182;89072;90463;89955;25231;26224;26213;26201;26190;26178;26167;26046;26050;26050;36900;36866;36833;36801;36769;36737;36706;25823;25791;25759;25727;25696;26228;44632;58168
-121;'422;Lebanon;1861;Roundwood;5616;Import quantity;m3;47400;25750;39702;54400;85200;71200;48400;87800;70000;59200;71800;98100;74000;56000;38000;32000;21800;21800;21800;21800;6500;6400;6400;6400;6400;7416;6203;7146;6305;5864;5798;849;2569;2000;1100;5700;2800;1800;900;400;300;300;300;38367;38367;38367;38367;38367;16705;14549;15401;31799;13762;51488;15332;4497;4466;7645;4252;1898;2605;178;132
-121;'422;Lebanon;1861;Roundwood;5622;Import value;1000 USD;2495;1326;1520;1820;2723;2658;1721;2254;1422;1073;1800;3116;3550;3574;3260;2660;997;997;997;997;190;170;170;170;170;308;153;264;371;196;123;85;220;248;493;2881;624;501;168;132;171;171;171;2364;2364;2364;2364;2364;5264;5304;5328;6620;4798;4747;4885;1154;1530;3237;1495;592;941;199;141
-121;'422;Lebanon;1861;Roundwood;5916;Export quantity;m3;1100;2600;2700;2500;2300;1400;900;800;800;800;800;300;300;300;300;300;;;;;;;;;;;;;;;;56;0;0;0;600;0;0;0;0;0;0;0;550;550;550;550;550;550;3128;1268;965;203;230;442;27;74;13;0;0;5;5;113
-121;'422;Lebanon;1861;Roundwood;5922;Export value;1000 USD;33;62;50;47;58;33;15;15;15;15;15;7;7;7;7;7;;;;;;;;;;;;;;;;3;0;0;0;339;0;0;0;0;0;0;0;32;32;32;32;32;32;557;239;197;61;248;143;21;59;5;0;90;10;28;64
-121;'422;Lebanon;1862;Roundwood, coniferous;5516;Production;m3;5847;5882;6913;6951;7006;9445;7269;11245;7129;9167;14200;14217;14272;14320;14515;15237;14434;14434;14343;30907;23288;16568;19809;19967;20162;20038;17180;16136;17240;10316;11808;10761;10895;11003;11102;11195;11264;11239;11231;11224;11213;11201;11190;11178;11167;11046;11050;11050;21900;21866;21833;21801;21769;21737;21706;10823;10791;10759;10727;10696;10665;10241;11578
-121;'422;Lebanon;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3392;3922;3514;1492;2391;126;60
-121;'422;Lebanon;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1108;1780;1209;529;766;59;12
-121;'422;Lebanon;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;0;0;4;0;0
-121;'422;Lebanon;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;90;8;0;0
-121;'422;Lebanon;1863;Roundwood, non-coniferous;5516;Production;m3;39567;40241;46831;47575;48616;58083;49679;50234;47995;49715;50350;50696;51740;52668;56426;70312;54871;54871;53104;52424;52050;57441;62089;57129;60870;58499;61223;60379;62379;63840;62149;69519;72109;74189;76080;77877;79199;78716;14000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15563;34391;46590
-121;'422;Lebanon;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074;3723;738;406;214;52;72
-121;'422;Lebanon;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;1457;286;63;175;140;129
-121;'422;Lebanon;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;13;0;0;1;5;113
-121;'422;Lebanon;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;0;0;2;28;64
-121;'422;Lebanon;1864;Wood fuel;5516;Production;m3;37414;38123;38744;39526;40622;49528;45948;45479;43124;43882;44550;44913;46012;46988;50941;65549;49305;49305;47447;46731;46338;52009;56898;60096;64032;61537;64403;63515;65619;67156;65377;73130;75854;78042;80032;81922;83313;82805;18081;19074;19063;19051;19040;19028;19017;18896;18900;18900;18900;18866;18833;18801;18769;18737;18706;18673;18641;18609;18577;18546;19078;37482;51018
-121;'422;Lebanon;1864;Wood fuel;5616;Import quantity;m3;100;50;100;100;100;100;200;;;;;;;;;;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;169;169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1594;560;18234;3373;2904;2365;1045;1253;396;471;344;2;73;54
-121;'422;Lebanon;1864;Wood fuel;5622;Import value;1000 USD;2;1;2;1;3;2;3;;;;;;;;;;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;192;130;1806;511;433;193;154;137;90;55;35;2;18;10
-121;'422;Lebanon;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;476;537;111;205;205;2;;;;;;;
-121;'422;Lebanon;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;125;110;13;69;69;12;;;;;;;
-121;'422;Lebanon;1627;Wood fuel, coniferous;5516;Production;m3;1847;1882;1913;1951;2006;2445;2269;2245;2129;2167;2200;2217;2272;2320;2515;3237;2434;2434;2343;2307;2288;2568;2809;2967;3162;3038;3180;3136;3240;3316;3228;3611;3745;3853;3952;4045;4114;4089;4081;4074;4063;4051;4040;4028;4017;3896;3900;3900;3900;3866;3833;3801;3769;3737;3706;3673;3641;3609;3577;3546;3515;3091;4428
-121;'422;Lebanon;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;72;229;1;1;69;52
-121;'422;Lebanon;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;9;25;1;1;8;10
-121;'422;Lebanon;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1628;Wood fuel, non-coniferous;5516;Production;m3;35567;36241;36831;37575;38616;47083;43679;43234;40995;41715;42350;42696;43740;44668;48426;62312;46871;46871;45104;44424;44050;49441;54089;57129;60870;58499;61223;60379;62379;63840;62149;69519;72109;74189;76080;77877;79199;78716;14000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15563;34391;46590
-121;'422;Lebanon;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;324;242;343;1;4;2
-121;'422;Lebanon;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;81;30;34;1;10;0
-121;'422;Lebanon;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;100;50;100;100;100;100;200;;;;;;;;;;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;169;169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1594;560;18234;3373;2904;2365;1045;;;;;;;
-121;'422;Lebanon;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;2;1;2;1;3;2;3;;;;;;;;;;80;80;80;80;80;80;80;80;80;80;80;80;80;80;80;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;192;130;1806;511;433;193;154;;;;;;;
-121;'422;Lebanon;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;476;537;111;205;205;2;;;;;;;
-121;'422;Lebanon;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;125;110;13;69;69;12;;;;;;;
-121;'422;Lebanon;1865;Industrial roundwood;5516;Production;m3;8000;8000;15000;15000;15000;18000;11000;16000;12000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;36600;29000;22000;25000;17000;17000;17000;14000;13000;14000;7000;8580;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;18000;18000;18000;18000;18000;18000;18000;7150;7150;7150;7150;7150;7150;7150;7150
-121;'422;Lebanon;1865;Industrial roundwood;5616;Import quantity;m3;47300;25700;39602;54300;85100;71100;48200;87800;70000;59200;71800;98100;74000;56000;38000;32000;16300;16300;16300;16300;1000;900;900;900;900;1916;703;1646;805;364;298;680;2400;2000;1100;5700;2800;1800;900;400;300;300;300;38367;38367;38367;38367;38367;16705;12955;14841;13565;10389;48584;12967;3452;3213;7249;3781;1554;2603;105;78
-121;'422;Lebanon;1865;Industrial roundwood;5622;Import value;1000 USD;2493;1325;1518;1819;2720;2656;1718;2254;1422;1073;1800;3116;3550;3574;3260;2660;917;917;917;917;110;90;90;90;90;228;73;184;291;116;43;77;212;248;493;2881;624;501;168;132;171;171;171;2364;2364;2364;2364;2364;5264;5112;5198;4814;4287;4314;4692;1000;1393;3147;1440;557;939;181;131
-121;'422;Lebanon;1865;Industrial roundwood;5916;Export quantity;m3;1100;2600;2700;2500;2300;1400;900;800;800;800;800;300;300;300;300;300;;;;;;;;;;;;;;;;56;0;0;0;600;0;0;0;0;0;0;0;550;550;550;550;550;550;3128;792;428;92;25;237;25;74;13;0;0;5;5;113
-121;'422;Lebanon;1865;Industrial roundwood;5922;Export value;1000 USD;33;62;50;47;58;33;15;15;15;15;15;7;7;7;7;7;;;;;;;;;;;;;;;;3;0;0;0;339;0;0;0;0;0;0;0;32;32;32;32;32;32;557;114;87;48;179;74;9;59;5;0;90;10;28;64
-121;'422;Lebanon;1866;Industrial roundwood, coniferous;5516;Production;m3;4000;4000;5000;5000;5000;7000;5000;9000;5000;7000;12000;12000;12000;12000;12000;12000;12000;12000;12000;28600;21000;14000;17000;17000;17000;17000;14000;13000;14000;7000;8580;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;18000;18000;18000;18000;18000;18000;18000;7150;7150;7150;7150;7150;7150;7150;7150
-121;'422;Lebanon;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;200;0;0;200;400;0;0;0;0;33662;33662;33662;33662;33662;12000;12470;10709;12000;9019;47629;11597;2936;2347;3850;3285;1491;2390;57;8
-121;'422;Lebanon;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;0;0;21;47;0;0;0;0;2053;2053;2053;2053;2053;4953;4851;4245;4448;3702;3876;4331;848;1000;1771;1184;528;765;51;2
-121;'422;Lebanon;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2407;302;23;30;0;199;3;58;0;0;0;4;0;0
-121;'422;Lebanon;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;274;16;0;2;65;21;0;52;0;0;90;8;0;0
-121;'422;Lebanon;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;200;0;0;200;400;0;0;0;0;33662;33662;33662;33662;33662;12000;12470;10709;12000;9019;47629;11597;2936;2347;3850;3285;1491;2390;57;8
-121;'422;Lebanon;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;0;0;21;47;0;0;0;0;2053;2053;2053;2053;2053;4953;4851;4245;4448;3702;3876;4331;848;1000;1771;1184;528;765;51;2
-121;'422;Lebanon;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2407;302;23;30;0;199;3;58;0;0;0;4;0;0
-121;'422;Lebanon;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;274;16;0;2;65;21;0;52;0;0;90;8;0;0
-121;'422;Lebanon;1867;Industrial roundwood, non-coniferous;5516;Production;m3;4000;4000;10000;10000;10000;11000;6000;7000;7000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-121;'422;Lebanon;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;298;680;2400;1500;900;5700;2800;1600;500;400;300;300;300;4705;4705;4705;4705;4705;4705;485;4132;1565;1370;955;1370;516;866;3399;496;63;213;48;70
-121;'422;Lebanon;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;43;77;212;217;470;2881;624;480;121;132;171;171;171;311;311;311;311;311;311;261;953;366;585;438;361;152;393;1376;256;29;174;130;129
-121;'422;Lebanon;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;600;0;0;0;0;0;0;0;550;550;550;550;550;550;721;490;405;62;25;38;22;16;13;0;0;1;5;113
-121;'422;Lebanon;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;339;0;0;0;0;0;0;0;32;32;32;32;32;32;283;98;87;46;114;53;9;7;5;0;0;2;28;64
-121;'422;Lebanon;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;2305;4;85;35;50;199;316;1717;0;0;0;2;3
-121;'422;Lebanon;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;444;3;79;107;24;58;160;507;0;0;0;1;1
-121;'422;Lebanon;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;37;37;37;4;35;15;15;0;0;0;0;0;0
-121;'422;Lebanon;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;18;18;18;92;18;7;7;0;0;0;0;0;0
-121;'422;Lebanon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;298;680;2400;1500;900;5700;2800;1600;500;400;300;300;300;4705;4705;4705;4705;4705;4705;343;1827;1561;1285;920;1320;317;550;1682;496;63;213;46;67
-121;'422;Lebanon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;43;77;212;217;470;2881;624;480;121;132;171;171;171;311;311;311;311;311;311;153;509;363;506;331;337;94;233;869;256;29;174;129;128
-121;'422;Lebanon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;600;0;0;0;0;0;0;0;550;550;550;550;550;550;713;453;368;25;21;3;7;1;13;0;0;1;5;113
-121;'422;Lebanon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;339;0;0;0;0;0;0;0;32;32;32;32;32;32;262;80;69;28;22;35;2;0;5;0;0;2;28;64
-121;'422;Lebanon;1868;Sawlogs and veneer logs;5516;Production;m3;8000;8000;15000;15000;15000;18000;11000;16000;12000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;36600;29000;22000;25000;17000;17000;17000;14000;13000;14000;7000;8580;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;18000;18000;18000;18000;18000;18000;18000;7150;7150;7150;7150;7150;7150;7150;7150
-121;'422;Lebanon;1868;Sawlogs and veneer logs;5616;Import quantity;m3;45000;22500;34102;52300;80400;66000;46600;84600;66900;59200;71800;98100;74000;56000;38000;32000;16300;16300;16300;16300;1000;900;900;900;900;1916;703;1646;805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;2294;1049;1200;1706;2441;2278;1582;2044;1247;1073;1800;3116;3550;3574;3260;2660;917;917;917;917;110;90;90;90;90;228;73;184;291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1100;2600;2700;2500;2300;1400;900;800;800;800;800;300;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;33;62;50;47;58;33;15;15;15;15;15;7;7;7;7;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;4000;4000;5000;5000;5000;7000;5000;9000;5000;7000;12000;12000;12000;12000;12000;12000;12000;12000;12000;28600;21000;14000;17000;17000;17000;17000;14000;13000;14000;7000;8580;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;7150;18000;18000;18000;18000;18000;18000;18000;7150;7150;7150;7150;7150;7150;7150;7150
-121;'422;Lebanon;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;3800;6900;8802;8800;22800;10300;13900;20600;39100;36300;15000;67300;50000;38000;26000;26000;16100;16100;16100;16100;900;800;800;800;800;62;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;229;527;212;228;478;324;320;246;467;433;200;1011;1150;874;860;860;842;842;842;842;100;80;80;80;80;13;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;4000;4000;10000;10000;10000;11000;6000;7000;7000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-121;'422;Lebanon;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;41200;15600;25300;43500;57600;55700;32700;64000;27800;22900;56800;30800;24000;18000;12000;6000;200;200;200;200;100;100;100;100;100;1854;703;1646;805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;2065;522;988;1478;1963;1954;1262;1798;780;640;1600;2105;2400;2700;2400;1800;75;75;75;75;10;10;10;10;10;215;73;184;291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1100;2600;2700;2500;2300;1400;900;800;800;800;800;300;300;300;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;33;62;50;47;58;33;15;15;15;15;15;7;7;7;7;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1871;Other industrial roundwood;5616;Import quantity;m3;2300;3200;5500;2000;4700;5100;1600;3200;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1871;Other industrial roundwood;5622;Import value;1000 USD;199;276;318;113;279;378;136;210;175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2300;3200;5500;2000;4700;5100;1600;3200;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;199;276;318;113;279;378;136;210;175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1630;Wood charcoal;5510;Production;t;3476;3590;3707;3528;3553;3782;3215;4352;4494;4641;4773;4870;5067;5255;5848;7892;5012;5094;4921;4897;4894;5737;6481;6992;7621;7316;7792;7720;8082;8348;8118;9076;10189;10626;10741;10627;11246;9186;8476;11466;11437;11408;11380;11351;11323;11233;11100;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000
-121;'422;Lebanon;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;955;200;100;300;700;300;2300;3000;2200;11900;11900;11900;1;1;1;6300;8800;8800;22692;25966;29702;22977;27941;13454;18419;19911;50200;48586;27800;26466.49;43866;43098
-121;'422;Lebanon;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;199;101;59;72;175;160;539;482;439;2159;2159;2159;463;463;463;2483;3379;3379;8727;9518;10644;11841;15594;6222;11137;12210;33241;32926;18780;20488.88;38878;33386
-121;'422;Lebanon;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;68;63;218;619;399;313;78;123;153;34;138;316;177;49
-121;'422;Lebanon;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;158;96;148;275;278;332;83;144;198;59;112;354;218;39
-121;'422;Lebanon;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;1100;1100;1100;3014;3014;3014;3014;3014;3014;2705;2992;4652;6720;5740;6985;1425;700;7345;1209;72;446;386;901
-121;'422;Lebanon;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;63;63;63;140;140;140;140;140;140;1114;1380;1854;2255;2857;3224;335;184;3319;240;22;125;101;69
-121;'422;Lebanon;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;300;300;300;300;300;300;300;300;300;300;315;315;315;28;15;15;7;36;36;239;239;239;239
-121;'422;Lebanon;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;3;3;3;3;3;3;3;3;58;58;58;23;70;70;24;31;31;87;87;87;87
-121;'422;Lebanon;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64400;64400;0;0;0;0;0;0;900;900;900;900;900;900;900;900;900;765;44;935;2421;461;117;722;116;740;185;11;78;7;603
-121;'422;Lebanon;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1702;1702;0;0;0;0;0;0;58;58;58;58;58;58;58;58;58;119;96;187;330;142;22;73;17;209;61;16;64;42;57
-121;'422;Lebanon;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;8;13;13;4;4;4;207;207;207;207
-121;'422;Lebanon;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;6;33;33;24;24;24;80;80;80;80
-121;'422;Lebanon;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;0;200;200;200;100;100;0;0;200;200;200;2114;2114;2114;2114;2114;2114;1940;2948;3717;4299;5279;6868;703;584;6605;1024;61;368;379;298
-121;'422;Lebanon;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;7;9;10;15;15;0;0;5;5;5;82;82;82;82;82;82;995;1284;1667;1925;2715;3202;262;167;3110;179;6;61;59;12
-121;'422;Lebanon;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;0;0;0;0;300;300;300;300;300;300;300;300;300;300;300;300;300;20;2;2;3;32;32;32;32;32;32
-121;'422;Lebanon;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;3;17;37;37;0;7;7;7;7;7;7
-121;'422;Lebanon;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;349;392;801;1583
-121;'422;Lebanon;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;78;130;269;469
-121;'422;Lebanon;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20.01;21
-121;'422;Lebanon;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;13.4;8
-121;'422;Lebanon;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;48;79;35;175
-121;'422;Lebanon;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;11;21;9;49
-121;'422;Lebanon;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489;301;313;766;1408
-121;'422;Lebanon;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;67;109;260;420
-121;'422;Lebanon;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20.01;21
-121;'422;Lebanon;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;13.4;8
-121;'422;Lebanon;1872;Sawnwood;5516;Production;m3;6000;4700;4700;6500;26000;22000;11000;15000;20000;25000;33000;33000;33000;33000;33000;33000;33000;33000;33000;47400;38300;29200;21800;21800;21800;21800;18000;16000;18200;12700;10900;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100
-121;'422;Lebanon;1872;Sawnwood;5616;Import quantity;m3;118100;74400;110800;135000;129900;162900;89600;138100;172400;140200;164700;204700;204700;204000;204000;204000;50000;50000;50000;50000;70000;60000;70000;100000;80000;4373;1233;5064;8450;2428;2428;80499;12300;107400;75900;197400;302200;338000;238300;198600;187600;208100;196500;239414;225714;210614;244300;288900;352100;368223;386662;337506;308633;379477;323161;269133;249574;258786;233181;128449;173377;122596;118254
-121;'422;Lebanon;1872;Sawnwood;5622;Import value;1000 USD;9524;6699;6254;7103;7278;8059;4300;6127;8050;6250;7300;11746;11746;11692;11692;11692;17551;17551;17551;17551;24600;21100;24600;34000;27000;1066;191;1256;2253;914;914;25959;4325;28944;19134;40782;62073;57805;35925;34334;46310;47666;46256;51566;54449;52287;81392;90087;86331;96795;105748;97562;74972;107955;85612;71674;67026;73325;59992;26020;54908;54441;36383
-121;'422;Lebanon;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;700;1300;2200;2200;2200;2200;2200;4700;4700;4700;4700;1900;1100;1100;1100;1100;0;31;14;0;54;54;124;124;0;0;3000;900;900;500;500;25900;25900;25900;547;547;547;27600;39400;39400;23221;20785;19892;24266;6177;7411;3086;2048;4174;3183;1995;1379;1082;1000
-121;'422;Lebanon;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;40;70;273;273;273;273;273;788;788;788;788;400;240;240;240;240;0;8;16;0;13;13;42;42;0;0;1243;808;808;160;160;4689;4689;4689;125;125;125;11085;16742;16742;11586;6609;7943;8341;2108;2199;943;1463;1489;1963;1005;778;472;1245
-121;'422;Lebanon;1632;Sawnwood, coniferous;5516;Production;m3;5200;3500;3500;5600;16000;10000;5000;9000;13000;17000;22000;22000;22000;22000;22000;22000;22000;22000;22000;36400;27300;18200;21800;21800;21800;21800;18000;16000;18200;12700;10900;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100
-121;'422;Lebanon;1632;Sawnwood, coniferous;5616;Import quantity;m3;116400;73500;109400;133350;128800;161800;87900;137000;100300;135600;160400;204000;204000;204000;204000;204000;50000;50000;50000;50000;70000;60000;70000;100000;80000;4373;1233;5064;8450;2428;2428;56009;8500;64500;64500;186500;255000;303000;207300;156400;124400;144900;133300;174500;160800;145700;198700;236600;291000;322300;339354;275694;262669;337040;271664;222823;210041;229726;208638;119452;154131;100184;90254
-121;'422;Lebanon;1632;Sawnwood, coniferous;5622;Import value;1000 USD;9378;6635;6171;7011;7220;8001;4206;6072;4450;6020;7100;11692;11692;11692;11692;11692;17551;17551;17551;17551;24600;21100;24600;34000;27000;1066;191;1256;2253;914;914;17456;1772;12354;12354;30621;41540;43256;23638;20167;21501;22857;21447;31767;34650;32488;53141;66000;56426;63314;71310;55278;52986;74940;49273;39680;39768;50556;42943;20809;43612;38565;22159
-121;'422;Lebanon;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;700;1300;2200;2200;2200;2200;2200;4700;4700;4700;4700;1900;1100;1100;1100;1100;0;31;14;0;54;54;54;54;0;0;2200;100;100;0;0;8100;8100;8100;301;301;301;2000;1700;1700;5726;16575;10444;18062;5114;4738;2646;71;3703;5;0;38;171;70
-121;'422;Lebanon;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;40;70;273;273;273;273;273;788;788;788;788;400;240;240;240;240;0;8;16;0;13;13;13;13;0;0;452;17;17;0;0;1534;1534;1534;50;50;50;696;636;636;1340;4053;3585;4346;1277;975;549;15;988;3;0;22;124;27
-121;'422;Lebanon;1633;Sawnwood, non-coniferous;5516;Production;m3;800;1200;1200;900;10000;12000;6000;6000;7000;8000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-121;'422;Lebanon;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1700;900;1400;1650;1100;1100;1700;1100;72100;4600;4300;700;700;;;;;;;;;;;;;;;;;;;24490;3800;42900;11400;10900;47200;35000;31000;42200;63200;63200;63200;64914;64914;64914;45600;52300;61100;45923;47308;61812;45964;42437;51497;46310;39533;29060;24543;8997;19246;22412;28000
-121;'422;Lebanon;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;146;64;83;92;58;58;94;55;3600;230;200;54;54;;;;;;;;;;;;;;;;;;;8503;2553;16590;6780;10161;20533;14549;12287;14167;24809;24809;24809;19799;19799;19799;28251;24087;29905;33481;34438;42284;21986;33015;36339;31994;27258;22769;17049;5211;11296;15876;14224
-121;'422;Lebanon;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;0;0;800;800;800;500;500;17800;17800;17800;246;246;246;25600;37700;37700;17495;4210;9448;6204;1063;2673;440;1977;471;3178;1995;1341;911;930
-121;'422;Lebanon;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;0;0;791;791;791;160;160;3155;3155;3155;75;75;75;10389;16106;16106;10246;2556;4358;3995;831;1224;394;1448;501;1960;1005;756;348;1218
-121;'422;Lebanon;1634;Veneer sheets;5516;Production;m3;;;;;400;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;0;0;0;0;0;0;0;0;0
-121;'422;Lebanon;1634;Veneer sheets;5616;Import quantity;m3;300;300;300;400;500;500;300;400;300;400;600;500;500;500;500;500;600;600;600;600;600;600;600;600;600;3076;805;736;758;617;617;2372;2000;2100;4600;1000;3000;4100;3700;5000;11300;11300;11300;5127;5127;5127;8100;8100;8100;8060;5479;6078;4896;4051;3975;4043;3298;2995;2152;948;1582;1237;1540
-121;'422;Lebanon;1634;Veneer sheets;5622;Import value;1000 USD;343;303;232;253;371;317;173;271;217;290;400;498;498;498;498;498;1021;1021;1021;1021;1021;1021;1021;1021;1021;2780;696;962;820;580;580;1400;1697;2033;2327;1183;2116;2918;2824;3339;4793;4793;4793;3994;3994;3994;6303;6303;6303;13461;9877;10888;9937;8184;8231;8291;7567;6541;4721;2259;3356;4211;4214
-121;'422;Lebanon;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;400;400;400;136;136;136;136;136;136;394;356;350;357;224;480;214;248;237;36;26;1178;29;4
-121;'422;Lebanon;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;125;125;125;108;108;108;108;108;108;817;835;743;607;360;660;338;231;234;73;174;539;615;17
-121;'422;Lebanon;1873;Wood-based panels;5516;Production;m3;31000;33000;34000;35600;37600;43400;34700;45800;46000;46000;46000;48700;48700;48700;48700;49000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000;46000
-121;'422;Lebanon;1873;Wood-based panels;5616;Import quantity;m3;3100;2700;2200;2400;2700;2264;1227;2269;2553;3790;3569;4706;4706;4706;4706;4706;16100;16100;16100;16100;15200;15200;16100;21200;21200;69154;10052;9553;6692;6076;6076;41746;33925;72393;38700;122500;120700;107300;104000;88600;163900;163900;163900;298560;298560;298560;285400;285400;285400;318313;190763;155944;259824;256056;219987;233379;244401;260760;232625;106096;182165.36;225431;129045
-121;'422;Lebanon;1873;Wood-based panels;5622;Import value;1000 USD;904;636;429;428;422;306;239;326;354;585;530;460;474;476;478;481;1497;1499;1501;1504;1415;1420;1497;2522;2522;24150;2857;3118;1870;2250;2250;11454;9651;20567;12744;34815;30960;26826;25372;16873;30480;30480;30480;55240;55240;55240;51434;51434;51434;86077;96959;76984;105491;106711;87221;79576;76649;88544;66657;28144;59424.2;85828;68122
-121;'422;Lebanon;1873;Wood-based panels;5916;Export quantity;m3;3200;4300;4600;3900;5600;8900;11700;13700;15500;16600;10300;25200;25200;25200;25200;25200;10900;10900;10900;10900;10900;10900;10900;10900;10900;756;11944;0;695;0;0;532;100;100;0;600;500;500;0;0;400;400;400;2154;2154;2154;2154;2154;2154;1542;2282;1884;3200;9756;962;1841;1493;2662;7377;2313;4939.44;8606;10676
-121;'422;Lebanon;1873;Wood-based panels;5922;Export value;1000 USD;479;625;508;425;784;1110;1543;1653;2078;2060;1190;3497;3497;3497;3497;3497;2451;2451;2451;2451;2451;2451;2451;2451;2451;280;3340;0;548;0;0;174;87;87;0;290;291;291;0;0;321;321;321;517;517;517;517;517;517;1348;1353;1327;2260;4672;1716;1131;995;1220;2349;1584;2593.27;4902;6637
-121;'422;Lebanon;1640;Plywood and LVL;5516;Production;m3;28000;30000;31000;31000;33000;36200;28700;32700;33700;33700;33700;33700;33700;33700;33700;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000
-121;'422;Lebanon;1640;Plywood and LVL;5616;Import quantity;m3;2400;1800;1500;1200;1000;600;100;300;900;1100;1000;400;400;400;400;400;1900;1900;1900;1900;1000;1000;1900;7000;7000;60994;5291;5448;4474;3734;3734;14429;10400;32800;14600;39100;23500;36500;19000;19800;40000;40000;40000;12849;12849;12849;15900;15900;15900;47466;36478;36130;48067;42793;44632;55416;63738;59499;34738;9216;16175;20920;20177
-121;'422;Lebanon;1640;Plywood and LVL;5622;Import value;1000 USD;756;454;295;211;211;117;46;54;160;200;200;67;81;83;85;88;382;384;386;389;300;305;382;1407;1407;22521;1864;2285;1396;1622;1622;5358;4415;13533;6793;20124;9027;9991;5749;6229;12372;12372;12372;4561;4561;4561;5712;5712;5712;18644;22667;19975;24245;26538;25489;26724;24707;25236;14000;3151;6372;9744;8760
-121;'422;Lebanon;1640;Plywood and LVL;5916;Export quantity;m3;2500;3400;3800;3400;5300;8800;11600;13600;15400;13100;7100;9900;9900;9900;9900;9900;1800;1800;1800;1800;1800;1800;1800;1800;1800;756;11277;0;695;0;0;382;0;0;0;200;200;200;0;0;400;400;400;738;738;738;738;738;738;613;1674;539;1180;582;424;1213;677;1135;552;27;692;9;2493
-121;'422;Lebanon;1640;Plywood and LVL;5922;Export value;1000 USD;415;501;421;367;748;1097;1530;1640;2065;1800;950;1927;1927;1927;1927;1927;533;533;533;533;533;533;533;533;533;280;3228;0;548;0;0;125;0;0;0;115;115;115;0;0;321;321;321;242;242;242;242;242;242;553;833;241;520;521;263;578;510;522;242;655;528;757;1758
-121;'422;Lebanon;1646;Particle board and OSB (1961-1994);5516;Production;m3;3000;3000;3000;4600;4600;7200;6000;13100;12300;12300;12300;15000;15000;15000;15000;15000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;600;400;600;600;600;900;1200;2200;2200;2200;2200;2200;14200;14200;14200;14200;14200;14200;14200;14200;14200;8160;4761;4105;2218;2342;2342;19997;12600;33400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;17;19;28;28;28;70;90;117;117;117;117;117;1115;1115;1115;1115;1115;1115;1115;1115;1115;1629;993;833;474;628;628;3948;2749;5065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;700;900;800;500;300;100;100;100;100;3500;3200;15300;15300;15300;15300;15300;9100;9100;9100;9100;9100;9100;9100;9100;9100;0;667;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;64;124;87;58;36;13;13;13;13;260;240;1570;1570;1570;1570;1570;1918;1918;1918;1918;1918;1918;1918;1918;1918;0;112;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000
-121;'422;Lebanon;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21100;64600;64700;40000;43000;37200;70000;70000;70000;101347;101347;101347;132119;132119;132119;105772;63153;20459;98669;117701;117701;116047;116893;116893;96419;48006;82355.17;110902;72576
-121;'422;Lebanon;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4992;10344;13114;8888;9450;5393;12388;12388;12388;16620;16620;16620;21143;21143;21143;30859;30807;9966;31084;37124;37124;31320;27716;27716;25766;12548;24586.44;39639;33812
-121;'422;Lebanon;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;300;300;0;0;0;0;0;1080;1080;1080;1080;1080;1080;392;303;651;697;461;6;232;131;131;1334;1278;2200.52;4188;3097
-121;'422;Lebanon;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;176;176;0;0;0;0;0;182;182;182;182;182;182;519;292;596;648;436;155;198;96;96;682;635;1031.77;2238;1591
-121;'422;Lebanon;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;181;181;181;181;228;154;343;434;432;601;757;312;813;1170;224;661;1678;311
-121;'422;Lebanon;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;164;86;172;219;241;242;295;151;440;325;76;275;591;100
-121;'422;Lebanon;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4
-121;'422;Lebanon;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3
-121;'422;Lebanon;1874;Fibreboard;5616;Import quantity;m3;700;900;700;1200;1100;1264;527;1369;1053;1790;1369;2106;2106;2106;2106;2106;;;;;;;;;;;;;;;;7320;10925;6193;3000;18800;32500;30800;42000;31600;53900;53900;53900;184183;184183;184183;137200;137200;137200;164847;90978;99012;112654;95130;57053;61159;63458;83555;100298;48650;82974.19;91931;35981
-121;'422;Lebanon;1874;Fibreboard;5622;Import value;1000 USD;148;182;134;217;194;170;165;244;166;315;240;276;276;276;276;276;;;;;;;;;;;;;;;;2148;2487;1969;959;4347;8819;7947;10173;5251;5720;5720;5720;34029;34029;34029;24549;24549;24549;36410;43399;46871;49943;42808;24366;21237;24075;35152;26566;12369;28190.76;35854;25450
-121;'422;Lebanon;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;100;100;0;100;0;0;0;0;0;0;0;336;336;336;336;336;336;537;305;694;1323;8713;532;396;685;1396;5491;1008;2046.92;4405;5082
-121;'422;Lebanon;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;87;87;0;71;0;0;0;0;0;0;0;93;93;93;93;93;93;276;228;490;1092;3715;1298;355;389;602;1425;294;1033.5;1904;3285
-121;'422;Lebanon;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;2700;8800;6500;9700;7100;10000;10000;10000;10475;10475;10475;5800;5800;5800;1875;1520;1743;2320;1253;3804;3461;3344;2016;455;186;355;487;360
-121;'422;Lebanon;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;821;850;2673;1797;2161;2162;3043;3043;3043;4860;4860;4860;2669;2669;2669;1594;1225;1280;1893;1374;2408;2254;2084;1415;374;111;341;461;308
-121;'422;Lebanon;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;15;15;15;97;26;26;26;26;46;15;8;39;4;10
-121;'422;Lebanon;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;6;6;6;123;15;15;15;15;97;31;13;45;5;9
-121;'422;Lebanon;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;18000;22000;30000;21900;41300;41300;41300;161531;161531;161531;119900;119900;119900;160000;81214;83706;84544;92521;51883;56984;59160;80694;99080;48050;82488.19;91027;35245
-121;'422;Lebanon;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2855;5512;5903;7832;2887;2475;2475;2475;27622;27622;27622;20389;20389;20389;33478;37711;38932;37385;40837;21501;18770;21677;33501;26013;12127;27684.76;35134;24975
-121;'422;Lebanon;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;262;262;262;262;262;522;285;637;1075;7819;466;367;588;1338;5467;879;1722.92;4260;5018
-121;'422;Lebanon;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;63;63;270;214;427;770;3300;1263;339;344;502;1386;249;936.5;1859;3261
-121;'422;Lebanon;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1884;1200;1300;1100;5100;5700;2300;2300;2600;2600;2600;2600;12177;12177;12177;11500;11500;11500;2972;8244;13563;25790;1356;1366;714;954;845;763;414;131;417;376
-121;'422;Lebanon;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;233;367;138;642;634;247;180;202;202;202;202;1547;1547;1547;1491;1491;1491;1338;4463;6659;10665;597;457;213;314;236;179;131;165;259;167
-121;'422;Lebanon;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;100;100;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;42;151;868;40;3;71;12;9;121;285;141;54
-121;'422;Lebanon;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;87;87;0;71;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;57;199;400;20;1;30;3;8;32;52;40;15
-121;'422;Lebanon;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;700;900;700;1200;1100;1264;527;1369;1053;1790;1369;2106;2106;2106;2106;2106;;;;;;;;;;;;;;;;5436;9725;4893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;148;182;134;217;194;170;165;244;166;315;240;276;276;276;276;276;;;;;;;;;;;;;;;;1822;2254;1602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000
-121;'422;Lebanon;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8094;9800;14400;20400;20900;21900;30600;31700;17650;19300;19300;19300;48970;48970;48970;53095;53095;53586;44616;47376;32722;31937;26872;31789;46768;33791;33823;18947;19872;25763.85;35652;29040
-121;'422;Lebanon;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3990;3871;6265;11081;10887;8406;13971;14256;9547;7404;7404;7404;16800;16800;16800;25260;25260;25478;16560;20155;14793;18992;15793;18399;24111;19825;25312;12755;8483;11802.93;28559;19872
-121;'422;Lebanon;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;49;49;49;49;49;49;1531;119;3146;6486;6416;3222;4170;9114;9249;102;1452;1210.32;4082;17460
-121;'422;Lebanon;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;285;81;534;780;1128;824;594;1902;2002;90;209;119;919;4513
-121;'422;Lebanon;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7575;9700;10900;15500;20300;21600;30100;29400;14350;14400;14400;14400;36565;36565;36565;42195;42195;42686;14111;20072;20277;28806;25830;29511;45055;32240;32272;18907;15536;14348.56;27032;28262
-121;'422;Lebanon;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880;3841;5207;9606;10707;8336;13844;13563;8885;6390;6390;6390;15423;15423;15423;24060;24060;24278;11271;14484;12442;18333;15535;18072;23775;19425;24912;12745;8147;10056.53;27231;19742
-121;'422;Lebanon;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;49;49;49;49;49;49;101;76;332;109;39;39;103;109;244;77;59;59;777;3180
-121;'422;Lebanon;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;56;62;220;93;38;38;38;35;135;75;41;41;507;2453
-121;'422;Lebanon;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7575;9700;10900;15500;20200;21600;30100;29400;14300;14000;14000;14000;36524;36524;36524;42154;42154;42645;23579;38331;41081;43289;47865;51603;67111;54279;47199;28195;29363;24867.56;27850;29218
-121;'422;Lebanon;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880;3841;5207;9606;10675;8336;13844;13563;8585;6162;6162;6162;15390;15390;15390;24027;24027;24245;18565;27738;25100;27710;29659;32255;37910;33529;37049;18689;15834;18221.93;27923;20402
-121;'422;Lebanon;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;49;49;49;49;49;49;101;76;343;120;50;50;97;103;244;77;70;70;758;3153
-121;'422;Lebanon;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;56;62;225;98;43;43;36;33;113;53;46;46;497;2410
-121;'422;Lebanon;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;109;11;1642;826.23;1020;993
-121;'422;Lebanon;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536;102;7;1117;710.77;1418;623
-121;'422;Lebanon;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;58;58;58;58;71;53
-121;'422;Lebanon;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;41;41;41;41;59;30
-121;'422;Lebanon;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;800;0;600;0;0;0;0;1000;1000;1000;16;16;16;16;16;16;18;102;3;11;0;0;0;;;;;;;
-121;'422;Lebanon;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;338;0;312;0;0;0;0;433;433;433;5;5;5;5;5;5;10;54;2;9;0;0;1;;;;;;;
-121;'422;Lebanon;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;52;52;52;52;0;0;0;;;;;;;
-121;'422;Lebanon;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;36;36;36;36;0;0;0;;;;;;;
-121;'422;Lebanon;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;1000;1000;500;1300;600;300;300;100;200;200;200;8138;8138;8138;8138;8138;8138;245;1483;87;454;185;215;538;;;;;;;
-121;'422;Lebanon;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;350;400;301;801;204;111;119;55;119;119;119;3214;3214;3214;3214;3214;3214;270;741;67;310;149;162;378;;;;;;;
-121;'422;Lebanon;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;0;0;85;;;;;;;
-121;'422;Lebanon;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;0;0;30;;;;;;;
-121;'422;Lebanon;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7164;8700;9100;15000;18300;21000;29800;29100;14200;12800;12800;12800;28370;28370;28370;34000;34000;34491;13773;18400;20112;28280;25586;29294;44479;31468;32013;18815;13686;13412.33;25792;27187
-121;'422;Lebanon;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3689;3491;4469;9305;9562;8132;13733;13444;8530;5610;5610;5610;12171;12171;12171;20808;20808;21026;10904;13559;12313;17953;15324;17907;23345;18807;24674;12679;6896;9266.76;25661;18935
-121;'422;Lebanon;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;6;262;39;39;39;1;44;175;8;1;1;676;3089
-121;'422;Lebanon;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;7;165;38;38;38;1;15;67;7;0;0;433;2375
-121;'422;Lebanon;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1200;1200;1200;1200;0;0;491;1076;1339;72;72;72;144;949;3989;3989;1974;1420;1420;1420;1420
-121;'422;Lebanon;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;481;481;481;481;481;0;0;218;419;736;38;38;38;106;545;2389;2389;1352;571;571;571;571
-121;'422;Lebanon;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5344;5500;6300;11900;14500;16900;26800;23900;9600;10900;10900;10900;22785;22785;22785;30600;30600;30600;11976;13999;19432;27296;25502;29144;43467;27479;28024;16818;12233;11959.33;24369;25767
-121;'422;Lebanon;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2602;1926;2834;6701;6885;6277;12403;11482;5115;4745;4745;4745;9616;9616;9616;18708;18708;18708;9905;10956;11895;17354;15271;17788;22757;16418;22285;11292;6307;8677.76;25080;18364
-121;'422;Lebanon;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;6;262;39;39;39;1;44;175;8;1;1;676;3089
-121;'422;Lebanon;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;7;165;38;38;38;1;15;67;7;0;0;433;2375
-121;'422;Lebanon;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;33;33;3;0
-121;'422;Lebanon;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;18;18;10;0
-121;'422;Lebanon;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;0;0;0;;;;;;;
-121;'422;Lebanon;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;0;0;0;;;;;;;
-121;'422;Lebanon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1820;3200;2800;3100;3800;4100;3000;5200;4600;700;700;700;4385;4385;4385;3400;3400;3400;721;2462;8;312;12;6;63;;;;;;;
-121;'422;Lebanon;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087;1565;1635;2604;2677;1855;1330;1962;3415;384;384;384;2074;2074;2074;2100;2100;2100;580;1494;7;188;15;13;43;;;;;;;
-121;'422;Lebanon;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9543;18346;20879;14544;22094;22094;22094;22094;15077;9369;14035;10629;1038;1038
-121;'422;Lebanon;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7381;13384;12718;9438;14186;14186;14186;14186;12273;6003;7821;8244.4;844;844
-121;'422;Lebanon;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11
-121;'422;Lebanon;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5
-121;'422;Lebanon;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;0;0;50;400;400;400;41;41;41;41;41;41;75;87;75;61;59;2;38;55;150;81;208;110;220;82
-121;'422;Lebanon;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32;0;0;0;300;228;228;228;33;33;33;33;33;33;87;130;60;61;62;3;51;82;136;59;134;79;152;184
-121;'422;Lebanon;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;11;11;0;0;30;38
-121;'422;Lebanon;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;27;27;0;0;15;48
-121;'422;Lebanon;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;1;1;1;1;1;2;634;1;1;23;23;23;23
-121;'422;Lebanon;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;1;1;2;2;2;3;350;2;2;7;7;7;7
-121;'422;Lebanon;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;48;48;48;48;48;48;48
-121;'422;Lebanon;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;14;21;21;21;21;21;21;21
-121;'422;Lebanon;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000
-121;'422;Lebanon;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;100;3500;4900;600;300;500;2300;3300;4900;4900;4900;12405;12405;12405;10900;10900;10900;30505;27304;12445;3131;1042;2278;1713;1551;1551;40;4336;11415.29;8620;778
-121;'422;Lebanon;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;30;1058;1475;180;70;127;693;662;1014;1014;1014;1377;1377;1377;1200;1200;1200;5289;5671;2351;659;258;327;336;400;400;10;336;1746.4;1328;130
-121;'422;Lebanon;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1430;43;2814;6377;6377;3183;4067;9005;9005;25;1393;1151.32;3305;14280
-121;'422;Lebanon;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;229;19;314;687;1090;786;556;1867;1867;15;168;78;412;2060
-121;'422;Lebanon;1876;Paper and paperboard;5510;Production;t;1900;2200;1800;5000;5000;5000;5000;5000;6000;8000;10000;12000;12000;12000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;42000;42000;37000;37000;37000;42000;42000;42000;42000;42000;42000;42000;42000;42000;64000;66000;66000;100000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000
-121;'422;Lebanon;1876;Paper and paperboard;5610;Import quantity;t;23200;23300;28900;34300;37300;38900;44500;55700;65200;72100;89400;90300;90300;90300;88600;86800;61300;62700;64500;64500;64500;65400;65400;65900;50700;71712;98775;57822;44019;52911;52911;59921;90800;86600;59100;85000;110300;150100;138400;101500;141300;141300;141300;170038;170038;170038;204495;204495;204495;228539;216646;224409;195889;237147;144105;197764;209630;210550;175678;126240;130062.63;136176;115520
-121;'422;Lebanon;1876;Paper and paperboard;5622;Import value;1000 USD;6497;6910;5752;6914;7408;7842;9056;11302;10120;13480;16903;17231;17231;17231;17067;16932;27197;27738;28348;28448;31500;36800;36484;36684;28084;47868;73544;38912;29371;36771;36771;33519;52784;55941;46717;67022;74121;101157;87208;72320;96223;96223;96223;123610;123610;123610;162008;162008;162008;226124;233064;203217;172918;223739;111042;148207;161801;207405;162088;102580;118505.07;169048;145431
-121;'422;Lebanon;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17111;2000;1600;1800;12300;3000;4001;4099;5800;21400;21400;21400;13385;13385;13385;13385;13385;13385;47455;45041;33114;22717;20810;19034;15138;21666;28791;35767;20537;10232.84;13094.59;6279
-121;'422;Lebanon;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8892;1121;714;865;7390;1966;3389;4724;4153;14380;14380;14380;11314;11314;11314;11314;11314;11314;43392;45600;22274;18897;18864;14285;10951;13999;20074;22635;14933;9807.91;11598;9618
-121;'422;Lebanon;2042;Graphic papers;5610;Import quantity;t;9700;11000;13300;14300;15500;19400;17500;23200;26100;28600;32500;33400;33400;33400;31700;29900;37000;38400;40200;40200;40200;40300;40300;40800;25600;45712;72775;31822;18019;26911;26911;26121;48300;49400;12400;49200;57700;60100;77100;57100;77400;77400;77400;98800;98800;98800;126784;126784;126784;146648;143769;144263;105299;140792;65309;95374;107127;111363;89527;57007;45940.16;55595;45529
-121;'422;Lebanon;2042;Graphic papers;5622;Import value;1000 USD;2543;3035;2632;2812;2986;3722;3256;4502;5020;4280;4666;4994;4994;4994;4830;4695;17312;17853;18463;18563;19400;23000;23000;23200;14600;33368;59044;24412;14871;22271;22271;16622;29624;32557;11907;39695;41883;41477;46750;43390;56931;56931;56931;74708;74708;74708;104239;104239;104239;146709;146521;138793;95380;126538;50526;72917;82428;106956;79316;44505;40019.22;69980;61065
-121;'422;Lebanon;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582;700;100;100;900;200;0;0;0;800;800;800;1546;1546;1546;1546;1546;1546;5540;5951;6251;3327;4191;1311;663;320;2348;3042;3505;3862.66;5855.59;2039
-121;'422;Lebanon;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;335;78;78;476;153;0;0;0;540;540;540;1183;1183;1183;1183;1183;1183;4931;6000;6288;3409;3958;1391;556;246;2377;2924;3388;3666.17;3685;2080
-121;'422;Lebanon;1671;Newsprint;5610;Import quantity;t;3200;3200;2200;2300;3900;3300;4100;4800;4400;5100;6800;8000;8000;8000;6300;4500;3800;5200;7000;7000;7000;6000;6000;6500;4700;11263;9937;5051;3138;3068;3068;4444;4300;7100;5300;7200;10900;8100;11000;8300;12200;12200;12200;11635;11635;11635;16500;16500;16500;9490;11078;9701;9745;10988;7009;5735;5335;6546;5113;3488;2743.46;2507;3642
-121;'422;Lebanon;1671;Newsprint;5622;Import value;1000 USD;544;750;362;384;630;548;676;749;680;772;1096;1424;1424;1424;1260;1125;1449;1990;2600;2700;2800;2400;2400;2600;2000;5099;4947;3019;1844;1732;1732;1665;1907;2953;4036;5326;4561;4172;5120;4233;7758;7758;7758;5934;5934;5934;10956;10956;10956;5475;7720;6338;6250;7244;3308;2554;2348;4977;3053;1592;1483.95;2142;2919
-121;'422;Lebanon;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;0;100;0;0;0;0;0;0;0;2;2;2;2;2;2;22;273;1219;442;724;46;46;92;71;70;3;1;0.59;86
-121;'422;Lebanon;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;;0;0;35;0;0;0;0;0;0;0;1;1;1;1;1;1;30;264;715;415;554;43;43;48;79;78;3;3;3;62
-121;'422;Lebanon;1674;Printing and writing papers;5610;Import quantity;t;6500;7800;11100;12000;11600;16100;13400;18400;21700;23500;25700;25400;25400;25400;25400;25400;33200;33200;33200;33200;33200;34300;34300;34300;20900;34449;62838;26771;14881;23843;23843;21677;44000;42300;7100;42000;46800;52000;66100;48800;65200;65200;65200;87165;87165;87165;110284;110284;110284;137158;132691;134562;95554;129804;58300;89639;101792;104817;84414;53519;43196.7;53088;41887
-121;'422;Lebanon;1674;Printing and writing papers;5622;Import value;1000 USD;1999;2285;2270;2428;2356;3174;2580;3753;4340;3508;3570;3570;3570;3570;3570;3570;15863;15863;15863;15863;16600;20600;20600;20600;12600;28269;54097;21393;13027;20539;20539;14957;27717;29604;7871;34369;37322;37305;41630;39157;49173;49173;49173;68774;68774;68774;93283;93283;93283;141234;138801;132455;89130;119294;47218;70363;80080;101979;76263;42913;38535.28;67838;58146
-121;'422;Lebanon;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;700;100;100;800;200;;;;800;800;800;1544;1544;1544;1544;1544;1544;5518;5678;5032;2885;3467;1265;617;228;2277;2972;3502;3861.66;5855;1953
-121;'422;Lebanon;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;335;78;78;441;153;;;;540;540;540;1182;1182;1182;1182;1182;1182;4901;5736;5573;2994;3404;1348;513;198;2298;2846;3385;3663.17;3682;2018
-121;'422;Lebanon;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1492;1896;1400;700;700;700;2884;2884;2884;2884;2884;2884;5106;2019;2982;5305;2784;3471;3202;2351;2351;2428;1458;2233.25;1903;1774
-121;'422;Lebanon;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;871;972;914;711;711;711;2276;2276;2276;2276;2276;2276;4788;1946;2754;5417;2573;3330;2275;1744;1744;1997;992;1180;1900;1731
-121;'422;Lebanon;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;898;180;25;83;245;664;7;7;7;626;462;1014;3772;1006
-121;'422;Lebanon;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;498;230;46;106;219;525;29;11;11;354;407;524;1852;706
-121;'422;Lebanon;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26959;34269;25300;42300;42300;42300;51946;51946;51946;70700;70700;70700;82407;82407;85000;47566;78299;28187;53896;63475;58609;48089;35734;26710;35459;27785
-121;'422;Lebanon;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18041;20133;18937;29695;29695;29695;40985;40985;40985;56540;56540;56540;83774;83774;84017;43664;71605;20654;41529;50673;58278;44898;28337;23387;44499;38897
-121;'422;Lebanon;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;800;800;1226;1226;1226;1226;1226;1226;3523;3476;3246;1362;1886;219;532;155;1418;589;2604;2290.66;996;201
-121;'422;Lebanon;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;540;540;939;939;939;939;939;939;3110;3551;3557;1198;1898;350;432;112;1618;725;2649;2714.17;1024;267
-121;'422;Lebanon;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23549;29935;22100;22200;22200;22200;32335;32335;32335;36700;36700;36700;49645;48265;46580;42683;48721;26642;32541;35966;43857;33897;16327;14253.45;15726;12328
-121;'422;Lebanon;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18393;20525;19306;18767;18767;18767;25513;25513;25513;34467;34467;34467;52672;53081;45684;40049;45116;23234;26559;27663;41957;29368;13584;13968.28;21439;17518
-121;'422;Lebanon;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;240;240;240;240;240;1097;2022;1761;1440;1336;382;78;66;852;1757;436;557;1087;746
-121;'422;Lebanon;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;184;184;184;184;1293;1955;1970;1690;1287;473;52;75;669;1767;329;425;806;1045
-121;'422;Lebanon;1675;Other paper and paperboard;5510;Production;t;1900;2200;1800;5000;5000;5000;5000;5000;6000;8000;10000;12000;12000;12000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;42000;42000;37000;37000;37000;42000;42000;42000;42000;42000;42000;42000;42000;42000;64000;66000;66000;100000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000;103000
-121;'422;Lebanon;1675;Other paper and paperboard;5610;Import quantity;t;13500;12300;15600;20000;21800;19500;27000;32500;39100;43500;56900;56900;56900;56900;56900;56900;24300;24300;24300;24300;24300;25100;25100;25100;25100;26000;26000;26000;26000;26000;26000;33800;42500;37200;46700;35800;52600;90000;61300;44400;63900;63900;63900;71238;71238;71238;77711;77711;77711;81891;72877;80146;90590;96355;78796;102390;102503;99187;86151;69233;84122.47;80581;69991
-121;'422;Lebanon;1675;Other paper and paperboard;5622;Import value;1000 USD;3954;3875;3120;4102;4422;4120;5800;6800;5100;9200;12237;12237;12237;12237;12237;12237;9885;9885;9885;9885;12100;13800;13484;13484;13484;14500;14500;14500;14500;14500;14500;16897;23160;23384;34810;27327;32238;59680;40458;28930;39292;39292;39292;48902;48902;48902;57769;57769;57769;79415;86543;64424;77538;97201;60516;75290;79373;100449;82772;58075;78485.84;99068;84366
-121;'422;Lebanon;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529;1300;1500;1700;11400;2800;4001;4099;5800;20600;20600;20600;11839;11839;11839;11839;11839;11839;41915;39090;26863;19390;16619;17723;14475;21346;26443;32725;17032;6370.18;7239;4240
-121;'422;Lebanon;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8640;786;636;787;6914;1813;3389;4724;4153;13840;13840;13840;10131;10131;10131;10131;10131;10131;38461;39600;15986;15488;14906;12894;10395;13753;17697;19711;11545;6141.73;7913;7538
-121;'422;Lebanon;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;6000;6000;6000;6000;6000;6000;6000;6000;6000;28000;30000;30000;64000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000
-121;'422;Lebanon;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;1500;1700;2400;3100;3900;5000;5000;5000;5000;5000;5000;6100;6100;6100;6100;6100;6500;6500;6500;6500;6000;6000;6000;6000;6000;6000;9000;10000;10000;10700;5600;8000;400;1200;1500;2600;2600;2600;3995;3995;3995;3995;3995;3995;4264;4868;6516;8728;10281;7597;10792;11604;14362;14499;13996;12549.92;10218;12768
-121;'422;Lebanon;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;700;1000;1200;1200;3000;3600;3600;3600;3600;3600;3600;3584;3584;3584;3584;3700;3900;3584;3584;3584;3500;3500;3500;3500;3500;3500;5000;6000;6000;8000;6329;8800;516;1000;1709;2738;2738;2738;4393;4393;4393;4393;4393;4393;5065;5357;7211;10773;12919;11775;12355;13265;16771;16390;14949;13800.02;14552;21959
-121;'422;Lebanon;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;1100;1200;3200;1400;6200;6200;6200;2447;2447;2447;2447;2447;2447;12876;15068;1833;842;927;180;24;237;259;1695;414;544;393;267
-121;'422;Lebanon;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5260;1113;1269;3317;1614;6271;6271;6271;2711;2711;2711;2711;2711;2711;16897;20730;3080;1110;1072;206;48;190;301;1706;411;508;510;435
-121;'422;Lebanon;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000
-121;'422;Lebanon;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84900;54200;39200;58400;58400;58400;58700;58700;58700;57516;57516;57516;73544;64308;72332;80724;82691;68968;88865;88979;83870;70434;54306;69742.12;68388;55762
-121;'422;Lebanon;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52919;33918;21722;31661;31661;31661;36394;36394;36394;40531;40531;40531;63685;69698;55494;61533;77882;44683;58123;60874;79118;60777;38116;57751.94;74651;53956
-121;'422;Lebanon;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2301;99;2900;11100;11100;11100;5866;5866;5866;5866;5866;5866;23223;18770;23322;18209;15557;17332;14397;20915;26051;30815;16517;5763.18;6713;3825
-121;'422;Lebanon;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1011;103;1000;4218;4218;4218;3543;3543;3543;3543;3543;3543;13781;12436;11504;10943;10957;9811;9119;11141;15226;15543;9771;4361.73;6275;4632
-121;'422;Lebanon;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;40000;40000;35000;35000;35000;36000;36000;36000;36000;36000;36000;36000;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;18000;25300;30100;36000;39600;51900;51900;51900;51900;51900;51900;18200;18200;18200;18200;18200;18600;18600;18600;18600;20000;20000;20000;20000;20000;20000;24800;32500;27200;36000;30200;44600;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;3420;4800;5600;3900;6200;8637;8637;8637;8637;8637;8637;6301;6301;6301;6301;8400;9900;9900;9900;9900;11000;11000;11000;11000;11000;11000;11897;17160;17384;26810;20998;23438;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529;1300;1500;1700;6600;1700;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8640;786;636;787;1654;700;;;;;;;;;;;;;;;;;;;;;;;;;;
-121;'422;Lebanon;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000;36000
-121;'422;Lebanon;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38335;24473;17700;32100;32100;32100;21327;21327;21327;26200;26200;26200;33901;29857;36669;41149;37070;27171;34490;47438;45657;38647;28146;40335.33;37540;36102
-121;'422;Lebanon;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16612;10648;6819;11885;11885;11885;13223;13223;13223;14553;14553;14553;18250;18815;19610;24982;22327;14349;15885;24890;30841;20102;12734;23866.15;27893;21609
-121;'422;Lebanon;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;920;920;920;920;920;920;2954;33;4450;4717;2052;104;3541;17467;14641;22656;12343;590;2248;2222
-121;'422;Lebanon;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556;556;556;556;556;556;1743;17;2413;2960;1434;147;2159;8484;7625;8290;4780;282;1425;1227
-121;'422;Lebanon;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17976;11476;8300;11600;11600;11600;12938;12938;12938;13100;13100;13100;19773;15651;20061;21356;22725;27701;38722;29052;17815;15282;9928;16966.72;17207;11104
-121;'422;Lebanon;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15774;10110;6475;10038;10038;10038;8021;8021;8021;9916;9916;9916;25801;28654;20207;17883;32984;17133;26875;23375;27152;25217;13156;22035.18;29305;20110
-121;'422;Lebanon;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;10;300;6200;6200;6200;2842;2842;2842;2842;2842;2842;8218;12857;14936;8574;9682;15653;8912;2466;8727;5127;3017;4515.41;3657;800
-121;'422;Lebanon;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;10;98;2248;2248;2248;1717;1717;1717;1717;1717;1717;4362;8271;6738;4633;7071;8732;5744;2106;6027;5388;4147;3305.87;3551;1912
-121;'422;Lebanon;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21225;13550;9800;11500;11500;11500;22019;22019;22019;15800;15800;15800;19459;18516;15246;17736;22545;13753;15199;11947;20070;16324;16192;12417.07;13479;8468
-121;'422;Lebanon;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18038;11561;7404;8654;8654;8654;13651;13651;13651;14563;14563;14563;19216;21854;15281;18117;21997;12487;14931;12076;20777;15295;12199;11834.61;17292;12164
-121;'422;Lebanon;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1666;72;2100;2300;2300;2300;1216;1216;1216;1216;1216;1216;10498;3704;835;1451;563;63;683;180;564;2827;1097;642.76;808;800
-121;'422;Lebanon;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;76;734;1082;1082;1082;735;735;735;735;735;735;6584;2863;624;1312;757;95;597;156;628;1776;815;720.86;1298;1491
-121;'422;Lebanon;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7364;4701;3400;3200;3200;3200;2416;2416;2416;2416;2416;2416;411;284;356;483;351;343;454;542;328;181;40;23;162;88
-121;'422;Lebanon;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2495;1599;1024;1084;1084;1084;1499;1499;1499;1499;1499;1499;418;375;396;551;574;714;432;533;348;163;27;16;161;73
-121;'422;Lebanon;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;17;500;2600;2600;2600;888;888;888;888;888;888;1553;2176;3101;3467;3260;1512;1261;802;2119;205;60;15;0;3
-121;'422;Lebanon;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;17;168;888;888;888;535;535;535;535;535;535;1092;1285;1729;2038;1695;837;619;395;946;89;29;53;1;2
-121;'422;Lebanon;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4700;5900;3700;2900;2900;2900;8543;8543;8543;16200;16200;16200;4083;3701;1298;1138;3383;2231;2733;1920;955;1218;931;1830.42;1975;1461
-121;'422;Lebanon;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6245;5540;5499;4893;4893;4893;8115;8115;8115;12845;12845;12845;10665;11488;1719;5232;6400;4058;4812;5234;4560;5605;5010;6933.89;9865;8451
-121;'422;Lebanon;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;500;800;1500;3300;3300;3300;3526;3526;3526;3526;3526;3526;5816;5252;1708;339;135;211;54;194;133;215;101;63;133;148
-121;'422;Lebanon;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1109;1304;1539;3351;3351;3351;3877;3877;3877;3877;3877;3877;7783;6434;1402;3435;2877;2877;1228;2422;2170;2462;1363;1272;1128;2471
-121;'422;Lebanon;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109085;86452;67874;23740;36416;47233;41796
-121;'422;Lebanon;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26558;21061;23924;20012;27721;37879;36688
-121;'422;Lebanon;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1431;1157;1515;509;642;656;408
-121;'422;Lebanon;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;180;159;54;226;245;2852
-121;'422;Lebanon;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;125;138;115;65;251;84
-121;'422;Lebanon;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;15;4
-121;'422;Lebanon;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1237;1032;1377;394;577;405;324
-121;'422;Lebanon;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;180;159;54;226;230;2848
-121;'422;Lebanon;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;1941;1660;763;1255;1465;1702
-121;'422;Lebanon;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;63;114;50;67;612;292
-121;'422;Lebanon;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4847;4584;3872;978;910;2495;2588
-121;'422;Lebanon;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;1391;1167;1308;2500;2106;1605
-121;'422;Lebanon;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6927;5547;5574;1894;3152;3357;2146
-121;'422;Lebanon;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4150;2959;4331;2615;7591;5522;6807
-121;'422;Lebanon;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74
-121;'422;Lebanon;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84
-121;'422;Lebanon;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47
-121;'422;Lebanon;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18
-121;'422;Lebanon;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90462;69498;52766;18433;29539;37224;32750
-121;'422;Lebanon;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20811;16235;17728;15629;17000;29062;24926
-121;'422;Lebanon;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;221;170;50;58;122;136
-121;'422;Lebanon;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;43;301;102;102;27
-121;'422;Lebanon;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3270;3504;2317;1113;860;1914;2066
-121;'422;Lebanon;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;187;382;55;235;230;179
-121;'422;Lebanon;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59203;59343;54460;34117;34105;53034;42610
-121;'422;Lebanon;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44414;50333;46189;38295;45549;47677;36021
-121;'422;Lebanon;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;325;266;140;55;264;289
-121;'422;Lebanon;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1751;2979;3150;2701;4445;4569;1740
-121;'422;Lebanon;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10899;11508;9848;7480;9128;11678;8782
-121;'422;Lebanon;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;2097;2205;1813;4445;4902;4408
-121;'422;Lebanon;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16927;18230;17867;11140;4807;5370;7185
-121;'422;Lebanon;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;3202;2373;4250;2801;2734;2518
-121;'422;Lebanon;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11851;12993;12346;8229;11940;21347;14812
-121;'422;Lebanon;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22026;24993;19652;16374;20750;22097;17858
-121;'422;Lebanon;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19277;16287;14133;7128;8175;14375;11542
-121;'422;Lebanon;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16219;17062;18809;13157;13108;13375;9497
-122;'426;Lesotho;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54729;55943;49637;37408;54989;55350;51302
-122;'426;Lesotho;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6159;6283;4690;2799;4938;3999;3094
-122;'426;Lesotho;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1006;6500;4588;4588;4588;4588;4588;4588;4588;2937;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1587;17910;22099;20365;16054;15063;13600;13378;18152;19179;19665;12752;19542;19497;16693
-122;'426;Lesotho;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;99;351;131;198;224;274;405;235;385;90;122;195;252;287
-122;'426;Lesotho;1861;Roundwood;5516;Production;m3;1474447;1484625;1494868;1505176;1515550;1525990;1536497;1547071;1557712;1568421;1580116;1581941;1534398;1535182;1611380;1619868;1603357;1596251;1629688;1679303;1717062;1706321;1772859;1793710;1819751;1858074;1880151;1873572;1871503;1262000;1329000;1366000;1402000;1440000;1478000;1517000;1556000;1594000;2004030;2022018;2028134;2034269;2040422;2046594;2052785;2060539;2068300;2076100;2083979;2091851;2099721;2107620;2115550;2123509;2131497;2134278;2147062;2153850;2156641;2159436;2162415;2165397;2168384
-122;'426;Lesotho;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2975;2601;6060;3319;3319;3791;4530;17687;40010;53964;24886;83238;26064;35397
-122;'426;Lesotho;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;978;2177;1289;1076;1083;714;1467;2961;3373;3145;1433;1709;1634;1956
-122;'426;Lesotho;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;1;2;2;26;15;65;103;0;0;0;1;0
-122;'426;Lesotho;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;2;3;3;4;5;7;32;3;0;1;2;0
-122;'426;Lesotho;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10000;14000;14000;14000;14000;14000;14000
-122;'426;Lesotho;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15673;38550;53601;24627;82451;25285;25574
-122;'426;Lesotho;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;2583;3062;1384;1479;1433;1437
-122;'426;Lesotho;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;65;0;0;0;0;0
-122;'426;Lesotho;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;3;0;1;0;0
-122;'426;Lesotho;1863;Roundwood, non-coniferous;5516;Production;m3;1474447;1484625;1494868;1505176;1515550;1525990;1536497;1547071;1557712;1568421;1580116;1581941;1534398;1535182;1611380;1619868;1603357;1596251;1629688;1679303;1717062;1706321;1772859;1793710;1819751;1858074;1880151;1873572;1871503;1262000;1329000;1366000;1402000;1440000;1478000;1517000;1556000;1594000;2004030;2022018;2028134;2034269;2040422;2046594;2052785;2060539;2068300;2076100;2083979;2091851;2099721;2107620;2115550;2123509;2131497;2134278;2137062;2139850;2142641;2145436;2148415;2151397;2154384
-122;'426;Lesotho;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2014;1460;363;259;787;779;9823
-122;'426;Lesotho;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;790;83;49;230;201;519
-122;'426;Lesotho;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;38;0;0;0;1;0
-122;'426;Lesotho;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;28;0;0;0;2;0
-122;'426;Lesotho;1864;Wood fuel;5516;Production;m3;1474447;1484625;1494868;1505176;1515550;1525990;1536497;1547071;1557712;1568421;1580116;1581941;1534398;1535182;1611380;1619868;1603357;1596251;1629688;1679303;1717062;1706321;1772859;1793710;1819751;1858074;1880151;1873572;1871503;1262000;1329000;1366000;1402000;1440000;1478000;1517000;1556000;1594000;2004030;2022018;2028134;2034269;2040422;2046594;2052785;2060539;2068300;2076100;2083979;2091851;2099721;2107620;2115550;2123509;2131497;2134278;2137062;2139850;2142641;2145436;2148415;2151397;2154384
-122;'426;Lesotho;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;776;1239;97;290;290;290;2800;550;550;220;119;43;21;338
-122;'426;Lesotho;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;561;751;238;19;19;19;185;37;37;52;1;20;7;11
-122;'426;Lesotho;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;0;0;0;;;;;;;
-122;'426;Lesotho;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;0;0;0;0;0;;;;;;;
-122;'426;Lesotho;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;550;112;115;8;13;302
-122;'426;Lesotho;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;18;1;1;6;10
-122;'426;Lesotho;1628;Wood fuel, non-coniferous;5516;Production;m3;1474447;1484625;1494868;1505176;1515550;1525990;1536497;1547071;1557712;1568421;1580116;1581941;1534398;1535182;1611380;1619868;1603357;1596251;1629688;1679303;1717062;1706321;1772859;1793710;1819751;1858074;1880151;1873572;1871503;1262000;1329000;1366000;1402000;1440000;1478000;1517000;1556000;1594000;2004030;2022018;2028134;2034269;2040422;2046594;2052785;2060539;2068300;2076100;2083979;2091851;2099721;2107620;2115550;2123509;2131497;2134278;2137062;2139850;2142641;2145436;2148415;2151397;2154384
-122;'426;Lesotho;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;4;35;8;36
-122;'426;Lesotho;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;19;1;1
-122;'426;Lesotho;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;776;1239;97;290;290;290;2800;;;;;;;
-122;'426;Lesotho;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;561;751;238;19;19;19;185;;;;;;;
-122;'426;Lesotho;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;0;0;0;;;;;;;
-122;'426;Lesotho;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;0;0;0;0;0;;;;;;;
-122;'426;Lesotho;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;14000;14000;14000;14000;14000;14000
-122;'426;Lesotho;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2199;1362;5963;3029;3029;3501;1730;17137;39460;53744;24767;83195;26043;35059
-122;'426;Lesotho;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;1426;1051;1057;1064;695;1282;2924;3336;3093;1432;1689;1627;1945
-122;'426;Lesotho;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;2;2;26;15;65;103;0;0;0;1;0
-122;'426;Lesotho;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;3;4;5;7;32;3;0;1;2;0
-122;'426;Lesotho;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;14000;14000;14000;14000;14000;14000
-122;'426;Lesotho;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1828;452;2123;608;608;2181;390;15123;38000;53489;24512;82443;25272;25272
-122;'426;Lesotho;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;64;282;60;67;180;34;2250;2546;3044;1383;1478;1427;1427
-122;'426;Lesotho;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;56;65;0;0;0;0;0
-122;'426;Lesotho;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;4;4;3;0;1;0;0
-122;'426;Lesotho;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1828;452;2123;608;608;2181;390;15123;38000;53489;24512;82443;25272;25272
-122;'426;Lesotho;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;64;282;60;67;180;34;2250;2546;3044;1383;1478;1427;1427
-122;'426;Lesotho;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;56;65;0;0;0;0;0
-122;'426;Lesotho;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;4;4;3;0;1;0;0
-122;'426;Lesotho;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;371;910;3840;2421;2421;1320;1340;2014;1460;255;255;752;771;9787
-122;'426;Lesotho;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;1362;769;997;997;515;1248;674;790;49;49;211;200;518
-122;'426;Lesotho;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;2;2;1;15;9;38;0;0;0;1;0
-122;'426;Lesotho;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;3;0;5;3;28;0;0;0;2;0
-122;'426;Lesotho;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;542;3803;2376;2376;652;600;368;1460;0;0;74;93;292
-122;'426;Lesotho;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;1296;760;990;990;323;642;185;790;0;0;33;22;76
-122;'426;Lesotho;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;2;2;1;15;9;38;0;0;0;0;0
-122;'426;Lesotho;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;3;0;5;3;28;0;0;0;1;0
-122;'426;Lesotho;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;368;37;45;45;668;740;1646;0;255;255;678;678;9495
-122;'426;Lesotho;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;66;9;7;7;192;606;489;0;49;49;178;178;442
-122;'426;Lesotho;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0
-122;'426;Lesotho;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0
-122;'426;Lesotho;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;14000;14000;14000;14000;14000;14000
-122;'426;Lesotho;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;14000;14000;14000;14000;14000;14000
-122;'426;Lesotho;1630;Wood charcoal;5510;Production;t;37169;37616;38068;38526;38989;39457;39932;40412;40897;41389;41908;42056;39854;39932;43603;43897;42972;42536;44120;46642;48569;50155;54006;54834;56619;59119;60643;60735;61116;63142;65541;67941;69876;69265;70188;71008;71578;73506;75954;78483;80164;81882;83636;85428;87259;89058;90900;92800;94679;96631;98402;100206;102043;103914;105819;107454;109115;110802;112514;114253;116011;117795;119607
-122;'426;Lesotho;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;67;47;133;133;133;150;220;220;689;509;857;1054;991
-122;'426;Lesotho;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;86;67;94;94;94;106;155;155;188;118;204;304;294
-122;'426;Lesotho;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;40;326;1378;1378;1378;1300;1200;1200;52;56;29;89;89
-122;'426;Lesotho;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;96;94;175;175;175;156;130;130;4;4;2;3;6
-122;'426;Lesotho;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;17;64;198;198;198;120;20;20;1;9;0;0;27
-122;'426;Lesotho;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;73;14;50;50;50;31;5;5;1;3;1;0;4
-122;'426;Lesotho;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;23;262;1180;1180;1180;1180;1180;1180;51;47;29;89;62
-122;'426;Lesotho;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;23;80;125;125;125;125;125;125;3;1;1;3;2
-122;'426;Lesotho;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;54;54;54;600;600;600;142;26;85;25;33
-122;'426;Lesotho;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;4;4;46;47;47;9;5;9;10;16
-122;'426;Lesotho;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0
-122;'426;Lesotho;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-122;'426;Lesotho;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;54;54;54;600;600;600;100;10;10;1;0
-122;'426;Lesotho;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;4;4;4;46;47;47;4;4;4;4;0
-122;'426;Lesotho;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-122;'426;Lesotho;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-122;'426;Lesotho;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;16;75;24;33
-122;'426;Lesotho;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;5;6;16
-122;'426;Lesotho;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0
-122;'426;Lesotho;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-122;'426;Lesotho;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;7000;7000;7000;7000;7000
-122;'426;Lesotho;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;9500;32400;26400;26400;26400;26400;26400;26400;26400;34600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18144;25302;26281;15524;10560;10020;8560;15864;37035;54004;17498;26844;22360;8360
-122;'426;Lesotho;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;261;5615;3976;3976;3976;3976;3976;3976;3976;2822;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5512;6786;7543;5282;4875;3483;3903;5112;5238;6885;4162;7254;4943;4051
-122;'426;Lesotho;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;99;129;9;40;40;63;14;45;74;91;4;0;123;0
-122;'426;Lesotho;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;20;17;1;19;36;17;6;12;12;8;0;1;0;0
-122;'426;Lesotho;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;7000;7000;7000;7000;7000
-122;'426;Lesotho;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;9500;32400;26400;26400;26400;26400;26400;26400;26400;34600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16875;24240;24454;13122;8400;8280;7290;13233;34206;49000;16074;26000;20000;6000
-122;'426;Lesotho;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;261;5615;3976;3976;3976;3976;3976;3976;3976;2822;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4452;5927;5885;3158;2613;2117;2413;3404;3921;5243;3660;6916;4060;3168
-122;'426;Lesotho;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;127;0;34;34;59;8;39;70;86;0;0;0;0
-122;'426;Lesotho;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;17;0;18;32;12;2;9;9;3;0;1;0;0
-122;'426;Lesotho;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0
-122;'426;Lesotho;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1269;1062;1827;2402;2160;1740;1270;2631;2829;5004;1424;844;2360;2360
-122;'426;Lesotho;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060;859;1658;2124;2262;1366;1490;1708;1317;1642;502;338;883;883
-122;'426;Lesotho;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;2;9;6;6;4;6;6;4;5;4;0;123;0
-122;'426;Lesotho;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;0;1;1;4;5;4;3;3;5;0;0;0;0
-122;'426;Lesotho;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;22;158;811;220;220;224;363;83;127;62;110;81;20;11
-122;'426;Lesotho;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;154;133;634;257;338;221;273;90;86;42;43;73;7;2
-122;'426;Lesotho;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060;2349;5610;7863;6136;5475;7041;1233;1304;6200;6180;6274;12899;12339
-122;'426;Lesotho;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2938;3875;3167;2495;2484;2671;3081;479;565;2742;2826;4536;6498;6287
-122;'426;Lesotho;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;24;268;268;268;469;268;268;68;342;278;258;252
-122;'426;Lesotho;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;36;73;73;73;213;73;74;42;71;65;65;61
-122;'426;Lesotho;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;43;2416;3473;1746;1085;2651;1102;1173;3545;1650;1111;4385;3811
-122;'426;Lesotho;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;89;173;159;148;335;745;385;471;1147;1001;1486;2690;2046
-122;'426;Lesotho;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;201;0;0;5;80;0;0;0
-122;'426;Lesotho;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;140;0;1;14;9;0;1;0
-122;'426;Lesotho;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;2269;3018;4080;4080;4080;4080;60;60;2517;3972;4903;7764;7353
-122;'426;Lesotho;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2598;3673;2524;1972;1972;1972;1972;29;29;1515;1731;2874;3557;3609
-122;'426;Lesotho;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;24;17;17;17;17;17;17;61;10;26;6;0
-122;'426;Lesotho;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;36;14;14;14;14;14;14;25;2;5;3;0
-122;'426;Lesotho;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;42;2;2
-122;'426;Lesotho;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;54;2;3
-122;'426;Lesotho;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629;37;176;310;310;310;310;71;71;117;558;218;748;1173
-122;'426;Lesotho;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;113;470;364;364;364;364;65;65;77;88;122;249;629
-122;'426;Lesotho;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;251;251;251;251;251;2;252;252;252;252
-122;'426;Lesotho;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;3;60;60;61;61
-122;'426;Lesotho;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;0;0;0;0;1;1;8;17;9;70;61
-122;'426;Lesotho;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;18;4;0;0;0;0;1;1;10;20;13;41;38
-122;'426;Lesotho;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;22;174;114;114;114;114;30;30;43;471;170;282;644
-122;'426;Lesotho;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;56;463;311;311;311;311;53;53;26;32;96;100;445
-122;'426;Lesotho;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1
-122;'426;Lesotho;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2
-122;'426;Lesotho;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;196;196;196;196;40;40;66;70;39;396;468
-122;'426;Lesotho;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;3;53;53;53;53;11;11;41;36;13;108;146
-122;'426;Lesotho;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;251;251;251;251;251;1;251;251;251;251
-122;'426;Lesotho;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;2;59;59;59;59
-122;'426;Lesotho;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;3000;3000;3000;3000;3000
-122;'426;Lesotho;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;159;109;342;383;773;708;691;691;476;63;1;2;262
-122;'426;Lesotho;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;93;60;93;95;127;101;102;102;44;15;0;4;8
-122;'426;Lesotho;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;149;416;1194;860;1373;1373;1521;2075;1046;687;1366;1508;2596
-122;'426;Lesotho;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;80;94;103;167;172;133;257;33;42;117;152;192
-122;'426;Lesotho;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;16;15;15;15;15;14;14;0;8;0;0;0
-122;'426;Lesotho;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;5;15;6;6;6;6;5;5;0;1;0;0;0
-122;'426;Lesotho;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;6;0;0
-122;'426;Lesotho;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0
-122;'426;Lesotho;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;1;1;1;0;0;0;0;0;0;0
-122;'426;Lesotho;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-122;'426;Lesotho;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;9;14;14;14;14;14;14;0;8;0;0;0
-122;'426;Lesotho;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;5;6;5;5;5;5;5;5;0;1;0;0;0
-122;'426;Lesotho;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;6;0;0
-122;'426;Lesotho;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0
-122;'426;Lesotho;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;8;8;8;8
-122;'426;Lesotho;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;2
-122;'426;Lesotho;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-122;'426;Lesotho;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-122;'426;Lesotho;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;3000;3000;3000;3000;3000
-122;'426;Lesotho;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;158;93;327;368;758;693;677;677;476;55;1;2;262
-122;'426;Lesotho;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;88;45;87;89;121;95;97;97;44;14;0;4;8
-122;'426;Lesotho;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;149;416;1194;860;1373;1373;1521;2075;1043;684;1360;1508;2596
-122;'426;Lesotho;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;80;94;103;167;172;133;257;32;41;116;152;192
-122;'426;Lesotho;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3858;4512;7425;5332;6038;5896;5465;4407;8035;8906;7831;4559;7202;6337;4120
-122;'426;Lesotho;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1527;7849;8853;7472;6578;5915;6111;4245;9076;9483;6603;4144;5753;6092;4071
-122;'426;Lesotho;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;5.24;359;8;115.48;115.48;115.48;115.48;115.48;115.48;0.48;121;121;62;42
-122;'426;Lesotho;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;53;288;12;9;9;9;9;9;9;3;8;10;32;33
-122;'426;Lesotho;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2815;5205;2319;2153;2011;1580;705;1565;2436;900;600;1166;617;2207
-122;'426;Lesotho;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2892;3633;2753;3163;2500;2696;1049;2360;2767;1774;1090;1592;1840;2388
-122;'426;Lesotho;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;5.24;359;3;0.48;0.48;0.48;0.48;0.48;0.48;0.48;0;0;0;0
-122;'426;Lesotho;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;53;288;4;1;1;1;1;1;1;1;0;2;1;1
-122;'426;Lesotho;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;35;4;4;4;4;15;15;26;22;34;31;71
-122;'426;Lesotho;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;5;23;20;20;20;20;66;66;63;27;51;54;69
-122;'426;Lesotho;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;0;0;0;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;0;0;0;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2810;5194;2284;2149;2007;1576;701;1550;2421;874;578;1132;586;2136
-122;'426;Lesotho;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2851;3628;2730;3143;2480;2676;1029;2294;2701;1711;1063;1541;1786;2319
-122;'426;Lesotho;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;5.24;35;3;0.48;0.48;0.48;0.48;0.48;0.48;0.48;0;0;0;0
-122;'426;Lesotho;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;53;69;4;1;1;1;1;1;1;1;0;2;1;1
-122;'426;Lesotho;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2459;3604;1500;1116;1116;1116;450;500;500;180;40;65;49;313
-122;'426;Lesotho;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1904;1808;1619;1315;1315;1315;530;577;577;253;121;126;201;285
-122;'426;Lesotho;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;0;0;0;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;56;0;0;0;0;0;0;0;0;0;1;0;0
-122;'426;Lesotho;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1499;580;912;770;339;130;900;1771;591;418;946;350;888
-122;'426;Lesotho;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;686;1526;832;1539;876;1072;210;1370;1777;1234;825;1241;1383;1736
-122;'426;Lesotho;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;0.24;2;3;0.48;0.48;0.48;0.48;0.48;0.48;0.48;0;0;0;0
-122;'426;Lesotho;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;2;2;4;1;1;1;1;1;1;1;0;0;0;0
-122;'426;Lesotho;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;91;204;121;121;121;121;150;150;103;120;121;187;935
-122;'426;Lesotho;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;294;279;289;289;289;289;347;347;224;117;174;202;298
-122;'426;Lesotho;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;0;0
-122;'426;Lesotho;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;0;1;1;1
-122;'426;Lesotho;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3848;1697;2220;3013;3885;3885;3885;3702;6470;6470;6931;3959;6036;5720;1913
-122;'426;Lesotho;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505;4957;5220;4719;3415;3415;3415;3196;6716;6716;4829;3054;4161;4252;1683
-122;'426;Lesotho;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;115;115;115;115;115;115;0;121;121;62;42
-122;'426;Lesotho;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;2;8;8;31;32
-122;'426;Lesotho;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;137;58;37;37;37;37;30;30;25;15;24;46;28
-122;'426;Lesotho;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;316;294;133;133;133;133;108;108;60;542;70;77;54
-122;'426;Lesotho;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-122;'426;Lesotho;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-122;'426;Lesotho;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3639;1363;1827;2896;3635;3635;3635;3635;6370;6370;6833;3917;5994;5621;1849
-122;'426;Lesotho;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1143;4160;4522;4242;3023;3023;3023;3023;6516;6516;4674;2476;4044;4128;1527
-122;'426;Lesotho;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;0;11;11;62;42
-122;'426;Lesotho;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;6;6;6;6;6;1;6;6;30;31
-122;'426;Lesotho;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3461;740;959;2596;3490;3490;3490;3490;5000;5000;6475;3713;5888;4543;1714
-122;'426;Lesotho;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035;1254;1134;3676;2776;2776;2776;2776;3987;3987;4451;2265;3845;3272;1315
-122;'426;Lesotho;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0
-122;'426;Lesotho;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0
-122;'426;Lesotho;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;344;64;60;60;60;60;250;250;117;48;37;22;24
-122;'426;Lesotho;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;92;1666;267;62;62;62;62;264;264;61;25;16;25;58
-122;'426;Lesotho;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;8
-122;'426;Lesotho;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6
-122;'426;Lesotho;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;610;440;235;84;84;84;84;1100;1100;238;156;69;1055;96
-122;'426;Lesotho;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;2809;1714;270;182;182;182;182;2214;2214;159;184;183;829;139
-122;'426;Lesotho;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;0;0;0;34;34
-122;'426;Lesotho;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;6;6;6;6;6;1;0;0;25;25
-122;'426;Lesotho;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;84;1;1;1;1;1;20;20;3;0;0;1;15
-122;'426;Lesotho;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;8;29;3;3;3;3;51;51;3;2;0;2;15
-122;'426;Lesotho;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;214;256;59;213;213;213;30;70;70;73;27;18;53;36
-122;'426;Lesotho;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;153;382;183;259;259;259;40;92;92;95;36;47;47;102
-122;'426;Lesotho;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;110;110;110;0;110;110;0;0
-122;'426;Lesotho;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;1;2;2;1;1
-122;'426;Lesotho;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17676;17173;13288;10694;16810;16055;16977
-122;'426;Lesotho;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;268;200;270;239;406;62
-122;'426;Lesotho;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;705;541;466;983;708;835
-122;'426;Lesotho;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;23;5;2;43;15;3
-122;'426;Lesotho;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;55;5;1;28;5;31
-122;'426;Lesotho;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;10;0;0;16;3;3
-122;'426;Lesotho;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;650;536;465;955;703;804
-122;'426;Lesotho;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;5;2;27;12;0
-122;'426;Lesotho;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;1142;689;364;498;835;911
-122;'426;Lesotho;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;77;166;115;99;328;21
-122;'426;Lesotho;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1198;1194;1189;1073;1846;1363;1393
-122;'426;Lesotho;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;0;0;1;0;0
-122;'426;Lesotho;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6062;6154;3759;3439;5999;5797;5582
-122;'426;Lesotho;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;33;8;21;77;27;3
-122;'426;Lesotho;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0
-122;'426;Lesotho;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-122;'426;Lesotho;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;19
-122;'426;Lesotho;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;40
-122;'426;Lesotho;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3
-122;'426;Lesotho;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3
-122;'426;Lesotho;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8019;7750;6946;4691;6368;6500;7265
-122;'426;Lesotho;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437;44;21;131;15;31;33
-122;'426;Lesotho;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;8;8;2;112;2;278
-122;'426;Lesotho;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;692;220;156;659;1004;850;713
-122;'426;Lesotho;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;90;0;1;4;5;2
-122;'426;Lesotho;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18901;19591;16684;13962;18637;19798;17632
-122;'426;Lesotho;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5277;5630;4400;2407;4504;3341;2745
-122;'426;Lesotho;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;1;2;48
-122;'426;Lesotho;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;112;85;65;54;74;129
-122;'426;Lesotho;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0
-122;'426;Lesotho;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;2619;2658;3912;3606;3675;4547
-122;'426;Lesotho;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;94;39;69;44;36;61
-122;'426;Lesotho;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2865;4349;2872;2183;2699;3418;3928
-122;'426;Lesotho;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5143;5485;4301;2264;3953;3294;2679
-122;'426;Lesotho;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13525;12511;11069;7765;12277;12629;8980
-122;'426;Lesotho;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;51;60;74;507;10;5
-123;'430;Liberia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15832;18927;24069;21037;30002;21653;28277
-123;'430;Liberia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37672;53089;23500;25104;27105;9040;21007
-123;'430;Liberia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;702;406;428;343;327;388;463;632;770;1456;1507;1144;1682;2598;2440;5809;5255;5716;5874;1804;2326;5165;2245;4034;3017;3223;3223;573;392;263;263;462;1000;1635;612;379;379;516;1576;2217;3559;3329;2373;3698;3164;4090;5093;6497;7277;6642;7573;5019;6371;9135;11033;13818;17210;6462;11862
-123;'430;Liberia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;374;93;476;400;387;630;622;1531;6940;7057;10040;11360;16805;17722;16000;33862;29323;56304;76098;96187;53881;41589;31207;23799;35203;51348;36260;93729;78264;152080;53631;69917;21703;4067;8067;15431;7742;12962;24492;213851;228336;333490;178056;84100;71350;49100;40588;895;5425;5607;35402;67287;58322;38540;46246;34679;37274;52845;23005;23866;24462;7432;19487
-123;'430;Liberia;1861;Roundwood;5516;Production;m3;1707000;988000;1130000;1142000;1154000;1442179;1503472;1601828;1781329;1852059;2011579;2156639;2350318;2005000;1963000;2007000;2980000;2807000;3168000;3260000;2670000;2707000;2330000;2397000;2595000;3381000;3658000;4505922;4909405;4580701;4089818;4153810;3815524;3361488;2975818;3115440;3549808;4057394;4717839;5839361;6086930;6676953;6329791;5905817;6141423;6393198;6623400;6922500;7170676;7488341;7737978;8026232;8283408;8555818;8687356;8958592;9340531;9629742;9928384;10236763;10554392;10882350;11220972
-123;'430;Liberia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;0;36;118;92;231;169;1449;36;43;54;1489;237;2;55;3207;3594;2949;6313;1669;504
-123;'430;Liberia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;79;0;81;84;6;60;67;756;12;19;6;576;112;0;9;1033;1021;636;2095;678;660
-123;'430;Liberia;1861;Roundwood;5916;Export quantity;m3;14100;3600;18000;16000;15000;23000;22000;41000;149000;144000;205000;222000;364000;259000;220000;513100;357000;311100;389000;474800;255400;230300;223000;183500;257700;370000;250500;681000;701000;634669;411000;616000;183000;20000;40000;50000;49000;81000;208000;850000;798000;1000000;483593;250000;210000;170000;140012;2130;4780;9178;73386;190028;136106;132000;141710;106171;135700;184103;82182;100724;96608;24428;74553
-123;'430;Liberia;1861;Roundwood;5922;Export value;1000 USD;374;93;476;400;316;559;551;1460;6927;6927;9900;11000;16605;17582;14300;32412;25890;47271;58000;84000;46213;37101;28022;22568;33369;48973;34587;87774;70436;144252;49264;68572;21600;4000;8000;15300;7525;12288;23418;212500;225000;325000;175000;82000;70000;48000;40002;693;1061;3338;22964;56770;53664;36917;45205;33746;36155;51429;21007;20440;22864;6499;16647
-123;'430;Liberia;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;3192;3476;680;4345;836;387
-123;'430;Liberia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1029;987;194;867;429;616
-123;'430;Liberia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;13;779
-123;'430;Liberia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;43;0;7;309
-123;'430;Liberia;1863;Roundwood, non-coniferous;5516;Production;m3;1707000;988000;1130000;1142000;1154000;1442179;1503472;1601828;1781329;1852059;2011579;2156639;2350318;2005000;1963000;2007000;2980000;2807000;3168000;3260000;2670000;2707000;2330000;2397000;2595000;3381000;3658000;4505922;4909405;4580701;4089818;4153810;3815524;3361488;2975818;3115440;3549808;4057394;4717839;5839361;6086930;6676953;6329791;5905817;6141423;6393198;6623400;6922500;7170676;7488341;7737978;8026232;8283408;8555818;8687356;8958592;9340531;9629742;9928384;10236763;10554392;10882350;11220972
-123;'430;Liberia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;118;2269;1968;833;117
-123;'430;Liberia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;34;442;1228;249;44
-123;'430;Liberia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135700;184103;82182;100724;96608;24415;73774
-123;'430;Liberia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36155;51429;21007;20397;22864;6492;16338
-123;'430;Liberia;1864;Wood fuel;5516;Production;m3;1560000;850000;991000;991000;991000;1325179;1377472;1431828;1488329;1547059;1604579;1664639;1733318;1500000;1400000;1300000;2100000;2100000;2300000;2400000;2100000;2200000;1860000;1950000;2050000;2700000;2700000;3343922;3448405;3452701;3342818;3118810;2880524;2732488;2747818;2951440;3326808;3736394;4201839;4725361;4924930;5132953;5349791;5575817;5811423;6033198;6263400;6502500;6750676;7008341;7253978;7508232;7771408;8043818;8325786;8597022;8877101;9166312;9464954;9773333;10090962;10418920;10757542
-123;'430;Liberia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116
-123;'430;Liberia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43
-123;'430;Liberia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;812
-123;'430;Liberia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;316
-123;'430;Liberia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779
-123;'430;Liberia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309
-123;'430;Liberia;1628;Wood fuel, non-coniferous;5516;Production;m3;1560000;850000;991000;991000;991000;1325179;1377472;1431828;1488329;1547059;1604579;1664639;1733318;1500000;1400000;1300000;2100000;2100000;2300000;2400000;2100000;2200000;1860000;1950000;2050000;2700000;2700000;3343922;3448405;3452701;3342818;3118810;2880524;2732488;2747818;2951440;3326808;3736394;4201839;4725361;4924930;5132953;5349791;5575817;5811423;6033198;6263400;6502500;6750676;7008341;7253978;7508232;7771408;8043818;8325786;8597022;8877101;9166312;9464954;9773333;10090962;10418920;10757542
-123;'430;Liberia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116
-123;'430;Liberia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43
-123;'430;Liberia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33
-123;'430;Liberia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7
-123;'430;Liberia;1865;Industrial roundwood;5516;Production;m3;147000;138000;139000;151000;163000;117000;126000;170000;293000;305000;407000;492000;617000;505000;563000;707000;880000;707000;868000;860000;570000;507000;470000;447000;545000;681000;958000;1162000;1461000;1128000;747000;1035000;935000;629000;228000;164000;223000;321000;516000;1114000;1162000;1544000;980000;330000;330000;360000;360000;420000;420000;480000;484000;518000;512000;512000;361570;361570;463430;463430;463430;463430;463430;463430;463430
-123;'430;Liberia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;0;36;118;92;231;169;1449;36;43;54;1489;237;2;55;3207;3594;2949;6313;1669;388
-123;'430;Liberia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;79;0;81;84;6;60;67;756;12;19;6;576;112;0;9;1033;1021;636;2095;678;617
-123;'430;Liberia;1865;Industrial roundwood;5916;Export quantity;m3;14100;3600;18000;16000;15000;23000;22000;41000;149000;144000;205000;222000;364000;259000;220000;513100;357000;311100;389000;474800;255400;230300;223000;183500;257700;370000;250500;681000;701000;634669;411000;616000;183000;20000;40000;50000;49000;81000;208000;850000;798000;1000000;483593;250000;210000;170000;140012;2130;4780;9178;73386;190028;136106;132000;141710;106171;135700;184103;82182;100724;96608;24395;73741
-123;'430;Liberia;1865;Industrial roundwood;5922;Export value;1000 USD;374;93;476;400;316;559;551;1460;6927;6927;9900;11000;16605;17582;14300;32412;25890;47271;58000;84000;46213;37101;28022;22568;33369;48973;34587;87774;70436;144252;49264;68572;21600;4000;8000;15300;7525;12288;23418;212500;225000;325000;175000;82000;70000;48000;40002;693;1061;3338;22964;56770;53664;36917;45205;33746;36155;51429;21007;20440;22864;6492;16331
-123;'430;Liberia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;0;1444;0;0;0;1489;237;2;55;3192;3476;680;4345;836;387
-123;'430;Liberia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;751;0;0;0;576;112;0;9;1029;987;194;867;429;616
-123;'430;Liberia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;0
-123;'430;Liberia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;43;0;7;0
-123;'430;Liberia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;0;1444;0;0;0;1489;237;2;55;3192;3476;680;4345;836;387
-123;'430;Liberia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;751;0;0;0;576;112;0;9;1029;987;194;867;429;616
-123;'430;Liberia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;0
-123;'430;Liberia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;43;0;7;0
-123;'430;Liberia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;147000;138000;139000;151000;163000;117000;126000;170000;293000;305000;407000;492000;617000;505000;563000;707000;880000;707000;868000;860000;570000;507000;470000;447000;545000;681000;958000;1162000;1461000;1128000;747000;1035000;935000;629000;228000;164000;223000;321000;516000;1114000;1162000;1544000;980000;330000;330000;360000;360000;420000;420000;480000;484000;518000;512000;512000;361570;361570;463430;463430;463430;463430;463430;463430;463430
-123;'430;Liberia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;0;36;26;0;139;169;5;36;43;54;0;0;0;0;15;118;2269;1968;833;1
-123;'430;Liberia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;79;0;81;78;0;54;67;5;12;19;6;0;0;0;0;4;34;442;1228;249;1
-123;'430;Liberia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634669;411000;616000;183000;20000;40000;50000;49000;81000;208000;850000;798000;1000000;483593;250000;210000;170000;140012;2130;4780;9178;73386;190028;136106;132000;141710;106171;135700;184103;82182;100724;96608;24382;73741
-123;'430;Liberia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144252;49264;68572;21600;4000;8000;15300;7525;12288;23418;212500;225000;325000;175000;82000;70000;48000;40002;693;1061;3338;22964;56770;53664;36917;45205;33746;36155;51429;21007;20397;22864;6485;16331
-123;'430;Liberia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;36;26;0;0;0;5;0;0;0;0;0;0;0;15;9;3;5;1;1
-123;'430;Liberia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;81;78;0;0;0;5;0;0;0;0;0;0;0;4;2;1;2;3;1
-123;'430;Liberia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634669;411000;616000;183000;20000;40000;50000;49000;81000;208000;850000;798000;1000000;483593;250000;210000;170000;140000;2118;4745;9173;73386;190028;136106;132000;141710;106171;135700;184103;82182;100724;96608;21183;73741
-123;'430;Liberia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144252;49264;68572;21600;4000;8000;15300;7525;12288;23418;212500;225000;325000;175000;82000;70000;48000;40000;691;1049;3336;22964;56770;53664;36917;45205;33746;36155;51429;21007;20397;22864;5557;16331
-123;'430;Liberia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;139;169;0;36;43;54;0;0;0;0;0;109;2266;1963;832;0
-123;'430;Liberia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;54;67;0;12;19;6;0;0;0;0;0;32;441;1226;246;0
-123;'430;Liberia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;35;5;0;0;0;0;0;0;0;0;0;0;0;3199;0
-123;'430;Liberia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;12;2;0;0;0;0;0;0;0;0;0;0;0;928;0
-123;'430;Liberia;1868;Sawlogs and veneer logs;5516;Production;m3;82000;71000;70000;80000;90000;42000;48000;90000;211000;220000;319000;402000;524000;409000;464000;605000;775000;599000;756000;745000;451000;385000;344000;317000;410000;540000;810000;1008000;1303000;970000;593000;890000;800000;500000;100000;29000;75000;157000;336000;934000;982000;1364000;800000;150000;150000;180000;180000;240000;240000;300000;304000;338000;332000;332000;320000;320000;421860;421860;421860;421860;421860;421860;421860
-123;'430;Liberia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;14100;3600;18000;16000;15000;23000;22000;41000;149000;144000;205000;222000;364000;259000;220000;513100;357000;311100;389000;474800;255400;230300;223000;183500;257700;370000;250500;681000;701000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;374;93;476;400;316;559;551;1460;6927;6927;9900;11000;16605;17582;14300;32412;25890;47271;58000;84000;46213;37101;28022;22568;33369;48973;34587;87774;70436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;82000;71000;70000;80000;90000;42000;48000;90000;211000;220000;319000;402000;524000;409000;464000;605000;775000;599000;756000;745000;451000;385000;344000;317000;410000;540000;810000;1008000;1303000;970000;593000;890000;800000;500000;100000;29000;75000;157000;336000;934000;982000;1364000;800000;150000;150000;180000;180000;240000;240000;300000;304000;338000;332000;332000;320000;320000;421860;421860;421860;421860;421860;421860;421860
-123;'430;Liberia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;14100;3600;18000;16000;15000;23000;22000;41000;149000;144000;205000;222000;364000;259000;220000;513100;357000;311100;389000;474800;255400;230300;223000;183500;257700;370000;250500;681000;701000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;374;93;476;400;316;559;551;1460;6927;6927;9900;11000;16605;17582;14300;32412;25890;47271;58000;84000;46213;37101;28022;22568;33369;48973;34587;87774;70436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1871;Other industrial roundwood;5516;Production;m3;65000;67000;69000;71000;73000;75000;78000;80000;82000;85000;88000;90000;93000;96000;99000;102000;105000;108000;112000;115000;119000;122000;126000;130000;135000;141000;148000;154000;158000;158000;154000;145000;135000;129000;128000;135000;148000;164000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;41570;41570;41570;41570;41570;41570;41570;41570;41570
-123;'430;Liberia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;65000;67000;69000;71000;73000;75000;78000;80000;82000;85000;88000;90000;93000;96000;99000;102000;105000;108000;112000;115000;119000;122000;126000;130000;135000;141000;148000;154000;158000;158000;154000;145000;135000;129000;128000;135000;148000;164000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;41570;41570;41570;41570;41570;41570;41570;41570;41570
-123;'430;Liberia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1630;Wood charcoal;5510;Production;t;24837;25995;27206;28475;29802;31191;32645;34167;35759;37426;38730;40199;42635;44253;47004;48620;50789;52664;55046;59025;62397;66021;69866;74426;79307;85141;91698;97316;100664;101148;99813;93006;86259;82549;84219;91442;104525;118470;134458;152604;159777;167287;175149;183382;192001;243000;208000;216500;225338;234540;243286;252358;261768;271529;281654;291350;301379;311753;322484;333584;344934;356670;368805
-123;'430;Liberia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;6;6;23;18;3;8;9;49;11;35
-123;'430;Liberia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;169;169;169;169;169;169;16;16;127;26;4;12;26;99;25;19
-123;'430;Liberia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;391;391;391;197;40;4;30;30
-123;'430;Liberia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;297;297;297;46;13;8;4;4
-123;'430;Liberia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0
-123;'430;Liberia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0
-123;'430;Liberia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;66300;55600;225400;180000;32531;0;0;21;21;21;21;21;21;21;21
-123;'430;Liberia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3957;2097;11411;8734;2695;0;0;3;3;3;3;3;3;3;3
-123;'430;Liberia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;66300;55600;225400;180000;32531;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3957;2097;11411;8734;2695;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0
-123;'430;Liberia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0
-123;'430;Liberia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21
-123;'430;Liberia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3
-123;'430;Liberia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1872;Sawnwood;5516;Production;m3;45000;37100;36800;40800;45200;420200;300200;254000;54000;38000;47000;58000;71000;159000;121000;140000;233000;140000;166000;143000;199000;172000;161000;153000;169000;191000;411000;411000;140000;85000;75000;125000;90000;90000;90000;90000;90000;6000;4000;10000;20000;30000;25000;50000;50000;60000;60000;80000;80000;80000;80000;80000;132449;132449;132449;132449;132649;132649;132649;132649;132649;132649;132649
-123;'430;Liberia;1872;Sawnwood;5616;Import quantity;m3;;;;;6600;1100;1000;2600;2600;1650;1650;1650;1300;400;400;300;250;1500;1400;46500;46500;14000;14000;5500;5500;5500;5500;5500;5500;5500;5500;408;0;0;0;0;0;0;0;0;0;251;1807;2722;2379;503;261;347;273;127;1887;1200;40;391;243;561;695;576;232;196;2785;151;734
-123;'430;Liberia;1872;Sawnwood;5622;Import value;1000 USD;;;;;368;60;60;148;148;115;115;115;67;40;40;25;20;77;74;3900;3900;4475;4488;472;472;472;472;472;472;472;472;87;0;0;0;0;0;0;0;0;0;33;567;274;415;154;117;213;231;86;402;93;18;85;48;115;171;151;129;25;1485;68;303
-123;'430;Liberia;1872;Sawnwood;5916;Export quantity;m3;;;;;200;200;200;200;100;1000;1100;2800;4000;2000;23000;8000;17300;38000;68300;44700;24300;18300;10800;6200;6500;7700;4700;14300;25000;25000;15000;3095;200;200;200;300;500;1600;3000;6000;6000;26400;5833;4500;2000;1800;900;253;864;272;1575;2918;1839;2079;1100;500;1065;2164;8275;12185;3017;1280;1812
-123;'430;Liberia;1872;Sawnwood;5922;Export value;1000 USD;;;;;71;71;71;71;13;130;140;360;200;140;1700;1450;3433;8141;16413;11413;7079;4115;2869;915;1518;2054;1369;4176;6469;6469;3502;1092;67;67;67;131;217;674;1074;1351;3336;8490;3056;2100;1350;1100;560;161;304;129;984;1716;1375;1373;468;348;533;831;1793;3051;1228;538;1338
-123;'430;Liberia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;200;200;200;200;200;200
-123;'430;Liberia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;1450;1450;500;500;500;700;250;250;250;200;1300;1200;14900;14900;10000;10000;5500;5500;5500;5500;5500;5500;5500;5500;408;0;0;0;0;0;0;0;0;0;251;1570;2717;2374;124;79;276;24;15;1808;10;0;1;159;520;430;30;213;118;97;27;95
-123;'430;Liberia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;86;86;53;53;53;38;20;20;20;15;57;54;700;700;1767;1780;472;472;472;472;472;472;472;472;87;0;0;0;0;0;0;0;0;0;33;497;271;413;23;43;82;8;7;383;4;0;2;33;109;92;9;62;11;22;9;21
-123;'430;Liberia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42;0;0;0;66;0;33;0;0;85;0;0;0
-123;'430;Liberia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;40;0;26;0;21;0;11;0;0;18;36;0;0
-123;'430;Liberia;1633;Sawnwood, non-coniferous;5516;Production;m3;45000;37100;36800;40800;45200;420200;300200;254000;54000;38000;47000;58000;71000;159000;121000;140000;233000;140000;166000;143000;199000;172000;161000;153000;169000;191000;411000;411000;140000;85000;75000;125000;90000;90000;90000;90000;90000;6000;4000;10000;20000;30000;25000;50000;50000;60000;60000;80000;80000;80000;80000;80000;132449;132449;132449;132449;132449;132449;132449;132449;132449;132449;132449
-123;'430;Liberia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;6600;1100;1000;1150;1150;1150;1150;1150;600;150;150;50;50;200;200;31600;31600;4000;4000;;;;;;;;;;;0;0;0;0;0;0;0;0;0;237;5;5;379;182;71;249;112;79;1190;40;390;84;41;265;546;19;78;2688;124;639
-123;'430;Liberia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;368;60;60;62;62;62;62;62;29;20;20;5;5;20;20;3200;3200;2708;2708;;;;;;;;;;;0;0;0;0;0;0;0;0;0;70;3;2;131;74;131;223;79;19;89;18;83;15;6;79;142;67;14;1463;59;282
-123;'430;Liberia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;200;200;200;200;100;1000;1100;2800;4000;2000;23000;8000;17300;38000;68300;44700;24300;18300;10800;6200;6500;7700;4700;14300;25000;25000;15000;3095;200;200;200;300;500;1600;3000;6000;6000;26400;5833;4500;2000;1800;900;253;864;272;1533;2918;1839;2079;1034;500;1032;2164;8275;12100;3017;1280;1812
-123;'430;Liberia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;71;71;71;71;13;130;140;360;200;140;1700;1450;3433;8141;16413;11413;7079;4115;2869;915;1518;2054;1369;4176;6469;6469;3502;1092;67;67;67;131;217;674;1074;1351;3336;8490;3056;2100;1350;1100;560;161;304;129;944;1716;1349;1373;447;348;522;831;1793;3033;1192;538;1338
-123;'430;Liberia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;0;0;0;0;0;0;0;10000
-123;'430;Liberia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;48;30;59;4;5;1;5;9;28;33;8;2;4;0;41;16;0;0;29;0;17
-123;'430;Liberia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;29;18;209;9;17;6;10;13;64;37;12;6;3;2;40;41;6;22;32;18;18
-123;'430;Liberia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;300;1900;1900;1900;1900;1900;1900;1900;200;200;4500;2500;2500;2000;85;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;0;0;0;0;0;0;0;3750
-123;'430;Liberia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;13;82;82;82;82;82;82;82;87;70;1517;1086;1086;652;217;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;0;0;0;0;0;0;0;1136
-123;'430;Liberia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;3000;3000;7000;15000;7100;2400;1800;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;48000;78000;30000;30000;30000;30000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;632;1685;380;322;330;500;400;800;400;400;500;300;400;300;200;200;200;200;200;560;300;300;300;0;0;0;0;0;0;79;424;2361;4777;4983;3861;5611;3379;4329;8771;9185;11131;6902;8710;8306;10163;9836;12044;22236;22405;6071;12136
-123;'430;Liberia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;129;384;251;184;190;115;388;774;400;400;601;465;519;363;294;294;294;294;294;198;104;104;104;0;0;0;0;0;0;60;98;716;1645;1438;1196;2382;1143;1522;2902;4523;5125;3977;4488;3155;4270;4617;5394;8802;8911;3099;5934
-123;'430;Liberia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;6500;5800;2200;2100;1800;1900;1900;1900;1900;1900;700;900;900;1000;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;121;0;0;0;0;0;0;0;2;0;0;0;0;30;0
-123;'430;Liberia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;879;1603;692;507;291;234;234;234;234;234;262;273;273;213;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;60;0;0;0;0;14;0;0;1;0;0;0;0;29;0
-123;'430;Liberia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;3000;3000;7000;15000;7100;2400;1800;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;30000;48000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;300;300;300;0;0;0;0;0;0;79;5;784;3200;1029;1694;3444;2277;3227;7669;6064;7030;3355;2164;4373;7516;4858;4310;7315;9080;5387;8262
-123;'430;Liberia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;104;104;104;0;0;0;0;0;0;60;3;226;1155;328;442;1628;663;1042;2422;2541;2955;2193;1448;1684;2827;2246;1903;3144;3238;2749;4033
-123;'430;Liberia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;6500;5800;2200;2100;1800;1900;1900;1900;1900;1900;700;900;900;1000;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;121;0;0;0;0;0;0;0;2;0;0;0;0;30;0
-123;'430;Liberia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;879;1603;692;507;291;234;234;234;234;234;262;273;273;213;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;60;0;0;0;0;14;0;0;1;0;0;0;0;29;0
-123;'430;Liberia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;136;136;136;0;0;4;4;4;63;4;4;0;0;39;39;6;33;75;1;67
-123;'430;Liberia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;22;22;22;0;0;11;11;11;50;9;5;0;0;297;297;3;22;41;3;153
-123;'430;Liberia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;1;1;1;1;1;1;1;1;2;2;66;66;66;1;2;2;41
-123;'430;Liberia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;1;1;1;1;1;1;1;1;166;166;166;0;0;0;16
-123;'430;Liberia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;30000;30000;30000;30000;30000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;632;1685;380;322;330;500;400;800;400;400;500;300;400;300;200;200;200;200;200;256;;0;0;0;0;0;0;0;0;0;419;1416;1416;3793;2166;2166;1097;1097;1097;3057;4096;3542;6544;3931;2542;4873;7662;14887;13248;681;3766
-123;'430;Liberia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;129;384;251;184;190;115;388;774;400;400;601;465;519;363;294;294;294;294;294;85;;0;0;0;0;0;0;0;0;0;95;464;464;1084;753;753;468;468;468;1931;2160;1778;3039;1470;980;1908;3322;5636;5632;347;1732
-123;'430;Liberia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;30000;30000;30000;30000;30000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-123;'430;Liberia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;757;757;2819;1825;1825;1090;1090;1090;2959;4062;3494;6400;3364;2035;4763;6731;14108;11404;120;3241
-123;'430;Liberia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;351;351;898;640;640;465;465;465;1866;2103;1747;2965;1212;774;1752;2930;5312;4939;114;1509
-123;'430;Liberia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;659;968;335;335;1;1;1;62;25;44;140;563;503;106;930;778;1786;526;440
-123;'430;Liberia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;185;112;112;2;2;2;48;19;28;71;256;204;154;391;323;683;221;198
-123;'430;Liberia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;6;36;9;4;4;4;4;4;1;1;58;35;85
-123;'430;Liberia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;17;38;3;3;2;2;2;1;1;10;12;25
-123;'430;Liberia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;632;1685;380;322;330;500;400;800;400;400;500;300;400;300;200;200;200;200;200;256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;129;384;251;184;190;115;388;774;400;400;601;465;519;363;294;294;294;294;294;85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;0;338;345;345;504;358;358;248;248;248;65;67;98;132;106;2;2;5;5;3;75;54
-123;'430;Liberia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;0;0;0;0;0;0;0;51;44;44;85;71;71;65;65;65;19;32;51;50;41;2;2;22;16;2;28;46
-123;'430;Liberia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;119;119;119;119;119;119;119;0;0;0;0;0
-123;'430;Liberia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;24;0;0;0;0;0
-123;'430;Liberia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;0;0;26;26;26;26;26;26;26;26;26;28;28;27;1;1;1;1;1;1;1;1
-123;'430;Liberia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;0;0;0;0;0;0;0;0;9;9;9;9;9;9;9;9;9;22;22;11;2;2;2;2;2;2;2;2
-123;'430;Liberia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;0;0;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;0;0;0;0;0
-123;'430;Liberia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;0;0;0;0;0;0;0;0;9;9;9;9;9;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0
-123;'430;Liberia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;0;0;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;0;0;0;0;0
-123;'430;Liberia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;0;0;0;0;0;0;0;0;9;9;9;9;9;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0
-123;'430;Liberia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;0;0;0;0;0;0;0;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;0;0;0;0;0
-123;'430;Liberia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;0;0;0;0;0;0;0;0;0;0;9;9;9;9;9;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0
-123;'430;Liberia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;1;1;1;1;1;1
-123;'430;Liberia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;2;2;2;2;2;2;2;2;2
-123;'430;Liberia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;338;319;319;478;332;332;222;222;222;39;39;70;105;105;1;1;4;4;2;74;53
-123;'430;Liberia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;51;35;35;76;62;62;56;56;56;10;10;29;39;39;0;0;20;14;0;26;44
-123;'430;Liberia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;119;119;119;119;119;119;119;0;0;0;0;0
-123;'430;Liberia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;24;0;0;0;0;0
-123;'430;Liberia;1876;Paper and paperboard;5610;Import quantity;t;;;;;100;100;100;500;500;700;800;800;1000;1800;1850;1600;2500;3300;2000;900;800;600;600;700;1000;7187;1733;3631;2384;2990;2990;289;200;200;200;300;300;700;900;500;500;400;915;1521;1521;1721;579;579;1401;1401;1401;1578;2110;1640;2752;1583;2204;2358;3972;4431;6020;1512;5102
-123;'430;Liberia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;334;346;368;195;179;273;348;517;574;1032;1216;935;1472;2406;1978;1135;955;841;785;867;1335;4330;1479;3268;2251;2457;2457;288;159;159;159;462;1000;1635;612;379;379;423;752;1165;1165;1559;797;797;1479;1479;1479;1637;1915;1931;2856;1579;1853;3287;4449;4291;4584;2546;4882
-123;'430;Liberia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;25;25;25;25;438;154;154;206;206;206;260;386;386;386;386
-123;'430;Liberia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;43;43;43;43;564;212;212;261;261;261;156;359;359;359;359
-123;'430;Liberia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;200;100;300;400;200;200;400;450;200;200;1000;500;300;500;300;300;500;300;6552;889;1260;1700;2667;2667;149;200;200;200;100;200;400;800;300;300;300;376;657;657;1041;384;384;1168;1168;1168;1493;1998;1341;2302;1094;1654;2043;3482;3731;4954;616;2152
-123;'430;Liberia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;105;50;109;174;200;137;315;499;218;172;806;445;454;568;454;450;567;273;3838;815;1213;1525;2150;2150;137;159;159;159;170;600;735;513;269;269;269;263;507;507;951;333;333;1089;1089;1089;1486;1779;1166;2052;1065;1357;2866;3877;3461;3401;1288;2298
-123;'430;Liberia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;192;192;192;192;192
-123;'430;Liberia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;105;118;118;118;118
-123;'430;Liberia;1671;Newsprint;5610;Import quantity;t;;;;;;;;100;;100;200;;;;;;;100;;;200;;;200;200;92;148;226;129;29;29;23;;0;0;0;0;0;0;0;0;0;13;43;43;45;57;57;20;20;20;42;49;49;119;34;30;54;216;33;69;52;135
-123;'430;Liberia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;11;;11;29;;;;;;;11;;;114;;;115;115;50;86;141;92;21;21;14;;0;0;0;0;0;0;0;0;0;12;22;22;22;34;34;16;16;16;34;45;45;63;20;17;40;165;21;58;53;115
-123;'430;Liberia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;100;100;200;200;200;200;400;450;200;200;900;500;300;300;300;300;300;100;6460;741;1034;1571;2638;2638;126;200;200;200;100;200;400;800;300;300;300;363;614;614;996;327;327;1148;1148;1148;1451;1949;1292;2183;1060;1624;1989;3266;3698;4885;564;2017
-123;'430;Liberia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;94;50;98;145;200;137;315;499;218;172;795;445;454;454;454;450;452;158;3788;729;1072;1433;2129;2129;123;159;159;159;170;600;735;513;269;269;269;251;485;485;929;299;299;1073;1073;1073;1452;1734;1121;1989;1045;1340;2826;3712;3440;3343;1235;2183
-123;'430;Liberia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;192;192;192;192;192
-123;'430;Liberia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;105;118;118;118;118
-123;'430;Liberia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;34;34;117;50;50;38;38;38;187;225;70;26;172;60;60;42;66;38;34;8
-123;'430;Liberia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;27;27;147;31;31;62;62;62;174;197;40;32;157;69;69;65;65;47;115;4
-123;'430;Liberia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;800;300;300;300;344;264;264;817;225;225;1021;1021;1021;1125;1615;1159;2042;762;1484;1697;3164;3342;4647;350;1928
-123;'430;Liberia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735;513;269;269;269;231;208;208;738;211;211;898;898;898;1089;1433;1016;1817;575;1182;1537;3123;2754;2495;398;2062
-123;'430;Liberia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;191;191;191
-123;'430;Liberia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;118;118;118;118
-123;'430;Liberia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;316;316;62;52;52;89;89;89;139;109;63;115;126;80;232;60;290;200;180;81
-123;'430;Liberia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;250;250;44;57;57;113;113;113;189;104;65;140;313;89;1220;524;621;801;722;117
-123;'430;Liberia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;1;1;1;1;1
-123;'430;Liberia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;26;26;0;0;0;0;0
-123;'430;Liberia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;100;100;100;300;400;400;400;600;800;1400;1400;1400;2300;2300;1500;600;300;300;300;200;700;635;844;2371;684;323;323;140;0;0;0;200;100;300;100;200;200;100;539;864;864;680;195;195;233;233;233;85;112;299;450;489;550;315;490;700;1066;896;2950
-123;'430;Liberia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;334;346;368;90;129;164;174;317;437;717;717;717;1300;1600;1533;681;387;387;335;300;1062;492;664;2055;726;307;307;151;0;0;0;292;400;900;99;110;110;154;489;658;658;608;464;464;390;390;390;151;136;765;804;514;496;421;572;830;1183;1258;2584
-123;'430;Liberia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;414;130;130;182;182;182;68;194;194;194;194
-123;'430;Liberia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;538;186;186;235;235;235;51;241;241;241;241
-123;'430;Liberia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;10;20;20;10;58;81;81;129;8;8;27;27;27;11;31;94;286;299;276;252;385;455;411;313;477
-123;'430;Liberia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;9;20;20;12;52;89;89;191;38;38;37;37;37;32;46;133;610;307;322;327;453;496;504;528;915
-123;'430;Liberia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;129;129;129;129;129;0;129;129;129;129
-123;'430;Liberia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;169;169;169;169;169;0;169;169;169;169
-123;'430;Liberia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;80;160;160;80;423;533;533;513;158;158;170;170;170;56;40;102;92;106;272;61;103;243;652;579;2293
-123;'430;Liberia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;81;70;70;130;257;331;331;308;248;248;184;184;184;87;36;394;144;107;165;85;94;293;669;711;1432
-123;'430;Liberia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;65;64;64;64;64
-123;'430;Liberia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;50;55;55;55;55
-123;'430;Liberia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;80;160;160;80;323;120;120;431;47;47;30;30;30;9;2;32;32;22;229;4;11;90;443;315;1119
-123;'430;Liberia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840;81;70;70;130;143;74;74;163;35;35;25;25;25;10;9;26;26;19;98;3;8;37;304;260;609
-123;'430;Liberia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;185;185;73;79;79;60;60;60;26;17;25;6;49;18;15;7;42;99;74;18
-123;'430;Liberia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;115;115;124;168;168;108;108;108;54;4;59;44;42;37;8;15;132;223;225;54
-123;'430;Liberia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;63;62;62;62;62
-123;'430;Liberia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;45;50;50;50;50
-123;'430;Liberia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;227;227;8;31;31;79;79;79;20;20;44;53;34;24;31;34;74;77;142;1085
-123;'430;Liberia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;141;141;20;44;44;50;50;50;22;22;308;73;45;29;69;48;109;121;190;714
-123;'430;Liberia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-123;'430;Liberia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;11;51;37;33;48;71
-123;'430;Liberia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;5;23;15;21;36;55
-123;'430;Liberia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2
-123;'430;Liberia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5
-123;'430;Liberia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;10;20;20;10;58;250;250;38;29;29;36;36;36;18;41;103;72;84;2;2;2;2;3;4;180
-123;'430;Liberia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;9;20;20;12;180;238;238;109;178;178;169;169;169;32;54;238;50;100;9;9;25;41;10;19;237
-123;'430;Liberia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;3;1;1;1;1
-123;'430;Liberia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;1;17;17;17;17
-123;'430;Liberia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4249;4190;6462;2764;6132;7425;6710
-123;'430;Liberia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;88;164;906;2311;1275;1187
-123;'430;Liberia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;30;3;3;126;161;127
-123;'430;Liberia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;59;63;882;2140;1171;1171
-123;'430;Liberia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;1;1;125;125;125
-123;'430;Liberia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;27;31;850;2135;1166;1166
-123;'430;Liberia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;2;1;36;2
-123;'430;Liberia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;5;5;5
-123;'430;Liberia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;32;20;19;15;101;50
-123;'430;Liberia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0
-123;'430;Liberia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;16;15;12;80;78;58
-123;'430;Liberia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;0;0;21;0
-123;'430;Liberia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;264;141;82;178;76;216
-123;'430;Liberia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-123;'430;Liberia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3278;3100;3525;1726;3933;5314;4424
-123;'430;Liberia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;16;18;93;5;6
-123;'430;Liberia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;479;2616;265;265;106;1688
-123;'430;Liberia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;269;142;657;1535;1589;147
-123;'430;Liberia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;13;74;2;74;74;10
-123;'430;Liberia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5212;5602;6574;4455;6660;7766;9705
-123;'430;Liberia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;156;331;332;332;333;333
-123;'430;Liberia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;1;1
-123;'430;Liberia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10
-123;'430;Liberia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;172;165;71;60;161;264
-123;'430;Liberia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;146;146;146;146;146;146
-123;'430;Liberia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019;950;590;959;819;1510;1108
-123;'430;Liberia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;0;175;175;175;175;175
-123;'430;Liberia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;792;1032;1312;1183;1841;1363;3244
-123;'430;Liberia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1;1;1
-123;'430;Liberia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3313;3447;4506;2242;3940;4731;5088
-123;'430;Liberia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;1;1
-124;'434;Libya;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319769;428257;505860;446974;554717;570683;705290
-124;'434;Libya;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5518;3484;5584;2922;4706;9969;9828
-124;'434;Libya;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2871;3426;2629;4697;5436;9020;8941;11717;9662;7510;15816;22928;79262;116962;86116;66556;69833;71712;73030;74430;143223;110797;104952;78952;69654;64535;60860;87912;67013;42400;42087;36591;55493;49073;45167;46124;46183;34097;33260;31525;27737;33402;38231;54645;61020;74579;97230;180262;190066;203926;61058;142350;190569;135694;54095;54340;58677;83860;141274;97793;180684;190706;254889
-124;'434;Libya;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;12;3;3;3;3;0;0;0;0;0;322;322;322;322;2164;1871;3124;2027;936;2367;2379;1686;3605;5153;3160;5318;2398;4177;9247;9303
-124;'434;Libya;1861;Roundwood;5516;Production;m3;312000;322000;330000;350000;361000;367000;413000;430000;454000;435000;460000;468000;522000;531000;526000;547000;588000;626000;627000;628000;630000;631000;633000;634000;636000;637000;639000;640000;661889;681625;696347;743336;774489;806784;840500;873770;909275;909107;924601;939386;952086;964988;978096;991414;1004945;1017191;1029600;1042200;1054954;1067892;1079555;1091362;1103313;1115412;1127659;1137509;1147456;1157499;1167641;1177881;1188194;1198607;1209122
-124;'434;Libya;1861;Roundwood;5616;Import quantity;m3;;;;6500;9400;7700;12900;16500;13600;7500;20700;24200;37900;46300;46300;27000;106000;112800;112800;112800;73800;29800;29800;29800;29800;29800;29800;29800;29800;3910;321;1291;153;372;372;4418;4418;1118;3918;3918;518;518;518;7631;7631;7631;7631;7631;7939;27880;1357;7206;42577;53628;3323;527;22416;17675;5080;1751;1258;9634;4306
-124;'434;Libya;1861;Roundwood;5622;Import value;1000 USD;;;;352;467;404;678;802;667;444;832;1766;4424;6371;6371;3900;17206;22281;22281;22281;16299;9982;9982;9982;9982;9982;9982;9982;9982;366;53;195;23;29;29;1679;1679;152;735;735;82;82;82;481;481;481;481;481;1070;4298;382;2596;9545;8129;1120;223;9354;4440;2099;790;361;3682;2051
-124;'434;Libya;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;24;23;0;0;0;0;0;0;399
-124;'434;Libya;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;4;4;0;0;0;0;0;0;20
-124;'434;Libya;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22416;17675;4873;1141;1017;7650;4186
-124;'434;Libya;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9354;4440;2079;552;327;3087;2020
-124;'434;Libya;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-124;'434;Libya;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-124;'434;Libya;1863;Roundwood, non-coniferous;5516;Production;m3;312000;322000;330000;350000;361000;367000;413000;430000;454000;435000;460000;468000;522000;531000;526000;547000;588000;626000;627000;628000;630000;631000;633000;634000;636000;637000;639000;640000;661889;681625;696347;743336;774489;806784;840500;873770;909275;909107;924601;939386;952086;964988;978096;991414;1004945;1017191;1029600;1042200;1054954;1067892;1079555;1091362;1103313;1115412;1127659;1137509;1147456;1157499;1167641;1177881;1188194;1198607;1209122
-124;'434;Libya;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;207;610;241;1984;120
-124;'434;Libya;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;238;34;595;31
-124;'434;Libya;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;399
-124;'434;Libya;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20
-124;'434;Libya;1864;Wood fuel;5516;Production;m3;290000;300000;310000;320000;330000;340000;355000;370000;384000;400000;416000;434000;452000;470000;488000;504000;520000;536000;536000;536000;536000;536000;536000;536000;536000;536000;536000;536000;556889;574625;589347;635336;665489;696784;729500;761770;795275;794107;808601;823386;836086;848988;862096;875414;888945;901191;913600;926200;938954;951892;963555;975362;987313;999412;1011659;1021509;1031456;1041499;1051641;1061881;1072194;1082607;1093122
-124;'434;Libya;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;239;13;13;21;;;207;207;207;85;18
-124;'434;Libya;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;48;2;2;1;;;20;20;20;16;11
-124;'434;Libya;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;399
-124;'434;Libya;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;;;;;20
-124;'434;Libya;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1628;Wood fuel, non-coniferous;5516;Production;m3;290000;300000;310000;320000;330000;340000;355000;370000;384000;400000;416000;434000;452000;470000;488000;504000;520000;536000;536000;536000;536000;536000;536000;536000;536000;536000;536000;536000;556889;574625;589347;635336;665489;696784;729500;761770;795275;794107;808601;823386;836086;848988;862096;875414;888945;901191;913600;926200;938954;951892;963555;975362;987313;999412;1011659;1021509;1031456;1041499;1051641;1061881;1072194;1082607;1093122
-124;'434;Libya;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;207;85;18
-124;'434;Libya;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;16;11
-124;'434;Libya;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399
-124;'434;Libya;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20
-124;'434;Libya;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;239;13;13;21;;;;;;;
-124;'434;Libya;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;48;2;2;1;;;;;;;
-124;'434;Libya;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;;;;;;;
-124;'434;Libya;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;;;;;
-124;'434;Libya;1865;Industrial roundwood;5516;Production;m3;22000;22000;20000;30000;31000;27000;58000;60000;70000;35000;44000;34000;70000;61000;38000;43000;68000;90000;91000;92000;94000;95000;97000;98000;100000;101000;103000;104000;105000;107000;107000;108000;109000;110000;111000;112000;114000;115000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000
-124;'434;Libya;1865;Industrial roundwood;5616;Import quantity;m3;;;;6500;9400;7700;12900;16500;13600;7500;20700;24200;37900;46300;46300;27000;106000;112800;112800;112800;73800;29800;29800;29800;29800;29800;29800;29800;29800;3910;321;1291;153;372;372;4418;4418;1118;3918;3918;518;518;518;7631;7631;7631;7631;7631;7939;27880;1357;7206;42338;53615;3310;506;22416;17675;4873;1544;1051;9549;4288
-124;'434;Libya;1865;Industrial roundwood;5622;Import value;1000 USD;;;;352;467;404;678;802;667;444;832;1766;4424;6371;6371;3900;17206;22281;22281;22281;16299;9982;9982;9982;9982;9982;9982;9982;9982;366;53;195;23;29;29;1679;1679;152;735;735;82;82;82;481;481;481;481;481;1070;4298;382;2596;9497;8127;1118;222;9354;4440;2079;770;341;3666;2040
-124;'434;Libya;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;1;0;0;0;0;0;0;0;0
-124;'434;Libya;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;216;92;92;154;154;4200;4200;900;3700;3700;300;300;300;7454;7454;7454;7454;7454;7454;27574;1051;6900;14000;49731;3309;216;22416;17675;4873;1141;1017;7650;4186
-124;'434;Libya;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;16;12;12;10;10;1660;1660;133;716;716;63;63;63;455;455;455;455;455;455;4208;292;2506;5695;7471;1117;72;9354;4440;2079;552;327;3087;2020
-124;'434;Libya;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;216;92;92;154;154;4200;4200;900;3700;3700;300;300;300;7454;7454;7454;7454;7454;7454;27574;1051;6900;14000;49731;3309;216;22416;17675;4873;1141;1017;7650;4186
-124;'434;Libya;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;16;12;12;10;10;1660;1660;133;716;716;63;63;63;455;455;455;455;455;455;4208;292;2506;5695;7471;1117;72;9354;4440;2079;552;327;3087;2020
-124;'434;Libya;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1867;Industrial roundwood, non-coniferous;5516;Production;m3;22000;22000;20000;30000;31000;27000;58000;60000;70000;35000;44000;34000;70000;61000;38000;43000;68000;90000;91000;92000;94000;95000;97000;98000;100000;101000;103000;104000;105000;107000;107000;108000;109000;110000;111000;112000;114000;115000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000
-124;'434;Libya;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3030;105;1199;61;218;218;218;218;218;218;218;218;218;218;177;177;177;177;177;485;306;306;306;28338;3884;1;290;0;0;0;403;34;1899;102
-124;'434;Libya;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;37;183;11;19;19;19;19;19;19;19;19;19;19;26;26;26;26;26;615;90;90;90;3802;656;1;150;0;0;0;218;14;579;20
-124;'434;Libya;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;1;0;0;0;0;0;0;0;0
-124;'434;Libya;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;144;144;144;144;144;144;144;144;125;125;0;0;0;0;0;403;17;1759;0
-124;'434;Libya;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;169;169;0;0;0;0;0;218;9;479;0
-124;'434;Libya;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3030;105;1199;61;218;218;218;218;218;218;218;218;218;218;33;33;33;33;33;341;162;162;162;28213;3759;1;290;0;0;0;0;17;140;102
-124;'434;Libya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;37;183;11;19;19;19;19;19;19;19;19;19;19;2;2;2;2;2;591;66;66;66;3633;487;1;150;0;0;0;0;5;100;20
-124;'434;Libya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;23;1;0;0;0;0;0;0;0;0
-124;'434;Libya;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1868;Sawlogs and veneer logs;5516;Production;m3;9000;8000;6000;15000;16000;11000;41000;43000;52000;16000;24000;13000;48000;39000;15000;18000;42000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000
-124;'434;Libya;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;9000;8000;6000;15000;16000;11000;41000;43000;52000;16000;24000;13000;48000;39000;15000;18000;42000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000;63000
-124;'434;Libya;1871;Other industrial roundwood;5516;Production;m3;13000;14000;14000;15000;15000;16000;17000;17000;18000;19000;20000;21000;22000;22000;23000;25000;26000;27000;28000;29000;31000;32000;34000;35000;37000;38000;40000;41000;42000;44000;44000;45000;46000;47000;48000;49000;51000;52000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000
-124;'434;Libya;1871;Other industrial roundwood;5616;Import quantity;m3;;;;6500;9400;7700;12900;16500;13600;7500;20700;24200;37900;46300;46300;27000;106000;112800;112800;112800;73800;29800;29800;29800;29800;29800;29800;29800;29800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;352;467;404;678;802;667;444;832;1766;4424;6371;6371;3900;17206;22281;22281;22281;16299;9982;9982;9982;9982;9982;9982;9982;9982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;13000;14000;14000;15000;15000;16000;17000;17000;18000;19000;20000;21000;22000;22000;23000;25000;26000;27000;28000;29000;31000;32000;34000;35000;37000;38000;40000;41000;42000;44000;44000;45000;46000;47000;48000;49000;51000;52000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000
-124;'434;Libya;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;6500;9400;7700;12900;16500;13600;7500;20700;24200;37900;46300;46300;27000;106000;112800;112800;112800;73800;29800;29800;29800;29800;29800;29800;29800;29800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;352;467;404;678;802;667;444;832;1766;4424;6371;6371;3900;17206;22281;22281;22281;16299;9982;9982;9982;9982;9982;9982;9982;9982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1630;Wood charcoal;5510;Production;t;5008;5442;5915;6428;6985;5591;0;0;0;1489;11859;13655;14988;17437;18883;19065;20106;21552;22443;24332;28212;30887;33539;37242;41396;45549;49039;52052;55206;57576;59369;65012;68757;72662;76790;80682;84744;84915;86832;88793;90351;91937;93550;95191;96861;98262;99682;101100;102585;104068;105399;106746;108110;109492;110891;112008;113136;114275;115426;116589;117753;118928;120115
-124;'434;Libya;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;46;48;67;131;572;763;772;539;765;414;3515;5423;1300;1869;1477;4228
-124;'434;Libya;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;66;15;256;883;1316;1874;1514;1712;1284;7000;4381;2804;4215;2890;4383
-124;'434;Libya;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;20;20;20;20
-124;'434;Libya;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;15;15;15;15;15;6;7;7;7
-124;'434;Libya;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;149;149;149;149;149;382;382;382;382;649;111;867;279;20;64;9;173;174;83;109;31;77;207;6;1115
-124;'434;Libya;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;5;5;5;5;15;15;15;15;137;10;72;82;11;20;5;20;22;25;28;8;20;13;2;116
-124;'434;Libya;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;21630;2;2;2;2;2;2;2;7;7;7;7;7
-124;'434;Libya;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1176;1;1;1;1;1;1;1;2;2;2;2;2
-124;'434;Libya;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;0;0;0;0;0;0;0;0;0;267;72;204;204;6;2;2;2;3;3;29;30;56;27;1;1051
-124;'434;Libya;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0;0;0;122;8;20;20;8;1;1;1;3;3;6;8;17;5;1;83
-124;'434;Libya;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21628;0;0;0;0;0;0;0;5;5;5;5;5
-124;'434;Libya;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1175;0;0;0;0;0;0;0;1;1;1;1;1
-124;'434;Libya;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;10;149;149;149;149;149;149;149;149;149;149;382;382;382;382;382;39;663;75;14;62;7;171;171;80;80;1;21;180;5;64
-124;'434;Libya;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;5;5;5;5;5;5;5;5;5;5;15;15;15;15;15;2;52;62;3;19;4;19;19;22;22;0;3;8;1;33
-124;'434;Libya;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2
-124;'434;Libya;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-124;'434;Libya;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;77;52;14;8
-124;'434;Libya;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;9;5;3
-124;'434;Libya;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;52;52;7;7
-124;'434;Libya;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;9;3;3
-124;'434;Libya;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;0;7;1
-124;'434;Libya;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;2;0
-124;'434;Libya;1872;Sawnwood;5516;Production;m3;5000;4000;3000;7000;8000;5000;20000;20000;25000;8000;12000;6000;24000;18000;7000;9000;21000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000
-124;'434;Libya;1872;Sawnwood;5616;Import quantity;m3;32000;41800;32500;52100;60900;120300;116100;140500;100100;77800;137500;205000;488600;463200;321700;188200;179300;177500;177200;177200;292900;218800;200000;100000;60000;106177;94464;155280;79304;58682;58682;74328;164170;187900;183700;144600;144600;27300;40900;40300;82000;108500;136600;110089;149989;181889;219689;326659;356600;359771;88005;308228;339307;197271;73395;58290;23386;82761;198780;94910;140257;128760;184011
-124;'434;Libya;1872;Sawnwood;5622;Import value;1000 USD;1877;2359;1759;2775;3281;6605;6390;7530;5590;4793;9217;14299;63773;78264;58108;37040;37279;34130;34050;34050;72512;56845;51000;25000;14900;21738;21774;32956;20196;17096;17096;14634;23955;27916;26330;25891;25891;6912;9190;7455;13365;19030;23859;21992;28367;41926;65985;91784;94495;96189;24371;91100;104363;56596;18203;12859;6368;19986;44139;21565;43638;35283;42827
-124;'434;Libya;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;78;0;0;0;0;0;0;0;0;0;224;224;224;224;224;224;508;1;4;4;4;0;21;104;1;0;0;26;0;0
-124;'434;Libya;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;9;0;0;0;0;0;0;0;0;0;68;68;68;68;68;68;1080;0;2;1;0;0;5;52;0;0;1;5;0;0
-124;'434;Libya;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1632;Sawnwood, coniferous;5616;Import quantity;m3;32000;41800;32500;50750;59850;115750;115650;138000;98850;77300;136450;204600;488500;463100;320850;188100;179150;177350;177200;177200;292900;218800;200000;100000;60000;106177;94464;155280;79304;58682;58682;71690;161183;179100;179100;140000;140000;23600;37800;37200;80000;106500;134600;106200;146100;178000;215800;325300;346600;355978;84997;305337;329498;193624;72612;57641;22519;81434;183728;83910;125963;126760;182490
-124;'434;Libya;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1877;2359;1759;2694;3213;6315;6308;7370;5479;4731;9174;14254;63760;78246;57958;37020;37239;34090;34050;34050;72512;56845;51000;25000;14900;21738;21774;32956;20196;17096;17096;13677;22308;24389;24389;23950;23950;5688;7980;6245;12511;18176;23005;20806;27181;40740;64799;90688;85513;93554;23257;89456;99190;54599;17713;12571;6072;19643;38049;17286;37460;34535;42094
-124;'434;Libya;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;78;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;507;0;0;0;0;0;20;63;0;0;0;0;0;0
-124;'434;Libya;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1080;0;0;0;0;0;5;13;0;0;0;0;0;0
-124;'434;Libya;1633;Sawnwood, non-coniferous;5516;Production;m3;5000;4000;3000;7000;8000;5000;20000;20000;25000;8000;12000;6000;24000;18000;7000;9000;21000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000
-124;'434;Libya;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;1350;1050;4550;450;2500;1250;500;1050;400;100;100;850;100;150;150;;;;;;;;;;;;;;2638;2987;8800;4600;4600;4600;3700;3100;3100;2000;2000;2000;3889;3889;3889;3889;1359;10000;3793;3008;2891;9809;3647;783;649;867;1327;15052;11000;14294;2000;1521
-124;'434;Libya;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;81;68;290;82;160;111;62;43;45;13;18;150;20;40;40;;;;;;;;;;;;;;957;1647;3527;1941;1941;1941;1224;1210;1210;854;854;854;1186;1186;1186;1186;1096;8982;2635;1114;1644;5173;1997;490;288;296;343;6090;4279;6178;748;733
-124;'434;Libya;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;224;224;224;224;224;224;1;1;4;4;4;0;1;41;1;0;0;26;0;0
-124;'434;Libya;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;68;68;68;68;68;68;0;0;2;1;0;0;0;39;0;0;1;5;0;0
-124;'434;Libya;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1634;Veneer sheets;5616;Import quantity;m3;;;100;400;300;400;200;200;100;300;300;500;1100;1300;1200;800;500;700;700;700;300;800;800;800;800;706;482;839;197;53;53;309;90;62;62;62;62;0;0;0;1600;1600;1600;89;89;89;89;602;496;317;87;4;61;8;0;0;0;0;28;1;167;0;21
-124;'434;Libya;1634;Veneer sheets;5622;Import value;1000 USD;;;24;66;52;81;40;42;55;73;100;130;384;709;709;450;261;368;368;368;240;664;664;664;664;734;520;631;311;48;48;780;377;108;108;108;108;0;0;0;2258;2258;2258;69;69;69;69;676;585;363;146;3;66;66;0;2;0;0;84;2;315;1;8
-124;'434;Libya;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1873;Wood-based panels;5616;Import quantity;m3;6000;11400;4500;6400;7500;5721;5311;14527;13511;6111;17011;18111;23011;97137;37040;62400;23500;23300;23300;23300;100400;73800;73800;73800;73800;19200;37342;55665;31648;18626;18626;21266;29235;27173;30400;16900;17800;20000;11000;11000;21800;21800;21800;25983;25983;25983;33205;66969;57737;94263;13582;52748;80493;42072;20153;25442;44253;44722;108237;141832;191480;194817;239293
-124;'434;Libya;1873;Wood-based panels;5622;Import value;1000 USD;236;402;499;620;792;675;773;1932;1658;829;3950;3795;4785;19502;9120;13050;6008;8139;8139;8139;35027;25548;25548;25548;25548;6640;13401;24943;15430;9787;9787;8372;11177;8557;10572;8745;8804;7060;4343;4343;3670;3670;3670;5762;5762;5762;10089;30102;43346;37791;5900;25241;39253;26022;12251;12454;14642;17399;51144;30655;62656;78576;88708
-124;'434;Libya;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;24;24;29;24;24;24;24;24;24;24
-124;'434;Libya;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;16;16;20;16;16;16;16;16;16;16
-124;'434;Libya;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1640;Plywood and LVL;5616;Import quantity;m3;6000;11400;4100;5900;6900;4800;4600;13200;12000;5700;11100;11200;17000;90000;27000;57300;18200;19800;19800;19800;92900;72300;72300;72300;72300;9515;20291;31026;24101;10394;10394;16000;15000;19800;19800;6300;7200;13100;6800;6800;1000;1000;1000;4356;4356;4356;4356;13285;29524;60090;10598;24491;52596;22008;4192;5732;11780;6521;23386;13183;24314;13423;25120
-124;'434;Libya;1640;Plywood and LVL;5622;Import value;1000 USD;236;402;445;565;657;557;647;1708;1350;731;1756;1269;3139;16566;5100;11000;3893;6019;6019;6019;31446;24582;24582;24582;24582;4410;9062;16038;11291;6910;6910;5584;5800;5296;5296;3469;3528;4813;3038;3038;422;422;422;1546;1546;1546;1546;11971;29553;23261;4140;10728;22271;13480;2716;3065;3638;3016;9885;5159;9172;6997;10549
-124;'434;Libya;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0
-124;'434;Libya;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0
-124;'434;Libya;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;200;300;300;500;500;800;1300;200;5700;6700;5800;6400;9600;5000;5000;2500;2500;2500;7500;1500;1500;1500;1500;9685;17051;24639;7547;8232;8232;4037;12545;6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;30;34;79;56;88;150;266;56;2152;2484;1554;2568;3800;2000;2000;1634;1634;1634;3581;966;966;966;966;2230;4339;8905;4139;2877;2877;2389;4655;2415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10400;10400;10400;6700;4000;4000;8000;8000;8000;17386;17386;17386;24608;37988;16786;21398;1068;2005;3900;4500;5100;5684;18800;18800;29858;28816;59045;77419;93185
-124;'434;Libya;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5174;5174;5174;2145;1203;1203;2545;2545;2545;2852;2852;2852;7179;10175;7094;7102;428;1112;1338;1291;826;1199;3477;3477;8225;5966;14867;23726;25539
-124;'434;Libya;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24
-124;'434;Libya;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;16;16
-124;'434;Libya;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;3813;517;117;32;38;46;226;2;2;0;23;51;61;61;56;713
-124;'434;Libya;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;1718;293;117;106;20;30;140;14;14;0;5;14;8;8;12;260
-124;'434;Libya;1874;Fibreboard;5616;Import quantity;m3;;;200;200;300;421;211;527;211;211;211;211;211;737;440;100;300;1000;1000;1000;;;;;;;;;;;;1229;1690;1173;200;200;200;200;200;200;12800;12800;12800;4098;4098;4098;4098;11883;10910;12658;1884;26214;23951;15338;10859;14024;13673;19378;54942;99772;108060;103919;120275
-124;'434;Libya;1874;Fibreboard;5622;Import value;1000 USD;;;24;21;56;62;38;74;42;42;42;42;92;368;220;50;115;486;486;486;;;;;;;;;;;;399;722;846;102;102;102;102;102;102;703;703;703;1341;1341;1341;1341;6238;6406;7311;1226;13381;15614;11111;8695;8176;7527;10901;33020;19522;38609;47841;52360
-124;'434;Libya;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;500;500;500;2278;2278;2278;2278;278;462;567;134;1172;1531;904;795;727;865;2308;17182;38597;26798;10664;8173
-124;'434;Libya;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;300;300;300;1057;1057;1057;1057;310;432;465;126;1133;1399;781;876;479;615;1387;15934;2741;7098;7088;4653
-124;'434;Libya;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;11900;11900;1197;1197;1197;1197;10102;10164;11955;1713;24212;17370;13145;9572;12167;7073;6499;31467;30681;38701;50864;87698
-124;'434;Libya;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;343;343;205;205;205;205;5370;5417;6487;944;11509;11866;9511;7330;7096;4973;5451;12268;9454;19697;24894;37905
-124;'434;Libya;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;563;200;100;100;100;100;100;100;400;400;400;623;623;623;623;1503;284;136;37;830;5050;1289;492;1130;5735;10571;6293;30494;42561;42391;24404
-124;'434;Libya;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;289;120;18;18;18;18;18;18;60;60;60;79;79;79;79;558;557;359;156;739;2349;819;489;601;1939;4063;4818;7327;11814;15859;9802
-124;'434;Libya;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;200;200;300;421;211;527;211;211;211;211;211;737;440;100;300;1000;1000;1000;;;;;;;;;;;;1137;1127;973;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;24;21;56;62;38;74;42;42;42;42;92;368;220;50;115;486;486;486;;;;;;;;;;;;365;433;726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12283;3738;3000;12000;12268;12275;25000;34000;16000;37000;37000;37000;40000;40000
-124;'434;Libya;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1529;3583;2657;2589;2157;2157;3457;3857;3857;2157;2157;2157;4761;4761;4761;4761;4404;3981;5135;1596;2570;3401;2086;3395;3876;4712;3584;1695;1303;1426;1184;2215
-124;'434;Libya;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352;2060;1446;1440;1209;1209;1675;2103;2103;947;947;947;1654;1654;1654;1654;3136;2203;3249;819;1465;1596;1210;1860;2203;3028;2715;1122;989;1210;1749;2248
-124;'434;Libya;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2552;2552;2552;2552;12645;12443;12671;3812;2994;12275;12275;12545;24533;33604;15738;35839;14841;15133;36552;63701
-124;'434;Libya;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;253;253;253;253;2044;1738;1869;653;735;2171;2171;1486;3396;4644;2703;4860;1948;3930;9076;9049
-124;'434;Libya;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3515;2589;2589;2157;2157;3457;3857;3857;2157;2157;2157;3705;3705;3705;3705;4354;3903;4747;1522;2496;2540;2079;3125;3606;4442;3314;1501;1061;1418;1064;2082
-124;'434;Libya;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2054;1440;1440;1209;1209;1675;2103;2103;947;947;947;1537;1537;1537;1537;3121;2179;3181;798;1444;1399;1174;1834;2177;3002;2689;1052;677;1203;1608;2221
-124;'434;Libya;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3
-124;'434;Libya;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1
-124;'434;Libya;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3515;2589;2589;2157;2157;3457;3857;3857;2157;2157;2157;3704;3704;3704;3704;4236;3785;4754;1529;2524;2551;2090;3136;3617;4453;3325;1512;1072;1429;1083;1950
-124;'434;Libya;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2054;1440;1440;1209;1209;1675;2103;2103;947;947;947;1536;1536;1536;1536;3012;2070;3175;792;1467;1404;1179;1839;2182;3007;2694;1057;682;1208;1628;2028
-124;'434;Libya;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3
-124;'434;Libya;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1
-124;'434;Libya;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;857;;;;;;;
-124;'434;Libya;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;332;;;;;;;
-124;'434;Libya;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3005;1732;1732;1300;1300;2600;3000;3000;1300;1300;1300;2847;2847;2847;2847;3364;2913;3882;657;1631;1675;1214;2260;2741;4434;3306;1493;1053;1410;1064;1931
-124;'434;Libya;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;1831;1108;1108;877;877;1343;1771;1771;615;615;615;1204;1204;1204;1204;2671;1729;2834;451;1097;1052;827;1487;1830;2987;2674;1037;662;1188;1608;2008
-124;'434;Libya;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3
-124;'434;Libya;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1
-124;'434;Libya;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2
-124;'434;Libya;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1
-124;'434;Libya;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653;1892;731;731;1000;1000;2600;3000;3000;600;600;600;2812;2812;2812;2812;2831;2906;3875;650;1622;1666;1214;2260;2739;4432;3304;1491;1051;1408;1062;1929
-124;'434;Libya;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;762;1150;419;419;648;648;1343;1771;1771;244;244;244;1187;1187;1187;1187;1953;1715;2820;437;1089;1044;827;1487;1829;2986;2673;1036;661;1187;1607;2007
-124;'434;Libya;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3
-124;'434;Libya;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1
-124;'434;Libya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847;1113;1001;1001;300;300;0;0;0;700;700;700;35;35;35;35;533;7;7;7;9;9;0;0;0;;;;;;;
-124;'434;Libya;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;681;689;689;229;229;0;0;0;371;371;371;17;17;17;17;718;14;14;14;8;8;0;0;0;;;;;;;
-124;'434;Libya;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;36;19;19;19;19;19;19;19;19;19;19;19
-124;'434;Libya;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;38;20;20;20;20;20;20;20;20;20;20;20
-124;'434;Libya;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;133;133;8;8;8;8;8;8;8;8;8;8;8;8;0;151
-124;'434;Libya;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;118;118;15;15;15;15;15;15;15;15;15;15;15;15;0;213
-124;'434;Libya;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-124;'434;Libya;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;7;7;7;7;7;1
-124;'434;Libya;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;387;387;387;387;387;387;387;4;4;4;4;4;13
-124;'434;Libya;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12283;3738;3000;12000;12268;12275;25000;34000;16000;37000;37000;37000;40000;40000
-124;'434;Libya;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;68;68;0;0;0;0;0;0;0;0;0;1056;1056;1056;1056;50;78;388;74;74;861;7;270;270;270;270;194;242;8;120;133
-124;'434;Libya;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;6;0;0;0;0;0;0;0;0;0;117;117;117;117;15;24;68;21;21;197;36;26;26;26;26;70;312;7;141;27
-124;'434;Libya;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2552;2552;2552;2552;12645;12443;12671;3812;2994;12275;12275;12545;24530;33601;15735;35836;14838;15130;36549;63698
-124;'434;Libya;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;253;253;253;2044;1738;1869;653;735;2171;2171;1486;3395;4643;2702;4859;1947;3929;9075;9048
-124;'434;Libya;1876;Paper and paperboard;5510;Production;t;2300;2400;2700;2900;3000;3500;4400;4000;4200;4400;4700;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-124;'434;Libya;1876;Paper and paperboard;5610;Import quantity;t;2500;2200;1400;2800;2500;3600;3400;4500;5800;4100;4800;8200;12900;16900;16400;16800;13200;8700;8700;8700;15100;15400;15400;15400;15800;28314;14178;18557;19533;13247;13247;11728;30300;9050;6000;8700;8700;25200;23800;23800;11100;11100;11100;35469;35469;35469;24039;38395;37560;50533;22134;20073;38664;26675;20143;23698;23502;23623;33873;31136;49625;39797;73948
-124;'434;Libya;1876;Paper and paperboard;5622;Import value;1000 USD;758;665;347;884;844;1255;1060;1411;1692;1371;1717;2938;5896;12116;11808;12116;9079;6794;8192;9592;19145;17758;17758;17758;18560;25441;15183;19400;21094;15103;15103;11239;17900;11009;6680;8484;8484;18290;16884;16884;7410;7410;7410;24672;24672;24672;18937;53922;48282;61553;28706;20626;34003;41385;18720;24458;23569;32268;38270;40933;68243;68494;114512
-124;'434;Libya;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;4;4;0;0;0;0;0;1;1;1;1;113;152;922;687;687;609;684;676;676;984;984;984;984;192;169;350
-124;'434;Libya;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3;3;0;0;0;0;0;1;1;1;1;52;65;174;182;182;164;177;164;164;425;425;425;425;217;146;209
-124;'434;Libya;2042;Graphic papers;5610;Import quantity;t;200;1000;900;900;1300;1800;1100;1700;3700;2200;2800;5200;7000;9300;8800;9200;9100;4300;4300;4300;12000;9000;9000;9000;9400;21914;7778;12157;13133;6847;6847;2128;11300;4850;2600;1700;1700;9000;13000;13000;5200;5200;5200;13113;13113;13113;6700;8721;16860;20795;12132;14555;18084;9435;3211;6173;6035;9263;11848;8915;16610;7262;21801
-124;'434;Libya;2042;Graphic papers;5622;Import value;1000 USD;44;279;255;286;419;557;333;558;1023;761;978;2108;3653;7787;7479;7787;6749;3692;3692;3692;10829;8658;8658;8658;9460;16341;6083;10300;11994;6003;6003;2338;7616;4759;3511;1995;1995;7665;9046;9046;3791;3791;3791;9999;9999;9999;5241;9251;13305;18129;10260;13891;15259;8750;3525;5927;5411;10766;11524;8672;16317;11171;26448
-124;'434;Libya;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;111;144;10;38;38;48;48;48;48;48;48;48;48;59;59;47
-124;'434;Libya;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;46;55;4;10;10;7;7;7;7;7;7;7;7;12;12;6
-124;'434;Libya;1671;Newsprint;5610;Import quantity;t;200;200;200;400;100;100;200;300;1300;800;600;900;900;600;100;500;1400;800;800;800;7100;6300;6300;6300;2000;2697;1469;3247;1625;865;865;;;181;900;500;500;500;3600;3600;1300;1300;1300;1233;1233;1233;1233;725;1079;2300;2300;49;61;4;94;94;73;641;29;372;31;246;449
-124;'434;Libya;1671;Newsprint;5622;Import value;1000 USD;44;40;45;98;32;24;40;74;283;216;182;311;399;368;60;368;758;581;581;581;5749;5861;5861;5861;1860;1308;718;2018;972;516;516;;;187;1005;663;663;663;1735;1735;836;836;836;629;629;629;629;363;674;1225;1225;27;74;3;57;57;36;1769;26;150;20;239;330
-124;'434;Libya;1674;Printing and writing papers;5610;Import quantity;t;;800;700;500;1200;1700;900;1400;2400;1400;2200;4300;6100;8700;8700;8700;7700;3500;3500;3500;4900;2700;2700;2700;7400;19217;6309;8910;11508;5982;5982;2128;11300;4669;1700;1200;1200;8500;9400;9400;3900;3900;3900;11880;11880;11880;5467;7996;15781;18495;9832;14506;18023;9431;3117;6079;5962;8622;11819;8543;16579;7016;21352
-124;'434;Libya;1674;Printing and writing papers;5622;Import value;1000 USD;;239;210;188;387;533;293;484;740;545;796;1797;3254;7419;7419;7419;5991;3111;3111;3111;5080;2797;2797;2797;7600;15033;5365;8282;11022;5487;5487;2338;7616;4572;2506;1332;1332;7002;7311;7311;2955;2955;2955;9370;9370;9370;4612;8888;12631;16904;9035;13864;15185;8747;3468;5870;5375;8997;11498;8522;16297;10932;26118
-124;'434;Libya;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;111;144;10;38;38;48;48;48;48;48;48;48;48;59;59;47
-124;'434;Libya;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;46;55;4;10;10;7;7;7;7;7;7;7;7;12;12;6
-124;'434;Libya;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;964;964;400;400;400;344;344;344;344;474;252;190;82;740;955;374;188;324;175;175;362;272;93;98;193
-124;'434;Libya;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656;685;685;277;277;277;270;270;270;270;372;307;246;127;779;824;679;446;473;357;357;721;366;317;596;426
-124;'434;Libya;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6756;7472;7472;3100;3100;3100;9513;9513;9513;3100;5401;9165;13361;9114;10467;13787;6593;2140;5358;4323;7389;8894;6960;13366;3115;16705
-124;'434;Libya;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5204;5433;5433;2196;2196;2196;7505;7505;7505;2747;6348;7027;11536;8233;9824;11359;5770;2130;4841;3853;7424;8057;6649;12219;4357;19331
-124;'434;Libya;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;12;12;0
-124;'434;Libya;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;6;6;0
-124;'434;Libya;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;964;964;400;400;400;2023;2023;2023;2023;2121;6364;4944;636;3299;3281;2464;789;397;1464;1058;2563;1311;3120;3803;4454
-124;'434;Libya;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;1193;1193;482;482;482;1595;1595;1595;1595;2168;5297;5122;675;3261;3002;2298;892;556;1165;1216;2720;1507;3761;5979;6361
-124;'434;Libya;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;143;9;37;37;47;47;47;47;47;47;47;47;47;47;47
-124;'434;Libya;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;54;3;9;9;6;6;6;6;6;6;6;6;6;6;6
-124;'434;Libya;1675;Other paper and paperboard;5510;Production;t;2300;2400;2700;2900;3000;3500;4400;4000;4200;4400;4700;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-124;'434;Libya;1675;Other paper and paperboard;5610;Import quantity;t;2300;1200;500;1900;1200;1800;2300;2800;2100;1900;2000;3000;5900;7600;7600;7600;4100;4400;4400;4400;3100;6400;6400;6400;6400;6400;6400;6400;6400;6400;6400;9600;19000;4200;3400;7000;7000;16200;10800;10800;5900;5900;5900;22356;22356;22356;17339;29674;20700;29738;10002;5518;20580;17240;16932;17525;17467;14360;22025;22221;33015;32535;52147
-124;'434;Libya;1675;Other paper and paperboard;5622;Import value;1000 USD;714;386;92;598;425;698;727;853;669;610;739;830;2243;4329;4329;4329;2330;3102;4500;5900;8316;9100;9100;9100;9100;9100;9100;9100;9100;9100;9100;8901;10284;6250;3169;6489;6489;10625;7838;7838;3619;3619;3619;14673;14673;14673;13696;44671;34977;43424;18446;6735;18744;32635;15195;18531;18158;21502;26746;32261;51926;57323;88064
-124;'434;Libya;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;2;8;912;649;649;561;636;628;628;936;936;936;936;133;110;303
-124;'434;Libya;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;6;10;170;172;172;157;170;157;157;418;418;418;418;205;134;203
-124;'434;Libya;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;837;837;837;837;1393;1515;2083;1047;916;4419;1917;5164;5414;5087;1367;5958;5408;7688;8660;12419
-124;'434;Libya;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;921;921;921;921;2747;2411;3049;1616;1489;6218;2988;7049;6836;5960;1839;7368;6988;8958;14597;18268
-124;'434;Libya;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;28;28;28;28;20;20;20;20;20;20;20;20;20
-124;'434;Libya;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;41;41;41;41;28;28;28;28;28;28;28;28;28
-124;'434;Libya;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;5400;5400;20275;20275;20275;15258;21806;17746;24466;8275;3388;15031;13550;11583;11492;12342;12909;15902;16664;25210;23768;39031
-124;'434;Libya;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3049;3049;3049;12570;12570;12570;11593;32463;29633;31059;14798;3141;11157;22647;7624;9664;11899;18821;16908;23247;41607;41348;63243
-124;'434;Libya;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;422;137;137;49;124;124;124;432;432;432;432;83;60;253
-124;'434;Libya;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;10;70;37;37;22;35;35;35;296;296;296;296;90;19;88
-124;'434;Libya;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;2900;3000;3500;4400;4000;4200;4400;4700;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;4800;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;2300;1200;500;1900;1200;1800;2300;2800;1000;1100;1200;1100;4000;5700;5700;5700;2200;4000;4000;4000;1600;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;5000;5000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;714;386;92;598;425;698;727;853;357;352;480;341;1754;3840;3840;3840;1841;2470;3600;4800;2925;3219;3219;3219;3219;3219;3219;3219;3219;3219;3219;5300;5300;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;
-124;'434;Libya;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;2400;545;545;545;545;1453;1705;2707;1131;212;2072;991;829;87;3047;4086;5844;4953;9487;8499;12500
-124;'434;Libya;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791;791;791;338;338;338;338;1053;1270;1437;515;141;1356;649;674;110;1540;2474;2720;2310;6905;6941;6684
-124;'434;Libya;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;178
-124;'434;Libya;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;71
-124;'434;Libya;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;800;800;4795;4795;4795;4795;5803;9694;7559;4695;1294;5460;9972;3729;2987;4102;7173;6576;7794;11426;11376;20243
-124;'434;Libya;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;952;952;952;2973;2973;2973;2973;14176;23941;18625;10875;962;4143;18393;2471;3809;7415;13096;11333;17829;30155;29154;47524
-124;'434;Libya;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;43;24;50
-124;'434;Libya;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;74;5;14
-124;'434;Libya;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;13317;13317;13317;8300;14474;6241;14059;2411;1855;7243;2424;6866;8325;5061;1489;3424;3868;4191;3657;5897
-124;'434;Libya;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1306;1306;1306;8256;8256;8256;7279;17000;4324;10855;3373;2016;5201;3420;4346;5658;2837;3130;2809;3072;4456;4915;8385
-124;'434;Libya;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;7;7;7;7;82;82;82;390;390;390;390;4;0;2
-124;'434;Libya;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;4;4;4;4;17;17;17;278;278;278;278;2;0;0
-124;'434;Libya;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618;1618;1618;1618;76;106;141;38;27;256;163;159;93;132;161;58;49;106;236;391
-124;'434;Libya;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;1003;1003;1003;234;98;142;35;22;457;185;133;87;107;121;46;36;91;338;650
-124;'434;Libya;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;111;111;23;23;23;23;23;23;23;23;23;23;23
-124;'434;Libya;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;18;18;3;3;3;3;3;3;3;3;3;3;3
-124;'434;Libya;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000
-124;'434;Libya;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;1100;800;800;1900;1900;1900;1900;1900;1900;400;400;400;1500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;4600;14000;4200;3400;7000;7000;16200;10800;10800;500;500;500;1244;1244;1244;1244;6475;1439;3189;680;1214;1130;1773;185;619;38;84;165;149;117;107;697
-124;'434;Libya;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;312;258;259;489;489;489;489;489;489;632;900;1100;5391;5881;5881;5881;5881;5881;5881;5881;5881;5881;5881;3601;4984;6250;3169;6489;6489;10625;7838;7838;570;570;570;1182;1182;1182;1182;9461;2933;9316;2032;2105;1369;7000;522;2031;299;842;2470;2026;1361;1378;6553
-124;'434;Libya;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;0;484;484;484;484;484;484;484;484;484;484;484;30;30;30
-124;'434;Libya;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;94;94;94;94;94;94;94;94;94;94;94;87;87;87
-124;'434;Libya;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89362;134528;232853;166853;189405;211523;232851
-124;'434;Libya;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;163;95;53;216;294;95
-124;'434;Libya;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;30;766;565;1117;1806;1047
-124;'434;Libya;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35
-124;'434;Libya;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;10;512;249;248;467;434
-124;'434;Libya;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33
-124;'434;Libya;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;254;316;869;1339;613
-124;'434;Libya;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2
-124;'434;Libya;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;190;848;320;1372;1397;1322
-124;'434;Libya;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;0;132;132;14
-124;'434;Libya;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;293;327;1870;2295;1857;1598
-124;'434;Libya;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;3;0;0;0
-124;'434;Libya;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3158;3873;11470;14191;21694;26829;31191
-124;'434;Libya;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;77;9;0;8;8;4
-124;'434;Libya;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92
-124;'434;Libya;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115
-124;'434;Libya;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84242;126868;216035;142780;155244;168009;187767
-124;'434;Libya;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;9;7;6;26;20;21
-124;'434;Libya;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1392;22;239;1290
-124;'434;Libya;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565;3274;3407;5735;7661;11386;8636
-124;'434;Libya;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;9;9;15;99;21
-124;'434;Libya;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171730;209869;131733;182328;184628;168454;217550
-124;'434;Libya;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;161;171;471;313;428;430
-124;'434;Libya;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;151;123;60;37;117;59
-124;'434;Libya;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51
-124;'434;Libya;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2918;4434;5274;6386;12568;7172;11298
-124;'434;Libya;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;9;9;9;9;10;29
-124;'434;Libya;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97994;110617;12310;13593;14019;15446;18654
-124;'434;Libya;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;0;0;4;3
-124;'434;Libya;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46099;40566;79488;130854;121024;95139;121304
-124;'434;Libya;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;93;102;48;99;53;40
-124;'434;Libya;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24689;54101;34538;31435;36980;50580;66235
-124;'434;Libya;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;9;363;154;310;307
-125;'438;Liechtenstein;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;11000;21000;18000;13000;13000;13000;7500;24167;22167;22167;22167;22167;22167;25000;25000;28250;25000;25000;26000;23333;19164;20812;8065;7943;8560;12225;8377;7130;7130;7130;7130
-125;'438;Liechtenstein;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;19000;14000;9000;9000;9000;3333;19000;17000;17000;17000;17000;17000;17500;17500;14150;13000;13000;13000;12000;10372;12408;5413;4230;5793;9465;5699;4958;4958;4958;4958
-125;'438;Liechtenstein;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;2000;4000;4000;4000;4000;4167;5167;5167;5167;5167;5167;5167;7500;7500;14100;12000;12000;13000;11333;8792;8404;2652;3713;2767;2760;2678;2172;2172;2172;2172
-125;'438;Liechtenstein;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4167;4167;4167;4167;4167;4167;4167;13000;13000;14700;15000;16000;18000;16136;12669;14079;3697;4275;3682;4144;3779;2448;2448;2448;2448
-125;'438;Liechtenstein;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;1000;0;0;0;0;0;0;0;9000;9000;4800;4000;5000;6000;5636;4147;5783;1178;1301;1122;1520;1317;793;793;793;793
-125;'438;Liechtenstein;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;3000;3000;4167;4167;4167;4167;4167;4167;4167;4000;4000;9900;11000;11000;12000;10500;8522;8296;2519;2974;2560;2624;2462;1655;1655;1655;1655
-125;'438;Liechtenstein;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;11000;21000;14000;9000;9000;9000;3333;20000;18000;18000;18000;18000;18000;12000;12000;13550;10000;9000;8000;7197;6495;6733;4368;3668;4878;8081;4598;4682;4682;4682;4682
-125;'438;Liechtenstein;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;19000;12000;8000;8000;8000;3333;19000;17000;17000;17000;17000;17000;8500;8500;9350;9000;8000;7000;6364;6225;6625;4235;2929;4671;7945;4382;4165;4165;4165;4165
-125;'438;Liechtenstein;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;2000;2000;1000;1000;1000;0;1000;1000;1000;1000;1000;1000;3500;3500;4200;1000;1000;1000;833;270;108;133;739;207;136;216;517;517;517;517
-125;'438;Liechtenstein;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;11000;21000;14000;9000;9000;9000;3333;20000;18000;18000;18000;18000;18000;11000;11000;12450;10000;9000;8000;7197;6495;6733;4368;3668;4878;8081;4598;4682;4682;4682;4682
-125;'438;Liechtenstein;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;19000;12000;8000;8000;8000;3333;19000;17000;17000;17000;17000;17000;7500;7500;8250;9000;8000;7000;6364;6225;6625;4235;2929;4671;7945;4382;4165;4165;4165;4165
-125;'438;Liechtenstein;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;2000;2000;1000;1000;1000;0;1000;1000;1000;1000;1000;1000;3500;3500;4200;1000;1000;1000;833;270;108;133;739;207;136;216;517;517;517;517
-125;'438;Liechtenstein;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;1000;1100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;1000;1100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;15000;16000;19000;19000;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;15000;16000;19000;19000;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;4000;4000;8000;8000;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7000;4000;4000;7000;7000;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;1000;1000;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1500;1500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;0;0;0;0;;;;;;;
-125;'438;Liechtenstein;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-125;'438;Liechtenstein;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-125;'438;Liechtenstein;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-125;'438;Liechtenstein;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-125;'438;Liechtenstein;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-125;'438;Liechtenstein;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274323.84;1493455;1463203;1473088;2083347;2131215;1595645
-126;'440;Lithuania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2898873.39;3331359;3342184;3393764;4550693;4833792;4121744
-126;'440;Lithuania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;7401;30447;63577;63837;116706;121389;112987;126417;139354;155241;215276;330693;408380;451947;622073;605556;391858;504055;635445;661306;705026;811972;678838;729268;808822.82;955682;926611;925748;1391562;1369930;979892
-126;'440;Lithuania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464;30147;79507;178344;192033;195026;166617;172249;200703;207699;241210;310764;337458;380041;391875;542182;475111;326876;494431;599559;585546;695272;700556;559540;587824;643859.95;794820;749818;744174;1081312;1198928;930308
-126;'440;Lithuania;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3160000;4508000;3992000;5960000;5540000;5149000;4879000;4924000;5500000;5700000;6115000;6275000;6120000;6045000;5870000;6195000;5594381;5459531;7096860;7004000;6921000;7053000;7351000;6414000;6747000;6795000;6982000;6688000;6366000;6614000;6968000;7366000
-126;'440;Lithuania;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;951;1600;16200;19100;101900;90100;77861;60570;96300;103700;78000;223559;287906;210097;394599;235616;208547;332142;272055;310654;383973;379617;404945;539142;277576;241355;265224;303423;346123;361694;353545
-126;'440;Lithuania;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;56;591;606;4270;4473;4416;4838;4751;4938;5393;13745;17645;14741;30891;17846;11182;20433;18737;20134;23715;26270;19423;22539;16853.12;18176;16980;17318;29583;33534;35874
-126;'440;Lithuania;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285478;285447;889500;1769900;956600;767200;793200;939748;1202850;1324700;1436500;1453000;1219622;1173919;1143515;1718247;1234112;776253;1441955;1989937;1593343;2044876;1943188;1620910;1638408;1731255;2245847;2111030;2092365;1803624;1781898;1792150
-126;'440;Lithuania;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12366;10374;21311;53509;23194;21863;28303;32844;40464;42068;47283;55579;56384;60286;59134;153586;111711;50808;103654;179967;123437;183641;180956;114264;116462;137580.94;208817;175084;144421;193157;220197;208229
-126;'440;Lithuania;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2356000;3597000;2977000;4600000;4365000;3140000;2279000;2260000;2880000;2930000;3370000;3570000;3460000;3470000;2980000;3480000;2709211;2734550;3800940;3884000;3642000;3561000;3716000;3452000;3747000;3804000;3689000;3651000;3570000;3713000;4178000;4284000
-126;'440;Lithuania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132814;98155;136521;150121;173099;188783;211830
-126;'440;Lithuania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365.9;7904;9618;9338;16042;17182;21305
-126;'440;Lithuania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232754;1578458;1461101;1334983;1182442;997923;1070712
-126;'440;Lithuania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93578.25;138727;116456;85836;118500;99463;91173
-126;'440;Lithuania;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804000;911000;1015000;1360000;1175000;2009000;2600000;2664000;2620000;2770000;2745000;2705000;2660000;2575000;2890000;2715000;2885170;2724981;3295920;3120000;3279000;3492000;3635000;2962000;3000000;2991000;3293000;3037000;2796000;2901000;2790000;3082000
-126;'440;Lithuania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144762;143200;128703;153302;173024;172911;141715
-126;'440;Lithuania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8487.22;10272;7362;7980;13541;16352;14569
-126;'440;Lithuania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498501;667389;649929;757382;621182;783975;721438
-126;'440;Lithuania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44002.69;70090;58628;58585;74657;120734;117056
-126;'440;Lithuania;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376000;1780000;1736000;1090000;1230000;1149000;1170000;1124000;1450000;1480000;1295000;1320000;1260000;1130000;1230000;1305000;1381805;1782809;1942998;1658000;2200000;2431000;2316000;2110000;2085000;2015000;1829000;1771000;1994000;1885000;1421000;2172000
-126;'440;Lithuania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;600;2900;3800;2437;560;140;100;1000;2019;29720;12736;81572;80145;45203;51126;13912;20006;23618;38900;33410;46508;15901;26361;39058;42711;70435;80671;18777
-126;'440;Lithuania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;8;53;81;22;5;10;7;32;51;500;1318;3012;2892;1437;1570;569;1101;1513;2270;1468;1567;1079;2094;2797;3370;5882;8596;3656
-126;'440;Lithuania;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;447;1500;700;3800;2200;800;1524;3150;10750;16500;75000;42049;43413;82733;47467;62688;103121;112465;145957;129170;235600;227124;214590;164998;172562;217802;221476;318460;286740;263467;286343
-126;'440;Lithuania;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;96;23;49;109;43;140;173;364;856;4017;2899;3191;6640;4828;7802;10869;12290;19195;14047;24619;25627;21177;18382;17679;26856;25286;32353;50333;64754;66134
-126;'440;Lithuania;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1028000;1330000;1297000;815000;920000;660000;360000;350000;450000;670000;620000;630000;600000;530000;510000;540000;434317;611517;647666;552000;710000;690000;612000;739000;754000;721000;446000;533000;671000;598000;352000;613000
-126;'440;Lithuania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;4170;3506;4868;4844;7043;4574
-126;'440;Lithuania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;317;198;250;539;1428;719
-126;'440;Lithuania;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82703;76286;62374;110560;60418;56867;69589
-126;'440;Lithuania;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4270;4425;2905;4146;5287;8148;7076
-126;'440;Lithuania;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348000;450000;439000;275000;310000;489000;810000;774000;1000000;810000;675000;690000;660000;600000;720000;765000;947488;1171292;1295332;1106000;1490000;1741000;1704000;1371000;1331000;1294000;1383000;1238000;1323000;1287000;1069000;1559000
-126;'440;Lithuania;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15415;22191;35552;37843;65591;73628;14203
-126;'440;Lithuania;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;1777;2599;3120;5343;7168;2937
-126;'440;Lithuania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89859;141516;159102;207900;226322;206600;216754
-126;'440;Lithuania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13409;22431;22381;28207;45046;56606;59058
-126;'440;Lithuania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;600;2900;3800;2437;560;140;100;1000;2019;29720;12736;81572;80145;45203;51126;13912;20006;23618;38900;33410;46508;;;;;;;
-126;'440;Lithuania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;8;53;81;22;5;10;7;32;51;500;1318;3012;2892;1437;1570;569;1101;1513;2270;1468;1567;;;;;;;
-126;'440;Lithuania;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;447;1500;700;3800;2200;800;1524;3150;10750;16500;75000;42049;43413;82733;47467;62688;103121;112465;145957;129170;235600;227124;214590;164998;;;;;;;
-126;'440;Lithuania;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;96;23;49;109;43;140;173;364;856;4017;2899;3191;6640;4828;7802;10869;12290;19195;14047;24619;25627;21177;18382;;;;;;;
-126;'440;Lithuania;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1784000;2728000;2256000;4870000;4310000;4000000;3709000;3800000;4050000;4220000;4820000;4955000;4860000;4915000;4640000;4890000;4212576;3676722;5153862;5346000;4721000;4622000;5035000;4304000;4662000;4780000;5153000;4917000;4372000;4729000;5547000;5194000
-126;'440;Lithuania;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;951;1600;15200;18500;99000;86300;75424;60010;96160;103600;77000;221540;258186;197361;313027;155471;163344;281016;258143;290648;360355;340717;371535;492634;261675;214994;226166;260712;275688;281023;334768
-126;'440;Lithuania;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;56;574;598;4217;4392;4394;4833;4741;4931;5361;13694;17145;13423;27879;14954;9745;18863;18168;19033;22202;24000;17955;20972;15774.12;16082;14183;13948;23701;24938;32218
-126;'440;Lithuania;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285456;285000;888000;1769200;952800;765000;792400;938224;1199700;1313950;1420000;1378000;1177573;1130506;1060782;1670780;1171424;673132;1329490;1843980;1464173;1809276;1716064;1406320;1473410;1558693;2028045;1889554;1773905;1516884;1518431;1505807
-126;'440;Lithuania;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12365;10362;21215;53486;23145;21754;28260;32704;40291;41704;46427;51562;53485;57095;52494;148758;103909;39939;91364;160772;109390;159022;155329;93087;98080;119901.94;181961;149798;112068;142824;155443;142095
-126;'440;Lithuania;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1328000;2267000;1680000;3785000;3445000;2480000;1919000;1910000;2430000;2260000;2750000;2940000;2860000;2940000;2470000;2940000;2274894;2123033;3153274;3332000;2932000;2871000;3104000;2713000;2993000;3083000;3243000;3118000;2899000;3115000;3826000;3671000
-126;'440;Lithuania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;951;1600;1700;3600;89000;70400;59087;34460;68290;65900;53000;144564;109824;57299;141957;55239;96790;176381;74479;72940;166096;134888;124701;185826;132328;93985;133015;145253;168255;181740;207256
-126;'440;Lithuania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;56;65;132;3606;3342;2769;2119;1850;1853;2448;5459;4814;3384;11550;4558;5163;9739;5033;4690;10553;10635;7410;10029;8319.9;7587;9420;9088;15503;15754;20586
-126;'440;Lithuania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128270;145000;505000;1374800;722800;428000;372900;465900;676710;780190;887000;877000;757325;611305;480982;865396;558118;399592;851152;1172059;935157;1338235;1202588;946919;1011199;1150051;1502172;1398727;1224423;1122024;941056;1001123
-126;'440;Lithuania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5186;5139;11975;39686;16799;11522;13633;17195;24248;26057;30459;32495;34729;29675;23336;76307;47393;24708;59861;105003;70521;122215;110557;63006;69574;89308.25;134302;113551;81690;113213;91315;84097
-126;'440;Lithuania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;951;1600;1700;3600;89000;70400;59087;34460;68290;65900;53000;144564;109824;57299;141957;55239;96790;176381;74479;72940;166096;134888;124701;185826;132328;93985;133015;145253;168255;181740;207256
-126;'440;Lithuania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;56;65;132;3606;3342;2769;2119;1850;1853;2448;5459;4814;3384;11550;4558;5163;9739;5033;4690;10553;10635;7410;10029;8319.9;7587;9420;9088;15503;15754;20586
-126;'440;Lithuania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128270;145000;505000;1374800;722800;428000;372900;465900;676710;780190;887000;877000;757325;611305;480982;865396;558118;399592;851152;1172059;935157;1338235;1202588;946919;1011199;1150051;1502172;1398727;1224423;1122024;941056;1001123
-126;'440;Lithuania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5186;5139;11975;39686;16799;11522;13633;17195;24248;26057;30459;32495;34729;29675;23336;76307;47393;24708;59861;105003;70521;122215;110557;63006;69574;89308.25;134302;113551;81690;113213;91315;84097
-126;'440;Lithuania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456000;461000;576000;1085000;865000;1520000;1790000;1890000;1620000;1960000;2070000;2015000;2000000;1975000;2170000;1950000;1937682;1553689;2000588;2014000;1789000;1751000;1931000;1591000;1669000;1697000;1910000;1799000;1473000;1614000;1721000;1523000
-126;'440;Lithuania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500;14900;10000;15900;16337;25550;27870;37700;24000;76976;148362;140062;171070;100232;66554;104635;183664;217708;194259;205829;246834;306808;129347;121009;93151;115459;107433;99283;127512
-126;'440;Lithuania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;466;611;1050;1625;2714;2891;3078;2913;8235;12331;10039;16329;10396;4582;9124;13135;14343;11649;13365;10545;10943;7454.22;8495;4763;4860;8198;9184;11632
-126;'440;Lithuania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157186;140000;383000;394400;230000;337000;419500;472324;522990;533760;533000;501000;420248;519201;579800;805384;613306;273540;478338;671921;529016;471041;513476;459401;462211;408642;525873;490827;549482;394860;577375;504684
-126;'440;Lithuania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7179;5223;9240;13800;6346;10232;14627;15509;16043;15647;15968;19067;18756;27420;29158;72451;56516;15231;31503;55769;38869;36807;44772;30081;28506;30593.69;47659;36247;30378;29611;64128;57998
-126;'440;Lithuania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;7;5;0;0;0;8;2;3;5;34;0;0;0;2;6;22;41;182;103
-126;'440;Lithuania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;0;0;0;5;5;0;0;0;12;2;4;8;55;0;0;0.6;1;2;20;52;157;35
-126;'440;Lithuania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0
-126;'440;Lithuania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0
-126;'440;Lithuania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500;14900;10000;15900;16337;25550;27870;37700;24000;76976;148355;140057;171070;100232;66554;104627;183662;217705;194254;205795;246834;306808;129347;121007;93145;115437;107392;99101;127409
-126;'440;Lithuania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;466;611;1050;1625;2713;2890;3078;2913;8235;12326;10034;16329;10396;4582;9112;13133;14339;11641;13310;10545;10943;7453.62;8494;4761;4840;8146;9027;11597
-126;'440;Lithuania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157186;140000;383000;394400;230000;337000;419500;472324;522990;533760;533000;501000;420248;519201;579800;805384;613306;273540;478338;671921;529016;471041;513476;459401;462211;408642;525871;490827;549482;394860;577375;504684
-126;'440;Lithuania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7179;5223;9240;13800;6346;10232;14627;15509;16043;15647;15968;19067;18756;27420;29158;72451;56516;15231;31503;55769;38869;36807;44772;30081;28506;30593.69;47657;36247;30378;29611;64128;57998
-126;'440;Lithuania;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1006000;2179000;1272000;2320000;3030000;2420000;2429000;2535000;2900000;2700000;3220000;3370000;3420000;3520000;3285000;3330000;2881272;2741638;3660066;3618000;3396000;3421000;3824000;3177000;3494000;3584000;3700000;3547000;3032000;3425000;4052000;3780000
-126;'440;Lithuania;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880000;1918000;1113000;1980000;2570000;1560000;1359000;1375000;1900000;1480000;1870000;2015000;2035000;2150000;1810000;2055000;1665060;1680033;2315118;2347000;2126000;2201000;2415000;2061000;2365000;2435000;2491000;2392000;2167000;2415000;2995000;2926000
-126;'440;Lithuania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126000;261000;159000;340000;460000;860000;1070000;1160000;1000000;1220000;1350000;1355000;1385000;1370000;1475000;1275000;1216212;1061605;1344948;1271000;1270000;1220000;1409000;1116000;1129000;1149000;1209000;1155000;865000;1010000;1057000;854000
-126;'440;Lithuania;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1240000;1240000;1100000;1490000;1580000;1570000;1430000;1390000;1355000;1560000;1331304;935084;1493796;1728000;1325000;1201000;1211000;1127000;1168000;1196000;1453000;1370000;1340000;1304000;1495000;1414000
-126;'440;Lithuania;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525000;520000;500000;770000;870000;915000;820000;790000;660000;885000;609834;443000;838156;985000;806000;670000;689000;652000;628000;648000;752000;726000;732000;700000;831000;745000
-126;'440;Lithuania;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715000;720000;600000;720000;710000;655000;610000;600000;695000;675000;721470;492084;655640;743000;519000;531000;522000;475000;540000;548000;701000;644000;608000;604000;664000;669000
-126;'440;Lithuania;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585000;313000;740000;2390000;1180000;1530000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294000;160000;372000;1675000;790000;880000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291000;153000;368000;715000;390000;650000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193000;236000;244000;160000;100000;50000;40000;25000;50000;30000;20000;15000;10000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154000;189000;195000;130000;85000;40000;35000;15000;30000;10000;10000;10000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;47000;49000;30000;15000;10000;5000;10000;20000;20000;10000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;190;200;500;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;623;600;600;680;700;700;476;500;408;73;0;0
-126;'440;Lithuania;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;200;0;0;0;100;189;140;40;200;0;491;561;914;1408;1848;2229;2034;1896;1385;1855;4076;6742;6841;6522;8352;6199;6434;7161;4935;6949
-126;'440;Lithuania;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;47;0;0;0;31;61;47;13;51;97;140;204;490;795;1286;1246;925;1126;868;1337;2867;3835;3449;2851.87;3543;3385;3367;4406;4156;5909
-126;'440;Lithuania;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;39;0;0;0;0;140;180;190;400;1000;627;610;571;599;582;1209;1306;1161;1123;1199;1738;4177;5771;3811;3254;2499;3218;2674;1242;1760
-126;'440;Lithuania;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;0;0;0;1;63;148;66;150;241;263;297;321;359;381;863;1072;1581;1796;1954;2300;3454;3269;2526.34;2522;2132;2427;2297;1301;1701
-126;'440;Lithuania;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500000;1500000;1600000;1500000;1500000;2000000;2000000;2150000;2000000;2070000;1612000;1518000;1684000;1620000;1820000;1770000;2075000;1936000;1998000;1970000;1934000;1917000;1663000;2008000;2003000;1884000
-126;'440;Lithuania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;1797;840;2120;560;3000;54040;231205;313951;560275;664430;433078;596883;664484;394854;384517;565230;414902;820300;1189082;1366340;1635789;1248154;1202934;534422;365134
-126;'440;Lithuania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;130;66;97;93;189;1078;4789;8853;21480;28538;18695;20685;22241;11759;13557;19267;9508;16030;23792.01;36855;37828;26487;31808;38604;31967
-126;'440;Lithuania;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;3946;55310;89900;169000;224000;230071;312882;343027;365259;411138;523396;599042;227221;220338;170881;173437;222118;159752;273464;223726;193933;394999;313559;344422;308955
-126;'440;Lithuania;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;137;1121;2411;5661;10556;15772;22698;37138;39759;48671;58017;59670;14649;9691;8455;8667;8070;5899;10660.08;11805;10406;14979;17046;35039;30514
-126;'440;Lithuania;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;400000;500000;500000;700000;750000;800000;750000;800000;887000;835000;926000;900000;1090000;1062000;1245000;1162000;1198000;1182000;1160000;1150000;998000;1205000;1202000;1130000
-126;'440;Lithuania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200;271;230;300;270;0;31433;160688;205203;369905;492226;217701;385691;494189;208854;183460;344019;291334;676961;1032362;1221829;1431023;1050839;1032412;347769;206175
-126;'440;Lithuania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;37;26;34;44;57;555;2370;3713;11523;17613;6134;9973;16064;5619;6424;10538;5667;12016;18733.38;29464;27908;18308;25583;23042;16445
-126;'440;Lithuania;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3192;0;200;2000;10400;11000;24600;146;51100;67890;131000;154000;120837;118149;52753;109133;81152;68859;174891;200143;175803;125720;115398;146381;75997;189600;143900;103163;297433;238782;304366;267941
-126;'440;Lithuania;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;2;48;253;62;104;5;989;1734;3595;5622;7828;7817;6048;11370;9777;5426;9917;13395;7721;5814;5980;5278;3099;6089.36;6680;5340;10790;13138;30982;27392
-126;'440;Lithuania;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200000;1200000;1200000;1000000;1000000;1300000;1250000;1350000;1250000;1270000;725000;683000;758000;720000;730000;708000;830000;774000;800000;788000;774000;767000;665000;803000;801000;754000
-126;'440;Lithuania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;300;100;100;0;200;1526;610;1820;290;3000;22607;70517;108748;190370;172204;215377;211192;170295;186000;201057;221211;123568;143339;156720;144511;204766;197315;170522;186653;158959
-126;'440;Lithuania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;11;11;9;0;14;93;40;63;49;132;523;2419;5140;9957;10925;12561;10712;6177;6140;7133;8729;3841;4014;5058.62;7391;9920;8179;6225;15562;15522
-126;'440;Lithuania;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;6900;100;400;100;3000;1400;3800;4210;22010;38000;70000;109234;194733;290274;256126;329986;454537;424151;27078;44535;45161;58039;75737;83755;83864;79826;90770;97566;74777;40056;41014
-126;'440;Lithuania;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;65;3;6;4;83;46;132;132;677;2066;4934;7944;14881;31090;28389;38894;52591;49753;1254;1970;2641;2687;2792;2800;4570.73;5125;5066;4189;3908;4057;3122
-126;'440;Lithuania;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149787;127712
-126;'440;Lithuania;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13304;12180
-126;'440;Lithuania;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23185;15184
-126;'440;Lithuania;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376;950
-126;'440;Lithuania;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;30000;30000;30000;30000
-126;'440;Lithuania;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335000;335000;283000;275000;271000;348000;510000;698000;585700;607100;602000;695000
-126;'440;Lithuania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43371;68268;85083;90581;92761;140349;232670;277903;369652;344743;261204;121124
-126;'440;Lithuania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6434;11505;13511;11106;11076;17200.81;34038;39530;45689;42005;48753;26996
-126;'440;Lithuania;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315122;369510;338215;339322;336519;460272;548901;689209;684276;689480;622414;565384
-126;'440;Lithuania;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59166;79708;76370;59791;56716;76353.65;104653;126189;118637;120703;185569;136325
-126;'440;Lithuania;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275000;289000;250000;251000;246000;317000;445000;606000;508500;527100;524000;605000
-126;'440;Lithuania;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39571;58006;72446;83204;85929;117990;195995;241228;276951;201342;195643;80612
-126;'440;Lithuania;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5520;10281;11701;10335;10471;14871.81;29402;34894;37035;25819;40186;20550
-126;'440;Lithuania;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267792;320786;298201;310303;307004;403230;479166;598278;609797;618494;529898;438056
-126;'440;Lithuania;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51532;71634;68344;55303;52487;68871.59;94841;116424;111771;111694;170303;122260
-126;'440;Lithuania;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;46000;33000;24000;25000;31000;65000;92000;77200;80000;78000;90000
-126;'440;Lithuania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;10262;12637;7377;6832;22359;36675;36675;92701;143401;65561;40512
-126;'440;Lithuania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;1224;1810;771;605;2329;4636;4636;8654;16186;8567;6446
-126;'440;Lithuania;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47330;48724;40014;29019;29515;57042;69735;90931;74479;70986;92516;127328
-126;'440;Lithuania;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7634;8074;8026;4488;4229;7482.06;9812;9765;6866;9009;15266;14065
-126;'440;Lithuania;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105000;699000;760000;940000;1450000;1250000;1150000;1150000;1300000;1200000;1300000;1400000;1450000;1445000;1466000;1380000;1109200;1011000;1272000;1260000;1150000;1120000;1345300;1248146;1406000;1330200;1280000;1266000;1038000;1292600;1649000;1554000
-126;'440;Lithuania;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;245;16700;23200;33900;142000;211200;254807;279410;252160;306600;342000;511214;658230;537705;514531;299962;213960;291274;323279;348049;380621;516736;605059;751252;878886;1080198;1251013;1337495;1453946;1057914;560235
-126;'440;Lithuania;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;91;1573;2106;4246;15553;21189;23763;28724;31269;45617;60997;92083;125566;117310;143840;106157;54459;75869;102913;107060;121557;159014;152202;182249;206511.03;252682;250959;263317;467061;364413;187011
-126;'440;Lithuania;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27402;99447;289000;767200;1098000;986400;670300;719003;823040;750370;918400;1015000;922682;912547;803358;666565;429300;432654;555388;583623;620459;634247;735894;818009;932208;943248;1014732;1084006;1212421;1243614;1176589;977341
-126;'440;Lithuania;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4048;9017;32158;83413;114908;111973;87443;101952;108279;104893;140039;176964;184748;200994;189419;193275;134190;97369;137370;161788;153045;164441;196640;186446;208230;215285.8;271828;258598;288450;489109;474062;280075
-126;'440;Lithuania;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;627000;700000;865000;1350000;1130000;900000;850000;1000000;900000;900000;950000;980000;1025000;996000;905000;644200;635000;819000;813000;710000;633000;876300;783000;929000;862400;788000;779000;706000;894100;1326000;1293000
-126;'440;Lithuania;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;91;12700;18700;25900;127000;188600;236959;260230;226280;272700;289000;442129;546669;435103;427070;219780;171871;229025;240454;248124;281683;394685;456707;591988;698401;915281;1085156;1181136;1263083;836949;442859
-126;'440;Lithuania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;19;895;1245;3140;13252;19087;21393;25786;24063;31556;37498;63344;82494;72008;100904;58297;34188;48080;57847;54363;64225;90600;82856;101092;119340.38;167885;177246;196818;371732;246516;121864
-126;'440;Lithuania;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25862;92000;273000;728400;1046000;871000;500700;516993;618730;521210;630100;680000;609246;622342;469621;397436;228411;256410;361423;385342;424138;448109;492544;540174;653862;665976;741567;832532;997079;939996;886135;735136
-126;'440;Lithuania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3343;7773;28463;77564;106199;96877;63800;71779;80345;70209;92059;112425;121466;127730;105517;107376;57915;53504;87501;102922;100203;111887;127859;117727;138848;146273.62;189015;187261;227353;374110;353494;199776
-126;'440;Lithuania;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;72000;60000;75000;100000;120000;250000;300000;300000;300000;400000;450000;470000;420000;470000;475000;465000;376000;453000;447000;440000;487000;469000;465146;477000;467800;492000;487000;332000;398500;323000;261000
-126;'440;Lithuania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;154;4000;4500;8000;15000;22600;17848;19180;25880;33900;53000;69085;111561;102602;87461;80182;42089;62249;82825;99925;98938;122051;148352;159264;180485;164917;165857;156359;190863;220965;117376
-126;'440;Lithuania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;72;678;861;1106;2301;2102;2370;2938;7206;14061;23499;28739;43072;45302;42936;47860;20271;27789;45066;52697;57332;68414;69346;81157;87170.65;84797;73713;66499;95329;117897;65147
-126;'440;Lithuania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1540;7447;16000;38800;52000;115400;169600;202010;204310;229160;288300;335000;313436;290205;333737;269129;200889;176244;193965;198281;196321;186138;243350;277835;278346;277272;273165;251474;215342;303618;290454;242205
-126;'440;Lithuania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;1244;3695;5849;8709;15096;23643;30173;27934;34684;47980;64539;63282;73264;83902;85899;76275;43865;49869;58866;52842;52554;68781;68719;69382;69012.18;82813;71337;61097;114999;120568;80299
-126;'440;Lithuania;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5600;5600;5600;0;3000;1300;900;90;0;0;0;0;0;0;0;7000;51000;67000;90100;83000;86300;75000;69900;79400;72400;73700;66500;80300;83600;83000;72900
-126;'440;Lithuania;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;333;2900;3000;3700;4200;4600;3776;5360;6290;6000;8000;11541;13805;13322;16298;18008;14634;19579;20487;21996;23292;30969;32803;29921;33778;32680;32585;34473;46860;32714;29436
-126;'440;Lithuania;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;714;2830;3770;5300;5391;5645;4735;5328;6691;8621;13984;17920;19645;20817;26364;35113;19737;20909;25650;26457;26812;38105;33650;36006;40799.57;42288;44635;37893;53395;56418;44298
-126;'440;Lithuania;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1568;2300;2500;2000;2400;2200;479;650;300;400;1000;4120;5392;4866;6150;8056;53649;69914;92714;85744;89481;78829;75995;83101;76031;78232;71124;82944;87960;98856;100118
-126;'440;Lithuania;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;578;1897;2704;3148;3060;667;392;479;634;2197;4706;6323;7035;8148;14194;13124;14633;21724;22016;23938;23814;19827;21017;19913.25;23256;21574;20049;26029;37276;41250
-126;'440;Lithuania;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;153000;149200;150800;197300;270300;269100;183100;270200;304800;312400;371000;393000;398000;378000;547000;610400;559900;649000;733500;742000;763075;819610;818231;839984;847400;853500;853800;903100;1189900;1157600;1013400
-126;'440;Lithuania;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1374;767;23200;35200;41400;52000;72400;85785;110020;123160;150910;242000;312849;367319;415966;521959;468644;357967;433551;444510;502762;518079;577171;614216;731153;824313;823003;857563;896188;928358;896441;684888
-126;'440;Lithuania;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;273;6089;10219;14121;16560;20896;19980;20696;23808;30458;48580;80444;97444;124962;185576;177177;104136;121220;153055;166573;179578;207021;171793;181031;210798.52;242686;227749;240111;363096;396353;305360
-126;'440;Lithuania;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40934;42116;84300;102100;149900;208000;173000;139628;210410;233840;191600;218000;183717;165574;127549;175995;199585;163253;241309;184260;220408;273924;166025;211500;268973;198332;148399;144062;149386;234787;224634;336330
-126;'440;Lithuania;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6844;7489;17053;21588;29330;32651;27516;20503;28292;33481;32029;38193;42744;45392;41289;59559;74764;41968;57712;60713;67951;80385;56667;50043;56251;50813.43;45721;41196;43212;79474;92269;113704
-126;'440;Lithuania;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;15000;15200;14500;21000;30000;35700;31500;37600;49200;60000;42000;36000;36000;16000;21000;17800;14900;15000;25000;25700;21400;45110;41361;43500;45700;50700;51300;44500;51100;49800;56000
-126;'440;Lithuania;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;500;10000;4100;6200;3700;7600;7525;9470;9090;11800;23000;29316;29254;35065;47002;34540;21021;34180;47369;47532;51679;65058;66047;76327;78360;82047;81133;82525;104348;111280;69837
-126;'440;Lithuania;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;146;1924;776;1931;1241;1888;2374;2625;2873;3407;5626;12130;13562;16784;30037;22528;9758;17701;29593;27212;31094;40145;30915;29529;34003.79;41873;36763;35778;64817;83182;61680
-126;'440;Lithuania;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7300;10000;20000;18600;21700;19100;17800;21122;26520;33670;33900;43000;30229;18467;14887;12399;9578;7246;6665;8216;7122;7611;7123;7875;14665;13304;8488;9288;10369;13790;24345;22270
-126;'440;Lithuania;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2450;3723;7859;6890;8904;5694;5744;7016;8447;10829;11714;12067;11637;11724;12075;11541;14856;7067;4721;5822;5432;6704;5505;5507;6893;7258.32;6884;6277;5994;15638;26062;20259
-126;'440;Lithuania;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-126;'440;Lithuania;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;492
-126;'440;Lithuania;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;441
-126;'440;Lithuania;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2783
-126;'440;Lithuania;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2111
-126;'440;Lithuania;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149000;90000;75000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1171;197;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;61;3594;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20513;15722;30300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1674;1081;2559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;110000;170000;159100;101200;170300;195200;189400;248000;270000;274000;275000;437000;514800;480000;551000;647000;664000;686475;711000;711870;728184;735000;737000;732700;785000;1060000;1038000;893000
-126;'440;Lithuania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;32000;41700;51400;54355;56240;71260;89690;145000;169210;217720;230910;264744;243148;158402;194889;182214;244169;273803;292984;303024;390348;466089;431585;435032;472660;438469;409510;319872
-126;'440;Lithuania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621;11280;12871;14406;10985;10090;11777;15147;23743;34715;46928;60196;82268;79009;44924;48414;53867;60781;67051;72741;60287;68269;84783.69;88916;78645;87472;113017;124751;99483
-126;'440;Lithuania;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36300;71500;137000;103800;77825;133120;150000;111000;102000;72717;77151;49491;96501;124950;84778;130797;99560;138927;184731;76783;122335;167884;92374;50051;33412;44949;116385;98401;229384
-126;'440;Lithuania;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4431;9408;16853;11978;6893;12308;15500;12714;13463;13731;17925;14847;26610;33288;15534;23825;24965;32241;37719;17653;19770;25915;17474.97;11299;7946;10775;24383;28830;60061
-126;'440;Lithuania;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3146;7200;7540;10310;21000;35589;43860;53429;58553;51407;43681;37880;35701;55674;60069;70103;74646;79344;82864;77316;74912;94105;77558;68625;73518
-126;'440;Lithuania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;773;1468;1441;1978;4722;10759;11659;15227;22303;20869;11181;12707;12966;15271;19225;20025;14814;15704;17556.41;21716;19002;21057;33013;26427;22785
-126;'440;Lithuania;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4000;10400;5008;5843;6635;7635;8001;9881;8301;8136;14506;11393;10827;11122;11167;4771;2798;2601;5540;4955;5989
-126;'440;Lithuania;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;534;2247;1650;1800;3086;5517;2253;3644;3199;2441;4972;3435;2289;2289;2651.04;1529;788;694;3086;2137;1910
-126;'440;Lithuania;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;48000;59000;66300;66300;70300;74300;50400;62300;60400;63000;81000;87000;88000;87000;89000;77800;65000;83000;61500;52300;55200;63500;65000;68300;66700;65800;69800;73600;78800;69800;64400
-126;'440;Lithuania;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;1200;1100;3200;6600;12400;20759;37110;35270;39110;53000;78734;76485;96562;151660;139549;134863;166602;179226;155387;132528;149026;170499;185134;197000;232055;266486;246898;307983;307026;221661
-126;'440;Lithuania;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;571;822;910;2448;4351;5848;6513;7717;9926;14489;22840;25295;32755;50968;54771;38273;42398;56629;63309;62208;74110;65777;67529;74454.63;90181;93339;95804;152249;161993;121412
-126;'440;Lithuania;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13121;16394;34000;47200;56700;51900;51400;40681;50770;50170;46700;69000;70371;64948;57328;60460;57422;63228;93966;68183;66223;67076;70726;70463;75302;81487;85089;98564;91467;99072;96933;78687
-126;'440;Lithuania;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2720;2685;6635;10267;11018;10104;9794;6594;7537;7152;7601;12129;15129;14093;12567;18322;21103;17114;25522;26727;27837;30990;30074;22477;21154;23429.1;26009;26185;25749;36367;35240;31474
-126;'440;Lithuania;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;45000;54000;55100;29400;37800;42200;42000;52000;56000;56000;55000;60000;52200;44000;58000;59800;52300;55200;63500;65000;68300;66700;65800;69800;73600;78800;69800;64400
-126;'440;Lithuania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;900;2200;5900;9200;9700;13160;14020;20000;27024;31289;35492;18743;26643;34760;39251;44904;69505;55328;64980;67819;71921;83513;88560;98657;104659;127872;152000;103000
-126;'440;Lithuania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;475;1347;2703;3619;3186;4876;5701;8706;13718;16860;20482;12859;16782;16649;17724;26013;30655;29711;36945;29613;28991;37284.85;42979;43653;48095;72700;86390;63190
-126;'440;Lithuania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43700;40300;37100;34000;18463;23420;26080;24180;32000;31036;28984;22861;22726;26275;23904;43786;48125;51107;50225;55976;62867;66346;67042;65882;66501;69913;68611;78284;69329
-126;'440;Lithuania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8835;9038;7885;7553;3991;4660;5004;5286;7789;9491;9441;8142;10747;14134;9838;16315;21278;19409;19087;20811;18032;17236;17146.39;18613;17145;18502;22075;24917;25543
-126;'440;Lithuania;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;700;1400;1500;7397;13130;10640;12470;20000;31943;27712;42986;96286;80405;59258;64775;74466;65836;58672;59830;74955;86714;87243;113944;136032;113988;148248;151369;114370
-126;'440;Lithuania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;149;536;501;1537;2362;2054;2947;4450;6964;6749;10026;33715;33412;17407;18612;23417;26488;26411;29267;28620;31650;30309.93;39229;41479;40657;68245;73645;55758
-126;'440;Lithuania;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;800;1083;170;290;570;1000;2635;394;400;2911;5263;7824;10508;12673;13840;14340;7173;5138;7568;13620;18361;31099;19590;28292;17874;8903
-126;'440;Lithuania;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;226;217;112;142;56;107;285;292;467;264;433;2204;2315;2795;3863;4104;7805;10881;6752;3746;3362;5985.16;7107;8789;6779;13685;9868;5540
-126;'440;Lithuania;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;15000;17000;15000;20000;15000;19200;21000;24500;18200;21000;29000;31000;32000;32000;29000;25600;21000;25000;1700;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;200;200;1600;3000;5000;4162;14280;11470;12620;13000;19767;17484;18084;36631;32501;40845;62576;59856;20046;18528;24216;27725;26499;26244;29551;31797;28251;31863;3657;4291
-126;'440;Lithuania;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;121;103;286;565;1147;692;965;787;1278;1333;2158;1686;2247;4394;4577;4217;6062;7199;6166;6086;7898;7544;6888;6859.85;7973;8207;7052;11304;1958;2464
-126;'440;Lithuania;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2383;4397;2100;3100;16000;14400;16600;21135;27180;23800;21950;36000;36700;35570;34067;34823;25884;31500;39672;7385;1276;2511;7577;2458;1388;825;846;964;1964;2169;775;455
-126;'440;Lithuania;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;660;449;1171;1754;2002;2129;2461;2821;2041;2030;4048;5171;4388;3992;5371;4654;4481;5344;1345;623;1022;2511;699;556;297.55;289;251;468;607;455;391
-126;'440;Lithuania;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;33000;42000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10738;11997;31900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2303;2025;6186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;33000;29800;36700;25600;29000;30300;35770;34190;45160;50000;66000;65000;79000;89000;89000;98000;72000;105000;129000;79000;106000;168980;159604;171500;162000;167000;188000;128000;188600;188600;188600
-126;'440;Lithuania;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;309;3903;8900;18700;18000;24700;17321;40050;41830;46360;52000;58308;66166;69233;90415;89580;72619;114838;149009;188769;126843;114578;103546;114376;121987;101767;101034;89035;105550;93587;95751
-126;'440;Lithuania;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;136;949;3689;7834;7654;10060;3746;8031;6435;4265;5016;5481;6400;7105;12528;25837;16863;35518;55787;68656;39425;31306;25740;29584;36110.01;39241;36613;28936;45564;43123;32749
-126;'440;Lithuania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;5254;6100;9400;18600;13100;15400;8465;7653;4980;5330;3000;6882;12366;14185;23859;35912;42638;59669;90098;115752;109385;114011;91787;115601;103367;86944;89009;89977;104622;104540;88090
-126;'440;Lithuania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;1461;672;3501;6085;4959;6280;2795;4057;2346;1359;694;1119;1751;2088;4332;6047;4971;20242;38596;41719;36009;30841;18874;23528;22438.35;17776;16923;14540;26950;22581;10972
-126;'440;Lithuania;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;10000;6800;13700;2600;1000;1300;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;237;2503;3900;13700;12000;16100;5274;7850;8060;4360;2000;2231;1375;2110;2610;21426;18824;24502;49451;86160;42017;27213;22184;33211;33419;36724;46755;43775;46121;41973;31876
-126;'440;Lithuania;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;128;905;3195;7340;7158;9310;2870;3984;2636;974;571;736;975;1549;2526;16637;11273;20509;36249;53548;25619;16459;13444;17527;21119.31;28937;28748;22369;32125;31375;22804
-126;'440;Lithuania;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2200;800;3900;12700;10100;12600;4059;6343;4380;1970;0;67;370;274;535;219;75;14722;34049;40916;31903;23741;11868;13499;9636;5509;11322;11394;10469;3950;253
-126;'440;Lithuania;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;982;182;2826;5543;4635;6141;2389;3918;2194;642;86;173;475;333;861;532;220;11439;25851;29054;22700;16093;7367;7608;6071.44;4760;6649;5435;7307;3798;284
-126;'440;Lithuania;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;10000;6800;13700;2600;1000;1300;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;234;2500;3600;13400;11000;15300;5274;7850;8100;4660;2000;2063;1140;1963;2243;21214;18663;24337;49237;85919;41774;26995;21991;32907;33079;36418;46490;43580;51911;41962;31628
-126;'440;Lithuania;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;126;903;2176;6264;5116;6474;2870;3984;2671;1153;310;363;452;1149;1606;16004;10894;20204;35854;53132;25158;16088;13226;17309;20819.38;28658;28487;22160;35589;31182;22499
-126;'440;Lithuania;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2200;800;3900;12700;10100;12600;3916;6323;4420;2270;0;1;240;253;314;76;1;14650;33936;40685;31903;23741;11778;13398;9569;5450;11263;11358;14704;3867;232
-126;'440;Lithuania;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;982;182;2826;5543;4635;6140;2389;3918;2237;915;2;1;126;174;222;66;6;11268;25587;28573;22700;16093;7206;7421;5932.24;4618;6528;5370;10348;3621;215
-126;'440;Lithuania;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-126;'440;Lithuania;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;41;34;24;24;5199;4
-126;'440;Lithuania;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12.53;61;78;164;187;603;46
-126;'440;Lithuania;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;41;0;0;0;485;0
-126;'440;Lithuania;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13.26;59;0;0;0;169;0
-126;'440;Lithuania;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;4000;800;7700;2600;1000;1300;70;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;39;20;0;0;0;1;1;0;0;654;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;5;0;0;0;1;7;0;0;409;0;0;1;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;800;800;4600;3000;600;81;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;182;182;1264;836;149;21;0;0;0;0;0;0;0;0;1;0;6;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;2;10;0;8;3;515;1259;3824;1886;0;4;0;;;;;;;
-126;'440;Lithuania;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;12;19;0;33;11;310;773;2185;1073;0;2;0;;;;;;;
-126;'440;Lithuania;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;202;0;0;0;515;1259;2205;1370;0;0;0;;;;;;;
-126;'440;Lithuania;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;125;0;0;0;310;773;1346;857;0;0;0;;;;;;;
-126;'440;Lithuania;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;234;2500;3600;13400;11000;15300;5235;7830;8060;4360;2000;2061;1136;1906;2241;20552;18660;23822;47978;82095;39888;26992;21987;32905;33049;36377;46454;43556;45875;36540;31624
-126;'440;Lithuania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;126;903;2176;6264;5116;6471;2861;3979;2636;974;310;360;432;1091;1604;15561;10882;19894;35080;50947;24085;16082;13224;17282;20806.86;28597;28405;21996;31634;30440;22453
-126;'440;Lithuania;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;1400;0;3100;8100;7100;12000;3835;6323;4380;1970;0;1;240;4;314;76;1;14131;32677;38480;30533;23741;11778;13398;9560;5409;11263;11358;10408;3382;232
-126;'440;Lithuania;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;800;0;2644;4279;3799;5991;2368;3918;2194;642;2;1;126;5;222;65;6;10952;24814;27227;21843;16093;7206;7421;5918.99;4559;6528;5370;7192;3452;215
-126;'440;Lithuania;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;100;0;100;167;60;60;120;0;245;145;371;748;18;60;398;614;1130;771;794;873;919;1642;2431;2333;2898;2462;1661;1026
-126;'440;Lithuania;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;49;0;21;43;29;18;40;0;86;58;156;429;12;24;297;613;780;609;648;586;602;1262.43;2272;1848;2034;2154;1519;1019
-126;'440;Lithuania;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;0;0;314;5;0;0;0;0;0;0;60;0;0;0;69;72;58;9;0
-126;'440;Lithuania;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;0;0;222;10;0;0;0;0;0;0;43;0;0;0;78;72;188;37;0
-126;'440;Lithuania;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;800;0;6700;3000;600;377;0;510;40;0;30;40;20;299;18100;17860;22450;47328;80935;39083;26153;21090;31954;31373;33749;43988;40558;43247;34734;30478
-126;'440;Lithuania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;234;0;3064;1198;268;181;0;192;29;23;34;37;19;259;13571;10331;18709;34385;50100;23402;15350;12586;16612;19478.65;26133;26208;19805;29247;28737;21214
-126;'440;Lithuania;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6400;2000;0;0;0;0;0;0;0;0;0;0;0;0;14131;32672;38479;30521;23741;11717;13396;9556;5404;11185;11280;10345;3364;209
-126;'440;Lithuania;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3073;808;0;0;0;0;0;0;0;0;0;0;0;0;10947;24799;27226;21828;16093;7159;7418;5911.64;4547;6428;5282;6985;3382;148
-126;'440;Lithuania;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-126;'440;Lithuania;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;197;133;100;166;145;120
-126;'440;Lithuania;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65.78;192;349;157;233;184;220
-126;'440;Lithuania;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;9;6;5;9;23
-126;'440;Lithuania;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.35;12;22;16;19;33;67
-126;'440;Lithuania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1400;1000;1400;14;1210;2680;2000;2000;1466;555;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288;622;210;435;1;95;139;116;150;40;58;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;1400;0;3100;600;100;1200;0;3;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;800;0;2644;390;43;492;0;6;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-126;'440;Lithuania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;134;1700;2400;5200;7000;13200;4677;6560;4810;2200;0;320;396;1515;1194;2434;740;974;36;30;34;45;24;32;;;;;;;
-126;'440;Lithuania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;669;1454;2529;3708;5747;2636;3855;2287;789;137;200;279;916;916;1978;527;888;82;67;74;84;52;68;;;;;;;
-126;'440;Lithuania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1100;5000;10800;3835;6320;4340;1970;0;0;240;4;0;71;1;0;5;1;12;0;1;2;;;;;;;
-126;'440;Lithuania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;816;2948;5499;2368;3912;2178;642;2;0;126;5;0;55;6;5;15;1;15;0;4;3;;;;;;;
-126;'440;Lithuania;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;40;300;0;0;1;47;2;0;0;0;0;0;0;3;0;2;0;0;2;0;6012;223;0
-126;'440;Lithuania;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;35;179;0;1;1;39;2;1;1;0;0;0;0;6;0;27;0;0;4;0;3768;139;0
-126;'440;Lithuania;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;40;300;0;0;0;47;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4296;0;0
-126;'440;Lithuania;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;43;273;0;0;0;44;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3156;0;0
-126;'440;Lithuania;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;300;300;1000;800;0;0;0;0;0;168;236;194;369;212;161;165;214;241;243;221;193;306;340;306;267;195;222;234;248
-126;'440;Lithuania;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;1019;1076;2042;2836;0;0;0;0;261;374;524;439;922;634;380;305;395;416;461;377;218;245;299.92;279;265;209;304;332;305
-126;'440;Lithuania;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;143;20;0;0;0;66;130;68;221;143;74;72;113;231;0;0;90;101;67;59;59;36;61;83;21
-126;'440;Lithuania;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;84;172;349;203;639;466;214;171;264;481;0;0;161;187;139.2;142;121;65;115;177;69
-126;'440;Lithuania;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;695;100;7490;100;0;36;0;6;25;3;0;0;0;0;0;11;19;23;114;82;56;104;246;706;647
-126;'440;Lithuania;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2376;140;2426;181;9;13;0;51;62;41;5;0;0;0;0;10;15;19;72.03;43;52;78;152;420;441
-126;'440;Lithuania;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;143;60;4380;140;0;281;4184;14121;17833;21422;15799;140;286;424;983;1005;614;1075;2018;1641;1171;3689;4683;2460;5262
-126;'440;Lithuania;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;57;2194;114;88;117;2252;8371;11903;16064;9148;104;256;275;1273;1053;285;517;1027.46;896;634;1807;2561;1541;2999
-126;'440;Lithuania;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;23000;23000;23000;28000;29000;35700;34190;45160;50000;66000;65000;79000;89000;89000;98000;72000;105000;129000;79000;106000;168980;159604;171500;162000;167000;188000;128000;188600;188600;188600
-126;'440;Lithuania;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;1400;5000;5000;6000;8600;12047;32200;33770;42000;50000;56077;64791;67123;87805;68154;53795;90336;99558;102609;84826;87365;81362;81165;88568;65043;54279;45260;59429;51614;63875
-126;'440;Lithuania;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;44;494;494;496;750;876;4047;3799;3291;4445;4745;5425;5556;10002;9200;5590;15009;19538;15108;13806;14847;12296;12057;14990.7;10304;7865;6567;13439;11748;9945
-126;'440;Lithuania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3054;5300;5500;5900;3000;2800;4406;1310;600;3360;3000;6815;11996;13911;23324;35693;42563;44947;56049;74836;77482;90270;79919;102102;93731;81435;77687;78583;94153;100590;87837
-126;'440;Lithuania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;479;490;675;542;324;139;406;139;152;717;608;946;1276;1755;3471;5515;4751;8803;12745;12665;13309;14748;11507;15920;16366.91;13016;10274;9105;19643;18783;10688
-126;'440;Lithuania;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;30500;22900;28900;31000;25000;37300;37000;52630;68170;78000;92000;99000;113000;119000;124200;122700;85800;129229;156518;118000;136700;139520;142322;127377;134000;147886;159090;120939;154277;154277;154277
-126;'440;Lithuania;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;16925;50100;50600;37600;79000;77700;70811;78250;80620;83740;101000;135889;151752;170488;182696;183564;147919;195261;211382;240115;261981;292966;277278;279571;279355;284436;293292;316642;363010;324010;267540
-126;'440;Lithuania;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;6076;18892;43191;31721;67278;59052;53780;58547;63829;60838;81011;119788;136686;157579;200535;213560;165534;208496;255936;253365;287540;314595;251566;247258;253833.86;286130;268876;262552;350724;384017;309287
-126;'440;Lithuania;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;4200;16300;19400;21000;33000;25600;24578;37100;43440;29990;63000;71850;87140;94136;112764;94576;75587;123233;132661;125774;111704;121485;114613;103605;107268;92332;96077;117829;115462;101665;104505
-126;'440;Lithuania;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;1347;7718;14382;15555;20287;13864;13184;17893;19718;13668;26252;31605;40048;47036;71261;69089;50608;99974;120285;106450;115468;123248;98486;95935;107260.64;107546;97082;95652;120830;129093;104539
-126;'440;Lithuania;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;1900;0;0;700;1000;3240;4090;0;0;0;0;0;0;0;0;0;0;1500;0;0;574;7813;9000;4733;5100;5136;22199;22199;22199
-126;'440;Lithuania;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;16371;24900;22900;25700;41000;42300;42848;51810;50940;49290;63000;73920;86190;100531;109388;112451;73886;84585;87065;90302;95481;94966;96021;99640;102900;105226;94614;84617;96038;94854;69196
-126;'440;Lithuania;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;5559;9467;16054;22959;30915;29956;29770;34105;36125;33199;53389;64476;73942;87168;108120;118169;74422;81897;94416;89224;98457;99007;80155;82772;89774.62;98438;88537;77321;95286;113670;95532
-126;'440;Lithuania;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3843;4800;6300;3800;7000;6000;3716;12770;10940;9280;4000;3848;7371;10024;14572;11985;8826;10101;7811;9904;10296;8910;8696;8850;9307;11982;11279;15218;13546;19786;15560
-126;'440;Lithuania;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1260;2437;3556;4351;5634;4025;2428;8131;8079;5971;4097;4324;8043;11162;17361;14503;10682;11542;10572;12474;13876;12438;10411;10391;11170.54;12760;14580;14709;15373;24257;21719
-126;'440;Lithuania;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7813;9000;4733;5100;5136;22199;22199;22199
-126;'440;Lithuania;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;16200;15900;13000;17000;19400;19070;19770;19810;19350;18000;19635;19041;21693;22246;18936;11941;12090;13184;12413;11559;10222;11866;11940;10701;9408;7357;6089;6486;18254;5358
-126;'440;Lithuania;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;5298;10206;9527;8778;9744;9235;8676;10429;9449;8991;10314;10367;13117;15345;13411;7779;7017;8927;7657;7252;6406;5622;5862;5370.69;6116;4504;3167;3637;11507;3870
-126;'440;Lithuania;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133;2200;1000;200;1000;1700;782;2740;3330;1290;0;259;218;327;171;65;25;457;506;861;603;74;33;44;46;298;1111;825;939;7719;6015
-126;'440;Lithuania;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;741;604;120;582;771;306;1176;2327;612;64;126;126;213;134;51;14;274;369;562;405;51;35;24;27.81;223;739;557;642;4658;3306
-126;'440;Lithuania;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;1900;0;0;700;1000;3240;4090;0;0;0;0;0;0;0;0;0;0;1500;0;0;574;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;371;8700;7000;12700;24000;22900;23778;32040;31130;29940;45000;54285;67149;78838;87142;93515;61945;72495;73881;77889;83922;84744;84155;87700;92199;95818;87257;78528;89552;76600;63838
-126;'440;Lithuania;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;359;4169;5848;13432;22137;20212;20535;25429;25696;23750;44398;54162;63575;74051;92775;104758;66643;74880;85489;81567;91205;92601;74533;76910;84403.93;92322;84033;74154;91649;102163;91662
-126;'440;Lithuania;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1710;2600;5300;3600;6000;4300;2934;10030;7610;7990;4000;3589;7153;9697;14401;11920;8801;9644;7305;9043;9693;8836;8663;8806;9261;11684;10168;14393;12607;12067;9545
-126;'440;Lithuania;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;774;1696;2952;4231;5052;3254;2122;6955;5752;5359;4033;4198;7917;10949;17227;14452;10668;11268;10203;11912;13471;12387;10376;10367;11142.73;12537;13841;14152;14731;19599;18413
-126;'440;Lithuania;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;50;0;0;0;0;0;0;0;0;0;0;0;1500;0;0;574;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1890;1880;1050;2100;4000;4491;5314;7674;9207;11094;11356;13957;14044;18723;21293;19821;17727;19281;20160;20978;17274;20197;23743;17159;12630
-126;'440;Lithuania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;869;1332;1126;670;1593;2834;3403;3860;4275;7616;9510;9876;10858;12252;15203;18055;16146;11826;12381;12641.46;13951;12021;12952;15551;14812;12335
-126;'440;Lithuania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;80;190;0;239;20;43;59;47;198;336;1181;2010;2353;2459;2650;2679;2716;2477;2378;7358;4597;1787;2177
-126;'440;Lithuania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;30;16;47;87;27;240;24;62;69;68;210;321;1208;2290;2862;2980;2649;2724;2855.02;3093;3863;5067;3165;3075;5207
-126;'440;Lithuania;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1000;3190;4090;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;8582;14590;12340;19500;16000;19349;25111;27496;29077;25385;20437;21374;21271;22319;25790;27921;30595;32581;36199;36942;33982;30316;31079;26941;23739
-126;'440;Lithuania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6677;5909;10169;8587;14328;15646;19168;23847;27004;32214;31756;22930;24781;28488;27085;32821;36207;31062;32357;39172.02;42610;39031;35381;41021;44134;38076
-126;'440;Lithuania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;2476;8510;6040;7600;2000;1265;2670;3584;6935;2744;3803;3757;2666;3704;4243;2949;2870;2807;2799;3494;4305;4095;3673;4205;1964
-126;'440;Lithuania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2394;1480;5167;3982;5078;1512;1516;2964;3869;8023;3499;4599;4256;3546;4760;5340;3933;3189;3074;3159.46;4164;5100;4679;4797;6265;3238
-126;'440;Lithuania;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-126;'440;Lithuania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400;13306;15570;17740;8340;25000;30445;36724;43668;48858;57036;30152;37164;38566;36847;36839;37002;35833;35838;35840;37898;36001;28015;34730;32500;27469
-126;'440;Lithuania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12666;13294;14134;16439;7829;25918;31591;35868;42772;52945;63492;33837;39241;44749;39279;40329;40248;31645;32172;32590.45;35761;32981;25821;35077;43217;41251
-126;'440;Lithuania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;438;1500;1490;200;2000;2085;4463;6070;7407;9129;4800;5551;3458;3329;3097;3428;3143;3320;3746;5713;3485;2940;4337;6075;5404
-126;'440;Lithuania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;612;1772;1723;194;2494;2442;4929;7018;9135;10885;5859;6691;5449;4862;5269;5474;4538;4569;5128.24;5280;4878;4406;6769;10259;9968
-126;'440;Lithuania;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;28600;21000;27000;31000;25000;36600;36000;49390;64080;78000;92000;99000;113000;119000;124200;122700;85800;129229;156518;116500;136700;139520;141748;119564;125000;143153;153990;115803;132078;132078;132078
-126;'440;Lithuania;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;554;25200;27700;11900;38000;35400;27963;26440;29680;34450;38000;61969;65562;69957;73308;71113;74033;110676;124317;149813;166500;198000;181257;179931;176455;179210;198678;232025;266972;229156;198344
-126;'440;Lithuania;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;517;9425;27137;8762;36363;29096;24010;24442;27704;27639;27622;55312;62744;70411;92415;95391;91112;126599;161520;164141;189083;215588;171411;164486;164059.25;187692;180339;185231;255438;270347;213755
-126;'440;Lithuania;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;357;11500;13100;17200;26000;19600;20862;24330;32500;20710;59000;68002;79769;84112;98192;82591;66761;113132;124850;115870;101408;112575;105917;94755;97961;80350;84798;102611;101916;81879;88945
-126;'440;Lithuania;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;87;5281;10826;11204;14653;9839;10756;9762;11639;7697;22155;27281;32005;35874;53900;54586;39926;88432;109713;93976;101592;110810;88075;85544;96090.1;94786;82502;80943;105457;104836;82820
-126;'440;Lithuania;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;11500;8000;7890;9040;10000;10000;11000;14000;12000;11900;11700;15200;16900;19200;19300;23000;23780;22851;9320;18000;13807;14900;6440;10179;10179;10179
-126;'440;Lithuania;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;300;340;540;260;330;1000;1524;1435;994;814;1673;86;988;1599;598;5415;8099;4061;2188;1919;1923;2158;5062;3687;3163;3017
-126;'440;Lithuania;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;215;161;269;185;391;646;1325;1429;1026;1057;1007;262;1424;2295;817;6961;10133;4737;2676;2402.4;2826;2765;5187;4587;5571;5002
-126;'440;Lithuania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;400;797;650;680;1350;2000;1870;2289;1477;322;4107;3278;3312;2244;3416;4394;2122;2874;8949;17979;13495;11524;6604;10206;2526;2295
-126;'440;Lithuania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;354;206;294;277;286;641;890;1128;1433;1140;490;4201;2299;2170;1900;2624;3730;2132;2944;8653;16758.75;14758;12343;5994;9312;3551;2502
-126;'440;Lithuania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25100;27800;41500;54300;66000;81000;87000;98000;107000;112300;111000;70600;112300;137300;95500;113700;115740;118053;109354;106000;129346;139090;108375;120999;120999;120999
-126;'440;Lithuania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30800;23488;21110;26040;26940;34000;56823;61411;65596;69436;67040;71440;107120;120199;146108;157743;185862;172993;172851;167509;171593;190438;222281;257451;218223;189342
-126;'440;Lithuania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21440;15661;16244;20343;14999;20360;47035;54435;60897;77883;83083;79600;116653;148006;147287;164300;183689;142710;140230;136721.03;163025;154491;162314;229176;238776;187773
-126;'440;Lithuania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;18359;22000;30420;18260;57000;65944;77361;82352;97794;78365;63425;109711;122506;112248;96273;108516;101198;83804;76055;64178;71257;89556;84937;77722;85401
-126;'440;Lithuania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7716;9460;8370;10388;6342;20569;25797;29881;33699;52959;49787;36991;85408;107068;90161;91098;91351;69071;60639;56768.88;56154;51895;54188;74348;82324;66579
-126;'440;Lithuania;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19200;20900;10900;31000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7597;14946;7816;22368;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;12100;10900;22000;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3011;8223;8180;11149;;;;;;;;;;;;;;;;;;;;;;;;;;
-126;'440;Lithuania;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11400;23800;40770;51160;65000;80000;86000;97000;107000;112300;111000;70600;41400;57800;95500;93400;96700;99859;84220;80000;108134;116290;98117;109615;109615;109615
-126;'440;Lithuania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14500;9678;5200;3100;7630;12000;16197;14648;15123;15597;14255;19084;26605;31324;51220;54461;70569;63558;67287;78430;76155;91158;119037;146838;124314;106350
-126;'440;Lithuania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5746;3570;2759;3327;3190;5245;7017;6968;7997;10325;9677;9762;16371;22890;28650;32883;41007;31563;32059;42161.22;50181;46837;54601;93398;94274;60041
-126;'440;Lithuania;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;8730;19000;26960;15930;45000;55686;64722;67693;88772;70153;44854;68145;79746;70549;51907;61381;57352;45160;46854;35386;42791;59275;51309;49843;63528
-126;'440;Lithuania;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3015;3041;6336;8098;4624;13851;18532;21180;24442;42843;36026;15275;32326;45643;33785;27355;30415;23941;18564;22239.34;19859;17977;20463;32318;37193;29485
-126;'440;Lithuania;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11300;3000;730;3140;0;0;0;0;0;0;0;0;0;3800;0;3400;4030;4879;6327;8000;9568;10300;10258;11384;11384;11384
-126;'440;Lithuania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;4732;5960;7030;840;1000;16333;17092;17650;22727;23581;23383;53762;56455;61023;64145;69459;62454;59393;45393;46680;52379;51324;54341;52279;48308
-126;'440;Lithuania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8124;6457;7174;7783;438;507;22117;25475;25572;37008;40495;42156;76296;90889;87183;94168;100238;73009;69837;59093.62;66547;66014;65106;77421;90383;85372
-126;'440;Lithuania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;1421;810;510;0;9000;7522;9304;9658;3001;3978;11356;35617;35781;32830;33763;34663;26013;20354;8175;7297;9075;6883;8206;7758;7651
-126;'440;Lithuania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2242;1976;773;557;4;4919;5280;6107;5321;4704;8798;16105;47447;53391;47375;53171;48929;31000;25996;16088.38;14701;14770;12497;13070;15216;14452
-126;'440;Lithuania;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;900;0;0;1000;1000;1000;1000;0;0;0;0;70900;75700;0;16500;14200;13315;10994;10000;11644;12500;0;0;0;0
-126;'440;Lithuania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;5884;8290;12300;17980;20000;22146;27305;30127;28574;26790;23042;21702;26240;29087;34307;39401;43699;43128;38779;44077;42256;44575;50407;38222;30265
-126;'440;Lithuania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5638;4223;5731;7765;11044;14168;16945;21075;26286;29482;31727;24558;21453;30338;29338;34711;38660;36602;36710;33266.38;43758;39520;39618;54960;51418;39519
-126;'440;Lithuania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;4876;1450;1830;2260;2000;2262;3049;4910;5868;4212;3159;4886;5543;8796;10428;12355;17738;18186;20902;21301;19214;23270;25353;19824;13939
-126;'440;Lithuania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;928;2622;943;1270;1654;1613;1797;2472;3891;5304;4935;3155;4828;6535;8888;10375;11875;14038;15963;18279.37;21413;19038;21046;28856;29559;22236
-126;'440;Lithuania;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;0;0;0;0;0;0;0;0;0;0;0;400;810;0;7813;8000;0;0;0;0;0;0
-126;'440;Lithuania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;3194;1660;3610;490;1000;2147;2366;2696;2538;2414;5931;5051;6180;4778;4830;6433;3282;3043;4907;4681;4645;7345;5865;3408;4419
-126;'440;Lithuania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1932;1411;580;1468;327;440;956;917;1042;1068;1184;3124;2533;3889;2116;2538;3784;1536;1624;2199.8;2539;2120;2989;3397;2701;2841
-126;'440;Lithuania;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;3332;740;1120;70;1000;474;286;91;153;22;4056;1063;1436;73;175;117;95;104;124;194;177;128;69;297;283
-126;'440;Lithuania;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1531;1821;318;463;60;186;188;122;45;108;28;2456;807;1499;113;197;132;92;116;161.79;181;110;182;104;356;406
-126;'440;Lithuania;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;28600;21000;27000;31000;10000;0;200;0;740;2000;1000;1000;1000;0;0;0;0;29;18;1700;0;0;844;890;1000;0;0;988;900;900;900
-126;'440;Lithuania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;554;6000;6800;1000;7000;4300;4135;4790;3380;7180;3000;3622;2716;3367;3058;2400;2507;2568;2519;3107;3342;4039;4203;4892;7027;5694;6082;4682;5834;7770;5985
-126;'440;Lithuania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;517;1828;12191;946;13995;7441;8188;7929;7176;12249;6616;6952;6880;8488;13475;11301;11250;8522;11219;16037;17822;21766;23964;21580;24935.82;21841;23083;17730;21675;26000;20980
-126;'440;Lithuania;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;357;4000;1000;6300;3000;4200;1706;1680;1400;1100;0;188;119;283;76;119;58;109;100;206;741;1937;1845;2002;3927;2677;2017;6451;6773;1631;1249
-126;'440;Lithuania;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;87;2270;2603;3024;3150;1917;1002;1115;965;714;696;356;691;1035;451;598;636;854;745;1191;6764;17327;16060;16252;22562.47;23874;18264;20761;21797;18961;13739
-126;'440;Lithuania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255989.21;297287;304676;329719;422023;450561;339194
-126;'440;Lithuania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057254.34;2300015;2346546;2396682;3178946;3312259;2893591
-126;'440;Lithuania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20281.66;24396;23991;23830;42851;29840;20394
-126;'440;Lithuania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53305.25;59602;56463;49837;66265;49816;44862
-126;'440;Lithuania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14102.7;18630;17585;19782;34714;26109;16553
-126;'440;Lithuania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9920.35;12076;12323;11913;17733;14860;8874
-126;'440;Lithuania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6178.97;5766;6406;4048;8137;3731;3841
-126;'440;Lithuania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43384.9;47526;44140;37924;48532;34956;35988
-126;'440;Lithuania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16928.88;24518;23968;23868;33762;44199;34277
-126;'440;Lithuania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114746.86;140877;125452;121418;217171;240508;157127
-126;'440;Lithuania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4220.89;3955;3889;4308;6738;1727;1951
-126;'440;Lithuania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3544.12;4340;3667;4202;5609;1229;1212
-126;'440;Lithuania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58159.04;65063;64959;82541;102260;102124;60140
-126;'440;Lithuania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299548;301666;311116;304953;410110;393193;323030
-126;'440;Lithuania;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000
-126;'440;Lithuania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2451;4060
-126;'440;Lithuania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5077;6866
-126;'440;Lithuania;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7177;8315
-126;'440;Lithuania;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13677;12904
-126;'440;Lithuania;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;478
-126;'440;Lithuania;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;630
-126;'440;Lithuania;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;459
-126;'440;Lithuania;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;616
-126;'440;Lithuania;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;786;597
-126;'440;Lithuania;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1371;881
-126;'440;Lithuania;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;1
-126;'440;Lithuania;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;4
-126;'440;Lithuania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135475.48;145913;157445;159568;196256;227024;177255
-126;'440;Lithuania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390255.89;1570705;1640652;1678288;2161132;2309398;2122954
-126;'440;Lithuania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3516.93;9789;5413;7696;8868;11262;13136
-126;'440;Lithuania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162221.86;176200;162752;186358;255679;248439;182335
-126;'440;Lithuania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17406.33;23653;25011;27908;31288;34385;32041
-126;'440;Lithuania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33632.36;46625;46444;51626;62980;69676;62071
-126;'440;Lithuania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209511.8;240486;231916;217621;269762;310724;276559
-126;'440;Lithuania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197759.1;236524;245820;252908;290435;322605;297845
-126;'440;Lithuania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4137.95;5190;4392;4682;5903;7013;4780
-126;'440;Lithuania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498.52;379;476;652;1093;1430;1199
-126;'440;Lithuania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27144.31;31752;31285;27251;32989;46400;34748
-126;'440;Lithuania;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11199.43;12421;11238;12250;15355;21373;12256
-126;'440;Lithuania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39742.98;42136;42987;45526;45413;51632;57212
-126;'440;Lithuania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30573.09;42168;46032;54990;53539;64917;80418
-126;'440;Lithuania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84321.09;105123;100640;90166;123641;140889;125295
-126;'440;Lithuania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92239.78;110128;118129;119149;130913;134892;105798
-126;'440;Lithuania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54165.47;56285;52612;49996;61816;64790;54524
-126;'440;Lithuania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63248.28;71428;69945;65867;89535;99993;98174
-256;'442;Luxembourg;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795707.36;873610;878530;622981;729894;775431;718619
-256;'442;Luxembourg;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608368.29;633337;611257;665216;891113;890782;726375
-256;'442;Luxembourg;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173815;179826;152203;218617;212514;301158;315592;392376;394489;348068;356175;389338;315522;323716;322575;314158;312471;330383.93;367320;369358;130433;190803;217675;200518
-256;'442;Luxembourg;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241502;243982;109144;124746;198784;221547;357910;370501;352437;288718;286223;310432;250036;263249;249244;243687;200978;231622.88;211040;182460;230595;412113;334932;291868
-256;'442;Luxembourg;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253841;262348;254060;266682;256680;277452;317054;359453;354676;357142;502169;438039;393915;302710;344757;372389;324712;367760;447900;384885;349700;281340;233317;279222
-256;'442;Luxembourg;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763803;706580;943566;1526095;442653;412573;679717;1040392;688146;657307;790475;1127269;783850;657680;570780;564080;573815;1095274;801258;479066;703600;856983;948742;820400
-256;'442;Luxembourg;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20549;15717;16051;25179;28632;27598;31164;51538;40127;37601;40770;49675;42835;41240;38690;31947;30359;49161.24;45616;39319;34872;51011;67805;62105
-256;'442;Luxembourg;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228350;267770;210343;283620;319928;350056;371979;301597;384416;231402;102164;172567;419710;383863;412320;412320;413154;805228;355849;302623;265100;285601;405971;253801
-256;'442;Luxembourg;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11371;8975;7368;12389;16824;18082;22020;29962;27395;24984;33736;46756;36379;32070;34460;34460;32246;34795.6;33184;23530;24729;29927;38660;25729
-256;'442;Luxembourg;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121660;116625;126300;146075;156151;168519;192619;205995;203125;224802;364468;269782;228490;163358;174457;184072;161302;214120;284031;253339;245700;198593;148500;195364
-256;'442;Luxembourg;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787917;504525;362852;529300;651948;707335;549708
-256;'442;Luxembourg;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31242.81;28972;25183;25413;39220;54802;44337
-256;'442;Luxembourg;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738975;318686;285560;250500;265231;387982;208266
-256;'442;Luxembourg;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30300.86;27962;19986;19829;25428;35139;21331
-256;'442;Luxembourg;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132181;145723;127760;120607;100529;108933;124435;153458;151551;132340;137701;168257;165425;139352;170300;188317;163410;153640;163869;131546;104000;82747;84817;83858
-256;'442;Luxembourg;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307357;296733;116214;174300;205035;241407;270692
-256;'442;Luxembourg;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17918.43;16644;14136;9459;11791;13003;17768
-256;'442;Luxembourg;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66253;37163;17063;14600;20370;17989;45535
-256;'442;Luxembourg;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4494.73;5222;3544;4900;4499;3521;4398
-256;'442;Luxembourg;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27711;34605;29508;37365;39309;40351;53136;59285;55433;61768;81576;76684;78676;64692;64905;67979;64731;69830;84518;65188;59000;45749;40756;50636
-256;'442;Luxembourg;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10404;27340;41423;50845;22172;7000;1334;2564;5670;14467;9486;10259;17590;19480;19480;19480;20886;11524;19114;18209;8400;9106;9139;14646
-256;'442;Luxembourg;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;181;289;411;312;219;629;574;861;2073;1442;1566;2316;3460;3460;3460;1348;2241.98;2811;1474;1140;1325;2128;2033
-256;'442;Luxembourg;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9649;64800;81800;65086;65062;58000;488;3057;5000;39;12403;20395;44330;19653;48110;48110;941;21;10313;485;0;198;73;10418
-256;'442;Luxembourg;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;629;732;1308;1361;1229;1198;1766;497;940;2858;3968;4836;4139;6529;6529;373;60.76;2301;105;0;295;80;494
-256;'442;Luxembourg;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15796;22831;18269;26838;28323;27449;34088;40057;34199;34190;53014;39391;38640;27756;25113;27721;28034;36230;45900;38087;36600;24205;17207;18322
-256;'442;Luxembourg;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10752;12239;11397;5000;1673;2695;2081
-256;'442;Luxembourg;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1278.82;1434;867;684;354;790;570
-256;'442;Luxembourg;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;72;94;0;1;1;660
-256;'442;Luxembourg;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26.1;47;76;0;0;63;62
-256;'442;Luxembourg;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11915;11774;11239;10527;10986;12902;19048;19228;21234;27578;28562;37293;40036;36936;39792;40258;36697;33600;38618;27101;22400;21544;23549;32314
-256;'442;Luxembourg;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;6875;6812;3400;7433;6444;12565
-256;'442;Luxembourg;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;963.16;1377;607;456;971;1338;1463
-256;'442;Luxembourg;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;10241;391;0;197;72;9758
-256;'442;Luxembourg;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34.66;2254;29;0;295;17;432
-256;'442;Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10404;27340;41423;50845;22172;7000;1334;2564;5670;14467;9486;10259;17590;19480;19480;19480;20886;;;;;;;
-256;'442;Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;181;289;411;312;219;629;574;861;2073;1442;1566;2316;3460;3460;3460;1348;;;;;;;
-256;'442;Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9649;64800;81800;65086;65062;58000;488;3057;5000;39;12403;20395;44330;19653;48110;48110;941;;;;;;;
-256;'442;Luxembourg;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;629;732;1308;1361;1229;1198;1766;497;940;2858;3968;4836;4139;6529;6529;373;;;;;;;
-256;'442;Luxembourg;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226130;227743;224552;229317;217371;237101;263918;300168;299243;295374;420593;361355;315239;238018;279852;304410;259981;297930;363382;319697;290700;235591;192561;228586
-256;'442;Luxembourg;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753399;679240;902143;1475250;420481;405573;678383;1037828;682476;642840;780989;1117010;766260;638200;551300;544600;552929;1083750;782144;460857;695200;847877;939603;805754
-256;'442;Luxembourg;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20451;15536;15762;24768;28320;27379;30535;50964;39266;35528;39328;48109;40519;37780;35230;28487;29011;46919.26;42805;37845;33732;49686;65677;60072
-256;'442;Luxembourg;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218701;202970;128543;218534;254866;292056;371491;298540;379416;231363;89761;152172;375380;364210;364210;364210;412213;805207;345536;302138;265100;285403;405898;243383
-256;'442;Luxembourg;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11224;8346;6636;11081;15463;16853;20822;28196;26898;24044;30878;42788;31543;27931;27931;27931;31873;34734.84;30883;23425;24729;29632;38580;25235
-256;'442;Luxembourg;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105864;93794;108031;119237;127828;141070;158531;165938;168926;190612;311454;230391;189850;135602;149344;156351;133268;177890;238131;215252;209100;174388;131293;177042
-256;'442;Luxembourg;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687270;628290;847403;1409655;333322;312765;544286;804158;530880;523876;636387;954696;584940;494000;407100;400400;412000;777165;492286;351455;524300;650275;704640;547627
-256;'442;Luxembourg;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19136;14597;14804;23088;20731;19066;23497;31592;26805;27973;30458;37986;30744;29376;26826;20083;20798;29963.99;27538;24316;24729;38866;54012;43767
-256;'442;Luxembourg;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154132;150950;83299;182362;230204;264250;320447;257116;257954;201654;87823;149222;355140;334820;334820;334820;372362;738959;318614;285466;250500;265230;387981;207606
-256;'442;Luxembourg;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6775;6310;4899;9206;13132;15123;17152;23848;21686;20841;27160;36844;26994;25458;25458;25458;27308;30274.76;27915;19910;19829;25428;35076;21269
-256;'442;Luxembourg;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687270;628290;847403;1409655;333322;312765;544286;804158;530880;523876;636387;954696;584940;494000;407100;400400;412000;777165;492286;351455;524300;650275;704640;547627
-256;'442;Luxembourg;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19136;14597;14804;23088;20731;19066;23497;31592;26805;27973;30458;37986;30744;29376;26826;20083;20798;29963.99;27538;24316;24729;38866;54012;43767
-256;'442;Luxembourg;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154132;150950;83299;182362;230204;264250;320447;257116;257954;201654;87823;149222;355140;334820;334820;334820;372362;738959;318614;285466;250500;265230;387981;207606
-256;'442;Luxembourg;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6775;6310;4899;9206;13132;15123;17152;23848;21686;20841;27160;36844;26994;25458;25458;25458;27308;30274.76;27915;19910;19829;25428;35076;21269
-256;'442;Luxembourg;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120266;133949;116521;110080;89543;96031;105387;134230;130317;104762;109139;130964;125389;102416;130508;148059;126713;120040;125251;104445;81600;61203;61268;51544
-256;'442;Luxembourg;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66129;50950;54740;65595;87159;92808;134097;233670;151596;118964;144602;162314;181320;144200;144200;144200;140929;306585;289858;109402;170900;197602;234963;258127
-256;'442;Luxembourg;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1315;939;958;1680;7589;8313;7038;19372;12461;7555;8870;10123;9775;8404;8404;8404;8213;16955.27;15267;13529;9003;10820;11665;16305
-256;'442;Luxembourg;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64569;52020;45244;36172;24662;27806;51044;41424;121462;29709;1938;2950;20240;29390;29390;29390;39851;66248;26922;16672;14600;20173;17917;35777
-256;'442;Luxembourg;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4449;2036;1737;1875;2331;1730;3670;4348;5212;3203;3718;5944;4549;2473;2473;2473;4565;4460.08;2968;3515;4900;4204;3504;3966
-256;'442;Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4706;3790;344;518;597;428;6089;2305;3412;2659;410;1844;5;7;3000;3000;3000;3000;1180;123;1087;231;270;282
-256;'442;Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;366;203;754;358;174;604;873;1381;1156;554;1021;5;9;1027;1027;1027;1027;473;63;456;476;383;211
-256;'442;Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3906;3980;7349;186;187;59;1843;0;2;0;32;1;0;0;0;0;0;0;8;1116;0;0;134;7
-256;'442;Luxembourg;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;462;157;1;52;24;2317;0;1;0;17;1;0;0;0;0;0;0.12;8;106;0;0;40;5
-256;'442;Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61423;47160;54396;65077;86562;92380;128008;231365;148184;116305;144192;160470;181315;144193;141200;141200;137929;303585;288678;109279;169813;197371;234693;257845
-256;'442;Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;902;573;755;926;7231;8139;6434;18499;11080;6399;8316;9102;9770;8395;7377;7377;7186;15928.27;14794;13466;8547;10344;11282;16094
-256;'442;Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60663;48040;37895;35986;24475;27747;49201;41424;121460;29709;1906;2949;20240;29390;29390;29390;39851;66248;26914;15556;14600;20173;17783;35770
-256;'442;Luxembourg;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4005;1574;1580;1874;2279;1706;1353;4348;5211;3203;3701;5943;4549;2473;2473;2473;4565;4459.96;2960;3409;4900;4204;3464;3961
-256;'442;Luxembourg;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104903;99710;101980;110916;120877;129392;151008;146075;116546;109261;164468;109406;125005;89978;103717;110581;101337;109620;136279;99647;80800;58050;53290;51325
-256;'442;Luxembourg;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61928;56759;68102;79678;95788;105245;116855;106785;81995;86828;140874;77978;91873;63094;72717;71010;66921;81070;100837;77563;63300;45693;38713;40383
-256;'442;Luxembourg;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42975;42951;33878;31238;25089;24147;34153;39290;34551;22433;23594;31428;33132;26884;31000;39571;34416;28550;35442;22084;17500;12357;14577;10942
-256;'442;Luxembourg;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78481;101474;96896;97029;83665;93357;96216;131677;149767;110431;131873;140866;118747;95116;120148;131482;110152;117660;127039;119719;103700;83843;71834;77796
-256;'442;Luxembourg;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518;11686;14693;18798;19211;21473;24982;36754;54014;28333;46568;41609;26748;19795;20919;23298;18113;26430;37481;37589;39800;35134;25274;37308
-256;'442;Luxembourg;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76963;89788;82203;78231;64454;71884;71234;94923;95753;82098;85305;99257;91999;75321;99229;108184;92039;91230;89558;82130;63900;48709;46560;40488
-256;'442;Luxembourg;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42746;26559;25676;21372;12829;14352;16694;22416;32930;75682;124252;111083;71487;52924;55987;62347;48492;70650;100064;100331;106200;93698;67437;99465
-256;'442;Luxembourg;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42418;25349;25236;20761;12829;14352;16694;22399;32917;75451;124012;110804;71229;52713;55708;62043;48234;70390;99813;100100;106000;93561;67306;99351
-256;'442;Luxembourg;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;1210;440;611;0;0;0;17;13;231;240;279;258;211;279;304;258;260;251;231;200;137;131;114
-256;'442;Luxembourg;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;1310;715;0;1188;1335;1100;1065;1015;1248;953;1026;1140;1220;1220;1220;1034;3833;2548;1856;2300;1791;1628;1589
-256;'442;Luxembourg;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;648;801;693;965;1101;1160;986;792;912;1039;909;1034;1069;1281;1281;1281;1028;2102.18;1890;1486;1481;1463;1314;1414
-256;'442;Luxembourg;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;1;15;1051;6;0;37;78;90;60;230;230;230;162;1418;129;107;100;121;73;42
-256;'442;Luxembourg;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;2;1;17;722;7;0;42;47;53;38;187;187;187;218;948.99;142;284;114;204;370;94
-256;'442;Luxembourg;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866000;866000;866000;866000;866000;866000;866000;101131;98131;653260;437727;520963;520963;520960;520960;520960;520960;520960;520960;520960;520960;520960;520960;520960
-256;'442;Luxembourg;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657109;340050;236619;455356;279142;339737;1062926;817145;413701;564798;591212;635152;359040;223130;223130;223130;229318;129634;125232;167395;188800;247112;361382;99837
-256;'442;Luxembourg;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4380;2605;2462;4306;3445;5125;11863;18148;10214;10763;12776;12353;7570;9762;9762;9762;9027;7462.34;7378;8190;7407;11074;16269;10112
-256;'442;Luxembourg;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162015;160560;131527;169209;152782;232942;378679;384328;392008;359594;444125;274536;94450;121920;121920;121920;116694;80316;79515;102725;119000;140326;136187;85163
-256;'442;Luxembourg;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2710;3021;1782;4451;3643;5301;7960;12667;12716;11615;14359;11119;3375;4379;4379;4379;4887;4363.2;4669;3816;3418;4201;5877;3634
-256;'442;Luxembourg;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766000;766000;766000;766000;766000;766000;766000;1131;1131;554952;339303;422464;422464;422460;422460;422460;422460;422460;422460;422460;422460;422460;422460;422460
-256;'442;Luxembourg;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534578;253050;192754;256632;105158;252744;876240;468188;348500;519108;499358;609010;332040;193980;193980;193980;164997;100121;89335;18296;41700;66494;150721;96654
-256;'442;Luxembourg;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3520;1613;1500;2624;1433;3127;8675;9625;5825;6459;8243;10086;5726;7759;7759;7759;6357;5833.6;4825;2187;1709;3047;6907;8066
-256;'442;Luxembourg;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78500;90800;49427;74298;74077;138271;192419;166619;230209;176084;262335;203651;26450;33990;33990;33990;77875;45984;45525;45853;70500;99101;112543;63646
-256;'442;Luxembourg;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185;2492;1379;3458;2770;4206;5035;7162;6656;5313;8513;7878;1527;1970;1970;1970;3044;2742.59;2512;2186;1937;2798;4204;2496
-256;'442;Luxembourg;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;100000;100000;100000;100000;100000;100000;97000;98308;98424;98499;98499;98500;98500;98500;98500;98500;98500;98500;98500;98500;98500;98500
-256;'442;Luxembourg;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122531;87000;43865;198724;173984;86993;186686;348957;65201;45690;91854;26142;27000;29150;29150;29150;64321;29513;35897;149099;147100;180618;210661;3183
-256;'442;Luxembourg;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860;992;962;1682;2012;1998;3188;8523;4389;4304;4533;2267;1844;2003;2003;2003;2670;1628.74;2553;6003;5698;8027;9362;2046
-256;'442;Luxembourg;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83515;69760;82100;94911;78705;94671;186260;217709;161799;183510;181790;70885;68000;87930;87930;87930;38819;34332;33990;56872;48500;41225;23644;21517
-256;'442;Luxembourg;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;529;403;993;873;1095;2925;5505;6060;6302;5846;3241;1848;2409;2409;2409;1843;1620.61;2157;1630;1481;1403;1673;1138
-256;'442;Luxembourg;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78459;3183
-256;'442;Luxembourg;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9362;2046
-256;'442;Luxembourg;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23644;21517
-256;'442;Luxembourg;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;1138
-256;'442;Luxembourg;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11812;14781
-256;'442;Luxembourg;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1225;1363
-256;'442;Luxembourg;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10806;11942
-256;'442;Luxembourg;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;436;534
-256;'442;Luxembourg;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;45000;50000;45000;45000;45000;45000;63000;63000;63000;63000;63000
-256;'442;Luxembourg;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3284;8940;17206;19729;42781;54061;74491;11567;12700;17209;19230;15262
-256;'442;Luxembourg;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;1644;4007;2333;3994;5915.37;7561;2965;3191;3977;7378;6215
-256;'442;Luxembourg;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10980;14105;11679;14426;34977;33626;35571;32481;27400;31096;21388;2011
-256;'442;Luxembourg;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745;2350;3370;2514;5963;6362.92;6085;5147;4330;4749;5443;883
-256;'442;Luxembourg;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;45000;50000;45000;45000;45000;45000;63000;63000;63000;63000;63000
-256;'442;Luxembourg;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2384;8000;6228;8000;6554;7814;8434;9468;10800;15560;18000;13902
-256;'442;Luxembourg;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;991;1782;991;1466;1816.42;2209;2464;2735;3527;6843;5748
-256;'442;Luxembourg;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5380;6735;8080;6735;31980;27630;28022;32413;27400;30711;18585;1448
-256;'442;Luxembourg;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;819;1141;2131;1141;5011;4984.02;4897;5124;4330;4685;5336;859
-256;'442;Luxembourg;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;940;10978;11729;36227;46247;66057;2099;1900;1649;1230;1360
-256;'442;Luxembourg;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602;653;2225;1342;2528;4098.95;5352;501;456;450;535;467
-256;'442;Luxembourg;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;7370;3599;7691;2997;5996;7549;68;0;385;2803;563
-256;'442;Luxembourg;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926;1209;1239;1373;952;1378.9;1188;23;0;64;107;24
-256;'442;Luxembourg;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133400;133400;133400;133400;133400;133000;133400;133400;133587;129250;93576;78337;78337;78330;78330;78330;78330;78330;78330;78330;78330;78330;78330;78330
-256;'442;Luxembourg;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63862;70210;50783;53714;64215;58075;119638;148449;138570;115583;125812;133808;198940;100640;90700;71400;71889;87970;110959;76346;41185;39774;106821;261504
-256;'442;Luxembourg;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12284;12320;10863;13522;18400;16429;29517;31248;32744;25699;26682;28430;26037;32993;28225;28225;26110;29659.64;27935;26008;23362;38054;37339;39098
-256;'442;Luxembourg;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33101;28010;34699;44888;50943;54966;52318;56598;93951;69018;65621;55643;74490;51350;46950;42900;40086;47840;39428;30243;35600;14731;17661;17182
-256;'442;Luxembourg;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5944;4952;6331;11435;12451;11210;14096;17125;23256;14701;13958;18388;12102;17953;14850;14850;11587;13561.31;12951;11197;17664;17216;18037;15156
-256;'442;Luxembourg;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113400;113400;113400;113400;113400;113000;113400;113400;113387;92715;39233;39233;39233;39230;39230;39230;39230;39230;39230;39230;39230;39230;39230;39230
-256;'442;Luxembourg;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49494;48180;35989;37864;45934;43838;91538;125479;121480;103893;111028;121278;185940;57980;62200;56400;56692;73943;96900;58667;27900;28548;42750;110127
-256;'442;Luxembourg;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8411;7940;6262;7494;9713;9326;10667;14486;17128;13082;13367;15499;13149;14932;15881;15881;14586;19025.44;18182;17077;15385;24206;24700;17728
-256;'442;Luxembourg;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33004;27930;34060;42968;47954;50122;39788;41218;79351;51589;64312;53704;59690;35000;33000;30900;30428;35054;30772;24825;12000;12416;10879;10407
-256;'442;Luxembourg;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5609;4603;5926;10752;10677;9354;8989;11373;16847;9707;8769;10317;8325;7861;7407;7407;6311;7270.17;6415;6292;6382;8642;8442;7504
-256;'442;Luxembourg;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000;20000;20200;36535;54343;39104;39104;39100;39100;39100;39100;39100;39100;39100;39100;39100;39100;39100
-256;'442;Luxembourg;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14368;22030;14794;15850;18281;14237;28100;22970;17090;11690;14784;12530;13000;42660;28500;15000;15197;14027;14059;17679;13285;11226;64071;151377
-256;'442;Luxembourg;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3873;4380;4601;6028;8687;7103;18850;16762;15616;12617;13315;12931;12888;18061;12344;12344;11524;10634.2;9753;8931;7977;13848;12639;21370
-256;'442;Luxembourg;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;80;639;1920;2989;4844;12530;15380;14600;17429;1309;1939;14800;16350;13950;12000;9658;12786;8656;5418;23600;2315;6782;6775
-256;'442;Luxembourg;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;349;405;683;1774;1856;5107;5752;6409;4994;5189;8071;3777;10092;7443;7443;5276;6291.14;6536;4905;11282;8574;9595;7652
-256;'442;Luxembourg;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;480;577;547;603;237;17037;43499;711;863;1097;1013;909;587;587;587;894;192;487;218;500;671;1082;489
-256;'442;Luxembourg;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;511;642;748;869;341;585;787;647;788;1006;917;662;621;621;621;643;452.44;546;253;228;439;292;300
-256;'442;Luxembourg;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;7;6;4;2;117;5;4;29;21;130;230;690;690;690;296;15;51;57;0;0;1;23
-256;'442;Luxembourg;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;9;9;6;4;694;4;16;15;493;1178;317;257;257;257;85;59.77;22;21;0;0;0;8
-256;'442;Luxembourg;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;165000;165000;400000;450000;461000;539000;446000;393878;482529;514034;522038;333000;323000;323000;370000;390000;330000;381500;485100;485100;485100;485100
-256;'442;Luxembourg;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58152;53550;44622;39035;48976;49655;87099;75130;67261;62181;63418;58272;61580;73902;87181;87181;105099;106728;99208;94394;63951;93984;131011;168286
-256;'442;Luxembourg;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18112;12494;11838;12276;15351;16591;16776;20976;32721;25465;22914;26509;24118;31987;35509;35509;34228;32619.74;32131;31281;27463;47483;46475;36239
-256;'442;Luxembourg;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166631;133890;101910;94475;367359;384825;429402;400366;328305;333172;407538;454020;413940;363980;345698;344398;375966;427141;338646;350716;399291;701588;497756;372376
-256;'442;Luxembourg;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38870;28953;24331;20781;74692;81406;101565;192876;168769;156153;188151;195413;165591;174289;159698;154997;122830;147999.48;132463;112796;158747;318051;231895;205787
-256;'442;Luxembourg;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11786;7880;7862;10337;11796;11340;62050;33285;17939;14650;16170;18470;22370;17000;17000;17000;14142;31910;30538;21411;8900;17008;33187;95914
-256;'442;Luxembourg;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3218;3276;3450;5169;5766;5897;6630;6582;8835;6496;7308;8277;8896;9436;9436;9436;9535;10689.3;11918;11408;7863;18705;19231;13898
-256;'442;Luxembourg;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;300;316;311;158;148;7712;539;2284;305;1380;1786;630;700;700;700;345;2164;1529;1960;510;4188;330;587
-256;'442;Luxembourg;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;125;142;161;101;79;5741;53;363;417;376;288;296;279;279;279;316;441.13;475;413;456;761;243;729
-256;'442;Luxembourg;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6552;3155
-256;'442;Luxembourg;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1104;973
-256;'442;Luxembourg;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;3
-256;'442;Luxembourg;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3
-256;'442;Luxembourg;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28381;15350;9360;10910;13472;15087;11600;13800;12700;19500;25000;20500;25000;26613;36762;36762;34775;31234;28832;30115;25300;33437;44844;40816
-256;'442;Luxembourg;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6763;3546;2283;2323;3184;3547;2895;4662;5662;6608;7662;8094;5159;8062;10109;10109;9377;8486.23;7842;7870;7179;9074;10466;9405
-256;'442;Luxembourg;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13479;1340;1153;1154;656;1239;2236;4331;163;1795;2225;4101;2250;2002;1694;1694;14095;19120;13181;6874;9181;3964;6381;3727
-256;'442;Luxembourg;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;273;248;244;160;285;196;372;58;61;215;562;295;544;434;434;2673;3628.24;7806;1718;2849;985;1640;1099
-256;'442;Luxembourg;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;165000;165000;150000;200000;200000;178000;162000;166526;197459;206566;214570;203000;203000;203000;210000;210000;210000;241500;338100;338100;338100;338100
-256;'442;Luxembourg;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7630;8410;13500;7080;7915;8603;4000;4594;18182;7500;12500;7500;8500;16199;18370;18370;24850;21710;13512;10817;10851;20078;19419;13671
-256;'442;Luxembourg;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1818;1943;3294;1508;1871;2023;1960;1252;4502;2718;2155;3002;3117;5170;5838;5838;6587;5865.19;3823;3145;2963;5691;4970;3549
-256;'442;Luxembourg;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144150;125020;91781;90495;175167;208108;158921;181186;174023;187520;236270;262723;248830;242088;236544;236544;217264;223068;212006;201330;269300;538832;410803;268567
-256;'442;Luxembourg;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32035;25529;19788;19161;42488;47898;47529;71422;62004;60198;79583;87622;81987;83530;81724;81724;57599;60232.34;60021;58556;106667;213425;162714;141022
-256;'442;Luxembourg;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;250000;250000;261000;361000;284000;227352;285070;307468;307468;130000;120000;120000;160000;180000;120000;140000;147000;147000;147000;147000
-256;'442;Luxembourg;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10355;21910;13900;10708;15793;14625;9449;23451;18440;20531;9748;11802;5710;14090;15049;15049;31332;21874;26326;32051;18900;23461;33561;17885
-256;'442;Luxembourg;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6313;3729;2811;3276;4530;5124;5291;8480;13722;9643;5789;7136;6946;9319;10126;10126;8729;7579.02;8548;8858;9458;14013;11808;9387
-256;'442;Luxembourg;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8261;7230;8660;2515;191378;175330;260533;214310;151835;143552;167663;185410;162230;119190;106760;105460;144262;182789;111930;140552;120300;154604;80242;99495
-256;'442;Luxembourg;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6393;3026;4153;1215;31943;33144;48099;121029;106344;95477;107977;106941;83013;89936;77261;72560;62242;83697.77;64161;52109;48775;102880;67298;62937
-256;'442;Luxembourg;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;11000;42000;44000;45899;51343;39046;39046;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5810;1700;1996;3399;3725;4897;829;1725;5591;7083;754;1097;900;1570;1570;1570;3605;3587;3493;3050;4800;5421;2775;1748
-256;'442;Luxembourg;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4559;708;876;1866;2289;2930;1476;3031;7416;3122;965;1473;1866;2892;2892;2892;1931;1934.8;2110;1696;1823;2059;1998;1050
-256;'442;Luxembourg;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429;5950;8438;1705;0;0;12035;44090;49612;53240;52142;39915;41200;0;0;0;0;0;0;0;44900;73603;34212;24428
-256;'442;Luxembourg;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5620;2741;4101;942;0;0;13197;55500;63151;61310;63609;51128;36854;0;0;0;0;0;0;0;19829;48343;30848;24310
-256;'442;Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;250000;250000;250000;319000;240000;181453;233727;268422;268422;130000;120000;120000;160000;180000;120000;140000;147000;147000;147000;147000
-256;'442;Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1660;3280;2904;2484;3714;4171;4879;6901;6570;6368;4044;4325;3840;9590;10549;10549;18231;9015;8579;9173;9400;13144;26759;10733
-256;'442;Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;754;640;599;665;869;1074;2591;4134;4428;4402;3344;3756;3834;4808;5615;5615;5493;4054.68;3899;4140;4444;7529;6120;4442
-256;'442;Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3832;1280;222;810;191378;175330;245358;170000;102000;90000;115000;145000;121000;119170;106740;105440;142890;182651;111763;139761;75200;80907;45929;74968
-256;'442;Luxembourg;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;285;52;273;31943;33144;33771;65361;43001;33908;44033;55430;46102;89856;77181;72480;62082;83624.24;64078;52009;28832;54354;36259;38466
-256;'442;Luxembourg;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2885;16930;9000;4825;8354;5557;3741;14825;6279;7080;4950;6380;970;2930;2930;2930;9496;9272;14254;19828;4700;4896;4027;5404
-256;'442;Luxembourg;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2381;1336;745;1372;1120;1224;1315;1878;2119;1480;1907;1246;1619;1619;1619;1305;1589.54;2539;3022;3191;4425;3690;3895
-256;'442;Luxembourg;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3140;220;223;312;521;495;30;20;20;20;1372;138;167;791;200;94;101;99
-256;'442;Luxembourg;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1131;168;192;259;335;383;57;80;80;80;160;73.53;83;100;114;183;191;161
-256;'442;Luxembourg;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;55000;75000;61000;61000;64000;118000;125000;77357;81222;88639;88639;90000;100000;100000;77000;75000;80000;95000;65000;65000;65000;65000
-256;'442;Luxembourg;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;280;165;251;178;84;490;223;673;742;3789;1662;2462;1475;3175;3175;1389;1133;1838;1564;1281;1849;2740;2191
-256;'442;Luxembourg;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;136;160;215;289;213;372;421;1274;464;557;404;232;302;594;594;357;265.9;351;536;406;563;552;382
-256;'442;Luxembourg;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000;38000;52630;74568;60475;58253;64699;117697;125345;58564;84296;85310;89870;80900;88400;88400;77666;75175;78123;78289;63056;73952;68840;62760
-256;'442;Luxembourg;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4387;2414;3628;4245;4618;4374;4998;8937;10942;6728;12959;17363;12929;11496;11775;11775;10528;11753.89;8552;6476;5090;13599;11301;6069
-256;'442;Luxembourg;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;110;31;107;61;51;17;35;85;15;3;8;52;75;75;75;134;142;185;584;100;115;60;68
-256;'442;Luxembourg;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;66;39;123;113;100;32;66;234;31;14;19;17;15;15;15;65;81.04;107;339;228;218;123;165
-256;'442;Luxembourg;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;3;0;32;0;1;0;2;1;0;0;0;0;0;4;5;37;0;29;5;2
-256;'442;Luxembourg;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;0;2;0;60;0;0;0;2;1;0;0;0;0;0;1.59;4;20;0;26;10;4
-256;'442;Luxembourg;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;70;13;57;21;28;11;29;80;4;1;18;62;85;85;85;133;138;182;681;100;114;60;47
-256;'442;Luxembourg;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;35;12;54;50;47;16;45;218;5;13;26;17;13;13;13;64;78.23;105;368;228;209;122;91
-256;'442;Luxembourg;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;3;0;27;0;1;0;2;1;0;0;0;0;0;4;5;28;0;9;5;2
-256;'442;Luxembourg;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;10;0;2;0;41;0;0;0;2;1;0;0;0;0;0;1.59;4;14;0;15;10;4
-256;'442;Luxembourg;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-256;'442;Luxembourg;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;97;199;0;93;45;36
-256;'442;Luxembourg;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24.24;45;89;0;142;86;60
-256;'442;Luxembourg;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;9;0;8;5;1
-256;'442;Luxembourg;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59;1;4;0;12;9;2
-256;'442;Luxembourg;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;;;;;;;
-256;'442;Luxembourg;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;0;2;1;0;0;0;1;0;3;0;7;4;4;4;1;;;;;;;
-256;'442;Luxembourg;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0;0;2;4;8;3;3;3;0;;;;;;;
-256;'442;Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;40;5;57;21;28;11;28;77;4;1;6;52;75;75;75;130;83;85;283;100;21;15;11
-256;'442;Luxembourg;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;25;6;52;46;47;16;43;212;5;8;12;2;6;6;6;63;53.96;60;190;228;65;36;31
-256;'442;Luxembourg;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;23;0;1;0;2;1;0;0;0;0;0;0;4;10;0;1;0;1
-256;'442;Luxembourg;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;39;0;0;0;2;1;0;0;0;0;0;0;3;6;0;3;1;2
-256;'442;Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;2;5;2;2;0;0;0;0;0;0;124;0;0;0;0;0;0;0
-256;'442;Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;4;3;2;0;0;0;0;0;59;0;0;0;0;0;0;0
-256;'442;Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;40;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0
-256;'442;Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1;23;2;0;0;0;0;0;0;0;0;0;0;0;0;3.28;0;0;0;0;1;0
-256;'442;Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0
-256;'442;Luxembourg;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-256;'442;Luxembourg;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;85;283;100;21;15;11
-256;'442;Luxembourg;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50.69;60;190;228;65;35;31
-256;'442;Luxembourg;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;9;0;1;0;1
-256;'442;Luxembourg;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;6;0;3;1;2
-256;'442;Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;0;0;0;4;50;70;70;70;0;;;;;;;
-256;'442;Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;2;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;3;16;21;28;8;22;75;2;1;2;2;5;5;5;6;;;;;;;
-256;'442;Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;5;29;44;47;14;43;208;2;6;10;2;6;6;6;4;;;;;;;
-256;'442;Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;22;0;1;0;2;1;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;39;0;0;0;2;1;0;0;0;0;0;;;;;;;
-256;'442;Luxembourg;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;0;0;0;0;1;3;0;0;12;10;10;10;10;0;0;0;199;0;0;0;0
-256;'442;Luxembourg;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;0;0;0;2;5;0;0;10;0;0;0;0;0;0.03;0;89;0;2;0;0
-256;'442;Luxembourg;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0
-256;'442;Luxembourg;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0
-256;'442;Luxembourg;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;40;26;50;40;23;6;7;8;11;2;2;0;0;0;0;1;4;3;102;0;1;0;21
-256;'442;Luxembourg;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;31;33;69;63;53;16;23;21;26;1;3;0;2;2;2;1;2.84;2;60;0;11;1;74
-256;'442;Luxembourg;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;18;0;20;0;0
-256;'442;Luxembourg;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;21;0;0;0;0;0;0;0;0;0;0;0;0;10;0;11;0;0
-256;'442;Luxembourg;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;133;86;168;24;1823;412;10;20;20;20;536;359;395;405;0;241;85;118
-256;'442;Luxembourg;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;75;54;223;252;177;351;340;408;408;408;226;154.19;178;173;0;252;102;105
-256;'442;Luxembourg;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;84;5;1;1;0;0;0;0;0;0;0;16;0;0;0;0;0;1
-256;'442;Luxembourg;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;48;3;31;38;0;0;0;0;0;0;0;6.83;0;0;0;0;0;1
-256;'442;Luxembourg;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;55000;75000;61000;61000;64000;118000;125000;77357;81222;88639;88639;90000;100000;100000;77000;75000;80000;95000;65000;65000;65000;65000
-256;'442;Luxembourg;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;170;134;144;117;33;473;188;588;727;3786;1654;2410;1400;3100;3100;1255;991;1653;980;1181;1734;2680;2123
-256;'442;Luxembourg;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;70;121;92;176;113;340;355;1040;433;543;385;215;287;579;579;292;184.86;244;197;178;345;429;217
-256;'442;Luxembourg;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000;38000;52628;74568;60472;58253;64667;117697;125344;58564;84294;85309;89870;80900;88400;88400;77666;75171;78118;78252;63056;73923;68835;62758
-256;'442;Luxembourg;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386;2413;3624;4245;4616;4374;4938;8937;10942;6728;12957;17362;12929;11496;11775;11775;10528;11752.3;8548;6456;5090;13573;11291;6065
-256;'442;Luxembourg;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20000;19000;31000;11656;999;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107759;113620;87156;136621;117245;195861;150540;175036;171229;167558;205478;177455;152520;141390;141390;141390;166715;168804;182022;196053;31200;31519;27201;25036
-256;'442;Luxembourg;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117188;135241;109488;161406;144427;233701;224254;268410;275622;245997;250384;269655;211332;203478;203478;203478;206499;202590.85;243734;259058;32023;36485;38924;43185
-256;'442;Luxembourg;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67089;88920;25216;27864;26388;40408;115077;29616;40270;20564;9207;8041;7750;8370;8370;8370;5928;5796;6851;11589;5789;1419;1282;6735
-256;'442;Luxembourg;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178201;195665;65685;71434;86549;101153;205805;108920;109312;74442;22520;20162;17560;20268;20268;20268;12634;11770.89;12972;19189;16503;24166;22913;33973
-256;'442;Luxembourg;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66972;78890;69897;84460;35293;104640;99345;111462;109981;99283;103814;77768;54380;51250;51250;51250;74135;77556;80181;78737;17500;16712;15847;11530
-256;'442;Luxembourg;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61775;75930;81047;95540;38301;123491;118934;146485;154172;129801;120539;106105;56952;54576;54576;54576;79777;79597.89;93308;89821;16638;17417;20870;17408
-256;'442;Luxembourg;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;28030;3418;1692;1866;8534;93150;6579;6653;6494;4198;3112;2630;2110;2110;2110;2526;2674;3261;3569;1400;1194;1112;984
-256;'442;Luxembourg;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1749;45074;3221;3151;3251;4201;113495;7742;7984;6762;8110;5322;3615;2967;2967;2967;4069;4259.39;5049;5817;1937;1693;1771;1849
-256;'442;Luxembourg;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8914;11840;14184;10037;11977;10901;11406;13661;15439;12149;13107;9665;10450;10410;10410;10410;8175;9688;8896;7002;5600;5732;4463;1044
-256;'442;Luxembourg;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4671;6875;7929;6111;8426;7103;7709;10806;12625;9605;8047;8615;6999;6970;6970;6970;4140;4961.04;4916;4265;2849;2878;3846;962
-256;'442;Luxembourg;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;26;0;25;40;9757;0;0;0;1;1;0;0;0;0;193;21;105;0;0;0;87;0
-256;'442;Luxembourg;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;28;0;28;37;7103;0;1;1;10;9;5;3;3;3;106;9.2;66;1;0;2;57;1
-256;'442;Luxembourg;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58058;67050;55713;74423;23316;93739;87939;97801;94542;87134;90707;68103;43930;40840;40840;40840;65960;67868;71285;71735;11900;10980;11384;10486
-256;'442;Luxembourg;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57104;69055;73118;89429;29875;116388;111225;135679;141547;120196;112492;97490;49953;47606;47606;47606;75637;74636.85;88392;85556;13789;14539;17024;16446
-256;'442;Luxembourg;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2257;28030;3392;1692;1841;8494;83393;6579;6653;6494;4197;3111;2630;2110;2110;2110;2333;2653;3156;3569;1400;1194;1025;984
-256;'442;Luxembourg;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745;45072;3193;3151;3223;4164;106392;7742;7983;6761;8100;5313;3610;2964;2964;2964;3963;4250.19;4983;5816;1937;1691;1714;1848
-256;'442;Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;2770;1633;1440;0;1136;2335;2808;3181;1233;1381;1550;1450;780;780;780;180;2337;3016;640;600;610;498;713
-256;'442;Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;1950;1503;1676;0;1194;2175;2975;3513;1895;1316;2318;1578;1004;1004;1004;283;1543.36;2223;630;456;549;731;478
-256;'442;Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;56;0;0;2780;3;0;1;4;2;0;0;0;0;2;4;198;13;0;4;3;6
-256;'442;Luxembourg;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;100;0;0;2655;13;11;5;10;6;2;1;1;1;2;4.98;137;17;0;9;5;11
-256;'442;Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16896;31360;20999;32283;13810;34000;34639;35760;31035;30045;33149;28403;27610;25900;25900;25900;23884;24617;24333;26862;11300;10370;10886;9773
-256;'442;Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17420;35524;21834;28438;18106;40055;41616;52781;50304;41041;42692;41449;34739;33314;33314;33314;28867;29893.9;33403;34618;13333;13990;16293;15968
-256;'442;Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1807;1370;1803;1314;1416;941;22301;825;2176;793;1235;1164;1060;1250;1250;1250;1216;1315;1260;2131;1400;1190;1022;978
-256;'442;Luxembourg;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;1069;2562;2292;2462;1417;31550;1765;2188;2242;1935;2363;1775;1872;1872;1872;1896;2063.76;2083;3273;1937;1682;1709;1837
-256;'442;Luxembourg;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40592;32920;33081;40700;9506;58603;50965;59233;60326;55856;56177;38150;14870;14160;14160;14160;41896;40914;43936;44233;0;0;0;0
-256;'442;Luxembourg;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39165;31581;49781;59315;11769;75139;67434;79923;87730;77260;68484;53723;13636;13288;13288;13288;46487;43199.58;52766;50308;0;0;0;0
-256;'442;Luxembourg;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;26660;1589;322;425;7553;58312;5751;4477;5700;2958;1945;1570;860;860;860;1115;1334;1698;1425;0;0;0;0
-256;'442;Luxembourg;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;44002;630;759;761;2747;72187;5964;5784;4514;6155;2944;1833;1091;1091;1091;2065;2181.45;2763;2526;0;0;0;0
-256;'442;Luxembourg;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20000;19000;31000;11656;999;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40787;34730;17259;52161;81952;91221;51195;63574;61248;68275;101664;99687;98140;90140;90140;90140;92580;91248;101841;117316;13700;14807;11354;13506
-256;'442;Luxembourg;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55413;59311;28441;65866;106126;110210;105320;121925;121450;116196;129845;163550;154380;148902;148902;148902;126722;122992.96;150426;169237;15385;19068;18054;25777
-256;'442;Luxembourg;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64823;60890;21798;26172;24522;31874;21927;23037;33617;14070;5009;4929;5120;6260;6260;6260;3402;3122;3590;8020;4389;225;170;5751
-256;'442;Luxembourg;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176452;150591;62464;68283;83298;96952;92310;101178;101328;67680;14410;14840;13945;17301;17301;17301;8565;7511.5;7923;13372;14566;22473;21142;32124
-256;'442;Luxembourg;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20000;19000;21000;10657;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;190;151;291;261;357;595;773;575;577;1183;1837;1550;1440;1440;1440;497;520;430;498;400;332;324;431
-256;'442;Luxembourg;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;991;845;1473;1485;1733;2385;5277;3111;3189;3210;3296;3178;3615;3615;3615;1415;1337.97;1349;1836;1368;1263;1297;1644
-256;'442;Luxembourg;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21331;21940;19567;19247;20893;28092;19093;20228;21300;11530;96;37;50;60;60;60;60;58;49;51;0;65;42;14
-256;'442;Luxembourg;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64290;60481;56591;60781;73971;89039;78958;92887;95942;58223;227;178;175;205;205;205;195;197.9;193;198;0;142;75;66
-256;'442;Luxembourg;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15493;16980;10671;48832;60836;89478;49744;61477;59428;66136;98882;93851;94490;87310;87310;87310;90342;89671;100179;115261;12800;14145;10897;12915
-256;'442;Luxembourg;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21788;27337;18288;41475;67404;100777;96720;108680;107745;99781;113696;141505;132035;130359;130359;130359;112037;111744.18;137879;155803;13333;17036;16079;23421
-256;'442;Luxembourg;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;790;901;5122;2357;2854;2400;2504;1308;1896;4566;4616;4780;5780;5780;5780;2854;2865;3454;7859;4389;160;128;5736
-256;'442;Luxembourg;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;1056;1719;6121;6704;7022;6723;7860;4468;6972;11452;11810;11072;14815;14815;14815;4997;5302.92;6935;12129;14566;22320;21064;32007
-256;'442;Luxembourg;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;1370;512;263;69;189;377;133;71;87;164;239;370;220;220;220;133;168;231;288;200;71;215;252
-256;'442;Luxembourg;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653;1614;618;617;154;603;561;360;272;274;195;304;388;271;271;271;233;254.34;310;287;228;215;292;336
-256;'442;Luxembourg;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;60;70;443;5;27;100;6;2;4;25;55;0;0;0;0;1;1;1;2;0;4;2;1
-256;'442;Luxembourg;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;84;109;634;26;34;76;104;158;142;30;70;2;3;3;3;4;186.55;4;5;5;4;9;4
-256;'442;Luxembourg;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8856;11160;5986;27543;34911;38353;8362;8019;12148;14493;31142;27913;25100;12910;12910;12910;10735;8412;7406;16240;2600;2800;2829;8600
-256;'442;Luxembourg;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13710;17198;8009;19187;25420;28292;22097;24090;22429;20901;23631;38747;35264;25834;25834;25834;18780;15502.91;14282;29290;7179;8103;7756;18019
-256;'442;Luxembourg;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;70;411;4558;2097;2529;2100;2271;973;1597;3162;3580;4430;5470;5470;5470;2062;2112;3026;7640;4176;66;57;5654
-256;'442;Luxembourg;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;170;845;5075;5827;6304;6279;7310;3657;6260;9455;9786;10465;14289;14289;14289;3768;3992.57;6161;11705;13761;328;284;8822
-256;'442;Luxembourg;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6112;4410;4142;11195;25856;42760;33264;45587;43155;41809;56043;54828;56700;61620;61620;61620;67125;68901;79646;85658;600;1006;1731;1439
-256;'442;Luxembourg;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7397;8494;9605;17294;41830;68817;70509;80284;81272;74833;84848;96355;90184;97633;97633;97633;87414;90373.07;116794;120358;1937;2863;4161;3497
-256;'442;Luxembourg;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;958;660;415;97;255;241;100;135;157;110;1352;958;240;290;290;290;777;738;417;200;213;78;57;61
-256;'442;Luxembourg;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030;802;751;377;851;592;291;327;385;367;1937;1947;511;496;496;496;1216;1115.4;763;405;800;21978;20753;23170
-256;'442;Luxembourg;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;40;31;9831;0;8176;7741;7738;4054;9747;11533;10871;12320;12560;12560;12560;12349;12190;12896;13075;9400;10268;6122;2624
-256;'442;Luxembourg;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;31;56;4377;0;3065;3553;3946;3772;3773;5022;6099;6199;6621;6621;6621;5610;5613.86;6493;5868;3989;5855;3870;1569
-256;'442;Luxembourg;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;24;0;57;100;92;176;185;27;23;110;20;20;20;14;14;10;17;0;12;12;20
-256;'442;Luxembourg;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;35;0;92;77;119;268;203;30;7;94;27;27;27;9;8.4;7;14;0;10;18;11
-256;'442;Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;10000;999;999;0;0;0;0;0;0;0;0;0;0;0;0;0
-256;'442;Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24856;17560;6437;3038;20855;1386;856;1324;1245;1562;1599;3999;2100;1390;1390;1390;1741;1057;1232;1557;500;330;133;160
-256;'442;Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32790;30983;9308;22918;37237;7700;6215;7968;10594;13226;12939;18749;19167;14928;14928;14928;13270;9910.81;11198;11598;684;769;678;712
-256;'442;Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42414;38160;1330;1803;1272;928;434;305;11009;644;347;276;290;420;420;420;488;199;87;110;0;0;0;1
-256;'442;Luxembourg;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110947;89054;4154;1381;2623;891;6629;431;918;2485;2731;2852;2698;2281;2281;2281;3373;2010.68;795;1045;0;11;3;51
-256;'442;Luxembourg;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284866.7;303487;300215;292842;323280;307147;300076
-256;'442;Luxembourg;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38507.37;43646;41838;40918;40159;42037;41527
-256;'442;Luxembourg;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10908.98;10472;10472;10472;10472;10472;10472
-256;'442;Luxembourg;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14029.18;9795;9795;9795;9795;9795;9795
-256;'442;Luxembourg;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3160.38;3805;3805;3805;3805;3805;3805
-256;'442;Luxembourg;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485.69;458;458;458;458;458;458
-256;'442;Luxembourg;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7748.6;6667;6667;6667;6667;6667;6667
-256;'442;Luxembourg;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13543.5;9337;9337;9337;9337;9337;9337
-256;'442;Luxembourg;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18299.55;20121;20121;20121;20121;20121;20121
-256;'442;Luxembourg;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13809.34;20968;20968;20968;20968;20968;20968
-256;'442;Luxembourg;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3734.34;4067;4067;4067;4067;4067;4067
-256;'442;Luxembourg;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107.42;168;168;168;168;168;168
-256;'442;Luxembourg;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66436.46;63113;63113;63113;63113;63113;63113
-256;'442;Luxembourg;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240.79;5624;5624;5624;5624;5624;5624
-256;'442;Luxembourg;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3296;2669
-256;'442;Luxembourg;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7978;4970
-256;'442;Luxembourg;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;1477
-256;'442;Luxembourg;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;405
-256;'442;Luxembourg;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5090;4491
-256;'442;Luxembourg;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10063;8088
-256;'442;Luxembourg;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6
-256;'442;Luxembourg;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5
-256;'442;Luxembourg;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;633
-256;'442;Luxembourg;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;580
-256;'442;Luxembourg;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;27
-256;'442;Luxembourg;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;22
-256;'442;Luxembourg;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166904;179615;176343;168970;199408;183275;176204
-256;'442;Luxembourg;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4829;6393;4585;3665;2906;4784;4274
-256;'442;Luxembourg;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7983.66;10725;10725;10725;10725;10725;10725
-256;'442;Luxembourg;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03;29;29;29;29;29;29
-256;'442;Luxembourg;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10599.71;15374;15374;15374;15374;15374;15374
-256;'442;Luxembourg;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488.6;669;669;669;669;669;669
-256;'442;Luxembourg;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180456.73;202803;208957;199706;215811;250609;218025
-256;'442;Luxembourg;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338238.04;378651;386959;393703;438841;513813;392980
-256;'442;Luxembourg;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34.74;32;32;32;32;32;32
-256;'442;Luxembourg;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.22;3;3;3;3;3;3
-256;'442;Luxembourg;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70799;85666;91820;82569;98674;133472;100888
-256;'442;Luxembourg;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321080.8;361208;369516;376260;421398;496370;375537
-256;'442;Luxembourg;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31728.85;34012;34012;34012;34012;34012;34012
-256;'442;Luxembourg;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244.76;1166;1166;1166;1166;1166;1166
-256;'442;Luxembourg;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41370.33;46079;46079;46079;46079;46079;46079
-256;'442;Luxembourg;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4419.89;3097;3097;3097;3097;3097;3097
-256;'442;Luxembourg;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36523.81;37014;37014;37014;37014;37014;37014
-256;'442;Luxembourg;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11484.38;13177;13177;13177;13177;13177;13177
-129;'450;Madagascar;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73180;70595;91894;84313;86322.81;125919;102224
-129;'450;Madagascar;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17577;19840;25317;29502;33166;40981.11;30570.11
-129;'450;Madagascar;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1044;1227;1335;1761;5102;5072;3064;2170;1497;2099;2029;1487;1188;1123;1205;1470;1470;1470;5085;5886;10740;8349;8349;9436;10763;7360;8780;7877;5283;3517;3517;8356;6064;6693;10258;9313;9051;9409;4856;7514;7841;5701;5701;15047;15047;15819;17437;34900;16821;23759;26943;24700;26147.8;39274.02;39249.01;38170;35590;31282;44921;41873;41421.81;63444;50776
-129;'450;Madagascar;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;30;23;49;116;29;46;46;103;112;223;205;93;271;677;120;190;190;190;166;167;161;164;164;146;106;324;534;447;871;1774;3208;3618;2249;4540;2709;10770;8859;14311;12163;12280;19224;16414;16414;18726;18726;17863;18886;13515;20490;8860;9510;14372;8916;22175.22;7524;4658;7945;7863;10479;14148;14804;19424.11;7660.11
-129;'450;Madagascar;1861;Roundwood;5516;Production;m3;2597876;2669286;2867428;2977350;3104103;3247738;3473309;3755869;3832475;4202185;4318978;3696771;3596894;3210766;3524251;3480615;4016555;4115218;4249426;4500904;4826376;5105715;5371679;5641742;5923669;6203782;6497988;6780183;7066081;8186000;8543000;8916000;9114000;9311200;9754500;10141000;9209594;9224379;9505077;9763458;10045542;10327998;10693537;10952970;11237793;13315900;13344450;13377330;13344979;13380911;13380911;13325862;13489880;13774344;14062380;14331696;14592072;14855844;15119918;15384292;15646838;15909693;16172859
-129;'450;Madagascar;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;72;0;0;0;0;0;201;201;5843;8076;7232;5775;2948;1206;722;44;7;605;186;299;1455;2964;1694;1400;3408;8906
-129;'450;Madagascar;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;12;0;0;0;0;0;13;13;785;806;1018;235;753;124;54;1;1;169;73;26;576;628;615;283;1064;1099
-129;'450;Madagascar;1861;Roundwood;5916;Export quantity;m3;400;400;1200;5300;200;900;500;2200;3400;6900;7000;3000;1500;3600;550;1200;1200;1200;400;400;400;300;300;500;400;1400;2200;451;254;514;23603;6870;441;300;2500;1500;1400;128700;152000;46100;45200;13600;13600;43406;43406;9280;9323;10484;10428;4103;1229;15982;1987;3830;948;413;288;365;721;13997;12990;11073;521
-129;'450;Madagascar;1861;Roundwood;5922;Export value;1000 USD;10;13;37;104;3;25;25;82;100;149;159;68;179;548;91;161;161;161;137;138;139;104;104;86;46;264;534;286;140;138;1572;873;91;144;443;494;483;6808;7637;5577;4680;3126;3126;2575;2575;1712;865;3694;14137;380;265;6965;691;11961;136;38;44;154;161;6131;6953;9845;136
-129;'450;Madagascar;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;113000;114000;92000;92000;96000;179400;136700;136700;169500;198050;230930;160613;196545;196545;196545;99851;97973;101423;105179;100050;100050;100050;100050;100050;100050;100050
-129;'450;Madagascar;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;375;2779;110;700;786;7015
-129;'450;Madagascar;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;80;598;28;126;418;366
-129;'450;Madagascar;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;37;399;11834;12240;10359;126
-129;'450;Madagascar;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;28;5577;6742;9587;32
-129;'450;Madagascar;1863;Roundwood, non-coniferous;5516;Production;m3;2597876;2669286;2867428;2977350;3104103;3247738;3473309;3755869;3832475;4202185;4318978;3696771;3596894;3210766;3524251;3480615;4016555;4115218;4249426;4500904;4826376;5105715;5371679;5641742;5923669;6203782;6497988;6780183;7066081;8186000;8543000;8916000;9114000;9311200;9754500;10141000;9209594;9111379;9391077;9671458;9953542;10231998;10514137;10816270;11101093;13146400;13146400;13146400;13184366;13184366;13184366;13129317;13390029;13676371;13960957;14226517;14492022;14755794;15019868;15284242;15546788;15809643;16072809
-129;'450;Madagascar;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1080;185;1584;700;2622;1891
-129;'450;Madagascar;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;496;30;587;157;646;733
-129;'450;Madagascar;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;328;322;2163;750;714;395
-129;'450;Madagascar;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;149;133;554;211;258;104
-129;'450;Madagascar;1864;Wood fuel;5516;Production;m3;2177876;2239286;2302428;2367350;2434103;2502738;2573309;2645869;2720475;2797185;2822978;2881771;2951894;2998766;3056251;3145615;3209555;3308218;3442426;3693904;4019376;4298715;4564679;4834742;5116669;5396782;5690988;5973183;6259081;7379000;7736000;8109000;8497000;8900000;9321000;9760000;8836594;9077379;9357077;9637458;9919542;10202298;10485737;10769870;11054693;13100000;13100000;13100000;13100000;13100000;13100000;13044951;13326632;13608812;13891495;14154669;14418142;14681914;14945988;15210362;15472908;15735763;15998929
-129;'450;Madagascar;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;;;0;0;0;0;0
-129;'450;Madagascar;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;;;0;0;1;1;1
-129;'450;Madagascar;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;119;30;3;7;304;414;330;330;330;330
-129;'450;Madagascar;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;3;1;1;84;101;89;89;89;89
-129;'450;Madagascar;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-129;'450;Madagascar;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1
-129;'450;Madagascar;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;26;26;26;26
-129;'450;Madagascar;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;5;5;5;5
-129;'450;Madagascar;1628;Wood fuel, non-coniferous;5516;Production;m3;2177876;2239286;2302428;2367350;2434103;2502738;2573309;2645869;2720475;2797185;2822978;2881771;2951894;2998766;3056251;3145615;3209555;3308218;3442426;3693904;4019376;4298715;4564679;4834742;5116669;5396782;5690988;5973183;6259081;7379000;7736000;8109000;8497000;8900000;9321000;9760000;8836594;9077379;9357077;9637458;9919542;10202298;10485737;10769870;11054693;13100000;13100000;13100000;13100000;13100000;13100000;13044951;13326632;13608812;13891495;14154669;14418142;14681914;14945988;15210362;15472908;15735763;15998929
-129;'450;Madagascar;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-129;'450;Madagascar;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-129;'450;Madagascar;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;304;304;304;304;304;304
-129;'450;Madagascar;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;84;84;84;84;84;84
-129;'450;Madagascar;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;;;;;;;
-129;'450;Madagascar;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;;;;;;;
-129;'450;Madagascar;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;119;30;3;;;;;;;
-129;'450;Madagascar;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;3;1;;;;;;;
-129;'450;Madagascar;1865;Industrial roundwood;5516;Production;m3;420000;430000;565000;610000;670000;745000;900000;1110000;1112000;1405000;1496000;815000;645000;212000;468000;335000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;617000;411200;433500;381000;373000;147000;148000;126000;126000;125700;207800;183100;183100;215900;244450;277330;244979;280911;280911;280911;163248;165532;170885;177027;173930;173930;173930;173930;173930;173930;173930
-129;'450;Madagascar;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;72;0;0;0;0;0;201;201;5843;8076;7232;5775;2948;1206;722;44;7;603;184;299;1455;2964;1694;1400;3408;8906
-129;'450;Madagascar;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;12;0;0;0;0;0;13;13;785;806;1018;235;753;124;54;1;1;168;72;26;576;628;615;282;1063;1098
-129;'450;Madagascar;1865;Industrial roundwood;5916;Export quantity;m3;400;400;1200;5300;200;900;500;2200;3400;6900;7000;3000;1500;3600;550;1200;1200;1200;400;400;400;300;300;500;400;1400;2200;451;254;514;23603;6870;441;300;2500;1500;1400;128700;152000;46100;45200;13600;13600;43406;43406;9280;9323;10484;10428;4103;1110;15863;1868;3711;918;410;281;61;307;13667;12660;10743;191
-129;'450;Madagascar;1865;Industrial roundwood;5922;Export value;1000 USD;10;13;37;104;3;25;25;82;100;149;159;68;179;548;91;161;161;161;137;138;139;104;104;86;46;264;534;286;140;138;1572;873;91;144;443;494;483;6808;7637;5577;4680;3126;3126;2575;2575;1712;865;3694;14137;380;249;6949;675;11945;133;37;43;70;60;6042;6864;9756;47
-129;'450;Madagascar;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;113000;114000;92000;92000;96000;179400;136700;136700;169500;198050;230930;160613;196545;196545;196545;99851;97973;101423;105179;100050;100050;100050;100050;100050;100050;100050
-129;'450;Madagascar;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;0;0;0;0;4181;6866;6963;5766;1960;1065;485;34;7;5;3;299;375;2779;110;700;786;7015
-129;'450;Madagascar;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;458;755;865;232;222;112;24;1;1;1;0;26;80;598;28;125;417;365
-129;'450;Madagascar;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;4954;4954;74;0;1900;700;600;99400;114000;0;0;0;0;496;496;5475;8917;8917;3035;4077;640;7;130;57;329;410;87;37;289;11808;12214;10333;100
-129;'450;Madagascar;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;506;506;13;0;231;85;74;5146;5939;0;0;0;0;26;26;378;770;717;276;351;65;12;53;7;34;37;3;5;11;5572;6737;9582;27
-129;'450;Madagascar;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;0;0;0;0;4181;6866;6963;5766;1960;1065;485;34;7;5;3;299;375;2779;110;700;786;7015
-129;'450;Madagascar;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;458;755;865;232;222;112;24;1;1;1;0;26;80;598;28;125;417;365
-129;'450;Madagascar;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;4954;4954;74;0;1900;700;600;99400;114000;0;0;0;0;496;496;5475;8917;8917;3035;4077;640;7;130;57;329;410;87;37;289;11808;12214;10333;100
-129;'450;Madagascar;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;506;506;13;0;231;85;74;5146;5939;0;0;0;0;26;26;378;770;717;276;351;65;12;53;7;34;37;3;5;11;5572;6737;9582;27
-129;'450;Madagascar;1867;Industrial roundwood, non-coniferous;5516;Production;m3;420000;430000;565000;610000;670000;745000;900000;1110000;1112000;1405000;1496000;815000;645000;212000;468000;335000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;807000;617000;411200;433500;381000;373000;34000;34000;34000;34000;29700;28400;46400;46400;46400;46400;46400;84366;84366;84366;84366;63397;67559;69462;71848;73880;73880;73880;73880;73880;73880;73880
-129;'450;Madagascar;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;0;0;0;0;0;0;201;201;1662;1210;269;9;988;141;237;10;0;598;181;0;1080;185;1584;700;2622;1891
-129;'450;Madagascar;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;0;0;0;0;0;0;13;13;327;51;153;3;531;12;30;0;0;167;72;0;496;30;587;157;646;733
-129;'450;Madagascar;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;18649;1916;367;300;600;800;800;29300;38000;46100;45200;13600;13600;42910;42910;3805;406;1567;7393;26;470;15856;1738;3654;589;0;194;24;18;1859;446;410;91
-129;'450;Madagascar;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;1066;367;78;144;212;409;409;1662;1698;5577;4680;3126;3126;2549;2549;1334;95;2977;13861;29;184;6937;622;11938;99;0;40;65;49;470;127;174;20
-129;'450;Madagascar;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;849;258;9;979;30;100;0;0;0;170;0;0;0;0;0;0;0
-129;'450;Madagascar;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;36;150;3;527;3;15;0;0;0;67;0;0;0;0;0;0;0
-129;'450;Madagascar;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;18649;1916;367;300;600;800;800;28900;37600;41000;41100;9500;9500;197;197;3805;209;1549;7393;26;230;30;870;3371;589;0;194;24;18;1859;446;272;91
-129;'450;Madagascar;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;1066;367;78;144;212;409;409;1432;1468;2216;2340;786;786;29;29;1334;69;2976;13861;29;155;24;398;11908;99;0;40;65;49;470;127;109;20
-129;'450;Madagascar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;0;0;0;0;0;0;201;201;1145;361;11;0;9;111;137;10;0;598;11;0;1080;185;1584;700;2622;1891
-129;'450;Madagascar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373;373;373;0;0;0;0;0;0;13;13;313;15;3;0;4;9;15;0;0;167;5;0;496;30;587;157;646;733
-129;'450;Madagascar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;5100;4100;4100;4100;42713;42713;0;197;18;0;0;240;15826;868;283;0;0;0;0;0;0;0;138;0
-129;'450;Madagascar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;230;3361;2340;2340;2340;2520;2520;0;26;1;0;0;29;6913;224;30;0;0;0;0;0;0;0;65;0
-129;'450;Madagascar;1868;Sawlogs and veneer logs;5516;Production;m3;170000;180000;320000;365000;395000;445000;500000;710000;712000;1005000;1096000;415000;245000;110000;350000;204000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;278000;72200;94500;42000;34000;106000;113000;103000;103000;102700;184800;160100;160100;192900;222450;266930;234579;270511;270511;270511;152848;155132;155132;155132;155132;155132;155132;155132;155132;155132;155132
-129;'450;Madagascar;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1868;Sawlogs and veneer logs;5916;Export quantity;m3;400;400;1200;5300;200;900;500;2200;3400;6900;7000;3000;1500;3600;550;1200;1200;1200;400;400;400;300;300;500;400;1400;2200;451;254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;10;13;37;104;3;25;25;82;100;149;159;68;179;548;91;161;161;161;137;138;139;104;104;86;46;264;534;286;140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;72000;79000;69000;69000;73000;156400;113700;113700;146500;176050;220530;150213;186145;186145;186145;89451;87573;87573;87573;87573;87573;87573;87573;87573;87573;87573
-129;'450;Madagascar;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;170000;180000;320000;365000;395000;445000;500000;710000;712000;1005000;1096000;415000;245000;110000;350000;204000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;468000;278000;72200;94500;42000;34000;34000;34000;34000;34000;29700;28400;46400;46400;46400;46400;46400;84366;84366;84366;84366;63397;67559;67559;67559;67559;67559;67559;67559;67559;67559;67559
-129;'450;Madagascar;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;400;400;1200;5300;200;900;500;2200;3400;6900;7000;3000;1500;3600;550;1200;1200;1200;400;400;400;300;300;500;400;1400;2200;451;254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;10;13;37;104;3;25;25;82;100;149;159;68;179;548;91;161;161;161;137;138;139;104;104;86;46;264;534;286;140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;35000;23000;23000;23000;23000;23000;23000;23000;22000;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400
-129;'450;Madagascar;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;35000;23000;23000;23000;23000;23000;23000;23000;22000;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400;10400
-129;'450;Madagascar;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1871;Other industrial roundwood;5516;Production;m3;250000;250000;245000;245000;275000;300000;400000;400000;400000;400000;400000;400000;400000;102000;118000;131000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5353;11495;8398;8398;8398;8398;8398;8398;8398
-129;'450;Madagascar;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3450;7206;2077;2077;2077;2077;2077;2077;2077
-129;'450;Madagascar;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;250000;250000;245000;245000;275000;300000;400000;400000;400000;400000;400000;400000;400000;102000;118000;131000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1903;4289;6321;6321;6321;6321;6321;6321;6321
-129;'450;Madagascar;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17652;45659;73968;102965;132372;162858;193960;224932;256700;288768;322531;343000;378000;418000;461000;509000;562000;620000;614000;769000;622000;645000;589000;795011;833472;871934;910395;949766;989100;1028500;1067880;1194970;1194970;1186806;1560024;1560024;1560024;1560024;1560024;1560024;1464974;1504682;1543918;1583154;1622389
-129;'450;Madagascar;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0.01;0.01;0.03;2;88;88;0;1;3;3;6
-129;'450;Madagascar;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0.2;0.02;0.01;1;105;105;1;5;8;9;12
-129;'450;Madagascar;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;13300;100;34700;32000;17000;17000;19700;28600;28600;28600;28600;28600;28600;28600;51;52;33;55;40;63;56;79;15;0;0;1;0;2;2;2
-129;'450;Madagascar;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;3000;43;8202;6057;3029;3029;2719;9465;9465;9465;9465;9465;9465;9465;22;20;5;17;14;17;19;25;5;0;0;1;0;1;1;1
-129;'450;Madagascar;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4600;6600;6600;6600;1800;1900;1900;12300;8100;9500;7710;8252;8252;8252;3704;2650;5610;5067;5531;5531;5531;5531;5531;5531;5531
-129;'450;Madagascar;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;389;389;389;7;32;12;57;27.2;4;5;34;18;16;22;14;12;39;10;4
-129;'450;Madagascar;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;17;35;27;179;38;2.3;22;55;15;28;10;3;8;2;6;8
-129;'450;Madagascar;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;70;70;70;70;415;76;27;27;2;0;0;56;56;56;56;56;33;33;33;33
-129;'450;Madagascar;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;3;3;3;3;31;10;6;6;3;0;0;110;110;110;110;110;7;7;7;7
-129;'450;Madagascar;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11300;7100;7100;7100;7100;7100;7100;2552;1498;4458;3760;1766;1766;1766;1766;1766;1766;1766
-129;'450;Madagascar;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0.2;3;1;2;8;8;8;0;1;0;1;4
-129;'450;Madagascar;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;2;3;3;7;7;7;0;2;0;4;7
-129;'450;Madagascar;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;65;74;25;25;0;0;0;50;50;50;50;50;33;33;33;33
-129;'450;Madagascar;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;11;7;3;3;0;0;0;94;94;94;94;94;7;7;7;7
-129;'450;Madagascar;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4600;6600;6600;6600;1800;1900;1900;1000;1000;2400;610;1152;1152;1152;1152;1152;1152;1307;3765;3765;3765;3765;3765;3765;3765
-129;'450;Madagascar;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;389;389;389;7;32;12;55;27;1;4;32;10;8;14;14;11;39;9;0
-129;'450;Madagascar;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;17;35;27;174;37;0.3;19;52;8;21;3;3;6;2;2;1
-129;'450;Madagascar;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;350;2;2;2;2;0;0;6;6;6;6;6;0;0;0;0
-129;'450;Madagascar;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;20;3;3;3;3;0;0;16;16;16;16;16;0;0;0;0
-129;'450;Madagascar;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7;10;5;459;459;459;43;15;13;11;3
-129;'450;Madagascar;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3;27;8;195;195;195;9;20;16;11;2
-129;'450;Madagascar;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;0;0.32;0.32
-129;'450;Madagascar;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0.11;0.11
-129;'450;Madagascar;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;0;0;0;0;2;6;10;2
-129;'450;Madagascar;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;0;0;0;1;4;11;1
-129;'450;Madagascar;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7;3;1;459;459;459;43;13;7;1;1
-129;'450;Madagascar;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3;19;3;195;195;195;9;19;12;0;1
-129;'450;Madagascar;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;0;0.32;0.32
-129;'450;Madagascar;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0.11;0.11
-129;'450;Madagascar;1872;Sawnwood;5516;Production;m3;45500;60500;47100;48000;57600;78900;89900;93000;103000;103000;103000;103000;122000;55000;175000;102000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;234000;237500;144000;74000;84000;84000;84000;84000;102000;52100;43600;43600;56850;56150;56150;49950;50650;92000;92000;103900;103900;103900;87904;72142;74760;67925;87340;76083;76083;76083;76083;76083;76083
-129;'450;Madagascar;1872;Sawnwood;5616;Import quantity;m3;2000;1400;1400;600;500;500;300;300;300;500;300;200;200;300;300;200;200;200;200;200;2500;700;700;500;100;100;100;19607;13294;4711;4711;23472;12;0;0;0;0;6707;0;0;0;0;0;905;905;905;1088;955;1736;44;31;32;13;29;718;357;164;266;66;701;111;401;444
-129;'450;Madagascar;1872;Sawnwood;5622;Import value;1000 USD;129;104;104;51;134;134;63;61;47;131;69;43;34;89;89;70;70;70;70;70;600;160;160;83;12;8;8;5618;3088;1204;1204;6435;5;0;0;0;0;1675;0;0;0;0;0;224;224;224;162;493;1083;140;61;44;331;38;191;177;63;142;37;216;110;192;203
-129;'450;Madagascar;1872;Sawnwood;5916;Export quantity;m3;400;100;200;200;400;200;200;200;200;1300;700;400;1600;1200;200;300;300;300;300;300;100;300;300;300;300;300;0;441;1486;2373;2373;8418;5448;10200;15200;9300;12100;23600;10600;19200;27800;25500;25500;27773;27773;27773;25253;34965;27785;25591;23724;30896;27736;32672;21385;12478;47102;48198;49092;29425;48262;31196;34915
-129;'450;Madagascar;1872;Sawnwood;5922;Export value;1000 USD;20;10;12;12;26;21;21;21;12;74;46;25;92;129;29;29;29;29;29;29;22;60;60;60;60;60;0;161;731;1636;1636;2544;2116;1396;2223;2074;2319;4321;1494;3984;5079;3823;3823;6463;6463;6463;8131;8981;5838;7671;6612;6065;7100;9134;6141;3208;6016;5996;6361;6398;5946;6740;5926
-129;'450;Madagascar;1632;Sawnwood, coniferous;5516;Production;m3;250;250;550;500;6300;7450;8450;8500;11500;11500;11500;11500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;5000;5000;10000;20000;20000;20000;20000;3000;4000;4000;4000;8400;7700;7700;1500;2200;42000;42000;42000;42000;42000;50000;50000;50000;23273;64080;50744;50744;50744;50744;50744;50744
-129;'450;Madagascar;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;0;0;0;0;65;0;0;0;0;0;393;393;393;393;779;1649;1;1;8;3;18;443;211;125;150;3;440;13;357;359
-129;'450;Madagascar;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;0;0;0;0;13;0;0;0;0;0;68;68;68;68;401;773;1;5;8;269;16;130;53;30;41;2;109;4;151;114
-129;'450;Madagascar;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4324;1780;7300;13000;7800;11400;17000;8100;6400;7900;5100;5100;14453;14453;14453;14453;33457;26751;23000;21404;25026;19106;26572;19895;11308;45302;45807;45000;24684;44258;28124;33135
-129;'450;Madagascar;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;242;1051;1993;1489;1882;2673;879;1075;1065;405;405;2414;2414;2414;2414;7896;4264;5382;5234;4075;4597;6633;4921;2417;5220;5349;5670;5513;4976;5621;5332
-129;'450;Madagascar;1633;Sawnwood, non-coniferous;5516;Production;m3;45250;60250;46550;47500;51300;71450;81450;84500;91500;91500;91500;91500;120500;53500;173500;100500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;232500;139000;64000;64000;64000;64000;64000;99000;48100;39600;39600;48450;48450;48450;48450;48450;50000;50000;61900;61900;61900;37904;22142;24760;44652;23260;25339;25339;25339;25339;25339;25339
-129;'450;Madagascar;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2000;1400;1400;600;500;500;300;300;300;500;300;200;200;300;300;200;200;200;200;200;2500;700;700;500;100;100;100;19607;13294;4711;4711;23453;12;0;0;0;0;6642;0;0;0;0;0;512;512;512;695;176;87;43;30;24;10;11;275;146;39;116;63;261;98;44;85
-129;'450;Madagascar;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;129;104;104;51;134;134;63;61;47;131;69;43;34;89;89;70;70;70;70;70;600;160;160;83;12;8;8;5618;3088;1204;1204;6432;5;0;0;0;0;1662;0;0;0;0;0;156;156;156;94;92;310;139;56;36;62;22;61;124;33;101;35;107;106;41;89
-129;'450;Madagascar;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;400;100;200;200;400;200;200;200;200;1300;700;400;1600;1200;200;300;300;300;300;300;100;300;300;300;300;300;0;441;1486;2373;2373;4094;3668;2900;2200;1500;700;6600;2500;12800;19900;20400;20400;13320;13320;13320;10800;1508;1034;2591;2320;5870;8630;6100;1490;1170;1800;2391;4092;4741;4004;3072;1780
-129;'450;Madagascar;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;20;10;12;12;26;21;21;21;12;74;46;25;92;129;29;29;29;29;29;29;22;60;60;60;60;60;0;161;731;1636;1636;2047;1874;345;230;585;437;1648;615;2909;4014;3418;3418;4049;4049;4049;5717;1085;1574;2289;1378;1990;2503;2501;1220;791;796;647;691;885;970;1119;594
-129;'450;Madagascar;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12178;20423;35622;30000;38190;38190;38190;38190;38190;38190
-129;'450;Madagascar;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;14;0;200;100;100;100;57;57;57;232;156;100;179;71;196;212;78;472;198;242;582;84;614;36;7;8
-129;'450;Madagascar;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;31;0;120;42;28;28;44;44;44;127;171;43;75;34;78;77;74;253;205;112;285;49;102;31;25;23
-129;'450;Madagascar;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;318;0;0;0;0;0;86;86;86;100;3;20;4;22;20;60;60;477;2615;4937;4307;5293;5510;3071;1647;83
-129;'450;Madagascar;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;115;0;0;0;0;0;67;67;67;27;4;24;5;65;59;190;144;89;369;574;525;568;641;361;246;174
-129;'450;Madagascar;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;948;1264;1474;1474;1474;1474;1474;1474;1474;1474;1474;1474;2000;3000;5000;1000;6500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;1200;1400;1400;1400;1400;1400;1653;1548;3650;9803;3409;5720;5720;5489;5489;5489;5489
-129;'450;Madagascar;1873;Wood-based panels;5616;Import quantity;m3;900;1200;1600;1400;1000;900;1700;1900;2000;2000;2100;1400;700;700;1000;300;300;300;1200;900;400;100;100;100;100;100;100;124;401;51;51;14;75;75;800;600;0;992;1000;400;1900;800;800;4478;4478;4478;5832;3227;1971;2563;3180;4396;4367;4708;5762;5341;6598;4934;8972;13586;11709.87;12196;11495
-129;'450;Madagascar;1873;Wood-based panels;5622;Import value;1000 USD;214;333;455;477;303;273;526;524;579;544;590;441;269;391;473;126;126;126;330;270;140;64;64;64;64;64;64;71;126;56;56;9;89;89;162;125;0;424;343;229;493;199;199;850;850;850;2362;3024;852;1062;1437;1653;1685;2190;2549;2724;2872;2208;3552;3672;3997.97;5216;4708
-129;'450;Madagascar;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;73;0;0;0;0;0;52;52;52;148;110;2;48;70;46;14;13.51;9;20;9;43;466;506;466;486;487
-129;'450;Madagascar;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;33;0;0;0;0;0;9;9;9;73;116;0;45;67;36;12;15.22;5;26;10;47;180;184;181;312;297
-129;'450;Madagascar;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;253;148;3000;6921;3409;5720;5720;5489;5489;5489;5489
-129;'450;Madagascar;1640;Plywood and LVL;5616;Import quantity;m3;900;1200;1600;1400;1000;900;1700;1900;2000;2000;2100;1400;700;700;1000;300;300;300;1200;900;400;100;100;100;100;100;100;124;401;51;51;14;75;75;200;200;0;600;600;200;500;300;300;577;577;577;2822;2038;905;919;1204;2052;2276;2303;1966;3568;4180;4174;3933;8445;6331;6294;4726
-129;'450;Madagascar;1640;Plywood and LVL;5622;Import value;1000 USD;214;333;455;477;303;273;526;524;579;544;590;441;269;391;473;126;126;126;330;270;140;64;64;64;64;64;64;71;126;56;56;9;89;89;96;106;0;287;287;120;231;126;126;205;205;205;1478;1943;484;388;559;783;874;1179;1252;1754;1419;1686;1462;1780;1655;2124;1675
-129;'450;Madagascar;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;62;0;0;0;0;0;0;0;0;0;6;0;4;26;1;1;0.51;9;8;7;41;1;41;1;0;1
-129;'450;Madagascar;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;31;0;0;0;0;0;0;0;0;0;31;0;13;35;2;0;0.22;5;14;3;40;1;4;0;0;5
-129;'450;Madagascar;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128
-129;'450;Madagascar;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58
-129;'450;Madagascar;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;88;0;0;200;100;100;1385;1385;1385;717;497;259;469;637;1082;0;0;457;39;654;654;1576;1611;1834.48;2035;1265
-129;'450;Madagascar;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;32;0;0;91;36;36;227;227;227;442;507;139;215;186;257;0;0;138;51;450;450;702;595;878.52;1042;708
-129;'450;Madagascar;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;52;52;52;52;8;0;0;0;1;1;0;0;0;0;0;1;1;1;4;4
-129;'450;Madagascar;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;9;9;9;9;21;0;0;0;2;2;0;0;0;0;0;1;1;2;6;6
-129;'450;Madagascar;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;39;35;15;93;63;687;978;381;459;247;41;589;435;204;291;101
-129;'450;Madagascar;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;34;19;7;57;34;234;421;184;196;119;20;164;113;70;134;76
-129;'450;Madagascar;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;948;1264;1474;1474;1474;1474;1474;1474;1474;1474;1474;1474;2000;3000;5000;1000;6500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;1200;1400;1400;1400;1400;1400;1400;1400;650;2882;0;0;0;0;0;0;0
-129;'450;Madagascar;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;0;304;400;200;1200;400;400;2433;2433;2433;2210;653;772;1160;1246;1199;1404;1427;2958;1275;1517;65;2874;3095;3340.39;3576;5403
-129;'450;Madagascar;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;105;56;109;171;37;37;404;404;404;428;540;210;452;635;579;577;590;975;723;884;52;1224;1184;1394.45;1916;2249
-129;'450;Madagascar;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;2;44;44;44;12;13;0;12;2;2;464;464;464;482;482
-129;'450;Madagascar;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;0;32;32;32;10;15;0;12;7;7;178;179;179;306;286
-129;'450;Madagascar;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;1200;1400;1400;1400;1400;1400;1400;1400;650;2882;0;0;0;0;0;0;0
-129;'450;Madagascar;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;0;0;100;0;0;216;216;216;109;29;53;32;611;600;125;20;43;82;30;6;111;48;0;7;55
-129;'450;Madagascar;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;19;0;0;100;100;100;72;26;34;18;286;279;25;10;21;45;18;5;53;45;1;25;47
-129;'450;Madagascar;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;2;44;44;44;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;0;32;32;32;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;0;0;0;0;0;518;518;518;402;605;689;976;609;545;1260;1356;2812;1153;1448;36;2538;2913;3203.39;3414;5340
-129;'450;Madagascar;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;0;0;0;88;88;88;140;476;168;415;340;278;539;568;890;638;832;33;1016;1067;1332.45;1847;2188
-129;'450;Madagascar;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;0;12;2;2;0;0;0;18;18
-129;'450;Madagascar;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;15;0;12;7;7;2;3;3;130;110
-129;'450;Madagascar;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;0;24;400;200;1100;400;400;1699;1699;1699;1699;19;30;152;26;54;19;51;103;40;39;23;225;134;137;155;8
-129;'450;Madagascar;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;4;56;109;152;37;37;216;216;216;216;38;8;19;9;22;13;12;64;40;34;14;155;72;61;44;14
-129;'450;Madagascar;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;0;0;0;0;8;0;0;0;0;0;464;464;464;464;464
-129;'450;Madagascar;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;5;0;0;0;0;0;176;176;176;176;176
-129;'450;Madagascar;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;948;1264;1474;1474;1474;1474;1474;1474;1474;1474;1474;1474;2000;3000;5000;1000;6500;5000;5000;5000;5000;5000;5000;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1879;Total fibre furnish;5510;Production;t;;;1000;1000;1000;1000;1000;2800;2800;2900;3300;5000;6100;7000;6573;7400;8300;8300;8300;8300;8300;8300;10000;9600;9200;9200;9200;8200;7200;7170;4500;4440;8700;4100;3900;4100;3500;4600;4100;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4900;4800;4700;5000;3787;2870;2870;2870;2870;2870;2870;2870
-129;'450;Madagascar;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;3700;3700;4300;7300;6700;5000;962;1219;1318;1318;2510;4122;5000;4700;2700;4600;3600;4300;3400;2100;2100;2100;1833;1833;1833;106;142;142;184;566;651;384;548;444;898;913;948;1009;1030;996.06;1728;1388
-129;'450;Madagascar;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2220;2220;2392;3740;2892;2650;147;200;268;268;321;1168;1160;965;726;658;582;497;279;150;150;150;206;206;206;19;49;24;63;474;575;292;408;333;522;505;494;601;565;625.32;1735;1434
-129;'450;Madagascar;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;241;1075;1636;2130;2235;2110;2400;2495;2495;2474;2117;3244.73;3219;2027
-129;'450;Madagascar;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;60;173;207;289;337;321;355;409;409;217;188;493;425;160
-129;'450;Madagascar;1878;Pulp for paper;5510;Production;t;;;;;;;;1800;1800;1900;2300;4000;5100;6000;5573;6400;7300;7300;7300;7300;7300;7300;9000;8600;7200;7200;6200;6200;6200;6200;3600;3600;3700;3200;3100;3300;2700;2700;2500;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2000;2000;2000;2000;2000;2000;2000
-129;'450;Madagascar;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;4000;7000;4700;4000;0;0;0;0;11;22;0;0;0;0;0;0;0;0;0;0;6;6;6;6;14;15;63;535;525;336;446;285;372;394;429;419;504;436;1117;990
-129;'450;Madagascar;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;2249;3597;1992;2480;0;0;0;0;9;13;0;0;0;0;0;0;0;0;0;0;3;3;3;3;16;10;56;434;533;285;398;303;408;425;414;462;459;511.32;1573;1312
-129;'450;Madagascar;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1875;Wood pulp;5510;Production;t;;;;;;;;1800;1800;1900;2300;2100;3100;4000;3573;4400;5300;5300;5300;5300;5300;5300;7000;6600;5200;5200;4200;4200;4200;4200;1600;1600;1700;1200;1100;1300;700;700;500;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;;;;;;;
-129;'450;Madagascar;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;0;0;0;0;48;0;0;60;60;60;65;65;65;65;73;6;49;507;499;318;406;295;393;419;428;416;533;460;1312;1199
-129;'450;Madagascar;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;0;0;0;0;40;0;0;55;55;55;57;57;57;57;70;2;44;403;486;263;329;262;375;394;357;395;438;486.32;1800;1572
-129;'450;Madagascar;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;1800;1800;1900;2300;2100;2600;3500;3200;2800;3700;3700;3700;3700;3700;3700;5000;4800;4200;3900;3700;3700;3700;3100;1300;1300;1400;900;800;1000;400;400;200;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;;;;;;;
-129;'450;Madagascar;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;0;0;0;;;;;;;
-129;'450;Madagascar;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;0;0;0;;;;;;;
-129;'450;Madagascar;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;500;500;373;1600;1600;1600;1600;1600;1600;1600;2000;1800;1000;1300;500;500;500;1100;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;;;;;;;
-129;'450;Madagascar;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;0;0;239;325;100;197;96;0;;;;;;;
-129;'450;Madagascar;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;119;303;94;183;91;0;;;;;;;
-129;'450;Madagascar;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;12;6;49;261;167;211;209;149;343;369;404;392;486;413;1094;981
-129;'450;Madagascar;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;15;2;44;262;161;147;146;143;347;366;355;393;409;457.32;1521;1293
-129;'450;Madagascar;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;102;152;152;152;49;49;49;49
-129;'450;Madagascar;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;99;151;151;159;49;49;49;49
-129;'450;Madagascar;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;68;159;159;99;241;217;252;240;437;364;1045;932
-129;'450;Madagascar;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;66;95;95;92;248;215;204;234;360;408.32;1472;1244
-129;'450;Madagascar;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;12;6;49;49;49;2;0;0;0;;;;;;;
-129;'450;Madagascar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;15;2;44;44;44;1;0;0;0;;;;;;;
-129;'450;Madagascar;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;0;60;60;60;60;60;60;60;60;0;0;0;0;0;0;50;50;50;24;24;47;47;218;218
-129;'450;Madagascar;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;55;55;55;55;55;55;55;55;0;0;0;0;0;0;28;28;28;2;2;29;29;279;279
-129;'450;Madagascar;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;1900;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-129;'450;Madagascar;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;4000;7000;4700;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;9;14;28;26;18;40;40;29;25;25;27;18;23;23;9
-129;'450;Madagascar;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;2249;3597;1992;2480;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;8;12;31;47;22;69;69;61;59;59;69;50;54;52;19
-129;'450;Madagascar;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;2000;2000;3000;2000;1000;970;900;840;5000;900;800;800;800;1900;1600;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2100;2000;2300;1087;870;870;870;870;870;870;870
-129;'450;Madagascar;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;3700;3700;300;300;2000;1000;962;1219;1318;1318;2499;4100;5000;4700;2700;4600;3600;4300;3400;2100;2100;2100;1827;1827;1827;100;128;127;121;31;126;48;102;159;526;519;519;590;526;560.06;611;398
-129;'450;Madagascar;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2220;2220;143;143;900;170;147;200;268;268;312;1155;1160;965;726;658;582;497;279;150;150;150;203;203;203;16;33;14;7;40;42;7;10;30;114;80;80;139;106;114;162;122
-129;'450;Madagascar;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;241;1075;1636;2130;2235;2110;2400;2495;2495;2474;2117;3244.73;3219;2027
-129;'450;Madagascar;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;60;173;207;289;337;321;355;409;409;217;188;493;425;160
-129;'450;Madagascar;1876;Paper and paperboard;5510;Production;t;;;4320;4000;4000;3000;5000;4700;5500;5200;7200;5800;8400;10400;9417;12400;12400;12400;12400;12400;20735;18212;17987;15765;17747;18435;11602;10128;11204;13329;10221;8840;11425;13795;11926;9175;10280;12682;7304;10973;9623;9123;9839;9839;9839;9839;9839;9839;9839;9839;9839;9839;97971;66951;82792;32593;33409;33409;33409;33409;33409;33409;33409
-129;'450;Madagascar;1876;Paper and paperboard;5610;Import quantity;t;2200;2200;2300;3000;8800;8800;4000;3300;2400;2700;3200;1200;1000;1100;1100;1100;1100;1100;2200;2200;3500;1200;1200;2100;2500;1400;1000;904;807;716;716;1543;5698;5500;6100;6600;6800;6500;3600;7300;8300;5900;5900;19790;19790;19790;17533;28678;14109;22927;22598;22734;26012;37432;45208;42072;36618;39615;45605;55096;38287.83;47656;47703
-129;'450;Madagascar;1876;Paper and paperboard;5622;Import value;1000 USD;701;790;776;1233;4665;4665;2475;1585;871;1424;1370;1003;885;643;643;1274;1274;1274;4685;5546;10000;5905;5905;6897;6947;4396;6058;2041;1869;1989;1989;1588;4779;5444;8758;8089;8020;6645;4016;6886;7101;5269;5269;13637;13637;13637;13888;30070;14549;21639;24634;22258;23759;36514;35663;34230;31656;27265;40039;36641;36319.52;54907;43008
-129;'450;Madagascar;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;33;0;0;0;0;8;8;0;0;0;0;227;227;227;343;544;301;542;894;351;321;315;159;401;482;374;3249;259;1202;1095;420
-129;'450;Madagascar;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;28;0;0;0;0;3;3;0;0;0;0;144;144;144;322;667;423;688;2305;1023;617;565;697;547;782;622;2881;598;862;1848;959
-129;'450;Madagascar;2042;Graphic papers;5510;Production;t;;;4320;4000;4000;3000;5000;4100;5100;4200;4500;4500;5700;4600;9017;11700;11700;11700;11700;11700;11700;8900;8000;6600;7400;7850;3040;1040;1040;3350;3470;3320;4420;3920;3270;2400;2600;2800;1130;2160;2160;1160;2232;2232;2232;2232;2232;2232;2232;2232;2232;2232;2232;2232;1450;873;238;238;238;238;238;238;238
-129;'450;Madagascar;2042;Graphic papers;5610;Import quantity;t;;;;;4300;4300;900;200;300;300;100;100;100;100;100;100;100;100;600;600;1000;800;800;1700;2300;900;800;704;607;516;516;743;1098;1700;2400;3400;2200;3900;2700;4600;6000;4100;4100;12304;12304;12304;11500;12118;10010;11582;9547;8588;12576;23728;32968;30117;14668;17299;15325;18750;13052;13328;15910
-129;'450;Madagascar;2042;Graphic papers;5622;Import value;1000 USD;;;;;2451;2451;932;42;52;52;14;10;10;10;10;10;10;10;1456;1456;3000;3274;3274;4266;5631;3095;5034;1017;845;965;965;834;1093;1516;2865;4413;2246;3990;2914;3968;4786;3075;3075;8363;8363;8363;9600;13442;9470;11338;9491;7836;11248;23715;25840;22105;12601;14745;14052;11904;12503.37;16997;17597
-129;'450;Madagascar;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;29;0;0;0;0;;;;;;;26;26;26;82;172;47;60;348;93;42;111;94;144;116;116;106;51;97;94;78
-129;'450;Madagascar;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;25;0;0;0;0;;;;;;;19;19;19;104;175;71;89;372;322;63;129;433;176;168;168;133;103;155;973;144
-129;'450;Madagascar;1671;Newsprint;5510;Production;t;;;320;;;;;1000;900;300;600;500;500;1000;817;3500;3500;3500;3500;3500;3500;700;1000;600;800;850;240;240;240;350;270;320;320;220;170;100;100;200;100;100;100;100;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1450;873;238;238;238;238;238;238;238
-129;'450;Madagascar;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;10;500;1300;900;1100;1500;1000;2000;2300;1800;1800;4814;4814;4814;3800;4070;3706;4012;3680;4637;6323;13597;23707;17689;3703;4017;4891;2884;2491.88;3451;3281
-129;'450;Madagascar;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;7;290;1105;942;791;1007;762;1294;1510;998;998;2454;2454;2454;2805;3755;3060;2728;2687;3547;4724;13001;16849;10895;2269;2473;3569;1697;1976.94;4001;3214
-129;'450;Madagascar;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;50;158;41;33;32;27;31;76;34;50;62;62;83;39;95;88;74
-129;'450;Madagascar;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;52;129;51;39;38;36;37;78;358;76;76;76;90;84;134;948;122
-129;'450;Madagascar;1674;Printing and writing papers;5510;Production;t;;;4000;4000;4000;3000;5000;3100;4200;3900;3900;4000;5200;3600;8200;8200;8200;8200;8200;8200;8200;8200;7000;6000;6600;7000;2800;800;800;3000;3200;3000;4100;3700;3100;2300;2500;2600;1030;2060;2060;1060;1232;1232;1232;1232;1232;1232;1232;1232;1232;1232;1232;1232;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1674;Printing and writing papers;5610;Import quantity;t;;;;;4300;4300;900;200;300;300;100;100;100;100;100;100;100;100;600;600;1000;800;800;1700;2300;900;800;704;607;516;516;509;1088;1200;1100;2500;1100;2400;1700;2600;3700;2300;2300;7490;7490;7490;7700;8048;6304;7570;5867;3951;6253;10131;9261;12428;10965;13282;10434;15866;10560.13;9877;12629
-129;'450;Madagascar;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;2451;2451;932;42;52;52;14;10;10;10;10;10;10;10;1456;1456;3000;3274;3274;4266;5631;3095;5034;1017;845;965;965;674;1086;1226;1760;3471;1455;2983;2152;2674;3276;2077;2077;5909;5909;5909;6795;9687;6410;8610;6804;4289;6524;10714;8991;11210;10332;12272;10483;10207;10526.43;12996;14383
-129;'450;Madagascar;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;29;0;0;0;0;;;;;;;25;25;25;32;14;6;27;316;66;11;35;60;94;54;54;23;12;2;6;4
-129;'450;Madagascar;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;25;0;0;0;0;;;;;;;19;19;19;52;46;20;50;334;286;26;51;75;100;92;92;43;19;21;25;22
-129;'450;Madagascar;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;1000;2000;2000;1000;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;1700;2600;0;100;100;335;335;335;400;689;394;380;223;171;1510;2555;4143;4171;2962;2962;176;276;374;335;158
-129;'450;Madagascar;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2983;2152;2674;0;80;80;264;264;264;300;798;504;491;321;205;1497;2517;3775;3562;2661;2661;208;361;371;414;219
-129;'450;Madagascar;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;2;2;4;4;23;23;23;19;19;0;0;0;0;0
-129;'450;Madagascar;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;10;10;2;2;26;26;26;20;20;2;3;1;0;0
-129;'450;Madagascar;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;30;60;60;60;32;32;32;32;32;32;32;32;32;32;32;32;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;400;2157;2157;2157;4500;4622;4434;4838;5411;3516;2377;4261;2678;5696;4933;7882;6824;12157;7183.2;5596;9249
-129;'450;Madagascar;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;294;294;1701;1701;1701;4295;5363;3907;5161;6070;3692;2410;4471;2574;5133;4464;6908;6648;6214;6434.21;6595;9905
-129;'450;Madagascar;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;22;10;3;8;299;3;7;12;37;61;25;25;23;1;2;6;4
-129;'450;Madagascar;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;44;19;5;8;70;9;24;25;49;44;42;42;40;13;19;24;22
-129;'450;Madagascar;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;1800;1800;4998;4998;4998;2800;2737;1476;2352;233;264;2366;3315;2440;2561;3070;2438;3434;3433;3002.93;3946;3222
-129;'450;Madagascar;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474;1703;1703;3944;3944;3944;2200;3526;1999;2958;413;392;2617;3726;2642;2515;3207;2703;3627;3632;3721.23;5987;4259
-129;'450;Madagascar;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;2;3;17;15;59;0;0;0;10;10;10;0;11;0;0;0
-129;'450;Madagascar;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;25;15;32;254;275;0;0;0;30;30;30;1;3;1;1;0
-129;'450;Madagascar;1675;Other paper and paperboard;5510;Production;t;;;;;;;;600;400;1000;2700;1300;2700;5800;400;700;700;700;700;700;9035;9312;9987;9165;10347;10585;8562;9088;10164;9979;6751;5520;7005;9875;8656;6775;7680;9882;6174;8813;7463;7963;7607;7607;7607;7607;7607;7607;7607;7607;7607;7607;95739;64719;81342;31720;33171;33171;33171;33171;33171;33171;33171
-129;'450;Madagascar;1675;Other paper and paperboard;5610;Import quantity;t;2200;2200;2300;3000;4500;4500;3100;3100;2100;2400;3100;1100;900;1000;1000;1000;1000;1000;1600;1600;2500;400;400;400;200;500;200;200;200;200;200;800;4600;3800;3700;3200;4600;2600;900;2700;2300;1800;1800;7486;7486;7486;6033;16560;4099;11345;13051;14146;13436;13704;12240;11955;21950;22316;30280;36346;25235.82;34328;31793
-129;'450;Madagascar;1675;Other paper and paperboard;5622;Import value;1000 USD;701;790;776;1233;2214;2214;1543;1543;819;1372;1356;993;875;633;633;1264;1264;1264;3229;4090;7000;2631;2631;2631;1316;1301;1024;1024;1024;1024;1024;754;3686;3928;5893;3676;5774;2655;1102;2918;2315;2194;2194;5274;5274;5274;4288;16628;5079;10301;15143;14422;12511;12799;9823;12125;19055;12520;25987;24737;23816.15;37910;25411
-129;'450;Madagascar;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;4;0;0;0;0;8;8;0;0;0;0;201;201;201;261;372;254;482;546;258;279;204;65;257;366;258;3143;208;1105;1001;342
-129;'450;Madagascar;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;3;0;0;0;0;3;3;0;0;0;0;125;125;125;218;492;352;599;1933;701;554;436;264;371;614;454;2748;495;707;875;815
-129;'450;Madagascar;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;91;66;66;66;60;60;60;60;60;60;60;60;60;60;60;60;172;165;695;695;695;695;695;695;695
-129;'450;Madagascar;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;252;252;252;500;794;385;716;660;355;419;383;638;916;794;383;1405;5033;1769.03;4768;5317
-129;'450;Madagascar;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;126;126;278;278;278;566;1106;451;856;727;395;502;521;707;1175;1047;422;1932;1935;2450.03;3412;2970
-129;'450;Madagascar;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;1;1;2;12;79;2;4;5;6;6;10;3;759;541;2
-129;'450;Madagascar;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;12;4;2;4;16;70;3;13;18;17;17;26;17;56;44;32
-129;'450;Madagascar;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2030;1120;1320;1320;1820;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;89602;58582;75093;25478;26399;26399;26399;26399;26399;26399;26399
-129;'450;Madagascar;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;700;2300;1500;1300;1300;5690;5690;5690;4733;14773;3406;10388;11900;13190;12753;12972;10840;10369;20670;21887;28420;30945;23100.79;29150;25876
-129;'450;Madagascar;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2413;532;1814;1160;1049;1049;3528;3528;3528;2972;12155;2820;8282;11621;11039;10591;9995;8607;8431;15576;11941;21426;20757;19148.07;32791;20210
-129;'450;Madagascar;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;191;249;348;239;436;344;218;172;174;33;211;319;211;3092;164;345;460;340
-129;'450;Madagascar;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;115;115;213;373;255;370;1181;505;304;253;71;261;505;345;2630;386;637;831;783
-129;'450;Madagascar;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1100;1100;1100;1400;2200;2200;1500;1500;1000;2100;1600;500;500;800;800;800;800;800;600;600;900;;;;;;;;;;;;3300;2600;2300;2200;2400;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;119;134;132;210;376;376;262;262;140;500;260;90;90;240;240;871;871;871;1090;1090;2500;;;;;;;;;;;;2235;2475;3480;2075;2874;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-129;'450;Madagascar;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;300;800;800;800;400;400;400;400;400;400;400;400;400;400;32532;27512;50238;297;640;640;640;640;640;640;640
-129;'450;Madagascar;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;400;2787;2787;2787;1700;6915;2603;9438;8149;9312;11913;11906;5545;3658;19627;20854;27124;28634;20430.21;25607;22598
-129;'450;Madagascar;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;182;182;1728;1728;1728;827;5021;1881;6982;6830;7215;9546;8602;4538;3263;14179;10615;19693;18548;16355.88;28859;17108
-129;'450;Madagascar;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;60;43;51;235;125;118;11;36;16;22;187;187;2861;61;72;84;87
-129;'450;Madagascar;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;72;54;55;54;216;166;16;53;25;34;294;294;2211;81;110;152;166
-129;'450;Madagascar;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;30000;23785;23785;23785;23785;23785;23785;23785;23785;23785
-129;'450;Madagascar;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;100;1100;400;200;200;970;970;970;1100;6565;468;554;2302;2125;360;531;4801;6260;538;810;510;1151;1181.58;1863;1059
-129;'450;Madagascar;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1357;92;807;274;129;129;601;601;601;946;5412;526;554;2885;2147;551;850;3593;4665;783;982;784;1312;1866.29;2119;1350
-129;'450;Madagascar;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;8;18;200;9;20;4;10;10;13;13;1;0;0;0;0
-129;'450;Madagascar;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;36;26;29;699;35;82;16;31;22;25;25;7;0;0;0;0
-129;'450;Madagascar;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;800;500;500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;680;1258;1258;1258;1258;1258;1258;1258
-129;'450;Madagascar;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;600;1200;400;700;700;1201;1201;1201;1201;1261;335;396;558;528;480;520;483;443;441;221;774;1117;1473;1615;2163
-129;'450;Madagascar;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056;440;1007;523;738;738;746;746;746;746;1672;413;746;1095;819;493;524;448;481;568;341;932;858;898.9;1709;1697
-129;'450;Madagascar;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;179;179;179;263;180;183;19;91;141;134;7;179;119;11;230;103;273;376;253
-129;'450;Madagascar;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;108;247;174;287;266;304;206;184;15;205;186;26;412;305;527;678;616
-129;'450;Madagascar;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;20;20;20;20;70;70;70;70;70;70;70;70;70;70;70;70;70;716;716;716;716;716;716;716;716
-129;'450;Madagascar;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;732;732;732;32;0;0;891;1225;0;15;11;8;64;2;12;43;16;65;56
-129;'450;Madagascar;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;453;453;453;50;0;0;811;858;1;19;28;22;46;3;17;39;27;104;55
-129;'450;Madagascar;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-129;'450;Madagascar;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
-129;'450;Madagascar;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;9035;9312;9987;9165;10347;10585;8562;9088;10164;9979;6751;5520;7005;9875;8656;6775;7680;7824;4963;7427;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077;6077
-129;'450;Madagascar;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1100;1100;1200;1600;2300;2300;1600;1600;1100;300;1500;600;400;200;200;200;200;200;1000;1000;1600;400;400;400;200;500;200;200;200;200;200;800;1300;1200;1400;1000;2200;200;200;400;500;400;400;1544;1544;1544;800;993;308;241;491;601;264;349;762;670;486;46;455;368;366;410;600
-129;'450;Madagascar;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;582;656;644;1023;1838;1838;1281;1281;679;872;1096;903;785;393;393;393;393;393;2139;3000;4500;2631;2631;2631;1316;1301;1024;1024;1024;1024;1024;754;1451;1453;2413;1601;2900;242;570;1104;910;1019;1019;1468;1468;1468;750;3367;1808;1163;2795;2988;1418;2283;509;2519;2432;157;2629;2045;2218.04;1707;2231
-129;'450;Madagascar;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;4;0;0;0;0;8;8;0;0;0;0;9;9;9;11;21;14;45;200;28;28;28;28;41;41;41;41;41;1;0;0
-129;'450;Madagascar;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;3;0;0;0;0;3;3;0;0;0;0;9;9;9;4;107;93;227;748;180;180;180;180;92;92;92;92;92;14;0;0
-129;'450;Madagascar;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9674;9863;12887;7965;9695;10964;8086
-129;'450;Madagascar;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;1199;1033;950;732;995;995
-129;'450;Madagascar;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;67;151;66;139;104;93
-129;'450;Madagascar;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;78;16;16;16;16;16
-129;'450;Madagascar;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;0;17;11;29
-129;'450;Madagascar;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;0;0;0;0;0
-129;'450;Madagascar;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;66;150;66;122;93;64
-129;'450;Madagascar;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;70;16;16;16;16;16
-129;'450;Madagascar;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;408;485;817;328;336;424
-129;'450;Madagascar;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;91;125;331;423;276
-129;'450;Madagascar;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;152;130;132;175;108;289
-129;'450;Madagascar;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;201;175;103;130;258;277
-129;'450;Madagascar;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;898;877;2317;1023;1357;1415;871
-129;'450;Madagascar;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;152;8;0;1;13;41
-129;'450;Madagascar;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9
-129;'450;Madagascar;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22
-129;'450;Madagascar;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7
-129;'450;Madagascar;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9
-129;'450;Madagascar;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7040;6739;9271;5458;6918;7321;5419
-129;'450;Madagascar;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;68;45;64;16;25;92
-129;'450;Madagascar;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;1323;111;20;34;643;9
-129;'450;Madagascar;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12;3;15;15;52;16
-129;'450;Madagascar;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;463;297;422;449;744;1037;981
-129;'450;Madagascar;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;687;695;627;223;208;277
-129;'450;Madagascar;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27916;29450;34086;34475;35206;51511;43362
-129;'450;Madagascar;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8679;10778;13805;14404;17630;20562;21915
-129;'450;Madagascar;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;134;98;2;6;59;13
-129;'450;Madagascar;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-129;'450;Madagascar;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1138;1555;1772;1760;2919;3827;2713
-129;'450;Madagascar;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;116;185;99;239;280;267
-129;'450;Madagascar;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310;2289;2019;1509;1808;2506;2058
-129;'450;Madagascar;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;9;12;4;5;5
-129;'450;Madagascar;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6051;6172;6251;7081;8675;16044;12202
-129;'450;Madagascar;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6910;8985;11303;12678;12909;18012;19248
-129;'450;Madagascar;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18390;19300;23946;24123;21798;29075;26376
-129;'450;Madagascar;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1620;1676;2308;1615;4478;2265;2395
-130;'454;Malawi;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51503;55236;66661;64238;61192;44348;75309
-130;'454;Malawi;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11554;12135;9138;9054;12613;17548;13943
-130;'454;Malawi;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;697;610;1203;1225;1260;1550;1904;2779;2396;3894;5637;5542;3296;5535;8865;10352;26796;15438;11401;11433;7212;8305;6794;7747;6709;5024;7802;7802;3020;4581;3128;8057;3956;4698;4698;5265;4702;4702;3415;14308;11077;11309;16250;19313;22027;26497;28997;28910;14056;23245;24559;19763;15889;18545;18032;25466;25650;27980;19325;30202
-130;'454;Malawi;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;20;13;13;27;30;35;20;20;20;20;20;20;50;;594;600;600;600;600;600;0;242;39;48;48;3681;3649;50;2043;2043;2456;2455;687;688;688;276;1333;2084;2084;10028;8403;16237;11299;14305;12822;22831;22151;17689;11744;8201;9634;11084;7599;8088;11051;15865;12884
-130;'454;Malawi;1861;Roundwood;5516;Production;m3;3352999;3428999;3508000;3600999;3691000;3797000;3912999;4012000;4124000;4243000;4388999;4521999;3746547;3762002;4941999;5099000;3889426;3898436;3956919;4109285;4244570;4260529;4279949;4318218;4445481;4704539;4990517;5261173;5989863;6044443;6002063;6132139;5918708;6031330;6296283;6201751;6227059;6281301;6321718;6364075;6395659;6429117;6464449;6501655;6540741;6589348;6640100;6693000;6808068;6885340;6945603;7008235;7073238;7105730;7160655;7218956;7279531;7342397;7407579;7475100;7545693;7618759;7694328
-130;'454;Malawi;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;439;590;590;1573;33;33;52;146;33;29;64;1945;1405;57;3633;1200;3267;6704;218;8945;434
-130;'454;Malawi;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;62;38;38;98;3;9;45;96;26;16;45;462;186;11;895;713;1226;5342;67;113;93
-130;'454;Malawi;1861;Roundwood;5916;Export quantity;m3;;;;;;;100;100;100;100;200;400;100;100;100;100;100;100;200;;;;;;;;;;;15;15;989;989;216;399;399;399;399;279;279;279;279;327;231;231;132;4707;11009;3979;5614;1099;1099;907;3979;2143;196;120;0;1489;0;0;0;237
-130;'454;Malawi;1861;Roundwood;5922;Export value;1000 USD;;;;;;;20;13;13;27;30;35;20;20;20;20;20;20;50;;;;;;;;;;;2;2;74;74;23;42;42;42;42;28;28;28;28;35;15;15;16;1034;2178;558;794;240;240;186;977;873;24;12;0;197;0;0;0;14
-130;'454;Malawi;1862;Roundwood, coniferous;5516;Production;m3;10999;8999;10000;16999;20000;31000;34999;39000;47000;53000;68999;74999;86766;83783;54999;46000;37954;37957;38028;48148;47343;47402;35456;26529;28688;29024;29394;29742;30077;55109;55050;102167;106867;107022;156739;156609;156644;156719;156774;156833;156876;156922;156971;157022;157076;157143;157200;157300;157361;157440;157523;157609;157669;122792;107888;107968;108052;108138;108228;108321;108418;108519;108623
-130;'454;Malawi;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3498;810;3250;6704;0;0;387
-130;'454;Malawi;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;816;684;1221;5342;54;86;86
-130;'454;Malawi;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;0;493;0;0;0;37
-130;'454;Malawi;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;117;0;0;0;3
-130;'454;Malawi;1863;Roundwood, non-coniferous;5516;Production;m3;3342000;3420000;3498000;3584000;3671000;3766000;3878000;3973000;4077000;4190000;4320000;4447000;3659781;3678219;4887000;5053000;3851472;3860479;3918891;4061137;4197227;4213127;4244493;4291689;4416793;4675515;4961123;5231431;5959786;5989334;5947013;6029972;5811841;5924308;6139544;6045142;6070415;6124582;6164944;6207242;6238783;6272195;6307478;6344633;6383665;6432205;6482900;6535700;6650707;6727900;6788080;6850626;6915569;6982938;7052767;7110988;7171479;7234259;7299351;7366779;7437275;7510240;7585705
-130;'454;Malawi;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;390;17;0;218;8945;47
-130;'454;Malawi;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;29;5;0;13;27;7
-130;'454;Malawi;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;996;0;0;0;200
-130;'454;Malawi;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;80;0;0;0;11
-130;'454;Malawi;1864;Wood fuel;5516;Production;m3;3204999;3280999;3361000;3442999;3528000;3623000;3713999;3813000;3921000;4031000;4145999;4266999;3462547;3475002;4665999;4816000;3599426;3601436;3652919;3740285;3881570;3924529;3963949;4017218;4132481;4376539;4645517;4898173;5141863;5164443;5122063;5207139;4988708;5101330;4896283;4801751;4827059;4881301;4921718;4964075;4995659;5029117;5064449;5101655;5140741;5189348;5240100;5293000;5348068;5405340;5465603;5528235;5593238;5660730;5730655;5788956;5849531;5912397;5977579;6045100;6115693;6188759;6264328
-130;'454;Malawi;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;1921;53;53;;;;;;;
-130;'454;Malawi;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;435;10;10;;;;;;;
-130;'454;Malawi;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;8;8;8;17;1776;1607;1607;1004;1004;1004;532;1340;196;196;;;;;;;
-130;'454;Malawi;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;1;1;1;2;78;92;92;202;202;202;25;55;24;24;;;;;;;
-130;'454;Malawi;1627;Wood fuel, coniferous;5516;Production;m3;4999;4999;5000;4999;5000;13000;12999;17000;24000;27000;27999;27999;4766;4783;17999;13000;4954;4957;5028;5148;5343;5402;5456;5529;5688;6024;6394;6742;7077;7109;7050;7167;6867;7022;6739;6609;6644;6719;6774;6833;6876;6922;6971;7022;7076;7143;7200;7300;7361;7440;7523;7609;7669;7792;7888;7968;8052;8138;8228;8321;8418;8519;8623
-130;'454;Malawi;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1628;Wood fuel, non-coniferous;5516;Production;m3;3200000;3276000;3356000;3438000;3523000;3610000;3701000;3796000;3897000;4004000;4118000;4239000;3457781;3470219;4648000;4803000;3594472;3596479;3647891;3735137;3876227;3919127;3958493;4011689;4126793;4370515;4639123;4891431;5134786;5157334;5115013;5199972;4981841;5094308;4889544;4795142;4820415;4874582;4914944;4957242;4988783;5022195;5057478;5094633;5133665;5182205;5232900;5285700;5340707;5397900;5458080;5520626;5585569;5652938;5722767;5780988;5841479;5904259;5969351;6036779;6107275;6180240;6255705
-130;'454;Malawi;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;1921;53;53;;;;;;;
-130;'454;Malawi;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;435;10;10;;;;;;;
-130;'454;Malawi;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;8;8;8;17;1776;1607;1607;1004;1004;1004;532;1340;196;196;;;;;;;
-130;'454;Malawi;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;1;1;1;2;78;92;92;202;202;202;25;55;24;24;;;;;;;
-130;'454;Malawi;1865;Industrial roundwood;5516;Production;m3;148000;148000;147000;158000;163000;174000;199000;199000;203000;212000;243000;255000;284000;287000;276000;283000;290000;297000;304000;369000;363000;336000;316000;301000;313000;328000;345000;363000;848000;880000;880000;925000;930000;930000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1400000;1460000;1480000;1480000;1480000;1480000;1445000;1430000;1430000;1430000;1430000;1430000;1430000;1430000;1430000;1430000
-130;'454;Malawi;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;437;588;588;1571;31;31;50;144;31;27;62;24;1352;4;3633;1200;3267;6704;218;8945;434
-130;'454;Malawi;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;62;38;38;98;3;9;45;96;26;16;45;27;176;1;895;713;1226;5342;67;113;93
-130;'454;Malawi;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;100;100;100;100;200;400;100;100;100;100;100;100;200;;;;;;;;;;;15;15;989;989;216;362;362;362;362;242;242;242;242;319;223;223;115;2931;9402;2372;4610;95;95;375;2639;1947;0;120;0;1489;0;0;0;237
-130;'454;Malawi;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;20;13;13;27;30;35;20;20;20;20;20;20;50;;;;;;;;;;;2;2;74;74;23;40;40;40;40;26;26;26;26;34;14;14;14;956;2086;466;592;38;38;161;922;849;0;12;0;197;0;0;0;14
-130;'454;Malawi;1866;Industrial roundwood, coniferous;5516;Production;m3;6000;4000;5000;12000;15000;18000;22000;22000;23000;26000;41000;47000;82000;79000;37000;33000;33000;33000;33000;43000;42000;42000;30000;21000;23000;23000;23000;23000;23000;48000;48000;95000;100000;100000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;115000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-130;'454;Malawi;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;320;72;72;1055;29;29;29;46;4;0;0;0;0;0;3498;810;3250;6704;0;0;387
-130;'454;Malawi;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;20;4;4;64;2;2;2;2;10;0;0;0;0;0;816;684;1221;5342;54;86;86
-130;'454;Malawi;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;146;146;146;146;26;26;26;26;31;46;46;82;1969;8208;2305;3495;0;0;0;947;0;0;120;0;493;0;0;0;37
-130;'454;Malawi;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;17;17;17;3;3;3;3;2;2;2;4;104;435;122;247;0;0;0;22;0;0;12;0;117;0;0;0;3
-130;'454;Malawi;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;320;72;72;1055;29;29;29;46;4;0;0;0;0;0;3498;810;3250;6704;0;0;387
-130;'454;Malawi;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;20;4;4;64;2;2;2;2;10;0;0;0;0;0;816;684;1221;5342;54;86;86
-130;'454;Malawi;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;146;146;146;146;26;26;26;26;31;46;46;82;1969;8208;2305;3495;0;0;0;947;0;0;120;0;493;0;0;0;37
-130;'454;Malawi;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;17;17;17;3;3;3;3;2;2;2;4;104;435;122;247;0;0;0;22;0;0;12;0;117;0;0;0;3
-130;'454;Malawi;1867;Industrial roundwood, non-coniferous;5516;Production;m3;142000;144000;142000;146000;148000;156000;177000;177000;180000;186000;202000;208000;202000;208000;239000;250000;257000;264000;271000;326000;321000;294000;286000;280000;290000;305000;322000;340000;825000;832000;832000;830000;830000;830000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1250000;1310000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000;1330000
-130;'454;Malawi;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;516;516;516;2;2;21;98;27;27;62;24;1352;4;135;390;17;0;218;8945;47
-130;'454;Malawi;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;34;34;34;1;7;43;94;16;16;45;27;176;1;79;29;5;0;13;27;7
-130;'454;Malawi;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;989;989;216;216;216;216;216;216;216;216;216;288;177;177;33;962;1194;67;1115;95;95;375;1692;1947;0;0;0;996;0;0;0;200
-130;'454;Malawi;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;74;74;23;23;23;23;23;23;23;23;23;32;12;12;10;852;1651;344;345;38;38;161;900;849;0;0;0;80;0;0;0;11
-130;'454;Malawi;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;3;0;0;0;0;0;0;1;0
-130;'454;Malawi;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;1;0;0;0;0;0;0;3;0
-130;'454;Malawi;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;989;989;216;216;216;216;216;216;216;216;216;216;20;20;20;479;223;36;4;4;4;29;25;1947;0;0;0;996;0;0;0;200
-130;'454;Malawi;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;74;74;23;23;23;23;23;23;23;23;23;23;3;3;3;276;92;5;8;8;8;4;68;849;0;0;0;80;0;0;0;11
-130;'454;Malawi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;516;516;516;2;2;21;98;25;25;60;22;1349;4;135;390;17;0;218;8944;47
-130;'454;Malawi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;34;34;34;1;7;43;94;11;11;40;22;175;1;79;29;5;0;13;24;7
-130;'454;Malawi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;157;157;13;483;971;31;1111;91;91;346;1667;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;7;576;1559;339;337;30;30;157;832;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1868;Sawlogs and veneer logs;5516;Production;m3;15000;12000;8000;11000;13000;20000;41000;37000;37000;42000;68000;75000;101000;101000;84000;85000;85000;85000;85000;143000;130000;97000;70000;47000;48000;48000;48000;48000;48000;80000;80000;125000;130000;130000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;260000;280000;280000;280000;280000;245000;230000;230000;230000;230000;230000;230000;230000;230000;230000
-130;'454;Malawi;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;100;100;100;100;200;400;100;100;100;100;100;100;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;20;13;13;27;30;35;20;20;20;20;20;20;50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;5000;3000;4000;7000;10000;13000;17000;17000;18000;21000;36000;42000;79000;79000;37000;33000;33000;33000;33000;43000;42000;42000;30000;21000;23000;23000;23000;23000;23000;48000;48000;95000;100000;100000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;115000;100000;100000;100000;100000;100000;100000;100000;100000;100000
-130;'454;Malawi;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;10000;9000;4000;4000;3000;7000;24000;20000;19000;21000;32000;33000;22000;22000;47000;52000;52000;52000;52000;100000;88000;55000;40000;26000;25000;25000;25000;25000;25000;32000;32000;30000;30000;30000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;110000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000;130000
-130;'454;Malawi;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;100;100;100;100;200;400;100;100;100;100;100;100;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;20;13;13;27;30;35;20;20;20;20;20;20;50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1871;Other industrial roundwood;5516;Production;m3;133000;136000;139000;147000;150000;154000;158000;162000;166000;170000;175000;180000;183000;186000;192000;198000;205000;212000;219000;226000;233000;239000;246000;254000;265000;280000;297000;315000;800000;800000;800000;800000;800000;800000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000
-130;'454;Malawi;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1000;1000;1000;5000;5000;5000;5000;5000;5000;5000;5000;5000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;132000;135000;138000;142000;145000;149000;153000;157000;161000;165000;170000;175000;180000;186000;192000;198000;205000;212000;219000;226000;233000;239000;246000;254000;265000;280000;297000;315000;800000;800000;800000;800000;800000;800000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000
-130;'454;Malawi;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1630;Wood charcoal;5510;Production;t;127000;130330;133748;137256;140856;144550;148340;152231;156223;160320;158823;162598;168577;172403;177128;182846;188940;192311;198791;207690;220181;226812;233275;240558;251882;271971;294090;315643;337392;343953;347669;361345;351998;367958;358661;356732;364147;373952;382746;391746;400158;408751;417528;426494;435652;445984;456600;467400;478475;489823;501826;514123;526721;539628;552852;565223;577872;590804;604025;617541;631621;646022;660751
-130;'454;Malawi;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;1;1;1;1;1;1;1;5;7;4;5;25;5;7;10;12;13;9;11;9;10;36;3;4
-130;'454;Malawi;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;1;1;1;2;4;7;75;14;16;6;8;19;15;7;9;8;8;8;8;3;8
-130;'454;Malawi;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;25;25;19;27;118;118;118;118;656;2;1;1;3;0;0;0;64;0
-130;'454;Malawi;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;13;13;1;1;557;557;557;557;29;1;1;1;1;0;0;0;26;0
-130;'454;Malawi;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500
-130;'454;Malawi;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;21;21;21;1;187;187;4;1;1;1;1;1;1;1;1;22;22;22;22;22;22;22;1;0
-130;'454;Malawi;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;7;7;9;1;1;1;1;1;1;1;1;18;18;18;18;18;18;18;3;1
-130;'454;Malawi;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;4;39;56;44;75;25;109;109;109;109;109;109;109;13;13;13;13;13;13
-130;'454;Malawi;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;2;3;3;5;1;6;6;6;6;6;6;6;2;2;2;2;2;2
-130;'454;Malawi;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0
-130;'454;Malawi;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1
-130;'454;Malawi;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;4;39;56;25;56;6;90;90;90;90;90;90;90;4;4;4;4;4;4
-130;'454;Malawi;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;2;3;2;4;0;5;5;5;5;5;5;5;0;0;0;0;0;0
-130;'454;Malawi;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500
-130;'454;Malawi;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;21;21;21;1;187;187;4;1;1;1;1;1;1;1;1;22;22;22;22;22;22;22;0;0
-130;'454;Malawi;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;7;7;9;1;1;1;1;1;1;1;1;18;18;18;18;18;18;18;1;0
-130;'454;Malawi;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;9;9;9;9;9;9
-130;'454;Malawi;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;2;2;2;2;2;2
-130;'454;Malawi;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;0;133;16
-130;'454;Malawi;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;63;5
-130;'454;Malawi;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-130;'454;Malawi;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-130;'454;Malawi;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;133;16
-130;'454;Malawi;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;63;4
-130;'454;Malawi;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-130;'454;Malawi;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1
-130;'454;Malawi;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;0;0;0
-130;'454;Malawi;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;1
-130;'454;Malawi;1872;Sawnwood;5516;Production;m3;11200;11200;10300;7700;12600;16200;17500;16000;16500;22500;19700;27000;33000;33000;41000;34000;38000;42000;46000;48000;43000;38000;23000;16000;19000;23000;30000;31000;39000;43000;43000;43000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;55000;85000;70000;95000;95000;95000;95277;102968;102968;102968;102968;102968;102968;102968;102968;102968
-130;'454;Malawi;1872;Sawnwood;5616;Import quantity;m3;;;;7400;6000;13700;7600;8800;10100;8600;7100;5900;7200;7200;9300;5600;2400;2900;5200;6500;400;1200;1200;700;500;200;200;200;200;200;200;225;225;0;330;330;330;330;290;290;290;290;385;42;42;76;100;134;192;57;2445;15;172;68;40;529;946;202;88;1793;5952;1088;1101
-130;'454;Malawi;1872;Sawnwood;5622;Import value;1000 USD;;;;570;218;368;346;418;547;483;536;445;775;775;1512;698;355;538;934;1403;110;331;331;275;144;65;65;65;65;65;65;32;32;0;69;69;69;69;53;53;53;53;665;12;12;24;43;111;79;90;124;44;89;36;7;21;53;87;192;119;704;231;231
-130;'454;Malawi;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;200;200;200;317;178;46;2065;2065;2065;2065;7190;7190;7190;2673;84;552;552;15587;11042;21808;44899;26413;43832;29211;42874;55570;31398;5373;8330;1871;1509;1515;4964;1351;3034
-130;'454;Malawi;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;39;39;39;99;66;9;541;541;541;541;286;286;286;62;148;142;142;7134;2056;3919;7583;8304;6289;7657;11185;8155;3749;1703;1025;983;741;509;708;748;616
-130;'454;Malawi;1632;Sawnwood, coniferous;5516;Production;m3;1200;1200;1900;2100;3500;5300;6500;5400;7700;8700;11800;15000;15000;15000;18000;19000;21000;23000;21000;17000;17000;15000;13000;10000;9000;11000;13000;13000;24000;28000;28000;28000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30277;37968;37968;37968;37968;37968;37968;37968;37968;37968
-130;'454;Malawi;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;4200;5350;12200;5650;7700;8400;6700;6300;5550;6150;6150;7750;5350;2150;2650;4300;5600;350;500;500;500;100;100;100;100;100;100;100;195;195;0;276;276;276;276;276;276;276;276;276;10;10;10;16;5;69;0;5;9;27;27;10;10;6;101;32;1793;5806;1046;1059
-130;'454;Malawi;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;149;187;306;264;352;473;367;488;425;650;650;1393;681;338;521;832;1301;90;143;143;143;29;29;29;29;29;29;29;22;22;0;52;52;52;52;52;52;52;52;52;2;2;2;9;16;33;0;3;7;27;3;3;4;1;30;158;118;696;226;226
-130;'454;Malawi;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;46;46;257;257;257;257;242;242;242;2601;58;190;190;8439;6078;6455;6455;9260;3232;3481;1364;280;9;3;0;51;0;0;0;0;0
-130;'454;Malawi;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;9;9;46;46;46;46;30;30;30;60;102;32;32;338;1533;1958;1958;1509;524;581;309;83;2;1;0;68;0;0;0;0;0
-130;'454;Malawi;1633;Sawnwood, non-coniferous;5516;Production;m3;10000;10000;8400;5600;9100;10900;11000;10600;8800;13800;7900;12000;18000;18000;23000;15000;17000;19000;25000;31000;26000;23000;10000;6000;10000;12000;17000;18000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;25000;55000;40000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000
-130;'454;Malawi;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;3200;650;1500;1950;1100;1700;1900;800;350;1050;1050;1550;250;250;250;900;900;50;700;700;200;400;100;100;100;100;100;100;30;30;0;54;54;54;54;14;14;14;14;109;32;32;66;84;129;123;57;2440;6;145;41;30;519;940;101;56;0;146;42;42
-130;'454;Malawi;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;421;31;62;82;66;74;116;48;20;125;125;119;17;17;17;102;102;20;188;188;132;115;36;36;36;36;36;36;10;10;0;17;17;17;17;1;1;1;1;613;10;10;22;34;95;46;90;121;37;62;33;4;17;52;57;34;1;8;5;5
-130;'454;Malawi;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;200;200;200;132;132;0;1808;1808;1808;1808;6948;6948;6948;72;26;362;362;7148;4964;15353;38444;17153;40600;25730;41510;55290;31389;5370;8330;1820;1509;1515;4964;1351;3034
-130;'454;Malawi;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;39;39;39;57;57;0;495;495;495;495;256;256;256;2;46;110;110;6796;523;1961;5625;6795;5765;7076;10876;8072;3747;1702;1025;915;741;509;708;748;616
-130;'454;Malawi;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;6000;3300;3900;3500;3300;5300;5700;5300;4000;2700;2100;2900;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000
-130;'454;Malawi;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;400;500;500;1100;1000;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;24;24;4;17;17;17;17;77;77;77;77;15;38;38;5;46;38;27;18;84;10;20;4;67;115;117;146;60;0;31;1;9
-130;'454;Malawi;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;22;34;34;58;40;20;33;33;33;77;77;87;87;87;87;87;87;87;87;87;12;12;7;10;10;10;10;34;34;34;34;59;29;29;5;54;53;96;77;59;33;11;41;89;110;149;145;87;82;43;216;4
-130;'454;Malawi;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;78;78;5;5;5;5;27;6;53;332;213;12;36;16;0;0;0;0;0;1
-130;'454;Malawi;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;61;61;13;13;13;21;0;9;197;117;38;3;5;6;0;0;0;0;0;2
-130;'454;Malawi;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;1000;4000;4000;3200;1800;1800;1800;1800;3300;4000;3000;2000;1000;2000;2000;1700;2200;10000;10000;10000;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;40000;45000;47000;55000;52000;52127;53000;59000;59000;59000;52613;52613;57000;57000
-130;'454;Malawi;1873;Wood-based panels;5616;Import quantity;m3;;;;400;900;1800;1700;2500;2500;4400;4800;3700;2500;2500;5000;4200;2800;8000;6700;1800;2500;3200;3200;3200;1500;1200;800;54;0;5;5;280;49;49;981;981;905;905;3124;2901;2901;2799;1995;3197;5137;2832;2049;2478;2333;2570;3198;871;4922;1727;2954;1663;2860;3221;6026;6485;7332;3951;5376
-130;'454;Malawi;1873;Wood-based panels;5622;Import value;1000 USD;;;;30;111;162;232;307;343;422;668;480;461;461;1049;1108;873;2628;2449;1691;1267;1740;1740;1740;479;474;202;22;0;7;7;58;17;17;266;266;247;247;361;378;378;381;856;746;978;898;1391;1556;1844;2034;2907;888;3358;1385;1959;806;2008;1953;2698;3048;3790;2245;2472
-130;'454;Malawi;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1600;1600;1600;0;0;0;11;11;7708;7712;4;6457;6457;6457;6457;1208;1208;1208;199;93;5212;5212;5609;10368;15983;5668;11155;12117;19388;24631;22099;19912;23116;28106;23286;11703;14125;16883;36718;30307
-130;'454;Malawi;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;594;600;600;600;600;600;0;0;0;7;7;3508;3509;1;1416;1416;1416;1416;334;334;334;47;1029;1711;1711;2749;5068;9894;2726;4035;5191;12608;9911;8216;6825;6181;8286;9647;6482;7285;10054;14769;11973
-130;'454;Malawi;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;1000;4000;4000;3200;1800;1800;1800;1800;3300;4000;3000;2000;1000;2000;2000;1700;2200;10000;10000;10000;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;33613;33613;38000;38000
-130;'454;Malawi;1640;Plywood and LVL;5616;Import quantity;m3;;;;200;800;1300;1600;2400;2400;4300;4700;3600;2400;2400;4600;3900;2500;8000;6700;1800;2500;3200;3200;3200;1500;1200;800;54;0;5;5;14;12;12;98;98;3;3;256;256;256;68;39;362;362;404;431;418;507;511;356;278;2141;283;1195;941;826;1132;1214;1637;2062;655;493
-130;'454;Malawi;1640;Plywood and LVL;5622;Import value;1000 USD;;;;26;109;153;225;300;336;415;639;451;432;432;921;973;738;2628;2449;1691;1267;1740;1740;1740;479;474;202;22;0;7;7;22;9;9;25;25;1;1;43;43;43;21;248;128;128;276;391;306;501;449;489;442;877;369;527;395;790;667;633;1022;1404;268;268
-130;'454;Malawi;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1600;1600;1600;0;0;0;11;11;7708;7708;0;6299;6299;6299;6299;1050;1050;1050;41;73;5209;5209;5606;10268;15919;5572;11126;9300;10634;10986;10464;9177;10081;9382;7851;3268;4243;6096;16612;12989
-130;'454;Malawi;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;594;600;600;600;600;600;0;0;0;7;7;3508;3508;0;1380;1380;1380;1380;298;298;298;11;1024;1709;1709;2747;5042;9790;2710;4028;4186;9521;5367;4878;3586;3129;3510;3386;1961;2470;3097;7336;5672
-130;'454;Malawi;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;200;100;500;100;100;100;100;100;100;100;100;400;300;300;;;;;;;;;;;;;;;266;37;37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;4;2;9;7;7;7;7;29;29;29;29;128;135;135;;;;;;;;;;;;;;;36;8;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721;721;721;721;93;86;86;172;582;582;2307;453;738;1220;1535;1607;1892;274;2288;874;1092;335;1732;1732;3773;3772;4230;2811;3412
-130;'454;Malawi;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;22;28;28;53;181;181;378;176;369;701;800;1151;1505;177;1922;595;815;112;975;975;1469;1430;1720;1707;1486
-130;'454;Malawi;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;158;158;158;158;158;158;158;18;1;1;1;52;16;69;2;290;27;27;17;17;17;6;6;2;6;9;2;86
-130;'454;Malawi;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;3;0;0;0;18;96;10;1;112;13;8;15;15;15;20;20;0;20;6;2;30
-130;'454;Malawi;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;215;33;33;25;4;42;42;42;29;61;61;0;0;73;206;435;46;194
-130;'454;Malawi;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;24;24;14;9;42;42;42;23;42;42;0;0;32;136;296;17;107
-130;'454;Malawi;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;15000;12000;12127;13000;19000;19000;19000;19000;19000;19000;19000
-130;'454;Malawi;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;162;181;181;2775;2559;2559;2559;1374;2253;2253;1760;847;807;266;448;908;277;451;541;606;326;302;357;966;870;605;439;1277
-130;'454;Malawi;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;76;76;296;307;307;307;427;437;437;411;607;525;529;425;871;227;517;398;575;257;243;311;564;460;370;253;611
-130;'454;Malawi;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;48;48;27;27;2527;8727;13618;11618;10718;13018;18718;15429;8433;9876;10778;20104;17232
-130;'454;Malawi;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;8;8;6;6;893;3074;4536;3323;3224;3037;4756;6241;4521;4795;6951;7431;6271
-130;'454;Malawi;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;302;86;86;86;485;301;301;321;167;258;157;262;344;123;194;195;414;125;171;97;118;66;75;69;37
-130;'454;Malawi;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;7;18;18;18;217;140;140;218;130;193;209;253;302;106;217;180;320;99;141;94;82;55;75;62;31
-130;'454;Malawi;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;27;27;27;27;27;27;118;118;118;118;118;118;118;118;118;118;118
-130;'454;Malawi;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;6;6;6;6;6;6;22;22;22;22;22;22;22;22;22;22;22
-130;'454;Malawi;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;15000;12000;12127;13000;19000;19000;19000;19000;19000;19000;19000
-130;'454;Malawi;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;129;129;129;129;129;129;129;129;129;129;135;422;387;66;123;466;150;195;343;190;196;128;257;698;640;353;151;717
-130;'454;Malawi;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;66;66;66;66;66;66;28;253;215;256;127;461;106;260;214;253;154;97;212;466;379;264;125;400
-130;'454;Malawi;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;0;0;2500;8700;13500;11500;10600;12900;18600;15311;8315;9758;10660;19986;17114
-130;'454;Malawi;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;887;3068;4514;3301;3202;3015;4734;6219;4499;4773;6929;7409;6249
-130;'454;Malawi;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;2344;2344;2344;2344;760;1823;1823;1304;258;162;43;63;98;4;62;3;2;5;3;3;150;164;177;219;523
-130;'454;Malawi;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;223;223;223;223;144;231;231;165;224;117;64;45;108;15;40;4;2;4;5;5;16;26;31;66;180
-130;'454;Malawi;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000
-130;'454;Malawi;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;50;50;50;36;304;304;74;79;73;164;164;164;149;454;346;513;400;202;261;708;1153;1253;718;1502
-130;'454;Malawi;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;16;16;16;15;103;103;63;48;51;100;100;100;95;236;195;343;248;136;209;572;706;892;1044;752
-130;'454;Malawi;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;210;210;210;80;382;583;583;483;562;606;1605;1629;1033;2029;29;233;119;492;597;597;123;43;34;210;78
-130;'454;Malawi;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;4;4;12;39;58;58;32;47;40;238;247;202;1314;3;18;20;14;23;23;14;1;1;7;2
-130;'454;Malawi;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;198;198;57;57;57;148;148;148;133;429;314;314;399;199;258;515;974;1003;674;498
-130;'454;Malawi;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;91;91;47;47;47;96;96;96;91;226;181;240;248;136;209;524;680;781;1016;455
-130;'454;Malawi;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;1033;1033;2029;29;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;202;202;1314;3;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;197;197;56;56;56;147;147;147;132;495;357;357;442;242;301;558;1017;1046;694;565
-130;'454;Malawi;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;90;90;46;46;46;95;95;95;90;264;211;270;278;166;239;554;710;811;993;494
-130;'454;Malawi;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;154;399;496;525;386;434
-130;'454;Malawi;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;115;389;441;542;556;343
-130;'454;Malawi;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;267;0;0;;;;;;;
-130;'454;Malawi;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;162;0;0;;;;;;;
-130;'454;Malawi;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;83;96;;;;;;;
-130;'454;Malawi;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;81;79;;;;;;;
-130;'454;Malawi;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;197;197;55;55;55;146;146;146;131;286;23;207;279;21;80;92;454;454;241;64
-130;'454;Malawi;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;90;90;45;45;45;94;94;94;89;156;10;150;160;12;85;126;230;230;398;112
-130;'454;Malawi;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;19;174;23;207;279;21;80;92;454;454;241;64
-130;'454;Malawi;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;8;75;10;150;160;12;85;126;230;230;398;112
-130;'454;Malawi;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-130;'454;Malawi;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-130;'454;Malawi;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-130;'454;Malawi;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;0;0;0;;;;;;;
-130;'454;Malawi;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;;;;;;;
-130;'454;Malawi;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;163;21;21;21;112;112;112;112;112;0;0;0;;;;;;;
-130;'454;Malawi;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;32;32;32;81;81;81;81;81;0;0;0;;;;;;;
-130;'454;Malawi;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;67;67;67
-130;'454;Malawi;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;39;39;39
-130;'454;Malawi;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;24;24;24;24;24;24;24;24;47;0
-130;'454;Malawi;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;9;9;9;9;9;9;9;9;62;0
-130;'454;Malawi;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004;1004;1004;2000;0;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;199;1311;0;0;0;0;0;0;0;0;0;0;0
-130;'454;Malawi;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;6;6;6;6;6;6;6;0;0;6;6
-130;'454;Malawi;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;4;4;4;4;4;4;4;0;2;4;4
-130;'454;Malawi;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8
-130;'454;Malawi;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6
-130;'454;Malawi;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000
-130;'454;Malawi;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;15;15;1;106;106;17;22;16;16;16;16;16;25;32;199;1;3;3;193;179;250;44;1004
-130;'454;Malawi;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;1;12;12;16;1;4;4;4;4;4;10;14;103;0;0;0;48;26;111;28;297
-130;'454;Malawi;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;210;210;210;80;382;583;583;483;562;606;572;596;0;0;0;233;119;492;597;597;123;43;34;210;78
-130;'454;Malawi;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;4;4;12;39;58;58;32;47;40;36;45;0;0;0;18;20;14;23;23;14;1;1;7;2
-130;'454;Malawi;1876;Paper and paperboard;5610;Import quantity;t;;;;500;1200;3100;2700;1700;2200;3500;4400;3700;5800;6500;2800;1900;5200;7200;7500;25700;11500;9900;10200;7000;12100;8700;9500;7779;5100;11770;11770;5176;5992;3939;8391;3666;4692;4692;7852;6098;6098;4013;15416;15208;15208;18917;19372;18792;21512;21238;22340;12577;15378;18762;20603;16464;16564;14445;16686;16662;18130;10805;19169
-130;'454;Malawi;1876;Paper and paperboard;5622;Import value;1000 USD;;;;97;281;673;647;535;660;999;1575;1449;2624;4367;2923;1450;4287;5666;6936;23669;13984;9253;9275;5110;7595;6168;7393;6535;4872;7643;7643;2918;4520;3104;7709;3608;4369;4369;4801;4219;4219;2929;12648;10141;10141;15151;17769;20231;24249;26577;25669;12965;19454;22377;17103;14625;15234;14856;20618;16288;22417;15364;26593
-130;'454;Malawi;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;86;86;699;698;75;75;75;179;133;126;126;124;859;897;1678;1277;1237;215;144;119;624;624;624;1105;126;551;576;541;541
-130;'454;Malawi;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;44;44;457;456;35;35;35;125;49;66;66;67;167;183;161;361;322;246;180;244;261;261;269;422;157;285;280;307;268
-130;'454;Malawi;2042;Graphic papers;5610;Import quantity;t;;;;400;800;2100;1700;1300;1500;2700;2000;1500;2500;3200;2700;1800;2100;3700;2900;10300;2300;2800;3100;3100;700;700;1100;966;1679;1548;1548;197;354;471;1266;1266;1247;1247;3048;731;731;290;6091;5373;5373;5054;8948;6688;8674;8964;8103;6358;7159;8196;12425;7881;7719;7669;7099;6305;7624;3589;9108
-130;'454;Malawi;2042;Graphic papers;5622;Import value;1000 USD;;;;69;208;243;434;363;398;661;741;570;1191;2365;2713;1299;1536;2730;3061;7886;2655;3194;3216;3221;414;613;1026;1013;1503;1424;1424;245;262;297;973;973;944;944;2238;705;705;215;5631;3450;3450;4776;8639;7376;10532;11379;10640;6720;10126;9495;8594;7097;7000;8074;8939;7032;9325;4725;13018
-130;'454;Malawi;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;61;62;61;61;61;61;61;61;63;63;31;32;33;33;58;32;32;32;32;32;32;32;32;69;11;32;2;2
-130;'454;Malawi;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;27;27;28;27;27;27;27;27;27;29;29;7;8;9;9;27;6;6;6;6;6;6;6;6;35;19;6;41;2
-130;'454;Malawi;1671;Newsprint;5610;Import quantity;t;;;;100;100;100;100;100;200;200;300;200;300;300;500;100;100;400;400;600;100;700;400;400;600;300;500;38;0;0;0;42;42;42;1161;1161;1161;1161;1065;98;98;98;2773;2827;2827;1820;4837;3407;4248;4254;3074;2849;3098;2392;8242;2210;1886;1171;1062;794;1220;609;1944
-130;'454;Malawi;1671;Newsprint;5622;Import value;1000 USD;;;;19;22;21;19;16;27;52;54;51;76;118;252;41;80;300;350;420;117;485;280;285;304;147;325;46;0;0;0;33;18;18;829;829;829;829;466;65;65;65;1933;1442;1442;1472;4126;3140;4438;4259;3295;2437;3424;2594;2874;1508;1231;936;1030;657;1170;638;2312
-130;'454;Malawi;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;61;61;61;61;61;61;61;61;61;61;3;3;3;3;28;1;1;1;1;1;1;1;1;40;1;1;1;1
-130;'454;Malawi;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;27;27;27;27;27;27;27;27;27;27;27;6;6;6;6;24;0;0;0;0;0;0;0;0;32;0;0;0;0
-130;'454;Malawi;1674;Printing and writing papers;5610;Import quantity;t;;;;300;700;2000;1600;1200;1300;2500;1700;1300;2200;2900;2200;1700;2000;3300;2500;9700;2200;2100;2700;2700;100;400;600;928;1679;1548;1548;155;312;429;105;105;86;86;1983;633;633;192;3318;2546;2546;3234;4111;3281;4426;4710;5029;3509;4061;5804;4183;5671;5833;6498;6037;5511;6404;2980;7164
-130;'454;Malawi;1674;Printing and writing papers;5622;Import value;1000 USD;;;;50;186;222;415;347;371;609;687;519;1115;2247;2461;1258;1456;2430;2711;7466;2538;2709;2936;2936;110;466;701;967;1503;1424;1424;212;244;279;144;144;115;115;1772;640;640;150;3698;2008;2008;3304;4513;4236;6094;7120;7345;4283;6702;6901;5720;5589;5769;7138;7909;6375;8155;4087;10706
-130;'454;Malawi;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;;;;;;;2;2;28;29;30;30;30;31;31;31;31;31;31;31;31;29;10;31;1;1
-130;'454;Malawi;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;;;;;;;2;2;1;2;3;3;3;6;6;6;6;6;6;6;6;3;19;6;41;2
-130;'454;Malawi;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;832;12;12;12;122;169;169;95;121;256;491;463;536;539;990;301;406;761;624;624;158;97;169;514;233
-130;'454;Malawi;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;547;16;16;16;233;133;133;123;188;394;891;1098;843;609;1269;478;768;754;590;590;216;130;236;634;353
-130;'454;Malawi;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
-130;'454;Malawi;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2
-130;'454;Malawi;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;713;528;528;87;2623;1688;1688;2586;3420;2734;2820;3344;3555;2154;2304;3523;2879;3905;4372;4889;4666;4550;5025;1744;5639
-130;'454;Malawi;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;595;552;552;62;3020;1331;1331;2487;3407;3346;3741;4500;5010;2710;4100;4649;3540;3736;4181;5390;6054;5125;6072;2376;8378
-130;'454;Malawi;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2;2;2;2;2;2;2;2;0;2;2;0;0
-130;'454;Malawi;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;3;3;3;3;3;3;3;0;3;3;0;0
-130;'454;Malawi;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;438;93;93;93;573;689;689;553;570;291;1115;903;938;816;767;1980;898;1005;837;985;1213;864;1210;722;1292
-130;'454;Malawi;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;630;72;72;72;445;544;544;694;918;496;1462;1522;1492;964;1333;1774;1412;1099;998;1158;1639;1120;1847;1077;1975
-130;'454;Malawi;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;28;28;28;28;28;28;28;28;28;28;28;28;28;28;7;28;0;0
-130;'454;Malawi;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;1;1;1;1;1;1;1;1;1;1;1;14;1;39;0
-130;'454;Malawi;1675;Other paper and paperboard;5610;Import quantity;t;;;;100;400;1000;1000;400;700;800;2400;2200;3300;3300;100;100;3100;3500;4600;15400;9200;7100;7100;3900;11400;8000;8400;6813;3421;10222;10222;4979;5638;3468;7125;2400;3445;3445;4804;5367;5367;3723;9325;9835;9835;13863;10424;12104;12838;12274;14237;6219;8219;10566;8178;8583;8845;6776;9587;10357;10506;7216;10061
-130;'454;Malawi;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;28;73;430;213;172;262;338;834;879;1433;2002;210;151;2751;2936;3875;15783;11329;6059;6059;1889;7181;5555;6367;5522;3369;6219;6219;2673;4258;2807;6736;2635;3425;3425;2563;3514;3514;2714;7017;6691;6691;10375;9130;12855;13717;15198;15029;6245;9328;12882;8509;7528;8234;6782;11679;9256;13092;10639;13575
-130;'454;Malawi;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;637;637;14;14;14;118;72;63;63;93;827;864;1645;1219;1205;183;112;87;592;592;592;1073;57;540;544;539;539
-130;'454;Malawi;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;429;429;8;8;8;98;22;37;37;60;159;174;152;334;316;240;174;238;255;255;263;416;122;266;274;266;266
-130;'454;Malawi;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;66;12;12;9;265;507;507;482;844;579;669;721;691;345;606;773;711;596;741;842;812;790;810;395;1123
-130;'454;Malawi;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;62;13;13;18;362;557;557;543;619;710;951;1126;1217;562;1051;1458;1377;907;1219;1177;1258;1156;1381;624;1896
-130;'454;Malawi;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;4;2;89;89;89;6;8;8;8;8;8;8;8;8;8;8
-130;'454;Malawi;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;7;100;100;100;7;81;81;81;81;81;81;81;81;81;81
-130;'454;Malawi;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;4640;4865;4865;3653;7360;8272;8272;12281;8517;10509;11679;10981;12989;5865;7132;9099;7131;7758;8075;5889;8694;9341;9322;6449;8846
-130;'454;Malawi;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3275;2406;3050;3050;2584;5212;5129;5129;8958;7394;11061;11883;12995;12535;5642;7599;9854;6590;6148;6863;5447;10138;7234;9833;7638;11066
-130;'454;Malawi;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637;14;14;14;118;72;51;51;89;808;856;1621;1121;1107;85;97;70;575;575;575;1056;48;531;535;531;531
-130;'454;Malawi;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;8;8;8;98;22;24;24;60;159;168;144;144;126;50;77;67;84;84;92;245;41;185;193;185;185
-130;'454;Malawi;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3145;2174;2174;1350;3684;2525;2525;7213;3781;7057;8500;6619;9224;2679;5356;6049;5675;6302;6610;4275;6225;8259;6758;4346;4096
-130;'454;Malawi;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3275;1472;1085;1085;492;2433;1566;1566;4078;2313;5728;6863;5772;7497;1761;5444;5765;5292;4308;4353;2760;4655;5906;5327;4653;3115
-130;'454;Malawi;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637;14;14;14;14;14;14;14;32;746;262;4;9;5;5;5;5;5;5;5;500;12;500;500;500;500
-130;'454;Malawi;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;8;8;8;8;8;8;8;7;82;88;7;14;9;9;9;9;9;9;9;168;18;168;168;168;168
-130;'454;Malawi;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;2407;2407;2173;1105;1837;1837;2111;1964;2482;2438;3138;3198;3093;1588;2721;1225;1134;1232;1107;318;210;750;159;1314
-130;'454;Malawi;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;1751;1751;2006;1178;1139;1139;2318;2470;3992;4061;5488;4010;3714;1730;3612;1010;1521;2237;2340;286;280;818;306;2913
-130;'454;Malawi;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;28;17;248;523;125;51;51;51;5;500;500;500;500;4;4;0;4;1
-130;'454;Malawi;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;39;44;18;44;59;25;25;25;12;13;13;13;13;2;2;0;2;0
-130;'454;Malawi;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1233;278;278;124;1553;3563;3563;2610;2425;949;738;1212;555;67;162;323;218;285;213;487;1789;591;1318;1737;3292
-130;'454;Malawi;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728;199;199;71;1268;2209;2209;2347;2396;1302;956;1719;1012;58;316;472;269;292;253;327;4887;797;3190;2276;4679
-130;'454;Malawi;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;31;4;4;2;18;319;1067;960;1024;2;14;33;43;43;43;29;5;0;8;0;3
-130;'454;Malawi;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;4;2;2;4;23;52;83;61;82;6;33;36;52;52;60;54;11;5;15;5;7
-130;'454;Malawi;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;1018;347;347;347;347;21;3;12;12;26;26;6;13;37;20;20;362;281;496;207;144
-130;'454;Malawi;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;333;215;215;215;215;39;3;16;16;109;109;5;19;27;20;20;310;251;498;403;359
-130;'454;Malawi;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27
-130;'454;Malawi;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-130;'454;Malawi;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;98;490;490;61;1700;1056;1056;1100;1063;1016;490;572;557;9;481;694;336;229;29;45;81;226;374;372;92
-130;'454;Malawi;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;95;451;451;112;1443;1005;1005;874;1117;1084;883;1077;1277;41;678;1570;542;473;152;158;283;866;1878;2377;613
-130;'454;Malawi;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;4;4;4;22;9;9;9;9;9;9;9;9;9;1;1;1;0;0
-130;'454;Malawi;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;1;90;90;90;90;90;90;90;90;90;0;0;0;0;0
-130;'454;Malawi;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8917;10084;12155;9349;7131;4981;7760
-130;'454;Malawi;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1302;935;1508;874;1391;1068;985
-130;'454;Malawi;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;29;56;12;12;31;34
-130;'454;Malawi;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;578;1057;468;801;750;639
-130;'454;Malawi;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;2;1;3;5;8
-130;'454;Malawi;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;538;1048;459;792;741;639
-130;'454;Malawi;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;24;54;11;9;26;26
-130;'454;Malawi;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;9;9;9;9;0
-130;'454;Malawi;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;181;127;101;115;84;148
-130;'454;Malawi;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;2;7;8;4;6
-130;'454;Malawi;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;69;124;241;29;162
-130;'454;Malawi;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;20;23;27;25;27;12
-130;'454;Malawi;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;868;1410;822;585;415;411
-130;'454;Malawi;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;16;2;2;10;8;3
-130;'454;Malawi;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9
-130;'454;Malawi;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11
-130;'454;Malawi;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-130;'454;Malawi;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43
-130;'454;Malawi;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7719;8886;10193;7382;5709;4064;5617
-130;'454;Malawi;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;219;371;342;531;269;316
-130;'454;Malawi;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;414;386;82;709
-130;'454;Malawi;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352;40;218;494;83;276;679
-130;'454;Malawi;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;91;53;28;16;10;9
-130;'454;Malawi;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24041;27120;29040;29239;26081;20042;37347
-130;'454;Malawi;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;618;116;31;92;171;615;74
-130;'454;Malawi;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;6;20;23;88;48;15
-130;'454;Malawi;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10
-130;'454;Malawi;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;733;1067;1341;1296;803;1528
-130;'454;Malawi;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2;2;1;0
-130;'454;Malawi;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1143;1521;2103;2260;2981;978;3708
-130;'454;Malawi;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;6
-130;'454;Malawi;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13024;13835;14022;15044;11783;11324;20507
-130;'454;Malawi;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;103;12;75;122;586;55
-130;'454;Malawi;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9221;11025;11828;10571;9933;6889;11589
-130;'454;Malawi;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;1;7;5;37;12;3
-131;'458;Malaysia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3010768;3444867;3327855;3307897;4415260.04;4352465;3857266
-131;'458;Malaysia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6356761;6565893;6437973;6093586;6859690.7;7151011;6450449
-131;'458;Malaysia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;21576;24552;25976;12740;14231;14755;16820;19642;21600;31212;33521;42565;68767;112209;81161;113595;117759;130819;146793;193019;217963;218761;220881;227405;232233;260188;303444;346708;466068;496691;640599;704169;430153;740851;865144;1108525;928534;759054;955210;972365;1092818;1000196;1027789;1459092;1404650;1641102;1793796;2016825;1591322;2097348;2250070;2103922;2053584;2106195;1699922;1981400;2104884;2477498;2305784;2141723;2998098.04;3009120;2691758
-131;'458;Malaysia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;61083;70400;89110;99069;120351;156791;196217;241865;269117;302625;304066;382452;720963;743016;536907;1022917;1057936;1177474;2148343;1987311;1661165;2090975;2223784;1560730;1703742;1744448;2600431;2586558;3130029;3141260;3142102;3759901;4326089;4285988;4224721;4378792;3951831;2464907;2921604;2758099;2549833;2665870;3199758;3783713;3734660;4002899;4237133;4152673;3485567;4057881;4260546;3939141;3993298;4214663;3730569;3089847;3118809;3180845;2751342;2288653;2842703.7;3079541;2932742
-131;'458;Malaysia;1861;Roundwood;5516;Production;m3;13007068;13387692;14723800;15378369;16560076;18769699;20612417;22439608;23327451;25307825;24640239;27198358;30536171;28092726;25507005;32713174;33709185;34479058;34403720;33744014;36396574;38399620;38408473;36634320;34195743;35515985;40712338;44560314;46579483;45269680;45311693;48890490;41768866;40114176;39349065;35069162;35996370;26813572;26769880;27725720;23545527;22690802;26529423;28470279;28254261;26190648;27953200;25652700;22985176;22113489;20692004;20541329;19412379;20405075;16992344;16389815;16323173;17305051;17208164;17171868;17137642;17104506;17072414
-131;'458;Malaysia;1861;Roundwood;5616;Import quantity;m3;108000;119000;114000;39000;20300;17200;12400;23200;19100;38600;109500;271300;175100;33600;36100;16400;24200;38300;41500;41500;50900;19700;19700;19700;19700;23200;21300;;;9533;69608;48959;24009;44303;137900;304400;87600;429300;638600;758000;850308;431538;120641;110550;53425;104384;98266;76352;38908;61439;110264;75013;28760;36802;33107;16836;13894;253272;150714;291737;421664;358549;210776
-131;'458;Malaysia;1861;Roundwood;5622;Import value;1000 USD;940;1019;1107;386;222;171;118;229;184;408;1405;4709;5921;750;1001;369;660;1690;3392;3392;3485;367;417;457;497;636;601;;;1292;2987;5966;4343;4480;18763;26684;11689;19859;51867;57087;111084;53423;29953;32620;11397;13902;17456;25761;11838;17591;23834;17606;16043;25979;9674;8985;6897;40472;23254;31282;53114;49406;21199
-131;'458;Malaysia;1861;Roundwood;5916;Export quantity;m3;2850000;3220000;3978000;5221500;6132000;8258000;9159500;10741600;11284600;11512200;11284000;11709800;12977000;12221300;10843600;15558800;16194700;16730500;16508900;15194500;15925100;19355904;18861296;16066000;19837408;19098308;22861600;20579408;21113008;18084860;19511237;17872031;9468638;8632196;7964400;7071800;6680200;5687300;6939800;6845300;5125000;5195272;5583724;5303497;5887069;4885909;4914300;4378657;4284086;4522415;3314335;3011487;3118354;3211488;3002934;2781150;2587498;1659430;1381555;1042779;608051.41;312115;647520
-131;'458;Malaysia;1861;Roundwood;5922;Export value;1000 USD;39555;47262;60125;67156;86458;125636;155539;180535;197852;211018;210208;234275;397159;434086;281532;574517;623258;719994;1380585;1205667;1060512;1449113;1411801;866176;1120399;1114581;1683272;1533521;1609406;1507091;1507391;1526938;1155107;992623;923925;915522;850609;487865;715633;686445;414042;486839;530224;554461;664671;459224;461369;609983;578009;668050;640264;547611;584435;633576;518026;379953;332768;242432;197562;155242;178375;184814;124080
-131;'458;Malaysia;1862;Roundwood, coniferous;5516;Production;m3;10000;9000;6000;6000;8000;16000;16000;17000;23000;21000;21000;20000;11000;6000;7000;11000;9000;10000;11900;11900;11900;10700;10700;10700;10700;110000;110000;150000;200000;300000;200000;200000;276000;211000;207000;0;0;0;0;0;0;0;276000;276000;264000;233000;264000;235000;157000;180000;178000;187000;180000;156000;99000;49000;22490;22490;22490;22490;22490;22490;22490
-131;'458;Malaysia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1318;2344;1501;8022;12646;648;1734
-131;'458;Malaysia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;1049;546;958;1614;155;296
-131;'458;Malaysia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7207;9404;21530;2742;5572.41;7064;2823
-131;'458;Malaysia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569;2606;5547;480;1236;1840;611
-131;'458;Malaysia;1863;Roundwood, non-coniferous;5516;Production;m3;12997068;13378692;14717800;15372369;16552076;18753699;20596417;22422608;23304451;25286825;24619239;27178358;30525171;28086726;25500005;32702174;33700185;34469058;34391820;33732114;36384674;38388920;38397773;36623620;34185043;35405985;40602338;44410314;46379483;44969680;45111693;48690490;41492866;39903176;39142065;35069162;35996370;26813572;26769880;27725720;23545527;22690802;26253423;28194279;27990261;25957648;27689200;25417700;22828176;21933489;20514004;20354329;19232379;20249075;16893344;16340815;16300683;17282561;17185674;17149378;17115152;17082016;17049924
-131;'458;Malaysia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12576;250928;149213;283715;409018;357901;209042
-131;'458;Malaysia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6324;39423;22708;30324;51500;49251;20903
-131;'458;Malaysia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580291;1650026;1360025;1040037;602479;305051;644697
-131;'458;Malaysia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331199;239826;192015;154762;177139;182974;123469
-131;'458;Malaysia;1864;Wood fuel;5516;Production;m3;6326068;6200692;6094800;6039369;5946076;5829699;5805417;5798608;5668451;5596825;5537239;5404358;5298171;5169726;5148005;5040166;4959177;4845058;4743820;4671114;4570666;4491920;4415773;4333612;4325035;4301985;4249338;4171306;4092483;4009672;3930693;3852490;3764866;3681176;3596065;3525162;3458370;3413572;3381880;3345720;3285527;3227802;3172423;3119279;3068261;3012648;2959200;2907700;2858176;2810489;2760004;2711329;2664379;2619075;2575344;2533815;2493683;2454887;2417369;2381073;2346847;2313711;2281619
-131;'458;Malaysia;1864;Wood fuel;5616;Import quantity;m3;16000;13000;7000;1000;300;800;200;100;800;800;1300;6400;6400;3600;;;;;;;;;;;;;;;;;;1159;103;103;300;100;300;300;6600;0;308;1538;1538;1538;1538;12000;12000;344;1300;130;100;128;51;44;205;164;11;1160;688;487;22;5;56
-131;'458;Malaysia;1864;Wood fuel;5622;Import value;1000 USD;102;80;42;5;2;6;1;1;12;5;6;8;8;13;;;;;;;;;;;;;;;;;;47;5;5;47;7;24;24;528;0;10;53;53;53;53;1237;1237;90;271;29;21;58;22;14;38;336;37;2096;764;70;6;293;238
-131;'458;Malaysia;1864;Wood fuel;5916;Export quantity;m3;82000;50000;33000;65000;63000;37700;102000;182900;139900;153400;131800;86100;86100;33000;23700;31900;36400;1100;700;9300;1900;1700;1700;1700;1700;100;100;100;100;100;6000;7518;396;396;3200;2300;300;300;9800;300;300;300;300;300;300;300;300;10657;4000;5000;3977;1700;2725;1267;7940;5451;2838;1626;1807;2176;2529.41;2082;906
-131;'458;Malaysia;1864;Wood fuel;5922;Export value;1000 USD;386;181;113;263;305;148;268;850;790;764;750;462;462;285;101;147;165;9;10;175;29;32;32;32;32;3;3;3;3;3;202;254;17;17;173;137;27;27;279;114;14;14;14;14;14;14;14;2571;2018;2060;2594;1060;1236;680;2037;893;308;224;193;195;213;181;80
-131;'458;Malaysia;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;14
-131;'458;Malaysia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;2;26
-131;'458;Malaysia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2547;1600;1782;2139;2470.41;2049;861
-131;'458;Malaysia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;208;173;171;186;171;69
-131;'458;Malaysia;1628;Wood fuel, non-coniferous;5516;Production;m3;6326068;6200692;6094800;6039369;5946076;5829699;5805417;5798608;5668451;5596825;5537239;5404358;5298171;5169726;5148005;5040166;4959177;4845058;4743820;4671114;4570666;4491920;4415773;4333612;4325035;4301985;4249338;4171306;4092483;4009672;3930693;3852490;3764866;3681176;3596065;3525162;3458370;3413572;3381880;3345720;3285527;3227802;3172423;3119279;3068261;3012648;2959200;2907700;2858176;2810489;2760004;2711329;2664379;2619075;2575344;2533815;2493683;2454887;2417369;2381073;2346847;2313711;2281619
-131;'458;Malaysia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1160;688;487;22;5;42
-131;'458;Malaysia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;2096;764;70;6;291;212
-131;'458;Malaysia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;26;25;37;59;33;45
-131;'458;Malaysia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;16;20;24;27;10;11
-131;'458;Malaysia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;16000;13000;7000;1000;300;800;200;100;800;800;1300;6400;6400;3600;;;;;;;;;;;;;;;;;;1159;103;103;300;100;300;300;6600;0;308;1538;1538;1538;1538;12000;12000;344;1300;130;100;128;51;44;205;164;;;;;;;
-131;'458;Malaysia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;102;80;42;5;2;6;1;1;12;5;6;8;8;13;;;;;;;;;;;;;;;;;;47;5;5;47;7;24;24;528;0;10;53;53;53;53;1237;1237;90;271;29;21;58;22;14;38;336;;;;;;;
-131;'458;Malaysia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;82000;50000;33000;65000;63000;37700;102000;182900;139900;153400;131800;86100;86100;33000;23700;31900;36400;1100;700;9300;1900;1700;1700;1700;1700;100;100;100;100;100;6000;7518;396;396;3200;2300;300;300;9800;300;300;300;300;300;300;300;300;10657;4000;5000;3977;1700;2725;1267;7940;5451;;;;;;;
-131;'458;Malaysia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;386;181;113;263;305;148;268;850;790;764;750;462;462;285;101;147;165;9;10;175;29;32;32;32;32;3;3;3;3;3;202;254;17;17;173;137;27;27;279;114;14;14;14;14;14;14;14;2571;2018;2060;2594;1060;1236;680;2037;893;;;;;;;
-131;'458;Malaysia;1865;Industrial roundwood;5516;Production;m3;6681000;7187000;8629000;9339000;10614000;12940000;14807000;16641000;17659000;19711000;19103000;21794000;25238000;22923000;20359000;27673008;28750008;29634000;29659900;29072900;31825908;33907700;33992700;32300708;29870708;31214000;36463000;40389008;42487000;41260008;41381000;45038000;38004000;36433000;35753000;31544000;32538000;23400000;23388000;24380000;20260000;19463000;23357000;25351000;25186000;23178000;24994000;22745000;20127000;19303000;17932000;17830000;16748000;17786000;14417000;13856000;13829490;14850164;14790795;14790795;14790795;14790795;14790795
-131;'458;Malaysia;1865;Industrial roundwood;5616;Import quantity;m3;92000;106000;107000;38000;20000;16400;12200;23100;18300;37800;108200;264900;168700;30000;36100;16400;24200;38300;41500;41500;50900;19700;19700;19700;19700;23200;21300;;;9533;69608;47800;23906;44200;137600;304300;87300;429000;632000;758000;850000;430000;119103;109012;51887;92384;86266;76008;37608;61309;110164;74885;28709;36758;32902;16672;13883;252112;150026;291250;421642;358544;210720
-131;'458;Malaysia;1865;Industrial roundwood;5622;Import value;1000 USD;838;939;1065;381;220;165;117;228;172;403;1399;4701;5913;737;1001;369;660;1690;3392;3392;3485;367;417;457;497;636;601;;;1292;2987;5919;4338;4475;18716;26677;11665;19835;51339;57087;111074;53370;29900;32567;11344;12665;16219;25671;11567;17562;23813;17548;16021;25965;9636;8649;6860;38376;22490;31212;53108;49113;20961
-131;'458;Malaysia;1865;Industrial roundwood;5916;Export quantity;m3;2768000;3170000;3945000;5156500;6069000;8220300;9057500;10558700;11144700;11358800;11152200;11623700;12890900;12188300;10819900;15526900;16158300;16729400;16508200;15185200;15923200;19354204;18859596;16064300;19835708;19098208;22861500;20579308;21112908;18084760;19505237;17864513;9468242;8631800;7961200;7069500;6679900;5687000;6930000;6845000;5124700;5194972;5583424;5303197;5886769;4885609;4914000;4368000;4280086;4517415;3310358;3009787;3115629;3210221;2994994;2775699;2584660;1657804;1379748;1040603;605522;310033;646614
-131;'458;Malaysia;1865;Industrial roundwood;5922;Export value;1000 USD;39169;47081;60012;66893;86153;125488;155271;179685;197062;210254;209458;233813;396697;433801;281431;574370;623093;719985;1380575;1205492;1060483;1449081;1411769;866144;1120367;1114578;1683269;1533518;1609403;1507088;1507189;1526684;1155090;992606;923752;915385;850582;487838;715354;686331;414028;486825;530210;554447;664657;459210;461355;607412;575991;665990;637670;546551;583199;632896;515989;379060;332460;242208;197369;155047;178162;184633;124000
-131;'458;Malaysia;1866;Industrial roundwood, coniferous;5516;Production;m3;10000;9000;6000;6000;8000;16000;16000;17000;23000;21000;21000;20000;11000;6000;7000;11000;9000;10000;11900;11900;11900;10700;10700;10700;10700;110000;110000;150000;200000;300000;200000;200000;276000;211000;207000;0;0;0;0;0;0;0;276000;276000;264000;233000;264000;235000;157000;180000;178000;187000;180000;156000;99000;49000;22490;22490;22490;22490;22490;22490;22490
-131;'458;Malaysia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;857;728;306;400;17000;26300;26300;6000;28200;40000;16000;12000;10103;16012;21260;54733;36661;37186;5608;3790;5922;1329;3061;85;4820;2672;1310;2344;1501;8022;12646;648;1720
-131;'458;Malaysia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;131;86;24;161;3594;3501;3501;768;2056;2896;1428;1170;733;977;1429;4022;4142;3806;1458;1207;740;309;807;71;1710;865;571;1049;546;958;1614;153;270
-131;'458;Malaysia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259288;185237;67505;86442;70700;97200;82200;87400;104000;195000;339000;84100;102972;115424;185197;127769;112609;108000;115000;66000;82000;81342;59422;18961;30631;19206;5699;4660;7804;19748;603;3102;5015;1962
-131;'458;Malaysia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25792;17403;6220;22990;17999;17509;13376;12197;8807;17113;30699;7000;9933;10210;16247;13773;16002;14712;19889;8942;11882;15600;10021;4186;6471;4703;1173;1370;2398;5374;309;1050;1669;542
-131;'458;Malaysia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;857;728;306;400;17000;26300;26300;6000;28200;40000;16000;12000;10103;16012;21260;54733;36661;37186;5608;3790;5922;1329;3061;85;4820;2672;1310;2344;1501;8022;12646;648;1720
-131;'458;Malaysia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;131;86;24;161;3594;3501;3501;768;2056;2896;1428;1170;733;977;1429;4022;4142;3806;1458;1207;740;309;807;71;1710;865;571;1049;546;958;1614;153;270
-131;'458;Malaysia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259288;185237;67505;86442;70700;97200;82200;87400;104000;195000;339000;84100;102972;115424;185197;127769;112609;108000;115000;66000;82000;81342;59422;18961;30631;19206;5699;4660;7804;19748;603;3102;5015;1962
-131;'458;Malaysia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25792;17403;6220;22990;17999;17509;13376;12197;8807;17113;30699;7000;9933;10210;16247;13773;16002;14712;19889;8942;11882;15600;10021;4186;6471;4703;1173;1370;2398;5374;309;1050;1669;542
-131;'458;Malaysia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6671000;7178000;8623000;9333000;10606000;12924000;14791000;16624000;17636000;19690000;19082000;21774000;25227000;22917000;20352000;27662008;28741008;29624000;29648000;29061000;31814008;33897000;33982000;32290008;29860008;31104000;36353000;40239008;42287000;40960008;41181000;44838000;37728000;36222000;35546000;31544000;32538000;23400000;23388000;24380000;20260000;19463000;23081000;25075000;24922000;22945000;24730000;22510000;19970000;19123000;17754000;17643000;16568000;17630000;14318000;13807000;13807000;14827674;14768305;14768305;14768305;14768305;14768305
-131;'458;Malaysia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9022;68751;47072;23600;43800;120600;278000;61000;423000;603800;718000;834000;418000;109000;93000;30627;37651;49605;38822;32000;57519;104242;73556;25648;36673;28082;14000;12573;249768;148525;283228;408996;357896;209000
-131;'458;Malaysia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1214;2856;5833;4314;4314;15122;23176;8164;19067;49283;54191;109646;52200;29167;31590;9915;8643;12077;21865;10109;16355;23073;17239;15214;25894;7926;7784;6289;37327;21944;30254;51494;48960;20691
-131;'458;Malaysia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17825472;19320000;17797008;9381800;8561100;7864000;6987300;6592500;5583000;6735000;6506000;5040600;5092000;5468000;5118000;5759000;4773000;4806000;4253000;4214086;4435415;3229016;2950365;3096668;3179590;2975788;2770000;2580000;1650000;1360000;1040000;602420;305018;644652
-131;'458;Malaysia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481296;1489786;1520464;1132100;974607;906243;902009;838385;479031;698241;655632;407028;476892;520000;538200;650884;443208;446643;587523;567049;654108;622070;536530;579013;626425;511286;377887;331090;239810;191995;154738;177112;182964;123458
-131;'458;Malaysia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9022;68751;47072;23600;43800;120600;278000;61000;423000;603800;718000;834000;402000;56000;88806;10936;6119;23707;15285;32000;48293;86920;59140;5114;9953;20991;7729;6015;36166;40094;75932;60597;4124;6730
-131;'458;Malaysia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1214;2856;5833;4314;4314;15122;23176;8164;19067;49283;54191;109646;46127;18497;22659;2120;1442;8455;11726;10109;12387;17612;11414;4521;10453;4014;1500;3756;6274;6176;7927;8049;1179;1548
-131;'458;Malaysia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17825472;19320000;17797008;9381800;8561100;7864000;6987300;6592500;5583000;6735000;6506000;5040600;5092000;5468000;5118000;5759000;4773000;4806000;4253000;4214086;4435247;3229016;2950365;3096668;3179590;2975788;2770000;2580000;1650000;1360000;1040000;602420;305018;644652
-131;'458;Malaysia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481296;1489786;1520464;1132100;974607;906243;902009;838385;479031;698241;655632;407028;476892;520000;538200;650884;443208;446643;587523;567049;654049;622070;536530;579013;626425;511286;377887;331090;239810;191995;154738;177112;182964;123458
-131;'458;Malaysia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;53000;4194;19691;31532;25898;23537;0;9226;17322;14416;20534;26720;7091;6271;6558;213602;108431;207296;348399;353772;202270
-131;'458;Malaysia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6073;10670;8931;7795;7201;3622;10139;0;3968;5461;5825;10693;15441;3912;6284;2533;31053;15768;22327;43445;47781;19143
-131;'458;Malaysia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;168;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;59;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1868;Sawlogs and veneer logs;5516;Production;m3;6356000;6852000;8283000;8982000;10247000;12562000;14419000;16242000;16963000;18679000;18193000;20616000;24055000;21498000;18979000;26596008;27588008;28514000;28527900;27927900;30666908;32734700;32804700;31097708;28651708;29978000;35210000;39119008;41200000;39955008;40060000;43700000;36945000;34885000;34187000;29961000;30938000;21872000;21838000;22830000;18710000;17913000;21807000;23976000;23296000;21893000;23522000;21244000;18714000;17797000;15994000;15892000;14713000;15777000;12636000;12075000;12048490;12048490;12048490;12048490;12048490;12048490;12048490
-131;'458;Malaysia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;68000;76000;82000;35000;17000;12600;7500;15000;9300;22500;97800;255100;158900;23400;28100;10100;13700;24800;31500;31500;31500;300;300;300;300;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;665;736;938;355;195;135;97;192;134;339;1353;4659;5871;695;943;309;559;1485;3208;3208;3208;77;77;77;77;91;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2764000;3167000;3943000;5139500;6049000;8191400;9035900;10515200;11112900;11353300;11148000;11596200;12887000;12175700;10793100;15504500;16118100;16717100;16499900;15150900;15869600;19300604;18805996;16010700;19782108;19096408;22859700;20577508;21111108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;39125;47048;59985;66770;85920;125255;155150;179296;196867;210216;209436;233555;396649;433636;281009;574097;622761;719936;1380450;1204910;1059268;1447866;1410554;864929;1119152;1114285;1682976;1533225;1609110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;10000;9000;6000;6000;8000;16000;16000;17000;23000;21000;21000;20000;11000;6000;7000;11000;9000;10000;11900;11900;11900;10700;10700;10700;10700;110000;110000;150000;200000;300000;200000;200000;276000;211000;207000;0;0;0;0;0;0;0;276000;276000;264000;233000;264000;235000;157000;180000;178000;187000;180000;156000;99000;49000;22490;22490;22490;22490;22490;22490;22490
-131;'458;Malaysia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;10000;8000;6000;500;8000;600;1000;1300;2200;500;600;600;11500;6100;1300;11300;18900;9300;11900;4900;3300;10700;10700;10700;10700;101800;6500;5300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;247;168;168;9;91;14;28;37;32;8;97;97;538;249;58;796;905;551;1123;278;187;929;929;929;929;9654;746;741;334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6346000;6843000;8277000;8976000;10239000;12546000;14403000;16225000;16940000;18658000;18172000;20596000;24044000;21492000;18972000;26585008;27579008;28504000;28516000;27916000;30655008;32724000;32794000;31087008;28641008;29868000;35100000;38969008;41000000;39655008;39860000;43500000;36669000;34674000;33980000;29961000;30938000;21872000;21838000;22830000;18710000;17913000;21531000;23700000;23032000;21660000;23258000;21009000;18557000;17617000;15816000;15705000;14533000;15621000;12537000;12026000;12026000;12026000;12026000;12026000;12026000;12026000;12026000
-131;'458;Malaysia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;68000;76000;82000;35000;17000;12600;7500;15000;9300;22500;97800;255100;158900;23400;28100;10100;13700;24800;31500;31500;31500;300;300;300;300;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;665;736;938;355;195;135;97;192;134;339;1353;4659;5871;695;943;309;559;1485;3208;3208;3208;77;77;77;77;91;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2754000;3159000;3937000;5139000;6041000;8190800;9034900;10513900;11110700;11352800;11147400;11595600;12875500;12169600;10791800;15493200;16099200;16707800;16488000;15146000;15866300;19289904;18795296;16000000;19771408;18994608;22853200;20572208;21109808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;38878;46880;59817;66761;85829;125241;155122;179259;196835;210208;209339;233458;396111;433387;280951;573301;621856;719385;1379327;1204632;1059081;1446937;1409625;864000;1118223;1104631;1682230;1532484;1608776;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;1723674;1664305;1664305;1664305;1664305;1664305
-131;'458;Malaysia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-131;'458;Malaysia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;703000;1723674;1664305;1664305;1664305;1664305;1664305
-131;'458;Malaysia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;287000;613000;480000;737000;731000;962000;906000;592000;666000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;316000;788000;788000;788000;788000;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;287000;613000;480000;737000;731000;962000;906000;592000;666000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;613000;316000;788000;788000;788000;788000;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1871;Other industrial roundwood;5516;Production;m3;325000;335000;346000;357000;367000;378000;388000;399000;409000;419000;430000;441000;452000;463000;474000;485000;496000;507000;519000;532000;546000;560000;575000;590000;606000;623000;640000;657000;674000;692000;708000;725000;743000;760000;778000;795000;812000;828000;847000;847000;847000;847000;847000;672000;1187000;582000;769000;798000;710000;803000;1235000;1235000;1332000;1306000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000
-131;'458;Malaysia;1871;Other industrial roundwood;5616;Import quantity;m3;24000;30000;25000;3000;3000;3800;4700;8100;9000;15300;10400;9800;9800;6600;8000;6300;10500;13500;10000;10000;19400;19400;19400;19400;19400;23100;21200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1871;Other industrial roundwood;5622;Import value;1000 USD;173;203;127;26;25;30;20;36;38;64;46;42;42;42;58;60;101;205;184;184;277;290;340;380;420;545;510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1871;Other industrial roundwood;5916;Export quantity;m3;4000;3000;2000;17000;20000;28900;21600;43500;31800;5500;4200;27500;3900;12600;26800;22400;40200;12300;8300;34300;53600;53600;53600;53600;53600;1800;1800;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1871;Other industrial roundwood;5922;Export value;1000 USD;44;33;27;123;233;233;121;389;195;38;22;258;48;165;422;273;332;49;125;582;1215;1215;1215;1215;1215;293;293;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;325000;335000;346000;357000;367000;378000;388000;399000;409000;419000;430000;441000;452000;463000;474000;485000;496000;507000;519000;532000;546000;560000;575000;590000;606000;623000;640000;657000;674000;692000;708000;725000;743000;760000;778000;795000;812000;828000;847000;847000;847000;847000;847000;672000;1187000;582000;769000;798000;710000;803000;1235000;1235000;1332000;1306000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000;1078000
-131;'458;Malaysia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;24000;30000;25000;3000;3000;3800;4700;8100;9000;15300;10400;9800;9800;6600;8000;6300;10500;13500;10000;10000;19400;19400;19400;19400;19400;23100;21200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;173;203;127;26;25;30;20;36;38;64;46;42;42;42;58;60;101;205;184;184;277;290;340;380;420;545;510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;4000;3000;2000;17000;20000;28900;21600;43500;31800;5500;4200;27500;3900;12600;26800;22400;40200;12300;8300;34300;53600;53600;53600;53600;53600;1800;1800;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;44;33;27;123;233;233;121;389;195;38;22;258;48;165;422;273;332;49;125;582;1215;1215;1215;1215;1215;293;293;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;7805;7648;7794;0;3822;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28689;36025;31920;41846;47594;61455;51066;51086;55387;26208;26521;26837;27157;27480;27808;61000;17000;17000;28609;28813;28903;28993;29084;29175;29266;33000;44000;21000;20000;16000;16000;16000;29531
-131;'458;Malaysia;1630;Wood charcoal;5610;Import quantity;t;76000;72000;66000;45000;42000;22900;9000;8900;10600;18000;18200;28400;28400;34800;49800;42000;42000;43700;36500;35800;45600;61100;61100;61100;61100;52000;47100;47100;47100;47100;14500;15106;9195;3300;6400;4300;8200;5800;5000;13000;13000;13000;1480;2000;2700;11642;11000;5112;9000;18000;5000;24077;15848;16786;23533;17163;12004;50153;40557;28007;45301.28;31654;52679
-131;'458;Malaysia;1630;Wood charcoal;5622;Import value;1000 USD;1828;1539;1342;634;600;299;144;139;154;401;409;722;723;1108;1708;1440;1573;1794;1937;3510;2816;4090;4090;4090;4090;3931;3218;3218;3218;3218;1328;1547;595;285;849;1139;888;513;549;1329;1329;1329;444;552;733;1165;1099;2064;3341;3270;3386;5298;4741;4200;5448;4420;3386;15549;11929;8816;13722.59;12054;18653
-131;'458;Malaysia;1630;Wood charcoal;5910;Export quantity;t;200;50;1000;6000;6000;4400;3400;2900;4500;2500;7500;6400;6400;11200;5700;5400;10300;4700;11000;18500;12500;19000;19000;19000;19000;12800;12800;12800;12800;12800;20900;28443;18076;21800;30400;41900;35100;32100;36000;61200;61200;61200;33441;60000;50000;52933;28000;40000;32000;40000;33000;38640;35508;33304;41587;49457;54614;50349;54084;43795;35814.02;33380;31816
-131;'458;Malaysia;1630;Wood charcoal;5922;Export value;1000 USD;4;1;17;152;140;114;67;71;121;41;333;269;269;490;275;197;326;263;487;1084;705;523;700;900;1100;1030;1030;1030;1030;1030;4129;7640;7366;8047;10727;11170;11177;9707;11650;18986;18986;18986;10384;15785;13408;16929;11555;15853;18341;20858;23251;22544;19754;20094;24034;24775;26407;27046;28143;24584;21592.17;20114;19478
-131;'458;Malaysia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129000;361000;408000;408000;294000;454000;530000;497000;444000;5997000;5970000;5928000;3404652;3304000;3861000;3910000;3005000;2465000;2117000;2272000;2473000;2673000;2646000;2552000;2180000
-131;'458;Malaysia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;2400;1900;1600;1600;1087;1500;835;10000;9908;51985;2200;1600;1580;1813;1040;628;4291;3379;1314;2579;367;461;449;808;287
-131;'458;Malaysia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;207;177;159;159;178;221;223;826;793;890;424;298;466;651;354;333;940;1302;504;1325;142;156;259;285;219
-131;'458;Malaysia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163400;385500;452200;370000;370000;471000;259000;463961;453500;514000;541000;380000;361000;156432;271470;593129;632732;490000;758000;600000;478454;636350;642299;684341.6;653582;438876
-131;'458;Malaysia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6935;12149;24163;28073;28073;35042;20675;28496;34271;42406;40011;39539;36129;46801;69111;59634;55856;52290;49083;39002;44358;59466;62403;67413.12;73002;51732
-131;'458;Malaysia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129000;361000;408000;408000;294000;454000;530000;497000;444000;437000;371000;329000;237652;391000;576000;744000;848000;765000;713000;868000;1069000;1269000;1242000;1148000;776000
-131;'458;Malaysia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;403;400;400;5300;600;600;600;600;300;300;300;1000;335;290;198;2990;1000;600;580;163;330;173;2480;198;471;319;231;229;214;582;233
-131;'458;Malaysia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;26;26;26;225;33;50;51;27;31;31;31;91;93;76;43;110;200;116;100;107;116;116;126;75;350;170;83;115;123;211;182
-131;'458;Malaysia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;286500;612900;479600;737000;731000;962000;906000;585000;715000;498000;282400;531600;562000;597900;597900;400000;300000;200000;100000;100000;80000;60000;21400;13007;15600;34600;76900;47100;54500;154000;376000;447000;350000;350000;400000;209000;440461;430000;411000;459000;305000;277000;73947;145291;474053;498916;382000;630000;529000;467834;627130;640881;684186.6;653558;438876
-131;'458;Malaysia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;3185;4945;5004;10745;12831;21319;20953;7155;8866;6696;4300;9569;11250;11958;11958;8200;4886;5482;2600;2600;2124;1465;1112;670;1218;2127;4878;2968;3431;5465;11099;23875;26860;26860;30000;15675;20866;23930;25000;23269;19780;16669;21795;28801;17708;12988;19197;28045;25478;44020;59156;62264;67283.12;73000;51732
-131;'458;Malaysia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5560000;5599000;5599000;3167000;2913000;3285000;3166000;2157000;1700000;1404000;1404000;1404000;1404000;1404000;1404000;1404000
-131;'458;Malaysia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9377;7197;11700;9600;800;1800;1200;1800;1300;1300;1300;787;500;500;9710;9710;48995;1200;1000;1000;1650;710;455;1811;3181;843;2260;136;232;235;226;54
-131;'458;Malaysia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;279;489;422;86;417;136;156;150;128;128;147;130;130;750;750;780;224;182;366;544;238;217;814;1227;154;1155;59;41;136;74;37
-131;'458;Malaysia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103642;33221;11800;20800;48200;48200;9400;9500;5200;20000;20000;71000;50000;23500;23500;103000;82000;75000;84000;82485;126179;119076;133816;108000;128000;71000;10620;9220;1418;155;24;0
-131;'458;Malaysia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6920;2286;348;1140;2759;2759;1470;1050;288;1213;1213;5042;5000;7630;10341;17406;16742;19759;19460;25006;40310;41926;42868;33093;21038;13524;338;310;139;130;2;0
-131;'458;Malaysia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110000;210000;320000;275000;505000;615000;795000;795000;795000;795000;885000;985000
-131;'458;Malaysia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941;986;700;1785;2638;2812;6670;7827;4942;7314.13;5557;4703
-131;'458;Malaysia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;558;576;794;1146;1067;2012;2548;1737;2403;2325;2447
-131;'458;Malaysia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101417;201582;302404;230119;425368;607375;745982;657594;665448;588531;823127;897238
-131;'458;Malaysia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12064;55873;70561;58321;71359;87833;119675;100823;83278;79935.3;144587;141838
-131;'458;Malaysia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;85000;180000;190000;370000;530000;710000;710000;710000;710000;800000;900000
-131;'458;Malaysia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1650;534;396;1065;1574;1854;5365;6146;3260;4948.25;3600;2927
-131;'458;Malaysia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;544;323;359;504;647;776;1560;1861;1264;1771;1621;1213
-131;'458;Malaysia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37056;81142;168588;149045;296183;526992;703291;614558;634038;561815;790393;860283
-131;'458;Malaysia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4994;14146;27614;20365;29526;57912;95430;77642;67764;65148;126464;121548
-131;'458;Malaysia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;125000;140000;85000;135000;85000;85000;85000;85000;85000;85000;85000
-131;'458;Malaysia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;452;304;720;1064;958;1305;1681;1682;2365.89;1957;1776
-131;'458;Malaysia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;235;217;290;499;291;452;687;473;632;704;1234
-131;'458;Malaysia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64361;120440;133816;81074;129185;80383;42691;43036;31410;26716;32734;36955
-131;'458;Malaysia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7070;41727;42947;37956;41833;29921;24245;23181;15514;14787.3;18123;20290
-131;'458;Malaysia;1872;Sawnwood;5516;Production;m3;1632000;1697000;1933000;1780000;1845000;1915000;2389000;2637000;2660000;3171000;3076000;3782000;4281000;4165000;4002000;5230000;5760000;6019000;5943000;6371000;5703000;6398000;7282000;5933000;5494000;5525000;6285000;6662000;8275000;8848500;8992500;9368500;9395000;8858000;8382000;8382000;7326000;5091000;5237000;5590000;4696000;4643000;4769000;4954000;5193000;5149000;5084000;4486000;3875000;4321000;4011000;4023000;4758000;4463000;3501000;3403000;3264411;3440000;3371296;2273543;1935205;2521024;1890075
-131;'458;Malaysia;1872;Sawnwood;5616;Import quantity;m3;24000;28000;37000;22000;34000;18500;24800;29800;19400;33200;29600;61400;75900;96400;112600;157500;164200;160900;220400;212500;89900;84400;84400;84400;84400;31600;27800;18300;31700;31700;79500;115370;34637;328400;408600;341900;237300;462000;411000;487500;610000;700000;851994;1224540;1144580;1055056;764507;469441;797556;701230;356193;378007;338136;310355;320552;305443;347765;382680;536039;381955;440674;428862;445000
-131;'458;Malaysia;1872;Sawnwood;5622;Import value;1000 USD;1547;1481;1867;781;1083;779;877;923;598;1097;1119;1879;3022;7626;7897;11750;12761;10746;15165;17920;11124;10804;10804;10804;10804;7939;7668;5535;8467;8467;19230;25254;19660;51298;78628;81161;58414;71893;55689;47618;69253;96988;109871;189624;143583;190372;208305;173180;112012;134608;156019;169572;164311;159967;126235;117368;133325;154028;140268;133899;192430;206334;158760
-131;'458;Malaysia;1872;Sawnwood;5916;Export quantity;m3;557000;584000;702000;716000;740000;713700;861700;1202900;1192000;1417000;1342200;1848200;2240000;2174600;1914200;3087500;2993400;2827400;3535900;3302200;2807600;3137300;3493400;2888200;2830300;2999800;3899567;4162507;5194068;5331595;4998200;5490197;5460900;4642100;4296400;3716100;3108900;2765000;2827300;2650400;2644400;2550200;3504971;4340277;3229510;2604456;2493000;2479000;2258946;2899742;2084687;2037302;1965842;1953880;1990889;1980950;2166270;1931001;1808235;1336018;1245739;1176763;1419113
-131;'458;Malaysia;1872;Sawnwood;5922;Export value;1000 USD;20395;20277;26819;29562;30947;27015;35006;51749;54770;67956;64298;101787;235196;226746;180547;351382;345833;352961;610230;616234;430843;500979;596310;490010;420464;480993;678531;732256;1105789;1156099;1077176;1363285;1774297;1627134;1516700;1236124;1020035;661531;748947;431177;681928;659128;955495;1137334;913774;885040;925988;908716;684048;781374;811307;793516;797303;811544;815051;817106;905851;905664;814312;577759;610507;610662;508614
-131;'458;Malaysia;1632;Sawnwood, coniferous;5516;Production;m3;1000;1000;500;500;500;30000;41000;35000;40500;40500;40000;53000;75500;61500;76500;52000;56000;56000;58000;87000;89000;91000;93000;85000;80000;69500;70500;74000;68500;68500;68500;68500;85000;100000;150000;150000;150000;0;0;0;0;0;0;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;600;200;200;1600;4300;800;800;500;500;500;800;900;900;2500;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;3400;15400;20547;12000;6800;10600;20800;8300;26000;48000;36500;22000;12000;22994;99540;101580;83056;83056;52441;56720;87641;95805;106296;102459;91000;111000;125524;150000;181783;284987;238317;266428;265014;225000
-131;'458;Malaysia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;19;11;11;54;260;53;37;15;15;15;76;80;80;190;270;270;707;707;707;707;707;707;707;707;707;5194;6656;9965;5173;3883;10170;3739;11197;17934;7170;8573;4193;5247;11624;11583;13481;17731;13530;11183;18857;26677;27935;29191;27937;27972;29910;33450;49695;56427;57834;91960;96648;65700
-131;'458;Malaysia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;9450;10050;22400;10600;33450;20150;46250;41950;61500;76400;35350;44350;23250;60000;90400;51250;46050;46050;46050;48150;8700;51967;59807;59368;48595;64400;73118;90000;81700;145100;55900;101500;30000;39300;82400;82400;44200;19603;17510;27510;15456;12000;39000;13000;11000;3996;7604;2310;3836;8763;12731;13510;11450;12756;10632;10602;26260;26270
-131;'458;Malaysia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;456;534;768;544;1419;1020;2511;3111;9653;7220;3708;4648;3422;10055;20842;8637;7612;7632;7632;8278;1972;8466;14703;18607;20710;21932;24886;56133;48493;71034;24647;44283;10289;15848;27554;27554;12571;6808;6182;9874;6740;5865;20914;6102;4789;2051;4119;647;1220;3016;4857;4707;4240;3909;3253;4536;10466;11094
-131;'458;Malaysia;1633;Sawnwood, non-coniferous;5516;Production;m3;1631000;1696000;1932500;1779500;1844500;1885000;2348000;2602000;2619500;3130500;3036000;3729000;4205500;4103500;3925500;5178000;5704000;5963000;5885000;6284000;5614000;6307000;7189000;5848000;5414000;5455500;6214500;6588000;8206500;8780000;8924000;9300000;9310000;8758000;8232000;8232000;7176000;5091000;5237000;5590000;4696000;4643000;4769000;4934000;5173000;5129000;5064000;4466000;3855000;4301000;3991000;4003000;4738000;4443000;3501000;3403000;3264411;3440000;3371296;2273543;1935205;2521024;1890075
-131;'458;Malaysia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;24000;28000;37000;22000;34000;17900;24600;29600;17800;28900;28800;60600;75400;95900;112100;156700;163300;160000;217900;209100;86500;81000;81000;81000;81000;28200;24400;14900;28300;28300;64100;94823;22637;321600;398000;321100;229000;436000;363000;451000;588000;688000;829000;1125000;1043000;972000;681451;417000;740836;613589;260388;271711;235677;219355;209552;179919;197765;200897;251052;143638;174246;163848;220000
-131;'458;Malaysia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1547;1481;1867;781;1083;760;866;912;544;837;1066;1842;3007;7611;7882;11674;12681;10666;14975;17650;10854;10097;10097;10097;10097;7232;6961;4828;7760;7760;14036;18598;9695;46125;74745;70991;54675;60696;37755;40448;60680;92795;104624;178000;132000;176891;190574;159650;100829;115751;129342;141637;135120;132030;98263;87458;99875;104333;83841;76065;100470;109686;93060
-131;'458;Malaysia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;557000;584000;702000;716000;740000;704250;851650;1180500;1181400;1383550;1322050;1801950;2198050;2113100;1837800;3052150;2949050;2804150;3475900;3211800;2756350;3091250;3447350;2842150;2782150;2991100;3847600;4102700;5134700;5283000;4933800;5417079;5370900;4560400;4151300;3660200;3007400;2735000;2788000;2568000;2562000;2506000;3485368;4322767;3202000;2589000;2481000;2440000;2245946;2888742;2080691;2029698;1963532;1950044;1982126;1968219;2152760;1919551;1795479;1325386;1235137;1150503;1392843
-131;'458;Malaysia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;20395;20277;26819;29562;30947;26559;34472;50981;54226;66537;63278;99276;232085;217093;173327;347674;341185;349539;600175;595392;422206;493367;588678;482378;412186;479021;670065;717553;1087182;1135389;1055244;1338399;1718164;1578641;1445666;1211477;975752;651242;733099;403623;654374;646557;948687;1131152;903900;878300;920123;887802;677946;776585;809256;789397;796656;810324;812035;812249;901144;901424;810403;574506;605971;600196;497520
-131;'458;Malaysia;1634;Veneer sheets;5516;Production;m3;5000;13000;19000;11000;20000;48000;52500;40000;35200;217000;235000;254000;275000;297000;321000;348000;377000;408000;442000;475000;511000;549000;598000;642000;642000;515000;558000;383000;445000;480000;705000;1200000;2122000;2067000;1800000;1800000;1165000;760000;1008000;1117000;649000;662000;643000;637000;670000;612000;732000;1005000;821000;808000;842922;776316;786000;687000;622000;552854;576692;573115;472876;310484;259197;347250;391183
-131;'458;Malaysia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;200;100;100;100;200;200;100;100;700;1100;3000;1700;1700;2100;9000;9000;9000;9000;7600;5300;10000;4000;4000;6800;6955;9400;8100;16700;27000;12000;13000;17000;79000;98000;161000;128000;60000;48000;54000;67000;27948;27781;41623;60968;48643;43618;56278;48038;68478;113574;119426;314593;188362;181408;243770;264214
-131;'458;Malaysia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;77;20;16;16;58;60;54;79;129;201;387;370;370;480;1753;1753;1753;1753;1037;875;718;245;245;4838;5610;8912;10313;19533;29990;31218;27263;27325;69536;34095;35871;28167;44304;44380;48271;52387;66804;71479;97457;113615;87231;68533;84248;97227;93069;106866;96084;103722;90309;94809;129319;77780
-131;'458;Malaysia;1634;Veneer sheets;5916;Export quantity;m3;4000;13000;16000;10500;19500;47600;28800;40000;34600;45400;109600;140600;204400;297000;169500;170400;207500;184700;124400;126500;159900;175800;554000;556000;415000;375000;441500;211100;248700;332300;476600;760084;720300;612900;586500;649400;746600;720000;959000;934000;656000;601000;462000;398000;414000;333000;334000;467201;350217;360405;269071;295433;242949;287851;227206;222168;215993;206081;156038;60392;63131;52004;39657
-131;'458;Malaysia;1634;Veneer sheets;5922;Export value;1000 USD;229;820;991;1323;1726;1971;816;1659;1055;1552;3724;4192;9065;15427;7106;9002;11841;9014;15484;16330;20923;22948;83000;103000;77000;27133;34258;45652;54264;75014;109990;197313;274087;252435;229264;251003;257291;157749;232713;214299;125236;112800;109200;97568;111118;104400;112474;179135;120006;143445;130416;140430;121108;135893;86913;84305;76733;76081;60848;22506;22022;24323;17688
-131;'458;Malaysia;1873;Wood-based panels;5516;Production;m3;7000;10000;12000;12000;29000;59400;72700;122000;172700;198100;232700;332600;377800;313000;405400;526400;566400;467000;494200;604300;613000;802000;958000;803000;741000;751000;921000;1072000;1185000;1473000;1800000;2260000;3051000;3963000;4756000;4770000;5297000;5154000;4440000;4671000;6076000;6088000;7137000;7457000;7002000;7036000;7394000;6716000;5774000;6350000;5767400;5961000;5296000;5639000;5032000;4854247;4487698;4412355;4120298;3645661;3291000;2934000;2693000
-131;'458;Malaysia;1873;Wood-based panels;5616;Import quantity;m3;22000;22000;28000;17000;12000;21939;16244;13509;16833;18676;21228;23470;24443;19250;26000;30900;25200;38400;42200;27000;35900;37300;37300;37300;37300;8500;7900;50752;53975;60260;45400;74118;113417;170000;158800;114600;79400;95300;94400;110100;105400;136000;157068;292675;352221;315656;309656;763239;521632;531652;912190;1018010;937094;1009535;1046020;1058967;1176330;1655478;1816542;1824941;2101921;1891324;2152315
-131;'458;Malaysia;1873;Wood-based panels;5622;Import value;1000 USD;2387;2636;3175;1941;1547;1888;1385;1330;1375;1817;1828;2365;2756;3111;3307;4154;4390;5596;7616;7701;9753;10025;10025;10025;10025;3035;3853;8009;8562;8905;8012;14948;20374;28560;25319;21624;27224;22548;29097;25886;26445;31468;38123;58749;60763;76139;80084;185635;157503;187429;228601;248440;238191;261211;250880;251092;290922;386034;362614;391521;550522;527243;536051
-131;'458;Malaysia;1873;Wood-based panels;5916;Export quantity;m3;2000;3000;2000;6000;9000;18100;40100;70800;106700;143900;191400;270700;355300;215100;232700;407300;345205;411000;470000;477400;472100;408500;485100;406100;369100;484500;759512;875756;973084;1057888;1232700;1789940;2554300;3225800;3773300;4536300;4537500;4592000;4531000;4300000;4948800;5038000;5337032;5821496;6202981;6734860;6594500;5045038;5244125;5384754;4986070;4652790;4782639;5013831;4326598;4061602;3943021;3820710;3031671;2455892;2184986;1976947;1733656
-131;'458;Malaysia;1873;Wood-based panels;5922;Export value;1000 USD;428;450;370;724;1039;1988;4581;7715;11624;16569;20004;30637;65974;44479;44778;75136;67128;85014;134746;136073;134732;103554;118095;90564;78063;112402;197913;267154;279292;329160;376867;571479;1079660;1341315;1502974;1876989;1714297;1104301;1129882;1330150;1213331;1291471;1400754;1780535;1818193;2307861;2445291;2088026;1834182;2138165;2312992;2003737;2040784;2190772;1898373;1434953;1425529;1519487;1166724;948265;1018639;1038224;775445
-131;'458;Malaysia;1640;Plywood and LVL;5516;Production;m3;7000;10000;12000;12000;28000;58800;71900;120200;171600;197400;230900;330000;374900;311000;404000;525000;565000;465000;490000;601000;603000;787000;938000;783000;711000;711000;857000;992000;1090000;1363000;1670000;2100000;2821000;3613000;3996000;4100000;4447000;3904000;4123000;4434000;4318000;4341000;4771000;4734000;5006000;5433000;5481000;4837000;3901000;4450000;3937000;4117000;3475000;3819000;3185000;3029247;2755698;2502355;2150298;1675661;1321000;1244000;1004000
-131;'458;Malaysia;1640;Plywood and LVL;5616;Import quantity;m3;9000;13000;13000;11000;6000;3200;3400;3000;3400;5200;3900;8900;8000;5100;4200;3900;7900;14600;21600;22100;30800;32200;32200;32200;32200;3400;1900;33000;30000;30000;9000;11216;11217;14400;12700;6400;25000;34000;32000;25000;26000;17000;21443;23000;31640;75000;72000;146776;133149;174421;340837;441433;387124;437627;489024;441722;458809;1012979;1023514;946699;1178226;1244933;1319955
-131;'458;Malaysia;1640;Plywood and LVL;5622;Import value;1000 USD;1193;1766;1867;1309;904;555;675;536;656;1034;779;1468;1637;1441;981;850;1812;2212;4065;5339;7293;7565;7565;7565;7565;575;507;5000;4000;4000;2189;3508;5638;8664;8592;3326;8751;4357;7104;5918;8608;7000;10428;5929;10703;25500;26650;61868;40939;78626;123343;129139;132739;148567;153773;151731;172944;284460;266840;252132;390368;402095;393884
-131;'458;Malaysia;1640;Plywood and LVL;5916;Export quantity;m3;2000;3000;2000;6000;9000;17900;39900;70600;106500;143700;191200;270500;355100;214900;232500;406800;343905;409700;465800;474100;467000;402400;479000;400000;363000;452300;729000;833000;928600;1016900;1185600;1708463;2420700;3003700;3461700;4068300;3825000;3631000;3340000;3421000;3517000;3614000;3951000;4349000;4537000;4958000;4863000;3752000;3974410;3919980;3429200;3025391;3210388;3396008;2749804;2442427;2428127;2140938;1677100;1594265;1485346;1238813;1072078
-131;'458;Malaysia;1640;Plywood and LVL;5922;Export value;1000 USD;428;450;370;724;1039;1975;4569;7709;11618;16563;19998;30631;65968;44473;44772;74820;66706;84592;133195;134992;134217;102990;117531;90000;77499;109557;193019;257649;269119;319050;364161;552730;1033457;1265122;1403875;1748528;1539281;923305;893659;1165779;925662;1005488;1094000;1485000;1472100;1917401;2009030;1772325;1469683;1675795;1836203;1518405;1601405;1764213;1511045;1052455;1053445;1105398;822061;711694;791254;758922;545084
-131;'458;Malaysia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000
-131;'458;Malaysia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39524
-131;'458;Malaysia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990
-131;'458;Malaysia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;1000;600;800;1800;1100;700;1800;2600;2900;2000;1400;1400;1400;2000;4200;3300;10000;15000;20000;20000;30000;40000;64000;80000;95000;110000;130000;150000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22098;53100;142200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4441;6638;14987;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;200;200;200;200;200;200;200;200;200;200;500;1300;1300;4200;3300;5100;6100;6100;6100;6100;32200;30512;42756;44484;40988;47100;53080;40900;35400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;13;12;6;6;6;6;6;6;6;6;316;422;422;1551;1081;515;564;564;564;564;2845;4894;9505;10173;10110;12706;10006;7885;6854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500000;300000;150000;250000;110000;155000;534000;523000;123000;89000;637000;218000;218000;209000;177000;192000;133400;166000;164000;163000;190000;98000;102000;250000;310000;310000;310000;30000;29000
-131;'458;Malaysia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142900;103000;36400;38700;45000;55200;48800;52000;105988;155649;202000;186000;185000;408875;275940;251942;483292;455265;403987;435789;425514;489096;544227;450752;501482;631837;733003;461277;578248
-131;'458;Malaysia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15803;16375;11031;9392;12947;13000;10422;15000;21324;36259;26511;37860;40534;89536;95884;85469;78570;80939;65655;71823;63276;70389;83169;63485;59933;82588;113843;81195;84974
-131;'458;Malaysia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60600;100000;122500;231000;319000;421000;367000;367000;309508;384000;499000;580000;472000;635000;409269;433231;553407;602932;498835;592052;593572;529171;528221;598455;462240;276922;206774;173875;151389
-131;'458;Malaysia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12239;19911;22255;30327;44035;67322;57866;57866;41460;51521;61426;78549;108089;117507;70940;89157;107910;113326;109080;104499;95658;87111;91629;100828;75403;47465;45016;47311;35197
-131;'458;Malaysia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;100000;100000;100000;100000;100000;100000
-131;'458;Malaysia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;60;1383;3081;3735;3245;4010;2648;3244;1752;4790;761;1006;6479;3136;6877
-131;'458;Malaysia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;7;343;640;869;1090;1301;782;982;560;1079;413;303;1141;802;2305
-131;'458;Malaysia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47009;50671;79615;68830;75425;67353;68467;49570
-131;'458;Malaysia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9145;10447;19047;13257;16045;16586;18422;15329
-131;'458;Malaysia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;80000;200000;260000;370000;700000;1000000;207000;82000;1224000;1224000;2243000;2634000;1359000;1385000;1695000;1670000;1696000;1708000;1697000;1678000;1657000;1657000;1657000;1657000;1560000;1560000;1560000;1560000;1560000;1560000;1560000
-131;'458;Malaysia;1874;Fibreboard;5616;Import quantity;m3;13000;9000;15000;6000;6000;18739;12844;10509;13433;13476;17328;14570;16443;14150;21800;27000;17300;23800;20600;4900;5100;5100;5100;5100;5100;5100;6000;17752;23975;30260;36400;40804;49100;13400;3200;5200;18000;22600;17400;29900;30600;67000;29637;114026;118581;54656;52656;207463;112483;103906;84980;117577;142738;132109;128834;124905;171542;186957;290785;245399;184213;181978;247235
-131;'458;Malaysia;1874;Fibreboard;5622;Import value;1000 USD;1194;870;1308;632;643;1333;710;794;719;783;1049;897;1119;1670;2326;3304;2578;3384;3551;2362;2460;2460;2460;2460;2460;2460;3346;3009;4562;4905;5823;6999;8098;4909;924;1923;7442;8799;9046;6968;7415;9468;6371;16561;23549;12779;12900;34196;20673;22991;26048;37493;38707;39520;33049;27990;34249;37010;35428;56498;45170;43151;54888
-131;'458;Malaysia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28397;92700;186700;251000;368000;590000;730000;872000;458000;1064800;1057000;1076524;1088496;1166981;1196860;1259500;658038;860446;1031543;1003463;1024467;1073416;1025771;983222;1042995;936002;1001702;823501;509280;425513;495792;460619
-131;'458;Malaysia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743;38318;69339;86860;108550;152761;150669;192188;97049;229803;228117;265294;244014;284667;311911;328172;198194;293559;373213;368879;372006;330299;322060;291670;286242;270008;294214;256003;173061;165783;213569;179835
-131;'458;Malaysia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207000;270000;120000;120000;120000;120000;236000;248000;237000;218000;197000;197000;197000;197000;100000;100000;100000;100000;100000;100000;100000
-131;'458;Malaysia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056;1973;5761;4012;4012;1483;1483;10430;14367;22745;18297;20480;14337;10591;42916;68905;63445;39934;20491;27375;62337
-131;'458;Malaysia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1881;2600;2873;2199;2199;964;964;2951;5091;8951;6972;8174;5303;3739;10955;15952;9340;10510;7326;11878;9872
-131;'458;Malaysia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18625;16319;39638;31100;85900;20500;45446;75586;25488;13105;6717;6313;6157;6815;26133;60247;57635;43268;58621;45367;48960
-131;'458;Malaysia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16377;19363;26432;20840;40100;9532;31492;25068;8805;5686;3005;2947;2324;2707;13437;31400;29780;22300;27598;24031;21773
-131;'458;Malaysia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260000;370000;700000;1000000;207000;82000;188000;188000;1000000;1182000;1239000;1265000;1575000;1550000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000
-131;'458;Malaysia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;5200;6000;10600;11400;17600;17600;54000;19558;96612;76000;36000;34000;160732;71000;83768;56381;84010;113310;105740;111000;106424;124191;110783;200532;175354;141048;141048;179083
-131;'458;Malaysia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;924;1923;5035;6392;8868;3864;3864;5917;3344;12000;16000;8720;8841;27485;14357;16925;16490;24140;27509;28925;26513;22546;21874;18944;22234;39439;32566;27887;43373
-131;'458;Malaysia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251000;368000;590000;730000;872000;458000;1064800;1057000;973426;1010000;1065000;1153000;1126000;624800;505000;703957;614975;589362;650088;519593;465324;480118;486388;521591;465228;319947;270215;371919;341107
-131;'458;Malaysia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86860;108550;152761;150669;192188;97049;229803;228117;235570;214827;248385;288495;281378;187294;128991;204298;200420;220805;205564;171047;140765;140947;145451;158884;150773;108327;106586;157751;134401
-131;'458;Malaysia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1036000;1036000;1036000;1182000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;10000;8000;2400;8800;8000;12800;11200;13600;9200;20200;24900;14700;17800;17600;3500;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;12834;23200;6000;0;0;12000;12000;6000;12300;13000;13000;9023;15441;36820;14644;14644;45248;40000;9708;14232;10822;11131;5889;3497;7890;4435;7269;26808;30111;22674;13555;5815
-131;'458;Malaysia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;601;307;92;344;324;589;577;813;819;2020;3000;2200;2865;2872;1307;1555;1555;1555;1555;1555;1555;1555;1555;1555;1555;1555;2293;2137;2209;0;0;2407;2407;178;3104;3551;3551;1146;1961;4676;1860;1860;5747;5352;3115;4467;4402;4226;2421;1233;1705;1420;2114;3854;6549;5278;3386;1643
-131;'458;Malaysia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84473;62177;62343;12760;47600;12738;310000;252000;363000;422000;416611;499865;511741;556062;423481;419864;300638;146065;96677;78506;70552
-131;'458;Malaysia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13347;9824;9850;2576;6694;1368;133076;143847;159654;145515;121730;148066;148581;142588;111120;103930;75450;42434;31599;31787;23661
-131;'458;Malaysia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;80000;200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;13000;9000;15000;6000;6000;8739;4844;8109;4633;5476;4528;3370;2843;4950;1600;2100;2600;6000;3000;1400;1100;1100;1100;1100;1100;1100;2000;13752;19975;26260;32400;27970;25900;7400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1194;870;1308;632;643;732;403;702;375;459;460;320;306;851;306;304;378;519;679;1055;905;905;905;905;905;905;1791;1454;3007;3350;4268;4706;5961;2700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28397;92700;186700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743;38318;69339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1879;Total fibre furnish;5510;Production;t;;;;;;100;300;500;600;10700;10700;15700;15700;16700;19700;22700;22700;22700;22700;58700;58700;58700;60700;80700;80700;35700;35700;130700;130700;102700;102700;102700;190700;205700;207700;204700;193700;214700;221700;1013700;1065700;1065700;1065700;1065700;1065700;1257700;1257700;1257700;1341000;1345000;1345000;1345000;1345000;1435000;1331000;1331000;1331000;1331000;1331000;1331000;1331000;1331000;1331000
-131;'458;Malaysia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;400;1200;1300;2300;1800;2300;2300;22407;14041;17642;17396;15513;14413;17803;19400;23800;23800;23800;19300;23300;27800;60812;45100;50390;68900;76423;63141;140941;86000;133600;107100;165000;270400;298700;299900;305433;316640;324193;347164;468782;468782;422108;272933;332283;360782;399591.3;295692;321540;345245;440842;439730;519410;763694;1231869;1989390.47;2046813;3536209
-131;'458;Malaysia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;67;185;204;330;354;468;468;2941;1663;2373;2300;2028;2388;3030;3931;3358;3358;7590;5764;9664;14520;39828;26190;27156;31627;32286;18929;49043;48798;51065;36197;41091;60402;69710;59009;61885;75222;97670;132743;198247;198247;210080;147005;201033;230329;182967;137007;160843;153343;163007;183885;223332;230230;255981;616250.5;692424;722720
-131;'458;Malaysia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;171;379;165;1136;513;6347;6400;6400;6000;3000;3000;28300;28300;44219;35501;44719;64900;75415;14742;66900;50300;43400;56300;28000;1100;7500;7500;8492;39419;46329;69404;21299;27622;15652;8765;10650;19813;60293;69828;69130;62515;1519;2080;3214;15787;21976;2463.42;21086;9123
-131;'458;Malaysia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;24;56;18;137;57;59;60;60;80;40;40;1037;1037;2555;1997;2490;3144;3933;1842;5684;3999;2936;4638;1868;108;933;933;1269;11963;12358;14589;8400;11860;5733;2951;10790;14734;34998;44209;44525;38998;912;1783;2512;8597;9175;1976.16;20061;6967
-131;'458;Malaysia;1878;Pulp for paper;5510;Production;t;;;;;;100;300;500;600;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;88700;103700;105700;102700;91700;112700;119700;123700;145700;145700;145700;145700;145700;145700;145700;145700;145000;145000;145000;145000;145000;235000;131000;131000;131000;131000;131000;131000;131000;131000;131000
-131;'458;Malaysia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;400;1200;1300;2300;1800;2300;2300;3300;1800;3400;2900;3800;4100;5100;4700;4200;4200;13800;9300;22100;27100;58900;37200;37200;55900;50824;49230;93441;64200;102300;71200;70000;71300;60900;59900;65433;86422;93726;178810;272227;272227;220000;108465;151823;141853;174491.3;139409;174617;156454;165651;176606;184656;197458;159243;198683.73;210568;171013
-131;'458;Malaysia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;67;185;204;330;354;468;468;1014;606;1349;1265;1506;1806;2139;2772;2511;2511;7140;5314;9578;14419;39410;24718;24718;30036;28475;17418;41508;44863;48848;30774;33639;35188;35994;33368;36244;44316;57102;105065;167946;167946;160216;105858;130845;159064;135881;105728;130641;116856;109635;124737;156556;140977;94656;146014.73;200059;135508
-131;'458;Malaysia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;992;8632;15542;15967;13622;13622;10174;8600;10502;19599;56892;68629;69101;62497;712;1232;3214;8380;9984;2459.42;19766;4245
-131;'458;Malaysia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;336;6292;6687;6532;6959;6959;4669;2853;9659;14486;33980;43776;44517;38992;726;1599;2512;7157;6943;1968.16;19705;6091
-131;'458;Malaysia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;103000;105000;102000;91000;112000;119000;123000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;235000;131000;131000;131000;131000;131000;131000;131000;131000;131000
-131;'458;Malaysia;1875;Wood pulp;5610;Import quantity;t;;;;;;;400;1200;1300;2300;1800;2300;2300;3300;1800;3400;2900;3800;4100;5100;4700;4200;4200;13800;9300;22100;27100;58900;37200;37200;55900;51388;49434;93645;64400;102600;72200;70500;72100;61200;60100;60100;80947;90988;177552;268750;268750;218002;105545;147872;140096;172165;138015;173721;155836;165053;175846;183932;196789;158994;197986.36;205184;169904
-131;'458;Malaysia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;67;185;204;330;354;468;468;1014;606;1349;1265;1506;1806;2139;2772;2511;2511;7140;5314;9578;14419;39410;24718;24718;30036;28658;17495;41585;44959;48957;31371;33911;35645;36149;33645;33645;42470;55726;104141;162264;162264;157703;101684;127213;153996;129433;101775;128695;115675;108438;122846;154762;139456;93002;144568.73;183803;133995
-131;'458;Malaysia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;8616;15556;15981;12730;12730;9481;5620;9572;18923;57120;68343;69087;62456;659;1191;2801;8320;10430;2466.42;19690;3285
-131;'458;Malaysia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6181;6592;6437;6650;6650;4445;2208;9303;14258;34092;42855;44159;38844;498;1485;1840;5734;5737;1968.16;18900;2579
-131;'458;Malaysia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-131;'458;Malaysia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1548;3324;3997;3633.37;4239;2623
-131;'458;Malaysia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;731;1322;2558;2742;2775.08;5617;2878
-131;'458;Malaysia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;35;35;296;13
-131;'458;Malaysia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;22;22;347;12
-131;'458;Malaysia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;
-131;'458;Malaysia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;400;700;800;1400;1000;700;700;1000;100;100;100;100;100;200;200;200;200;4300;4300;6400;6500;8000;7200;7200;7200;388;29;29;0;0;0;0;0;0;0;0;1124;708;6102;6102;6102;455;455;0;2;1;6;211;232;116;;;;;;;
-131;'458;Malaysia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;67;93;112;212;172;130;130;366;48;48;48;43;37;130;173;173;173;2314;2314;2742;2766;3410;3718;3718;3718;209;9;9;0;0;0;0;0;0;0;0;451;78;2054;2054;2054;185;185;0;2;5;6;154;248;263;;;;;;;
-131;'458;Malaysia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;2358;2358;2358;2358;2358;2358;345;345;1;0;63;45;5;;;;;;;
-131;'458;Malaysia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;704;704;704;704;704;704;107;107;7;0;42;60;8;;;;;;;
-131;'458;Malaysia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;103000;105000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-131;'458;Malaysia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482;902;902;900;900;900;900;3200;3200;3200;3200;3512;11900;3620;11000;11000;13772;5000;8298;8221;8812;4538;4053;2902;2871;;;;;;;
-131;'458;Malaysia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;376;376;376;376;376;376;1768;1768;1768;1768;1779;9000;2364;7017;7017;10410;5919;7397;7841;6710;3297;3157;2384;1961;;;;;;;
-131;'458;Malaysia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1999;1999;2114;2778;2778;6417;1000;704;64;57;5;0;0;0;;;;;;;
-131;'458;Malaysia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;840;840;636;1637;1637;3121;1102;469;94;59;12;0;0;0;;;;;;;
-131;'458;Malaysia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;91000;112000;119000;123000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;235000;131000;131000;131000;131000;131000;131000;131000;131000;131000
-131;'458;Malaysia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;500;500;900;800;1600;1600;2300;1700;3300;2800;3700;4000;4900;4500;4000;4000;9500;5000;15700;20600;50900;30000;30000;48700;49886;48289;92500;63300;101400;70300;69100;68100;57700;56700;56700;76234;77357;167351;251169;251169;203069;100010;139525;131852;163320;133371;169397;152661;162041;174849;182227;193428;154673;194328.99;200793;167104
-131;'458;Malaysia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;92;92;118;182;338;338;648;558;1301;1217;1463;1769;2009;2599;2338;2338;4826;3000;6836;11653;36000;21000;21000;26318;27819;17014;41104;44487;48472;30398;33263;33420;34226;31600;31600;40195;46089;99395;152865;152865;146616;95525;119728;146093;122661;98337;125266;112972;106171;122073;153395;136287;90103;141753.65;178089;130993
-131;'458;Malaysia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6557;11155;11465;7550;7550;680;2242;8453;18190;56739;68312;68903;62394;646;1191;2801;8273;9889;2413.42;19373;3272
-131;'458;Malaysia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5280;5023;5072;4284;4284;594;384;8684;13886;33863;42828;44053;38765;484;1485;1840;5705;5405;1924.16;18535;2564
-131;'458;Malaysia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;100;300;100;500;300;400;100;200;200;200;300;100;100;500;200;200;6500;9395;17318;39000;20300;24400;9700;26000;18100;17600;13700;13700;10059;16568;16682;20957;20957;29096;26000;32123;34674;48846;45414;66709;49503;48373;53869;52345;51916;34261;73601.03;43809;42479
-131;'458;Malaysia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;4;106;28;154;113;217;87;121;121;88;180;46;43;250;100;100;3772;5187;5952;14729;14243;14028;3465;12115;8115;9116;5971;5971;5363;11585;7865;11741;11741;20078;15368;25642;34089;32237;31646;47233;33396;28874;36998;45331;35501;19133;54968.89;37312;30746
-131;'458;Malaysia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;87;87;12;12;570;15;15;58;0;141;1;1;1;1;1;1;1;1
-131;'458;Malaysia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;62;62;7;7;458;11;11;4;0;64;1;1;1;1;1;1;1;1
-131;'458;Malaysia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;91000;112000;119000;123000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;235000;131000;131000;131000;131000;131000;131000;131000;131000;131000
-131;'458;Malaysia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;400;100;400;400;400;400;400;100;400;500;800;600;800;800;5500;900;10100;13500;39400;22300;22300;27800;35482;29107;51500;42200;71200;59600;39900;45500;37600;37900;37900;60115;58680;148176;228240;228240;167134;70000;107190;92262;113869;87640;102313;102829;113420;120736;129611;141277;120163;120495.96;156211;124501
-131;'458;Malaysia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;5;25;79;79;79;79;79;27;191;258;399;418;507;507;2749;720;4427;7822;30250;17150;17150;14866;19862;10061;25354;30069;30958;26342;19586;22694;23762;22835;22835;31670;33180;89857;139772;139772;120906;77502;93726;107310;89653;66093;77441;79000;76840;84603;107500;100345;70602;86415.7;139891;100039
-131;'458;Malaysia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6411;11155;11441;7166;7166;347;2000;7774;18066;17000;458;210;168;638;621;2770;8266;9881;2409.42;19370;3270
-131;'458;Malaysia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5115;5023;5000;4124;4124;361;214;8136;13785;9552;335;179;136;479;1083;1781;5692;5389;1918.16;18533;2561
-131;'458;Malaysia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;271;235;249;232;773;124
-131;'458;Malaysia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;564;441;368;369.06;886;208
-131;'458;Malaysia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;569;30;6;7;3;2;1
-131;'458;Malaysia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;58;12;15;5;1;2
-131;'458;Malaysia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;1500;1200;1700;2000;2300;2800;1900;1900;2300;2500;4500;6400;10000;7000;7000;7000;521;521;0;0;0;0;0;1500;200;2000;2000;10;13;29;528;528;22;10;11;19;66;26;63;6;1;;;;;;;
-131;'458;Malaysia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;552;461;611;745;1159;1460;974;974;1033;1200;1798;3409;5000;3500;3500;3500;254;254;0;0;0;0;0;775;41;702;702;24;42;37;324;324;86;38;40;97;67;116;40;38;3;;;;;;;
-131;'458;Malaysia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;3;0;1;1;1;2;0;0;0;;;;;;;
-131;'458;Malaysia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;5;0;2;2;2;10;0;0;0;;;;;;;
-131;'458;Malaysia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;500;500;500;700;1200;1200;1900;1200;1100;1400;1100;1200;1400;1000;1100;1100;1500;1300;1000;600;1000;500;500;7400;4488;1343;2000;800;5800;1000;3200;3000;2300;3100;3100;6050;2096;2464;1444;1444;6817;4000;201;4897;539;291;312;323;247;;;;;;;
-131;'458;Malaysia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;92;92;113;157;259;259;569;475;564;701;507;653;234;634;736;736;956;900;565;379;500;250;250;4180;2516;747;1021;175;3486;591;1562;1836;1307;2092;2092;3138;1282;1636;1028;1028;5546;2617;320;4597;704;482;552;538;454;;;;;;;
-131;'458;Malaysia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;146;0;24;49;49;318;230;108;108;39723;67794;68693;62085;7;;;;;;;
-131;'458;Malaysia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;165;0;72;25;25;221;163;88;88;24298;42479;43874;38565;4;;;;;;;
-131;'458;Malaysia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;214;214;200;300;1000;500;800;300;200;200;77;1023;479;479;479;706;80;49;21;32;100;60;41;25;97;157;37;324;24;152;177
-131;'458;Malaysia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;96;96;96;109;597;272;457;155;277;277;45;559;328;328;328;492;55;88;60;57;135;118;71;43;42;45;611;157;40;97;124
-131;'458;Malaysia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;26;20;70;324;323;26;121;17;8;0;0;0;506;18;21;0
-131;'458;Malaysia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;26;18;43;171;163;15;64;19;6;0;0;0;310;22;18;3
-131;'458;Malaysia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;100;300;500;600;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;10;10;0;0;0;0;0;0;0;5533;5552;3761;1737;3956;3956;2704;3000;4000;1778;2358.3;1494;956;659;623;857;881;706;573;721.38;5536;1286
-131;'458;Malaysia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;19;19;0;0;0;0;0;0;0;2876;1891;1935;1252;6010;6010;3005;4229;3720;5128;6505;4088;2064;1252;1240;1933;1839;2132;1811;1486;16353;1637
-131;'458;Malaysia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;992;60;30;30;936;936;719;3000;1000;1000;95;312;135;58;61;41;413;60;60;11;97;960
-131;'458;Malaysia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;336;136;120;120;334;334;250;663;399;399;51;936;422;167;234;114;672;1423;1516;22;823;3515
-131;'458;Malaysia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;50;582;1200;1200;431;500;242;356;772;451;637;505;599;1192;1981;404;302;2049.88;104987;183241
-131;'458;Malaysia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;478;631;1287;1287;867;982;1306;1912;2053;1354;1640;527;921;1670;1983;1519;1079;2257.45;25458;27412
-131;'458;Malaysia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3400;8700;16666;16666;7296;5000;511;55;95;2234;59;14;92;261;25749;74446;722380;653616.47;695605;1218032
-131;'458;Malaysia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1700;7100;6419;6419;5075;3235;155;225;51;970;15;14;24;380;9894;21944;132968;224902.32;234611;285987
-131;'458;Malaysia;1669;Recovered paper;5510;Production;t;;;;;;;;;;10000;10000;15000;15000;16000;19000;22000;22000;22000;22000;58000;58000;58000;60000;80000;80000;35000;35000;130000;130000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;890000;920000;920000;920000;920000;920000;1112000;1112000;1112000;1196000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000;1200000
-131;'458;Malaysia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;19107;12241;14242;14496;11713;10313;12703;14700;19600;19600;10000;10000;1200;700;1912;7900;13190;13000;25599;13911;47500;21800;31300;35900;95000;199100;237800;240000;240000;230218;230467;168354;196555;196555;202108;164468;180460;218929;225100;156283;146923;188791;275191;263124;334754;566236;1072626;1790706.73;1836245;3365196
-131;'458;Malaysia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;1927;1057;1024;1035;522;582;891;1159;847;847;450;450;86;101;418;1472;2438;1591;3811;1511;7535;3935;2217;5423;7452;25214;33716;25641;25641;30906;40568;27678;30301;30301;49864;41147;70188;71265;47086;31279;30202;36487;53372;59148;66776;89253;161325;470235.77;492365;587212
-131;'458;Malaysia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;171;379;165;1136;513;6347;6400;6400;6000;3000;3000;28300;28300;44219;35501;44719;64900;75415;14742;66900;50300;43400;56300;28000;1100;7500;7500;7500;30787;30787;53437;7677;14000;5478;165;148;214;3401;1199;29;18;807;848;0;7407;11992;4;1320;4878
-131;'458;Malaysia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;24;56;18;137;57;59;60;60;80;40;40;1037;1037;2555;1997;2490;3144;3933;1842;5684;3999;2936;4638;1868;108;933;933;933;5671;5671;8057;1441;4901;1064;98;1131;248;1018;433;8;6;186;184;0;1440;2232;8;356;876
-131;'458;Malaysia;1876;Paper and paperboard;5510;Production;t;;;;;;200;3000;3500;7000;7000;10000;12000;19000;19000;19000;18000;20000;38000;46000;81000;62000;68000;45000;50000;53000;73000;97000;120000;251000;275000;293000;636000;663000;574000;665000;674000;711000;761000;859000;845000;910000;910000;1000000;963000;971000;1086000;1092000;1122000;1577000;1615000;1911000;2219000;2063000;1750000;1750000;1750000;1750000;1750000;1750000;1750000;1750000;1750000;1750000
-131;'458;Malaysia;1876;Paper and paperboard;5610;Import quantity;t;64000;77700;81000;43000;53000;56100;72000;85100;106200;145200;134900;136000;175400;189700;133600;206900;222700;246300;255800;255300;302300;288000;295800;303600;311000;364200;396300;401300;554310;611719;854800;982333;617000;908900;808300;1118900;992600;820700;1365201;1013300;1181300;1106800;1450068;2045821;2215442;2469368;2228109;2015667;1327210;1607633;1550074;1460269;1576736;1571230;1405884;1637112;1559876;1697948;1668586;1639335;1587523.66;1258376;1092128
-131;'458;Malaysia;1876;Paper and paperboard;5622;Import value;1000 USD;14874;17877;18485;8998;10779;11618;14229;16759;19065;27143;28390;32364;55817;96619;65506;93380;95874;108578;115925;157096;186374;188364;190434;192686;199300;233946;272709;289400;419386;447408;572577;617812;356939;596261;672710;896442;761857;575429;729617;700867;791167;718796;745377;1034315;1009869;1110565;1233810;1351052;1086683;1454268;1491848;1389338;1422357;1407080;1054783;1340047;1376320;1556634;1428947;1226786;1472290.51;1364175;1126393
-131;'458;Malaysia;1876;Paper and paperboard;5910;Export quantity;t;1000;5000;3000;600;200;400;900;700;2400;3700;3300;4400;2300;2300;3900;12600;3200;13400;10100;5000;3700;2900;2900;2900;2800;2800;2800;2800;98825;91304;89000;140030;47400;87800;40700;102600;98500;41200;95900;65300;75300;75300;294830;299083;260055;243407;275414;308236;274351;318917;315376;371818;324428;305563;316889;311644;288746;271095;386215;432766;878032.1;1066968;1147494
-131;'458;Malaysia;1876;Paper and paperboard;5922;Export value;1000 USD;472;1590;788;152;41;67;208;136;510;544;495;547;469;469;1692;5472;666;3395;2454;2295;2140;1840;1840;1840;1790;1790;1790;1790;76127;68911;62293;81723;30226;56275;31114;79321;87594;34951;70522;51946;67304;67304;146669;163272;163286;180330;219746;300115;205238;258872;280385;314916;269213;251763;238530;227371;222523;233696;292923;272163;617319.62;729125;1000910
-131;'458;Malaysia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;3000;2000;3000;3000;3000;25000;25000;129000;130000;131000;201000;201000;161000;164000;147000;129000;125000;223000;415000;415000;415000;438000;403000;411000;386000;392000;422000;435000;435000;435000;546000;648000;450000;450000;450000;450000;450000;450000;450000;450000;450000;450000
-131;'458;Malaysia;2042;Graphic papers;5610;Import quantity;t;37000;43700;45000;22000;25000;29300;35000;43300;46200;58900;60900;59300;79400;80400;65200;87600;102900;126500;136000;127700;184300;170000;177800;163600;170000;230000;202500;187700;254310;311719;369000;439645;329500;464500;379600;518900;505100;421700;723200;449900;512600;448200;812784;1209787;1453575;1631483;1302475;1124102;693072;725650;668597;696033;701957;653550;524386;673687;620855;590711;577908;467782;483223.81;511402;474599
-131;'458;Malaysia;2042;Graphic papers;5622;Import value;1000 USD;8062;9454;9890;4914;5831;6109;7280;8762;9946;11584;13618;14322;24570;39825;30602;39369;41450;54154;61501;83996;104398;106388;108458;101286;108000;138046;128809;126100;189386;217408;277935;283437;183776;291299;345265;463252;410749;281990;323030;311328;372378;315308;346964;500285;485488;517431;573202;604783;554958;696060;725576;658703;630614;599327;481130;550038;567170;627814;582611;420115;490233.72;541399;495639
-131;'458;Malaysia;2042;Graphic papers;5910;Export quantity;t;;;;;;200;300;200;600;800;700;700;600;600;700;1000;500;4400;1100;200;200;200;200;200;100;100;100;100;96125;88604;58900;93701;20700;53400;6300;58100;54400;200;46800;41000;40000;40000;132255;121433;98864;92466;117294;106357;108898;113666;117947;166598;113048;118716;181460;140509;65249;54988;128949;59215;50216.88;62276;43929
-131;'458;Malaysia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;31;65;23;128;145;147;153;155;155;268;292;181;1474;533;155;140;140;140;140;90;90;90;90;74427;67211;42826;56246;13033;34446;9285;41526;43328;133;18940;23459;22007;22007;55055;49622;46724;55829;66959;81456;72608;86818;93633;129358;87443;88133;107251;74494;39146;45671;104641;51577;60860.11;69192;51541
-131;'458;Malaysia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;3000;2000;100000;250000;250000;250000;253000;253000;253000;250000;250000;250000;270000;270000;270000;270000;400000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000
-131;'458;Malaysia;1671;Newsprint;5610;Import quantity;t;19000;19700;20000;11000;12000;15400;16200;22400;23800;38400;34000;31500;39500;43400;34100;44700;60800;66000;68000;66000;113200;98900;95000;98600;100000;130000;123000;117700;122000;154000;191400;226863;172700;211700;296800;237900;299000;198000;143200;134000;185000;185000;203820;248265;143241;129693;129693;144822;178087;224681;224681;160760;186996;139249;64568;135029;97290;66994;52644;48657;20600.13;19299;16809
-131;'458;Malaysia;1671;Newsprint;5622;Import value;1000 USD;3151;3273;3435;1933;2166;2351;2555;3459;3850;5889;6368;5951;8638;16540;14122;16889;19405;22300;25000;32300;48832;50822;48800;50286;51000;56646;63809;61100;66000;72000;114755;103147;66110;87908;242559;176362;200000;104420;66032;67399;110759;110759;87038;129784;81720;76000;76000;113833;116357;152810;152810;108281;114599;84563;34493;67735;50592;41842;30432;22052;11327.14;14677;10971
-131;'458;Malaysia;1671;Newsprint;5910;Export quantity;t;;;;;;100;100;;200;200;200;200;300;300;200;100;200;4000;900;100;100;100;100;100;;;0;;;;;3877;;0;2800;700;1200;200;46800;41000;40000;40000;49574;15973;30440;42761;42761;50831;51308;59111;75002;60179;36776;41037;96766;108140;48624;38817;83850;27559;7853.08;36336;16739
-131;'458;Malaysia;1671;Newsprint;5922;Export value;1000 USD;;;;;;11;15;;33;32;39;36;65;65;78;39;78;1300;331;62;50;50;50;50;;;0;;;;;1285;;0;2728;262;681;133;18940;23459;22007;22007;20222;7501;16603;25041;25041;31951;25990;34356;48307;36452;22223;23240;45059;50559;23266;27174;40123;11679;3944.28;28030;10808
-131;'458;Malaysia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;3000;2000;3000;3000;3000;25000;25000;129000;130000;131000;201000;201000;159000;162000;145000;126000;123000;123000;165000;165000;165000;185000;150000;158000;136000;142000;172000;165000;165000;165000;276000;248000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-131;'458;Malaysia;1674;Printing and writing papers;5610;Import quantity;t;18000;24000;25000;11000;13000;13900;18800;20900;22400;20500;26900;27800;39900;37000;31100;42900;42100;60500;68000;61700;71100;71100;82800;65000;70000;100000;79500;70000;132310;157719;177600;212782;156800;252800;82800;281000;206100;223700;580000;315900;327600;263200;608964;961522;1310334;1501790;1172782;979280;514985;500969;443916;535273;514961;514301;459818;538658;523565;523717;525264;419125;462623.68;492103;457790
-131;'458;Malaysia;1674;Printing and writing papers;5622;Import value;1000 USD;4911;6181;6455;2981;3665;3758;4725;5303;6096;5695;7250;8371;15932;23285;16480;22480;22045;31854;36501;51696;55566;55566;59658;51000;57000;81400;65000;65000;123386;145408;163180;180290;117666;203391;102706;286890;210749;177570;256998;243929;261619;204549;259926;370501;403768;441431;497202;490950;438601;543250;572766;550422;516015;514764;446637;482303;516578;585972;552179;398063;478906.58;526722;484668
-131;'458;Malaysia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;100;200;200;400;600;500;500;300;300;500;900;300;400;200;100;100;100;100;100;100;100;100;100;96125;88604;58900;89824;20700;53400;3500;57400;53200;;;;;;82681;105460;68424;49705;74533;55526;57590;54555;42945;106419;76272;77679;84694;32369;16625;16171;45099;31656;42363.79;25940;27190
-131;'458;Malaysia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;20;50;23;95;113;108;117;90;90;190;253;103;174;202;93;90;90;90;90;90;90;90;90;74427;67211;42826;54961;13033;34446;6557;41264;42647;;;;;;34833;42121;30121;30788;41918;49505;46618;52462;45326;92906;65220;64893;62192;23935;15880;18497;64518;39898;56915.83;41162;40733
-131;'458;Malaysia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6232;16157;8800;7900;13200;58238;89000;113034;85438;104300;69370;15250;15488;15488;13841;16251;12160;9265;10439;8318;10105;6897;6962;10205.44;7327;6197
-131;'458;Malaysia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4504;6518;6187;7729;9189;22321;34689;28506;20491;38037;45644;17546;33692;33692;29524;28534;15917;12682;13985;12594;15339;10810;10363;16774.2;13894;11296
-131;'458;Malaysia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988;3500;4924;7175;4800;783;489;751;608;837;743;217;411;151;446;849;358;665;1915.13;2133;2465
-131;'458;Malaysia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;969;1943;2421;747;1613;1243;1144;869;2676;2656;3074;539;951;399;542;748;700;1128;2118.22;2946;3907
-131;'458;Malaysia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123000;123000;120000;120000;120000;20000;20000;20000;20000;20000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116205;301292;164100;207000;207000;400125;646400;1000000;1141870;794000;653376;280975;281065;242433;294912;284274;293396;269086;336340;335088;330055;319079;269761;286109.86;269733;266543
-131;'458;Malaysia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95772;138612;131563;166805;166805;136214;182560;218142;239490;277715;246822;240500;298195;306522;312306;288656;299849;266415;293777;325559;372036;343225;248413;279577.3;276806;291389
-131;'458;Malaysia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79194;100000;60000;38097;65300;49620;50000;47426;37326;101000;71000;73000;79000;27000;8667;7343;36721;25956;31835.56;11055;9506
-131;'458;Malaysia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31830;37578;23000;25046;35310;40626;36031;40913;34061;82049;54214;57138;54541;18277;7868;6843;49303;28908;38148.88;15253;12019
-131;'458;Malaysia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;45000;45000;165000;130000;138000;116000;122000;152000;165000;165000;165000;276000;248000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000
-131;'458;Malaysia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101263;262551;143000;112700;43000;150601;226122;197300;274482;274482;256534;218760;204416;185995;226520;214436;208745;181467;191879;180159;183557;199288;142402;166308.37;215043;185050
-131;'458;Malaysia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77294;111868;106179;87085;28555;101391;153252;157120;181450;181450;198484;180555;211363;232552;208592;198825;198998;167540;174541;178425;198597;198144;139287;182555.08;236022;181983
-131;'458;Malaysia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1499;1960;3500;4433;4433;5123;7101;6378;5011;4582;4529;4462;5283;5218;7512;7979;8020;5035;8613.1;12752;15219
-131;'458;Malaysia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2034;2600;4700;4995;4995;7636;9443;10680;8589;8201;7932;7216;6700;5259;7470;10906;14515;9862;16648.74;22963;24807
-131;'458;Malaysia;1675;Other paper and paperboard;5510;Production;t;;;;;;200;3000;3500;7000;7000;10000;12000;18000;18000;18000;17000;19000;37000;45000;80000;61000;65000;43000;47000;50000;70000;72000;95000;122000;145000;162000;435000;462000;413000;501000;527000;582000;636000;636000;430000;495000;495000;562000;560000;560000;700000;700000;700000;1142000;1180000;1476000;1673000;1415000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000
-131;'458;Malaysia;1675;Other paper and paperboard;5610;Import quantity;t;27000;34000;36000;21000;28000;26800;37000;41800;60000;86300;74000;76700;96000;109300;68400;119300;119800;119800;119800;127600;118000;118000;118000;140000;141000;134200;193800;213600;300000;300000;485800;542688;287500;444400;428700;600000;487500;399000;642001;563400;668700;658600;637284;836034;761867;837885;925634;891565;634138;881983;881477;764236;874779;917680;881498;963425;939021;1107237;1090678;1171553;1104299.85;746974;617529
-131;'458;Malaysia;1675;Other paper and paperboard;5622;Import value;1000 USD;6812;8423;8595;4084;4948;5509;6949;7997;9119;15559;14772;18042;31247;56794;34904;54011;54424;54424;54424;73100;81976;81976;81976;91400;91300;95900;143900;163300;230000;230000;294642;334375;173163;304962;327445;433190;351108;293439;406587;389539;418789;403488;398413;534030;524381;593134;660608;746269;531725;758208;766272;730635;791743;807753;573653;790009;809150;928820;846336;806671;982056.79;822776;630754
-131;'458;Malaysia;1675;Other paper and paperboard;5910;Export quantity;t;1000;5000;3000;600;200;200;600;500;1800;2900;2600;3700;1700;1700;3200;11600;2700;9000;9000;4800;3500;2700;2700;2700;2700;2700;2700;2700;2700;2700;30100;46329;26700;34400;34400;44500;44100;41000;49100;24300;35300;35300;162575;177650;161191;150941;158120;201879;165453;205251;197429;205220;211380;186847;135429;171135;223497;216107;257266;373551;827815.23;1004692;1103565
-131;'458;Malaysia;1675;Other paper and paperboard;5922;Export value;1000 USD;472;1590;788;152;41;36;143;113;382;399;348;394;314;314;1424;5180;485;1921;1921;2140;2000;1700;1700;1700;1700;1700;1700;1700;1700;1700;19467;25477;17193;21829;21829;37795;44266;34818;51582;28487;45297;45297;91614;113650;116562;124501;152787;218659;132630;172054;186752;185558;181770;163630;131279;152877;183377;188025;188282;220586;556459.51;659933;949369
-131;'458;Malaysia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;1000;6000;10000;10000;13000;13000;20000;20000;20000;28000;36000;38000;48000;62000;68000;81000;68000;73000;91000;87000;115000;115000;115000;115000;115000;115000;132000;130000;130000;120000;120000;120000;172000;180000;180000;185000;205000;190000;190000;190000;190000;190000;190000;190000;190000;190000;190000
-131;'458;Malaysia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;800;1100;8100;4400;3000;3700;4100;3900;4100;4000;4000;4000;4000;4000;4000;4000;7000;4000;3200;6500;4600;3000;3000;4800;3700;2000;4000;4000;5000;4500;1100;2300;5000;3400;3400;8170;12500;19916;12741;12741;22753;19746;24709;28803;33076;37590;38144;44076;53977;65872;80085;86317;73001;69989.33;68250;84250
-131;'458;Malaysia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;480;544;221;122;81;124;478;365;450;501;501;501;501;501;501;501;1700;1000;900;1900;1300;1400;1400;1600;1350;800;1600;1700;2200;2000;1349;2527;5094;3745;3745;6658;9700;10301;12880;12880;22673;19985;30038;38054;40376;44626;45763;50049;58062;67589;94037;97198;74314;77732.8;85556;98735
-131;'458;Malaysia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2890;2300;6159;3538;3538;4424;4758;2050;2007;2177;1817;1542;3675;3358;2648;3567;3264;5489;7322.96;5513;4358
-131;'458;Malaysia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3176;3500;6824;3670;3670;5677;5817;3151;4653;3366;3203;2571;5106;4695;3660;4667;3825;6098;6885.02;6359;6426
-131;'458;Malaysia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518000;518000;300000;360000;360000;410000;410000;410000;560000;560000;560000;950000;980000;1180000;1350000;1210000;1110000;1110000;1110000;1110000;1110000;1110000;1110000;1110000;1110000;1110000
-131;'458;Malaysia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328900;560701;508000;601100;591000;558777;703235;667581;752282;840031;751228;599508;842092;842092;718428;823025;867135;818524;850892;861007;1016213;991895;1088011;1022941.4;666926;521155
-131;'458;Malaysia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218867;322040;296611;337105;321804;304512;411331;417113;450764;518238;561087;480233;698032;698032;659393;715527;734349;502214;624432;716743;813469;724041;710543;881383.96;710648;506640
-131;'458;Malaysia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107341;115350;101903;98089;105268;106742;156301;199116;191388;198123;204842;180535;121614;162712;214155;206999;248698;363484;815484.44;994613;1094235
-131;'458;Malaysia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40222;53116;54581;53925;82211;87675;103870;146569;160206;156071;151656;132679;97166;120231;147680;155641;155452;187249;521571.39;626244;912190
-131;'458;Malaysia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;16000;14000;15000;29000;32000;35000;13000;16000;18000;25000;26000;44000;51000;30000;64000;350000;390000;309000;352000;431000;457000;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;20100;28500;9600;9000;5700;5000;5800;5300;5600;5300;5300;5300;74900;65300;65300;65300;88000;88000;65000;93000;101000;140000;140000;250000;170000;130000;170000;170000;250000;205000;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;2639;3001;877;979;906;1253;1649;1471;1486;1418;1418;1418;38173;33921;33921;33921;45700;45300;34000;49000;54000;68600;68600;120000;67000;40000;100000;110000;162000;133000;;;;;;;;;;;;;;;;;;;;;;;;;;
-131;'458;Malaysia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431667;431667;250000;300000;300000;350000;350000;350000;500000;500000;500000;800000;820000;1000000;1100000;1030000;930000;930000;930000;930000;930000;930000;930000;930000;930000;930000
-131;'458;Malaysia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164450;280350;254000;282200;282200;212362;280377;278827;358031;358031;333428;215332;400127;400127;293092;368299;374028;344484;279249;377938;494808;524552;574514;520792.72;264621;218675
-131;'458;Malaysia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78286;115190;106094;98325;98325;81866;122151;109098;142105;142105;170873;136431;248707;248707;187492;211938;214464;174035;138529;245306;290618;255354;246380;317501.13;186869;123049
-131;'458;Malaysia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71018;61242;27359;48252;34000;31706;56847;61126;73833;76038;76129;64592;36766;36653;73842;64381;106375;216288;660564.36;726354;726354
-131;'458;Malaysia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20976;19800;11384;19820;20695;15726;18189;30314;37916;35636;36170;30400;15808;14775;36272;32581;39836;79726;377365.5;418275;679958
-131;'458;Malaysia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86333;86333;50000;60000;60000;60000;60000;60000;60000;60000;60000;150000;160000;180000;250000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000
-131;'458;Malaysia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80930;137968;125000;204800;204800;203429;239033;254864;255979;319000;266620;279501;293493;293493;282290;305751;342319;359448;434343;333105;362269;324827;380906;350411.92;249509;178896
-131;'458;Malaysia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76551;112637;103743;156064;156064;127107;165047;200121;192447;242313;243324;230539;297635;297635;304090;338481;348717;222825;341054;312119;351347;310414;343479;408337.04;314684;217601
-131;'458;Malaysia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7981;17650;45688;25132;45000;31873;24633;38974;37286;29195;28300;20583;21260;41212;35112;31366;24297;21747;35367.63;148206;259418
-131;'458;Malaysia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7873;17839;29657;22670;48571;49199;47149;61850;72335;67534;60600;46573;43408;54800;48630;49179;43656;39252;62118.37;115548;156405
-131;'458;Malaysia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55680;94922;86000;97100;93400;112986;130725;113890;125666;145000;130817;96885;140148;140148;138830;145172;145465;103279;129520;148178;153062;135647;124327;140437.81;144248;115776
-131;'458;Malaysia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52031;76558;70513;74465;63596;78756;101166;94507;106678;125881;133715;107721;145337;145337;161376;160544;165154;99003;131706;155613;166443;153458;116153;146471.94;201396;159496
-131;'458;Malaysia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23578;29858;25813;22437;24000;28276;26646;39883;31969;43729;44118;35968;6298;30168;42427;48795;49960;62960;56291.62;52504;39032
-131;'458;Malaysia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9012;13399;12095;10445;11955;15980;15108;23400;21411;24570;23495;21667;7052;21087;29864;36231;34382;37644;42469.11;46363;38867
-131;'458;Malaysia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27840;47461;43000;17000;10600;30000;53100;20000;12606;18000;20363;7790;8324;8324;4216;3803;5323;11313;7780;1786;6074;6869;8264;11298.94;8548;7808
-131;'458;Malaysia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11999;17655;16261;8251;3819;16783;22967;13387;9534;7939;13175;5542;6353;6353;6435;4564;6014;6351;13143;3705;5061;4815;4531;9073.85;7699;6494
-131;'458;Malaysia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4764;6600;3043;2268;2268;14887;48175;59133;48300;49161;56295;59392;57290;54679;62774;62457;68066;62489;63260.83;67549;69431
-131;'458;Malaysia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2361;2078;1445;990;990;6770;23424;31005;28544;28331;31391;34039;30898;29569;32914;37650;37578;30627;39618.41;46058;36960
-131;'458;Malaysia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;2000;17000;20000;41000;16000;17000;10000;11000;12000;17000;10000;13000;23000;53000;30000;4000;4000;31000;58000;9000;10000;3000;3000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;116000;138000;0;0;0;0;0;0;0;0;0;0;0
-131;'458;Malaysia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;27000;34000;36000;21000;28000;26800;37000;20900;30400;68600;60600;68000;87300;99400;59200;109600;110500;110500;110500;48700;48700;48700;48700;45000;49000;66000;94300;108000;157000;157000;231000;368988;155500;270400;254700;345000;278000;69000;79000;50400;64200;64200;70337;120299;74370;72862;72862;117584;14884;15182;10582;12732;14164;12401;18898;58556;12142;10939;12466;10541;11369.12;11798;12124
-131;'458;Malaysia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;6812;8423;8595;4084;4948;5509;6949;4878;5574;14461;13671;17055;29870;54667;33068;52075;52505;52505;52505;34426;47554;47554;47554;44000;45000;61000;93000;108000;160000;160000;173042;266025;132363;203362;215745;268990;216108;73223;82020;87834;77939;77939;87243;112999;96967;129490;129490;162509;31507;30138;30186;30866;31590;27641;21390;107515;24818;21314;25097;21814;22940.03;26572;25379
-131;'458;Malaysia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;1000;5000;3000;600;200;200;600;500;1800;2900;2600;3700;1700;1700;3200;11600;2700;9000;9000;4800;3500;2700;2700;2700;2700;2700;2700;2700;2700;2700;30100;46329;26700;34400;34400;44500;44100;41000;49100;24300;35300;35300;52344;60000;53129;49314;49314;90713;4394;4085;4034;4920;4721;4770;10140;5065;6694;5541;5304;4578;5007.83;4566;4972
-131;'458;Malaysia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;472;1590;788;152;41;36;143;113;382;399;348;394;314;314;1424;5180;485;1921;1921;2140;2000;1700;1700;1700;1700;1700;1700;1700;1700;1700;19467;25477;17193;21829;21829;37795;44266;34818;51582;28487;45297;45297;48216;57034;55157;66906;66906;125307;22943;22334;21893;26121;26911;28380;29007;27951;32037;27717;29005;27239;28003.1;27330;30753
-131;'458;Malaysia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402541;423381;471729;678554;824670;692135;572368
-131;'458;Malaysia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2523174;2608837;2870881;3145314;3217316;3253014;2711396
-131;'458;Malaysia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28977;34537;18715;21760;25707;23247;18228
-131;'458;Malaysia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197237;216582;210513;168320;184512;211038;186269
-131;'458;Malaysia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5470;11249;8851;7147;8165;6213;2213
-131;'458;Malaysia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1603;1007;1518;3902;5856;9777;24079
-131;'458;Malaysia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23507;23288;9864;14613;17542;17034;16015
-131;'458;Malaysia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195634;215575;208995;164418;178656;201261;162190
-131;'458;Malaysia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6141;8655;8332;11053;10119;12708;11587
-131;'458;Malaysia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72954;83769;85872;79252;106218;105208;87282
-131;'458;Malaysia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11915;10326;9100;9179;12722;14712;10573
-131;'458;Malaysia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33540;36295;36881;28953;38057;44903;37174
-131;'458;Malaysia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23861;28070;31792;36908;35196;37027;44719
-131;'458;Malaysia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254330;262195;250001;231434;240605;270551;281411
-131;'458;Malaysia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0
-131;'458;Malaysia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782;1107
-131;'458;Malaysia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;832
-131;'458;Malaysia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;1163
-131;'458;Malaysia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;1826
-131;'458;Malaysia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-131;'458;Malaysia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0
-131;'458;Malaysia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-131;'458;Malaysia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1
-131;'458;Malaysia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0
-131;'458;Malaysia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1
-131;'458;Malaysia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2
-131;'458;Malaysia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4
-131;'458;Malaysia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299826;312163;369338;544525;641956;513120;403150
-131;'458;Malaysia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934954;1991678;2264232;2611631;2586087;2559075;2060484
-131;'458;Malaysia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201;2677;2082;2667;255;1038;921
-131;'458;Malaysia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2661;1491;3426;4432;5302;2899;2014
-131;'458;Malaysia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30620;26953;32370;52462;98715;90283;83190
-131;'458;Malaysia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27498;16827;19956;21292;56535;59340;56762
-131;'458;Malaysia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503343;543988;550342;487620;592492;651210;593140
-131;'458;Malaysia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714778;776211;815750;659619;799671;818456;806311
-131;'458;Malaysia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19954;13838;14284;13332;8204;5461;5039
-131;'458;Malaysia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;1983;2512;2232;660;621;492
-131;'458;Malaysia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122312;138445;110540;120184;142063;141733;128625
-131;'458;Malaysia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155660;196180;225810;156490;221565;208715;193058
-131;'458;Malaysia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44637;33153;37407;33830;51546;65699;72033
-131;'458;Malaysia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159754;186016;199406;158538;148816;147828;146526
-131;'458;Malaysia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125106;144223;171118;138481;170707;176059;144361
-131;'458;Malaysia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189846;176772;177577;151212;200887;216600;222186
-131;'458;Malaysia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191334;214329;216993;181793;219972;262258;243082
-131;'458;Malaysia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207549;215260;210445;191147;227743;244692;244049
-132;'462;Maldives;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155315;215557;224144;109414;105293;135577;118565
-132;'462;Maldives;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;94;59;46;42;98;55
-132;'462;Maldives;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2035;3374;3568;6707;9301;9466;4220;4220;4220;4220;4220;4220;4220;4220;4220;4220;4220;4220;4220;4220;21617;21476;21464;23074;24279;28392;45166;60287;70161;85835;82244;31545;31525;47287;38268
-132;'462;Maldives;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;412;49;14;14;14;13;13;13;13;13;13;13;13;13;13;13;13;94;22;60;2;1;182;6;26;65;14;5;4;15;19
-132;'462;Maldives;1861;Roundwood;5516;Production;m3;8158;8209;8261;8313;8365;8418;8471;8524;8577;8631;8696;8821;8894;8973;9057;9234;9257;9232;9319;9190;9366;9502;9648;9435;9771;9884;10200;10335;10154;10339;10642;11147;11427;11392;11643;11977;12337;12405;12611;13185;13410;13639;13872;14109;14351;14554;14760;14969;15182;15398;15570;15718;15882;16048;16216;16289;16363;16437;16513;16589;16670;16751;16834
-132;'462;Maldives;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;300;423;799;799;843;364;364;364;364;364;364;364;364;364;364;364;364;364;364;1489;223;453;864;864;2356;2321;1145;1566;7408;1987;1900;180;6641;1123
-132;'462;Maldives;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;354;364;465;465;137;18;18;18;18;18;18;18;18;18;18;18;18;18;18;456;87;136;381;381;648;319;299;605;1629;897;595;73;333;278
-132;'462;Maldives;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;0;0;351;0;0;0;0;0
-132;'462;Maldives;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;0;0;64;0;0;0;0;0
-132;'462;Maldives;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761;6904;1520;1768;111;5715;296
-132;'462;Maldives;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;1432;776;556;40;151;109
-132;'462;Maldives;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;351;0;0;0;0;0
-132;'462;Maldives;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;64;0;0;0;0;0
-132;'462;Maldives;1863;Roundwood, non-coniferous;5516;Production;m3;8158;8209;8261;8313;8365;8418;8471;8524;8577;8631;8696;8821;8894;8973;9057;9234;9257;9232;9319;9190;9366;9502;9648;9435;9771;9884;10200;10335;10154;10339;10642;11147;11427;11392;11643;11977;12337;12405;12611;13185;13410;13639;13872;14109;14351;14554;14760;14969;15182;15398;15570;15718;15882;16048;16216;16289;16363;16437;16513;16589;16670;16751;16834
-132;'462;Maldives;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;805;504;467;132;69;926;827
-132;'462;Maldives;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;197;121;39;33;182;169
-132;'462;Maldives;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-132;'462;Maldives;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-132;'462;Maldives;1864;Wood fuel;5516;Production;m3;8158;8209;8261;8313;8365;8418;8471;8524;8577;8631;8696;8821;8894;8973;9057;9234;9257;9232;9319;9190;9366;9502;9648;9435;9771;9884;10200;10335;10154;10339;10642;11147;11427;11392;11643;11977;12337;12405;12611;13185;13410;13639;13872;14109;14351;14554;14760;14969;15182;15398;15570;15718;15882;16048;16216;16289;16363;16437;16513;16589;16670;16751;16834
-132;'462;Maldives;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;300;300;300;300;364;364;364;364;364;364;364;364;364;364;364;364;364;364;364;504;179;443;506;506;622;2105;440;632;1253;281;242;123;5669;707
-132;'462;Maldives;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;354;354;354;354;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;166;59;123;147;147;206;228;93;56;79;79;62;38;143;227
-132;'462;Maldives;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1253;87;220;75;5528;296
-132;'462;Maldives;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;79;18;52;24;87;109
-132;'462;Maldives;1628;Wood fuel, non-coniferous;5516;Production;m3;8158;8209;8261;8313;8365;8418;8471;8524;8577;8631;8696;8821;8894;8973;9057;9234;9257;9232;9319;9190;9366;9502;9648;9435;9771;9884;10200;10335;10154;10339;10642;11147;11427;11392;11643;11977;12337;12405;12611;13185;13410;13639;13872;14109;14351;14554;14760;14969;15182;15398;15570;15718;15882;16048;16216;16289;16363;16437;16513;16589;16670;16751;16834
-132;'462;Maldives;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;0;194;22;48;141;411
-132;'462;Maldives;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;0;61;10;14;56;118
-132;'462;Maldives;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;300;300;300;300;364;364;364;364;364;364;364;364;364;364;364;364;364;364;364;504;179;443;506;506;622;2105;440;;;;;;;
-132;'462;Maldives;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;354;354;354;354;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;166;59;123;147;147;206;228;93;;;;;;;
-132;'462;Maldives;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;499;499;479;0;0;0;0;0;0;0;0;0;0;0;0;0;0;985;44;10;358;358;1734;216;705;934;6155;1706;1658;57;972;416
-132;'462;Maldives;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;111;111;119;0;0;0;0;0;0;0;0;0;0;0;0;0;0;290;28;13;234;234;442;91;206;549;1550;818;533;35;190;51
-132;'462;Maldives;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;0;0;351;0;0;0;0;0
-132;'462;Maldives;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;0;0;64;0;0;0;0;0
-132;'462;Maldives;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;750;5651;1433;1548;36;187;0
-132;'462;Maldives;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;0;405;1353;758;504;16;64;0
-132;'462;Maldives;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;351;0;0;0;0;0
-132;'462;Maldives;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;64;0;0;0;0;0
-132;'462;Maldives;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;750;5651;1433;1548;36;187;0
-132;'462;Maldives;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;0;405;1353;758;504;16;64;0
-132;'462;Maldives;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;351;0;0;0;0;0
-132;'462;Maldives;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;64;0;0;0;0;0
-132;'462;Maldives;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;499;499;479;0;0;0;0;0;0;0;0;0;0;0;0;0;0;985;44;10;358;358;1734;123;705;184;504;273;110;21;785;416
-132;'462;Maldives;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;111;111;119;0;0;0;0;0;0;0;0;0;0;0;0;0;0;290;28;13;234;234;442;34;206;144;197;60;29;19;126;51
-132;'462;Maldives;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;0;0;0;0;0;0;0;0
-132;'462;Maldives;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;0;0;0;0;0;0;0;0
-132;'462;Maldives;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;499;499;479;0;0;0;0;0;0;0;0;0;0;0;0;0;0;985;26;10;334;334;1710;123;546;183;317;273;34;0;4;396
-132;'462;Maldives;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;111;111;119;0;0;0;0;0;0;0;0;0;0;0;0;0;0;290;19;13;225;225;433;34;160;144;144;60;10;0;5;48
-132;'462;Maldives;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;0;0;0;0;0;0;0;0
-132;'462;Maldives;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;0;0;0;0;0;0;0;0
-132;'462;Maldives;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;24;24;24;0;159;1;187;0;76;21;781;20
-132;'462;Maldives;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;9;9;9;0;46;0;53;0;19;19;121;3
-132;'462;Maldives;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1630;Wood charcoal;5510;Production;t;296;301;307;313;319;325;331;337;343;350;361;369;380;389;401;416;421;422;428;421;432;441;456;440;465;472;481;486;495;494;508;500;501;495;458;475;496;500;511;622;635;649;664;678;693;707;722;737;753;769;784;800;816;833;850;861;873;885;898;910;922;935;947
-132;'462;Maldives;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;50;100;100;100;100;100;100;100;100;100;100;100;100;100;100;221;222;254;284;279;330;438;445;445;445;786;920;529.6;722;878
-132;'462;Maldives;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;20;27;35;35;35;35;35;35;35;35;35;35;35;35;35;35;158;150;209;210;205;274;262;306;306;306;498;187;373;550;587
-132;'462;Maldives;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;16;10;8;8;5;1;3;3;3;46;6;63;28;32
-132;'462;Maldives;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;4;4;4;4;1;3;3;3;33;2;73;48;34
-132;'462;Maldives;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;0;0;0;0;0
-132;'462;Maldives;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-132;'462;Maldives;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;26;15;24
-132;'462;Maldives;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;54;29;21
-132;'462;Maldives;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;16;10;8;8;5;1;3;3;3;43;6;37;13;8
-132;'462;Maldives;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;4;4;4;4;1;3;3;3;15;1;19;19;13
-132;'462;Maldives;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;0;0;0;0;0
-132;'462;Maldives;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0
-132;'462;Maldives;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;1;25;85;76
-132;'462;Maldives;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2;14;50;38
-132;'462;Maldives;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;1;25;85;76
-132;'462;Maldives;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2;14;50;38
-132;'462;Maldives;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;5000;17100;23872;83005;16643;11;11;11;11;11;11;11;11;11;11;11;11;11;11;23567;29367;27298;32029;38348;36210;63055;70640;83312;90976;77418;29476;37156;37860;49000
-132;'462;Maldives;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110;2707;2838;3895;5080;5778;2;2;2;2;2;2;2;2;2;2;2;2;2;2;12330;12930;10880;11085;11954;13446;26125;41587;50836;59284;50037;16457;14074;20644;16393
-132;'462;Maldives;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;34;60;0;0;0;0;0;0
-132;'462;Maldives;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;93;21;59;0;0;1;5;24;0;0;0;0;0;0
-132;'462;Maldives;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;83000;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;803;3197;4298;4869;18032;9650;13345;11919;11026;22071;16261;6918;8860;8860;11000
-132;'462;Maldives;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5078;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;510;1127;2025;2258;4967;3566;7235;4262;3580;9918;8694;3613;4288;4288;1991
-132;'462;Maldives;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;5000;17100;23866;5;16632;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22764;26170;23000;27160;20316;26560;49710;58721;72286;68905;61157;22558;28296;29000;38000
-132;'462;Maldives;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110;2707;2838;3894;2;5776;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11820;11803;8855;8827;6987;9880;18890;37325;47256;49366;41343;12844;9786;16356;14402
-132;'462;Maldives;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;34;60;0;0;0;0;0;0
-132;'462;Maldives;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;93;21;59;0;0;1;5;24;0;0;0;0;0;0
-132;'462;Maldives;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;25;28;277;390;291;18;116;137;7
-132;'462;Maldives;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;91;138;10;33;60;66;65;281;405;546;135;232;300;24
-132;'462;Maldives;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0
-132;'462;Maldives;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4598;4200;4500;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;7055;9556;15806;14884;14772;16445;20369;28861;28011;28922;32958;17253;14378;20000;14872
-132;'462;Maldives;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1835;2351;2172;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;5709;5264;6799;7725;8044;10322;14751;14464;14567;20645;25135;11604;12873;20313;15925
-132;'462;Maldives;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;903;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0;1;0;0;0;0;0;0
-132;'462;Maldives;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;395;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;0;0;0;1;0;0;0;1;0;0;0;0;0;0
-132;'462;Maldives;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4598;4200;4500;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;5144;7285;12466;11697;11585;13185;15095;24551;23701;24612;30467;13994;12838;18093;13325
-132;'462;Maldives;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1835;2351;2172;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;2262;4720;4426;5446;6422;6741;9057;12460;12862;12965;19043;24300;10617;12343;19235;15001
-132;'462;Maldives;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;903;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0;1;0;0;0;0;0;0
-132;'462;Maldives;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;395;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;0;0;0;1;0;0;0;1;0;0;0;0;0;0
-132;'462;Maldives;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1873;1743;3234;3041;3041;2741;5159;3871;3871;3871;1670;2486;1008;1077;838
-132;'462;Maldives;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977;714;1318;1257;1257;1236;2276;1447;1447;1447;576;824;413;616;500
-132;'462;Maldives;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;390;390;77;77
-132;'462;Maldives;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;86;86;39;39
-132;'462;Maldives;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;528;106;146;146;519;115;439;439;439;579;383;142;753;632
-132;'462;Maldives;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;124;35;46;46;29;15;155;155;155;112;77;31;423;385
-132;'462;Maldives;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;469
-132;'462;Maldives;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;345
-132;'462;Maldives;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;38;528;106;146;146;519;115;439;439;439;579;383;142;234;163
-132;'462;Maldives;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;124;35;46;46;29;15;155;155;155;112;77;31;60;40
-132;'462;Maldives;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;0;0;8;10;10;15;10;7;7;7;14;11;10;15;6
-132;'462;Maldives;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;0;2;2;2;4;3;2;2;2;6;4;5;9;3
-132;'462;Maldives;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;64;50;180;250
-132;'462;Maldives;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;4;15;19
-132;'462;Maldives;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;0;0;8;10;10;15;10;7;7;7;14;11;10;15;6
-132;'462;Maldives;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;0;2;2;2;4;3;2;2;2;6;4;5;9;3
-132;'462;Maldives;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;64;50;180;250
-132;'462;Maldives;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;4;15;19
-132;'462;Maldives;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;400;400;480;3100;1415;1114;1114;1114;1114;1114;1114;1114;1114;1114;1114;1114;1114;1114;1114;2869;2732;2916;3827;3823;3575;3646;3814;3814;3814;5344;3173;3470;5845;4040
-132;'462;Maldives;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489;313;366;490;1368;1325;1876;1876;1876;1876;1876;1876;1876;1876;1876;1876;1876;1876;1876;1876;2943;2948;3296;3657;3656;3634;3639;3561;3561;3561;5066;2559;3808;5040;4986
-132;'462;Maldives;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;82;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;36;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;400;400;196;2300;1314;1014;1014;1014;1014;1014;1014;1014;1014;1014;1014;1014;1014;1014;1014;2207;2028;1906;3072;3068;2244;2126;1776;1776;1776;3053;1988;2184;3818;1839
-132;'462;Maldives;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489;313;366;216;582;753;1260;1260;1260;1260;1260;1260;1260;1260;1260;1260;1260;1260;1260;1260;2296;2156;2300;2830;2829;2503;2370;2020;2020;2020;2713;1302;2260;2567;2075
-132;'462;Maldives;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;200;96;;114;114;114;114;114;114;114;114;114;114;114;114;114;114;114;210;168;125;113;109;69;218;25;25;25;21;16;22;20;9
-132;'462;Maldives;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;106;106;88;;105;105;105;105;105;105;105;105;105;105;105;105;105;105;105;315;258;195;173;172;110;271;37;37;37;33;19;36;34;15
-132;'462;Maldives;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;200;100;2300;1200;900;900;900;900;900;900;900;900;900;900;900;900;900;900;1997;1860;1781;2959;2959;2175;1908;1751;1751;1751;3032;1972;2162;3798;1830
-132;'462;Maldives;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;207;260;128;582;648;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1981;1898;2105;2657;2657;2393;2099;1983;1983;1983;2680;1283;2224;2533;2060
-132;'462;Maldives;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;61;61;36;36
-132;'462;Maldives;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;91;91;76;76
-132;'462;Maldives;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;900;900;900;900;900;900;900;900;900;1997;1860;1772;2944;2944;2168;1902;1740;1740;1740;2900;1911;2100;3753;1783
-132;'462;Maldives;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1155;1981;1898;2084;2620;2620;2379;2086;1962;1962;1962;2503;1192;2129;2433;1955
-132;'462;Maldives;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;15;15;7;6;11;11;11;7;0;1;9;11
-132;'462;Maldives;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;37;37;14;13;21;21;21;15;0;4;24;29
-132;'462;Maldives;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-132;'462;Maldives;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;800;101;100;100;100;100;100;100;100;100;100;100;100;100;100;100;662;704;1010;755;755;1331;1520;2038;2038;2038;2291;1185;1286;2027;2201
-132;'462;Maldives;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;786;572;616;616;616;616;616;616;616;616;616;616;616;616;616;616;647;792;996;827;827;1131;1269;1541;1541;1541;2353;1257;1548;2473;2911
-132;'462;Maldives;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;81;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;77;77;267;267
-132;'462;Maldives;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;141;141;709;709
-132;'462;Maldives;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-132;'462;Maldives;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;702;981;745;745;1321;1496;2008;2008;2008;2112;1105;1191;1755;1923
-132;'462;Maldives;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;788;968;815;815;1110;1232;1484;1484;1484;1963;1087;1321;1696;2110
-132;'462;Maldives;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;23;34;67;67;916;965;1042;1042;1042;210;109;66;373;97
-132;'462;Maldives;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;34;54;63;63;648;665;648;648;648;229;92;70;359;146
-132;'462;Maldives;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;112;3;19;19;19;90;27;27;27;108;162;88;122;38
-132;'462;Maldives;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;126;19;22;22;16;82;37;37;37;81;125;36;150;64
-132;'462;Maldives;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;559;915;627;627;359;422;870;870;870;944;600;983;1110;1084
-132;'462;Maldives;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;606;866;701;701;400;470;740;740;740;1087;696;1174;1085;1243
-132;'462;Maldives;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;8;29;32;32;27;19;69;69;69;850;234;54;150;704
-132;'462;Maldives;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;22;29;29;29;46;15;59;59;59;566;174;41;102;657
-132;'462;Maldives;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;800;101;100;100;100;100;100;100;100;100;100;100;100;100;100;100;7;2;29;10;10;10;24;30;30;30;2;3;18;5;11
-132;'462;Maldives;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;786;572;616;616;616;616;616;616;616;616;616;616;616;616;616;616;26;4;28;12;12;21;37;57;57;57;68;29;86;68;92
-132;'462;Maldives;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;81;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;35;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-132;'462;Maldives;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71546;114161;124530;66060;55590;66649;59165
-132;'462;Maldives;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;45;41;38;75;36
-132;'462;Maldives;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9070;16276;10395;9375;6929;8702;7051
-132;'462;Maldives;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28
-132;'462;Maldives;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;327;176;48;600;343;504
-132;'462;Maldives;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-132;'462;Maldives;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8825;15949;10219;9327;6329;8359;6547
-132;'462;Maldives;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24
-132;'462;Maldives;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;199;265;154;200;274;299
-132;'462;Maldives;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;1;1;1
-132;'462;Maldives;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085;1949;1797;818;1646;1831;1806
-132;'462;Maldives;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;1;6;1
-132;'462;Maldives;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27262;30332;31687;17412;12664;14045;11058
-132;'462;Maldives;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;0;0
-132;'462;Maldives;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22
-132;'462;Maldives;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27
-132;'462;Maldives;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52
-132;'462;Maldives;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196
-132;'462;Maldives;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29682;53692;50841;27570;30824;37961;34488
-132;'462;Maldives;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;1;1;34;0
-132;'462;Maldives;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;4570;24051;8361;835;957;273
-132;'462;Maldives;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3851;7143;5494;2370;2492;2879;4190
-132;'462;Maldives;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;6;6;6
-132;'462;Maldives;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13608;15561;17370;11809;18178;21641;21132
-132;'462;Maldives;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;8;0
-132;'462;Maldives;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3
-132;'462;Maldives;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622;694;711;527;891;917;910
-132;'462;Maldives;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-132;'462;Maldives;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5103;5282;6141;4801;6466;7966;7701
-132;'462;Maldives;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-132;'462;Maldives;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2388;2714;2873;2174;4158;4739;4342
-132;'462;Maldives;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-132;'462;Maldives;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5492;6868;7642;4304;6660;8016;8176
-132;'462;Maldives;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;8;0
-133;'466;Mali;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54360;62633;81180;80181;94882;89030;84297
-133;'466;Mali;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36688.9;40183;64587;63318;30563;31440;37737
-133;'466;Mali;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;229;275;287;429;290;316;399;445;445;445;445;815;455;535;535;1525;1882;1882;924;1073;1166;1980;1889;1752;1445;1915;1915;1915;1915;1915;1915;2253;2546;2237;1701;1904;7432;10088;8731;9866;10031;6807;9088;8952;7763;8210;14748;20522;12856;24259.1;20436;31150.24;44110.24;14298.49;15201.24;18082;19249;20133;27888;31934;31692;18838;19464
-133;'466;Mali;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;146;100;150;129;1984;1868;1648;1648;858;991;2149;1413;1413;1423;546;582;796;521;799;396.24;1530;5727;7178;7722;34799;38591;62019;62971;29222;30884;36912
-133;'466;Mali;1861;Roundwood;5516;Production;m3;2717209;2749501;2780066;2810906;2848025;2879424;2911107;2943078;2975338;3008890;3054810;3094374;3187093;3281902;3240533;3203919;3204788;3290291;3265023;3353209;3434910;3493070;3655083;3858183;3976382;3931628;4038658;4161336;4175239;4298929;4439680;4495094;4638962;4752365;4808847;4906199;4974475;5015107;5083720;5143485;5200428;5258481;5317673;5378031;5439583;5497179;5555900;5615800;5676920;5739248;5849877;5917577;6049477;6336606;6447995;6497530;6548100;6599732;6652451;6706283;6843717;6900317;6958113
-133;'466;Mali;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;100;100;100;100;2500;2500;2500;32;39;923;923;923;504;470;0;49;17;3033;10593;1111;1111;641;53;0;62;0;0;0;0
-133;'466;Mali;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;7;7;7;7;218;218;218;3;10;60;60;60;61;169;0;12.1;2;2674;6284;640;180;85;10;0;6;99;0;0;0
-133;'466;Mali;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1983;2102;2800;2800;2800;2800;7695;1266;1266;1256;739;526;783;905;1891;892;3667;14102;10441;19145;42410;49646;67773;116681;41842;49821;82723
-133;'466;Mali;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;567;627;858;858;858;858;2089;313;313;323;110;53;280;192;497;224;801;4015;5807;5118;31585;37376;58174;60404;28919;29299;35529
-133;'466;Mali;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;62;0;0;0;0
-133;'466;Mali;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;99;0;0;0
-133;'466;Mali;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;16;13;0;0;0;0
-133;'466;Mali;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;3;0;3;0;0
-133;'466;Mali;1863;Roundwood, non-coniferous;5516;Production;m3;2717209;2749501;2780066;2810906;2848025;2879424;2911107;2943078;2975338;3008890;3054810;3094374;3187093;3281902;3240533;3203919;3204788;3290291;3265023;3353209;3434910;3493070;3655083;3858183;3976382;3931628;4038658;4161336;4175239;4298929;4439680;4495094;4638962;4752365;4808847;4906199;4974475;5015107;5083720;5143485;5200428;5258481;5317673;5378031;5439583;5497179;5555900;5615800;5676920;5739248;5849877;5917577;6049477;6336606;6447995;6497530;6548100;6599732;6652451;6706283;6843717;6900317;6958113
-133;'466;Mali;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;0;0;0;0;0;0
-133;'466;Mali;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0
-133;'466;Mali;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42370;49630;67760;116681;41842;49821;82723
-133;'466;Mali;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31582;37372;58171;60404;28916;29299;35529
-133;'466;Mali;1864;Wood fuel;5516;Production;m3;2537209;2563501;2590066;2616906;2644025;2671424;2699107;2727078;2755338;2783890;2825810;2859374;2960093;3050902;2999533;2955919;2954788;3035291;3008023;3086209;3162910;3216070;3369583;3563883;3675382;3619428;3714058;3825536;3829439;3942129;4088880;4136294;4272162;4376565;4433947;4522299;4580575;4612207;4670820;4730585;4787528;4845581;4904773;4965131;5026683;5084279;5143000;5202900;5264020;5326348;5384877;5444577;5505477;5567606;5630995;5680530;5731100;5782732;5835451;5889283;5944717;6001317;6059113
-133;'466;Mali;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-133;'466;Mali;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-133;'466;Mali;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;72;72;505;832;567;2705;2705;2705;2705;;;;;;;
-133;'466;Mali;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;9;9;47;67;47;375;375;375;375;;;;;;;
-133;'466;Mali;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1628;Wood fuel, non-coniferous;5516;Production;m3;2537209;2563501;2590066;2616906;2644025;2671424;2699107;2727078;2755338;2783890;2825810;2859374;2960093;3050902;2999533;2955919;2954788;3035291;3008023;3086209;3162910;3216070;3369583;3563883;3675382;3619428;3714058;3825536;3829439;3942129;4088880;4136294;4272162;4376565;4433947;4522299;4580575;4612207;4670820;4730585;4787528;4845581;4904773;4965131;5026683;5084279;5143000;5202900;5264020;5326348;5384877;5444577;5505477;5567606;5630995;5680530;5731100;5782732;5835451;5889283;5944717;6001317;6059113
-133;'466;Mali;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-133;'466;Mali;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-133;'466;Mali;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;72;72;505;832;567;2705;2705;2705;2705;;;;;;;
-133;'466;Mali;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;9;9;47;67;47;375;375;375;375;;;;;;;
-133;'466;Mali;1865;Industrial roundwood;5516;Production;m3;180000;186000;190000;194000;204000;208000;212000;216000;220000;225000;229000;235000;227000;231000;241000;248000;250000;255000;257000;267000;272000;277000;285500;294300;301000;312200;324600;335800;345800;356800;350800;358800;366800;375800;374900;383900;393900;402900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;465000;473000;544000;769000;817000;817000;817000;817000;817000;817000;899000;899000;899000
-133;'466;Mali;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;2500;2500;2500;32;39;923;923;923;504;470;0;49;17;3033;10593;1111;1111;641;53;0;62;0;0;0;0
-133;'466;Mali;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;218;218;218;3;10;60;60;60;61;169;0;12.1;2;2674;6284;640;180;85;10;0;6;99;0;0;0
-133;'466;Mali;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1983;2102;2800;2800;2800;2800;7695;1266;1266;1256;546;454;711;400;1059;325;962;11397;7736;16440;42410;49646;67773;116681;41842;49821;82723
-133;'466;Mali;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;567;627;858;858;858;858;2089;313;313;323;67;44;271;145;430;177;426;3640;5432;4743;31585;37376;58174;60404;28919;29299;35529
-133;'466;Mali;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;2500;2500;2500;32;32;404;404;404;404;60;0;0;17;0;0;0;0;0;0;0;62;0;0;0;0
-133;'466;Mali;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;218;218;218;3;3;25;25;25;25;4;0;0;2;0;0;0;0;0;0;0;6;99;0;0;0
-133;'466;Mali;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;414;414;0;0;0;0;243;67;36;57;40;16;13;0;0;0;0
-133;'466;Mali;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;2;7;4;4;3;4;3;0;3;0;0
-133;'466;Mali;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;2500;2500;2500;32;32;404;404;404;404;60;0;0;17;0;0;0;0;0;0;0;62;0;0;0;0
-133;'466;Mali;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;218;218;218;3;3;25;25;25;25;4;0;0;2;0;0;0;0;0;0;0;6;99;0;0;0
-133;'466;Mali;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;414;414;0;0;0;0;243;67;36;57;40;16;13;0;0;0;0
-133;'466;Mali;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;2;7;4;4;3;4;3;0;3;0;0
-133;'466;Mali;1867;Industrial roundwood, non-coniferous;5516;Production;m3;180000;186000;190000;194000;204000;208000;212000;216000;220000;225000;229000;235000;227000;231000;241000;248000;250000;255000;257000;267000;272000;277000;285500;294300;301000;312200;324600;335800;345800;356800;350800;358800;366800;375800;374900;383900;393900;402900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;412900;465000;473000;544000;769000;817000;817000;817000;817000;817000;817000;899000;899000;899000
-133;'466;Mali;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;519;519;519;100;410;0;49;0;3033;10593;1111;1111;641;53;0;0;0;0;0;0
-133;'466;Mali;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;35;35;35;36;165;0;12.1;0;2674;6284;640;180;85;10;0;0;0;0;0;0
-133;'466;Mali;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1983;2102;2800;2800;2800;2800;7695;1266;1266;1256;132;40;711;400;1059;325;719;11330;7700;16383;42370;49630;67760;116681;41842;49821;82723
-133;'466;Mali;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;567;627;858;858;858;858;2089;313;313;323;45;22;271;145;430;177;424;3633;5428;4739;31582;37372;58171;60404;28916;29299;35529
-133;'466;Mali;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;9;9;0;32;0;3033;5780;578;578;641;1;0;0;0;0;0;0
-133;'466;Mali;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;0;12;0;2674;5110;511;51;85;1;0;0;0;0;0;0
-133;'466;Mali;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;602;602;0;0;0;0;1201;1201;1201;1201;77;25;625;277;278;287;522;7415;7700;16383;42370;49630;67760;116681;41842;49821;82723
-133;'466;Mali;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;300;300;0;0;0;0;309;309;309;309;31;21;230;97;126;158;326;1814;5428;4739;31582;37372;58171;60404;28916;29299;35529
-133;'466;Mali;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;515;515;515;91;401;0;17;0;0;4813;533;533;0;52;0;0;0;0;0;0
-133;'466;Mali;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;34;34;34;34;163;0;0.1;0;0;1174;129;129;0;9;0;0;0;0;0;0
-133;'466;Mali;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1381;1500;2800;2800;2800;2800;6494;65;65;55;55;15;86;123;781;38;197;3915;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;327;858;858;858;858;1780;4;4;14;14;1;41;48;304;19;98;1819;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1868;Sawlogs and veneer logs;5516;Production;m3;13000;15000;15000;15000;20000;20000;20000;20000;20000;20000;20000;20000;7000;6000;11000;13000;10000;10000;7000;11000;9000;7000;7500;7300;5000;8200;10600;12800;12800;12800;12800;12800;12800;12800;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;56000;56000;115000;340000;388000;388000;388000;388000;388000;388000;470000;470000;470000
-133;'466;Mali;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;13000;15000;15000;15000;20000;20000;20000;20000;20000;20000;20000;20000;7000;6000;11000;13000;10000;10000;7000;11000;9000;7000;7500;7300;5000;8200;10600;12800;12800;12800;12800;12800;12800;12800;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;56000;56000;115000;340000;388000;388000;388000;388000;388000;388000;470000;470000;470000
-133;'466;Mali;1871;Other industrial roundwood;5516;Production;m3;167000;171000;175000;179000;184000;188000;192000;196000;200000;205000;209000;215000;220000;225000;230000;235000;240000;245000;250000;256000;263000;270000;278000;287000;296000;304000;314000;323000;333000;344000;338000;346000;354000;363000;371000;380000;390000;399000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;417000;429000;429000;429000;429000;429000;429000;429000;429000;429000;429000;429000
-133;'466;Mali;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;167000;171000;175000;179000;184000;188000;192000;196000;200000;205000;209000;215000;220000;225000;230000;235000;240000;245000;250000;256000;263000;270000;278000;287000;296000;304000;314000;323000;333000;344000;338000;346000;354000;363000;371000;380000;390000;399000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;409000;417000;429000;429000;429000;429000;429000;429000;429000;429000;429000;429000;429000
-133;'466;Mali;1630;Wood charcoal;5510;Production;t;28055;28825;29617;30431;31267;32126;33008;33915;34847;35804;36803;37856;38953;40053;41145;42221;43296;44409;4000;4400;4800;5800;5000;6000;6000;6000;5500;62100;64443;66928;69521;72257;75124;78086;81152;84278;87513;90082;93148;96317;99523;102836;106259;109796;113451;117145;121000;124900;128966;133166;141000;141000;171000;171000;275000;283000;334000;334000;111870;147000;476000;476000;195975
-133;'466;Mali;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;5;0.25;0.25;0.25;0.25;2;118;118;154;27;29;4;6
-133;'466;Mali;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;53;3;0.24;0.24;0.24;0.24;4;42;42;57;130;75;31;20
-133;'466;Mali;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;36;36;20;20;112;112;112;112;112;112;112;77;77;0;0;0;0;16
-133;'466;Mali;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;11;11;7;7;6;6;6;6;6;6;6;31;31;0;0;0;0;0
-133;'466;Mali;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;400000;451000;507000;643000;643000;643000;643000;643000;643000
-133;'466;Mali;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;48;48;48;48;48;48;53;5;50;101;69;123;133;303;553;17562;7813;7631;7631;7627
-133;'466;Mali;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;2;2;2;33;31;24;46;36;16;18;56;210;7406;3337;3220;3220;3224
-133;'466;Mali;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;27;27;27;27;27;27;0;318;412;6644;1000;624;570;191;191;191;191
-133;'466;Mali;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;6;6;6;6;6;0;37;55;2222;1177;1017;937;96;96;96;96
-133;'466;Mali;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;50;101;69;123;123;290;290;17225;7584;7584;7584;7584
-133;'466;Mali;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;24;46;36;16;16;50;50;7200;3210;3210;3210;3210
-133;'466;Mali;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;412;6644;1000;476;450;42;42;42;42
-133;'466;Mali;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;55;2222;1177;840;794;21;21;21;21
-133;'466;Mali;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448000;400000;451000;507000;643000;643000;643000;643000;643000;643000
-133;'466;Mali;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;410;0;0;0;0;0;0;48;48;48;48;48;48;48;0;0;0;0;0;10;13;263;337;229;47;47;43
-133;'466;Mali;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;102;0;0;0;0;0;0;2;2;2;2;2;2;2;0;0;0;0;0;2;6;160;206;127;10;10;14
-133;'466;Mali;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;27;27;27;27;27;27;0;0;0;0;0;148;120;149;149;149;149
-133;'466;Mali;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;6;6;6;6;6;0;0;0;0;0;177;143;75;75;75;75
-133;'466;Mali;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;154;154;154;5
-133;'466;Mali;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;195;195;195;1
-133;'466;Mali;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;31;31;31;31
-133;'466;Mali;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;14;14;14;14
-133;'466;Mali;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;154;154;154;5
-133;'466;Mali;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;195;195;195;1
-133;'466;Mali;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;31;31;31;31
-133;'466;Mali;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;14;14;14;14
-133;'466;Mali;1872;Sawnwood;5516;Production;m3;9000;10000;10000;10000;10000;10000;10000;10000;10000;8000;8000;8000;3000;3000;5000;5000;6000;6000;6000;6000;6000;6000;6000;5800;3500;5700;10600;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;13000;13000;13000;56000;163000;130000;130000;130000;130000;130000;130000;273000;302000;100000;140000;140000
-133;'466;Mali;1872;Sawnwood;5616;Import quantity;m3;1500;700;1500;800;600;700;3800;4300;4300;4300;4300;3600;3000;3500;3500;4100;4700;4700;2600;2900;2000;2900;2900;2100;2100;4300;4300;4300;4300;4300;4300;207;527;0;200;40;446;5100;5500;5500;5500;5500;5500;7600;5134;4645;4307;6358;5937;12895;4024;2751;4118;3060;541;1205;2046;2517;12967;15490;19887;4764;4764
-133;'466;Mali;1872;Sawnwood;5622;Import value;1000 USD;164;138;170;324;174;215;120;130;130;130;130;220;200;250;250;409;452;452;330;429;404;590;609;462;465;1000;1000;1000;1000;1000;1000;101;125;0;10;5;82;2672;1252;2387;2552;1767;1870;3708;2519;2307;2773;4585;4489;8535;2804;2002;6651;727;288;764;2165;3021;2263;2228;2212;579;579
-133;'466;Mali;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905;38;46;316;100;1447;1447;0;0;0;155;1;431;431;202;494;1377;291;33;1;7;430;150;0;0;2018;1;5600;3519;0;41;4
-133;'466;Mali;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;14;21;71;50;451;451;0;0;0;96;1;131;131;101;95;214;223;19;1;5;1;305;0;0;1659;5;2486;2205;0;7;7
-133;'466;Mali;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;0;200;40;46;100;100;100;100;100;100;100;100;41;59;423;2;420;36;18;3000;33;169;176;52;136;538;106;0;9;9
-133;'466;Mali;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;10;5;6;28;30;30;30;30;30;30;30;9;11;97;1;111;10;5;5295;11;63;113;13;38;174;18;0;4;4
-133;'466;Mali;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;41;4
-133;'466;Mali;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;7;7
-133;'466;Mali;1633;Sawnwood, non-coniferous;5516;Production;m3;9000;10000;10000;10000;10000;10000;10000;10000;10000;8000;8000;8000;3000;3000;5000;5000;6000;6000;6000;6000;6000;6000;6000;5800;3500;5700;10600;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;12800;13000;13000;13000;56000;163000;130000;130000;130000;130000;130000;130000;273000;302000;100000;140000;140000
-133;'466;Mali;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1500;700;1500;800;600;700;3800;4300;4300;4300;4300;3600;3000;3500;3500;4100;4700;4700;2600;2900;2000;2900;2900;2100;2100;4300;4300;4300;4300;4300;4300;207;207;0;0;0;400;5000;5400;5400;5400;5400;5400;7500;5034;4604;4248;5935;5935;12475;3988;2733;1118;3027;372;1029;1994;2381;12429;15384;19887;4755;4755
-133;'466;Mali;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;164;138;170;324;174;215;120;130;130;130;130;220;200;250;250;409;452;452;330;429;404;590;609;462;465;1000;1000;1000;1000;1000;1000;101;101;0;0;0;76;2644;1222;2357;2522;1737;1840;3678;2489;2298;2762;4488;4488;8424;2794;1997;1356;716;225;651;2152;2983;2089;2210;2212;575;575
-133;'466;Mali;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905;38;46;316;100;1447;1447;0;0;0;155;1;431;431;202;494;1377;291;33;1;7;430;150;0;0;2018;1;5600;3519;0;0;0
-133;'466;Mali;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;14;21;71;50;451;451;0;0;0;96;1;131;131;101;95;214;223;19;1;5;1;305;0;0;1659;5;2486;2205;0;0;0
-133;'466;Mali;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;0;0;0;25;200;800;800;800;800;800;78;78;18;15;331;0;69;19;282;450;282;6587;23936;6072;1;1;0;407;0;6
-133;'466;Mali;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;0;0;0;17;45;523;523;523;523;523;61;61;84;16;160;0;26;10;46;146;100;834;2630;707;1;307;0;76;0;8
-133;'466;Mali;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;0;0;0;4;0;0;0;0;0;0;0;0;0;0;91;0;0;0;0;0;403;0;0;0;1;0;0;0;0;0
-133;'466;Mali;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;2;0;0;0;0;0;0;0;0;0;0;11;0;0;0;1;0;246;0;0;0;1;5;0;16;162;0
-133;'466;Mali;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;8000;27000;27000;37000;37000;37000;37000;50000;50000;50000;50000
-133;'466;Mali;1873;Wood-based panels;5616;Import quantity;m3;300;300;300;300;300;300;500;400;400;400;400;400;300;500;500;2900;1000;1000;900;1000;1000;1100;700;700;700;500;500;500;500;500;500;0;216;116;300;300;320;300;300;300;300;360;37;329;329;219;3619;3585;3941;5461;6827;27577.3;40978;5718;7535;9700;8733;6071;16828;20508;18438;9167;3823
-133;'466;Mali;1873;Wood-based panels;5622;Import value;1000 USD;65;60;60;60;55;50;61;55;55;55;55;55;50;90;90;716;236;236;250;300;310;330;210;210;210;155;155;155;155;155;155;0;101;38;117;117;120;117;105;105;105;134;24;67;67;92;1756;1995;2993;3474;4533;13898;19939;4638;5969;6833;4845;5724;6309;8148;9285;5685;1144
-133;'466;Mali;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5600;6300;6300;6300;0;0;0;2859;2859;2041;323;301;293;314;318;279;43;41;23;23;2;0;0;0;2;0;8
-133;'466;Mali;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;832;790;790;790;0;0;0;910;910;875;105;88;77;89;89;70;19;15;14;11;1;0;0;0;0;0;21
-133;'466;Mali;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;8000;27000;27000;37000;37000;37000;37000;50000;50000;50000;50000
-133;'466;Mali;1640;Plywood and LVL;5616;Import quantity;m3;300;300;300;300;300;300;500;400;400;400;400;400;300;500;500;2900;1000;1000;900;1000;1000;1100;700;700;700;500;500;500;500;500;500;0;100;0;0;0;0;0;0;0;0;20;20;20;20;49;3408;3496;3828;5379;6751;3543;4489;4551;6359;8335;7451;5515;16443;18190;17468;8633;1137
-133;'466;Mali;1640;Plywood and LVL;5622;Import value;1000 USD;65;60;60;60;55;50;61;55;55;55;55;55;50;90;90;716;236;236;250;300;310;330;210;210;210;155;155;155;155;155;155;0;63;0;0;0;0;0;0;0;0;8;8;8;8;45;1696;1928;2934;3291;4464;2745;2495;3420;4718;5288;3469;5256;6079;7300;8953;5211;438
-133;'466;Mali;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;6300;6300;6300;0;0;0;2567;2567;1724;6;8;0;21;39;0;43;41;23;23;2;0;0;0;0;0;8
-133;'466;Mali;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;790;790;790;0;0;0;842;842;804;34;11;0;12;19;0;19;15;14;11;1;0;0;0;0;0;21
-133;'466;Mali;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-133;'466;Mali;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-133;'466;Mali;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;0;0;0;0;0;15;28;28;2;12;6;33;22;11;11;11;3;7;90;27;27;85;662;639;332;516
-133;'466;Mali;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0;0;10;4;4;11;10;28;27;124;17;17;17;11;13;111;96;96;24;330;199;196;327
-133;'466;Mali;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;16;16;16;2;2;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;13;13;13;6;6;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;113;113;0;31;31;28;0;0;0;0;8;13;2;5;137;90;229;0;0;0
-133;'466;Mali;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;19;19;0;14;14;7;0;0;0;0;6;37;2;5;104;68;127;0;0;0
-133;'466;Mali;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;116;116;300;300;300;300;300;300;300;300;2;168;168;168;168;52;52;60;65;24023.3;36478;1156;1156;1273;1250;392;210;1427;331;202;2170
-133;'466;Mali;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;38;38;117;117;117;117;105;105;105;105;6;36;36;36;36;25;25;59;52;11136;17427;1201;1201;1432;1275;268;138;391;133;278;379
-133;'466;Mali;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;252;252;277;277;277;277;277;277;277;0;0;0;0;0;0;0;0;2;0;0
-133;'466;Mali;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;61;61;64;64;64;64;64;64;64;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;43;43;43;43;43;32;32;24018;36478;1150;1150;1150;1150;53;40;868;1;0;0
-133;'466;Mali;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;20;20;20;20;20;20;18;18;11126;17427;1188;1188;1188;1188;27;20;134;3;0;0
-133;'466;Mali;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0.3;0;6;6;77;80;280;130;330;330;201;2167
-133;'466;Mali;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;4;0;13;13;156;76;213;99;130;130;277;377
-133;'466;Mali;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;252;252;252;252;252;252;252;252;0;0;0;0;0;0;0;0;2;0;0
-133;'466;Mali;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;116;116;300;300;300;300;300;300;300;300;2;125;125;125;125;9;9;28;14;5;0;0;0;46;20;59;40;229;0;1;3
-133;'466;Mali;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;38;38;117;117;117;117;105;105;105;105;6;16;16;16;16;5;5;41;15;6;0;0;0;88;11;28;19;127;0;1;2
-133;'466;Mali;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;15000;90000;77000;77000;77000;77000;77000;82000;20000;31000;31000
-133;'466;Mali;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;382;838;400;400;400;1790;1809;552;552;435;624;387;387;3412;3412;216;286;192;646;386;127;970;1037;5580;3977;4187;4247
-133;'466;Mali;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;513;1357;1099;1099;1099;1183;1206;1137;1137;1128;1154;174;174;3507;3510;621;316;43.25;88;332;106;858;854;4778;3441;3498;3585
-133;'466;Mali;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;488;0;0;0;0;0;51;51;51;51;51;51;51;51;0;0;80;180;21;21;12;1;0;0;0;0;0
-133;'466;Mali;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;45;0;0;0;0;0;4;4;4;4;4;4;4;4;0;0;26;4;3;3;3;9;0;0;0;0;0
-133;'466;Mali;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;344;800;400;400;400;400;419;419;419;420;420;183;183;3411;3412;215;167;34;156;127;95;726;882;5575;3939;4187;4223
-133;'466;Mali;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;506;1350;1099;1099;1099;1099;1122;1122;1122;1123;1123;143;143;3506;3510;620;290;22.25;55;136;82;678;754;4778;3439;3498;3583
-133;'466;Mali;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;0;0;0;0;0;0;0
-133;'466;Mali;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;344;800;400;400;400;400;400;400;400;401;401;164;164;3388;3389;192;167;34;64;46;55;728;901;6597;4961;5209;5245
-133;'466;Mali;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;506;1350;1099;1099;1099;1099;1099;1099;1099;1100;1100;120;120;3484;3488;598;290;22.25;24;63;63;591;705;5357;4018;4077;4162
-133;'466;Mali;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;0;0;0;0;0;0;0
-133;'466;Mali;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0
-133;'466;Mali;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;541;150;18;18;18;18
-133;'466;Mali;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;436;121;39;39;39;39
-133;'466;Mali;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-133;'466;Mali;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-133;'466;Mali;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;51;27;;;;;;;
-133;'466;Mali;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1.25;16;44;;;;;;;
-133;'466;Mali;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;;;;;;;
-133;'466;Mali;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;
-133;'466;Mali;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;344;800;400;400;400;400;400;400;400;401;401;164;164;3388;3389;192;167;22;13;19;28;25;650;5475;3839;4087;4123
-133;'466;Mali;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;506;1350;1099;1099;1099;1099;1099;1099;1099;1100;1100;120;120;3484;3488;598;290;21;8;19;19;11;494;4600;3261;3320;3405
-133;'466;Mali;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;167;22;13;13;25;25;110;3803;3803;3803;3803
-133;'466;Mali;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;290;21;8;8;11;11;11;3189;3189;3189;3189
-133;'466;Mali;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;344;800;400;400;400;400;400;400;400;400;400;163;163;3387;3387;24;0;0;0;0;0;0;0;0;0;260;260
-133;'466;Mali;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;506;1350;1099;1099;1099;1099;1099;1099;1099;1099;1099;119;119;3482;3482;18;0;0;0;0;0;0;0;0;0;86;86
-133;'466;Mali;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;540;1672;36;24;60
-133;'466;Mali;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;483;1411;72;45;130
-133;'466;Mali;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;1;0;0;0;6;;;;;;;
-133;'466;Mali;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2;6;1;0;0;0;11;;;;;;;
-133;'466;Mali;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;101;1104;1104;1104;1104
-133;'466;Mali;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;90;718;718;718;718
-133;'466;Mali;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;23;23;23;0;0;92;81;40;160;82;82;82;82;82
-133;'466;Mali;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;22;22;22;0;0;31;73;19;231;139;139;139;139;139
-133;'466;Mali;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;80;70;70;70;70
-133;'466;Mali;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;70;41;41;41;41
-133;'466;Mali;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;0;0
-133;'466;Mali;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0
-133;'466;Mali;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;15000;90000;77000;77000;77000;77000;77000;82000;20000;31000;31000
-133;'466;Mali;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;38;38;0;0;0;1390;1390;133;133;15;204;204;204;1;0;1;119;158;490;259;32;244;155;5;38;0;24
-133;'466;Mali;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;7;0;0;0;84;84;15;15;5;31;31;31;1;0;1;26;21;33;196;24;180;100;0;2;0;2
-133;'466;Mali;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;488;0;0;0;0;0;51;51;51;51;51;51;51;51;0;0;80;171;12;12;12;1;0;0;0;0;0
-133;'466;Mali;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;45;0;0;0;0;0;4;4;4;4;4;4;4;4;0;0;26;4;3;3;3;9;0;0;0;0;0
-133;'466;Mali;1876;Paper and paperboard;5610;Import quantity;t;;200;200;100;200;100;500;700;700;700;700;1800;600;400;400;500;1060;1060;300;300;400;900;900;900;600;600;600;600;600;600;600;2232;2642;2824;1701;2018;4542;4500;5301;5301;5301;3257;5797;5158;5158;4626;7785;8193;5354;5472;7960;6646;6728;6253;8961;7893;12782;6777;9830;12426;9614;2630;5763
-133;'466;Mali;1876;Paper and paperboard;5622;Import value;1000 USD;;77;57;45;61;51;218;260;260;260;260;540;205;195;195;400;1194;1194;344;344;452;1060;1070;1080;770;760;760;760;760;760;760;2031;2194;2194;1567;1775;6591;5890;5534;5534;5534;3197;5455;3917;3917;4537;8986;13437;5198;8619;9543;11885;10728;8114;7826;7416;11318;10074;10233;12260;12429;4871;10144
-133;'466;Mali;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;88;88;88;93;0;0;0;0;4;24;24;24;76;118;150;157;186;131;79;351;502;635;140;211;106;160;299;275;1875;1863
-133;'466;Mali;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;79;79;79;87;0;0;0;0;37;53;53;53;101;215;199;199;205;200;84.24;677;1099;1293;362;343;151;207;251;176;1306;1245
-133;'466;Mali;2042;Graphic papers;5610;Import quantity;t;;;;;;;100;200;200;200;200;400;400;300;300;300;560;560;200;200;300;600;600;600;300;300;300;300;300;300;300;873;652;977;601;918;2501;2800;3101;3101;3101;1983;4539;2211;2211;3350;6567;6572;3606;4459;5751;5843;3566;2942;6030;5703;10696;4569;6884;6735;4925;997;1676
-133;'466;Mali;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;30;60;60;60;60;130;155;155;155;213;436;436;192;192;300;610;620;630;320;310;310;310;310;310;310;855;572;831;755;963;4273;3745;3119;3119;3119;1720;3397;1735;1735;2877;6979;9479;3385;5061;6471;8654;4168;3297;4257;4413;8120;7098;7033;5977;4791;1648;2418
-133;'466;Mali;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;88;88;88;88;;;;;;18;18;18;69;20;33;33;20;26;11;0;51;51;51;51;22;33;30;5;1742;1742
-133;'466;Mali;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;79;79;79;79;;;;;;14;14;14;58;15;12;12;10;8;6.24;0;248;248;248;248;72;111;96;15;1165;1165
-133;'466;Mali;1671;Newsprint;5610;Import quantity;t;;;;;;;100;200;200;200;200;200;100;100;100;100;200;200;;;;;;;;;0;;;;;;0;0;400;18;600;100;100;100;100;100;109;29;29;29;539;817;41;862;885;3009;3009;2540;5146;1516;5764;566;401;504;347;0;630
-133;'466;Mali;1671;Newsprint;5622;Import value;1000 USD;;;;;;;30;60;60;60;60;40;20;30;30;56;92;92;;;;;;;;;0;;;;;;0;0;352;13;545;66;51;51;51;51;96;14;14;14;526;865;37;759;798;5858;2929;2472;2619;641;2934;633;448;346;257;0;637
-133;'466;Mali;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;200;300;200;200;200;360;360;200;200;300;600;600;600;300;300;300;300;300;300;300;873;652;977;201;900;1901;2700;3001;3001;3001;1883;4430;2182;2182;3321;6028;5755;3565;3597;4866;2834;557;402;884;4187;4932;4003;6483;6231;4578;997;1046
-133;'466;Mali;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;90;135;125;125;157;344;344;192;192;300;610;620;630;320;310;310;310;310;310;310;855;572;831;403;950;3728;3679;3068;3068;3068;1669;3301;1721;1721;2863;6453;8614;3348;4302;5673;2796;1239;825;1638;3772;5186;6465;6585;5631;4534;1648;1781
-133;'466;Mali;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;88;88;88;88;;;;;;18;18;18;69;20;33;33;20;26;11;0;51;51;51;51;22;33;30;5;1742;1742
-133;'466;Mali;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;79;79;79;79;;;;;;14;14;14;58;15;12;12;10;8;6.24;0;248;248;248;248;72;111;96;15;1165;1165
-133;'466;Mali;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;233;233;233;146;532;85;85;98;430;235;1028;58;79;50;374;241;604;120;676;639;230;568;667;0;22
-133;'466;Mali;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;257;257;257;140;391;67;67;108;447;309;746;193;65;45;949;570;1272;253;1424;3124;1124;663;604;3;41
-133;'466;Mali;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;0;0;0;0;2;4;2;0;1741;1741
-133;'466;Mali;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;4;3;11;0;1153;1153
-133;'466;Mali;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;2202;2202;2202;1382;3020;1329;1329;2416;4251;3868;1488;2728;3930;2107;62;51;70;2991;3087;1457;4788;3683;1550;826;790
-133;'466;Mali;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2744;2289;2289;2289;1245;2067;1048;1048;1849;4375;4601;1387;2937;4599;2035;92;55;63;2693;2720;1557;3952;3156;1677;1292;1264
-133;'466;Mali;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;10;31;31;12;18;3;0;41;41;41;41;18;24;24;1;0;0
-133;'466;Mali;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;8;8;8;4;2;0.24;0;153;153;153;153;53;71;71;1;0;0
-133;'466;Mali;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;566;566;566;355;878;768;768;807;1347;1652;1049;811;857;677;121;110;210;1076;1169;1907;1465;1980;2361;171;234
-133;'466;Mali;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626;522;522;522;284;843;606;606;906;1631;3704;1215;1172;1009;716;198;200;303;826;1042;1784;1509;1812;2253;353;476
-133;'466;Mali;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;10;2;2;2;2;2;0;10;10;10;10;2;5;4;4;1;1
-133;'466;Mali;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;7;4;4;4;4;4;0;95;95;95;95;15;37;14;14;12;12
-133;'466;Mali;1675;Other paper and paperboard;5610;Import quantity;t;;200;200;100;200;100;400;500;500;500;500;1400;200;100;100;200;500;500;100;100;100;300;300;300;300;300;300;300;300;300;300;1359;1990;1847;1100;1100;2041;1700;2200;2200;2200;1274;1258;2947;2947;1276;1218;1621;1748;1013;2209;803;3162;3311;2931;2190;2086;2208;2946;5691;4689;1633;4087
-133;'466;Mali;1675;Other paper and paperboard;5622;Import value;1000 USD;;77;57;45;61;51;188;200;200;200;200;410;50;40;40;187;758;758;152;152;152;450;450;450;450;450;450;450;450;450;450;1176;1622;1363;812;812;2318;2145;2415;2415;2415;1477;2058;2182;2182;1660;2007;3958;1813;3558;3072;3231;6560;4817;3569;3003;3198;2976;3200;6283;7638;3223;7726
-133;'466;Mali;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;0;0;0;0;4;6;6;6;7;98;117;124;166;105;68;351;451;584;89;160;84;127;269;270;133;121
-133;'466;Mali;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;0;0;0;0;37;39;39;39;43;200;187;187;195;192;78;677;851;1045;114;95;79;96;155;161;141;80
-133;'466;Mali;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;35;35;7;58;118;83;216;144;100;1673;2150;1522;489;118;21;269;396;261;233;401
-133;'466;Mali;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;38;38;6;107;336;121;356;320;178;1713;2410;1236;812;161;36;407;574;394;418;728
-133;'466;Mali;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;8;11;55;60;60;0;0;1;1;1;1
-133;'466;Mali;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;22;22;22;22;22;2;2;30;35;35;0;0;7;7;7;7
-133;'466;Mali;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1600;1600;1600;947;799;1883;1883;1126;906;1273;1402;708;1930;573;1359;1084;1332;1334;1851;1922;2622;5203;4022;1161;3094
-133;'466;Mali;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1800;1800;1800;939;1120;1168;1168;1116;1166;1990;1132;2223;1845;2464;4258;2083;2009;1301;2243;1549;2504;5426;4341;1453;2840
-133;'466;Mali;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;3;85;103;110;144;83;46;343;430;519;19;100;84;127;268;268;120;120
-133;'466;Mali;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;6;156;162;162;146;143;29;675;791;957;21;60;79;96;148;148;73;73
-133;'466;Mali;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1600;1600;1600;120;205;839;839;321;150;109;919;202;888;124;51;301;656;694;877;162;531;2073;1947;274;2084
-133;'466;Mali;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1800;1800;1800;116;304;520;520;463;275;176;651;161;355;100;55;223;419;347;744;125;390;1034;1088;188;850
-133;'466;Mali;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;8;340;412;501;7;88;80;120;120;120;120;120
-133;'466;Mali;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;117;117;117;4;674;754;920;2;41;37;73;73;73;73;73
-133;'466;Mali;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;281;518;518;714;544;836;180;108;141;140;463;410;104;259;486;1459;1260;511;306;420;497
-133;'466;Mali;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;248;321;321;522;513;1179;165;726;336;224;1071;851;201;507;425;949;1230;1775;1079;575;1119
-133;'466;Mali;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;11;11;0;8;8;8;8;0;1;0;0;0;0
-133;'466;Mali;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;0;10;10;10;10;2;1;0;0;0;0
-133;'466;Mali;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;261;508;508;73;192;266;241;349;888;76;612;194;421;368;319;272;819;2545;1717;247;487
-133;'466;Mali;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469;537;315;315;119;365;566;247;1218;1142;160;2142;258;785;388;397;383;846;2313;2134;547;858
-133;'466;Mali;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;8;26;26;72;13;2;3;10;10;2;2;2;1;148;148;0;0
-133;'466;Mali;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;12;18;18;5;2;1;1;27;27;1;1;37;15;75;75;0;0
-133;'466;Mali;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;18;18;18;20;62;62;49;13;233;233;179;151;13;169;29;12;74;52;220;26
-133;'466;Mali;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;12;12;12;13;69;69;118;12;1980;990;751;604;59;677;92;38;304;40;143;13
-133;'466;Mali;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;30;30;37;25;25;25;0;0;0;2;2;2;5;0;0;0;0
-133;'466;Mali;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;21;21;21;18;18;18;0;0;0;8;8;3;7;0;0;0;0
-133;'466;Mali;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;600;600;600;327;422;1029;1029;143;254;230;263;89;135;130;130;77;77;367;117;265;55;92;406;239;592
-133;'466;Mali;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;615;615;615;538;875;976;976;538;734;1632;560;979;907;589;589;324;324;890;794;1391;289;283;2903;1352;4158
-133;'466;Mali;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;4;4;4;2;3;3;11;11;11;0;10;10;10;0;0;0;0;1;12;0
-133;'466;Mali;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;37;37;37;37;37;18;3;3;27;27;27;0;58;58;58;0;0;0;0;6;61;0
-133;'466;Mali;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17973;18085;22639;11028;13662;17339;16479
-133;'466;Mali;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102.9;489;433;147;1074;327;577
-133;'466;Mali;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;41;284;41;355;43
-133;'466;Mali;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;22;23
-133;'466;Mali;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;39;23;25
-133;'466;Mali;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;4;14
-133;'466;Mali;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;37;284;2;332;18
-133;'466;Mali;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;9
-133;'466;Mali;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;48;143;162;350;120;258
-133;'466;Mali;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;53;14;0;1;0;2
-133;'466;Mali;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;128;257;63;156;272;78
-133;'466;Mali;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;25;57;154;124;483
-133;'466;Mali;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2611;2470;3508;3944;4771;3677;5268
-133;'466;Mali;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.9;78;3;0;6;31;8
-133;'466;Mali;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14984;14979;18320;6219;8252;12238;10714
-133;'466;Mali;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862;77;101;23;13;131;57
-133;'466;Mali;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-133;'466;Mali;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-133;'466;Mali;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;423;370;356;92;677;118
-133;'466;Mali;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;214;224;1;834;19;4
-133;'466;Mali;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17138;24415;30653;37219;49528;52853;48354
-133;'466;Mali;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;1103;2135;200;267;229;248
-133;'466;Mali;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;128;89;47;0;4;4
-133;'466;Mali;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;59;0
-133;'466;Mali;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427;322;489;1502;1738;1472;1316
-133;'466;Mali;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;20;5;15;33;4;105
-133;'466;Mali;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826;613;891;4284;4736;3108;5841
-133;'466;Mali;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;26;26;10;1;4;1
-133;'466;Mali;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11462;17379;21904;21962;34045;40937;32023
-133;'466;Mali;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;917;2040;108;199;145;120
-133;'466;Mali;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4340;5973;7280;9424;9009;7332;9170
-133;'466;Mali;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;122;46;49;16;17;22
-134;'470;Malta;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130200.38;179627;189164;189164;189164;189164;189164
-134;'470;Malta;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6871.63;17929;19090;19090;19090;19090;19090
-134;'470;Malta;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1682;1702;1387;2088;2143;2351;2236;3025;3657;5391;4208;4448;7238;12618;8630;11232;20956;18617;26702;30815;14621;12321;12321;15294;22810;27605;27605;27605;37173;41369;48496;41378;37052;59159;65063;46176;53789;51545;51886;52045;50096;76070;72495;86506;76200;83729;88888;105015;87149;86930;98493;84661;82692;86449;71733;69478;63507.66;92170;103781;103781;103781;103781;103781
-134;'470;Malta;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;221;174;0;0;259;0;0;0;0;0;0;967;975;68;86;807;5083;1168;2573;4773;4859;5276;7594;3307;3307;5012.18;3495;5103;5103;5103;5103;5103
-134;'470;Malta;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1861;Roundwood;5616;Import quantity;m3;200;600;900;700;1500;300;500;300;400;400;400;500;400;500;400;500;500;400;1100;600;600;600;600;100;400;400;400;400;300;26585;7362;6866;1600;4800;6100;6208;800;570;1191;4340;4390;4370;184;30;20;75;14;24;89;321;287;877;1388;1148;1272;660;1129;1183;1571;1571;1571;1571;1571
-134;'470;Malta;1861;Roundwood;5622;Import value;1000 USD;17;47;56;43;98;12;45;16;25;23;15;35;39;61;98;114;45;43;152;100;100;100;100;34;137;93;93;93;83;3819;1184;1994;643;1220;2498;2544;232;16;55;221;235;234;23;67;23;75;16;44;70;175;245;478;305;384;376;115;261.27;204;262;262;262;262;262
-134;'470;Malta;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;157;157;0;0;2060;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;35;35;0;0;0;0;0;0;0
-134;'470;Malta;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;12;12;0;0;259;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;5;11;11;0;0;0;0;0;0;0
-134;'470;Malta;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;686;633;754;754;754;754;754
-134;'470;Malta;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97.45;97;116;116;116;116;116
-134;'470;Malta;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;550;817;817;817;817;817
-134;'470;Malta;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163.82;107;146;146;146;146;146
-134;'470;Malta;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;100;1900;100;8;100;69;101;70;120;100;184;30;20;23;6;16;21;25;20;407;372;472;706;653;1021;1161;1532;1532;1532;1532;1532
-134;'470;Malta;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;135;8;1;30;1;1;1;16;16;23;67;23;53;13;41;52;59;61;124;149;135;186;115;172.93;193;255;255;255;255;255
-134;'470;Malta;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;686;633;723;723;723;723;723
-134;'470;Malta;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97.45;97;110;110;110;110;110
-134;'470;Malta;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;528;809;809;809;809;809
-134;'470;Malta;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75.48;96;145;145;145;145;145
-134;'470;Malta;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;100;1900;100;8;100;69;101;70;120;100;184;30;20;23;6;16;21;25;20;407;372;472;706;653;;;;;;;
-134;'470;Malta;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;135;8;1;30;1;1;1;16;16;23;67;23;53;13;41;52;59;61;124;149;135;186;115;;;;;;;
-134;'470;Malta;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1865;Industrial roundwood;5616;Import quantity;m3;200;600;900;700;1500;300;500;300;400;400;400;500;400;500;400;500;500;400;1100;600;600;600;600;100;400;400;400;400;300;26585;7362;6693;1500;2900;6000;6200;700;501;1090;4270;4270;4270;0;0;0;52;8;8;68;296;267;470;1016;676;566;7;108;22;39;39;39;39;39
-134;'470;Malta;1865;Industrial roundwood;5622;Import value;1000 USD;17;47;56;43;98;12;45;16;25;23;15;35;39;61;98;114;45;43;152;100;100;100;100;34;137;93;93;93;83;3819;1184;1987;636;1085;2490;2543;202;15;54;220;219;218;0;0;0;22;3;3;18;116;184;354;156;249;190;0;88.33;11;7;7;7;7;7
-134;'470;Malta;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;157;157;0;0;2060;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;35;35;0;0;0;0;0;0;0
-134;'470;Malta;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;12;12;0;0;259;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;5;11;11;0;0;0;0;0;0;0
-134;'470;Malta;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;2028;495;100;400;100;300;300;500;425;1100;1100;1100;0;0;0;52;8;8;68;74;183;160;163;633;480;0;0;0;31;31;31;31;31
-134;'470;Malta;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;488;135;24;93;25;78;89;15;12;33;33;33;0;0;0;22;3;3;18;30;94;285;116;189;113;0;0;0;6;6;6;6;6
-134;'470;Malta;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;0;0;0;0;0;0;0
-134;'470;Malta;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;242;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;0;0;0;0
-134;'470;Malta;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;2028;495;100;400;100;300;300;500;425;1100;1100;1100;0;0;0;52;8;8;68;74;183;160;163;633;480;0;0;0;31;31;31;31;31
-134;'470;Malta;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;488;135;24;93;25;78;89;15;12;33;33;33;0;0;0;22;3;3;18;30;94;285;116;189;113;0;0;0;6;6;6;6;6
-134;'470;Malta;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;0;0;0;0;0;0;0
-134;'470;Malta;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;242;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;0;0;0;0
-134;'470;Malta;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24237;5334;6198;1400;2500;5900;5900;400;1;665;3170;3170;3170;0;0;0;0;0;0;0;222;84;310;853;43;86;7;108;22;8;8;8;8;8
-134;'470;Malta;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3536;696;1852;612;992;2465;2465;113;0;42;187;186;185;0;0;0;0;0;0;0;86;90;69;40;60;77;0;88.33;11;1;1;1;1;1
-134;'470;Malta;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;157;157;0;0;60;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;19;19;0;0;0;0;0;0;0
-134;'470;Malta;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;12;12;0;0;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;5;7;7;0;0;0;0;0;0;0
-134;'470;Malta;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13259;4870;1910;400;500;1700;1700;0;0;552;2150;2150;2150;0;0;0;0;0;0;0;158;28;310;7;43;74;0;44;0;0;0;0;0;0
-134;'470;Malta;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1780;652;757;164;293;992;992;0;0;36;133;132;131;0;0;0;0;0;0;0;56;51;69;4;60;73;0;33.15;0;0;0;0;0;0
-134;'470;Malta;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;2;2;0;0;0;0;0;0;0
-134;'470;Malta;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;5;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10978;464;4288;1000;2000;4200;4200;400;1;113;1020;1020;1020;0;0;0;0;0;0;0;64;56;0;846;0;12;7;64;22;8;8;8;8;8
-134;'470;Malta;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1756;44;1095;448;699;1473;1473;113;0;6;54;54;54;0;0;0;0;0;0;0;30;39;0;36;0;4;0;55.18;11;1;1;1;1;1
-134;'470;Malta;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;157;157;0;0;60;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;0;0;0;0;0;0;0
-134;'470;Malta;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;12;12;0;0;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;7;0;0;0;0;0;0;0
-134;'470;Malta;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1868;Sawlogs and veneer logs;5616;Import quantity;m3;200;600;900;700;1500;300;500;300;400;400;400;500;400;500;400;500;500;400;1100;600;600;600;600;100;400;400;400;400;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;17;47;56;43;98;12;45;16;25;23;15;35;39;61;98;114;45;43;152;100;100;100;100;34;137;93;93;93;83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;200;600;900;700;1500;300;500;300;400;400;400;500;400;500;400;500;500;400;1100;600;600;600;600;100;400;400;400;400;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;17;47;56;43;98;12;45;16;25;23;15;35;39;61;98;114;45;43;152;100;100;100;100;34;137;93;93;93;83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;100;100;100;200;200;300;350;350;210;200;191;150;190;255;335;308;337;249;274;318;279;383;350;213;366;245;330;330;330;330;330
-134;'470;Malta;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;56;71;68;44;95;162;162;162;200;171;154;150;202;212;295;258;367;240;283;333;262;324;350;214;338.89;272;335;335;335;335;335
-134;'470;Malta;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2400;2400;1360;880;1212;11560;9819;9066;11591;15171;2005;2270;313;2418;1567;1779;1577;2571;1542;2255;2469;2469;2469;2469;2469
-134;'470;Malta;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;137;137;216;145;231;181;125;158;230;360;440;376;88;415;340;399;333;427;260.51;402;421;421;421;421;421
-134;'470;Malta;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;407;380;240;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;25;13;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1401;0;1300;200;178;178;1900;2400;2400;140;40;101;210;79;60;17;80;170;70;130;118;2;9;10;254;597;1106;1172;1172;1172;1172;1172
-134;'470;Malta;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;0;122;21;13;13;2;44;44;40;14;20;8;9;8;4;23;47;19;37;37;10;17;28;42;100.95;196;197;197;197;197;197
-134;'470;Malta;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;137;380;240;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;13;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695;1100;4000;1100;600;400;300;0;0;1220;840;1111;11350;9740;9006;11574;15091;1835;2200;183;2300;1565;1770;1567;2317;945;1149;1297;1297;1297;1297;1297
-134;'470;Malta;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;44;161;46;26;62;62;93;93;176;131;211;173;116;150;226;337;393;357;51;378;330;382;305;385;159.56;206;224;224;224;224;224
-134;'470;Malta;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;270;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;123;331;331;331;331;331
-134;'470;Malta;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39.5;40;73;73;73;73;73
-134;'470;Malta;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;114;292;417;2167;1546;1278;1231;1231;1231;1231;1231
-134;'470;Malta;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;80;167;186;515;333.05;295;337;337;337;337;337
-134;'470;Malta;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;113;291;417;261;368;436;668;668;668;668;668
-134;'470;Malta;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;75;165;186;130;133.43;160;217;217;217;217;217
-134;'470;Malta;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;1906;1178;842;563;563;563;563;563
-134;'470;Malta;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;2;0;385;199.62;135;120;120;120;120;120
-134;'470;Malta;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1872;Sawnwood;5616;Import quantity;m3;13400;13400;13000;13900;13800;16100;15900;18700;18400;23800;17000;17400;14800;18000;12000;16100;18600;20400;19100;26900;16600;9900;9900;14500;19600;19700;19700;19700;17700;16600;19500;24069;17400;26900;23200;5900;19000;22000;22000;22000;19330;18500;22198;26790;22460;19343;19859;21254;15102;15320;14418;12423;12655;12873;13748;14324;14048;12730;13567;13567;13567;13567;13567
-134;'470;Malta;1872;Sawnwood;5622;Import value;1000 USD;806;870;772;863;863;1007;970;1170;1414;1923;1451;1459;2348;4361;2130;3109;4170;5298;4902;10262;3900;2300;2300;3950;5845;5412;5412;5412;6535;6926;8088;9215;5424;10464;9304;2152;9138;9870;9391;9391;8198;7565;9744;10984;12075;11014;11524;12951;7980;8774;8214;6790;6570;7147;6268;7458;7211.15;5946;6110;6110;6110;6110;6110
-134;'470;Malta;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;200;0;0;0;0;0;0;0;0;0;0;50;13;0;446;325;4;0;0;1;0;0;2;2;0;0;0;0;0;0;0
-134;'470;Malta;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;70;0;0;0;0;0;0;0;0;0;0;36;2;0;201;160;3;0;0;0;0;0;1;1;0;0;0;0;0;0;0
-134;'470;Malta;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1632;Sawnwood, coniferous;5616;Import quantity;m3;11500;12100;10900;9900;8200;12500;13800;16000;14800;20900;13900;14700;11700;14000;10000;13000;13000;12700;15400;16200;10000;6000;6000;10600;9800;10000;10000;10000;12200;9600;11700;13942;13000;16200;13000;1900;8000;14000;14000;14000;12700;13000;12804;16530;12780;10331;10990;10600;7460;7312;7091;5454;6171;7157;8765;7088;5682;6209;6645;6645;6645;6645;6645
-134;'470;Malta;1632;Sawnwood, coniferous;5622;Import value;1000 USD;705;744;619;507;507;702;746;875;946;1497;983;1044;1420;2691;1650;2181;2542;2708;3382;4930;1700;1000;1000;2650;2001;2614;2614;2614;3728;3320;4058;3419;3334;4263;3412;428;2856;2560;4195;4195;3539;3860;3800;4493;4224;3536;3980;4663;3022;2941;2806;2118;2358;2528;2536;2487;1793.13;1909;1506;1506;1506;1506;1506
-134;'470;Malta;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;10;10;0;407;305;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;2;0;163;142;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1900;1300;2100;4000;5600;3600;2100;2700;3600;2900;3100;2700;3100;4000;2000;3100;5600;7700;3700;10700;6600;3900;3900;3900;9800;9700;9700;9700;5500;7000;7800;10127;4400;10700;10200;4000;11000;8000;8000;8000;6630;5500;9394;10260;9680;9012;8869;10654;7642;8008;7327;6969;6484;5716;4983;7236;8366;6521;6922;6922;6922;6922;6922
-134;'470;Malta;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;101;126;153;356;356;305;224;295;468;426;468;415;928;1670;480;928;1628;2590;1520;5332;2200;1300;1300;1300;3844;2798;2798;2798;2807;3606;4030;5796;2090;6201;5892;1724;6282;7310;5196;5196;4659;3705;5944;6491;7851;7478;7544;8288;4958;5833;5408;4672;4212;4619;3732;4971;5418.02;4037;4604;4604;4604;4604;4604
-134;'470;Malta;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;200;0;0;0;0;0;0;0;0;0;0;40;3;0;39;20;4;0;0;0;0;0;2;2;0;0;0;0;0;0;0
-134;'470;Malta;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;70;0;0;0;0;0;0;0;0;0;0;31;0;0;38;18;3;0;0;0;0;0;1;1;0;0;0;0;0;0;0
-134;'470;Malta;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;100;100;100;100;100;100;100;100;100;100;300;300;300;300;300;300;100;200;200;200;400;300;300;285;300;100;100;150;200;300;350;350;60;120;240;200;250;456;461;563;220;270;881;1062;1026;640;456;644;312;478;719;719;719;719;719
-134;'470;Malta;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;55;59;51;56;63;76;82;121;85;85;254;238;238;238;238;238;145;235;235;235;471;412;418;544;663;338;449;205;395;393;393;393;262;330;129;139;165;272;290;359;158;202;448;504;479;421;264;251;121.37;137;320;320;320;320;320
-134;'470;Malta;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;0;0;0;0;51;140;0;20;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;0;0;0;0;0;0;0;39;57;0;12;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1873;Wood-based panels;5616;Import quantity;m3;1300;1800;1400;1400;1600;1700;2100;2800;3300;5500;3500;5100;8000;7000;6000;3900;5000;4200;5000;6400;6400;6400;6400;3400;3300;5500;5500;5500;3600;6300;6600;30813;21191;35100;31100;13100;33700;26800;25150;25150;43090;39250;20814;34730;36990;32228;24410;32049;27273;22576;21551;20503;20391;24194;24506;21294;36785;41279;25798;25798;25798;25798;25798
-134;'470;Malta;1873;Wood-based panels;5622;Import value;1000 USD;212;253;202;232;232;243;149;366;453;953;714;902;1588;2110;1677;1015;1446;1717;2074;3533;3533;3533;3533;1190;1155;1869;1869;1869;1825;3118;1646;12438;6876;13220;14692;5959;9665;9737;9261;8494;20599;17924;8360;8178;8947;9865;8232;11323;8707;8767;9079;7723;7724;9543;8242;8650;9173.45;10432;10214;10214;10214;10214;10214
-134;'470;Malta;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;0;0;0;0;0;0;0;0;0;97;380;140;0;544;403;24;38;20;64;249;17;9;9;61;415;8;8;8;8;8
-134;'470;Malta;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;41;94;34;0;88;158;15;19;16;21;17;5;4;4;9.47;261;1;1;1;1;1
-134;'470;Malta;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1640;Plywood and LVL;5616;Import quantity;m3;1300;1800;1400;1400;1600;1700;2100;2800;3300;5500;3500;5100;8000;7000;6000;3900;5000;4200;5000;6400;6400;6400;6400;3400;3300;5500;5500;5500;3600;6300;6600;5521;4000;7400;4800;2700;4900;4900;3500;3500;5640;5150;3841;3940;4090;4063;7555;5499;3526;4623;3921;3100;3860;4057;4462;8055;8836;16323;9796;9796;9796;9796;9796
-134;'470;Malta;1640;Plywood and LVL;5622;Import value;1000 USD;212;253;202;232;232;243;149;366;453;953;714;902;1588;2110;1677;1015;1446;1717;2074;3533;3533;3533;3533;1190;1155;1869;1869;1869;1825;3118;1646;3164;1769;3659;2384;1573;2380;2370;2484;1717;13665;11755;2092;1601;1882;2127;2607;2932;1722;2381;2231;1604;1969;2276;2310;2492;2862.79;3541;4500;4500;4500;4500;4500
-134;'470;Malta;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;0;0;0;0;0;0;0;0;0;61;40;10;0;45;5;24;38;20;2;1;0;9;9;0;0;0;0;0;0;0
-134;'470;Malta;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;12;14;5;0;3;0;15;19;16;3;0;0;4;4;0;0;0;0;0;0;0
-134;'470;Malta;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12814;4600;12200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5224;1773;5025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;6700;14300;8100;6750;6750;22200;18120;10355;17340;18380;13851;7886;13311;12373;7651;9253;8207;7949;9514;9068;10077;10142;10806;9686;9686;9686;9686;9686
-134;'470;Malta;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5783;2508;5044;5010;4420;4420;4040;3306;3675;3275;3593;3988;3104;4379;3700;3507;4364;3559;3318;4161;3225;3482;3466.33;3943;3340;3340;3340;3340;3340
-134;'470;Malta;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;80;0;0;420;178;0;0;0;2;248;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15;0;0;64;97;0;0;0;1;17;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;47;870;800;472;0;78;62;24;5;167;13;0;0;0;8;42;45;45;45;45;45
-134;'470;Malta;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;53;153;158;253;0;41;21;14;2;49;9;0;0;0;2.23;12;16;16;16;16;16
-134;'470;Malta;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12478;12591;15500;12300;3700;14500;13800;14900;14900;15250;14750;6571;12580;13720;13842;8969;13161;11312;10278;8372;9029;8569;10623;10976;3162;17799;14108;6271;6271;6271;6271;6271
-134;'470;Malta;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4050;3334;4536;6525;1878;2241;2357;2357;2357;2894;2666;2540;3149;3314;3497;2521;3971;3264;2865;2482;2511;2428;3106;2707;2676;2842.11;2936;2358;2358;2358;2358;2358
-134;'470;Malta;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;35;260;110;0;79;220;0;0;0;60;0;17;0;0;61;415;8;8;8;8;8
-134;'470;Malta;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;17;65;25;0;21;61;0;0;0;17;0;5;0;0;9.47;261;1;1;1;1;1
-134;'470;Malta;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;400;1200;1600;1150;1150;1150;1150;1459;2410;1780;4492;1288;1409;1754;1895;1331;1207;1357;1317;1371;259;168;213;449;449;449;449;449
-134;'470;Malta;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1240;295;427;584;584;584;584;584;693;580;414;1162;362;425;504;535;409;352;402;404;355;291;178.86;235;156;156;156;156;156
-134;'470;Malta;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;35;0;30;0;0;0;0;0;0;60;0;17;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;0;6;0;0;0;0;0;0;17;0;5;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;3000;4300;4000;2850;2850;3200;2700;1505;5130;6650;3940;3902;7742;6424;7794;6789;7302;6842;8661;9259;2382;4426;13833;5288;5288;5288;5288;5288
-134;'470;Malta;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3908;1558;815;927;927;927;1464;1236;660;1311;1635;1053;1097;2337;1859;2162;1998;2013;1920;2511;2266;2277;774.99;2692;2121;2121;2121;2121;2121
-134;'470;Malta;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;220;40;0;79;220;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;55;9;0;21;61;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3218;100;3500;3600;300;9000;8200;10900;10900;10900;10900;3607;5040;5290;5410;3779;4010;3134;589;252;520;370;645;346;521;13205;62;534;534;534;534;534
-134;'470;Malta;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;980;104;1345;1377;25;999;846;846;846;846;846;1187;1258;1265;1282;1062;1209;901;168;75;146;106;191;86;108;1888.26;9;81;81;81;81;81
-134;'470;Malta;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;40;40;0;0;0;0;0;0;0;0;0;0;0;61;415;8;8;8;8;8
-134;'470;Malta;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;10;10;0;0;0;0;0;0;0;0;0;0;0;9.47;261;1;1;1;1;1
-134;'470;Malta;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9260;12491;12000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3070;3230;3191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1000;5000;5000;12732;19032;19303;17555;20000;19000;19000;20450;18200;17000;17000;17000;17000;17000
-134;'470;Malta;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1512;1300;900;600;600;700;300;350;350;350;350;52;0;43;31;6;49;48;43;6;67;239;903;1140;15;7;5;20;20;20;20;20
-134;'470;Malta;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;655;740;609;336;469;239;236;236;236;236;25;12;38;32;26;41;104;50;31;14;13;9;180;12;9.01;21;100;100;100;100;100
-134;'470;Malta;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1;20;80;178;731;5213;5432;12732;19032;19303;17562;19642;18924;18924;20450;18379;17026;17026;17026;17026;17026
-134;'470;Malta;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;19;3;12;99;776;673;2205;3915;3461;3034;3848;2744;2744;3344.71;2686;1913;1913;1913;1913;1913
-134;'470;Malta;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1300;900;600;600;700;300;350;350;350;350;52;0;41;31;6;21;45;40;5;66;239;903;757;14;7;5;0;0;0;0;0
-134;'470;Malta;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;655;740;609;336;469;239;236;236;236;236;25;11;26;32;26;31;52;33;25;11;11;8;12;9;7.53;19;2;2;2;2;2
-134;'470;Malta;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1300;900;600;600;700;300;350;350;350;350;52;0;41;30;4;20;45;38;1;60;234;563;752;13;7;3;0;0;0;0;0
-134;'470;Malta;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;655;740;609;336;469;239;236;236;236;236;25;11;26;29;17;22;52;30;10;0;1;5;4;3;6.03;10;1;1;1;1;1
-134;'470;Malta;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0
-134;'470;Malta;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16;0;1;1;1;1;1
-134;'470;Malta;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;15;0;0;0;0;38;0;0;174;93;42;1;;;;;;;
-134;'470;Malta;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;27;0;0;1;1;0;0;;;;;;;
-134;'470;Malta;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;0;0;0;0;0;0;0;26;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1100;900;600;600;700;300;350;350;350;350;26;0;26;30;4;20;45;0;1;60;60;470;710;12;6;3;0;0;0;0;0
-134;'470;Malta;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;575;740;609;336;469;236;236;236;236;236;25;11;19;29;17;22;51;3;10;0;0;4;4;3;0.86;9;0;0;0;0;0
-134;'470;Malta;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0
-134;'470;Malta;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018;1000;900;600;600;700;300;350;350;350;350;24;0;20;29;3;20;44;0;0;0;0;0;0;0;0;2;0;0;0;0;0
-134;'470;Malta;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;525;740;609;336;469;236;236;236;236;236;15;0;15;26;12;19;45;0;0;0;0;0;0;0;0;2;0;0;0;0;0
-134;'470;Malta;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;0;0;0;0;0
-134;'470;Malta;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86;7;0;0;0;0;0
-134;'470;Malta;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;11;;;;;;;
-134;'470;Malta;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;;;;;;;
-134;'470;Malta;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;100;0;0;0;0;0;0;0;0;0;0;0;6;1;1;0;1;0;1;60;60;470;710;0;;;;;;;
-134;'470;Malta;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;50;0;0;0;0;0;0;0;0;0;10;11;4;3;5;3;6;3;10;0;0;4;4;0;;;;;;;
-134;'470;Malta;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-134;'470;Malta;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0
-134;'470;Malta;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;2;1;0;2;4;6;5;340;5;1;0;2;0;0;0;0;0
-134;'470;Malta;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;3;9;9;0;3;15;11;10;3;8;6;1.5;10;1;1;1;1;1
-134;'470;Malta;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;7;2;1;0;0;0;0;0;0;0
-134;'470;Malta;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;3;1;0;0;6;0;0;0;0;0
-134;'470;Malta;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1000;5000;5000;12732;19032;19303;17555;20000;19000;19000;20450;18200;17000;17000;17000;17000;17000
-134;'470;Malta;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;28;3;3;1;1;0;0;383;1;0;0;20;20;20;20;20
-134;'470;Malta;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;0;0;0;0;0;0;0;0;0;0;1;12;0;0;10;52;17;6;3;2;1;168;3;1.48;2;98;98;98;98;98
-134;'470;Malta;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;80;178;731;5213;5432;12732;19032;19303;17562;19642;18924;18924;20450;18379;17026;17026;17026;17026;17026
-134;'470;Malta;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;3;12;99;776;673;2205;3915;3461;3034;3848;2744;2744;3344.71;2686;1913;1913;1913;1913;1913
-134;'470;Malta;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1876;Paper and paperboard;5610;Import quantity;t;1300;1100;1022;3200;3100;3300;4100;5000;5900;7900;6700;6700;10500;11800;8600;14900;19600;10600;21500;21500;9300;8700;8700;12600;13900;18600;18600;18600;17800;16000;19200;14701;17100;22100;21600;18800;22500;20138;24878;25518;4860;46310;39602;32850;29780;32985;33548;32446;23940;40771;28418;21353;19639;19238;19811;27320;25381;26767;25856;25856;25856;25856;25856
-134;'470;Malta;1876;Paper and paperboard;5622;Import value;1000 USD;647;532;357;950;950;1089;1072;1473;1710;2433;1977;1996;3200;6010;4643;6873;15210;11474;19320;16682;6850;6150;6150;9882;15528;19996;19996;19996;28259;27094;37160;15942;22691;32823;37376;34897;33720;31064;32251;33011;20150;49465;53829;66795;54625;62101;68275;79679;69323;68346;80105;68334;66919;68052;55533;51836;45759.45;74414;85609;85609;85609;85609;85609
-134;'470;Malta;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;194;660;18;4;46;2266;270;32;20;35;219;155;31;31;204;327;314;314;314;314;314
-134;'470;Malta;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;0;0;0;0;0;860;755;26;62;419;3989;477;349;842;1377;2222;3736;547;547;1658.01;548;3189;3189;3189;3189;3189
-134;'470;Malta;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;2042;Graphic papers;5610;Import quantity;t;1200;1000;1000;1200;1100;1300;2100;1900;2600;3200;1900;1700;2500;3800;2600;2900;4600;5400;5600;3000;1300;1200;1200;5100;5700;5600;5600;5600;7600;9000;12200;4800;8100;14100;13900;13500;11400;13100;12800;12800;1220;42670;16600;20550;18090;20442;22880;22423;16878;30424;19873;13318;11806;11397;11871;16824;18185;15078;14287;14287;14287;14287;14287
-134;'470;Malta;2042;Graphic papers;5622;Import value;1000 USD;240;196;283;258;258;397;454;679;880;1243;777;696;924;2697;2343;2225;7226;8714;8702;4303;1850;1750;1750;5482;11194;12553;12553;12553;15925;18633;25885;6713;14376;25031;29350;29526;22098;21950;23020;23020;5038;34439;42982;51936;43833;49246;58133;67881;60037;52172;61814;56818;55705;55217;48346;43460;38212.53;40872;52214;52214;52214;52214;52214
-134;'470;Malta;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;0;0;189;640;6;1;41;2257;251;3;9;1;183;104;2;2;182;269;275;275;275;275;275
-134;'470;Malta;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;0;0;0;0;0;804;702;5;4;336;3892;321;44;20;1;700;2222;6;6;1337.1;408;1324;1324;1324;1324;1324
-134;'470;Malta;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1671;Newsprint;5610;Import quantity;t;500;500;500;600;500;500;1100;700;700;300;300;300;400;400;200;500;400;400;700;700;300;300;300;1000;1500;1200;1200;1200;1900;2600;3100;3100;2900;5500;3400;3000;3000;4500;4200;4200;450;3730;3674;4290;3590;3755;3707;3747;3353;4422;2517;2731;1877;2295;1884;1737;1593;1171;1045;1045;1045;1045;1045
-134;'470;Malta;1671;Newsprint;5622;Import value;1000 USD;90;92;89;84;84;94;131;115;166;91;92;96;108;157;93;207;185;184;313;342;150;150;150;480;718;709;709;709;1328;2092;2473;2500;1117;2886;2289;2465;2871;2850;2770;2770;3399;2507;1977;2594;2251;2518;2734;2837;2855;2771;1768;1970;1182;1505;961;872;895.18;729;703;703;703;703;703
-134;'470;Malta;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;0;0;0;0;1;0;135;0;0;0;1;1;28;28;28;28;28
-134;'470;Malta;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0;0;0;0;0;1;0;81;0;0;0;1.13;2;5;5;5;5;5
-134;'470;Malta;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1674;Printing and writing papers;5610;Import quantity;t;700;500;500;600;600;800;1000;1200;1900;2900;1600;1400;2100;3400;2400;2400;4200;5000;4900;2300;1000;900;900;4100;4200;4400;4400;4400;5700;6400;9100;1700;5200;8600;10500;10500;8400;8600;8600;8600;770;38940;12926;16260;14500;16687;19173;18676;13525;26002;17356;10587;9929;9102;9987;15087;16592;13907;13242;13242;13242;13242;13242
-134;'470;Malta;1674;Printing and writing papers;5622;Import value;1000 USD;150;104;194;174;174;303;323;564;714;1152;685;600;816;2540;2250;2018;7041;8530;8389;3961;1700;1600;1600;5002;10476;11844;11844;11844;14597;16541;23412;4213;13259;22145;27061;27061;19227;19100;20250;20250;1639;31932;41005;49342;41582;46728;55399;65044;57182;49401;60046;54848;54523;53712;47385;42588;37317.35;40143;51511;51511;51511;51511;51511
-134;'470;Malta;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;;;;;;189;640;4;1;41;2257;251;3;8;1;48;104;2;2;181;268;247;247;247;247;247
-134;'470;Malta;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;;;;;;804;702;4;4;336;3892;321;44;19;1;619;2222;6;6;1335.97;406;1319;1319;1319;1319;1319
-134;'470;Malta;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;8600;8600;510;38680;258;210;160;617;368;529;518;443;375;75;206;137;151;145;384;237;283;283;283;283;283
-134;'470;Malta;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19100;20250;20250;645;30944;765;257;314;1637;1017;768;569;535;424;90;188;143;150;125;295.21;238;1590;1590;1590;1590;1590
-134;'470;Malta;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;0;0;0;0;0;0;0;0;1;1;20;0;0;0;0;0;0
-134;'470;Malta;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;0;0;0;0;0;0;0;0;0;0;3;3;20.07;0;0;0;0;0;0
-134;'470;Malta;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;7207;8760;7420;7889;8154;9109;7172;13930;7698;8253;8350;7540;8055;8061;8138;7701;7937;7937;7937;7937;7937
-134;'470;Malta;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;494;35195;42321;34948;38497;43954;54377;50739;40814;49678;52469;53013;52089;45672;36978;30611.85;34589;45271;45271;45271;45271;45271
-134;'470;Malta;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;30;2;1;41;136;1;3;0;1;48;53;1;1;146;268;217;217;217;217;217
-134;'470;Malta;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;105;2;4;335;1613;17;44;6;1;619;2200;3;3;1303.29;406;1299;1299;1299;1299;1299
-134;'470;Malta;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;5461;7290;6920;8181;10651;9038;5835;11629;9283;2259;1373;1425;1781;6881;8070;5969;5022;5022;5022;5022;5022
-134;'470;Malta;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;494;5045;6764;6320;6594;10428;9899;5874;8052;9944;2289;1322;1480;1563;5485;6410.28;5316;4650;4650;4650;4650;4650
-134;'470;Malta;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;610;2;0;0;2121;250;0;8;0;0;51;0;0;15;0;30;30;30;30;30
-134;'470;Malta;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;597;2;0;1;2279;304;0;13;0;0;22;0;0;12.61;0;20;20;20;20;20
-134;'470;Malta;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1675;Other paper and paperboard;5610;Import quantity;t;100;100;22;2000;2000;2000;2000;3100;3300;4700;4800;5000;8000;8000;6000;12000;15000;5200;15900;18500;8000;7500;7500;7500;8200;13000;13000;13000;10200;7000;7000;9901;9000;8000;7700;5300;11100;7038;12078;12718;3640;3640;23002;12300;11690;12543;10668;10023;7062;10347;8545;8035;7833;7841;7940;10496;7196;11689;11569;11569;11569;11569;11569
-134;'470;Malta;1675;Other paper and paperboard;5622;Import value;1000 USD;407;336;74;692;692;692;618;794;830;1190;1200;1300;2276;3313;2300;4648;7984;2760;10618;12379;5000;4400;4400;4400;4334;7443;7443;7443;12334;8461;11275;9229;8315;7792;8026;5371;11622;9114;9231;9991;15112;15026;10847;14859;10792;12855;10142;11798;9286;16174;18291;11516;11214;12835;7187;8376;7546.92;33542;33395;33395;33395;33395;33395
-134;'470;Malta;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;5;20;12;3;5;9;19;29;11;34;36;51;29;29;22;58;39;39;39;39;39
-134;'470;Malta;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;56;53;21;58;83;97;156;305;822;1376;1522;1514;541;541;320.9;140;1865;1865;1865;1865;1865
-134;'470;Malta;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;1900;1300;2800;2600;3050;3050;1220;1220;12325;1700;1970;3523;1636;2180;1932;2843;1927;1964;2128;1886;1963;1976;2059;2222;1794;1794;1794;1794;1794
-134;'470;Malta;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2806;3262;2202;3477;3189;3189;3189;5038;5009;2864;2249;2848;3002;2428;4085;2652;2933;2834;2642;2835;2665;2389;2292;2515.87;2858;2275;2275;2275;2275;2275
-134;'470;Malta;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;10;0;0;0;0;1;4;23;7;0;2;2;7;5;3;3;3;3;3
-134;'470;Malta;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;19;19;4;1;1;1;3;10;242;4;1;2;2;9.75;14;6;6;6;6;6
-134;'470;Malta;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2238;7078;7718;1200;1200;10673;10470;9570;8919;8947;7789;5076;7476;6576;6019;5645;5905;5928;8470;4983;9423;9730;9730;9730;9730;9730
-134;'470;Malta;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2993;3110;3870;5036;5008;7380;11798;7104;9101;7095;7179;6066;12851;14936;8097;7693;9070;4134;5712;4615.63;30306;30433;30433;30433;30433;30433
-134;'470;Malta;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;2;2;2;7;16;27;7;10;10;2;1;1;10;49;12;12;12;12;12
-134;'470;Malta;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;33;2;39;10;27;66;276;803;1097;1058;24;18;18;191.85;70;838;838;838;838;838
-134;'470;Malta;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3300;2300;6300;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4684;4360;2900;4889;;;;;;;;;;;;;;;;;;;;;;;;;;
-134;'470;Malta;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505;5967;6627;300;300;7350;5600;5700;5706;5988;5654;3404;5356;3988;4048;3706;4087;4500;6576;2961;4884;5213;5213;5213;5213;5213
-134;'470;Malta;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2033;1906;2594;1259;1252;2926;2515;2465;2593;3156;3270;1491;2509;2250;2031;2099;2285;2145;3073;2246.16;3077;2601;2601;2601;2601;2601
-134;'470;Malta;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;14;0;0;0;0;0;0;0;0;1;0;0;0;0;0
-134;'470;Malta;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;25;0;0;0;0;0;0;0;0;13;0;0;0;0;0
-134;'470;Malta;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;95;134;300;300;2316;3970;2840;2024;1862;1267;1200;1652;2182;1587;1616;1494;1036;1513;1507;3576;3839;3839;3839;3839;3839
-134;'470;Malta;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;110;112;1259;1252;2824;7749;3343;4895;2268;1850;2914;9496;11924;5339;4874;5966;1270;1895;1084.2;25841;24873;24873;24873;24873;24873
-134;'470;Malta;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;1;1;0;0;1;3;6;8;2;1;0;0;9;0;7;7;7;7;7
-134;'470;Malta;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;2;31;1;0;35;260;798;1082;42;20;10;10;187.43;0;403;403;403;403;403
-134;'470;Malta;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;1016;957;300;300;886;860;990;1142;1048;744;426;418;355;354;299;317;380;355;471;912;629;629;629;629;629
-134;'470;Malta;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;1094;1164;1259;1252;1547;1420;1147;1503;1535;1659;780;717;603;611;580;673;613;669;680.57;1219;2792;2792;2792;2792;2792
-134;'470;Malta;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;1;2;7;1;1;1;2;1;1;1;1;1;48;0;0;0;0;0
-134;'470;Malta;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;8;9;27;6;3;1;15;4;4;4;4;3.43;56;0;0;0;0;0
-134;'470;Malta;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;121;40;40;47;49;124;46;50;51;30;24;7;12;26;44;51;49;49;49;49;49
-134;'470;Malta;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1259;1252;83;114;149;110;136;400;881;129;159;116;140;146;106;75;604.7;169;167;167;167;167;167
-134;'470;Malta;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23;0;0;7;0;0;0;0;0;5;5;5;5;5
-134;'470;Malta;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;13;4;0;1012;0;4;4;0.99;1;435;435;435;435;435
-134;'470;Malta;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-134;'470;Malta;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;100;100;22;2000;2000;2000;2000;3100;3300;4700;4800;5000;8000;8000;6000;12000;15000;5200;15900;18500;8000;7500;7500;7500;8200;13000;13000;13000;10200;7000;7000;9901;9000;1900;2500;1700;2000;2200;1950;1950;1220;1220;4;130;150;101;85;54;54;28;42;52;60;50;49;50;154;44;45;45;45;45;45
-134;'470;Malta;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;407;336;74;692;692;692;618;794;830;1190;1200;1300;2276;3313;2300;4648;7984;2760;10618;12379;5000;4400;4400;4400;4334;7443;7443;7443;12334;8461;11275;9229;8315;302;404;269;3256;2932;2932;2932;5038;5009;603;812;840;752;619;534;568;390;521;777;686;1100;664;372;415.41;378;687;687;687;687;687
-134;'470;Malta;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;3;2;3;1;0;1;19;49;26;26;5;4;24;24;24;24;24
-134;'470;Malta;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;30;1;0;15;72;69;89;26;9;37;460;1489;521;521;119.31;56;1021;1021;1021;1021;1021
-134;'470;Malta;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37494.73;48346;48049;48049;48049;48049;48049
-134;'470;Malta;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403.74;1524;1597;1597;1597;1597;1597
-134;'470;Malta;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533.42;571;702;702;702;702;702
-134;'470;Malta;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.06;0;1;1;1;1;1
-134;'470;Malta;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132.84;183;129;129;129;129;129
-134;'470;Malta;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400.57;388;573;573;573;573;573
-134;'470;Malta;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.06;0;1;1;1;1;1
-134;'470;Malta;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638.66;1005;1118;1118;1118;1118;1118
-134;'470;Malta;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62.27;103;74;74;74;74;74
-134;'470;Malta;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942.24;1042;1052;1052;1052;1052;1052
-134;'470;Malta;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16.58;73;163;163;163;163;163
-134;'470;Malta;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2548.76;2636;3387;3387;3387;3387;3387
-134;'470;Malta;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64.44;18;16;16;16;16;16
-134;'470;Malta;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31266.83;41025;39273;39273;39273;39273;39273
-134;'470;Malta;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169.75;345;260;260;260;260;260
-134;'470;Malta;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;79;5;5;5;5;5
-134;'470;Malta;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1564.83;1988;2512;2512;2512;2512;2512
-134;'470;Malta;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90.63;985;1083;1083;1083;1083;1083
-134;'470;Malta;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29197.99;39111;37334;37334;37334;37334;37334
-134;'470;Malta;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1455.71;12910;12390;12390;12390;12390;12390
-134;'470;Malta;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115.39;170;68;68;68;68;68
-134;'470;Malta;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-134;'470;Malta;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518.24;2934;2070;2070;2070;2070;2070
-134;'470;Malta;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30.43;68;7;7;7;7;7
-134;'470;Malta;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8913.75;10904;10877;10877;10877;10877;10877
-134;'470;Malta;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272.67;35;39;39;39;39;39
-134;'470;Malta;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12181.16;16961;16541;16541;16541;16541;16541
-134;'470;Malta;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1046.63;4982;3915;3915;3915;3915;3915
-134;'470;Malta;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6469.45;8142;7778;7778;7778;7778;7778
-134;'470;Malta;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105.99;7825;8429;8429;8429;8429;8429
-127;'584;Marshall Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3627;3612;5794;5834;6332;6605;5063
-127;'584;Marshall Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;304;378;5601;6583;5540;2442
-127;'584;Marshall Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1358;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1923;1019;1628;1221;1490;2449;3727;2640;1441;1696;3396;3184;3973;3267;2190
-127;'584;Marshall Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;21;12;35;279;78;341;6
-127;'584;Marshall Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;735;1237;0;34;322;486;77;267
-127;'584;Marshall Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;274;278;0;6;137;89;26;24
-127;'584;Marshall Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;315;0
-127;'584;Marshall Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;267;0
-127;'584;Marshall Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;168;2;0;0
-127;'584;Marshall Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;48;1;0;0
-127;'584;Marshall Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1234;0;34;154;484;77;267
-127;'584;Marshall Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;0;6;89;88;26;24
-127;'584;Marshall Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;315;0
-127;'584;Marshall Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;267;0
-127;'584;Marshall Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;735;1237;0;34;322;486;77;267
-127;'584;Marshall Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;274;278;0;6;137;89;26;24
-127;'584;Marshall Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;315;0
-127;'584;Marshall Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;267;0
-127;'584;Marshall Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;230;3;0;0;168;2;0;0
-127;'584;Marshall Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;46;2;0;0;48;1;0;0
-127;'584;Marshall Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;230;3;0;0;168;2;0;0
-127;'584;Marshall Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;46;2;0;0;48;1;0;0
-127;'584;Marshall Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;505;1234;0;34;154;484;77;267
-127;'584;Marshall Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;228;276;0;6;89;88;26;24
-127;'584;Marshall Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;315;0
-127;'584;Marshall Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;267;0
-127;'584;Marshall Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;34;1;0;0;0
-127;'584;Marshall Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;2;0;0;0
-127;'584;Marshall Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;315;0
-127;'584;Marshall Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;267;0
-127;'584;Marshall Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;505;1234;0;0;153;484;77;267
-127;'584;Marshall Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;228;276;0;0;87;88;26;24
-127;'584;Marshall Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;10;6;9
-127;'584;Marshall Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;11;7;14
-127;'584;Marshall Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3645;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;5567;1818;6353;8946;10475;2964;4511;4990;1431;3541;4743;5356;5891;5409;4846
-127;'584;Marshall Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;1181;637;1137;800;967;971;1501;1685;469;940;1587;1916;2061;1666;1345
-127;'584;Marshall Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;76;44;134;53;0;0;30
-127;'584;Marshall Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;21;12;35;218;0;0;5
-127;'584;Marshall Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3645;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;5534;1785;6320;8913;10442;2931;4395;4835;1310;3419;4385;4901;5597;4446;4765
-127;'584;Marshall Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;1163;637;1134;800;965;944;1451;1573;435;924;1455;1854;2010;1635;1323
-127;'584;Marshall Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;76;44;134;0;0;0;0
-127;'584;Marshall Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;21;12;35;126;0;0;0
-127;'584;Marshall Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;116;155;121;122;358;455;294;963;81
-127;'584;Marshall Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;0;3;0;2;27;50;112;34;16;132;62;51;31;22
-127;'584;Marshall Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;53;0;0;30
-127;'584;Marshall Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;92;0;0;5
-127;'584;Marshall Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;0;4;4;4;4;0;38;62;201;65;101;40;13;13
-127;'584;Marshall Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;8;2;0;8;1;34;61;208;66;116;35;51;51
-127;'584;Marshall Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;127;0;0
-127;'584;Marshall Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;61;55;0;0
-127;'584;Marshall Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;853;966;586;744;2464;3793;984;944;697;1068;1071;2302;2536;891
-127;'584;Marshall Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;354;455;391;495;1442;2191;619;605;520;758;745;1514;1376;557
-127;'584;Marshall Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9
-127;'584;Marshall Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;74;1
-127;'584;Marshall Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;3317;853;966;586;744;2464;3793;984;944;697;1064;1069;1105;1201;890
-127;'584;Marshall Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;709;354;455;391;495;1442;2191;619;605;520;757;744;783;603;556
-127;'584;Marshall Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9
-127;'584;Marshall Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;23;74;1
-127;'584;Marshall Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;1197;1335;1
-127;'584;Marshall Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;731;773;1
-127;'584;Marshall Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;205;0;0;0;0
-127;'584;Marshall Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;0;0;0;0
-127;'584;Marshall Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;205;0;0;0;0
-127;'584;Marshall Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;0;0;0;0
-127;'584;Marshall Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;1228;209;191;59;90
-127;'584;Marshall Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;938;264;263;141;199
-127;'584;Marshall Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;158;182;174;38;66
-127;'584;Marshall Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;187;206;213;72;114
-127;'584;Marshall Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;0;28
-127;'584;Marshall Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;1;13
-127;'584;Marshall Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;158;182;162;38;38
-127;'584;Marshall Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;187;206;202;71;101
-127;'584;Marshall Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;2;19;0
-127;'584;Marshall Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;27;6;21;2
-127;'584;Marshall Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;155;156;158;19;32
-127;'584;Marshall Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;173;172;184;49;81
-127;'584;Marshall Islands;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;0;6
-127;'584;Marshall Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;12;1;18
-127;'584;Marshall Islands;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0
-127;'584;Marshall Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1070;27;17;21;24
-127;'584;Marshall Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;58;50;69;85
-127;'584;Marshall Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;9;5;7;19
-127;'584;Marshall Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;31;14;21;49
-127;'584;Marshall Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052;18;12;14;5
-127;'584;Marshall Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708;23;35;42;21
-127;'584;Marshall Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;2;0;0;5
-127;'584;Marshall Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696;5;0;8;16
-127;'584;Marshall Islands;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;10;0
-127;'584;Marshall Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;0;22;2
-127;'584;Marshall Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;13;12;4;0
-127;'584;Marshall Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;35;12;3
-127;'584;Marshall Islands;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0
-127;'584;Marshall Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;1;6;15
-127;'584;Marshall Islands;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;418;401;1129;533;1644;1181
-127;'584;Marshall Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;50;250;5220;5536;4998;2268
-127;'584;Marshall Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;18;93;36;42;16;14
-127;'584;Marshall Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;23
-127;'584;Marshall Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;17;23;6;2
-127;'584;Marshall Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-127;'584;Marshall Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;16;91;19;19;10;12
-127;'584;Marshall Islands;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;23
-127;'584;Marshall Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;12;6;30;49;19
-127;'584;Marshall Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;97;59;39;3;636;47
-127;'584;Marshall Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1
-127;'584;Marshall Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;91;40;156;59;258;209
-127;'584;Marshall Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5179;5489;4832;2223
-127;'584;Marshall Islands;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168
-127;'584;Marshall Islands;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174
-127;'584;Marshall Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;163;164;847;374;643;826
-127;'584;Marshall Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;49;247;40;0;156;20
-127;'584;Marshall Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;42;33;45;25;42;66
-127;'584;Marshall Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;46;0;1
-127;'584;Marshall Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1601;1498;1997;1521;1826;1694;1692
-127;'584;Marshall Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;242;93;102;969;201;168
-127;'584;Marshall Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;1;4;4
-127;'584;Marshall Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;55;6;13;12;20;18
-127;'584;Marshall Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-127;'584;Marshall Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;221;257;171;397;226;296
-127;'584;Marshall Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;1;0
-127;'584;Marshall Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;634;1107;527;639;768;624
-127;'584;Marshall Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;241;54;54;110;158;165
-127;'584;Marshall Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;584;623;806;777;676;750
-127;'584;Marshall Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;38;47;858;42;3
-135;'474;Martinique;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22667;22667;22667;22667;22667;22667;22667
-135;'474;Martinique;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;110;110;110;110
-135;'474;Martinique;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1041;1376;1524;4251;3990;3548;3532;3310;4388;4524;3419;4990;5308;5308;5308;9010;9640;9643;11130;11330;14096;9152;8613;6970;7661;10182;22846;27364;29600;33997;26806;31400;29940;30463;22844;22844;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22750;22667;22667;22667;22667;22667;22667;22667
-135;'474;Martinique;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;450;246;297;297;472;286;153;357;326;244;165;116;116;124;124;124;124;124;250;80;32;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110;110
-135;'474;Martinique;1861;Roundwood;5516;Production;m3;14000;19000;18000;18000;16000;19000;20000;17000;16000;15000;15000;15000;15000;15000;15000;15000;12000;10500;10500;10500;10500;10500;10500;10500;10500;11000;12700;13200;11900;11900;11900;12800;11800;12000;12000;12000;12000;12000;12000;12000;14470;14710;12800;13180;13040;12830;12136;12412;12485;12427;12125;12125;12797;11421;10959;12661;10000;10000;10000;10000;23451;23377;23302
-135;'474;Martinique;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;1618;1007;100;7000;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100
-135;'474;Martinique;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;349;155;43;1073;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140
-135;'474;Martinique;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500
-135;'474;Martinique;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;140;140;140;140
-135;'474;Martinique;1863;Roundwood, non-coniferous;5516;Production;m3;14000;19000;18000;18000;16000;19000;20000;17000;16000;15000;15000;15000;15000;15000;15000;15000;12000;10500;10500;10500;10500;10500;10500;10500;10500;11000;12700;13200;11900;11900;11900;12800;11800;12000;12000;12000;12000;12000;12000;12000;14470;14710;12800;13180;13040;12830;12136;12412;12485;12427;12125;12125;12797;11421;10959;12661;10000;10000;10000;10000;23451;23377;23302
-135;'474;Martinique;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2600;2600;2600;2600;2600;2600
-135;'474;Martinique;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000
-135;'474;Martinique;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-135;'474;Martinique;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-135;'474;Martinique;1864;Wood fuel;5516;Production;m3;13000;15000;13000;13000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;23451;23377;23302
-135;'474;Martinique;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1628;Wood fuel, non-coniferous;5516;Production;m3;13000;15000;13000;13000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;23451;23377;23302
-135;'474;Martinique;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1865;Industrial roundwood;5516;Production;m3;1000;4000;5000;5000;6000;9000;10000;7000;6000;5000;5000;5000;5000;5000;5000;5000;2000;500;500;500;500;500;500;500;500;1000;2700;3200;1900;1900;1900;2800;1800;2000;2000;2000;2000;2000;2000;2000;4470;4710;2800;3180;3040;2830;2136;2412;2485;2427;2125;2125;2797;1421;959;2661;0;0;0;0;0;0;0
-135;'474;Martinique;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;1618;1007;100;7000;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100;3100
-135;'474;Martinique;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;349;155;43;1073;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140;1140
-135;'474;Martinique;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;186;186;0;5800;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500
-135;'474;Martinique;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;19;19;0;819;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140
-135;'474;Martinique;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;186;186;0;5800;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500
-135;'474;Martinique;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;19;19;0;819;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140;140
-135;'474;Martinique;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1000;4000;5000;5000;6000;9000;10000;7000;6000;5000;5000;5000;5000;5000;5000;5000;2000;500;500;500;500;500;500;500;500;1000;2700;3200;1900;1900;1900;2800;1800;2000;2000;2000;2000;2000;2000;2000;4470;4710;2800;3180;3040;2830;2136;2412;2485;2427;2125;2125;2797;1421;959;2661;0;0;0;0;0;0;0
-135;'474;Martinique;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892;1432;821;100;1200;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600
-135;'474;Martinique;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;330;136;43;254;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-135;'474;Martinique;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885;885;772;100;300;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;256;114;43;128;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81;81
-135;'474;Martinique;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;547;49;0;900;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500
-135;'474;Martinique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;22;0;126;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919;919
-135;'474;Martinique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1868;Sawlogs and veneer logs;5516;Production;m3;1000;4000;5000;5000;6000;9000;10000;7000;6000;5000;5000;5000;5000;5000;5000;5000;2000;500;500;500;500;500;500;500;500;1000;2700;3200;1900;1900;1900;2800;1800;2000;2000;2000;2000;2000;2000;2000;4470;4710;2800;3180;3040;2830;2136;2412;2485;2427;2125;2125;2797;1421;959;2661;0;0;0;0;0;0;0
-135;'474;Martinique;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1000;4000;5000;5000;6000;9000;10000;7000;6000;5000;5000;5000;5000;5000;5000;5000;2000;500;500;500;500;500;500;500;500;1000;2700;3200;1900;1900;1900;2800;1800;2000;2000;2000;2000;2000;2000;2000;4470;4710;2800;3180;3040;2830;2136;2412;2485;2427;2125;2125;2797;1421;959;2661;0;0;0;0;0;0;0
-135;'474;Martinique;1630;Wood charcoal;5510;Production;t;1959;1904;1851;1799;1748;1699;1652;1605;1560;1516;1495;1431;1350;1384;1260;1285;1248;1188;1152;1141;1197;1224;1269;1330;1329;1353;1384;1409;1439;1470;1495;1443;1444;1463;1488;1619;1650;1647;1656;1765;1770;1775;1780;1784;1789;1791;1792;1793;1794;1795;1794;1792;1790;1788;1787;1785;1783;1781;1779;1777;1775;1772;1769
-135;'474;Martinique;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;87;98;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67
-135;'474;Martinique;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1872;Sawnwood;5516;Production;m3;700;1700;1900;3000;3100;4000;4500;3400;3000;2000;2200;2500;2800;2800;2800;2800;1000;250;250;250;250;250;250;250;250;250;1200;1600;950;950;950;1300;900;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-135;'474;Martinique;1872;Sawnwood;5616;Import quantity;m3;13200;14700;19400;25900;20300;16300;19300;15600;22800;28200;21100;23400;23600;23600;23600;22400;20700;20700;26100;26100;29500;30900;30700;25400;29000;31000;41500;40100;40100;44100;38000;44728;42300;41700;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329;29329
-135;'474;Martinique;1872;Sawnwood;5622;Import value;1000 USD;610;691;915;1393;1096;961;851;835;1305;1663;1350;1678;1944;1944;1944;3109;3221;3221;4508;4508;5960;5540;5331;4509;5200;6137;8955;10352;12758;16983;10691;14708;13687;14086;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830;10830
-135;'474;Martinique;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1632;Sawnwood, coniferous;5616;Import quantity;m3;11100;13400;17500;23300;17000;11800;12400;13700;20900;26300;19200;21500;21700;21700;21700;18000;16800;16800;22600;22600;25200;22600;20400;15200;18000;23500;27200;20100;20500;32200;17300;24062;27900;23900;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100;17100
-135;'474;Martinique;1632;Sawnwood, coniferous;5622;Import value;1000 USD;507;636;826;1261;898;631;540;720;1190;1548;1235;1563;1829;1829;1829;2227;2247;2247;3691;3691;4615;3688;3165;2403;2900;4087;5351;4161;5601;11083;3753;6631;7634;6585;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159;5159
-135;'474;Martinique;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1633;Sawnwood, non-coniferous;5516;Production;m3;700;1700;1900;3000;3100;4000;4500;3400;3000;2000;2200;2500;2800;2800;2800;2800;1000;250;250;250;250;250;250;250;250;250;1200;1600;950;950;950;1300;900;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-135;'474;Martinique;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2100;1300;1900;2600;3300;4500;6900;1900;1900;1900;1900;1900;1900;1900;1900;4400;3900;3900;3500;3500;4300;8300;10300;10200;11000;7500;14300;20000;19600;11900;20700;20666;14400;17800;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229;12229
-135;'474;Martinique;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;103;55;89;132;198;330;311;115;115;115;115;115;115;115;115;882;974;974;817;817;1345;1852;2166;2106;2300;2050;3604;6191;7157;5900;6938;8077;6053;7501;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671;5671
-135;'474;Martinique;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;100;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;45;0;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84
-135;'474;Martinique;1873;Wood-based panels;5616;Import quantity;m3;;400;800;800;800;1500;1500;1300;1400;1600;2000;1800;2500;2500;2500;4100;4400;4400;4400;4400;2600;3400;3700;2900;2900;5200;6000;5900;6500;8000;6400;5389;5109;6680;7219;7219;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905;6905
-135;'474;Martinique;1873;Wood-based panels;5622;Import value;1000 USD;;99;184;205;241;242;277;322;386;386;496;560;989;989;989;1555;1674;1674;1674;1674;1517;1587;1680;1281;1281;2865;3945;4100;3996;4955;3984;3253;3136;4319;4029;4029;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935;3935
-135;'474;Martinique;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1640;Plywood and LVL;5616;Import quantity;m3;;400;800;800;800;1500;1500;1300;1400;1600;2000;1800;2500;2500;2500;2100;2800;2800;2800;2800;1000;1500;1800;1600;1600;4200;4800;4800;5200;6100;5200;4213;3800;5500;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700
-135;'474;Martinique;1640;Plywood and LVL;5622;Import value;1000 USD;;99;184;205;241;242;277;322;386;386;496;560;989;989;989;999;1352;1352;1352;1352;773;935;1074;857;857;2458;3303;3500;3108;3804;3202;2591;2381;3544;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179
-135;'474;Martinique;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;2000;1600;1600;1600;1600;1600;1900;1900;1300;1300;1000;1200;1100;1300;1900;1200;1114;1100;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;556;322;322;322;322;744;652;606;424;424;407;642;600;888;1151;782;576;696;609;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205;1205
-135;'474;Martinique;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756;756
-135;'474;Martinique;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;209;180;314;314;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;59;166;94;94;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;200;100;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;45;109;85;85;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;9;80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;14;57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;4000;2000;4000;4000;6000;4000;2000;4000;4000;3000;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-135;'474;Martinique;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;366;300;100;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;100;100;100;100;100;100;100
-135;'474;Martinique;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;411;298;95;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;117;117;117;117;117;117;117
-135;'474;Martinique;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;2303;1286;1700;1700;2800;1700;1000;1900;1900;1500;1100;1000;1000;1000;1000;1000;1000;1000;1295;900;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600
-135;'474;Martinique;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;450;246;297;297;472;286;153;357;326;244;165;116;116;124;124;124;124;124;95;62;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32
-135;'474;Martinique;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;300;100;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;100;100;100;100;100;100;100
-135;'474;Martinique;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;298;95;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;117;117;117;117;117;117;117
-135;'474;Martinique;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;100;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;0
-135;'474;Martinique;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;120;0;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;0;0;0;0;0;0;0
-135;'474;Martinique;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;100;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;0
-135;'474;Martinique;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;120;0;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;0;0;0;0;0;0;0
-135;'474;Martinique;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;
-135;'474;Martinique;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;100;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;;
-135;'474;Martinique;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;120;0;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;;;;;;;
-135;'474;Martinique;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;200;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;178;95;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117;117
-135;'474;Martinique;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;4000;2000;4000;4000;6000;4000;2000;4000;4000;3000;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-135;'474;Martinique;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;2303;1286;1700;1700;2800;1700;1000;1900;1900;1500;1100;1000;1000;1000;1000;1000;1000;1000;1295;900;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600
-135;'474;Martinique;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;450;246;297;297;472;286;153;357;326;244;165;116;116;124;124;124;124;124;95;62;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32
-135;'474;Martinique;1876;Paper and paperboard;5610;Import quantity;t;1800;2200;1400;17900;17900;16500;15300;13700;17200;14600;8800;15100;11600;11600;11600;11200;13500;13500;13500;13500;15600;2100;2100;2000;2000;2000;12900;17700;17600;13500;13500;14167;15600;11400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400
-135;'474;Martinique;1876;Paper and paperboard;5622;Import value;1000 USD;431;586;425;2653;2653;2345;2404;2153;2697;2475;1573;2752;2375;2375;2375;4346;4745;4748;4948;5148;6619;2025;1602;1180;1180;1180;9946;12912;12838;11782;11782;12740;12642;10792;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494;6494
-135;'474;Martinique;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78
-135;'474;Martinique;2042;Graphic papers;5610;Import quantity;t;;;;400;400;300;300;;;;;;;;;800;800;800;800;800;1000;1000;1200;1200;1200;1200;3000;3000;2600;3600;3600;4578;6900;6500;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600
-135;'474;Martinique;2042;Graphic papers;5622;Import value;1000 USD;;;;65;65;56;56;;;;;;;;;306;348;348;348;348;643;643;671;536;536;536;1243;1243;2193;3079;3079;4948;6523;6519;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807;3807
-135;'474;Martinique;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78
-135;'474;Martinique;1671;Newsprint;5610;Import quantity;t;;;;400;400;300;300;;;;;;;;;800;800;800;800;800;1000;1000;1200;1200;1200;1200;3000;3000;2600;3600;3600;3192;5500;4300;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200
-135;'474;Martinique;1671;Newsprint;5622;Import value;1000 USD;;;;65;65;56;56;;;;;;;;;306;348;348;348;348;643;643;671;536;536;536;1243;1243;2193;3079;3079;2464;4314;3443;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024;3024
-135;'474;Martinique;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386;1400;2200;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400
-135;'474;Martinique;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2484;2209;3076;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783
-135;'474;Martinique;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78
-135;'474;Martinique;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400
-135;'474;Martinique;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783;783
-135;'474;Martinique;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100
-135;'474;Martinique;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78;78
-135;'474;Martinique;1675;Other paper and paperboard;5610;Import quantity;t;1800;2200;1400;17500;17500;16200;15000;13700;17200;14600;8800;15100;11600;11600;11600;10400;12700;12700;12700;12700;14600;1100;900;800;800;800;9900;14700;15000;9900;9900;9589;8700;4900;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800
-135;'474;Martinique;1675;Other paper and paperboard;5622;Import value;1000 USD;431;586;425;2588;2588;2289;2348;2153;2697;2475;1573;2752;2375;2375;2375;4040;4397;4400;4600;4800;5976;1382;931;644;644;644;8703;11669;10645;8703;8703;7792;6119;4273;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687
-135;'474;Martinique;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-135;'474;Martinique;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;1100;900;800;800;800;9900;14700;15000;9900;9900;9589;8700;4900;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800;1800
-135;'474;Martinique;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1382;931;644;644;644;8703;11669;10645;8703;8703;7792;6119;4273;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687;2687
-135;'474;Martinique;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-135;'474;Martinique;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37812;48451;40726;42044;49174.51;61026;62398
-136;'478;Mauritania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;3823;263;634;731;2736;902
-136;'478;Mauritania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;2893;3353;3157;649;920;844;844;1224;1201;1201;711;2649;2442;1674;6000;2192;2192;1477;2825;4476;4476;3479;8201;7357;6303;8120;13759;11985;13892;14274;5681;10410;13392;16401;15078;18221;19573.51;25017;21863
-136;'478;Mauritania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;77;102;100;100;100;733;339;179;519;519;519;520;537;537;287;311;277;212;245;173;521;179;210;147;134;230;230;181;479;444;2506;573
-136;'478;Mauritania;1861;Roundwood;5516;Production;m3;668149;679755;691564;703579;715803;728241;740895;753771;766871;780199;793389;806109;833377;830685;860087;863962;884703;905158;915689;927971;942291;970772;984773;1023580;1042425;1055692;1078280;1101683;1119493;1156410;1181562;1211282;1231267;1255416;1278675;1304050;1328209;1364756;1398752;1434069;1470448;1508040;1546888;1587039;1625539;1694899;1736400;1779100;1823052;1868252;1909238;1951197;1994154;2038133;2083160;2121568;2160747;2200712;2241479;2283067;2325304;2368380;2412314
-136;'478;Mauritania;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;52;52;52;52;37;37;80;262;1422;1422;1422;3355;370;1603;17965;33255;22885;27260;20781;1278;5548;7206;5335;4617;1010;2756;5536;31192
-136;'478;Mauritania;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;7;7;7;7;5;5;9;19;202;202;202;365;380;455;2821;4605;3373;3305;3258;369;1646;2121;1830;1894;298;547;1484;4411
-136;'478;Mauritania;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;411;411;411;411;411;411;411;411;411;411;439;314;314;314;314;314;314;314;314;314;314;314;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;100;100;100;100;100;100;100;100;100;100;158;103;103;103;103;103;103;97;97;97;97;97;0;0;0;0;0;0;60;0;0
-136;'478;Mauritania;1862;Roundwood, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3072;2742;1190;997;2615;3397;3986
-136;'478;Mauritania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471;389;314;271;494;1294;1683
-136;'478;Mauritania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;60;0;0
-136;'478;Mauritania;1863;Roundwood, non-coniferous;5516;Production;m3;668149;679755;691564;703579;715803;728241;740895;753771;766871;780199;793389;806109;833377;830685;860087;863962;884703;905158;915689;927971;942291;970772;984773;1023580;1042425;1055692;1078280;1101683;1119493;1156410;1181562;1211282;1231267;1255416;1278675;1304050;1328209;1364756;1398752;1434069;1470448;1508040;1546888;1587039;1625539;1694899;1736400;1779100;1823052;1868252;1909238;1951197;1994154;2038133;2083160;2121568;2160747;2200712;2241479;2283067;2325304;2368380;2412314
-136;'478;Mauritania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4134;2593;3427;13;141;2139;27206
-136;'478;Mauritania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1650;1441;1580;27;53;190;2728
-136;'478;Mauritania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1864;Wood fuel;5516;Production;m3;665149;676755;688564;700579;712803;725241;737895;750771;763871;777199;790389;803109;830377;827685;856087;859962;880703;901158;911689;923971;938291;966772;980773;1019580;1038425;1051692;1073280;1096683;1114493;1151410;1176562;1206282;1226267;1250416;1272675;1298050;1322209;1358756;1392752;1428069;1464448;1502040;1540888;1581039;1622539;1662899;1704400;1747100;1791052;1836252;1877238;1919197;1962154;2006133;2051160;2089568;2128747;2168712;2209479;2251067;2293304;2336380;2380314
-136;'478;Mauritania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;17;191;191;191;191;;;;;;;
-136;'478;Mauritania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;98;98;98;98;;;;;;;
-136;'478;Mauritania;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1627;Wood fuel, coniferous;5516;Production;m3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1628;Wood fuel, non-coniferous;5516;Production;m3;665149;676755;688564;700579;712803;725241;737895;750771;763871;777199;790389;803109;830377;827685;856087;859962;880703;901158;911689;923971;938291;966772;980773;1019580;1038425;1051692;1073280;1096683;1114493;1151410;1176562;1206282;1226267;1250416;1272675;1298050;1322209;1358756;1392752;1428069;1464448;1502040;1540888;1581039;1622539;1662899;1704400;1747100;1791052;1836252;1877238;1919197;1962154;2006133;2051160;2089568;2128747;2168712;2209479;2251067;2293304;2336380;2380314
-136;'478;Mauritania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;17;191;191;191;191;;;;;;;
-136;'478;Mauritania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;98;98;98;98;;;;;;;
-136;'478;Mauritania;1865;Industrial roundwood;5516;Production;m3;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;3000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000
-136;'478;Mauritania;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;52;52;52;52;37;37;80;262;1422;1422;1422;3355;370;1603;17965;33230;22868;27069;20590;1087;5357;7206;5335;4617;1010;2756;5536;31192
-136;'478;Mauritania;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;7;7;7;7;5;5;9;19;202;202;202;365;380;455;2821;4603;3368;3207;3160;271;1548;2121;1830;1894;298;547;1484;4411
-136;'478;Mauritania;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;411;411;411;411;411;411;411;411;411;411;439;314;314;314;314;314;314;314;314;314;314;314;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;100;100;100;100;100;100;100;100;100;100;158;103;103;103;103;103;103;97;97;97;97;97;0;0;0;0;0;0;60;0;0
-136;'478;Mauritania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;52;52;52;52;33;33;76;258;42;42;42;2206;62;1295;679;2392;1885;647;1695;978;431;3072;2742;1190;997;2615;3397;3986
-136;'478;Mauritania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;7;7;7;7;2;2;6;16;3;3;3;135;4;79;59;191;170;197;769;211;32;471;389;314;271;494;1294;1683
-136;'478;Mauritania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;60;0;0
-136;'478;Mauritania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;52;52;52;52;33;33;76;258;42;42;42;2206;62;1295;679;2392;1885;647;1695;978;431;3072;2742;1190;997;2615;3397;3986
-136;'478;Mauritania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;7;7;7;7;2;2;6;16;3;3;3;135;4;79;59;191;170;197;769;211;32;471;389;314;271;494;1294;1683
-136;'478;Mauritania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0;0;60;0;0
-136;'478;Mauritania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;3000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000;32000
-136;'478;Mauritania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;4;4;4;1380;1380;1380;1149;308;308;17286;30838;20983;26422;18895;109;4926;4134;2593;3427;13;141;2139;27206
-136;'478;Mauritania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;199;199;199;230;376;376;2762;4412;3198;3010;2391;60;1516;1650;1441;1580;27;53;190;2728
-136;'478;Mauritania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;390;390;390;390;390;390;390;390;390;390;418;293;293;293;293;293;293;293;293;293;293;293;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;94;94;94;94;94;94;94;94;94;94;152;97;97;97;97;97;97;97;97;97;97;97;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102;1102;1102;1102;261;261;78;55;60;79;79;80;4904;4006;2567;3427;0;0;0;27181
-136;'478;Mauritania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;181;181;327;327;40;19;22;21;21;55;1509;1627;1434;1580;0;0;0;2722
-136;'478;Mauritania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;390;390;390;390;390;390;390;390;390;390;390;265;265;265;265;265;265;265;265;265;265;265;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;94;94;94;94;94;94;94;94;94;94;94;39;39;39;39;39;39;39;39;39;39;39;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;4;4;4;278;278;278;47;47;47;17208;30783;20923;26343;18816;29;22;128;26;0;13;141;2139;25
-136;'478;Mauritania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;18;18;18;49;49;49;2722;4393;3176;2989;2370;5;7;23;7;0;27;53;190;6
-136;'478;Mauritania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;58;58;58;58;58;58;58;58;58;58;58;58;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-136;'478;Mauritania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000
-136;'478;Mauritania;1871;Other industrial roundwood;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-136;'478;Mauritania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000
-136;'478;Mauritania;1630;Wood charcoal;5510;Production;t;22054;23086;24167;25297;26481;27720;29017;30375;31796;33284;34719;36235;38855;39536;42571;43579;46023;48539;50395;52582;54733;58188;60569;65229;68407;70938;74414;78214;81694;87221;91114;95575;99235;103399;107541;111415;115271;120512;125592;130904;135893;141072;146449;152030;157824;163023;168400;173900;179668;185586;190562;195672;200918;206306;211737;216620;221511;226513;231627;236857;242119;247497;252995
-136;'478;Mauritania;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;12;14;92;55;58;66;108;2;34;48;54;96;175
-136;'478;Mauritania;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;21;28;211;104;193;169;360;1;7;142;16;25;42
-136;'478;Mauritania;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;18;18;18;18;18;18;18;18;18
-136;'478;Mauritania;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10
-136;'478;Mauritania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;287;287;287;287;72;49;77;145;101;92;92;199;17;17;2;2;2;21;49
-136;'478;Mauritania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;25;30;38;51;27;126;126;176;4;4;1;1;1;5;14
-136;'478;Mauritania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;287;287;287;287;72;19;19;87;77;42;42;131;2;2;2;2;2;21;49
-136;'478;Mauritania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;25;25;15;28;24;17;17;144;1;1;1;1;1;5;14
-136;'478;Mauritania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;58;58;24;50;50;68;15;15;0;0;0;0;0
-136;'478;Mauritania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;23;23;3;109;109;32;3;3;0;0;0;0;0
-136;'478;Mauritania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;933.53;307;536
-136;'478;Mauritania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;137;56;105
-136;'478;Mauritania;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;933.53;307;536
-136;'478;Mauritania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;137;56;105
-136;'478;Mauritania;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;13594;13594;13594;13594
-136;'478;Mauritania;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;10500;8700;4667;1457;1973;2395;2395;512;115;115;56;56;1528;549;170;136;136;124;534;1560;1560;259;2853;2403;1903;1314;1685;3611;3518;2588;1253;1414;2936;3338;18586;20413;23547;32338;34964
-136;'478;Mauritania;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;2200;2567;2107;311;746;798;798;141;51;51;35;35;427;105;47;38;38;36;166;364;364;97;693;709;595;550;752;1339;2756;2591;427;445;2690;3258;3157;3581;3829;2665;2799
-136;'478;Mauritania;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2098;204;200;203;203;203;54;127;127;127;127;4;4;4;4;4;4;4;25;0;0;0;21;0;0;2243;0
-136;'478;Mauritania;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;593;65;48;126;126;126;47;38;38;38;38;4;4;0;0;0;0;0;19;0;0;0;19;0;0;2219;0
-136;'478;Mauritania;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;300;200;83;191;346;138;138;286;76;76;16;16;305;493;100;66;66;59;420;851;851;13;41;1165;42;354;26;272;1058;101;283;1079;95;590;799;76;396;1571;4197
-136;'478;Mauritania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;91;31;54;39;80;61;61;66;27;27;9;9;86;76;21;12;12;17;84;148;148;3;18;327;31;167;61;197;345;7;86;220;55;165;284;71;126;256;390
-136;'478;Mauritania;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;13594;13594;13594;13594
-136;'478;Mauritania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;10200;8500;4584;1266;1627;2257;2257;226;39;39;40;40;1223;56;70;70;70;65;114;709;709;246;2812;1238;1861;960;1659;3339;2460;2487;970;335;2841;2748;17787;20337;23151;30767;30767
-136;'478;Mauritania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;2109;2536;2053;272;666;737;737;75;24;24;26;26;341;29;26;26;26;19;82;216;216;94;675;382;564;383;691;1142;2411;2584;341;225;2635;3093;2873;3510;3703;2409;2409
-136;'478;Mauritania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2098;204;200;203;203;203;54;127;127;127;127;4;4;4;4;4;4;4;25;0;0;0;21;0;0;2243;0
-136;'478;Mauritania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;593;65;48;126;126;126;47;38;38;38;38;4;4;0;0;0;0;0;19;0;0;0;19;0;0;2219;0
-136;'478;Mauritania;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-136;'478;Mauritania;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;100;100;100;100;100;100;100;100;100;56;110;125;2583;3079;2653;3580;3198;3500;4090;5467;4849;4915;6547;4898;4898
-136;'478;Mauritania;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;51;51;51;51;51;51;51;51;51;29;78;92;581;735;610;750;571;532;562;743;636;793;1242;946;946
-136;'478;Mauritania;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;36;36;36;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;0;0;342;0;0;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-136;'478;Mauritania;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1700;1300;2883;830;714;73;73;160;422;422;270;503;32;126;2020;168;168;313;307;578;578;361;1382;903;778;2960;4514;2327;2606;2676;3729;3391;3640;3013;5140;4973;6304;11517;6560
-136;'478;Mauritania;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;693;786;1050;338;174;46;46;55;189;189;107;269;13;125;917;42;42;150;118;115;115;116;1366;1015;522;1263;2799;1698;2062;2014;1676;2319;2400;2374;2191;1718;2015;4093;1908
-136;'478;Mauritania;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;150;420;100;923;923;923;923;1033;1033;135;135;135;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;34;168;31;293;293;293;293;339;339;89;89;89;8;0;0;0;0;0;0;0;0;0;0;0;5;0;0
-136;'478;Mauritania;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000
-136;'478;Mauritania;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1700;1300;2883;830;714;73;73;33;344;344;267;500;8;62;1800;16;16;47;124;37;37;70;1295;772;604;2749;4157;2195;2368;2528;3543;3134;3247;2530;2448;4152;5824;9239;2390
-136;'478;Mauritania;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;693;786;1050;338;174;46;46;25;172;172;106;268;8;52;730;17;17;104;53;13;13;39;1288;738;393;1089;2611;1501;1792;1756;1329;1884;2096;1741;1350;1485;1768;3647;994
-136;'478;Mauritania;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;150;420;100;923;923;923;923;1033;1033;135;135;135;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0
-136;'478;Mauritania;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;34;168;31;293;293;293;293;339;339;89;89;89;8;0;0;0;0;0;0;0;0;0;0;0;5;0;0
-136;'478;Mauritania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;78;78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;17;17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;43;120;52;52;2;77;462;462;57;70;73;150;174;341;22;124;0;25;0;186;186;2242;538;140;447;1548
-136;'478;Mauritania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;69;171;9;9;3;39;76;76;49;64;242;102;138;145;14;82;0;41;0;135;135;624;105;55;88;417
-136;'478;Mauritania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;41;4;4;4;4;4;13;10;7;0;3;4;4;17;17;7
-136;'478;Mauritania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;21;13;13;13;13;13;7;72;22;0;9;2;1;4;4;7
-136;'478;Mauritania;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;100;100;100;264;106;79;79;160;17;17;20;33;12;106;110;135;151;250;207;294;446;279;323;1814;2615
-136;'478;Mauritania;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;16;16;16;43;26;26;26;20;14;14;14;23;30;170;175;251;234;413;169;489;215;127;188;354;490
-136;'478;Mauritania;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;100;100;100;100;3;3;3;3;3;3;6;3;3;11;12;34;9;29;25;24;72;66;29;123;123
-136;'478;Mauritania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;16;16;16;16;6;6;6;6;6;6;6;5;5;6;6;19;4;20;10;17;28;38;91;16;16
-136;'478;Mauritania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;12;12;12;12;7;7;76;89;62;103;194;162;250;238;71;149;503;1480
-136;'478;Mauritania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;6;6;6;6;1;24;148;165;182;180;384;150;463;170;15;19;105;286
-136;'478;Mauritania;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;31;4;4;145;2;2;2;23;2;19;9;39;39;27;20;20;136;142;145;1188;1012
-136;'478;Mauritania;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;1;1;8;2;2;2;17;1;16;4;50;50;9;9;9;17;74;78;233;188
-136;'478;Mauritania;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-136;'478;Mauritania;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;19;19;1300;2810;2810;20;177;2745;2745;565;527;527;529;7;5;327;38;125;65;38;182;182;123;946;771;2244;503
-136;'478;Mauritania;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;8;8;65;387;387;14;60;317;317;73;57;57;60;6;5;27;7;9;11;13;9;9;57;345;327;2823;88
-136;'478;Mauritania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;357;357;357;530;33;41;41;10;195;195;182;182;182;182;182;182;182
-136;'478;Mauritania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;76;4;10;10;4;19;19;28;28;28;28;28;28;28
-136;'478;Mauritania;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;19;13;40;40;40;2;2;4;4;4;4;4;2;2;2;2;2;71;541;541;1938;299
-136;'478;Mauritania;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;13;11;17;17;17;1;1;4;4;4;4;4;1;1;1;1;1;52;310;310;2775;71
-136;'478;Mauritania;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;19;13;40;40;40;2;2;4;4;4;4;4;2;2;2;2;2;71;541;541;1938;299
-136;'478;Mauritania;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;13;11;17;17;17;1;1;4;4;4;4;4;1;1;1;1;1;52;310;310;2775;71
-136;'478;Mauritania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;19;13;40;40;40;2;2;4;4;4;4;4;2;2;2;2;2;71;541;541;1938;299
-136;'478;Mauritania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;13;11;17;17;17;1;1;4;4;4;4;4;1;1;1;1;1;52;310;310;2775;71
-136;'478;Mauritania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;19;13;40;40;40;2;2;2;2;2;2;2;2;2;2;2;2;71;541;541;1938;299
-136;'478;Mauritania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;0;13;11;17;17;17;1;1;1;1;1;1;1;1;1;1;1;1;52;310;310;2775;71
-136;'478;Mauritania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;0;0;;;;;;;
-136;'478;Mauritania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;;;;;;;
-136;'478;Mauritania;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;1300;2810;2810;1;164;2705;2705;525;525;525;525;3;1;323;34;123;63;36;180;180;52;405;230;306;204
-136;'478;Mauritania;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;65;387;387;1;49;300;300;56;56;56;56;2;1;23;3;8;10;12;8;8;5;35;17;48;17
-136;'478;Mauritania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;357;357;357;530;33;41;41;10;195;195;182;182;182;182;182;182;182
-136;'478;Mauritania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;76;4;10;10;4;19;19;28;28;28;28;28;28;28
-136;'478;Mauritania;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-136;'478;Mauritania;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;940;1053;1053;692;4124;2181;1592;9200;2241;2241;1578;2163;4942;4942;2971;5277;3353;3955;3857;5637;5886;6370;7256;2486;6700;6940;8314;8854;12160;12047.46;12227;11535
-136;'478;Mauritania;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1028;961;961;553;2334;1985;1425;4913;1669;1669;1217;2411;3412;3412;2925;5654;5152;4568;3352;4958;4734;4914;5422;2308;5110;5246;8182;7135;11180;11459.51;12920;11550
-136;'478;Mauritania;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;11;11;11;11;11;11;36;68;68;68;68;125;125;129;327;327;119;407;279;178;265
-136;'478;Mauritania;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;22;22;22;22;22;22;38;72;72;72;72;99;99;105;192;192;124;441;341;249;535
-136;'478;Mauritania;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721;946;946;180;524;397;184;4400;841;841;468;311;1042;1042;576;885;724;473;1033;2253;2572;3454;3099;545;1420;1372;1816;2143;1509;1258;2109;2439
-136;'478;Mauritania;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836;852;852;240;384;615;233;2650;694;694;390;412;746;746;699;912;950;625;964;1425;2166;2432;2195;652;1475;1383;1709;1670;1450;1524.98;2025;1983
-136;'478;Mauritania;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;22;40;40;40;40;97;97;97;295;295;87;135;89;144;231
-136;'478;Mauritania;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;10;26;26;26;26;53;53;53;140;140;72;119;77;194;480
-136;'478;Mauritania;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;4;4;47;24;24;11;700;35;35;29;106;264;264;11;385;18;18;546;1101;1673;2039;1882;106;282;527;22;818;817;633;888;880
-136;'478;Mauritania;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;5;46;21;21;10;342;49;49;20;176;134;134;25;260;11;8;537;849;1321;1460;1389;76;608;740;44;1114;1218;1243.98;1401;1300
-136;'478;Mauritania;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;942;942;133;500;373;173;3700;806;806;439;205;778;778;565;500;706;455;487;1152;899;1415;1217;439;1138;845;1794;1325;692;625;1221;1559
-136;'478;Mauritania;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;847;847;194;363;594;223;2308;645;645;370;236;612;612;674;652;939;617;427;576;845;972;806;576;867;643;1665;556;232;281;624;683
-136;'478;Mauritania;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;22;40;40;40;40;97;97;97;295;295;87;135;89;144;231
-136;'478;Mauritania;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;10;26;26;26;26;53;53;53;140;140;72;119;77;194;480
-136;'478;Mauritania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;23;5;5;16;55;68;68;28;123;30;11;118;241;46;73;145;72;151;75;75;3;20;138;39;108
-136;'478;Mauritania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;21;6;6;13;53;53;53;49;101;58;46;124;116;65;71;47;164;117;135;135;3;8;54;18;26
-136;'478;Mauritania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-136;'478;Mauritania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9
-136;'478;Mauritania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;3470;756;756;367;90;528;528;243;236;537;281;334;693;798;1150;817;321;628;617;1607;830;397;326;1019;978
-136;'478;Mauritania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;2079;581;581;312;122;415;415;257;314;692;364;258;257;709;776;548;327;512;413;1345;403;144;176;500;456
-136;'478;Mauritania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;75;75;75;208;208;0;48;48;48;48
-136;'478;Mauritania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;43;43;43;68;68;0;47;47;47;47
-136;'478;Mauritania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;207;45;45;56;60;182;182;294;141;139;163;35;218;55;192;255;46;359;153;112;492;275;161;163;473
-136;'478;Mauritania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;208;58;58;45;61;144;144;368;237;189;207;45;203;71;125;211;85;238;95;185;150;80;51;106;201
-136;'478;Mauritania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;66;66;66;66;20;75;162
-136;'478;Mauritania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;63;63;63;63;21;138;424
-136;'478;Mauritania;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-136;'478;Mauritania;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;107;107;512;3600;1784;1408;4800;1400;1400;1110;1852;3900;3900;2395;4392;2629;3482;2824;3384;3314;2916;4157;1941;5280;5568;6498;6711;10651;10789.46;10118;9096
-136;'478;Mauritania;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;109;109;313;1950;1370;1192;2263;975;975;827;1999;2666;2666;2226;4742;4202;3943;2388;3533;2568;2482;3227;1656;3635;3863;6473;5465;9730;9934.53;10895;9567
-136;'478;Mauritania;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;14;28;28;28;28;28;28;32;32;32;32;272;190;34;34
-136;'478;Mauritania;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;21;21;21;21;21;21;28;46;46;46;46;46;46;52;52;52;52;322;264;55;55
-136;'478;Mauritania;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;138;150;102;102;11;700;856;487;111;51;63;126;122;101;30;183;76;12;26;120;155;284
-136;'478;Mauritania;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;189;287;112;112;18;1460;1951;981;155;70;64;116;133;253;67;94;177;6;7;40;55;102
-136;'478;Mauritania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14
-136;'478;Mauritania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18
-136;'478;Mauritania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-136;'478;Mauritania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;1215;686;1395;3193;3193;2339;3413;1190;2830;2448;3239;2964;2732;3725;1813;5060;5359;6419;6691;10625;10643.46;9963;8762
-136;'478;Mauritania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;775;775;386;1177;1980;1980;1982;2882;1339;2711;1973;3405;2094;2328;2937;1320;3458;3742;6257;5442;9722;9847.53;10839;9435
-136;'478;Mauritania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;14;14;14;14;14;14;14;14;14;14;14;254;172;16;16
-136;'478;Mauritania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;28;28;28;28;28;28;28;28;28;28;28;298;240;31;31
-136;'478;Mauritania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;485;592;334;989;989;480;1340;46;615;281;580;650;380;323;272;2590;3074;583;4130;1247;493;37;35
-136;'478;Mauritania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;225;192;194;613;613;200;915;28;448;200;351;424;286;245;159;1511;1840;389;3177;793;440;35;46
-136;'478;Mauritania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;62;29;24;24;224;13;82;102;192;36;393;341;122;159;350;127;25;517;114;280.41;164;22
-136;'478;Mauritania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;147;56;15;15;101;61;308;218;130;12;141;158;128;148;432;337;52;173;44;67;533;11
-136;'478;Mauritania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10
-136;'478;Mauritania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21
-136;'478;Mauritania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683;683;21;1024;2172;2172;1627;2052;1054;2101;1958;2606;1691;1781;3273;1375;2026;2064;5717;1996;9191;9773.05;9760;8703
-136;'478;Mauritania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;527;16;922;1347;1347;1676;1901;998;2031;1637;3036;1333;1688;2544;993;1498;1548;5799;2084;8872;9319.53;10265;9372
-136;'478;Mauritania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;244;162;6;6
-136;'478;Mauritania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;277;219;10;10
-136;'478;Mauritania;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100
-136;'478;Mauritania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;8;8;8;8;8;8;12;17;17;230;230;7;7;94;94;94;48;73;97;2;2
-136;'478;Mauritania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;5;5;5;5;5;5;14;6;6;196;196;20;20;17;17;17;8;13;21;6;6
-136;'478;Mauritania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;4800;154;154;286;307;605;605;45;279;583;165;265;94;287;58;310;27;190;26;3;8;0;26;0;50
-136;'478;Mauritania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192;2263;159;159;252;535;574;574;226;400;912;251;260;58;410;38;157;83;110;27;39;17;1;47;1;30
-136;'478;Mauritania;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4
-136;'478;Mauritania;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;6;6;6
-136;'478;Mauritania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13493;22569;15415;14120;14049;15070;16896
-136;'478;Mauritania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;128;23;7;53;15;19
-136;'478;Mauritania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10842;10860;10863;10907;10873;10861;10852
-136;'478;Mauritania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-136;'478;Mauritania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10824;10824;10824;10824;10824;10824;10824
-136;'478;Mauritania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;36;39;83;49;37;28
-136;'478;Mauritania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4
-136;'478;Mauritania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;142;37;703;101;95;537
-136;'478;Mauritania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;11;44;62;79;44
-136;'478;Mauritania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;7;4;4
-136;'478;Mauritania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1249;1857;787;733;1100;1391
-136;'478;Mauritania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;0;0;0;0
-136;'478;Mauritania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5
-136;'478;Mauritania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10
-136;'478;Mauritania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1461;10001;2256;1581;2152;2858;3921
-136;'478;Mauritania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;123;18;1;42;7;11
-136;'478;Mauritania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;252;252;39;63;0;30
-136;'478;Mauritania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;59;139;59;65;77;121
-136;'478;Mauritania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10927;9481;10233;9703;15552;20939;23639
-136;'478;Mauritania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;3465;59;148;234;215;310
-136;'478;Mauritania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2382;1;5;0;21;21;21
-136;'478;Mauritania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-136;'478;Mauritania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;54;45;9;63;26;61
-136;'478;Mauritania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;868;965;1203;2036;2132;1524
-136;'478;Mauritania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43
-136;'478;Mauritania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7224;7820;8522;7675;12537;17700;20251
-136;'478;Mauritania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3410;16;73;179;170;264
-136;'478;Mauritania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;738;696;816;895;1060;1782
-136;'478;Mauritania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;32;12;2;3
-137;'480;Mauritius;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122604;157541;152279;117736;147039.68;180391;161604
-137;'480;Mauritius;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13762;18898;16635;14412;17576.67;16967;17663
-137;'480;Mauritius;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1491;1261;1211;1295;1387;1217;1491;1257;1259;1470;1844;2184;2823;6259;5587;6777;8968;8691;9411;8887;8404;7503;6978;6689;7608;10284;10501;27892;25995;28656;33939;40226;46290;49986;49561;59858;17436;64122;67591;41101;41761;49091;51992;65775;65775;57087;75888;79502;57306;88333;84132.65;85291.16;72776;72678;49897;63560;70975;95496;92791;71333;92439.68;114890;96093
-137;'480;Mauritius;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;213;285;285;285;284;3589;3754;5256;1562;1523;1527;3106;3198;3198;3265;3551;5358;2831;2221;2798;2646;2572;2093;2718;2230;5610;3730;3904;5616.67;4603;5237
-137;'480;Mauritius;1861;Roundwood;5516;Production;m3;64000;74000;97000;112000;75000;23000;35000;36000;36000;37000;37000;39000;39000;33000;42300;45000;39000;45700;47600;41800;37000;33000;29800;14500;16700;24300;32140;34140;31000;27100;17300;15650;24150;18300;12390;14760;14760;22000;25000;18000;17000;15100;14000;14000;12500;16700;15400;15400;15000;14000;11000;7200;3500;2540;2000;6520;6520;6520;6563;4997;4997;4997;5542
-137;'480;Mauritius;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;400;300;600;700;1000;600;1300;2000;1100;1900;2900;2400;1000;800;800;1200;1200;1700;1700;14500;;23788;26240;7540;9400;3100;9000;4330;7271;15641;14441;9000;6700;10688;19863;19863;19863;3726;3676;2714;27434;15325;16320;10216;29247;4962;8422;10992;31659;45467;22324;8675;19392;4100
-137;'480;Mauritius;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;42;29;70;102;295;166;347;750;296;762;623;606;324;271;264;223;459;595;392;3204;;3214;3587;2937;1754;832;4253;1519;1932;2288;1462;990;1528;2987;2254;2254;2254;2593;2257;1623;5009;4993;5761;4390;4426;3154;3252;3973;5005;6231;3646;2197;5870;677
-137;'480;Mauritius;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;299;1;0;0;0;0;536;536;536;536;477;391;386;530;411;369;94;329;175;57;2523;2684;705;6158;739;2381
-137;'480;Mauritius;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;32;0;0;0;0;0;46;46;46;46;120;50;11;25;26;17;19;44;83;35;2019;1791;1891;2525;1100;1727
-137;'480;Mauritius;1862;Roundwood, coniferous;5516;Production;m3;4000;11000;10000;7000;3000;6000;7000;7000;7000;7000;7000;7000;7000;6000;8600;14000;9000;12500;11500;12000;6300;5100;6100;1300;2700;3700;7400;7500;8600;7600;10700;9100;21400;11800;9500;11700;11700;15000;15000;12000;10500;8100;8500;8800;8400;11500;10200;10200;8200;8500;8000;4500;2500;1990;1530;4800;4800;4800;2722;2124;2124;2124;2669
-137;'480;Mauritius;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;158;5467;2632;1466;1671;145
-137;'480;Mauritius;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;37;1146;391;513;576;50
-137;'480;Mauritius;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0
-137;'480;Mauritius;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0
-137;'480;Mauritius;1863;Roundwood, non-coniferous;5516;Production;m3;60000;63000;87000;105000;72000;17000;28000;29000;29000;30000;30000;32000;32000;27000;33700;31000;30000;33200;36100;29800;30700;27900;23700;13200;14000;20600;24740;26640;22400;19500;6600;6550;2750;6500;2890;3060;3060;7000;10000;6000;6500;7000;5500;5200;4100;5200;5200;5200;6800;5500;3000;2700;1000;550;470;1720;1720;1720;3841;2873;2873;2873;2873
-137;'480;Mauritius;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10535;31501;40000;19692;7209;17721;3955
-137;'480;Mauritius;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3871;4968;5085;3255;1684;5294;627
-137;'480;Mauritius;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;2523;2684;705;6158;739;2381
-137;'480;Mauritius;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;2019;1788;1891;2525;1100;1727
-137;'480;Mauritius;1864;Wood fuel;5516;Production;m3;43000;49000;71000;96000;66000;8000;19000;20000;20000;21000;21000;21000;21000;22000;22000;22000;23000;23000;23000;24000;24000;24000;22000;12000;12000;17000;20500;20800;16500;16000;3200;3200;11400;7500;6200;6500;6500;10000;12000;10000;9000;9000;6000;6000;5000;6900;6900;6900;5500;9000;6600;5100;2000;2300;1800;5180;5180;5180;5223;3657;3657;3657;4202
-137;'480;Mauritius;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;41;41;41;0;0;0;2;2;2;2;6;6;2;10;62;0;3;5;2;75;331;135;153;159;104;35
-137;'480;Mauritius;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;0;0;0;169;169;169;169;15;15;2;4;35;0;6;7;8;32;105;21;33;41;24;23
-137;'480;Mauritius;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;4;4;4;4;;;33;33;33;21;21
-137;'480;Mauritius;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;12;12;12;12;;;18;18;18;299;299
-137;'480;Mauritius;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;4000;4600;4700;4700;7000;8000;7000;6000;5000;4000;4000;3000;3900;3900;3900;3800;5000;4400;3100;1500;1800;1400;3880;3880;3880;1802;1204;1204;1204;1749
-137;'480;Mauritius;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;135;135;0;0
-137;'480;Mauritius;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;0;0
-137;'480;Mauritius;1628;Wood fuel, non-coniferous;5516;Production;m3;43000;49000;71000;96000;66000;8000;19000;20000;20000;21000;21000;21000;21000;22000;22000;22000;23000;23000;23000;24000;24000;24000;22000;12000;12000;17000;20500;20800;16500;16000;3200;3200;500;3500;1600;1800;1800;3000;4000;3000;3000;4000;2000;2000;2000;3000;3000;3000;1700;4000;2200;2000;500;500;400;1300;1300;1300;3421;2453;2453;2453;2453
-137;'480;Mauritius;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;331;0;18;24;104;35
-137;'480;Mauritius;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;105;0;12;20;24;23
-137;'480;Mauritius;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;21;21
-137;'480;Mauritius;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;299;299
-137;'480;Mauritius;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;41;41;41;0;0;0;2;2;2;2;6;6;2;10;62;0;3;5;2;;;;;;;
-137;'480;Mauritius;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;0;0;0;169;169;169;169;15;15;2;4;35;0;6;7;8;;;;;;;
-137;'480;Mauritius;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;4;4;4;4;;;;;;;
-137;'480;Mauritius;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;12;12;12;12;;;;;;;
-137;'480;Mauritius;1865;Industrial roundwood;5516;Production;m3;21000;25000;26000;16000;9000;15000;16000;16000;16000;16000;16000;18000;18000;11000;20300;23000;16000;22700;24600;17800;13000;9000;7800;2500;4700;7300;11640;13340;14500;11100;14100;12450;12750;10800;6190;8260;8260;12000;13000;8000;8000;6100;8000;8000;7500;9800;8500;8500;9500;5000;4400;2100;1500;240;200;1340;1340;1340;1340;1340;1340;1340;1340
-137;'480;Mauritius;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;400;300;600;700;1000;600;1300;2000;1100;1900;2900;2400;1000;800;800;1200;1200;1700;1700;14500;;23788;26240;7540;9400;3100;9000;4330;7230;15600;14400;9000;6700;10688;19861;19861;19861;3724;3670;2708;27432;15315;16258;10216;29244;4957;8420;10917;31328;45332;22171;8516;19288;4065
-137;'480;Mauritius;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;42;29;70;102;295;166;347;750;296;762;623;606;324;271;264;223;459;595;392;3204;;3214;3587;2937;1754;832;4253;1519;1924;2280;1454;990;1528;2987;2085;2085;2085;2424;2242;1608;5007;4989;5726;4390;4420;3147;3244;3941;4900;6210;3613;2156;5846;654
-137;'480;Mauritius;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;299;1;0;0;0;0;536;536;536;536;472;386;381;525;406;365;90;325;171;57;2523;2651;672;6125;718;2360
-137;'480;Mauritius;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;32;0;0;0;0;0;46;46;46;46;119;49;10;24;25;5;7;32;71;35;2019;1773;1873;2507;801;1428
-137;'480;Mauritius;1866;Industrial roundwood, coniferous;5516;Production;m3;4000;11000;10000;7000;3000;6000;7000;7000;7000;7000;7000;7000;7000;6000;8600;14000;9000;12500;11500;12000;6300;5100;6100;1300;2700;3700;7400;7500;8600;7600;10700;9100;10500;7800;4900;7000;7000;8000;7000;5000;4500;3100;4500;4800;5400;7600;6300;6300;4400;3500;3600;1400;1000;190;130;920;920;920;920;920;920;920;920
-137;'480;Mauritius;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;740;200;100;4200;4200;5000;3200;700;200;200;3418;4373;4373;4373;654;132;51;218;178;659;50;88;1677;2480;457;158;5332;2497;1331;1671;145
-137;'480;Mauritius;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;58;44;39;1388;1388;1192;844;227;26;34;705;267;267;267;301;81;18;81;83;71;24;45;1327;897;102;37;1125;370;492;576;50
-137;'480;Mauritius;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;352;352;352;352;352;352;352;352;352;352;0;299;0;0;0;0;0;0;0;0
-137;'480;Mauritius;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;19;19;19;19;19;19;0;1;0;0;0;23;0;0;0;3;0;0;0;0
-137;'480;Mauritius;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;740;200;100;4200;4200;5000;3200;700;200;200;3418;4373;4373;4373;654;132;51;218;178;659;50;88;1677;2480;457;158;5332;2497;1331;1671;145
-137;'480;Mauritius;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;58;44;39;1388;1388;1192;844;227;26;34;705;267;267;267;301;81;18;81;83;71;24;45;1327;897;102;37;1125;370;492;576;50
-137;'480;Mauritius;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;352;352;352;352;352;352;352;352;352;352;0;299;0;0;0;0;0;0;0;0
-137;'480;Mauritius;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;19;19;19;19;19;19;0;1;0;0;0;23;0;0;0;3;0;0;0;0
-137;'480;Mauritius;1867;Industrial roundwood, non-coniferous;5516;Production;m3;17000;14000;16000;9000;6000;9000;9000;9000;9000;9000;9000;11000;11000;5000;11700;9000;7000;10200;13100;5800;6700;3900;1700;1200;2000;3600;4240;5840;5900;3500;3400;3350;2250;3000;1290;1260;1260;4000;6000;3000;3500;3000;3500;3200;2100;2200;2200;2200;5100;1500;800;700;500;50;70;420;420;420;420;420;420;420;420
-137;'480;Mauritius;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23788;25705;6800;9200;3000;4800;130;2230;12400;13700;8800;6500;7270;15488;15488;15488;3070;3538;2657;27214;15137;15599;10166;29156;3280;5940;10460;31170;40000;19674;7185;17617;3920
-137;'480;Mauritius;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3214;3537;2879;1710;793;2865;131;732;1436;1227;964;1494;2282;1818;1818;1818;2123;2161;1590;4926;4906;5655;4366;4375;1820;2347;3839;4863;5085;3243;1664;5270;604
-137;'480;Mauritius;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;299;1;0;0;